
    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_273f011909687d239414709d.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_d7802b4db35221b67803e490.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_50c83cd2d53d00a42bae14b6.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_816e06d90321f5e12fcc5ea0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_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_3d7a530dfa7c1af5681a5c25.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d8d456ace27d455860bdb253.woff')format("woff");}.ff7{font-family:ff7;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.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.360000px;}
.ls3{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;}
.ws0{word-spacing:-20.700000px;}
.ws3{word-spacing:-20.340000px;}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.383120px;}
._2{width:1.067280px;}
._1{width:2.165280px;}
.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;}
.yd1{bottom:4.500000px;}
.ycb{bottom:25.546500px;}
.yd0{bottom:45.900000px;}
.yca{bottom:46.246500px;}
.yc9{bottom:66.946500px;}
.yc8{bottom:87.646500px;}
.ycf{bottom:88.020000px;}
.yc7{bottom:108.346500px;}
.ya1{bottom:117.216000px;}
.y76{bottom:123.696000px;}
.y66{bottom:124.956000px;}
.y94{bottom:129.456000px;}
.yce{bottom:129.600000px;}
.yab{bottom:132.703500px;}
.ya4{bottom:138.096000px;}
.y4c{bottom:146.016000px;}
.y75{bottom:146.916000px;}
.y65{bottom:148.176000px;}
.yc6{bottom:150.106500px;}
.ycd{bottom:150.330000px;}
.y25{bottom:152.850000px;}
.y8a{bottom:155.190000px;}
.yaa{bottom:161.850000px;}
.y4b{bottom:169.230000px;}
.y74{bottom:170.310000px;}
.yc5{bottom:170.806500px;}
.y64{bottom:171.570000px;}
.ya3{bottom:172.830000px;}
.y24{bottom:176.070000px;}
.y89{bottom:178.410000px;}
.yc4{bottom:191.506500px;}
.y4a{bottom:192.450000px;}
.y63{bottom:194.790000px;}
.y23{bottom:199.470000px;}
.ya9{bottom:201.270000px;}
.y73{bottom:213.330000px;}
.y49{bottom:215.850000px;}
.y62{bottom:218.190000px;}
.y88{bottom:222.690000px;}
.yc3{bottom:232.771500px;}
.y48{bottom:239.070000px;}
.y61{bottom:241.410000px;}
.y22{bottom:243.390000px;}
.ya8{bottom:244.290000px;}
.y87{bottom:245.910000px;}
.y72{bottom:252.750000px;}
.y47{bottom:262.470000px;}
.y60{bottom:264.630000px;}
.y86{bottom:269.310000px;}
.yc2{bottom:274.891500px;}
.y71{bottom:276.150000px;}
.ya7{bottom:278.850000px;}
.y21{bottom:288.030000px;}
.y85{bottom:292.530000px;}
.y46{bottom:306.750000px;}
.y20{bottom:311.250000px;}
.y84{bottom:315.750000px;}
.yc1{bottom:316.651500px;}
.y70{bottom:320.430000px;}
.y45{bottom:330.015000px;}
.y5f{bottom:332.355000px;}
.y1f{bottom:334.515000px;}
.y83{bottom:339.195000px;}
.y6f{bottom:343.695000px;}
.y44{bottom:353.235000px;}
.y5e{bottom:355.575000px;}
.yc0{bottom:357.871500px;}
.y1e{bottom:357.915000px;}
.y93{bottom:362.415000px;}
.y43{bottom:376.635000px;}
.y5d{bottom:378.795000px;}
.y1d{bottom:381.135000px;}
.y82{bottom:383.475000px;}
.y92{bottom:385.635000px;}
.y6e{bottom:387.975000px;}
.ybf{bottom:399.631500px;}
.y42{bottom:399.855000px;}
.y5c{bottom:402.195000px;}
.y1c{bottom:404.355000px;}
.y81{bottom:406.695000px;}
.y91{bottom:409.035000px;}
.y41{bottom:423.075000px;}
.y5b{bottom:425.415000px;}
.y1b{bottom:427.755000px;}
.y80{bottom:429.915000px;}
.y6d{bottom:432.255000px;}
.ybe{bottom:441.751500px;}
.y40{bottom:446.475000px;}
.y5a{bottom:448.635000px;}
.y1a{bottom:450.975000px;}
.y90{bottom:452.955000px;}
.y7f{bottom:453.315000px;}
.y6c{bottom:455.655000px;}
.ybd{bottom:462.481500px;}
.y3f{bottom:469.695000px;}
.y59{bottom:472.035000px;}
.y19{bottom:474.375000px;}
.y7e{bottom:476.535000px;}
.y3e{bottom:492.915000px;}
.y58{bottom:495.255000px;}
.y18{bottom:497.595000px;}
.y6b{bottom:499.935000px;}
.ybc{bottom:504.061500px;}
.y57{bottom:518.655000px;}
.y7d{bottom:520.815000px;}
.y6a{bottom:523.155000px;}
.ybb{bottom:524.761500px;}
.y3d{bottom:537.375000px;}
.y17{bottom:541.875000px;}
.y7c{bottom:544.215000px;}
.yba{bottom:545.461500px;}
.y3c{bottom:560.595000px;}
.y16{bottom:565.095000px;}
.yb9{bottom:566.161500px;}
.y69{bottom:567.435000px;}
.y3b{bottom:583.815000px;}
.y56{bottom:586.155000px;}
.yb8{bottom:586.861500px;}
.y15{bottom:588.495000px;}
.y8f{bottom:590.655000px;}
.y3a{bottom:607.245000px;}
.yb7{bottom:607.561500px;}
.y55{bottom:609.405000px;}
.y14{bottom:611.745000px;}
.y39{bottom:630.465000px;}
.y54{bottom:632.805000px;}
.y13{bottom:634.965000px;}
.yb6{bottom:649.321500px;}
.y38{bottom:653.685000px;}
.y53{bottom:656.025000px;}
.y12{bottom:658.365000px;}
.yb5{bottom:670.021500px;}
.y37{bottom:677.085000px;}
.y52{bottom:679.245000px;}
.y11{bottom:681.585000px;}
.yb4{bottom:690.721500px;}
.y36{bottom:700.305000px;}
.y8e{bottom:702.285000px;}
.y51{bottom:702.645000px;}
.y10{bottom:704.805000px;}
.y35{bottom:723.525000px;}
.y68{bottom:725.865000px;}
.yf{bottom:728.205000px;}
.yb3{bottom:731.986500px;}
.ya0{bottom:742.245000px;}
.y34{bottom:746.925000px;}
.y7b{bottom:749.085000px;}
.ye{bottom:751.425000px;}
.y9f{bottom:765.645000px;}
.y33{bottom:770.145000px;}
.y7a{bottom:772.485000px;}
.yb2{bottom:774.106500px;}
.yd{bottom:774.825000px;}
.y9e{bottom:788.865000px;}
.y50{bottom:793.545000px;}
.y79{bottom:795.705000px;}
.y9d{bottom:812.085000px;}
.y32{bottom:814.425000px;}
.yb1{bottom:815.866500px;}
.y4f{bottom:816.765000px;}
.yc{bottom:819.105000px;}
.y9c{bottom:835.485000px;}
.y31{bottom:837.825000px;}
.y4e{bottom:839.985000px;}
.yb{bottom:842.325000px;}
.yb0{bottom:857.086500px;}
.y9b{bottom:858.705000px;}
.y30{bottom:861.045000px;}
.y4d{bottom:863.430000px;}
.ya{bottom:865.590000px;}
.y9a{bottom:882.150000px;}
.y2f{bottom:884.310000px;}
.y67{bottom:886.650000px;}
.y9{bottom:888.990000px;}
.yaf{bottom:898.846500px;}
.y99{bottom:905.370000px;}
.y2e{bottom:907.710000px;}
.y8{bottom:912.210000px;}
.y98{bottom:928.590000px;}
.y2d{bottom:930.930000px;}
.y78{bottom:932.910000px;}
.y7{bottom:935.430000px;}
.yae{bottom:940.606500px;}
.y97{bottom:951.990000px;}
.y2c{bottom:954.150000px;}
.y6{bottom:958.830000px;}
.yad{bottom:961.126500px;}
.y96{bottom:975.210000px;}
.y2b{bottom:977.550000px;}
.y5{bottom:982.050000px;}
.ycc{bottom:982.230000px;}
.y95{bottom:998.430000px;}
.y2a{bottom:1000.770000px;}
.yac{bottom:1002.556500px;}
.y8d{bottom:1021.830000px;}
.y29{bottom:1023.990000px;}
.y4{bottom:1026.330000px;}
.y8c{bottom:1045.050000px;}
.y28{bottom:1047.390000px;}
.ya6{bottom:1066.650000px;}
.y8b{bottom:1068.270000px;}
.y3{bottom:1070.610000px;}
.y77{bottom:1091.670000px;}
.ya5{bottom:1104.810000px;}
.y2{bottom:1114.350000px;}
.y27{bottom:1114.890000px;}
.y1{bottom:1137.780000px;}
.y26{bottom:1138.320000px;}
.ya2{bottom:1143.180000px;}
.hc{height:50.229844px;}
.h6{height:58.651172px;}
.h5{height:60.226875px;}
.hb{height:70.628906px;}
.h8{height:70.664062px;}
.h9{height:72.562500px;}
.h4{height:79.810664px;}
.h3{height:79.850391px;}
.h2{height:81.995625px;}
.ha{height:166.530000px;}
.h7{height:1016.055000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:646.830000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:4.489500px;}
.x12{left:112.483500px;}
.xd{left:123.166500px;}
.x5{left:127.656000px;}
.xf{left:145.243500px;}
.x8{left:154.650000px;}
.x9{left:181.650000px;}
.x1{left:185.430000px;}
.x10{left:268.588500px;}
.x3{left:283.755000px;}
.x7{left:304.275000px;}
.x2{left:324.075000px;}
.x11{left:375.178500px;}
.xc{left:388.515000px;}
.x4{left:443.955000px;}
.x6{left:559.725000px;}
.xa{left:753.810000px;}
.xb{left:762.270000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:56.912640pt;}
.ws2{word-spacing:-53.120000pt;}
.ws0{word-spacing:-18.400000pt;}
.ws3{word-spacing:-18.080000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.229440pt;}
._2{width:0.948693pt;}
._1{width:1.924693pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:72.320000pt;}
.y0{bottom:0.000000pt;}
.yd1{bottom:4.000000pt;}
.ycb{bottom:22.708000pt;}
.yd0{bottom:40.800000pt;}
.yca{bottom:41.108000pt;}
.yc9{bottom:59.508000pt;}
.yc8{bottom:77.908000pt;}
.ycf{bottom:78.240000pt;}
.yc7{bottom:96.308000pt;}
.ya1{bottom:104.192000pt;}
.y76{bottom:109.952000pt;}
.y66{bottom:111.072000pt;}
.y94{bottom:115.072000pt;}
.yce{bottom:115.200000pt;}
.yab{bottom:117.958667pt;}
.ya4{bottom:122.752000pt;}
.y4c{bottom:129.792000pt;}
.y75{bottom:130.592000pt;}
.y65{bottom:131.712000pt;}
.yc6{bottom:133.428000pt;}
.ycd{bottom:133.626667pt;}
.y25{bottom:135.866667pt;}
.y8a{bottom:137.946667pt;}
.yaa{bottom:143.866667pt;}
.y4b{bottom:150.426667pt;}
.y74{bottom:151.386667pt;}
.yc5{bottom:151.828000pt;}
.y64{bottom:152.506667pt;}
.ya3{bottom:153.626667pt;}
.y24{bottom:156.506667pt;}
.y89{bottom:158.586667pt;}
.yc4{bottom:170.228000pt;}
.y4a{bottom:171.066667pt;}
.y63{bottom:173.146667pt;}
.y23{bottom:177.306667pt;}
.ya9{bottom:178.906667pt;}
.y73{bottom:189.626667pt;}
.y49{bottom:191.866667pt;}
.y62{bottom:193.946667pt;}
.y88{bottom:197.946667pt;}
.yc3{bottom:206.908000pt;}
.y48{bottom:212.506667pt;}
.y61{bottom:214.586667pt;}
.y22{bottom:216.346667pt;}
.ya8{bottom:217.146667pt;}
.y87{bottom:218.586667pt;}
.y72{bottom:224.666667pt;}
.y47{bottom:233.306667pt;}
.y60{bottom:235.226667pt;}
.y86{bottom:239.386667pt;}
.yc2{bottom:244.348000pt;}
.y71{bottom:245.466667pt;}
.ya7{bottom:247.866667pt;}
.y21{bottom:256.026667pt;}
.y85{bottom:260.026667pt;}
.y46{bottom:272.666667pt;}
.y20{bottom:276.666667pt;}
.y84{bottom:280.666667pt;}
.yc1{bottom:281.468000pt;}
.y70{bottom:284.826667pt;}
.y45{bottom:293.346667pt;}
.y5f{bottom:295.426667pt;}
.y1f{bottom:297.346667pt;}
.y83{bottom:301.506667pt;}
.y6f{bottom:305.506667pt;}
.y44{bottom:313.986667pt;}
.y5e{bottom:316.066667pt;}
.yc0{bottom:318.108000pt;}
.y1e{bottom:318.146667pt;}
.y93{bottom:322.146667pt;}
.y43{bottom:334.786667pt;}
.y5d{bottom:336.706667pt;}
.y1d{bottom:338.786667pt;}
.y82{bottom:340.866667pt;}
.y92{bottom:342.786667pt;}
.y6e{bottom:344.866667pt;}
.ybf{bottom:355.228000pt;}
.y42{bottom:355.426667pt;}
.y5c{bottom:357.506667pt;}
.y1c{bottom:359.426667pt;}
.y81{bottom:361.506667pt;}
.y91{bottom:363.586667pt;}
.y41{bottom:376.066667pt;}
.y5b{bottom:378.146667pt;}
.y1b{bottom:380.226667pt;}
.y80{bottom:382.146667pt;}
.y6d{bottom:384.226667pt;}
.ybe{bottom:392.668000pt;}
.y40{bottom:396.866667pt;}
.y5a{bottom:398.786667pt;}
.y1a{bottom:400.866667pt;}
.y90{bottom:402.626667pt;}
.y7f{bottom:402.946667pt;}
.y6c{bottom:405.026667pt;}
.ybd{bottom:411.094667pt;}
.y3f{bottom:417.506667pt;}
.y59{bottom:419.586667pt;}
.y19{bottom:421.666667pt;}
.y7e{bottom:423.586667pt;}
.y3e{bottom:438.146667pt;}
.y58{bottom:440.226667pt;}
.y18{bottom:442.306667pt;}
.y6b{bottom:444.386667pt;}
.ybc{bottom:448.054667pt;}
.y57{bottom:461.026667pt;}
.y7d{bottom:462.946667pt;}
.y6a{bottom:465.026667pt;}
.ybb{bottom:466.454667pt;}
.y3d{bottom:477.666667pt;}
.y17{bottom:481.666667pt;}
.y7c{bottom:483.746667pt;}
.yba{bottom:484.854667pt;}
.y3c{bottom:498.306667pt;}
.y16{bottom:502.306667pt;}
.yb9{bottom:503.254667pt;}
.y69{bottom:504.386667pt;}
.y3b{bottom:518.946667pt;}
.y56{bottom:521.026667pt;}
.yb8{bottom:521.654667pt;}
.y15{bottom:523.106667pt;}
.y8f{bottom:525.026667pt;}
.y3a{bottom:539.773333pt;}
.yb7{bottom:540.054667pt;}
.y55{bottom:541.693333pt;}
.y14{bottom:543.773333pt;}
.y39{bottom:560.413333pt;}
.y54{bottom:562.493333pt;}
.y13{bottom:564.413333pt;}
.yb6{bottom:577.174667pt;}
.y38{bottom:581.053333pt;}
.y53{bottom:583.133333pt;}
.y12{bottom:585.213333pt;}
.yb5{bottom:595.574667pt;}
.y37{bottom:601.853333pt;}
.y52{bottom:603.773333pt;}
.y11{bottom:605.853333pt;}
.yb4{bottom:613.974667pt;}
.y36{bottom:622.493333pt;}
.y8e{bottom:624.253333pt;}
.y51{bottom:624.573333pt;}
.y10{bottom:626.493333pt;}
.y35{bottom:643.133333pt;}
.y68{bottom:645.213333pt;}
.yf{bottom:647.293333pt;}
.yb3{bottom:650.654667pt;}
.ya0{bottom:659.773333pt;}
.y34{bottom:663.933333pt;}
.y7b{bottom:665.853333pt;}
.ye{bottom:667.933333pt;}
.y9f{bottom:680.573333pt;}
.y33{bottom:684.573333pt;}
.y7a{bottom:686.653333pt;}
.yb2{bottom:688.094667pt;}
.yd{bottom:688.733333pt;}
.y9e{bottom:701.213333pt;}
.y50{bottom:705.373333pt;}
.y79{bottom:707.293333pt;}
.y9d{bottom:721.853333pt;}
.y32{bottom:723.933333pt;}
.yb1{bottom:725.214667pt;}
.y4f{bottom:726.013333pt;}
.yc{bottom:728.093333pt;}
.y9c{bottom:742.653333pt;}
.y31{bottom:744.733333pt;}
.y4e{bottom:746.653333pt;}
.yb{bottom:748.733333pt;}
.yb0{bottom:761.854667pt;}
.y9b{bottom:763.293333pt;}
.y30{bottom:765.373333pt;}
.y4d{bottom:767.493333pt;}
.ya{bottom:769.413333pt;}
.y9a{bottom:784.133333pt;}
.y2f{bottom:786.053333pt;}
.y67{bottom:788.133333pt;}
.y9{bottom:790.213333pt;}
.yaf{bottom:798.974667pt;}
.y99{bottom:804.773333pt;}
.y2e{bottom:806.853333pt;}
.y8{bottom:810.853333pt;}
.y98{bottom:825.413333pt;}
.y2d{bottom:827.493333pt;}
.y78{bottom:829.253333pt;}
.y7{bottom:831.493333pt;}
.yae{bottom:836.094667pt;}
.y97{bottom:846.213333pt;}
.y2c{bottom:848.133333pt;}
.y6{bottom:852.293333pt;}
.yad{bottom:854.334667pt;}
.y96{bottom:866.853333pt;}
.y2b{bottom:868.933333pt;}
.y5{bottom:872.933333pt;}
.ycc{bottom:873.093333pt;}
.y95{bottom:887.493333pt;}
.y2a{bottom:889.573333pt;}
.yac{bottom:891.161333pt;}
.y8d{bottom:908.293333pt;}
.y29{bottom:910.213333pt;}
.y4{bottom:912.293333pt;}
.y8c{bottom:928.933333pt;}
.y28{bottom:931.013333pt;}
.ya6{bottom:948.133333pt;}
.y8b{bottom:949.573333pt;}
.y3{bottom:951.653333pt;}
.y77{bottom:970.373333pt;}
.ya5{bottom:982.053333pt;}
.y2{bottom:990.533333pt;}
.y27{bottom:991.013333pt;}
.y1{bottom:1011.360000pt;}
.y26{bottom:1011.840000pt;}
.ya2{bottom:1016.160000pt;}
.hc{height:44.648750pt;}
.h6{height:52.134375pt;}
.h5{height:53.535000pt;}
.hb{height:62.781250pt;}
.h8{height:62.812500pt;}
.h9{height:64.500000pt;}
.h4{height:70.942812pt;}
.h3{height:70.978125pt;}
.h2{height:72.885000pt;}
.ha{height:148.026667pt;}
.h7{height:903.160000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:574.960000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:3.990667pt;}
.x12{left:99.985333pt;}
.xd{left:109.481333pt;}
.x5{left:113.472000pt;}
.xf{left:129.105333pt;}
.x8{left:137.466667pt;}
.x9{left:161.466667pt;}
.x1{left:164.826667pt;}
.x10{left:238.745333pt;}
.x3{left:252.226667pt;}
.x7{left:270.466667pt;}
.x2{left:288.066667pt;}
.x11{left:333.492000pt;}
.xc{left:345.346667pt;}
.x4{left:394.626667pt;}
.x6{left:497.533333pt;}
.xa{left:670.053333pt;}
.xb{left:677.573333pt;}
}

