
    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_e51f2110ee8d5ae5a4f85531.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e18e4bab242cd06a3614f5b8.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0cefa7d46825c761338636da.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2cfe100c71161491931f97f0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_acf7191b2bd84d8493b8e45f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7df1fa3bd54b26c7093e1f28.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_57517db4d72663cff759b657.woff')format("woff");}.ff7{font-family:ff7;line-height:0.851562;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_fb070a6ff861db6946c99097.woff')format("woff");}.ff8{font-family:ff8;line-height:1.099121;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);}
.v1{vertical-align:-83.520000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-2.160000px;}
.ls6{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.432000px;}
.lsa{letter-spacing:2.160000px;}
.ls5{letter-spacing:64.224000px;}
.ls0{letter-spacing:66.960000px;}
.ls4{letter-spacing:83.664000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws8{word-spacing:-31.968000px;}
.ws6{word-spacing:-20.304000px;}
.ws9{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-2.138880px;}
._0{margin-left:-1.010880px;}
._2{width:1.058880px;}
._1{width:2.213760px;}
._8{width:3.417600px;}
._10{width:4.482240px;}
._14{width:5.663040px;}
._4{width:7.488000px;}
._5{width:8.712000px;}
._9{width:10.440000px;}
._a{width:11.592000px;}
._15{width:13.536000px;}
._b{width:14.688000px;}
._c{width:15.984000px;}
._19{width:16.994880px;}
._13{width:19.224000px;}
._d{width:20.306880px;}
._1c{width:21.405600px;}
._18{width:22.608000px;}
._6{width:24.120000px;}
._1d{width:25.466880px;}
._3{width:26.496000px;}
._17{width:27.936000px;}
._7{width:29.376000px;}
._20{width:30.384000px;}
._1b{width:31.722240px;}
._1e{width:33.509760px;}
._1f{width:34.771200px;}
._16{width:38.088000px;}
._e{width:39.168000px;}
._f{width:40.392000px;}
._11{width:61.200000px;}
._12{width:62.256000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(146,208,80);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.600000px;}
.y40{bottom:142.236000px;}
.y5d{bottom:150.690000px;}
.y70{bottom:153.390000px;}
.y1f{bottom:155.550000px;}
.y3f{bottom:173.370000px;}
.y6b{bottom:177.870000px;}
.y5c{bottom:181.830000px;}
.y6f{bottom:184.530000px;}
.y1e{bottom:186.690000px;}
.y8a{bottom:193.890000px;}
.y3e{bottom:204.330000px;}
.y6a{bottom:208.830000px;}
.y5b{bottom:212.790000px;}
.y1d{bottom:217.650000px;}
.y89{bottom:225.030000px;}
.y6e{bottom:234.750000px;}
.y3d{bottom:235.470000px;}
.y69{bottom:239.970000px;}
.y5a{bottom:243.930000px;}
.y1c{bottom:248.790000px;}
.y88{bottom:255.990000px;}
.y3c{bottom:266.430000px;}
.y68{bottom:270.930000px;}
.y6d{bottom:274.530000px;}
.y59{bottom:274.890000px;}
.y1b{bottom:279.750000px;}
.y87{bottom:296.130000px;}
.y3b{bottom:297.570000px;}
.y67{bottom:302.070000px;}
.y58{bottom:306.030000px;}
.y1a{bottom:310.890000px;}
.y86{bottom:327.135000px;}
.y3a{bottom:328.575000px;}
.y66{bottom:333.075000px;}
.y57{bottom:337.035000px;}
.y19{bottom:341.895000px;}
.y85{bottom:358.275000px;}
.y39{bottom:359.715000px;}
.y65{bottom:364.215000px;}
.y56{bottom:368.175000px;}
.y18{bottom:373.035000px;}
.y38{bottom:390.675000px;}
.y64{bottom:395.175000px;}
.y84{bottom:398.235000px;}
.y55{bottom:399.135000px;}
.y17{bottom:403.995000px;}
.y37{bottom:421.815000px;}
.y63{bottom:426.315000px;}
.y83{bottom:429.375000px;}
.y54{bottom:430.275000px;}
.y16{bottom:435.135000px;}
.y36{bottom:452.775000px;}
.y62{bottom:457.275000px;}
.y6c{bottom:460.875000px;}
.y53{bottom:461.235000px;}
.y82{bottom:469.335000px;}
.y35{bottom:483.915000px;}
.y15{bottom:486.975000px;}
.y61{bottom:488.415000px;}
.y52{bottom:492.375000px;}
.y81{bottom:500.475000px;}
.y14{bottom:507.315000px;}
.y34{bottom:514.875000px;}
.y60{bottom:519.375000px;}
.y51{bottom:523.335000px;}
.y13{bottom:528.015000px;}
.y80{bottom:531.435000px;}
.y33{bottom:545.655000px;}
.y5f{bottom:552.855000px;}
.y50{bottom:554.475000px;}
.y7f{bottom:562.575000px;}
.y12{bottom:566.535000px;}
.y4f{bottom:585.435000px;}
.y32{bottom:602.385000px;}
.y7e{bottom:602.565000px;}
.y11{bottom:603.285000px;}
.y4e{bottom:616.605000px;}
.y7d{bottom:633.705000px;}
.y10{bottom:640.185000px;}
.y4d{bottom:647.565000px;}
.y31{bottom:648.465000px;}
.y7c{bottom:673.665000px;}
.yf{bottom:677.445000px;}
.y4c{bottom:678.705000px;}
.y30{bottom:679.425000px;}
.y7b{bottom:704.805000px;}
.y4b{bottom:709.665000px;}
.y2f{bottom:710.565000px;}
.ye{bottom:716.325000px;}
.y4a{bottom:740.805000px;}
.y2e{bottom:741.525000px;}
.y7a{bottom:744.765000px;}
.yd{bottom:754.665000px;}
.y49{bottom:771.765000px;}
.y2d{bottom:772.665000px;}
.y79{bottom:775.905000px;}
.yc{bottom:793.365000px;}
.y5e{bottom:802.545000px;}
.y48{bottom:802.905000px;}
.y2c{bottom:803.625000px;}
.y78{bottom:806.865000px;}
.yb{bottom:830.805000px;}
.y47{bottom:833.865000px;}
.y2b{bottom:834.765000px;}
.y77{bottom:838.005000px;}
.y46{bottom:865.050000px;}
.y2a{bottom:865.770000px;}
.y8f{bottom:869.010000px;}
.ya{bottom:869.550000px;}
.y76{bottom:878.010000px;}
.y45{bottom:896.010000px;}
.y29{bottom:896.910000px;}
.y8e{bottom:900.150000px;}
.y9{bottom:908.070000px;}
.y75{bottom:909.150000px;}
.y44{bottom:927.150000px;}
.y28{bottom:927.870000px;}
.y8d{bottom:940.110000px;}
.y8{bottom:946.590000px;}
.y74{bottom:949.110000px;}
.y43{bottom:958.110000px;}
.y27{bottom:959.010000px;}
.y8c{bottom:971.070000px;}
.y73{bottom:980.070000px;}
.y7{bottom:984.030000px;}
.y42{bottom:989.070000px;}
.y26{bottom:989.610000px;}
.y72{bottom:1011.210000px;}
.y41{bottom:1020.210000px;}
.y25{bottom:1021.110000px;}
.y6{bottom:1022.730000px;}
.y71{bottom:1042.170000px;}
.y24{bottom:1051.170000px;}
.y5{bottom:1061.250000px;}
.y8b{bottom:1073.310000px;}
.y23{bottom:1082.310000px;}
.y4{bottom:1101.390000px;}
.y22{bottom:1113.270000px;}
.y3{bottom:1129.110000px;}
.y21{bottom:1144.440000px;}
.y1{bottom:1165.860000px;}
.y20{bottom:1188.360000px;}
.h3{height:50.229844px;}
.h9{height:64.546875px;}
.h8{height:64.978594px;}
.h7{height:65.010937px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.h5{height:72.562500px;}
.ha{height:74.004654px;}
.h4{height:84.898125px;}
.h2{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.x3{left:137.016000px;}
.x10{left:148.896000px;}
.x2{left:168.690000px;}
.x5{left:194.610000px;}
.xc{left:213.510000px;}
.xf{left:326.415000px;}
.x8{left:347.835000px;}
.x4{left:349.275000px;}
.xa{left:360.795000px;}
.x6{left:364.575000px;}
.xd{left:371.415000px;}
.x7{left:393.735000px;}
.x9{left:396.075000px;}
.xb{left:401.475000px;}
.x11{left:408.135000px;}
.xe{left:446.475000px;}
@media print{
.v1{vertical-align:-74.240000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.920000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.384000pt;}
.lsa{letter-spacing:1.920000pt;}
.ls5{letter-spacing:57.088000pt;}
.ls0{letter-spacing:59.520000pt;}
.ls4{letter-spacing:74.368000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws8{word-spacing:-28.416000pt;}
.ws6{word-spacing:-18.048000pt;}
.ws9{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-1.901227pt;}
._0{margin-left:-0.898560pt;}
._2{width:0.941227pt;}
._1{width:1.967787pt;}
._8{width:3.037867pt;}
._10{width:3.984213pt;}
._14{width:5.033813pt;}
._4{width:6.656000pt;}
._5{width:7.744000pt;}
._9{width:9.280000pt;}
._a{width:10.304000pt;}
._15{width:12.032000pt;}
._b{width:13.056000pt;}
._c{width:14.208000pt;}
._19{width:15.106560pt;}
._13{width:17.088000pt;}
._d{width:18.050560pt;}
._1c{width:19.027200pt;}
._18{width:20.096000pt;}
._6{width:21.440000pt;}
._1d{width:22.637227pt;}
._3{width:23.552000pt;}
._17{width:24.832000pt;}
._7{width:26.112000pt;}
._20{width:27.008000pt;}
._1b{width:28.197547pt;}
._1e{width:29.786453pt;}
._1f{width:30.907733pt;}
._16{width:33.856000pt;}
._e{width:34.816000pt;}
._f{width:35.904000pt;}
._11{width:54.400000pt;}
._12{width:55.338667pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.200000pt;}
.y40{bottom:126.432000pt;}
.y5d{bottom:133.946667pt;}
.y70{bottom:136.346667pt;}
.y1f{bottom:138.266667pt;}
.y3f{bottom:154.106667pt;}
.y6b{bottom:158.106667pt;}
.y5c{bottom:161.626667pt;}
.y6f{bottom:164.026667pt;}
.y1e{bottom:165.946667pt;}
.y8a{bottom:172.346667pt;}
.y3e{bottom:181.626667pt;}
.y6a{bottom:185.626667pt;}
.y5b{bottom:189.146667pt;}
.y1d{bottom:193.466667pt;}
.y89{bottom:200.026667pt;}
.y6e{bottom:208.666667pt;}
.y3d{bottom:209.306667pt;}
.y69{bottom:213.306667pt;}
.y5a{bottom:216.826667pt;}
.y1c{bottom:221.146667pt;}
.y88{bottom:227.546667pt;}
.y3c{bottom:236.826667pt;}
.y68{bottom:240.826667pt;}
.y6d{bottom:244.026667pt;}
.y59{bottom:244.346667pt;}
.y1b{bottom:248.666667pt;}
.y87{bottom:263.226667pt;}
.y3b{bottom:264.506667pt;}
.y67{bottom:268.506667pt;}
.y58{bottom:272.026667pt;}
.y1a{bottom:276.346667pt;}
.y86{bottom:290.786667pt;}
.y3a{bottom:292.066667pt;}
.y66{bottom:296.066667pt;}
.y57{bottom:299.586667pt;}
.y19{bottom:303.906667pt;}
.y85{bottom:318.466667pt;}
.y39{bottom:319.746667pt;}
.y65{bottom:323.746667pt;}
.y56{bottom:327.266667pt;}
.y18{bottom:331.586667pt;}
.y38{bottom:347.266667pt;}
.y64{bottom:351.266667pt;}
.y84{bottom:353.986667pt;}
.y55{bottom:354.786667pt;}
.y17{bottom:359.106667pt;}
.y37{bottom:374.946667pt;}
.y63{bottom:378.946667pt;}
.y83{bottom:381.666667pt;}
.y54{bottom:382.466667pt;}
.y16{bottom:386.786667pt;}
.y36{bottom:402.466667pt;}
.y62{bottom:406.466667pt;}
.y6c{bottom:409.666667pt;}
.y53{bottom:409.986667pt;}
.y82{bottom:417.186667pt;}
.y35{bottom:430.146667pt;}
.y15{bottom:432.866667pt;}
.y61{bottom:434.146667pt;}
.y52{bottom:437.666667pt;}
.y81{bottom:444.866667pt;}
.y14{bottom:450.946667pt;}
.y34{bottom:457.666667pt;}
.y60{bottom:461.666667pt;}
.y51{bottom:465.186667pt;}
.y13{bottom:469.346667pt;}
.y80{bottom:472.386667pt;}
.y33{bottom:485.026667pt;}
.y5f{bottom:491.426667pt;}
.y50{bottom:492.866667pt;}
.y7f{bottom:500.066667pt;}
.y12{bottom:503.586667pt;}
.y4f{bottom:520.386667pt;}
.y32{bottom:535.453333pt;}
.y7e{bottom:535.613333pt;}
.y11{bottom:536.253333pt;}
.y4e{bottom:548.093333pt;}
.y7d{bottom:563.293333pt;}
.y10{bottom:569.053333pt;}
.y4d{bottom:575.613333pt;}
.y31{bottom:576.413333pt;}
.y7c{bottom:598.813333pt;}
.yf{bottom:602.173333pt;}
.y4c{bottom:603.293333pt;}
.y30{bottom:603.933333pt;}
.y7b{bottom:626.493333pt;}
.y4b{bottom:630.813333pt;}
.y2f{bottom:631.613333pt;}
.ye{bottom:636.733333pt;}
.y4a{bottom:658.493333pt;}
.y2e{bottom:659.133333pt;}
.y7a{bottom:662.013333pt;}
.yd{bottom:670.813333pt;}
.y49{bottom:686.013333pt;}
.y2d{bottom:686.813333pt;}
.y79{bottom:689.693333pt;}
.yc{bottom:705.213333pt;}
.y5e{bottom:713.373333pt;}
.y48{bottom:713.693333pt;}
.y2c{bottom:714.333333pt;}
.y78{bottom:717.213333pt;}
.yb{bottom:738.493333pt;}
.y47{bottom:741.213333pt;}
.y2b{bottom:742.013333pt;}
.y77{bottom:744.893333pt;}
.y46{bottom:768.933333pt;}
.y2a{bottom:769.573333pt;}
.y8f{bottom:772.453333pt;}
.ya{bottom:772.933333pt;}
.y76{bottom:780.453333pt;}
.y45{bottom:796.453333pt;}
.y29{bottom:797.253333pt;}
.y8e{bottom:800.133333pt;}
.y9{bottom:807.173333pt;}
.y75{bottom:808.133333pt;}
.y44{bottom:824.133333pt;}
.y28{bottom:824.773333pt;}
.y8d{bottom:835.653333pt;}
.y8{bottom:841.413333pt;}
.y74{bottom:843.653333pt;}
.y43{bottom:851.653333pt;}
.y27{bottom:852.453333pt;}
.y8c{bottom:863.173333pt;}
.y73{bottom:871.173333pt;}
.y7{bottom:874.693333pt;}
.y42{bottom:879.173333pt;}
.y26{bottom:879.653333pt;}
.y72{bottom:898.853333pt;}
.y41{bottom:906.853333pt;}
.y25{bottom:907.653333pt;}
.y6{bottom:909.093333pt;}
.y71{bottom:926.373333pt;}
.y24{bottom:934.373333pt;}
.y5{bottom:943.333333pt;}
.y8b{bottom:954.053333pt;}
.y23{bottom:962.053333pt;}
.y4{bottom:979.013333pt;}
.y22{bottom:989.573333pt;}
.y3{bottom:1003.653333pt;}
.y21{bottom:1017.280000pt;}
.y1{bottom:1036.320000pt;}
.y20{bottom:1056.320000pt;}
.h3{height:44.648750pt;}
.h9{height:57.375000pt;}
.h8{height:57.758750pt;}
.h7{height:57.787500pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.h5{height:64.500000pt;}
.ha{height:65.781915pt;}
.h4{height:75.465000pt;}
.h2{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.x3{left:121.792000pt;}
.x10{left:132.352000pt;}
.x2{left:149.946667pt;}
.x5{left:172.986667pt;}
.xc{left:189.786667pt;}
.xf{left:290.146667pt;}
.x8{left:309.186667pt;}
.x4{left:310.466667pt;}
.xa{left:320.706667pt;}
.x6{left:324.066667pt;}
.xd{left:330.146667pt;}
.x7{left:349.986667pt;}
.x9{left:352.066667pt;}
.xb{left:356.866667pt;}
.x11{left:362.786667pt;}
.xe{left:396.866667pt;}
}

