
    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_0fa63c2668ee1b43e325c1a6.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_d6b7f84c74cee42c7b9c7cf8.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ce9a5b36c6f56c9ba144e1e8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.982910;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_35ef687708ba87b1720d83b8.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0300db0b99baed92c5f078dc.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_aa724a6e7bb4cfb9acdcadde.woff')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.978000px;}
.ls7{letter-spacing:-0.234000px;}
.lsd{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.209400px;}
.lsa{letter-spacing:-0.197400px;}
.ls6{letter-spacing:-0.091200px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.144600px;}
.ls2{letter-spacing:22.021920px;}
.ls5{letter-spacing:24.181920px;}
.ls4{letter-spacing:24.901920px;}
.ls1{letter-spacing:26.341920px;}
.ls3{letter-spacing:30.661920px;}
.lsc{letter-spacing:64.026720px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws8{word-spacing:-20.340000px;}
.ws3{word-spacing:-18.531960px;}
.ws1{word-spacing:-18.296160px;}
.ws5{word-spacing:-18.189960px;}
.ws6{word-spacing:-18.177960px;}
.ws2{word-spacing:-18.153360px;}
.ws9{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.409360px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-2.115360px;}
._0{margin-left:-1.057680px;}
._1{width:1.259040px;}
.fc3{color:rgb(79,129,189);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(192,192,192);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:81.360000px;}
.y0{bottom:0.000000px;}
.yb8{bottom:4.500000px;}
.yab{bottom:25.186500px;}
.yb7{bottom:46.260000px;}
.yaa{bottom:67.126500px;}
.yb6{bottom:87.705000px;}
.ya9{bottom:108.526500px;}
.y6a{bottom:115.596000px;}
.y8e{bottom:116.316000px;}
.y49{bottom:128.376000px;}
.yb5{bottom:129.285000px;}
.y93{bottom:130.183500px;}
.y24{bottom:134.136000px;}
.ya8{bottom:150.286500px;}
.y48{bottom:151.770000px;}
.y23{bottom:157.350000px;}
.y69{bottom:159.330000px;}
.y8d{bottom:160.590000px;}
.yb4{bottom:171.405000px;}
.y47{bottom:174.990000px;}
.yb3{bottom:192.105000px;}
.ya7{bottom:192.226500px;}
.y22{bottom:201.630000px;}
.y68{bottom:203.610000px;}
.y8c{bottom:204.870000px;}
.yb2{bottom:212.805000px;}
.ya6{bottom:212.971500px;}
.y46{bottom:219.270000px;}
.y21{bottom:225.030000px;}
.yb1{bottom:233.505000px;}
.ya5{bottom:233.671500px;}
.y45{bottom:242.670000px;}
.y20{bottom:248.250000px;}
.y67{bottom:249.150000px;}
.y8b{bottom:250.410000px;}
.yb0{bottom:254.205000px;}
.ya4{bottom:254.371500px;}
.y44{bottom:265.890000px;}
.y1f{bottom:271.470000px;}
.y66{bottom:273.630000px;}
.yaf{bottom:274.905000px;}
.y8a{bottom:275.070000px;}
.ya3{bottom:275.071500px;}
.y43{bottom:289.110000px;}
.y1e{bottom:294.870000px;}
.yae{bottom:295.605000px;}
.ya2{bottom:295.771500px;}
.y65{bottom:298.290000px;}
.ya1{bottom:316.471500px;}
.y1d{bottom:318.090000px;}
.y89{bottom:320.250000px;}
.y64{bottom:323.130000px;}
.y42{bottom:334.155000px;}
.ya0{bottom:337.171500px;}
.yad{bottom:339.375000px;}
.y88{bottom:343.515000px;}
.y63{bottom:347.835000px;}
.y41{bottom:358.815000px;}
.y1c{bottom:362.415000px;}
.y87{bottom:366.735000px;}
.y62{bottom:372.495000px;}
.y9f{bottom:380.911500px;}
.y40{bottom:383.475000px;}
.y1b{bottom:385.635000px;}
.y61{bottom:397.335000px;}
.y1a{bottom:409.035000px;}
.y86{bottom:411.015000px;}
.y9e{bottom:421.771500px;}
.y60{bottom:421.995000px;}
.y3f{bottom:429.375000px;}
.y19{bottom:432.255000px;}
.y85{bottom:434.415000px;}
.y5f{bottom:446.655000px;}
.y3e{bottom:453.855000px;}
.y18{bottom:455.655000px;}
.y84{bottom:457.635000px;}
.y9d{bottom:463.891500px;}
.y5e{bottom:471.495000px;}
.y3d{bottom:478.695000px;}
.y17{bottom:478.875000px;}
.y83{bottom:481.035000px;}
.y9c{bottom:484.621500px;}
.y5d{bottom:496.155000px;}
.y16{bottom:502.095000px;}
.y3c{bottom:503.355000px;}
.y82{bottom:504.255000px;}
.y9b{bottom:505.321500px;}
.y5c{bottom:520.815000px;}
.y15{bottom:525.495000px;}
.y9a{bottom:526.021500px;}
.y81{bottom:527.475000px;}
.y3b{bottom:528.015000px;}
.y5b{bottom:545.655000px;}
.y99{bottom:546.721500px;}
.y14{bottom:548.715000px;}
.y80{bottom:550.875000px;}
.y3a{bottom:552.855000px;}
.y98{bottom:567.421500px;}
.y5a{bottom:570.315000px;}
.y13{bottom:571.935000px;}
.y7f{bottom:574.095000px;}
.y39{bottom:577.515000px;}
.y59{bottom:595.005000px;}
.y38{bottom:602.205000px;}
.y97{bottom:608.641500px;}
.y12{bottom:615.705000px;}
.y7e{bottom:617.865000px;}
.y58{bottom:619.845000px;}
.y37{bottom:627.045000px;}
.y57{bottom:644.505000px;}
.y96{bottom:650.761500px;}
.y36{bottom:651.705000px;}
.y11{bottom:660.525000px;}
.ybb{bottom:660.705000px;}
.y7d{bottom:662.685000px;}
.y56{bottom:669.165000px;}
.y35{bottom:676.365000px;}
.y10{bottom:683.925000px;}
.y7c{bottom:685.905000px;}
.y95{bottom:692.161500px;}
.y55{bottom:694.005000px;}
.y34{bottom:701.205000px;}
.yba{bottom:702.285000px;}
.yf{bottom:707.145000px;}
.y7b{bottom:709.305000px;}
.y54{bottom:718.665000px;}
.y33{bottom:725.865000px;}
.ye{bottom:730.545000px;}
.y7a{bottom:732.525000px;}
.y94{bottom:737.206500px;}
.y53{bottom:743.325000px;}
.yb9{bottom:746.745000px;}
.y32{bottom:750.525000px;}
.yd{bottom:753.765000px;}
.y79{bottom:755.925000px;}
.y52{bottom:768.165000px;}
.yc{bottom:776.985000px;}
.y78{bottom:779.145000px;}
.y51{bottom:792.825000px;}
.yac{bottom:793.725000px;}
.y31{bottom:795.705000px;}
.yb{bottom:800.385000px;}
.y77{bottom:802.365000px;}
.y50{bottom:817.485000px;}
.y30{bottom:819.105000px;}
.ya{bottom:823.605000px;}
.y2f{bottom:842.325000px;}
.y76{bottom:846.645000px;}
.y4f{bottom:867.030000px;}
.y9{bottom:867.930000px;}
.y75{bottom:870.090000px;}
.y2e{bottom:886.110000px;}
.y8{bottom:891.150000px;}
.y4e{bottom:912.210000px;}
.y7{bottom:914.550000px;}
.y74{bottom:915.090000px;}
.y92{bottom:916.710000px;}
.y2d{bottom:930.930000px;}
.y4d{bottom:935.430000px;}
.y6{bottom:937.770000px;}
.y73{bottom:939.570000px;}
.y4c{bottom:958.830000px;}
.y91{bottom:960.990000px;}
.y72{bottom:964.230000px;}
.y2c{bottom:975.210000px;}
.y5{bottom:981.510000px;}
.y71{bottom:989.070000px;}
.y2b{bottom:998.430000px;}
.y4b{bottom:1002.570000px;}
.y90{bottom:1005.270000px;}
.y70{bottom:1013.730000px;}
.y2a{bottom:1021.830000px;}
.y4{bottom:1026.330000px;}
.y6f{bottom:1038.390000px;}
.y29{bottom:1045.050000px;}
.y4a{bottom:1046.850000px;}
.y8f{bottom:1049.730000px;}
.y6e{bottom:1063.230000px;}
.y28{bottom:1068.270000px;}
.y3{bottom:1070.610000px;}
.y6d{bottom:1087.890000px;}
.y27{bottom:1091.670000px;}
.y2{bottom:1094.010000px;}
.y6c{bottom:1112.550000px;}
.y26{bottom:1114.890000px;}
.y6b{bottom:1137.420000px;}
.y1{bottom:1137.780000px;}
.y25{bottom:1138.320000px;}
.h7{height:53.302500px;}
.ha{height:55.825312px;}
.h5{height:65.469375px;}
.h9{height:70.664062px;}
.h8{height:72.562500px;}
.h3{height:79.850391px;}
.h2{height:81.995625px;}
.h4{height:83.625259px;}
.hb{height:355.035000px;}
.h6{height:752.850000px;}
.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;}
.xd{left:112.483500px;}
.xa{left:123.166500px;}
.x5{left:127.656000px;}
.xc{left:133.363500px;}
.x2{left:143.316000px;}
.x6{left:154.650000px;}
.x1{left:171.930000px;}
.x7{left:181.650000px;}
.x8{left:208.650000px;}
.x3{left:277.230000px;}
.x9{left:388.515000px;}
.x4{left:443.955000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.869333pt;}
.ls7{letter-spacing:-0.208000pt;}
.lsd{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.186133pt;}
.lsa{letter-spacing:-0.175467pt;}
.ls6{letter-spacing:-0.081067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.128533pt;}
.ls2{letter-spacing:19.575040pt;}
.ls5{letter-spacing:21.495040pt;}
.ls4{letter-spacing:22.135040pt;}
.ls1{letter-spacing:23.415040pt;}
.ls3{letter-spacing:27.255040pt;}
.lsc{letter-spacing:56.912640pt;}
.ws7{word-spacing:-53.120000pt;}
.ws8{word-spacing:-18.080000pt;}
.ws3{word-spacing:-16.472853pt;}
.ws1{word-spacing:-16.263253pt;}
.ws5{word-spacing:-16.168853pt;}
.ws6{word-spacing:-16.158187pt;}
.ws2{word-spacing:-16.136320pt;}
.ws9{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.474987pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-1.880320pt;}
._0{margin-left:-0.940160pt;}
._1{width:1.119147pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:72.320000pt;}
.y0{bottom:0.000000pt;}
.yb8{bottom:4.000000pt;}
.yab{bottom:22.388000pt;}
.yb7{bottom:41.120000pt;}
.yaa{bottom:59.668000pt;}
.yb6{bottom:77.960000pt;}
.ya9{bottom:96.468000pt;}
.y6a{bottom:102.752000pt;}
.y8e{bottom:103.392000pt;}
.y49{bottom:114.112000pt;}
.yb5{bottom:114.920000pt;}
.y93{bottom:115.718667pt;}
.y24{bottom:119.232000pt;}
.ya8{bottom:133.588000pt;}
.y48{bottom:134.906667pt;}
.y23{bottom:139.866667pt;}
.y69{bottom:141.626667pt;}
.y8d{bottom:142.746667pt;}
.yb4{bottom:152.360000pt;}
.y47{bottom:155.546667pt;}
.yb3{bottom:170.760000pt;}
.ya7{bottom:170.868000pt;}
.y22{bottom:179.226667pt;}
.y68{bottom:180.986667pt;}
.y8c{bottom:182.106667pt;}
.yb2{bottom:189.160000pt;}
.ya6{bottom:189.308000pt;}
.y46{bottom:194.906667pt;}
.y21{bottom:200.026667pt;}
.yb1{bottom:207.560000pt;}
.ya5{bottom:207.708000pt;}
.y45{bottom:215.706667pt;}
.y20{bottom:220.666667pt;}
.y67{bottom:221.466667pt;}
.y8b{bottom:222.586667pt;}
.yb0{bottom:225.960000pt;}
.ya4{bottom:226.108000pt;}
.y44{bottom:236.346667pt;}
.y1f{bottom:241.306667pt;}
.y66{bottom:243.226667pt;}
.yaf{bottom:244.360000pt;}
.y8a{bottom:244.506667pt;}
.ya3{bottom:244.508000pt;}
.y43{bottom:256.986667pt;}
.y1e{bottom:262.106667pt;}
.yae{bottom:262.760000pt;}
.ya2{bottom:262.908000pt;}
.y65{bottom:265.146667pt;}
.ya1{bottom:281.308000pt;}
.y1d{bottom:282.746667pt;}
.y89{bottom:284.666667pt;}
.y64{bottom:287.226667pt;}
.y42{bottom:297.026667pt;}
.ya0{bottom:299.708000pt;}
.yad{bottom:301.666667pt;}
.y88{bottom:305.346667pt;}
.y63{bottom:309.186667pt;}
.y41{bottom:318.946667pt;}
.y1c{bottom:322.146667pt;}
.y87{bottom:325.986667pt;}
.y62{bottom:331.106667pt;}
.y9f{bottom:338.588000pt;}
.y40{bottom:340.866667pt;}
.y1b{bottom:342.786667pt;}
.y61{bottom:353.186667pt;}
.y1a{bottom:363.586667pt;}
.y86{bottom:365.346667pt;}
.y9e{bottom:374.908000pt;}
.y60{bottom:375.106667pt;}
.y3f{bottom:381.666667pt;}
.y19{bottom:384.226667pt;}
.y85{bottom:386.146667pt;}
.y5f{bottom:397.026667pt;}
.y3e{bottom:403.426667pt;}
.y18{bottom:405.026667pt;}
.y84{bottom:406.786667pt;}
.y9d{bottom:412.348000pt;}
.y5e{bottom:419.106667pt;}
.y3d{bottom:425.506667pt;}
.y17{bottom:425.666667pt;}
.y83{bottom:427.586667pt;}
.y9c{bottom:430.774667pt;}
.y5d{bottom:441.026667pt;}
.y16{bottom:446.306667pt;}
.y3c{bottom:447.426667pt;}
.y82{bottom:448.226667pt;}
.y9b{bottom:449.174667pt;}
.y5c{bottom:462.946667pt;}
.y15{bottom:467.106667pt;}
.y9a{bottom:467.574667pt;}
.y81{bottom:468.866667pt;}
.y3b{bottom:469.346667pt;}
.y5b{bottom:485.026667pt;}
.y99{bottom:485.974667pt;}
.y14{bottom:487.746667pt;}
.y80{bottom:489.666667pt;}
.y3a{bottom:491.426667pt;}
.y98{bottom:504.374667pt;}
.y5a{bottom:506.946667pt;}
.y13{bottom:508.386667pt;}
.y7f{bottom:510.306667pt;}
.y39{bottom:513.346667pt;}
.y59{bottom:528.893333pt;}
.y38{bottom:535.293333pt;}
.y97{bottom:541.014667pt;}
.y12{bottom:547.293333pt;}
.y7e{bottom:549.213333pt;}
.y58{bottom:550.973333pt;}
.y37{bottom:557.373333pt;}
.y57{bottom:572.893333pt;}
.y96{bottom:578.454667pt;}
.y36{bottom:579.293333pt;}
.y11{bottom:587.133333pt;}
.ybb{bottom:587.293333pt;}
.y7d{bottom:589.053333pt;}
.y56{bottom:594.813333pt;}
.y35{bottom:601.213333pt;}
.y10{bottom:607.933333pt;}
.y7c{bottom:609.693333pt;}
.y95{bottom:615.254667pt;}
.y55{bottom:616.893333pt;}
.y34{bottom:623.293333pt;}
.yba{bottom:624.253333pt;}
.yf{bottom:628.573333pt;}
.y7b{bottom:630.493333pt;}
.y54{bottom:638.813333pt;}
.y33{bottom:645.213333pt;}
.ye{bottom:649.373333pt;}
.y7a{bottom:651.133333pt;}
.y94{bottom:655.294667pt;}
.y53{bottom:660.733333pt;}
.yb9{bottom:663.773333pt;}
.y32{bottom:667.133333pt;}
.yd{bottom:670.013333pt;}
.y79{bottom:671.933333pt;}
.y52{bottom:682.813333pt;}
.yc{bottom:690.653333pt;}
.y78{bottom:692.573333pt;}
.y51{bottom:704.733333pt;}
.yac{bottom:705.533333pt;}
.y31{bottom:707.293333pt;}
.yb{bottom:711.453333pt;}
.y77{bottom:713.213333pt;}
.y50{bottom:726.653333pt;}
.y30{bottom:728.093333pt;}
.ya{bottom:732.093333pt;}
.y2f{bottom:748.733333pt;}
.y76{bottom:752.573333pt;}
.y4f{bottom:770.693333pt;}
.y9{bottom:771.493333pt;}
.y75{bottom:773.413333pt;}
.y2e{bottom:787.653333pt;}
.y8{bottom:792.133333pt;}
.y4e{bottom:810.853333pt;}
.y7{bottom:812.933333pt;}
.y74{bottom:813.413333pt;}
.y92{bottom:814.853333pt;}
.y2d{bottom:827.493333pt;}
.y4d{bottom:831.493333pt;}
.y6{bottom:833.573333pt;}
.y73{bottom:835.173333pt;}
.y4c{bottom:852.293333pt;}
.y91{bottom:854.213333pt;}
.y72{bottom:857.093333pt;}
.y2c{bottom:866.853333pt;}
.y5{bottom:872.453333pt;}
.y71{bottom:879.173333pt;}
.y2b{bottom:887.493333pt;}
.y4b{bottom:891.173333pt;}
.y90{bottom:893.573333pt;}
.y70{bottom:901.093333pt;}
.y2a{bottom:908.293333pt;}
.y4{bottom:912.293333pt;}
.y6f{bottom:923.013333pt;}
.y29{bottom:928.933333pt;}
.y4a{bottom:930.533333pt;}
.y8f{bottom:933.093333pt;}
.y6e{bottom:945.093333pt;}
.y28{bottom:949.573333pt;}
.y3{bottom:951.653333pt;}
.y6d{bottom:967.013333pt;}
.y27{bottom:970.373333pt;}
.y2{bottom:972.453333pt;}
.y6c{bottom:988.933333pt;}
.y26{bottom:991.013333pt;}
.y6b{bottom:1011.040000pt;}
.y1{bottom:1011.360000pt;}
.y25{bottom:1011.840000pt;}
.h7{height:47.380000pt;}
.ha{height:49.622500pt;}
.h5{height:58.195000pt;}
.h9{height:62.812500pt;}
.h8{height:64.500000pt;}
.h3{height:70.978125pt;}
.h2{height:72.885000pt;}
.h4{height:74.333564pt;}
.hb{height:315.586667pt;}
.h6{height:669.200000pt;}
.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;}
.xd{left:99.985333pt;}
.xa{left:109.481333pt;}
.x5{left:113.472000pt;}
.xc{left:118.545333pt;}
.x2{left:127.392000pt;}
.x6{left:137.466667pt;}
.x1{left:152.826667pt;}
.x7{left:161.466667pt;}
.x8{left:185.466667pt;}
.x3{left:246.426667pt;}
.x9{left:345.346667pt;}
.x4{left:394.626667pt;}
}

