
    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_ba3db2e7d8ae3da7dd89309f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.965332;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_12b6f15385f6830964b12c71.woff')format("woff");}.ff2{font-family:ff2;line-height:0.965332;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_0cf73d6eb9e98dc07ec82737.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5a8cba8167eea17d140a8ed3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.757812;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_ce2896ed3c7cc7ea2f82ac28.woff')format("woff");}.ff5{font-family:ff5;line-height:1.201000;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_ba3db2e7d8ae3da7dd89309f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.965332;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_12b6f15385f6830964b12c71.woff')format("woff");}.ff7{font-family:ff7;line-height:0.965332;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_0cf73d6eb9e98dc07ec82737.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5a8cba8167eea17d140a8ed3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.757812;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:ffa;src:url('chunks/assets/font_375a64d5a39762f90425990a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.219000;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:ffb;src:url('chunks/assets/font_5e54f915f40885337019bed3.woff')format("woff");}.ffb{font-family:ffb;line-height:1.222000;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:ffc;src:url('chunks/assets/font_ac6dea4a6bee6bcaa7210830.woff')format("woff");}.ffc{font-family:ffc;line-height:1.178000;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:ffd;src:url('chunks/assets/font_28f04b628b5d80f68e49a087.woff')format("woff");}.ffd{font-family:ffd;line-height:1.215000;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:ffe;src:url('chunks/assets/font_fbdffe933705c0a2a9dcdc4f.woff')format("woff");}.ffe{font-family:ffe;line-height:1.079400;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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(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;}
.v1{vertical-align:21.780000px;}
.lsa{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.011400px;}
.ls13{letter-spacing:0.198000px;}
.ls11{letter-spacing:0.235200px;}
.ls12{letter-spacing:0.239400px;}
.ls10{letter-spacing:0.240000px;}
.ls9{letter-spacing:0.270000px;}
.lse{letter-spacing:0.294000px;}
.lsd{letter-spacing:0.299400px;}
.lsf{letter-spacing:0.300000px;}
.lsc{letter-spacing:0.330000px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.435000px;}
.ls6{letter-spacing:0.435600px;}
.ls4{letter-spacing:0.441000px;}
.lsb{letter-spacing:0.448800px;}
.ls8{letter-spacing:0.449400px;}
.ls7{letter-spacing:0.450000px;}
.ls3{letter-spacing:0.465000px;}
.ls15{letter-spacing:0.660000px;}
.ls0{letter-spacing:0.690000px;}
.ls14{letter-spacing:2.129400px;}
.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;}
}
.ws3{word-spacing:-54.270000px;}
.wsb{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.955000px;}
.ws2{word-spacing:-17.514000px;}
.ws12{word-spacing:-16.962000px;}
.ws5{word-spacing:-16.764000px;}
.wsd{word-spacing:-15.600000px;}
.ws9{word-spacing:-13.716000px;}
.ws0{word-spacing:-12.843600px;}
.wsc{word-spacing:-12.600000px;}
.wsa{word-spacing:-12.420000px;}
.ws8{word-spacing:-12.000000px;}
.wse{word-spacing:-10.920000px;}
.ws11{word-spacing:-9.600000px;}
.ws6{word-spacing:-8.694000px;}
.ws7{word-spacing:-8.400000px;}
.wsf{word-spacing:-6.955200px;}
.ws10{word-spacing:-6.720000px;}
.ws4{word-spacing:0.000000px;}
._e{margin-left:-16.980000px;}
._f{margin-left:-15.900000px;}
._0{margin-left:-10.212000px;}
._7{margin-left:-6.393600px;}
._1{margin-left:-5.106000px;}
._3{margin-left:-3.423600px;}
._d{margin-left:-2.071200px;}
._2{margin-left:-1.027200px;}
._4{width:1.246800px;}
._6{width:2.592000px;}
._9{width:3.726000px;}
._a{width:4.752000px;}
._c{width:5.792400px;}
._b{width:6.798000px;}
._11{width:7.803600px;}
._8{width:9.570000px;}
._5{width:11.316000px;}
._10{width:36.612000px;}
.fc4{color:transparent;}
.fc3{color:rgb(79,76,77);}
.fc1{color:rgb(46,49,146);}
.fc5{color:rgb(38,38,38);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:33.600000px;}
.fs8{font-size:42.000000px;}
.fs3{font-size:46.200000px;}
.fsb{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fsa{font-size:54.600000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:78.000000px;}
.fs4{font-size:90.000000px;}
.fs0{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:48.660750px;}
.y5{bottom:67.373250px;}
.ye{bottom:74.459850px;}
.y4a{bottom:82.913400px;}
.y28{bottom:84.190800px;}
.y75{bottom:84.805800px;}
.y49{bottom:99.413400px;}
.y27{bottom:99.940800px;}
.y74{bottom:104.305800px;}
.y48{bottom:115.913400px;}
.y73{bottom:123.805800px;}
.y26{bottom:131.440800px;}
.y47{bottom:132.413400px;}
.y72{bottom:143.305800px;}
.y25{bottom:147.190800px;}
.y71{bottom:162.805800px;}
.y24{bottom:178.690800px;}
.y70{bottom:182.305800px;}
.y46{bottom:190.477350px;}
.y23{bottom:194.440800px;}
.y78{bottom:201.805800px;}
.y45{bottom:209.977350px;}
.y6f{bottom:221.305800px;}
.y22{bottom:225.940800px;}
.y6e{bottom:240.805800px;}
.y44{bottom:241.477350px;}
.y21{bottom:241.690800px;}
.y79{bottom:252.805800px;}
.y6d{bottom:260.305800px;}
.y20{bottom:273.190800px;}
.y6c{bottom:279.805800px;}
.y43{bottom:287.977350px;}
.y1f{bottom:289.690800px;}
.y13{bottom:296.956650px;}
.y6b{bottom:299.305800px;}
.y1e{bottom:305.440800px;}
.y42{bottom:307.477350px;}
.y6a{bottom:318.805800px;}
.y1d{bottom:321.190800px;}
.y41{bottom:326.977350px;}
.y11{bottom:337.954650px;}
.y69{bottom:338.305800px;}
.y8{bottom:341.484600px;}
.y40{bottom:346.477350px;}
.y1c{bottom:356.440800px;}
.y68{bottom:357.805800px;}
.y10{bottom:361.954650px;}
.y7{bottom:365.484600px;}
.y3f{bottom:365.977350px;}
.y1b{bottom:372.190800px;}
.y67{bottom:377.305800px;}
.y3e{bottom:385.477350px;}
.yf{bottom:385.954650px;}
.y1a{bottom:387.940800px;}
.y6{bottom:389.484600px;}
.y66{bottom:396.805800px;}
.y19{bottom:403.690800px;}
.y3d{bottom:404.977350px;}
.y12{bottom:413.898750px;}
.y65{bottom:416.305800px;}
.y9{bottom:416.365800px;}
.y3c{bottom:424.477350px;}
.y64{bottom:435.805800px;}
.y3b{bottom:443.977350px;}
.y18{bottom:450.940800px;}
.y63{bottom:455.305800px;}
.y3{bottom:456.509550px;}
.y3a{bottom:463.477350px;}
.yd{bottom:463.596150px;}
.y17{bottom:467.440800px;}
.y4{bottom:469.179600px;}
.y77{bottom:474.805800px;}
.y39{bottom:482.977350px;}
.y62{bottom:494.305800px;}
.y16{bottom:499.690800px;}
.y38{bottom:502.477350px;}
.y2{bottom:510.509550px;}
.ya{bottom:512.832150px;}
.y61{bottom:513.805800px;}
.yc{bottom:517.596150px;}
.y37{bottom:521.977350px;}
.y15{bottom:523.944750px;}
.y60{bottom:533.305800px;}
.y36{bottom:541.477350px;}
.y14{bottom:541.944750px;}
.y5f{bottom:552.805800px;}
.y35{bottom:560.977350px;}
.y1{bottom:564.509550px;}
.yb{bottom:571.596150px;}
.y5e{bottom:572.305800px;}
.y34{bottom:580.477350px;}
.y5d{bottom:591.805800px;}
.y33{bottom:599.977350px;}
.y5c{bottom:611.305800px;}
.y32{bottom:619.477350px;}
.y5b{bottom:630.805800px;}
.y31{bottom:638.977350px;}
.y5a{bottom:650.305800px;}
.y89{bottom:651.475950px;}
.y30{bottom:658.477350px;}
.y88{bottom:668.650950px;}
.y59{bottom:669.805800px;}
.y87{bottom:685.825950px;}
.y58{bottom:689.305800px;}
.y86{bottom:703.000950px;}
.y57{bottom:708.805800px;}
.y85{bottom:720.175800px;}
.y2f{bottom:726.630300px;}
.y56{bottom:728.305800px;}
.y84{bottom:737.350950px;}
.y55{bottom:747.805800px;}
.y2e{bottom:748.882200px;}
.y83{bottom:754.525950px;}
.y54{bottom:767.305800px;}
.y82{bottom:771.700950px;}
.y2d{bottom:778.386150px;}
.y53{bottom:786.805800px;}
.y81{bottom:788.875800px;}
.y2c{bottom:800.638200px;}
.y80{bottom:806.050800px;}
.y52{bottom:806.305800px;}
.y7f{bottom:823.225950px;}
.y51{bottom:825.805800px;}
.y2b{bottom:834.394050px;}
.y7e{bottom:840.400950px;}
.y50{bottom:845.305800px;}
.y7d{bottom:857.575950px;}
.y2a{bottom:859.894050px;}
.y4f{bottom:864.805800px;}
.y7c{bottom:874.750800px;}
.y4e{bottom:884.305800px;}
.y7b{bottom:891.925800px;}
.y4d{bottom:903.805800px;}
.y7a{bottom:921.100950px;}
.y4c{bottom:923.305800px;}
.y76{bottom:963.647850px;}
.y4b{bottom:969.132900px;}
.h6{height:39.788086px;}
.h12{height:45.456000px;}
.h9{height:47.412000px;}
.hb{height:50.004000px;}
.ha{height:50.760000px;}
.hf{height:52.680000px;}
.h8{height:56.820000px;}
.h7{height:61.116000px;}
.h4{height:62.390625px;}
.h10{height:64.561200px;}
.hc{height:66.672000px;}
.h3{height:68.062500px;}
.he{height:68.184000px;}
.h11{height:73.866000px;}
.h5{height:82.353516px;}
.hd{height:85.230000px;}
.h2{height:130.453125px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:25.173600px;}
.x16{left:43.901550px;}
.x12{left:48.401550px;}
.x6{left:58.590750px;}
.x1{left:62.864250px;}
.x10{left:64.529550px;}
.x7{left:76.377150px;}
.xf{left:77.660400px;}
.x11{left:81.537450px;}
.xb{left:85.039350px;}
.x15{left:89.777700px;}
.x13{left:106.299300px;}
.x3{left:107.700750px;}
.x14{left:123.307050px;}
.xd{left:145.275600px;}
.xc{left:148.110300px;}
.x8{left:344.535750px;}
.x4{left:347.796300px;}
.xa{left:443.267700px;}
.x9{left:574.141950px;}
.x5{left:580.591500px;}
.xe{left:656.433000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.360000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.010133pt;}
.ls13{letter-spacing:0.176000pt;}
.ls11{letter-spacing:0.209067pt;}
.ls12{letter-spacing:0.212800pt;}
.ls10{letter-spacing:0.213333pt;}
.ls9{letter-spacing:0.240000pt;}
.lse{letter-spacing:0.261333pt;}
.lsd{letter-spacing:0.266133pt;}
.lsf{letter-spacing:0.266667pt;}
.lsc{letter-spacing:0.293333pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.386667pt;}
.ls6{letter-spacing:0.387200pt;}
.ls4{letter-spacing:0.392000pt;}
.lsb{letter-spacing:0.398933pt;}
.ls8{letter-spacing:0.399467pt;}
.ls7{letter-spacing:0.400000pt;}
.ls3{letter-spacing:0.413333pt;}
.ls15{letter-spacing:0.586667pt;}
.ls0{letter-spacing:0.613333pt;}
.ls14{letter-spacing:1.892800pt;}
.ws3{word-spacing:-48.240000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.960000pt;}
.ws2{word-spacing:-15.568000pt;}
.ws12{word-spacing:-15.077333pt;}
.ws5{word-spacing:-14.901333pt;}
.wsd{word-spacing:-13.866667pt;}
.ws9{word-spacing:-12.192000pt;}
.ws0{word-spacing:-11.416533pt;}
.wsc{word-spacing:-11.200000pt;}
.wsa{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.666667pt;}
.wse{word-spacing:-9.706667pt;}
.ws11{word-spacing:-8.533333pt;}
.ws6{word-spacing:-7.728000pt;}
.ws7{word-spacing:-7.466667pt;}
.wsf{word-spacing:-6.182400pt;}
.ws10{word-spacing:-5.973333pt;}
.ws4{word-spacing:0.000000pt;}
._e{margin-left:-15.093333pt;}
._f{margin-left:-14.133333pt;}
._0{margin-left:-9.077333pt;}
._7{margin-left:-5.683200pt;}
._1{margin-left:-4.538667pt;}
._3{margin-left:-3.043200pt;}
._d{margin-left:-1.841067pt;}
._2{margin-left:-0.913067pt;}
._4{width:1.108267pt;}
._6{width:2.304000pt;}
._9{width:3.312000pt;}
._a{width:4.224000pt;}
._c{width:5.148800pt;}
._b{width:6.042667pt;}
._11{width:6.936533pt;}
._8{width:8.506667pt;}
._5{width:10.058667pt;}
._10{width:32.544000pt;}
.fsc{font-size:29.866667pt;}
.fs8{font-size:37.333333pt;}
.fs3{font-size:41.066667pt;}
.fsb{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fsa{font-size:48.533333pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:69.333333pt;}
.fs4{font-size:80.000000pt;}
.fs0{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:43.254000pt;}
.y5{bottom:59.887333pt;}
.ye{bottom:66.186533pt;}
.y4a{bottom:73.700800pt;}
.y28{bottom:74.836267pt;}
.y75{bottom:75.382933pt;}
.y49{bottom:88.367467pt;}
.y27{bottom:88.836267pt;}
.y74{bottom:92.716267pt;}
.y48{bottom:103.034133pt;}
.y73{bottom:110.049600pt;}
.y26{bottom:116.836267pt;}
.y47{bottom:117.700800pt;}
.y72{bottom:127.382933pt;}
.y25{bottom:130.836267pt;}
.y71{bottom:144.716267pt;}
.y24{bottom:158.836267pt;}
.y70{bottom:162.049600pt;}
.y46{bottom:169.313200pt;}
.y23{bottom:172.836267pt;}
.y78{bottom:179.382933pt;}
.y45{bottom:186.646533pt;}
.y6f{bottom:196.716267pt;}
.y22{bottom:200.836267pt;}
.y6e{bottom:214.049600pt;}
.y44{bottom:214.646533pt;}
.y21{bottom:214.836267pt;}
.y79{bottom:224.716267pt;}
.y6d{bottom:231.382933pt;}
.y20{bottom:242.836267pt;}
.y6c{bottom:248.716267pt;}
.y43{bottom:255.979867pt;}
.y1f{bottom:257.502933pt;}
.y13{bottom:263.961467pt;}
.y6b{bottom:266.049600pt;}
.y1e{bottom:271.502933pt;}
.y42{bottom:273.313200pt;}
.y6a{bottom:283.382933pt;}
.y1d{bottom:285.502933pt;}
.y41{bottom:290.646533pt;}
.y11{bottom:300.404133pt;}
.y69{bottom:300.716267pt;}
.y8{bottom:303.541867pt;}
.y40{bottom:307.979867pt;}
.y1c{bottom:316.836267pt;}
.y68{bottom:318.049600pt;}
.y10{bottom:321.737467pt;}
.y7{bottom:324.875200pt;}
.y3f{bottom:325.313200pt;}
.y1b{bottom:330.836267pt;}
.y67{bottom:335.382933pt;}
.y3e{bottom:342.646533pt;}
.yf{bottom:343.070800pt;}
.y1a{bottom:344.836267pt;}
.y6{bottom:346.208533pt;}
.y66{bottom:352.716267pt;}
.y19{bottom:358.836267pt;}
.y3d{bottom:359.979867pt;}
.y12{bottom:367.910000pt;}
.y65{bottom:370.049600pt;}
.y9{bottom:370.102933pt;}
.y3c{bottom:377.313200pt;}
.y64{bottom:387.382933pt;}
.y3b{bottom:394.646533pt;}
.y18{bottom:400.836267pt;}
.y63{bottom:404.716267pt;}
.y3{bottom:405.786267pt;}
.y3a{bottom:411.979867pt;}
.yd{bottom:412.085467pt;}
.y17{bottom:415.502933pt;}
.y4{bottom:417.048533pt;}
.y77{bottom:422.049600pt;}
.y39{bottom:429.313200pt;}
.y62{bottom:439.382933pt;}
.y16{bottom:444.169600pt;}
.y38{bottom:446.646533pt;}
.y2{bottom:453.786267pt;}
.ya{bottom:455.850800pt;}
.y61{bottom:456.716267pt;}
.yc{bottom:460.085467pt;}
.y37{bottom:463.979867pt;}
.y15{bottom:465.728667pt;}
.y60{bottom:474.049600pt;}
.y36{bottom:481.313200pt;}
.y14{bottom:481.728667pt;}
.y5f{bottom:491.382933pt;}
.y35{bottom:498.646533pt;}
.y1{bottom:501.786267pt;}
.yb{bottom:508.085467pt;}
.y5e{bottom:508.716267pt;}
.y34{bottom:515.979867pt;}
.y5d{bottom:526.049600pt;}
.y33{bottom:533.313200pt;}
.y5c{bottom:543.382933pt;}
.y32{bottom:550.646533pt;}
.y5b{bottom:560.716267pt;}
.y31{bottom:567.979867pt;}
.y5a{bottom:578.049600pt;}
.y89{bottom:579.089733pt;}
.y30{bottom:585.313200pt;}
.y88{bottom:594.356400pt;}
.y59{bottom:595.382933pt;}
.y87{bottom:609.623067pt;}
.y58{bottom:612.716267pt;}
.y86{bottom:624.889733pt;}
.y57{bottom:630.049600pt;}
.y85{bottom:640.156267pt;}
.y2f{bottom:645.893600pt;}
.y56{bottom:647.382933pt;}
.y84{bottom:655.423067pt;}
.y55{bottom:664.716267pt;}
.y2e{bottom:665.673067pt;}
.y83{bottom:670.689733pt;}
.y54{bottom:682.049600pt;}
.y82{bottom:685.956400pt;}
.y2d{bottom:691.898800pt;}
.y53{bottom:699.382933pt;}
.y81{bottom:701.222933pt;}
.y2c{bottom:711.678400pt;}
.y80{bottom:716.489600pt;}
.y52{bottom:716.716267pt;}
.y7f{bottom:731.756400pt;}
.y51{bottom:734.049600pt;}
.y2b{bottom:741.683600pt;}
.y7e{bottom:747.023067pt;}
.y50{bottom:751.382933pt;}
.y7d{bottom:762.289733pt;}
.y2a{bottom:764.350267pt;}
.y4f{bottom:768.716267pt;}
.y7c{bottom:777.556267pt;}
.y4e{bottom:786.049600pt;}
.y7b{bottom:792.822933pt;}
.y4d{bottom:803.382933pt;}
.y7a{bottom:818.756400pt;}
.y4c{bottom:820.716267pt;}
.y76{bottom:856.575867pt;}
.y4b{bottom:861.451467pt;}
.h6{height:35.367188pt;}
.h12{height:40.405333pt;}
.h9{height:42.144000pt;}
.hb{height:44.448000pt;}
.ha{height:45.120000pt;}
.hf{height:46.826667pt;}
.h8{height:50.506667pt;}
.h7{height:54.325333pt;}
.h4{height:55.458333pt;}
.h10{height:57.387733pt;}
.hc{height:59.264000pt;}
.h3{height:60.500000pt;}
.he{height:60.608000pt;}
.h11{height:65.658667pt;}
.h5{height:73.203125pt;}
.hd{height:75.760000pt;}
.h2{height:115.958333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:22.376533pt;}
.x16{left:39.023600pt;}
.x12{left:43.023600pt;}
.x6{left:52.080667pt;}
.x1{left:55.879333pt;}
.x10{left:57.359600pt;}
.x7{left:67.890800pt;}
.xf{left:69.031467pt;}
.x11{left:72.477733pt;}
.xb{left:75.590533pt;}
.x15{left:79.802400pt;}
.x13{left:94.488267pt;}
.x3{left:95.734000pt;}
.x14{left:109.606267pt;}
.xd{left:129.133867pt;}
.xc{left:131.653600pt;}
.x8{left:306.254000pt;}
.x4{left:309.152267pt;}
.xa{left:394.015733pt;}
.x9{left:510.348400pt;}
.x5{left:516.081333pt;}
.xe{left:583.496000pt;}
}

