
    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_f305a3a5e01f1fa700ab490d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_429c7f417ba5a4f15d058abc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.936035;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_278b77e5ae34b6499fdc9547.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_be32ee1fa0812bac750dca90.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6c8d7b589819a0f0dd8a79cc.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9be3f2a13a4914fe50f96592.woff')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_2017902dbac133919b3730dc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-2.160000px;}
.ls3{letter-spacing:-1.656000px;}
.ls12{letter-spacing:-1.440000px;}
.lse{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.576000px;}
.lsb{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.132600px;}
.ls17{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.150000px;}
.ls15{letter-spacing:0.233400px;}
.ls21{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.576000px;}
.ls1b{letter-spacing:0.648000px;}
.lsd{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.864000px;}
.ls19{letter-spacing:1.416000px;}
.ls1a{letter-spacing:1.440000px;}
.ls1d{letter-spacing:1.620000px;}
.ls10{letter-spacing:2.880000px;}
.ls1c{letter-spacing:3.600000px;}
.ls11{letter-spacing:5.214240px;}
.ls1f{letter-spacing:9.360000px;}
.ls16{letter-spacing:10.080000px;}
.ls18{letter-spacing:13.680000px;}
.ls1e{letter-spacing:17.280000px;}
.ls0{letter-spacing:781.356000px;}
.ls23{letter-spacing:1257.276000px;}
.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;}
}
.wsc{word-spacing:-18.720000px;}
.wse{word-spacing:-18.648000px;}
.ws8{word-spacing:-18.576000px;}
.ws5{word-spacing:-18.504000px;}
.wsf{word-spacing:-18.288000px;}
.wsb{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.568000px;}
.wsa{word-spacing:-17.280000px;}
.ws1{word-spacing:-16.344000px;}
.ws3{word-spacing:0.000000px;}
._17{margin-left:-9.600000px;}
._25{margin-left:-5.460000px;}
._18{margin-left:-4.392000px;}
._f{margin-left:-2.544000px;}
._5{margin-left:-1.008000px;}
._4{width:1.116000px;}
._d{width:2.808000px;}
._c{width:3.888000px;}
._14{width:5.400000px;}
._13{width:6.408000px;}
._10{width:7.632000px;}
._8{width:8.640000px;}
._9{width:9.696000px;}
._7{width:11.664000px;}
._a{width:12.744000px;}
._b{width:14.556000px;}
._12{width:16.344000px;}
._16{width:19.872000px;}
._19{width:21.732000px;}
._e{width:22.800000px;}
._11{width:24.024000px;}
._15{width:25.032000px;}
._1b{width:26.280000px;}
._1c{width:27.504000px;}
._1d{width:28.620000px;}
._1e{width:30.600000px;}
._1f{width:31.788000px;}
._20{width:33.480000px;}
._27{width:34.632000px;}
._28{width:35.676000px;}
._2b{width:37.368000px;}
._6{width:38.856000px;}
._24{width:40.848000px;}
._29{width:42.840000px;}
._2a{width:43.848000px;}
._22{width:57.984000px;}
._21{width:59.160000px;}
._23{width:62.400000px;}
._3{width:71.280000px;}
._26{width:95.568000px;}
._1a{width:176.376000px;}
._2c{width:177.684000px;}
._0{width:306.156000px;}
._2{width:777.972000px;}
._2d{width:846.156000px;}
._1{width:1149.420000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:57.600000px;}
.y5{bottom:77.580000px;}
.y4{bottom:98.280000px;}
.y3{bottom:119.160000px;}
.y38{bottom:138.420000px;}
.y7f{bottom:143.640000px;}
.y5e{bottom:146.160000px;}
.y3e{bottom:146.700000px;}
.y42{bottom:155.700000px;}
.y37{bottom:155.880000px;}
.y47{bottom:156.420000px;}
.y7e{bottom:156.600000px;}
.y41{bottom:160.950000px;}
.y36{bottom:161.130000px;}
.yb2{bottom:165.090000px;}
.y5d{bottom:166.890000px;}
.y3d{bottom:167.430000px;}
.y62{bottom:172.830000px;}
.y40{bottom:173.730000px;}
.y35{bottom:174.810000px;}
.y46{bottom:176.430000px;}
.y61{bottom:178.050000px;}
.yb1{bottom:185.790000px;}
.y5c{bottom:187.590000px;}
.y3c{bottom:188.130000px;}
.y7c{bottom:190.110000px;}
.y60{bottom:191.010000px;}
.y45{bottom:193.890000px;}
.y44{bottom:199.110000px;}
.yac{bottom:199.470000px;}
.y7b{bottom:207.390000px;}
.y5b{bottom:208.290000px;}
.y34{bottom:208.830000px;}
.y43{bottom:212.790000px;}
.yab{bottom:220.170000px;}
.yb0{bottom:224.490000px;}
.y7a{bottom:224.670000px;}
.y5a{bottom:228.990000px;}
.y33{bottom:229.530000px;}
.yaf{bottom:240.150000px;}
.yaa{bottom:240.870000px;}
.y79{bottom:241.950000px;}
.y59{bottom:249.690000px;}
.y32{bottom:250.230000px;}
.y7d{bottom:257.070000px;}
.y78{bottom:259.230000px;}
.ya9{bottom:261.570000px;}
.y58{bottom:270.390000px;}
.y31{bottom:270.930000px;}
.y77{bottom:276.330000px;}
.ya8{bottom:282.270000px;}
.y57{bottom:291.090000px;}
.y30{bottom:291.630000px;}
.y76{bottom:293.610000px;}
.y75{bottom:298.830000px;}
.ya7{bottom:302.970000px;}
.y56{bottom:311.790000px;}
.y2f{bottom:312.330000px;}
.ya6{bottom:323.670000px;}
.y55{bottom:332.490000px;}
.y2e{bottom:333.030000px;}
.ya5{bottom:344.370000px;}
.y54{bottom:353.190000px;}
.y2c{bottom:353.730000px;}
.y2d{bottom:360.570000px;}
.ya4{bottom:365.070000px;}
.y53{bottom:373.890000px;}
.y2b{bottom:374.430000px;}
.ya3{bottom:385.770000px;}
.y52{bottom:394.590000px;}
.y2a{bottom:395.130000px;}
.ya2{bottom:406.515000px;}
.y51{bottom:415.335000px;}
.y29{bottom:415.875000px;}
.ya1{bottom:427.215000px;}
.y50{bottom:436.035000px;}
.y28{bottom:436.575000px;}
.ya0{bottom:447.915000px;}
.y4f{bottom:456.735000px;}
.y27{bottom:457.275000px;}
.y9f{bottom:468.615000px;}
.y4e{bottom:477.435000px;}
.y80{bottom:477.795000px;}
.y26{bottom:477.975000px;}
.y9e{bottom:489.315000px;}
.y4d{bottom:498.135000px;}
.y25{bottom:498.675000px;}
.y9d{bottom:510.015000px;}
.y4c{bottom:518.835000px;}
.y24{bottom:519.375000px;}
.y9c{bottom:530.715000px;}
.y4b{bottom:539.535000px;}
.y23{bottom:540.075000px;}
.y9b{bottom:551.415000px;}
.y4a{bottom:560.235000px;}
.y22{bottom:560.775000px;}
.y9a{bottom:572.115000px;}
.y49{bottom:580.935000px;}
.y21{bottom:581.475000px;}
.y99{bottom:592.815000px;}
.y72{bottom:601.635000px;}
.y48{bottom:601.815000px;}
.y20{bottom:602.175000px;}
.y98{bottom:613.515000px;}
.y71{bottom:622.335000px;}
.y1f{bottom:622.875000px;}
.y97{bottom:634.215000px;}
.y70{bottom:643.035000px;}
.y1e{bottom:643.575000px;}
.y5f{bottom:650.445000px;}
.y96{bottom:654.945000px;}
.y6f{bottom:663.765000px;}
.y1d{bottom:664.305000px;}
.y95{bottom:675.645000px;}
.y6e{bottom:684.465000px;}
.y1c{bottom:685.005000px;}
.y94{bottom:696.345000px;}
.y6d{bottom:705.165000px;}
.y1b{bottom:705.705000px;}
.y93{bottom:717.045000px;}
.y6c{bottom:725.865000px;}
.y1a{bottom:726.405000px;}
.y74{bottom:733.245000px;}
.y92{bottom:737.745000px;}
.y6b{bottom:746.565000px;}
.y19{bottom:747.105000px;}
.y91{bottom:758.445000px;}
.y6a{bottom:767.265000px;}
.y18{bottom:767.805000px;}
.y90{bottom:779.145000px;}
.y69{bottom:787.965000px;}
.y17{bottom:788.505000px;}
.y8f{bottom:799.845000px;}
.y68{bottom:808.665000px;}
.y16{bottom:809.205000px;}
.y8e{bottom:820.545000px;}
.y67{bottom:829.365000px;}
.y15{bottom:829.905000px;}
.y8d{bottom:841.245000px;}
.y66{bottom:850.065000px;}
.y14{bottom:850.605000px;}
.y8c{bottom:861.945000px;}
.y65{bottom:870.765000px;}
.y13{bottom:871.305000px;}
.y8b{bottom:882.645000px;}
.y64{bottom:891.465000px;}
.y12{bottom:892.005000px;}
.y8a{bottom:903.390000px;}
.y63{bottom:912.390000px;}
.y11{bottom:912.750000px;}
.y89{bottom:924.090000px;}
.y10{bottom:933.450000px;}
.y88{bottom:944.790000px;}
.yf{bottom:954.150000px;}
.y87{bottom:965.490000px;}
.ye{bottom:974.850000px;}
.y73{bottom:981.690000px;}
.y86{bottom:986.190000px;}
.yad{bottom:995.370000px;}
.yd{bottom:995.550000px;}
.y85{bottom:1006.890000px;}
.yc{bottom:1016.250000px;}
.y84{bottom:1027.590000px;}
.yb{bottom:1036.950000px;}
.y83{bottom:1051.170000px;}
.ya{bottom:1057.650000px;}
.y82{bottom:1074.930000px;}
.y3b{bottom:1078.350000px;}
.y81{bottom:1098.870000px;}
.y9{bottom:1099.050000px;}
.y8{bottom:1119.390000px;}
.y3a{bottom:1119.750000px;}
.y7{bottom:1140.090000px;}
.yae{bottom:1140.270000px;}
.y39{bottom:1140.480000px;}
.y3f{bottom:1147.320000px;}
.y2{bottom:1173.600000px;}
.y1{bottom:1193.580000px;}
.h7{height:29.482734px;}
.h9{height:38.158594px;}
.h6{height:47.344922px;}
.h3{height:50.229844px;}
.h8{height:58.651172px;}
.h5{height:64.546875px;}
.ha{height:70.628906px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x9{left:132.515987px;}
.xe{left:166.529973px;}
.xf{left:172.649987px;}
.x5{left:180.749987px;}
.x2{left:203.429987px;}
.x12{left:313.994973px;}
.x13{left:320.114987px;}
.x8{left:343.694987px;}
.x4{left:358.454987px;}
.x3{left:387.254987px;}
.x14{left:601.124973px;}
.x15{left:607.244987px;}
.xc{left:614.444973px;}
.xd{left:620.564987px;}
.xa{left:717.989973px;}
.xb{left:724.109987px;}
.x6{left:736.169973px;}
.x7{left:742.289987px;}
.x10{left:755.069973px;}
.x11{left:761.189987px;}
.x16{left:765.509987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-1.920000pt;}
.ls3{letter-spacing:-1.472000pt;}
.ls12{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.512000pt;}
.lsb{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.117867pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.133333pt;}
.ls15{letter-spacing:0.207467pt;}
.ls21{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.512000pt;}
.ls1b{letter-spacing:0.576000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.768000pt;}
.ls19{letter-spacing:1.258667pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:1.440000pt;}
.ls10{letter-spacing:2.560000pt;}
.ls1c{letter-spacing:3.200000pt;}
.ls11{letter-spacing:4.634880pt;}
.ls1f{letter-spacing:8.320000pt;}
.ls16{letter-spacing:8.960000pt;}
.ls18{letter-spacing:12.160000pt;}
.ls1e{letter-spacing:15.360000pt;}
.ls0{letter-spacing:694.538667pt;}
.ls23{letter-spacing:1117.578667pt;}
.wsc{word-spacing:-16.640000pt;}
.wse{word-spacing:-16.576000pt;}
.ws8{word-spacing:-16.512000pt;}
.ws5{word-spacing:-16.448000pt;}
.wsf{word-spacing:-16.256000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.616000pt;}
.wsa{word-spacing:-15.360000pt;}
.ws1{word-spacing:-14.528000pt;}
.ws3{word-spacing:0.000000pt;}
._17{margin-left:-8.533333pt;}
._25{margin-left:-4.853333pt;}
._18{margin-left:-3.904000pt;}
._f{margin-left:-2.261333pt;}
._5{margin-left:-0.896000pt;}
._4{width:0.992000pt;}
._d{width:2.496000pt;}
._c{width:3.456000pt;}
._14{width:4.800000pt;}
._13{width:5.696000pt;}
._10{width:6.784000pt;}
._8{width:7.680000pt;}
._9{width:8.618667pt;}
._7{width:10.368000pt;}
._a{width:11.328000pt;}
._b{width:12.938667pt;}
._12{width:14.528000pt;}
._16{width:17.664000pt;}
._19{width:19.317333pt;}
._e{width:20.266667pt;}
._11{width:21.354667pt;}
._15{width:22.250667pt;}
._1b{width:23.360000pt;}
._1c{width:24.448000pt;}
._1d{width:25.440000pt;}
._1e{width:27.200000pt;}
._1f{width:28.256000pt;}
._20{width:29.760000pt;}
._27{width:30.784000pt;}
._28{width:31.712000pt;}
._2b{width:33.216000pt;}
._6{width:34.538667pt;}
._24{width:36.309333pt;}
._29{width:38.080000pt;}
._2a{width:38.976000pt;}
._22{width:51.541333pt;}
._21{width:52.586667pt;}
._23{width:55.466667pt;}
._3{width:63.360000pt;}
._26{width:84.949333pt;}
._1a{width:156.778667pt;}
._2c{width:157.941333pt;}
._0{width:272.138667pt;}
._2{width:691.530667pt;}
._2d{width:752.138667pt;}
._1{width:1021.706667pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:51.200000pt;}
.y5{bottom:68.960000pt;}
.y4{bottom:87.360000pt;}
.y3{bottom:105.920000pt;}
.y38{bottom:123.040000pt;}
.y7f{bottom:127.680000pt;}
.y5e{bottom:129.920000pt;}
.y3e{bottom:130.400000pt;}
.y42{bottom:138.400000pt;}
.y37{bottom:138.560000pt;}
.y47{bottom:139.040000pt;}
.y7e{bottom:139.200000pt;}
.y41{bottom:143.066667pt;}
.y36{bottom:143.226667pt;}
.yb2{bottom:146.746667pt;}
.y5d{bottom:148.346667pt;}
.y3d{bottom:148.826667pt;}
.y62{bottom:153.626667pt;}
.y40{bottom:154.426667pt;}
.y35{bottom:155.386667pt;}
.y46{bottom:156.826667pt;}
.y61{bottom:158.266667pt;}
.yb1{bottom:165.146667pt;}
.y5c{bottom:166.746667pt;}
.y3c{bottom:167.226667pt;}
.y7c{bottom:168.986667pt;}
.y60{bottom:169.786667pt;}
.y45{bottom:172.346667pt;}
.y44{bottom:176.986667pt;}
.yac{bottom:177.306667pt;}
.y7b{bottom:184.346667pt;}
.y5b{bottom:185.146667pt;}
.y34{bottom:185.626667pt;}
.y43{bottom:189.146667pt;}
.yab{bottom:195.706667pt;}
.yb0{bottom:199.546667pt;}
.y7a{bottom:199.706667pt;}
.y5a{bottom:203.546667pt;}
.y33{bottom:204.026667pt;}
.yaf{bottom:213.466667pt;}
.yaa{bottom:214.106667pt;}
.y79{bottom:215.066667pt;}
.y59{bottom:221.946667pt;}
.y32{bottom:222.426667pt;}
.y7d{bottom:228.506667pt;}
.y78{bottom:230.426667pt;}
.ya9{bottom:232.506667pt;}
.y58{bottom:240.346667pt;}
.y31{bottom:240.826667pt;}
.y77{bottom:245.626667pt;}
.ya8{bottom:250.906667pt;}
.y57{bottom:258.746667pt;}
.y30{bottom:259.226667pt;}
.y76{bottom:260.986667pt;}
.y75{bottom:265.626667pt;}
.ya7{bottom:269.306667pt;}
.y56{bottom:277.146667pt;}
.y2f{bottom:277.626667pt;}
.ya6{bottom:287.706667pt;}
.y55{bottom:295.546667pt;}
.y2e{bottom:296.026667pt;}
.ya5{bottom:306.106667pt;}
.y54{bottom:313.946667pt;}
.y2c{bottom:314.426667pt;}
.y2d{bottom:320.506667pt;}
.ya4{bottom:324.506667pt;}
.y53{bottom:332.346667pt;}
.y2b{bottom:332.826667pt;}
.ya3{bottom:342.906667pt;}
.y52{bottom:350.746667pt;}
.y2a{bottom:351.226667pt;}
.ya2{bottom:361.346667pt;}
.y51{bottom:369.186667pt;}
.y29{bottom:369.666667pt;}
.ya1{bottom:379.746667pt;}
.y50{bottom:387.586667pt;}
.y28{bottom:388.066667pt;}
.ya0{bottom:398.146667pt;}
.y4f{bottom:405.986667pt;}
.y27{bottom:406.466667pt;}
.y9f{bottom:416.546667pt;}
.y4e{bottom:424.386667pt;}
.y80{bottom:424.706667pt;}
.y26{bottom:424.866667pt;}
.y9e{bottom:434.946667pt;}
.y4d{bottom:442.786667pt;}
.y25{bottom:443.266667pt;}
.y9d{bottom:453.346667pt;}
.y4c{bottom:461.186667pt;}
.y24{bottom:461.666667pt;}
.y9c{bottom:471.746667pt;}
.y4b{bottom:479.586667pt;}
.y23{bottom:480.066667pt;}
.y9b{bottom:490.146667pt;}
.y4a{bottom:497.986667pt;}
.y22{bottom:498.466667pt;}
.y9a{bottom:508.546667pt;}
.y49{bottom:516.386667pt;}
.y21{bottom:516.866667pt;}
.y99{bottom:526.946667pt;}
.y72{bottom:534.786667pt;}
.y48{bottom:534.946667pt;}
.y20{bottom:535.266667pt;}
.y98{bottom:545.346667pt;}
.y71{bottom:553.186667pt;}
.y1f{bottom:553.666667pt;}
.y97{bottom:563.746667pt;}
.y70{bottom:571.586667pt;}
.y1e{bottom:572.066667pt;}
.y5f{bottom:578.173333pt;}
.y96{bottom:582.173333pt;}
.y6f{bottom:590.013333pt;}
.y1d{bottom:590.493333pt;}
.y95{bottom:600.573333pt;}
.y6e{bottom:608.413333pt;}
.y1c{bottom:608.893333pt;}
.y94{bottom:618.973333pt;}
.y6d{bottom:626.813333pt;}
.y1b{bottom:627.293333pt;}
.y93{bottom:637.373333pt;}
.y6c{bottom:645.213333pt;}
.y1a{bottom:645.693333pt;}
.y74{bottom:651.773333pt;}
.y92{bottom:655.773333pt;}
.y6b{bottom:663.613333pt;}
.y19{bottom:664.093333pt;}
.y91{bottom:674.173333pt;}
.y6a{bottom:682.013333pt;}
.y18{bottom:682.493333pt;}
.y90{bottom:692.573333pt;}
.y69{bottom:700.413333pt;}
.y17{bottom:700.893333pt;}
.y8f{bottom:710.973333pt;}
.y68{bottom:718.813333pt;}
.y16{bottom:719.293333pt;}
.y8e{bottom:729.373333pt;}
.y67{bottom:737.213333pt;}
.y15{bottom:737.693333pt;}
.y8d{bottom:747.773333pt;}
.y66{bottom:755.613333pt;}
.y14{bottom:756.093333pt;}
.y8c{bottom:766.173333pt;}
.y65{bottom:774.013333pt;}
.y13{bottom:774.493333pt;}
.y8b{bottom:784.573333pt;}
.y64{bottom:792.413333pt;}
.y12{bottom:792.893333pt;}
.y8a{bottom:803.013333pt;}
.y63{bottom:811.013333pt;}
.y11{bottom:811.333333pt;}
.y89{bottom:821.413333pt;}
.y10{bottom:829.733333pt;}
.y88{bottom:839.813333pt;}
.yf{bottom:848.133333pt;}
.y87{bottom:858.213333pt;}
.ye{bottom:866.533333pt;}
.y73{bottom:872.613333pt;}
.y86{bottom:876.613333pt;}
.yad{bottom:884.773333pt;}
.yd{bottom:884.933333pt;}
.y85{bottom:895.013333pt;}
.yc{bottom:903.333333pt;}
.y84{bottom:913.413333pt;}
.yb{bottom:921.733333pt;}
.y83{bottom:934.373333pt;}
.ya{bottom:940.133333pt;}
.y82{bottom:955.493333pt;}
.y3b{bottom:958.533333pt;}
.y81{bottom:976.773333pt;}
.y9{bottom:976.933333pt;}
.y8{bottom:995.013333pt;}
.y3a{bottom:995.333333pt;}
.y7{bottom:1013.413333pt;}
.yae{bottom:1013.573333pt;}
.y39{bottom:1013.760000pt;}
.y3f{bottom:1019.840000pt;}
.y2{bottom:1043.200000pt;}
.y1{bottom:1060.960000pt;}
.h7{height:26.206875pt;}
.h9{height:33.918750pt;}
.h6{height:42.084375pt;}
.h3{height:44.648750pt;}
.h8{height:52.134375pt;}
.h5{height:57.375000pt;}
.ha{height:62.781250pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x9{left:117.791988pt;}
.xe{left:148.026643pt;}
.xf{left:153.466655pt;}
.x5{left:160.666655pt;}
.x2{left:180.826655pt;}
.x12{left:279.106643pt;}
.x13{left:284.546655pt;}
.x8{left:305.506655pt;}
.x4{left:318.626655pt;}
.x3{left:344.226655pt;}
.x14{left:534.333310pt;}
.x15{left:539.773322pt;}
.xc{left:546.173310pt;}
.xd{left:551.613322pt;}
.xa{left:638.213310pt;}
.xb{left:643.653322pt;}
.x6{left:654.373310pt;}
.x7{left:659.813322pt;}
.x10{left:671.173310pt;}
.x11{left:676.613322pt;}
.x16{left:680.453322pt;}
}

