
    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_1c25344f13f6e99d2067102b.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_a0c0ccb50e47c002c61b0ca1.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_c7c709a68e2d8acfd753c8b0.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_b6f530ae81174290d6b9139f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e9cb84b961dee740f60b996e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.860840;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_ba5193a1bd19a596cc67ae3e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.908203;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_ed2f534beffbb444007e5ec9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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);}
.m2{transform:matrix(0.257762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257762,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:-82.800000px;}
.v6{vertical-align:-39.904815px;}
.v2{vertical-align:-12.240000px;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.360000px;}
.v3{vertical-align:33.120000px;}
.ls19{letter-spacing:-1.008000px;}
.ls2a{letter-spacing:-0.870000px;}
.ls1c{letter-spacing:-0.792000px;}
.ls2e{letter-spacing:-0.720000px;}
.ls31{letter-spacing:-0.612000px;}
.ls17{letter-spacing:-0.569329px;}
.ls12{letter-spacing:-0.538800px;}
.ls30{letter-spacing:-0.457800px;}
.ls1d{letter-spacing:-0.432000px;}
.ls32{letter-spacing:-0.414600px;}
.ls11{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls2f{letter-spacing:-0.109200px;}
.ls18{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.034560px;}
.ls5{letter-spacing:-0.017280px;}
.ls3{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.072000px;}
.ls28{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls33{letter-spacing:0.152400px;}
.ls2{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.181200px;}
.ls2d{letter-spacing:0.262200px;}
.ls26{letter-spacing:0.288000px;}
.ls2c{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.457920px;}
.ls1{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.504000px;}
.ls1e{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.792000px;}
.ls21{letter-spacing:0.864000px;}
.lsf{letter-spacing:1.080000px;}
.ls9{letter-spacing:1.440000px;}
.ls27{letter-spacing:1.584000px;}
.ls20{letter-spacing:7.380000px;}
.ls23{letter-spacing:9.360000px;}
.ls14{letter-spacing:10.080000px;}
.ls1f{letter-spacing:16.740000px;}
.lsb{letter-spacing:18.000000px;}
.ls1a{letter-spacing:27.360000px;}
.ls15{letter-spacing:391.412819px;}
.lse{letter-spacing:1281.360000px;}
.ls24{letter-spacing:1557.840000px;}
.ls25{letter-spacing:1578.000000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws23{word-spacing:-66.240000px;}
.ws12{word-spacing:-64.018503px;}
.ws10{word-spacing:-54.000000px;}
.ws14{word-spacing:-35.146158px;}
.ws1d{word-spacing:-19.584000px;}
.ws8{word-spacing:-19.440000px;}
.ws0{word-spacing:-19.405440px;}
.ws1a{word-spacing:-18.864000px;}
.ws1b{word-spacing:-18.792000px;}
.wsa{word-spacing:-18.720000px;}
.wsb{word-spacing:-18.504000px;}
.ws16{word-spacing:-18.432000px;}
.ws1c{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws19{word-spacing:-17.568000px;}
.ws18{word-spacing:-17.208000px;}
.ws21{word-spacing:-16.865400px;}
.ws22{word-spacing:-16.822200px;}
.ws27{word-spacing:-16.712400px;}
.ws3{word-spacing:-16.560000px;}
.ws24{word-spacing:-16.450800px;}
.ws20{word-spacing:-16.254600px;}
.ws26{word-spacing:-16.145400px;}
.ws11{word-spacing:-16.004626px;}
.ws25{word-spacing:-15.948000px;}
.ws1f{word-spacing:-15.690000px;}
.ws13{word-spacing:-15.435296px;}
.ws17{word-spacing:-12.241200px;}
.ws1{word-spacing:-12.060000px;}
.wse{word-spacing:-11.700000px;}
.wsf{word-spacing:-11.521200px;}
.ws1e{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._25{margin-left:-280.604766px;}
._24{margin-left:-116.524912px;}
._20{margin-left:-113.745550px;}
._21{margin-left:-107.437452px;}
._1f{margin-left:-92.305986px;}
._22{margin-left:-78.536403px;}
._23{margin-left:-47.447136px;}
._1e{margin-left:-35.775840px;}
._1c{margin-left:-3.120000px;}
._2{margin-left:-2.005920px;}
._3{margin-left:-1.002240px;}
._1{width:1.321920px;}
._5{width:2.350080px;}
._14{width:4.080000px;}
._15{width:5.141760px;}
._11{width:6.168000px;}
._12{width:7.333920px;}
._17{width:8.496000px;}
._f{width:9.720000px;}
._10{width:10.956000px;}
._13{width:12.228000px;}
._9{width:13.248000px;}
._a{width:14.278080px;}
._18{width:15.505920px;}
._1b{width:16.940160px;}
._19{width:19.044000px;}
._16{width:20.160000px;}
._1a{width:21.252000px;}
._b{width:22.320000px;}
._c{width:23.544000px;}
._27{width:24.672000px;}
._2b{width:25.894080px;}
._6{width:27.000000px;}
._7{width:28.136160px;}
._8{width:29.230080px;}
._d{width:30.888000px;}
._e{width:32.472000px;}
._4{width:58.068000px;}
._1d{width:1045.957920px;}
._2d{width:1189.740000px;}
._0{width:1207.620000px;}
._29{width:1341.744000px;}
._2c{width:1491.241920px;}
._28{width:1602.409920px;}
._26{width:1824.240000px;}
._2a{width:1892.724000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:51.120000px;}
.fs5{font-size:64.018503px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y35{bottom:7.512948px;}
.y34{bottom:19.949820px;}
.y36{bottom:29.926024px;}
.y1{bottom:78.300000px;}
.y7d{bottom:133.560000px;}
.y46{bottom:142.020000px;}
.y19{bottom:150.120000px;}
.y82{bottom:161.640000px;}
.y31{bottom:166.860000px;}
.y7c{bottom:171.540000px;}
.y45{bottom:183.420000px;}
.y18{bottom:191.520000px;}
.y81{bottom:195.480000px;}
.y62{bottom:206.130000px;}
.y30{bottom:208.290000px;}
.y7b{bottom:209.550000px;}
.y44{bottom:224.850000px;}
.y17{bottom:232.950000px;}
.y8c{bottom:233.130000px;}
.y61{bottom:243.930000px;}
.y7a{bottom:247.350000px;}
.y2f{bottom:249.690000px;}
.y43{bottom:266.250000px;}
.y8b{bottom:270.930000px;}
.y16{bottom:273.990000px;}
.y60{bottom:281.910000px;}
.y86{bottom:284.070000px;}
.y79{bottom:285.330000px;}
.y2e{bottom:291.090000px;}
.y42{bottom:307.650000px;}
.y8a{bottom:308.910000px;}
.y15{bottom:315.390000px;}
.y5f{bottom:319.890000px;}
.y85{bottom:322.050000px;}
.y78{bottom:323.310000px;}
.y2d{bottom:332.490000px;}
.y89{bottom:342.930000px;}
.y41{bottom:349.050000px;}
.y84{bottom:355.890000px;}
.y14{bottom:357.150000px;}
.y5e{bottom:357.870000px;}
.y77{bottom:361.290000px;}
.y49{bottom:373.530000px;}
.y2c{bottom:373.890000px;}
.y40{bottom:390.450000px;}
.y5d{bottom:395.850000px;}
.y13{bottom:398.550000px;}
.y76{bottom:399.270000px;}
.y2b{bottom:415.290000px;}
.y3f{bottom:431.850000px;}
.y5c{bottom:433.650000px;}
.y75{bottom:437.250000px;}
.y12{bottom:439.950000px;}
.y2a{bottom:456.735000px;}
.y5b{bottom:471.675000px;}
.y3e{bottom:473.295000px;}
.y74{bottom:475.095000px;}
.y11{bottom:481.395000px;}
.y29{bottom:498.135000px;}
.y5a{bottom:509.655000px;}
.y73{bottom:513.075000px;}
.y3d{bottom:514.695000px;}
.y10{bottom:522.795000px;}
.y28{bottom:539.535000px;}
.y59{bottom:547.635000px;}
.y72{bottom:551.055000px;}
.y3c{bottom:555.735000px;}
.yf{bottom:564.195000px;}
.y27{bottom:580.935000px;}
.y58{bottom:585.615000px;}
.y71{bottom:589.035000px;}
.y3b{bottom:597.135000px;}
.ye{bottom:605.595000px;}
.y26{bottom:622.155000px;}
.y57{bottom:623.415000px;}
.y70{bottom:627.015000px;}
.y3a{bottom:638.895000px;}
.yd{bottom:646.995000px;}
.y56{bottom:661.395000px;}
.y25{bottom:663.555000px;}
.y6f{bottom:664.815000px;}
.y39{bottom:680.325000px;}
.y80{bottom:681.405000px;}
.yc{bottom:688.425000px;}
.y55{bottom:699.405000px;}
.y6e{bottom:702.825000px;}
.y24{bottom:704.985000px;}
.y88{bottom:712.905000px;}
.y7f{bottom:719.385000px;}
.y38{bottom:721.725000px;}
.yb{bottom:729.825000px;}
.y54{bottom:737.385000px;}
.y6d{bottom:740.805000px;}
.y83{bottom:744.945000px;}
.y32{bottom:746.025000px;}
.y23{bottom:746.385000px;}
.y87{bottom:746.745000px;}
.y7e{bottom:753.225000px;}
.y33{bottom:758.640000px;}
.ya{bottom:770.865000px;}
.y53{bottom:775.365000px;}
.y6c{bottom:778.785000px;}
.y37{bottom:781.125000px;}
.y22{bottom:787.785000px;}
.y52{bottom:813.345000px;}
.y6b{bottom:816.765000px;}
.y47{bottom:828.825000px;}
.y21{bottom:829.185000px;}
.y9{bottom:837.465000px;}
.y51{bottom:851.145000px;}
.y6a{bottom:854.745000px;}
.y48{bottom:870.225000px;}
.y20{bottom:870.585000px;}
.y8{bottom:875.445000px;}
.y50{bottom:889.125000px;}
.y69{bottom:892.545000px;}
.y1f{bottom:912.030000px;}
.y7{bottom:913.290000px;}
.y4f{bottom:927.150000px;}
.y68{bottom:930.570000px;}
.y6{bottom:951.270000px;}
.y1e{bottom:953.430000px;}
.y4e{bottom:965.130000px;}
.y67{bottom:968.550000px;}
.y5{bottom:989.250000px;}
.y1d{bottom:994.830000px;}
.y4d{bottom:1003.110000px;}
.y66{bottom:1006.530000px;}
.y4{bottom:1029.390000px;}
.y1c{bottom:1036.230000px;}
.y4c{bottom:1038.570000px;}
.y65{bottom:1044.510000px;}
.y3{bottom:1072.230000px;}
.y1b{bottom:1077.630000px;}
.y4b{bottom:1078.890000px;}
.y64{bottom:1082.310000px;}
.y2{bottom:1117.050000px;}
.y4a{bottom:1118.670000px;}
.y1a{bottom:1119.030000px;}
.y63{bottom:1120.290000px;}
.h9{height:44.450347px;}
.h8{height:45.299211px;}
.ha{height:62.830660px;}
.h6{height:64.978594px;}
.h5{height:65.010937px;}
.h2{height:70.664062px;}
.h7{height:72.562500px;}
.hb{height:74.370937px;}
.h3{height:78.367500px;}
.h4{height:80.464922px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:134.771280px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:3.807936px;}
.xd{left:37.297572px;}
.xb{left:96.206309px;}
.xc{left:97.411006px;}
.xa{left:124.554705px;}
.x8{left:127.656000px;}
.x18{left:129.456000px;}
.x15{left:130.896000px;}
.x2{left:136.476000px;}
.x13{left:138.276000px;}
.x6{left:142.956000px;}
.x9{left:148.896000px;}
.x1b{left:150.690000px;}
.x17{left:180.030000px;}
.x19{left:182.910000px;}
.x4{left:241.770000px;}
.x7{left:253.290000px;}
.xf{left:262.470000px;}
.x3{left:281.055000px;}
.x5{left:301.035000px;}
.x10{left:437.475000px;}
.x1{left:442.005000px;}
.x11{left:446.505000px;}
.x12{left:710.970000px;}
.x1a{left:716.010000px;}
.x16{left:727.890000px;}
.x14{left:765.330000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v6{vertical-align:-35.470947pt;}
.v2{vertical-align:-10.880000pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.320000pt;}
.v3{vertical-align:29.440000pt;}
.ls19{letter-spacing:-0.896000pt;}
.ls2a{letter-spacing:-0.773333pt;}
.ls1c{letter-spacing:-0.704000pt;}
.ls2e{letter-spacing:-0.640000pt;}
.ls31{letter-spacing:-0.544000pt;}
.ls17{letter-spacing:-0.506071pt;}
.ls12{letter-spacing:-0.478933pt;}
.ls30{letter-spacing:-0.406933pt;}
.ls1d{letter-spacing:-0.384000pt;}
.ls32{letter-spacing:-0.368533pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls2f{letter-spacing:-0.097067pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.030720pt;}
.ls5{letter-spacing:-0.015360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls28{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls33{letter-spacing:0.135467pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.161067pt;}
.ls2d{letter-spacing:0.233067pt;}
.ls26{letter-spacing:0.256000pt;}
.ls2c{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.407040pt;}
.ls1{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.448000pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.704000pt;}
.ls21{letter-spacing:0.768000pt;}
.lsf{letter-spacing:0.960000pt;}
.ls9{letter-spacing:1.280000pt;}
.ls27{letter-spacing:1.408000pt;}
.ls20{letter-spacing:6.560000pt;}
.ls23{letter-spacing:8.320000pt;}
.ls14{letter-spacing:8.960000pt;}
.ls1f{letter-spacing:14.880000pt;}
.lsb{letter-spacing:16.000000pt;}
.ls1a{letter-spacing:24.320000pt;}
.ls15{letter-spacing:347.922506pt;}
.lse{letter-spacing:1138.986667pt;}
.ls24{letter-spacing:1384.746667pt;}
.ls25{letter-spacing:1402.666667pt;}
.ws7{word-spacing:-64.000000pt;}
.ws23{word-spacing:-58.880000pt;}
.ws12{word-spacing:-56.905336pt;}
.ws10{word-spacing:-48.000000pt;}
.ws14{word-spacing:-31.241030pt;}
.ws1d{word-spacing:-17.408000pt;}
.ws8{word-spacing:-17.280000pt;}
.ws0{word-spacing:-17.249280pt;}
.ws1a{word-spacing:-16.768000pt;}
.ws1b{word-spacing:-16.704000pt;}
.wsa{word-spacing:-16.640000pt;}
.wsb{word-spacing:-16.448000pt;}
.ws16{word-spacing:-16.384000pt;}
.ws1c{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws19{word-spacing:-15.616000pt;}
.ws18{word-spacing:-15.296000pt;}
.ws21{word-spacing:-14.991467pt;}
.ws22{word-spacing:-14.953067pt;}
.ws27{word-spacing:-14.855467pt;}
.ws3{word-spacing:-14.720000pt;}
.ws24{word-spacing:-14.622933pt;}
.ws20{word-spacing:-14.448533pt;}
.ws26{word-spacing:-14.351467pt;}
.ws11{word-spacing:-14.226334pt;}
.ws25{word-spacing:-14.176000pt;}
.ws1f{word-spacing:-13.946667pt;}
.ws13{word-spacing:-13.720263pt;}
.ws17{word-spacing:-10.881067pt;}
.ws1{word-spacing:-10.720000pt;}
.wse{word-spacing:-10.400000pt;}
.wsf{word-spacing:-10.241067pt;}
.ws1e{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._25{margin-left:-249.426458pt;}
._24{margin-left:-103.577700pt;}
._20{margin-left:-101.107155pt;}
._21{margin-left:-95.499958pt;}
._1f{margin-left:-82.049766pt;}
._22{margin-left:-69.810136pt;}
._23{margin-left:-42.175232pt;}
._1e{margin-left:-31.800747pt;}
._1c{margin-left:-2.773333pt;}
._2{margin-left:-1.783040pt;}
._3{margin-left:-0.890880pt;}
._1{width:1.175040pt;}
._5{width:2.088960pt;}
._14{width:3.626667pt;}
._15{width:4.570453pt;}
._11{width:5.482667pt;}
._12{width:6.519040pt;}
._17{width:7.552000pt;}
._f{width:8.640000pt;}
._10{width:9.738667pt;}
._13{width:10.869333pt;}
._9{width:11.776000pt;}
._a{width:12.691627pt;}
._18{width:13.783040pt;}
._1b{width:15.057920pt;}
._19{width:16.928000pt;}
._16{width:17.920000pt;}
._1a{width:18.890667pt;}
._b{width:19.840000pt;}
._c{width:20.928000pt;}
._27{width:21.930667pt;}
._2b{width:23.016960pt;}
._6{width:24.000000pt;}
._7{width:25.009920pt;}
._8{width:25.982293pt;}
._d{width:27.456000pt;}
._e{width:28.864000pt;}
._4{width:51.616000pt;}
._1d{width:929.740373pt;}
._2d{width:1057.546667pt;}
._0{width:1073.440000pt;}
._29{width:1192.661333pt;}
._2c{width:1325.548373pt;}
._28{width:1424.364373pt;}
._26{width:1621.546667pt;}
._2a{width:1682.421333pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:45.440000pt;}
.fs5{font-size:56.905336pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:6.678176pt;}
.y34{bottom:17.733173pt;}
.y36{bottom:26.600910pt;}
.y1{bottom:69.600000pt;}
.y7d{bottom:118.720000pt;}
.y46{bottom:126.240000pt;}
.y19{bottom:133.440000pt;}
.y82{bottom:143.680000pt;}
.y31{bottom:148.320000pt;}
.y7c{bottom:152.480000pt;}
.y45{bottom:163.040000pt;}
.y18{bottom:170.240000pt;}
.y81{bottom:173.760000pt;}
.y62{bottom:183.226667pt;}
.y30{bottom:185.146667pt;}
.y7b{bottom:186.266667pt;}
.y44{bottom:199.866667pt;}
.y17{bottom:207.066667pt;}
.y8c{bottom:207.226667pt;}
.y61{bottom:216.826667pt;}
.y7a{bottom:219.866667pt;}
.y2f{bottom:221.946667pt;}
.y43{bottom:236.666667pt;}
.y8b{bottom:240.826667pt;}
.y16{bottom:243.546667pt;}
.y60{bottom:250.586667pt;}
.y86{bottom:252.506667pt;}
.y79{bottom:253.626667pt;}
.y2e{bottom:258.746667pt;}
.y42{bottom:273.466667pt;}
.y8a{bottom:274.586667pt;}
.y15{bottom:280.346667pt;}
.y5f{bottom:284.346667pt;}
.y85{bottom:286.266667pt;}
.y78{bottom:287.386667pt;}
.y2d{bottom:295.546667pt;}
.y89{bottom:304.826667pt;}
.y41{bottom:310.266667pt;}
.y84{bottom:316.346667pt;}
.y14{bottom:317.466667pt;}
.y5e{bottom:318.106667pt;}
.y77{bottom:321.146667pt;}
.y49{bottom:332.026667pt;}
.y2c{bottom:332.346667pt;}
.y40{bottom:347.066667pt;}
.y5d{bottom:351.866667pt;}
.y13{bottom:354.266667pt;}
.y76{bottom:354.906667pt;}
.y2b{bottom:369.146667pt;}
.y3f{bottom:383.866667pt;}
.y5c{bottom:385.466667pt;}
.y75{bottom:388.666667pt;}
.y12{bottom:391.066667pt;}
.y2a{bottom:405.986667pt;}
.y5b{bottom:419.266667pt;}
.y3e{bottom:420.706667pt;}
.y74{bottom:422.306667pt;}
.y11{bottom:427.906667pt;}
.y29{bottom:442.786667pt;}
.y5a{bottom:453.026667pt;}
.y73{bottom:456.066667pt;}
.y3d{bottom:457.506667pt;}
.y10{bottom:464.706667pt;}
.y28{bottom:479.586667pt;}
.y59{bottom:486.786667pt;}
.y72{bottom:489.826667pt;}
.y3c{bottom:493.986667pt;}
.yf{bottom:501.506667pt;}
.y27{bottom:516.386667pt;}
.y58{bottom:520.546667pt;}
.y71{bottom:523.586667pt;}
.y3b{bottom:530.786667pt;}
.ye{bottom:538.306667pt;}
.y26{bottom:553.026667pt;}
.y57{bottom:554.146667pt;}
.y70{bottom:557.346667pt;}
.y3a{bottom:567.906667pt;}
.yd{bottom:575.106667pt;}
.y56{bottom:587.906667pt;}
.y25{bottom:589.826667pt;}
.y6f{bottom:590.946667pt;}
.y39{bottom:604.733333pt;}
.y80{bottom:605.693333pt;}
.yc{bottom:611.933333pt;}
.y55{bottom:621.693333pt;}
.y6e{bottom:624.733333pt;}
.y24{bottom:626.653333pt;}
.y88{bottom:633.693333pt;}
.y7f{bottom:639.453333pt;}
.y38{bottom:641.533333pt;}
.yb{bottom:648.733333pt;}
.y54{bottom:655.453333pt;}
.y6d{bottom:658.493333pt;}
.y83{bottom:662.173333pt;}
.y32{bottom:663.133333pt;}
.y23{bottom:663.453333pt;}
.y87{bottom:663.773333pt;}
.y7e{bottom:669.533333pt;}
.y33{bottom:674.346667pt;}
.ya{bottom:685.213333pt;}
.y53{bottom:689.213333pt;}
.y6c{bottom:692.253333pt;}
.y37{bottom:694.333333pt;}
.y22{bottom:700.253333pt;}
.y52{bottom:722.973333pt;}
.y6b{bottom:726.013333pt;}
.y47{bottom:736.733333pt;}
.y21{bottom:737.053333pt;}
.y9{bottom:744.413333pt;}
.y51{bottom:756.573333pt;}
.y6a{bottom:759.773333pt;}
.y48{bottom:773.533333pt;}
.y20{bottom:773.853333pt;}
.y8{bottom:778.173333pt;}
.y50{bottom:790.333333pt;}
.y69{bottom:793.373333pt;}
.y1f{bottom:810.693333pt;}
.y7{bottom:811.813333pt;}
.y4f{bottom:824.133333pt;}
.y68{bottom:827.173333pt;}
.y6{bottom:845.573333pt;}
.y1e{bottom:847.493333pt;}
.y4e{bottom:857.893333pt;}
.y67{bottom:860.933333pt;}
.y5{bottom:879.333333pt;}
.y1d{bottom:884.293333pt;}
.y4d{bottom:891.653333pt;}
.y66{bottom:894.693333pt;}
.y4{bottom:915.013333pt;}
.y1c{bottom:921.093333pt;}
.y4c{bottom:923.173333pt;}
.y65{bottom:928.453333pt;}
.y3{bottom:953.093333pt;}
.y1b{bottom:957.893333pt;}
.y4b{bottom:959.013333pt;}
.y64{bottom:962.053333pt;}
.y2{bottom:992.933333pt;}
.y4a{bottom:994.373333pt;}
.y1a{bottom:994.693333pt;}
.y63{bottom:995.813333pt;}
.h9{height:39.511420pt;}
.h8{height:40.265966pt;}
.ha{height:55.849475pt;}
.h6{height:57.758750pt;}
.h5{height:57.787500pt;}
.h2{height:62.812500pt;}
.h7{height:64.500000pt;}
.hb{height:66.107500pt;}
.h3{height:69.660000pt;}
.h4{height:71.524375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:119.796694pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:3.384832pt;}
.xd{left:33.153397pt;}
.xb{left:85.516719pt;}
.xc{left:86.587561pt;}
.xa{left:110.715293pt;}
.x8{left:113.472000pt;}
.x18{left:115.072000pt;}
.x15{left:116.352000pt;}
.x2{left:121.312000pt;}
.x13{left:122.912000pt;}
.x6{left:127.072000pt;}
.x9{left:132.352000pt;}
.x1b{left:133.946667pt;}
.x17{left:160.026667pt;}
.x19{left:162.586667pt;}
.x4{left:214.906667pt;}
.x7{left:225.146667pt;}
.xf{left:233.306667pt;}
.x3{left:249.826667pt;}
.x5{left:267.586667pt;}
.x10{left:388.866667pt;}
.x1{left:392.893333pt;}
.x11{left:396.893333pt;}
.x12{left:631.973333pt;}
.x1a{left:636.453333pt;}
.x16{left:647.013333pt;}
.x14{left:680.293333pt;}
}

