
    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_94d64dcc77962ab4aa45c2e3.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_414ec2c88fd943016df58f37.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6ccc631e287927f2b16322aa.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fca4e2125fd9f2baf3852fd1.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_520474f10652740c49244046.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_e12f791bf4a941c10bc94d7e.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);}
.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;}
.ls7{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.267000px;}
.ls6{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.267000px;}
.ls3{letter-spacing:0.360000px;}
.ls0{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;}
}
.ws5{word-spacing:-59.760000px;}
.ws3{word-spacing:-20.700000px;}
.ws4{word-spacing:-20.607000px;}
.ws1{word-spacing:-20.340000px;}
.ws2{word-spacing:-20.073000px;}
.wsa{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.ws7{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.940000px;}
.ws0{word-spacing:-0.081360px;}
.ws9{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.464480px;}
._1{width:1.119360px;}
.fc1{color:rgb(0,0,255);}
.fc2{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;}
.y7e{bottom:4.485000px;}
.y61{bottom:24.646500px;}
.y7d{bottom:45.930000px;}
.y60{bottom:63.346500px;}
.y5f{bottom:83.866500px;}
.y7c{bottom:87.870000px;}
.y4c{bottom:124.956000px;}
.y5e{bottom:125.266500px;}
.y7b{bottom:129.630000px;}
.y5d{bottom:132.343500px;}
.y4b{bottom:148.176000px;}
.y7a{bottom:150.330000px;}
.y79{bottom:171.030000px;}
.y24{bottom:176.070000px;}
.y78{bottom:191.730000px;}
.y4a{bottom:192.450000px;}
.y23{bottom:199.470000px;}
.y77{bottom:212.430000px;}
.y49{bottom:215.850000px;}
.y22{bottom:222.690000px;}
.y48{bottom:239.070000px;}
.y76{bottom:253.650000px;}
.y47{bottom:262.470000px;}
.y21{bottom:266.970000px;}
.y7f{bottom:272.730000px;}
.y46{bottom:285.690000px;}
.y20{bottom:290.190000px;}
.y75{bottom:295.410000px;}
.y62{bottom:296.145000px;}
.y5c{bottom:303.690000px;}
.y45{bottom:308.910000px;}
.y1f{bottom:313.590000px;}
.y44{bottom:332.355000px;}
.y1e{bottom:336.855000px;}
.y74{bottom:337.560000px;}
.y5b{bottom:343.155000px;}
.y43{bottom:355.575000px;}
.y73{bottom:358.260000px;}
.y1d{bottom:360.075000px;}
.y42{bottom:378.795000px;}
.y1c{bottom:383.475000px;}
.y5a{bottom:386.175000px;}
.y72{bottom:399.480000px;}
.y41{bottom:402.195000px;}
.y1b{bottom:406.695000px;}
.y59{bottom:424.515000px;}
.y71{bottom:441.240000px;}
.y58{bottom:441.795000px;}
.y40{bottom:446.475000px;}
.y1a{bottom:450.975000px;}
.y57{bottom:459.075000px;}
.y3f{bottom:469.695000px;}
.y19{bottom:474.375000px;}
.y56{bottom:476.175000px;}
.y70{bottom:483.360000px;}
.y3e{bottom:492.915000px;}
.y55{bottom:493.455000px;}
.y18{bottom:497.595000px;}
.y6f{bottom:504.060000px;}
.y3d{bottom:516.315000px;}
.y17{bottom:520.815000px;}
.y6e{bottom:524.760000px;}
.y54{bottom:531.795000px;}
.y3c{bottom:539.535000px;}
.y16{bottom:544.215000px;}
.y6d{bottom:545.460000px;}
.y53{bottom:549.075000px;}
.y3b{bottom:562.935000px;}
.y6c{bottom:566.205000px;}
.y3a{bottom:586.155000px;}
.y6b{bottom:586.905000px;}
.y52{bottom:587.955000px;}
.y15{bottom:588.495000px;}
.y39{bottom:609.405000px;}
.y14{bottom:611.745000px;}
.y6a{bottom:628.125000px;}
.y38{bottom:632.805000px;}
.y13{bottom:634.965000px;}
.y37{bottom:656.025000px;}
.y12{bottom:658.365000px;}
.y69{bottom:670.245000px;}
.y36{bottom:679.245000px;}
.y11{bottom:681.585000px;}
.y35{bottom:702.645000px;}
.y10{bottom:704.805000px;}
.y68{bottom:711.645000px;}
.y51{bottom:723.525000px;}
.yf{bottom:728.205000px;}
.y67{bottom:732.345000px;}
.y34{bottom:746.925000px;}
.ye{bottom:751.425000px;}
.y66{bottom:753.045000px;}
.y33{bottom:770.145000px;}
.y65{bottom:773.745000px;}
.y32{bottom:793.545000px;}
.y64{bottom:794.445000px;}
.yd{bottom:795.705000px;}
.y31{bottom:816.765000px;}
.yc{bottom:819.105000px;}
.y63{bottom:836.055000px;}
.y50{bottom:837.825000px;}
.y30{bottom:839.985000px;}
.yb{bottom:842.325000px;}
.y4f{bottom:861.045000px;}
.y2f{bottom:863.430000px;}
.ya{bottom:865.590000px;}
.y4e{bottom:884.310000px;}
.y9{bottom:888.990000px;}
.y2e{bottom:907.710000px;}
.y8{bottom:912.210000px;}
.y2d{bottom:930.930000px;}
.y7{bottom:935.430000px;}
.y2c{bottom:954.150000px;}
.y6{bottom:958.830000px;}
.y4d{bottom:975.210000px;}
.y5{bottom:982.050000px;}
.y2b{bottom:998.430000px;}
.y2a{bottom:1021.830000px;}
.y4{bottom:1026.330000px;}
.y29{bottom:1045.050000px;}
.y28{bottom:1068.270000px;}
.y3{bottom:1070.610000px;}
.y27{bottom:1091.670000px;}
.y2{bottom:1114.350000px;}
.y26{bottom:1114.890000px;}
.y1{bottom:1137.960000px;}
.y25{bottom:1138.320000px;}
.hc{height:50.229844px;}
.h7{height:53.573906px;}
.h6{height:58.621992px;}
.h5{height:58.651172px;}
.h9{height:70.664062px;}
.ha{height:72.562500px;}
.h4{height:79.810664px;}
.h3{height:79.850391px;}
.h2{height:81.995625px;}
.h8{height:138.772500px;}
.hb{height:852.615000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:646.830000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:4.489500px;}
.xc{left:112.483500px;}
.xa{left:115.723500px;}
.x8{left:123.166500px;}
.x5{left:127.656000px;}
.x1{left:135.576000px;}
.x6{left:154.650000px;}
.x4{left:181.650000px;}
.xb{left:303.148500px;}
.x3{left:354.315000px;}
.x2{left:379.515000px;}
.x7{left:388.515000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.237333pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.237333pt;}
.ls3{letter-spacing:0.320000pt;}
.ls0{letter-spacing:56.912640pt;}
.ws5{word-spacing:-53.120000pt;}
.ws3{word-spacing:-18.400000pt;}
.ws4{word-spacing:-18.317333pt;}
.ws1{word-spacing:-18.080000pt;}
.ws2{word-spacing:-17.842667pt;}
.wsa{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.280000pt;}
.ws0{word-spacing:-0.072320pt;}
.ws9{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.301760pt;}
._1{width:0.994987pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:72.320000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:3.986667pt;}
.y61{bottom:21.908000pt;}
.y7d{bottom:40.826667pt;}
.y60{bottom:56.308000pt;}
.y5f{bottom:74.548000pt;}
.y7c{bottom:78.106667pt;}
.y4c{bottom:111.072000pt;}
.y5e{bottom:111.348000pt;}
.y7b{bottom:115.226667pt;}
.y5d{bottom:117.638667pt;}
.y4b{bottom:131.712000pt;}
.y7a{bottom:133.626667pt;}
.y79{bottom:152.026667pt;}
.y24{bottom:156.506667pt;}
.y78{bottom:170.426667pt;}
.y4a{bottom:171.066667pt;}
.y23{bottom:177.306667pt;}
.y77{bottom:188.826667pt;}
.y49{bottom:191.866667pt;}
.y22{bottom:197.946667pt;}
.y48{bottom:212.506667pt;}
.y76{bottom:225.466667pt;}
.y47{bottom:233.306667pt;}
.y21{bottom:237.306667pt;}
.y7f{bottom:242.426667pt;}
.y46{bottom:253.946667pt;}
.y20{bottom:257.946667pt;}
.y75{bottom:262.586667pt;}
.y62{bottom:263.240000pt;}
.y5c{bottom:269.946667pt;}
.y45{bottom:274.586667pt;}
.y1f{bottom:278.746667pt;}
.y44{bottom:295.426667pt;}
.y1e{bottom:299.426667pt;}
.y74{bottom:300.053333pt;}
.y5b{bottom:305.026667pt;}
.y43{bottom:316.066667pt;}
.y73{bottom:318.453333pt;}
.y1d{bottom:320.066667pt;}
.y42{bottom:336.706667pt;}
.y1c{bottom:340.866667pt;}
.y5a{bottom:343.266667pt;}
.y72{bottom:355.093333pt;}
.y41{bottom:357.506667pt;}
.y1b{bottom:361.506667pt;}
.y59{bottom:377.346667pt;}
.y71{bottom:392.213333pt;}
.y58{bottom:392.706667pt;}
.y40{bottom:396.866667pt;}
.y1a{bottom:400.866667pt;}
.y57{bottom:408.066667pt;}
.y3f{bottom:417.506667pt;}
.y19{bottom:421.666667pt;}
.y56{bottom:423.266667pt;}
.y70{bottom:429.653333pt;}
.y3e{bottom:438.146667pt;}
.y55{bottom:438.626667pt;}
.y18{bottom:442.306667pt;}
.y6f{bottom:448.053333pt;}
.y3d{bottom:458.946667pt;}
.y17{bottom:462.946667pt;}
.y6e{bottom:466.453333pt;}
.y54{bottom:472.706667pt;}
.y3c{bottom:479.586667pt;}
.y16{bottom:483.746667pt;}
.y6d{bottom:484.853333pt;}
.y53{bottom:488.066667pt;}
.y3b{bottom:500.386667pt;}
.y6c{bottom:503.293333pt;}
.y3a{bottom:521.026667pt;}
.y6b{bottom:521.693333pt;}
.y52{bottom:522.626667pt;}
.y15{bottom:523.106667pt;}
.y39{bottom:541.693333pt;}
.y14{bottom:543.773333pt;}
.y6a{bottom:558.333333pt;}
.y38{bottom:562.493333pt;}
.y13{bottom:564.413333pt;}
.y37{bottom:583.133333pt;}
.y12{bottom:585.213333pt;}
.y69{bottom:595.773333pt;}
.y36{bottom:603.773333pt;}
.y11{bottom:605.853333pt;}
.y35{bottom:624.573333pt;}
.y10{bottom:626.493333pt;}
.y68{bottom:632.573333pt;}
.y51{bottom:643.133333pt;}
.yf{bottom:647.293333pt;}
.y67{bottom:650.973333pt;}
.y34{bottom:663.933333pt;}
.ye{bottom:667.933333pt;}
.y66{bottom:669.373333pt;}
.y33{bottom:684.573333pt;}
.y65{bottom:687.773333pt;}
.y32{bottom:705.373333pt;}
.y64{bottom:706.173333pt;}
.yd{bottom:707.293333pt;}
.y31{bottom:726.013333pt;}
.yc{bottom:728.093333pt;}
.y63{bottom:743.160000pt;}
.y50{bottom:744.733333pt;}
.y30{bottom:746.653333pt;}
.yb{bottom:748.733333pt;}
.y4f{bottom:765.373333pt;}
.y2f{bottom:767.493333pt;}
.ya{bottom:769.413333pt;}
.y4e{bottom:786.053333pt;}
.y9{bottom:790.213333pt;}
.y2e{bottom:806.853333pt;}
.y8{bottom:810.853333pt;}
.y2d{bottom:827.493333pt;}
.y7{bottom:831.493333pt;}
.y2c{bottom:848.133333pt;}
.y6{bottom:852.293333pt;}
.y4d{bottom:866.853333pt;}
.y5{bottom:872.933333pt;}
.y2b{bottom:887.493333pt;}
.y2a{bottom:908.293333pt;}
.y4{bottom:912.293333pt;}
.y29{bottom:928.933333pt;}
.y28{bottom:949.573333pt;}
.y3{bottom:951.653333pt;}
.y27{bottom:970.373333pt;}
.y2{bottom:990.533333pt;}
.y26{bottom:991.013333pt;}
.y1{bottom:1011.520000pt;}
.y25{bottom:1011.840000pt;}
.hc{height:44.648750pt;}
.h7{height:47.621250pt;}
.h6{height:52.108438pt;}
.h5{height:52.134375pt;}
.h9{height:62.812500pt;}
.ha{height:64.500000pt;}
.h4{height:70.942812pt;}
.h3{height:70.978125pt;}
.h2{height:72.885000pt;}
.h8{height:123.353333pt;}
.hb{height:757.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:574.960000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:3.990667pt;}
.xc{left:99.985333pt;}
.xa{left:102.865333pt;}
.x8{left:109.481333pt;}
.x5{left:113.472000pt;}
.x1{left:120.512000pt;}
.x6{left:137.466667pt;}
.x4{left:161.466667pt;}
.xb{left:269.465333pt;}
.x3{left:314.946667pt;}
.x2{left:337.346667pt;}
.x7{left:345.346667pt;}
}

