
    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_3fdd42a2936302e2820f5769.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_76302c617060afef90f892cf.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_b36ef77599cc2256a0455a56.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_d8d456ace27d455860bdb253.woff')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.360000px;}
.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;}
}
.ws1{word-spacing:-20.700000px;}
.ws2{word-spacing:-20.340000px;}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-1.627200px;}
._2{width:1.057680px;}
._1{width:2.119200px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(192,192,192);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:81.360000px;}
.y0{bottom:0.000000px;}
.ye1{bottom:4.500000px;}
.yba{bottom:25.186500px;}
.ydf{bottom:25.192500px;}
.yb9{bottom:45.886500px;}
.yde{bottom:66.766500px;}
.yb8{bottom:87.286500px;}
.ydd{bottom:108.886500px;}
.ybb{bottom:112.903500px;}
.y84{bottom:120.456000px;}
.y8c{bottom:122.616000px;}
.y26{bottom:129.456000px;}
.ydc{bottom:129.586500px;}
.yb7{bottom:130.903500px;}
.ya2{bottom:140.976000px;}
.y83{bottom:143.676000px;}
.y8b{bottom:146.016000px;}
.ydb{bottom:150.286500px;}
.y25{bottom:152.850000px;}
.ya1{bottom:164.190000px;}
.y82{bottom:166.890000px;}
.y65{bottom:169.230000px;}
.yda{bottom:170.986500px;}
.y24{bottom:176.070000px;}
.y45{bottom:178.410000px;}
.y81{bottom:190.290000px;}
.yd9{bottom:191.686500px;}
.y64{bottom:192.450000px;}
.y23{bottom:199.470000px;}
.y44{bottom:201.630000px;}
.ya0{bottom:208.470000px;}
.yd8{bottom:212.386500px;}
.y80{bottom:213.510000px;}
.y63{bottom:215.850000px;}
.y22{bottom:222.690000px;}
.y43{bottom:225.030000px;}
.y9f{bottom:231.870000px;}
.yd7{bottom:233.131500px;}
.y7f{bottom:236.730000px;}
.y62{bottom:239.070000px;}
.y21{bottom:245.910000px;}
.y42{bottom:248.250000px;}
.y7e{bottom:260.130000px;}
.yb6{bottom:261.930000px;}
.y61{bottom:262.470000px;}
.y20{bottom:269.310000px;}
.y41{bottom:271.470000px;}
.yd6{bottom:274.891500px;}
.y9e{bottom:276.150000px;}
.y7d{bottom:283.350000px;}
.y60{bottom:285.690000px;}
.y1f{bottom:292.530000px;}
.y40{bottom:294.870000px;}
.yd5{bottom:295.591500px;}
.y9d{bottom:299.370000px;}
.y92{bottom:304.410000px;}
.yb5{bottom:306.210000px;}
.y8a{bottom:306.750000px;}
.yd4{bottom:316.291500px;}
.y7c{bottom:327.675000px;}
.yb4{bottom:329.655000px;}
.y5f{bottom:330.015000px;}
.y1e{bottom:336.855000px;}
.yd3{bottom:336.991500px;}
.y3f{bottom:339.195000px;}
.y9c{bottom:343.695000px;}
.y7b{bottom:351.075000px;}
.y5e{bottom:353.235000px;}
.y1d{bottom:360.075000px;}
.y3e{bottom:362.415000px;}
.y9b{bottom:366.915000px;}
.yb3{bottom:373.935000px;}
.y7a{bottom:374.295000px;}
.y5d{bottom:376.635000px;}
.yd2{bottom:378.211500px;}
.y1c{bottom:383.475000px;}
.y3d{bottom:385.635000px;}
.y79{bottom:397.515000px;}
.y5c{bottom:399.855000px;}
.y1b{bottom:406.695000px;}
.y3c{bottom:409.035000px;}
.y9a{bottom:411.375000px;}
.yb2{bottom:418.215000px;}
.y91{bottom:418.575000px;}
.yd1{bottom:419.971500px;}
.y78{bottom:420.915000px;}
.y5b{bottom:423.075000px;}
.y1a{bottom:429.915000px;}
.y3b{bottom:432.255000px;}
.y90{bottom:441.795000px;}
.y77{bottom:444.135000px;}
.y5a{bottom:446.475000px;}
.y19{bottom:453.315000px;}
.y99{bottom:455.655000px;}
.yd0{bottom:462.091500px;}
.yb1{bottom:462.495000px;}
.y8f{bottom:465.195000px;}
.y76{bottom:467.355000px;}
.y59{bottom:469.695000px;}
.y18{bottom:476.535000px;}
.y98{bottom:478.875000px;}
.yb0{bottom:485.715000px;}
.y8e{bottom:488.415000px;}
.y75{bottom:490.755000px;}
.y58{bottom:492.915000px;}
.y3a{bottom:499.935000px;}
.ycf{bottom:503.341500px;}
.y8d{bottom:511.635000px;}
.y89{bottom:513.975000px;}
.y57{bottom:516.315000px;}
.y17{bottom:520.815000px;}
.y39{bottom:523.155000px;}
.yaf{bottom:529.995000px;}
.y74{bottom:535.035000px;}
.y88{bottom:537.375000px;}
.y56{bottom:539.535000px;}
.y16{bottom:544.215000px;}
.yce{bottom:545.101500px;}
.y97{bottom:546.375000px;}
.y73{bottom:558.255000px;}
.y87{bottom:560.595000px;}
.y55{bottom:562.935000px;}
.y15{bottom:567.435000px;}
.yae{bottom:574.275000px;}
.y72{bottom:581.655000px;}
.y93{bottom:583.815000px;}
.ycd{bottom:587.041500px;}
.y14{bottom:590.655000px;}
.yad{bottom:597.525000px;}
.y71{bottom:604.905000px;}
.y54{bottom:607.245000px;}
.ycc{bottom:607.741500px;}
.y13{bottom:614.085000px;}
.y70{bottom:628.125000px;}
.ycb{bottom:628.441500px;}
.y53{bottom:630.465000px;}
.y96{bottom:634.965000px;}
.y12{bottom:637.305000px;}
.yac{bottom:641.805000px;}
.yca{bottom:649.141500px;}
.y6f{bottom:651.525000px;}
.y52{bottom:653.685000px;}
.y38{bottom:658.365000px;}
.y11{bottom:660.525000px;}
.yab{bottom:665.205000px;}
.yc9{bottom:669.841500px;}
.y6e{bottom:674.745000px;}
.y51{bottom:677.085000px;}
.y37{bottom:681.585000px;}
.y10{bottom:683.925000px;}
.yc8{bottom:690.541500px;}
.y6d{bottom:697.965000px;}
.y50{bottom:700.305000px;}
.y95{bottom:702.105000px;}
.y36{bottom:704.805000px;}
.yaa{bottom:709.485000px;}
.yc7{bottom:711.241500px;}
.y6c{bottom:721.365000px;}
.y4f{bottom:723.525000px;}
.yf{bottom:728.205000px;}
.yc6{bottom:731.941500px;}
.ya9{bottom:732.705000px;}
.y6b{bottom:744.585000px;}
.y4e{bottom:746.925000px;}
.y35{bottom:749.085000px;}
.ye{bottom:751.425000px;}
.yc5{bottom:752.686500px;}
.y6a{bottom:767.805000px;}
.y4d{bottom:770.145000px;}
.y34{bottom:772.485000px;}
.yc4{bottom:773.386500px;}
.yd{bottom:774.825000px;}
.ya8{bottom:776.985000px;}
.y69{bottom:791.205000px;}
.y4c{bottom:793.545000px;}
.yc3{bottom:794.086500px;}
.y33{bottom:795.705000px;}
.ya7{bottom:800.385000px;}
.y68{bottom:814.425000px;}
.y94{bottom:816.765000px;}
.yc{bottom:819.105000px;}
.yc2{bottom:835.486500px;}
.y4b{bottom:837.825000px;}
.y32{bottom:839.985000px;}
.yb{bottom:842.325000px;}
.ya6{bottom:844.665000px;}
.y4a{bottom:861.045000px;}
.y31{bottom:863.430000px;}
.ya{bottom:865.590000px;}
.ya5{bottom:867.930000px;}
.yc1{bottom:877.606500px;}
.y49{bottom:884.310000px;}
.y9{bottom:888.990000px;}
.yc0{bottom:898.306500px;}
.y30{bottom:907.710000px;}
.y8{bottom:912.210000px;}
.ybf{bottom:919.006500px;}
.y67{bottom:928.590000px;}
.y2f{bottom:930.930000px;}
.y7{bottom:935.430000px;}
.ybe{bottom:939.706500px;}
.y66{bottom:951.990000px;}
.y2e{bottom:954.150000px;}
.ye5{bottom:957.570000px;}
.y6{bottom:958.830000px;}
.y48{bottom:975.210000px;}
.y2d{bottom:977.550000px;}
.ya4{bottom:979.710000px;}
.ybd{bottom:980.926500px;}
.y5{bottom:982.050000px;}
.y47{bottom:998.430000px;}
.ye4{bottom:999.150000px;}
.y2c{bottom:1000.770000px;}
.ya3{bottom:1003.110000px;}
.y46{bottom:1021.830000px;}
.ybc{bottom:1023.076500px;}
.y86{bottom:1023.990000px;}
.y4{bottom:1026.330000px;}
.ye3{bottom:1043.430000px;}
.y2b{bottom:1045.050000px;}
.y85{bottom:1047.390000px;}
.y2a{bottom:1068.270000px;}
.y3{bottom:1070.610000px;}
.ye2{bottom:1087.710000px;}
.y29{bottom:1091.670000px;}
.y2{bottom:1114.350000px;}
.y28{bottom:1114.890000px;}
.ye0{bottom:1131.480000px;}
.y1{bottom:1137.780000px;}
.y27{bottom:1138.320000px;}
.h8{height:20.700000px;}
.h9{height:50.229844px;}
.h5{height:70.664062px;}
.h6{height:72.562500px;}
.h3{height:79.850391px;}
.h2{height:81.995625px;}
.h4{height:100.792500px;}
.h7{height:1039.275000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:639.990000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:1.069500px;}
.xc{left:109.063500px;}
.xa{left:117.883500px;}
.x8{left:126.586500px;}
.x5{left:127.656000px;}
.x1{left:158.250000px;}
.x3{left:233.310000px;}
.x6{left:235.650000px;}
.xb{left:304.588500px;}
.x2{left:368.535000px;}
.x7{left:386.355000px;}
.xd{left:443.955000px;}
.x4{left:760.470000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.320000pt;}
.ws1{word-spacing:-18.400000pt;}
.ws2{word-spacing:-18.080000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-1.446400pt;}
._2{width:0.940160pt;}
._1{width:1.883733pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:72.320000pt;}
.y0{bottom:0.000000pt;}
.ye1{bottom:4.000000pt;}
.yba{bottom:22.388000pt;}
.ydf{bottom:22.393333pt;}
.yb9{bottom:40.788000pt;}
.yde{bottom:59.348000pt;}
.yb8{bottom:77.588000pt;}
.ydd{bottom:96.788000pt;}
.ybb{bottom:100.358667pt;}
.y84{bottom:107.072000pt;}
.y8c{bottom:108.992000pt;}
.y26{bottom:115.072000pt;}
.ydc{bottom:115.188000pt;}
.yb7{bottom:116.358667pt;}
.ya2{bottom:125.312000pt;}
.y83{bottom:127.712000pt;}
.y8b{bottom:129.792000pt;}
.ydb{bottom:133.588000pt;}
.y25{bottom:135.866667pt;}
.ya1{bottom:145.946667pt;}
.y82{bottom:148.346667pt;}
.y65{bottom:150.426667pt;}
.yda{bottom:151.988000pt;}
.y24{bottom:156.506667pt;}
.y45{bottom:158.586667pt;}
.y81{bottom:169.146667pt;}
.yd9{bottom:170.388000pt;}
.y64{bottom:171.066667pt;}
.y23{bottom:177.306667pt;}
.y44{bottom:179.226667pt;}
.ya0{bottom:185.306667pt;}
.yd8{bottom:188.788000pt;}
.y80{bottom:189.786667pt;}
.y63{bottom:191.866667pt;}
.y22{bottom:197.946667pt;}
.y43{bottom:200.026667pt;}
.y9f{bottom:206.106667pt;}
.yd7{bottom:207.228000pt;}
.y7f{bottom:210.426667pt;}
.y62{bottom:212.506667pt;}
.y21{bottom:218.586667pt;}
.y42{bottom:220.666667pt;}
.y7e{bottom:231.226667pt;}
.yb6{bottom:232.826667pt;}
.y61{bottom:233.306667pt;}
.y20{bottom:239.386667pt;}
.y41{bottom:241.306667pt;}
.yd6{bottom:244.348000pt;}
.y9e{bottom:245.466667pt;}
.y7d{bottom:251.866667pt;}
.y60{bottom:253.946667pt;}
.y1f{bottom:260.026667pt;}
.y40{bottom:262.106667pt;}
.yd5{bottom:262.748000pt;}
.y9d{bottom:266.106667pt;}
.y92{bottom:270.586667pt;}
.yb5{bottom:272.186667pt;}
.y8a{bottom:272.666667pt;}
.yd4{bottom:281.148000pt;}
.y7c{bottom:291.266667pt;}
.yb4{bottom:293.026667pt;}
.y5f{bottom:293.346667pt;}
.y1e{bottom:299.426667pt;}
.yd3{bottom:299.548000pt;}
.y3f{bottom:301.506667pt;}
.y9c{bottom:305.506667pt;}
.y7b{bottom:312.066667pt;}
.y5e{bottom:313.986667pt;}
.y1d{bottom:320.066667pt;}
.y3e{bottom:322.146667pt;}
.y9b{bottom:326.146667pt;}
.yb3{bottom:332.386667pt;}
.y7a{bottom:332.706667pt;}
.y5d{bottom:334.786667pt;}
.yd2{bottom:336.188000pt;}
.y1c{bottom:340.866667pt;}
.y3d{bottom:342.786667pt;}
.y79{bottom:353.346667pt;}
.y5c{bottom:355.426667pt;}
.y1b{bottom:361.506667pt;}
.y3c{bottom:363.586667pt;}
.y9a{bottom:365.666667pt;}
.yb2{bottom:371.746667pt;}
.y91{bottom:372.066667pt;}
.yd1{bottom:373.308000pt;}
.y78{bottom:374.146667pt;}
.y5b{bottom:376.066667pt;}
.y1a{bottom:382.146667pt;}
.y3b{bottom:384.226667pt;}
.y90{bottom:392.706667pt;}
.y77{bottom:394.786667pt;}
.y5a{bottom:396.866667pt;}
.y19{bottom:402.946667pt;}
.y99{bottom:405.026667pt;}
.yd0{bottom:410.748000pt;}
.yb1{bottom:411.106667pt;}
.y8f{bottom:413.506667pt;}
.y76{bottom:415.426667pt;}
.y59{bottom:417.506667pt;}
.y18{bottom:423.586667pt;}
.y98{bottom:425.666667pt;}
.yb0{bottom:431.746667pt;}
.y8e{bottom:434.146667pt;}
.y75{bottom:436.226667pt;}
.y58{bottom:438.146667pt;}
.y3a{bottom:444.386667pt;}
.ycf{bottom:447.414667pt;}
.y8d{bottom:454.786667pt;}
.y89{bottom:456.866667pt;}
.y57{bottom:458.946667pt;}
.y17{bottom:462.946667pt;}
.y39{bottom:465.026667pt;}
.yaf{bottom:471.106667pt;}
.y74{bottom:475.586667pt;}
.y88{bottom:477.666667pt;}
.y56{bottom:479.586667pt;}
.y16{bottom:483.746667pt;}
.yce{bottom:484.534667pt;}
.y97{bottom:485.666667pt;}
.y73{bottom:496.226667pt;}
.y87{bottom:498.306667pt;}
.y55{bottom:500.386667pt;}
.y15{bottom:504.386667pt;}
.yae{bottom:510.466667pt;}
.y72{bottom:517.026667pt;}
.y93{bottom:518.946667pt;}
.ycd{bottom:521.814667pt;}
.y14{bottom:525.026667pt;}
.yad{bottom:531.133333pt;}
.y71{bottom:537.693333pt;}
.y54{bottom:539.773333pt;}
.ycc{bottom:540.214667pt;}
.y13{bottom:545.853333pt;}
.y70{bottom:558.333333pt;}
.ycb{bottom:558.614667pt;}
.y53{bottom:560.413333pt;}
.y96{bottom:564.413333pt;}
.y12{bottom:566.493333pt;}
.yac{bottom:570.493333pt;}
.yca{bottom:577.014667pt;}
.y6f{bottom:579.133333pt;}
.y52{bottom:581.053333pt;}
.y38{bottom:585.213333pt;}
.y11{bottom:587.133333pt;}
.yab{bottom:591.293333pt;}
.yc9{bottom:595.414667pt;}
.y6e{bottom:599.773333pt;}
.y51{bottom:601.853333pt;}
.y37{bottom:605.853333pt;}
.y10{bottom:607.933333pt;}
.yc8{bottom:613.814667pt;}
.y6d{bottom:620.413333pt;}
.y50{bottom:622.493333pt;}
.y95{bottom:624.093333pt;}
.y36{bottom:626.493333pt;}
.yaa{bottom:630.653333pt;}
.yc7{bottom:632.214667pt;}
.y6c{bottom:641.213333pt;}
.y4f{bottom:643.133333pt;}
.yf{bottom:647.293333pt;}
.yc6{bottom:650.614667pt;}
.ya9{bottom:651.293333pt;}
.y6b{bottom:661.853333pt;}
.y4e{bottom:663.933333pt;}
.y35{bottom:665.853333pt;}
.ye{bottom:667.933333pt;}
.yc5{bottom:669.054667pt;}
.y6a{bottom:682.493333pt;}
.y4d{bottom:684.573333pt;}
.y34{bottom:686.653333pt;}
.yc4{bottom:687.454667pt;}
.yd{bottom:688.733333pt;}
.ya8{bottom:690.653333pt;}
.y69{bottom:703.293333pt;}
.y4c{bottom:705.373333pt;}
.yc3{bottom:705.854667pt;}
.y33{bottom:707.293333pt;}
.ya7{bottom:711.453333pt;}
.y68{bottom:723.933333pt;}
.y94{bottom:726.013333pt;}
.yc{bottom:728.093333pt;}
.yc2{bottom:742.654667pt;}
.y4b{bottom:744.733333pt;}
.y32{bottom:746.653333pt;}
.yb{bottom:748.733333pt;}
.ya6{bottom:750.813333pt;}
.y4a{bottom:765.373333pt;}
.y31{bottom:767.493333pt;}
.ya{bottom:769.413333pt;}
.ya5{bottom:771.493333pt;}
.yc1{bottom:780.094667pt;}
.y49{bottom:786.053333pt;}
.y9{bottom:790.213333pt;}
.yc0{bottom:798.494667pt;}
.y30{bottom:806.853333pt;}
.y8{bottom:810.853333pt;}
.ybf{bottom:816.894667pt;}
.y67{bottom:825.413333pt;}
.y2f{bottom:827.493333pt;}
.y7{bottom:831.493333pt;}
.ybe{bottom:835.294667pt;}
.y66{bottom:846.213333pt;}
.y2e{bottom:848.133333pt;}
.ye5{bottom:851.173333pt;}
.y6{bottom:852.293333pt;}
.y48{bottom:866.853333pt;}
.y2d{bottom:868.933333pt;}
.ya4{bottom:870.853333pt;}
.ybd{bottom:871.934667pt;}
.y5{bottom:872.933333pt;}
.y47{bottom:887.493333pt;}
.ye4{bottom:888.133333pt;}
.y2c{bottom:889.573333pt;}
.ya3{bottom:891.653333pt;}
.y46{bottom:908.293333pt;}
.ybc{bottom:909.401333pt;}
.y86{bottom:910.213333pt;}
.y4{bottom:912.293333pt;}
.ye3{bottom:927.493333pt;}
.y2b{bottom:928.933333pt;}
.y85{bottom:931.013333pt;}
.y2a{bottom:949.573333pt;}
.y3{bottom:951.653333pt;}
.ye2{bottom:966.853333pt;}
.y29{bottom:970.373333pt;}
.y2{bottom:990.533333pt;}
.y28{bottom:991.013333pt;}
.ye0{bottom:1005.760000pt;}
.y1{bottom:1011.360000pt;}
.y27{bottom:1011.840000pt;}
.h8{height:18.400000pt;}
.h9{height:44.648750pt;}
.h5{height:62.812500pt;}
.h6{height:64.500000pt;}
.h3{height:70.978125pt;}
.h2{height:72.885000pt;}
.h4{height:89.593333pt;}
.h7{height:923.800000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:568.880000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:0.950667pt;}
.xc{left:96.945333pt;}
.xa{left:104.785333pt;}
.x8{left:112.521333pt;}
.x5{left:113.472000pt;}
.x1{left:140.666667pt;}
.x3{left:207.386667pt;}
.x6{left:209.466667pt;}
.xb{left:270.745333pt;}
.x2{left:327.586667pt;}
.x7{left:343.426667pt;}
.xd{left:394.626667pt;}
.x4{left:675.973333pt;}
}

