
    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_d2c023c17b61d650ee098262.woff')format("woff");}.ff1{font-family:ff1;line-height:1.102051;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_4e44af3caffa22b3165f8f9e.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_57acd3ab91fb015cfa7bf352.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_ba3dc243832fb8a00a72353d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.937988;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_e7f1f90ce5d4bcca49de8834.woff')format("woff");}.ff5{font-family:ff5;line-height:0.937988;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_d9296c0750a9ced35d9c32b9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.738770;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_bea4f6de6840b7543d62e313.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:0.000000px;}
._10{margin-left:-2.315520px;}
._2{margin-left:-1.152000px;}
._0{width:1.149120px;}
._1{width:3.096000px;}
._3{width:4.106880px;}
._12{width:5.109120px;}
._a{width:6.120000px;}
._b{width:7.200000px;}
._c{width:8.928000px;}
._13{width:9.974880px;}
._4{width:11.232000px;}
._5{width:12.242880px;}
._f{width:13.434240px;}
._6{width:14.904000px;}
._7{width:16.133760px;}
._16{width:19.416000px;}
._15{width:20.819520px;}
._9{width:22.176000px;}
._8{width:23.544000px;}
._11{width:24.552000px;}
._d{width:25.608000px;}
._e{width:26.736000px;}
._14{width:30.888000px;}
._18{width:194.376000px;}
._19{width:197.405760px;}
._17{width:1812.720000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:5.760000px;}
.fs5{font-size:18.000000px;}
.fs2{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:110.520000px;}
.y62{bottom:119.880000px;}
.y67{bottom:121.140000px;}
.y6d{bottom:123.840000px;}
.y56{bottom:127.260000px;}
.y13{bottom:133.920000px;}
.y4d{bottom:138.780000px;}
.y8a{bottom:139.140000px;}
.y40{bottom:139.500000px;}
.y85{bottom:142.020000px;}
.y7f{bottom:143.460000px;}
.y5b{bottom:153.360000px;}
.y66{bottom:156.960000px;}
.y12{bottom:157.500000px;}
.y4c{bottom:162.390000px;}
.y6c{bottom:162.750000px;}
.y61{bottom:164.730000px;}
.y96{bottom:165.450000px;}
.y73{bottom:166.530000px;}
.y55{bottom:170.490000px;}
.y89{bottom:177.510000px;}
.y38{bottom:178.410000px;}
.y84{bottom:181.110000px;}
.y11{bottom:181.290000px;}
.y4b{bottom:186.330000px;}
.y7e{bottom:187.950000px;}
.y5a{bottom:192.090000px;}
.y37{bottom:201.990000px;}
.y95{bottom:202.890000px;}
.y10{bottom:205.050000px;}
.y72{bottom:205.410000px;}
.y60{bottom:209.370000px;}
.y4a{bottom:210.090000px;}
.y36{bottom:225.750000px;}
.y7d{bottom:226.110000px;}
.y90{bottom:227.370000px;}
.yf{bottom:228.990000px;}
.y49{bottom:233.850000px;}
.y94{bottom:237.090000px;}
.y35{bottom:249.510000px;}
.y5f{bottom:250.770000px;}
.y48{bottom:257.610000px;}
.y79{bottom:259.950000px;}
.y8f{bottom:261.390000px;}
.y34{bottom:273.450000px;}
.ye{bottom:273.990000px;}
.y47{bottom:281.550000px;}
.y5e{bottom:289.830000px;}
.y33{bottom:297.210000px;}
.yd{bottom:297.570000px;}
.y78{bottom:299.010000px;}
.y32{bottom:320.970000px;}
.y46{bottom:322.950000px;}
.yc{bottom:342.570000px;}
.y31{bottom:344.730000px;}
.y45{bottom:362.910000px;}
.yb{bottom:366.150000px;}
.y30{bottom:368.670000px;}
.ya{bottom:389.910000px;}
.y2f{bottom:392.430000px;}
.y44{bottom:401.970000px;}
.y9{bottom:413.895000px;}
.y2e{bottom:437.475000px;}
.y8{bottom:458.175000px;}
.y2d{bottom:461.055000px;}
.y2c{bottom:484.815000px;}
.y7{bottom:504.975000px;}
.y2b{bottom:508.575000px;}
.y2a{bottom:532.515000px;}
.y6{bottom:535.215000px;}
.y29{bottom:556.275000px;}
.y28{bottom:580.035000px;}
.y71{bottom:581.475000px;}
.y65{bottom:589.215000px;}
.y27{bottom:603.795000px;}
.y70{bottom:608.475000px;}
.y88{bottom:608.835000px;}
.y64{bottom:629.175000px;}
.y6f{bottom:640.335000px;}
.y26{bottom:648.795000px;}
.y87{bottom:651.705000px;}
.y63{bottom:668.445000px;}
.y59{bottom:670.065000px;}
.y25{bottom:672.585000px;}
.y93{bottom:678.345000px;}
.y6e{bottom:679.425000px;}
.y7c{bottom:683.925000px;}
.y86{bottom:690.585000px;}
.y24{bottom:696.345000px;}
.y58{bottom:712.905000px;}
.y92{bottom:715.245000px;}
.y43{bottom:718.485000px;}
.y23{bottom:720.105000px;}
.y7b{bottom:726.765000px;}
.y22{bottom:743.865000px;}
.y42{bottom:747.825000px;}
.y91{bottom:749.445000px;}
.y57{bottom:751.785000px;}
.y83{bottom:758.985000px;}
.y7a{bottom:765.105000px;}
.y21{bottom:767.625000px;}
.y41{bottom:786.885000px;}
.y82{bottom:788.865000px;}
.y20{bottom:791.565000px;}
.y54{bottom:803.805000px;}
.y77{bottom:806.685000px;}
.y81{bottom:812.445000px;}
.y1f{bottom:815.325000px;}
.y53{bottom:833.685000px;}
.y80{bottom:836.385000px;}
.y76{bottom:836.565000px;}
.y1e{bottom:839.085000px;}
.y6b{bottom:851.505000px;}
.y52{bottom:857.265000px;}
.y75{bottom:860.145000px;}
.y51{bottom:881.205000px;}
.y6a{bottom:881.385000px;}
.y9b{bottom:882.825000px;}
.y74{bottom:883.905000px;}
.y1d{bottom:884.085000px;}
.y3f{bottom:899.970000px;}
.y50{bottom:905.010000px;}
.y1c{bottom:907.710000px;}
.y5d{bottom:907.890000px;}
.y3e{bottom:922.830000px;}
.y9a{bottom:925.890000px;}
.y4f{bottom:928.770000px;}
.y1b{bottom:931.650000px;}
.y99{bottom:949.830000px;}
.y4e{bottom:952.530000px;}
.y3d{bottom:952.710000px;}
.y1a{bottom:955.410000px;}
.y8e{bottom:958.110000px;}
.y98{bottom:973.590000px;}
.y3c{bottom:976.290000px;}
.y5{bottom:983.130000px;}
.y97{bottom:997.350000px;}
.y8d{bottom:997.530000px;}
.y3b{bottom:1000.230000px;}
.y19{bottom:1000.410000px;}
.y4{bottom:1009.050000px;}
.y8c{bottom:1021.110000px;}
.y18{bottom:1023.990000px;}
.y8b{bottom:1045.050000px;}
.y69{bottom:1045.230000px;}
.y3a{bottom:1047.750000px;}
.y3{bottom:1055.850000px;}
.y68{bottom:1068.810000px;}
.y17{bottom:1068.990000px;}
.y16{bottom:1092.570000px;}
.y39{bottom:1092.750000px;}
.y2{bottom:1102.470000px;}
.y15{bottom:1116.330000px;}
.y1{bottom:1134.330000px;}
.y14{bottom:1140.270000px;}
.h9{height:4.159688px;}
.h3{height:5.115938px;}
.h6{height:5.163750px;}
.ha{height:12.999023px;}
.hd{height:34.837383px;}
.hc{height:38.997070px;}
.h4{height:42.845977px;}
.hb{height:43.156758px;}
.h7{height:47.836406px;}
.h10{height:48.761719px;}
.h8{height:51.996094px;}
.h5{height:64.546875px;}
.he{height:64.853086px;}
.hf{height:65.884219px;}
.h2{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:127.656000px;}
.x6{left:180.750000px;}
.x1{left:183.810000px;}
.xd{left:217.650000px;}
.x19{left:291.675000px;}
.x10{left:295.275000px;}
.x1f{left:299.955000px;}
.x14{left:306.075000px;}
.x17{left:323.535000px;}
.xe{left:327.135000px;}
.x4{left:329.115000px;}
.x1d{left:331.815000px;}
.x12{left:337.755000px;}
.xb{left:346.935000px;}
.x26{left:356.115000px;}
.x22{left:369.435000px;}
.x2{left:375.915000px;}
.x9{left:378.795000px;}
.x3{left:446.475000px;}
.x1b{left:473.115000px;}
.x5{left:601.845000px;}
.x1e{left:616.425000px;}
.x1c{left:646.845000px;}
.x18{left:649.005000px;}
.x27{left:651.345000px;}
.x11{left:657.105000px;}
.xf{left:665.205000px;}
.x21{left:672.990000px;}
.x23{left:676.050000px;}
.x8{left:685.590000px;}
.x25{left:689.010000px;}
.xa{left:693.510000px;}
.x1a{left:696.390000px;}
.x16{left:697.650000px;}
.x15{left:703.050000px;}
.x13{left:704.130000px;}
.x24{left:706.830000px;}
.xc{left:724.650000px;}
.x20{left:731.490000px;}
.x28{left:758.670000px;}
.x29{left:765.510000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:0.000000pt;}
._10{margin-left:-2.058240pt;}
._2{margin-left:-1.024000pt;}
._0{width:1.021440pt;}
._1{width:2.752000pt;}
._3{width:3.650560pt;}
._12{width:4.541440pt;}
._a{width:5.440000pt;}
._b{width:6.400000pt;}
._c{width:7.936000pt;}
._13{width:8.866560pt;}
._4{width:9.984000pt;}
._5{width:10.882560pt;}
._f{width:11.941547pt;}
._6{width:13.248000pt;}
._7{width:14.341120pt;}
._16{width:17.258667pt;}
._15{width:18.506240pt;}
._9{width:19.712000pt;}
._8{width:20.928000pt;}
._11{width:21.824000pt;}
._d{width:22.762667pt;}
._e{width:23.765333pt;}
._14{width:27.456000pt;}
._18{width:172.778667pt;}
._19{width:175.471787pt;}
._17{width:1611.306667pt;}
.fs1{font-size:5.120000pt;}
.fs5{font-size:16.000000pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:98.240000pt;}
.y62{bottom:106.560000pt;}
.y67{bottom:107.680000pt;}
.y6d{bottom:110.080000pt;}
.y56{bottom:113.120000pt;}
.y13{bottom:119.040000pt;}
.y4d{bottom:123.360000pt;}
.y8a{bottom:123.680000pt;}
.y40{bottom:124.000000pt;}
.y85{bottom:126.240000pt;}
.y7f{bottom:127.520000pt;}
.y5b{bottom:136.320000pt;}
.y66{bottom:139.520000pt;}
.y12{bottom:140.000000pt;}
.y4c{bottom:144.346667pt;}
.y6c{bottom:144.666667pt;}
.y61{bottom:146.426667pt;}
.y96{bottom:147.066667pt;}
.y73{bottom:148.026667pt;}
.y55{bottom:151.546667pt;}
.y89{bottom:157.786667pt;}
.y38{bottom:158.586667pt;}
.y84{bottom:160.986667pt;}
.y11{bottom:161.146667pt;}
.y4b{bottom:165.626667pt;}
.y7e{bottom:167.066667pt;}
.y5a{bottom:170.746667pt;}
.y37{bottom:179.546667pt;}
.y95{bottom:180.346667pt;}
.y10{bottom:182.266667pt;}
.y72{bottom:182.586667pt;}
.y60{bottom:186.106667pt;}
.y4a{bottom:186.746667pt;}
.y36{bottom:200.666667pt;}
.y7d{bottom:200.986667pt;}
.y90{bottom:202.106667pt;}
.yf{bottom:203.546667pt;}
.y49{bottom:207.866667pt;}
.y94{bottom:210.746667pt;}
.y35{bottom:221.786667pt;}
.y5f{bottom:222.906667pt;}
.y48{bottom:228.986667pt;}
.y79{bottom:231.066667pt;}
.y8f{bottom:232.346667pt;}
.y34{bottom:243.066667pt;}
.ye{bottom:243.546667pt;}
.y47{bottom:250.266667pt;}
.y5e{bottom:257.626667pt;}
.y33{bottom:264.186667pt;}
.yd{bottom:264.506667pt;}
.y78{bottom:265.786667pt;}
.y32{bottom:285.306667pt;}
.y46{bottom:287.066667pt;}
.yc{bottom:304.506667pt;}
.y31{bottom:306.426667pt;}
.y45{bottom:322.586667pt;}
.yb{bottom:325.466667pt;}
.y30{bottom:327.706667pt;}
.ya{bottom:346.586667pt;}
.y2f{bottom:348.826667pt;}
.y44{bottom:357.306667pt;}
.y9{bottom:367.906667pt;}
.y2e{bottom:388.866667pt;}
.y8{bottom:407.266667pt;}
.y2d{bottom:409.826667pt;}
.y2c{bottom:430.946667pt;}
.y7{bottom:448.866667pt;}
.y2b{bottom:452.066667pt;}
.y2a{bottom:473.346667pt;}
.y6{bottom:475.746667pt;}
.y29{bottom:494.466667pt;}
.y28{bottom:515.586667pt;}
.y71{bottom:516.866667pt;}
.y65{bottom:523.746667pt;}
.y27{bottom:536.706667pt;}
.y70{bottom:540.866667pt;}
.y88{bottom:541.186667pt;}
.y64{bottom:559.266667pt;}
.y6f{bottom:569.186667pt;}
.y26{bottom:576.706667pt;}
.y87{bottom:579.293333pt;}
.y63{bottom:594.173333pt;}
.y59{bottom:595.613333pt;}
.y25{bottom:597.853333pt;}
.y93{bottom:602.973333pt;}
.y6e{bottom:603.933333pt;}
.y7c{bottom:607.933333pt;}
.y86{bottom:613.853333pt;}
.y24{bottom:618.973333pt;}
.y58{bottom:633.693333pt;}
.y92{bottom:635.773333pt;}
.y43{bottom:638.653333pt;}
.y23{bottom:640.093333pt;}
.y7b{bottom:646.013333pt;}
.y22{bottom:661.213333pt;}
.y42{bottom:664.733333pt;}
.y91{bottom:666.173333pt;}
.y57{bottom:668.253333pt;}
.y83{bottom:674.653333pt;}
.y7a{bottom:680.093333pt;}
.y21{bottom:682.333333pt;}
.y41{bottom:699.453333pt;}
.y82{bottom:701.213333pt;}
.y20{bottom:703.613333pt;}
.y54{bottom:714.493333pt;}
.y77{bottom:717.053333pt;}
.y81{bottom:722.173333pt;}
.y1f{bottom:724.733333pt;}
.y53{bottom:741.053333pt;}
.y80{bottom:743.453333pt;}
.y76{bottom:743.613333pt;}
.y1e{bottom:745.853333pt;}
.y6b{bottom:756.893333pt;}
.y52{bottom:762.013333pt;}
.y75{bottom:764.573333pt;}
.y51{bottom:783.293333pt;}
.y6a{bottom:783.453333pt;}
.y9b{bottom:784.733333pt;}
.y74{bottom:785.693333pt;}
.y1d{bottom:785.853333pt;}
.y3f{bottom:799.973333pt;}
.y50{bottom:804.453333pt;}
.y1c{bottom:806.853333pt;}
.y5d{bottom:807.013333pt;}
.y3e{bottom:820.293333pt;}
.y9a{bottom:823.013333pt;}
.y4f{bottom:825.573333pt;}
.y1b{bottom:828.133333pt;}
.y99{bottom:844.293333pt;}
.y4e{bottom:846.693333pt;}
.y3d{bottom:846.853333pt;}
.y1a{bottom:849.253333pt;}
.y8e{bottom:851.653333pt;}
.y98{bottom:865.413333pt;}
.y3c{bottom:867.813333pt;}
.y5{bottom:873.893333pt;}
.y97{bottom:886.533333pt;}
.y8d{bottom:886.693333pt;}
.y3b{bottom:889.093333pt;}
.y19{bottom:889.253333pt;}
.y4{bottom:896.933333pt;}
.y8c{bottom:907.653333pt;}
.y18{bottom:910.213333pt;}
.y8b{bottom:928.933333pt;}
.y69{bottom:929.093333pt;}
.y3a{bottom:931.333333pt;}
.y3{bottom:938.533333pt;}
.y68{bottom:950.053333pt;}
.y17{bottom:950.213333pt;}
.y16{bottom:971.173333pt;}
.y39{bottom:971.333333pt;}
.y2{bottom:979.973333pt;}
.y15{bottom:992.293333pt;}
.y1{bottom:1008.293333pt;}
.y14{bottom:1013.573333pt;}
.h9{height:3.697500pt;}
.h3{height:4.547500pt;}
.h6{height:4.590000pt;}
.ha{height:11.554688pt;}
.hd{height:30.966562pt;}
.hc{height:34.664062pt;}
.h4{height:38.085312pt;}
.hb{height:38.361562pt;}
.h7{height:42.521250pt;}
.h10{height:43.343750pt;}
.h8{height:46.218750pt;}
.h5{height:57.375000pt;}
.he{height:57.647187pt;}
.hf{height:58.563750pt;}
.h2{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:113.472000pt;}
.x6{left:160.666667pt;}
.x1{left:163.386667pt;}
.xd{left:193.466667pt;}
.x19{left:259.266667pt;}
.x10{left:262.466667pt;}
.x1f{left:266.626667pt;}
.x14{left:272.066667pt;}
.x17{left:287.586667pt;}
.xe{left:290.786667pt;}
.x4{left:292.546667pt;}
.x1d{left:294.946667pt;}
.x12{left:300.226667pt;}
.xb{left:308.386667pt;}
.x26{left:316.546667pt;}
.x22{left:328.386667pt;}
.x2{left:334.146667pt;}
.x9{left:336.706667pt;}
.x3{left:396.866667pt;}
.x1b{left:420.546667pt;}
.x5{left:534.973333pt;}
.x1e{left:547.933333pt;}
.x1c{left:574.973333pt;}
.x18{left:576.893333pt;}
.x27{left:578.973333pt;}
.x11{left:584.093333pt;}
.xf{left:591.293333pt;}
.x21{left:598.213333pt;}
.x23{left:600.933333pt;}
.x8{left:609.413333pt;}
.x25{left:612.453333pt;}
.xa{left:616.453333pt;}
.x1a{left:619.013333pt;}
.x16{left:620.133333pt;}
.x15{left:624.933333pt;}
.x13{left:625.893333pt;}
.x24{left:628.293333pt;}
.xc{left:644.133333pt;}
.x20{left:650.213333pt;}
.x28{left:674.373333pt;}
.x29{left:680.453333pt;}
}

