
    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_7ea24be55d9bfe2e36925e7a.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_2e1f0be6b492abb4209da840.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_12e0ab1e346fa2cc0717ea39.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0300db0b99baed92c5f078dc.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a1b9678991461f67446e6b43.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e2e48f6999de77689ee40cb7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_f9dac86ed991ce28409c1c52.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d8d456ace27d455860bdb253.woff')format("woff");}.ff8{font-family:ff8;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.123600px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.298200px;}
.ls2{letter-spacing:0.360000px;}
.ls3{letter-spacing:24.901920px;}
.ls1{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;}
}
.ws2{word-spacing:-59.760000px;}
.ws3{word-spacing:-20.700000px;}
.ws4{word-spacing:-20.638200px;}
.ws0{word-spacing:-20.340000px;}
.ws5{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-2.278080px;}
._0{margin-left:-1.139040px;}
._1{width:1.453200px;}
._3{width:3.320880px;}
.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;}
.ya5{bottom:4.500000px;}
.y91{bottom:25.012500px;}
.ya4{bottom:45.930000px;}
.y90{bottom:66.766500px;}
.ya3{bottom:87.690000px;}
.y8f{bottom:108.526500px;}
.y8d{bottom:119.923500px;}
.y4b{bottom:122.616000px;}
.y8e{bottom:129.226500px;}
.ya2{bottom:129.630000px;}
.y59{bottom:131.076000px;}
.y62{bottom:134.136000px;}
.y4a{bottom:145.836000px;}
.ya1{bottom:150.330000px;}
.y58{bottom:154.470000px;}
.y23{bottom:157.350000px;}
.y6a{bottom:159.150000px;}
.y7c{bottom:162.030000px;}
.y49{bottom:169.050000px;}
.ya0{bottom:171.030000px;}
.y57{bottom:177.690000px;}
.y22{bottom:180.750000px;}
.y7b{bottom:185.250000px;}
.y9f{bottom:191.730000px;}
.y48{bottom:192.450000px;}
.y56{bottom:200.910000px;}
.y21{bottom:203.970000px;}
.y7a{bottom:208.470000px;}
.y9e{bottom:212.430000px;}
.y47{bottom:215.670000px;}
.y3d{bottom:225.030000px;}
.y69{bottom:227.190000px;}
.y46{bottom:238.890000px;}
.y55{bottom:245.190000px;}
.y61{bottom:247.710000px;}
.y20{bottom:248.250000px;}
.y68{bottom:250.590000px;}
.y79{bottom:252.210000px;}
.y9d{bottom:253.830000px;}
.y3c{bottom:269.310000px;}
.y1f{bottom:271.470000px;}
.y67{bottom:273.810000px;}
.y45{bottom:278.490000px;}
.y54{bottom:289.470000px;}
.y3b{bottom:292.530000px;}
.y1e{bottom:294.870000px;}
.y9c{bottom:295.635000px;}
.y78{bottom:297.030000px;}
.y8c{bottom:299.370000px;}
.y3a{bottom:315.750000px;}
.y66{bottom:317.550000px;}
.y1d{bottom:318.090000px;}
.y77{bottom:320.430000px;}
.y53{bottom:333.795000px;}
.y9b{bottom:337.575000px;}
.y39{bottom:339.195000px;}
.y76{bottom:343.695000px;}
.y52{bottom:357.195000px;}
.y9a{bottom:358.275000px;}
.y1c{bottom:361.875000px;}
.y38{bottom:362.415000px;}
.y8b{bottom:366.915000px;}
.y99{bottom:378.975000px;}
.y51{bottom:380.415000px;}
.y1b{bottom:385.095000px;}
.y37{bottom:385.635000px;}
.y75{bottom:387.435000px;}
.y8a{bottom:390.315000px;}
.y98{bottom:399.675000px;}
.y36{bottom:409.035000px;}
.y97{bottom:420.375000px;}
.y50{bottom:424.155000px;}
.y1a{bottom:429.915000px;}
.y60{bottom:432.255000px;}
.y89{bottom:434.595000px;}
.y96{bottom:441.075000px;}
.y65{bottom:452.775000px;}
.y35{bottom:453.315000px;}
.y5f{bottom:455.655000px;}
.y88{bottom:457.815000px;}
.y4f{bottom:468.975000px;}
.y19{bottom:474.375000px;}
.y83{bottom:476.535000px;}
.ya7{bottom:477.615000px;}
.y5e{bottom:478.875000px;}
.y87{bottom:481.215000px;}
.y95{bottom:482.475000px;}
.y4e{bottom:492.195000px;}
.y18{bottom:497.595000px;}
.y82{bottom:499.935000px;}
.y74{bottom:502.095000px;}
.y86{bottom:504.435000px;}
.ya6{bottom:519.375000px;}
.y17{bottom:520.815000px;}
.y5d{bottom:523.155000px;}
.y94{bottom:524.235000px;}
.y73{bottom:525.495000px;}
.y4d{bottom:536.655000px;}
.y16{bottom:544.215000px;}
.y5c{bottom:546.375000px;}
.y72{bottom:548.715000px;}
.y93{bottom:566.205000px;}
.y92{bottom:566.355000px;}
.y15{bottom:567.435000px;}
.y81{bottom:569.775000px;}
.y71{bottom:571.935000px;}
.y4c{bottom:580.935000px;}
.y34{bottom:587.955000px;}
.y14{bottom:590.655000px;}
.y33{bottom:611.205000px;}
.y13{bottom:614.085000px;}
.y70{bottom:616.245000px;}
.y12{bottom:637.305000px;}
.y6f{bottom:639.645000px;}
.y32{bottom:656.025000px;}
.y80{bottom:658.365000px;}
.y11{bottom:660.525000px;}
.y31{bottom:679.245000px;}
.y44{bottom:681.585000px;}
.y6e{bottom:683.385000px;}
.y10{bottom:683.925000px;}
.y30{bottom:702.645000px;}
.y7f{bottom:704.805000px;}
.y2f{bottom:725.865000px;}
.yf{bottom:728.205000px;}
.y2e{bottom:749.085000px;}
.ye{bottom:751.425000px;}
.y2d{bottom:772.485000px;}
.yd{bottom:774.825000px;}
.y2c{bottom:795.705000px;}
.yc{bottom:798.045000px;}
.y2b{bottom:819.105000px;}
.y6d{bottom:821.265000px;}
.yb{bottom:842.325000px;}
.y6c{bottom:844.665000px;}
.y64{bottom:863.430000px;}
.ya{bottom:865.590000px;}
.y43{bottom:886.650000px;}
.y6b{bottom:888.450000px;}
.y9{bottom:888.990000px;}
.y85{bottom:909.330000px;}
.y42{bottom:909.870000px;}
.y8{bottom:912.210000px;}
.y2a{bottom:933.270000px;}
.y7{bottom:935.430000px;}
.y84{bottom:954.150000px;}
.y29{bottom:956.490000px;}
.y6{bottom:958.830000px;}
.y7e{bottom:977.550000px;}
.y28{bottom:979.710000px;}
.y5{bottom:982.050000px;}
.y41{bottom:1000.230000px;}
.y7d{bottom:1000.770000px;}
.y5b{bottom:1003.110000px;}
.y63{bottom:1023.450000px;}
.y27{bottom:1023.990000px;}
.y4{bottom:1025.790000px;}
.y5a{bottom:1026.330000px;}
.y40{bottom:1045.050000px;}
.y26{bottom:1047.390000px;}
.y3f{bottom:1068.270000px;}
.y3{bottom:1070.610000px;}
.y3e{bottom:1091.670000px;}
.y2{bottom:1114.350000px;}
.y25{bottom:1114.890000px;}
.y1{bottom:1137.780000px;}
.y24{bottom:1138.320000px;}
.hb{height:50.229844px;}
.ha{height:64.546875px;}
.h9{height:70.664062px;}
.h7{height:72.562500px;}
.h4{height:79.810664px;}
.h3{height:79.850391px;}
.h2{height:81.995625px;}
.h5{height:83.625259px;}
.h6{height:145.792500px;}
.h8{height:582.405000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:646.830000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:112.483500px;}
.xa{left:117.703500px;}
.x9{left:123.166500px;}
.x4{left:127.656000px;}
.x1{left:131.616000px;}
.x5{left:154.650000px;}
.xb{left:168.508500px;}
.x6{left:181.650000px;}
.x2{left:234.390000px;}
.x3{left:358.275000px;}
.x8{left:388.515000px;}
.xd{left:443.955000px;}
.x7{left:761.910000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.109867pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.265067pt;}
.ls2{letter-spacing:0.320000pt;}
.ls3{letter-spacing:22.135040pt;}
.ls1{letter-spacing:56.912640pt;}
.ws2{word-spacing:-53.120000pt;}
.ws3{word-spacing:-18.400000pt;}
.ws4{word-spacing:-18.345067pt;}
.ws0{word-spacing:-18.080000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-2.024960pt;}
._0{margin-left:-1.012480pt;}
._1{width:1.291733pt;}
._3{width:2.951893pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:72.320000pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:4.000000pt;}
.y91{bottom:22.233333pt;}
.ya4{bottom:40.826667pt;}
.y90{bottom:59.348000pt;}
.ya3{bottom:77.946667pt;}
.y8f{bottom:96.468000pt;}
.y8d{bottom:106.598667pt;}
.y4b{bottom:108.992000pt;}
.y8e{bottom:114.868000pt;}
.ya2{bottom:115.226667pt;}
.y59{bottom:116.512000pt;}
.y62{bottom:119.232000pt;}
.y4a{bottom:129.632000pt;}
.ya1{bottom:133.626667pt;}
.y58{bottom:137.306667pt;}
.y23{bottom:139.866667pt;}
.y6a{bottom:141.466667pt;}
.y7c{bottom:144.026667pt;}
.y49{bottom:150.266667pt;}
.ya0{bottom:152.026667pt;}
.y57{bottom:157.946667pt;}
.y22{bottom:160.666667pt;}
.y7b{bottom:164.666667pt;}
.y9f{bottom:170.426667pt;}
.y48{bottom:171.066667pt;}
.y56{bottom:178.586667pt;}
.y21{bottom:181.306667pt;}
.y7a{bottom:185.306667pt;}
.y9e{bottom:188.826667pt;}
.y47{bottom:191.706667pt;}
.y3d{bottom:200.026667pt;}
.y69{bottom:201.946667pt;}
.y46{bottom:212.346667pt;}
.y55{bottom:217.946667pt;}
.y61{bottom:220.186667pt;}
.y20{bottom:220.666667pt;}
.y68{bottom:222.746667pt;}
.y79{bottom:224.186667pt;}
.y9d{bottom:225.626667pt;}
.y3c{bottom:239.386667pt;}
.y1f{bottom:241.306667pt;}
.y67{bottom:243.386667pt;}
.y45{bottom:247.546667pt;}
.y54{bottom:257.306667pt;}
.y3b{bottom:260.026667pt;}
.y1e{bottom:262.106667pt;}
.y9c{bottom:262.786667pt;}
.y78{bottom:264.026667pt;}
.y8c{bottom:266.106667pt;}
.y3a{bottom:280.666667pt;}
.y66{bottom:282.266667pt;}
.y1d{bottom:282.746667pt;}
.y77{bottom:284.826667pt;}
.y53{bottom:296.706667pt;}
.y9b{bottom:300.066667pt;}
.y39{bottom:301.506667pt;}
.y76{bottom:305.506667pt;}
.y52{bottom:317.506667pt;}
.y9a{bottom:318.466667pt;}
.y1c{bottom:321.666667pt;}
.y38{bottom:322.146667pt;}
.y8b{bottom:326.146667pt;}
.y99{bottom:336.866667pt;}
.y51{bottom:338.146667pt;}
.y1b{bottom:342.306667pt;}
.y37{bottom:342.786667pt;}
.y75{bottom:344.386667pt;}
.y8a{bottom:346.946667pt;}
.y98{bottom:355.266667pt;}
.y36{bottom:363.586667pt;}
.y97{bottom:373.666667pt;}
.y50{bottom:377.026667pt;}
.y1a{bottom:382.146667pt;}
.y60{bottom:384.226667pt;}
.y89{bottom:386.306667pt;}
.y96{bottom:392.066667pt;}
.y65{bottom:402.466667pt;}
.y35{bottom:402.946667pt;}
.y5f{bottom:405.026667pt;}
.y88{bottom:406.946667pt;}
.y4f{bottom:416.866667pt;}
.y19{bottom:421.666667pt;}
.y83{bottom:423.586667pt;}
.ya7{bottom:424.546667pt;}
.y5e{bottom:425.666667pt;}
.y87{bottom:427.746667pt;}
.y95{bottom:428.866667pt;}
.y4e{bottom:437.506667pt;}
.y18{bottom:442.306667pt;}
.y82{bottom:444.386667pt;}
.y74{bottom:446.306667pt;}
.y86{bottom:448.386667pt;}
.ya6{bottom:461.666667pt;}
.y17{bottom:462.946667pt;}
.y5d{bottom:465.026667pt;}
.y94{bottom:465.986667pt;}
.y73{bottom:467.106667pt;}
.y4d{bottom:477.026667pt;}
.y16{bottom:483.746667pt;}
.y5c{bottom:485.666667pt;}
.y72{bottom:487.746667pt;}
.y93{bottom:503.293333pt;}
.y92{bottom:503.426667pt;}
.y15{bottom:504.386667pt;}
.y81{bottom:506.466667pt;}
.y71{bottom:508.386667pt;}
.y4c{bottom:516.386667pt;}
.y34{bottom:522.626667pt;}
.y14{bottom:525.026667pt;}
.y33{bottom:543.293333pt;}
.y13{bottom:545.853333pt;}
.y70{bottom:547.773333pt;}
.y12{bottom:566.493333pt;}
.y6f{bottom:568.573333pt;}
.y32{bottom:583.133333pt;}
.y80{bottom:585.213333pt;}
.y11{bottom:587.133333pt;}
.y31{bottom:603.773333pt;}
.y44{bottom:605.853333pt;}
.y6e{bottom:607.453333pt;}
.y10{bottom:607.933333pt;}
.y30{bottom:624.573333pt;}
.y7f{bottom:626.493333pt;}
.y2f{bottom:645.213333pt;}
.yf{bottom:647.293333pt;}
.y2e{bottom:665.853333pt;}
.ye{bottom:667.933333pt;}
.y2d{bottom:686.653333pt;}
.yd{bottom:688.733333pt;}
.y2c{bottom:707.293333pt;}
.yc{bottom:709.373333pt;}
.y2b{bottom:728.093333pt;}
.y6d{bottom:730.013333pt;}
.yb{bottom:748.733333pt;}
.y6c{bottom:750.813333pt;}
.y64{bottom:767.493333pt;}
.ya{bottom:769.413333pt;}
.y43{bottom:788.133333pt;}
.y6b{bottom:789.733333pt;}
.y9{bottom:790.213333pt;}
.y85{bottom:808.293333pt;}
.y42{bottom:808.773333pt;}
.y8{bottom:810.853333pt;}
.y2a{bottom:829.573333pt;}
.y7{bottom:831.493333pt;}
.y84{bottom:848.133333pt;}
.y29{bottom:850.213333pt;}
.y6{bottom:852.293333pt;}
.y7e{bottom:868.933333pt;}
.y28{bottom:870.853333pt;}
.y5{bottom:872.933333pt;}
.y41{bottom:889.093333pt;}
.y7d{bottom:889.573333pt;}
.y5b{bottom:891.653333pt;}
.y63{bottom:909.733333pt;}
.y27{bottom:910.213333pt;}
.y4{bottom:911.813333pt;}
.y5a{bottom:912.293333pt;}
.y40{bottom:928.933333pt;}
.y26{bottom:931.013333pt;}
.y3f{bottom:949.573333pt;}
.y3{bottom:951.653333pt;}
.y3e{bottom:970.373333pt;}
.y2{bottom:990.533333pt;}
.y25{bottom:991.013333pt;}
.y1{bottom:1011.360000pt;}
.y24{bottom:1011.840000pt;}
.hb{height:44.648750pt;}
.ha{height:57.375000pt;}
.h9{height:62.812500pt;}
.h7{height:64.500000pt;}
.h4{height:70.942812pt;}
.h3{height:70.978125pt;}
.h2{height:72.885000pt;}
.h5{height:74.333564pt;}
.h6{height:129.593333pt;}
.h8{height:517.693333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:574.960000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:99.985333pt;}
.xa{left:104.625333pt;}
.x9{left:109.481333pt;}
.x4{left:113.472000pt;}
.x1{left:116.992000pt;}
.x5{left:137.466667pt;}
.xb{left:149.785333pt;}
.x6{left:161.466667pt;}
.x2{left:208.346667pt;}
.x3{left:318.466667pt;}
.x8{left:345.346667pt;}
.xd{left:394.626667pt;}
.x7{left:677.253333pt;}
}

