
    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_30556e47049ccee4a0cc47bb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.890325;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_607cd625a9e5b7384b9f778d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.089355;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;}
.ff3{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4;src:url('chunks/assets/font_75ea2dbb8fde05c613c660a4.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;}
.ff5{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d7c1aca402f75143376841ed.woff')format("woff");}.ff6{font-family:ff6;line-height:0.915527;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_e87050c18c6c05b509d4b10c.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a75b0f15118e6f94e193d916.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8f4b2efae5969161f72552b3.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e118de6f7e657756829ad362.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_eda2ab02603ae1d471d7fe50.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_df63f13c2d09c56661c0942d.woff')format("woff");}.ffc{font-family:ffc;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;}
.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:-30.240000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.358543px;}
.ls4{letter-spacing:-0.216000px;}
.ls1{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.001440px;}
.ls5{letter-spacing:0.059757px;}
.ls6{letter-spacing:0.179271px;}
.ls9{letter-spacing:0.179280px;}
.lsa{letter-spacing:0.239040px;}
.ls8{letter-spacing:0.358560px;}
.ls3{letter-spacing:310.338000px;}
.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;}
}
.ws20{word-spacing:-14.580737px;}
.ws1f{word-spacing:-7.559280px;}
.ws12{word-spacing:-0.418320px;}
.ws26{word-spacing:-0.298800px;}
.ws1c{word-spacing:-0.239040px;}
.ws1{word-spacing:-0.072000px;}
.wsb{word-spacing:-0.059760px;}
.wsc{word-spacing:0.000000px;}
.wsd{word-spacing:0.072000px;}
.ws13{word-spacing:0.119514px;}
.ws15{word-spacing:0.349946px;}
.ws14{word-spacing:0.537814px;}
.ws16{word-spacing:0.537840px;}
.ws2{word-spacing:11.952000px;}
.ws1e{word-spacing:12.672000px;}
.ws10{word-spacing:13.392000px;}
.wsf{word-spacing:14.112000px;}
.ws1b{word-spacing:14.832000px;}
.ws17{word-spacing:15.552000px;}
.wsa{word-spacing:16.272000px;}
.ws3{word-spacing:16.992000px;}
.ws19{word-spacing:17.712000px;}
.ws6{word-spacing:17.928000px;}
.ws18{word-spacing:18.432000px;}
.ws5{word-spacing:18.648000px;}
.ws9{word-spacing:19.152000px;}
.ws1d{word-spacing:20.592000px;}
.ws1a{word-spacing:21.312000px;}
.wse{word-spacing:22.752000px;}
.ws21{word-spacing:24.912000px;}
.ws7{word-spacing:27.072000px;}
.ws4{word-spacing:29.952000px;}
.ws22{word-spacing:34.272000px;}
.ws8{word-spacing:37.152000px;}
.ws11{word-spacing:47.232000px;}
.ws0{word-spacing:49.392000px;}
.ws24{word-spacing:52.272000px;}
.ws23{word-spacing:52.992000px;}
.ws25{word-spacing:106.272000px;}
._9{margin-left:-1.080000px;}
._4{width:1.008000px;}
._7{width:2.664000px;}
._6{width:4.104000px;}
._12{width:5.145912px;}
._2{width:6.264000px;}
._1{width:7.704000px;}
._0{width:9.144000px;}
._c{width:10.584000px;}
._f{width:12.024000px;}
._3{width:13.464000px;}
._5{width:15.624000px;}
._11{width:17.064000px;}
._b{width:18.504000px;}
._d{width:20.664000px;}
._10{width:22.824000px;}
._e{width:24.264000px;}
._8{width:28.584000px;}
._a{width:36.000000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.237120px;}
.fs3{font-size:38.882880px;}
.fs2{font-size:48.234240px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.757120px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y96{bottom:3.600000px;}
.y95{bottom:106.335000px;}
.y2a{bottom:109.935000px;}
.y8f{bottom:109.935546px;}
.y94{bottom:109.935792px;}
.y29{bottom:116.775000px;}
.y28{bottom:127.215150px;}
.y93{bottom:127.215396px;}
.y27{bottom:134.055000px;}
.y79{bottom:144.495000px;}
.y64{bottom:144.674698px;}
.y26{bottom:144.855000px;}
.y78{bottom:151.335000px;}
.y44{bottom:152.235150px;}
.y77{bottom:161.775150px;}
.y92{bottom:162.135000px;}
.y43{bottom:162.315000px;}
.y84{bottom:162.675150px;}
.y76{bottom:168.615000px;}
.y42{bottom:169.155150px;}
.y63{bottom:169.875000px;}
.y75{bottom:179.055000px;}
.y41{bottom:179.955000px;}
.y62{bottom:179.955098px;}
.y74{bottom:185.895000px;}
.y25{bottom:193.275000px;}
.y8e{bottom:196.695000px;}
.y73{bottom:196.695150px;}
.y61{bottom:197.235150px;}
.y83{bottom:197.415000px;}
.y60{bottom:204.075000px;}
.y5f{bottom:214.875150px;}
.y24{bottom:224.235000px;}
.y82{bottom:224.235150px;}
.y81{bottom:232.515150px;}
.y5e{bottom:239.895150px;}
.y23{bottom:255.375000px;}
.y5b{bottom:270.855000px;}
.y5d{bottom:270.855150px;}
.y5c{bottom:279.135150px;}
.y22{bottom:286.335000px;}
.y5a{bottom:301.815000px;}
.y21{bottom:305.955000px;}
.y40{bottom:317.475000px;}
.y20{bottom:332.955000px;}
.y1e{bottom:332.955150px;}
.y1f{bottom:341.235000px;}
.y3f{bottom:348.435000px;}
.y59{bottom:363.915000px;}
.y1d{bottom:363.915150px;}
.y3e{bottom:379.575000px;}
.y72{bottom:395.055000px;}
.y58{bottom:395.055045px;}
.y1c{bottom:395.055150px;}
.y8d{bottom:403.335000px;}
.y3d{bottom:410.535000px;}
.y57{bottom:414.675000px;}
.y8c{bottom:426.015000px;}
.y1b{bottom:426.015150px;}
.y3c{bottom:441.675000px;}
.y71{bottom:441.675150px;}
.y56{bottom:449.955000px;}
.y8b{bottom:457.155000px;}
.y1a{bottom:457.155150px;}
.y3b{bottom:472.635000px;}
.y70{bottom:472.635150px;}
.y8a{bottom:488.115000px;}
.y19{bottom:488.115150px;}
.y3a{bottom:503.775000px;}
.y6f{bottom:503.775150px;}
.y89{bottom:519.255000px;}
.y18{bottom:519.255150px;}
.y39{bottom:523.395150px;}
.y55{bottom:534.735000px;}
.y6e{bottom:534.735150px;}
.y88{bottom:538.875000px;}
.y15{bottom:550.215000px;}
.y17{bottom:550.215150px;}
.y16{bottom:558.495000px;}
.y54{bottom:565.875000px;}
.y6d{bottom:565.875150px;}
.y87{bottom:574.155150px;}
.y14{bottom:581.355000px;}
.y37{bottom:581.355150px;}
.y38{bottom:589.635150px;}
.y53{bottom:596.835000px;}
.y6c{bottom:596.835150px;}
.y13{bottom:612.315000px;}
.y35{bottom:612.315150px;}
.y80{bottom:616.455000px;}
.y36{bottom:620.595000px;}
.y52{bottom:627.975000px;}
.y6b{bottom:627.975150px;}
.y6a{bottom:636.255000px;}
.y12{bottom:643.455000px;}
.y34{bottom:643.455150px;}
.y7f{bottom:651.735150px;}
.y51{bottom:658.935000px;}
.y11{bottom:674.415000px;}
.y33{bottom:674.415150px;}
.y50{bottom:690.075000px;}
.y10{bottom:694.215150px;}
.y91{bottom:705.195000px;}
.y7e{bottom:705.555000px;}
.y32{bottom:705.555150px;}
.yf{bottom:721.035000px;}
.y31{bottom:725.175000px;}
.y7d{bottom:736.515000px;}
.ye{bottom:752.175000px;}
.y30{bottom:760.455000px;}
.y7c{bottom:767.655000px;}
.yd{bottom:783.135000px;}
.y7b{bottom:798.615000px;}
.y4f{bottom:802.755000px;}
.yc{bottom:814.095000px;}
.y68{bottom:814.095150px;}
.y69{bottom:822.375000px;}
.y4d{bottom:829.755000px;}
.y4e{bottom:838.035000px;}
.yb{bottom:845.235000px;}
.y67{bottom:845.235150px;}
.y4c{bottom:860.715000px;}
.y66{bottom:864.855000px;}
.ya{bottom:876.195000px;}
.y4b{bottom:891.855000px;}
.y65{bottom:900.135000px;}
.y9{bottom:907.335000px;}
.y4a{bottom:922.815000px;}
.y8{bottom:938.295000px;}
.y49{bottom:953.955000px;}
.y86{bottom:958.095000px;}
.y7a{bottom:962.235150px;}
.y7{bottom:969.435000px;}
.y48{bottom:984.915000px;}
.y85{bottom:993.195000px;}
.y6{bottom:1000.395000px;}
.y47{bottom:1016.055000px;}
.y2f{bottom:1031.534910px;}
.y5{bottom:1031.535000px;}
.y46{bottom:1047.015000px;}
.y2e{bottom:1051.155000px;}
.y4{bottom:1062.495000px;}
.y2d{bottom:1078.155000px;}
.y3{bottom:1082.295000px;}
.y90{bottom:1086.435000px;}
.y2{bottom:1108.755150px;}
.y2c{bottom:1109.115000px;}
.y45{bottom:1117.395150px;}
.y1{bottom:1139.895150px;}
.y2b{bottom:1140.255000px;}
.hc{height:16.920000px;}
.h8{height:29.676080px;}
.h6{height:36.938736px;}
.h4{height:45.822528px;}
.h2{height:47.487305px;}
.h1{height:48.986217px;}
.h7{height:52.552617px;}
.ha{height:58.648345px;}
.h9{height:63.316226px;}
.h3{height:63.316406px;}
.h5{height:70.664062px;}
.hb{height:70.664662px;}
.h0{height:1263.000000px;}
.w1{width:193.965000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.755000px;}
.x7{left:132.615000px;}
.x19{left:137.475000px;}
.x25{left:171.135000px;}
.x2{left:177.615000px;}
.x26{left:183.375000px;}
.x8{left:212.175000px;}
.x13{left:239.895000px;}
.x14{left:246.015000px;}
.xb{left:304.155000px;}
.xc{left:310.275000px;}
.x23{left:321.255000px;}
.x21{left:326.475000px;}
.x24{left:333.495000px;}
.x22{left:338.715000px;}
.x1f{left:348.795000px;}
.x20{left:361.035000px;}
.xd{left:367.515000px;}
.xe{left:373.635000px;}
.x1d{left:378.855000px;}
.x1e{left:391.095000px;}
.x9{left:482.175000px;}
.xa{left:488.295000px;}
.x29{left:494.415000px;}
.x2a{left:506.655000px;}
.x11{left:514.755000px;}
.x12{left:520.875000px;}
.x15{left:525.915000px;}
.x16{left:532.035000px;}
.x2b{left:540.495000px;}
.x1a{left:544.635000px;}
.x2c{left:552.735000px;}
.x1b{left:556.875000px;}
.xf{left:633.735000px;}
.x10{left:639.855000px;}
.x27{left:651.375000px;}
.x5{left:654.975000px;}
.x6{left:661.095000px;}
.x28{left:663.615000px;}
.x17{left:689.175000px;}
.x2d{left:698.535000px;}
.x18{left:701.415000px;}
.x1c{left:716.715000px;}
.x3{left:728.595000px;}
.x4{left:734.715000px;}
@media print{
.v1{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.318705pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.001280pt;}
.ls5{letter-spacing:0.053117pt;}
.ls6{letter-spacing:0.159352pt;}
.ls9{letter-spacing:0.159360pt;}
.lsa{letter-spacing:0.212480pt;}
.ls8{letter-spacing:0.318720pt;}
.ls3{letter-spacing:275.856000pt;}
.ws20{word-spacing:-12.960655pt;}
.ws1f{word-spacing:-6.719360pt;}
.ws12{word-spacing:-0.371840pt;}
.ws26{word-spacing:-0.265600pt;}
.ws1c{word-spacing:-0.212480pt;}
.ws1{word-spacing:-0.064000pt;}
.wsb{word-spacing:-0.053120pt;}
.wsc{word-spacing:0.000000pt;}
.wsd{word-spacing:0.064000pt;}
.ws13{word-spacing:0.106235pt;}
.ws15{word-spacing:0.311063pt;}
.ws14{word-spacing:0.478057pt;}
.ws16{word-spacing:0.478080pt;}
.ws2{word-spacing:10.624000pt;}
.ws1e{word-spacing:11.264000pt;}
.ws10{word-spacing:11.904000pt;}
.wsf{word-spacing:12.544000pt;}
.ws1b{word-spacing:13.184000pt;}
.ws17{word-spacing:13.824000pt;}
.wsa{word-spacing:14.464000pt;}
.ws3{word-spacing:15.104000pt;}
.ws19{word-spacing:15.744000pt;}
.ws6{word-spacing:15.936000pt;}
.ws18{word-spacing:16.384000pt;}
.ws5{word-spacing:16.576000pt;}
.ws9{word-spacing:17.024000pt;}
.ws1d{word-spacing:18.304000pt;}
.ws1a{word-spacing:18.944000pt;}
.wse{word-spacing:20.224000pt;}
.ws21{word-spacing:22.144000pt;}
.ws7{word-spacing:24.064000pt;}
.ws4{word-spacing:26.624000pt;}
.ws22{word-spacing:30.464000pt;}
.ws8{word-spacing:33.024000pt;}
.ws11{word-spacing:41.984000pt;}
.ws0{word-spacing:43.904000pt;}
.ws24{word-spacing:46.464000pt;}
.ws23{word-spacing:47.104000pt;}
.ws25{word-spacing:94.464000pt;}
._9{margin-left:-0.960000pt;}
._4{width:0.896000pt;}
._7{width:2.368000pt;}
._6{width:3.648000pt;}
._12{width:4.574144pt;}
._2{width:5.568000pt;}
._1{width:6.848000pt;}
._0{width:8.128000pt;}
._c{width:9.408000pt;}
._f{width:10.688000pt;}
._3{width:11.968000pt;}
._5{width:13.888000pt;}
._11{width:15.168000pt;}
._b{width:16.448000pt;}
._d{width:18.368000pt;}
._10{width:20.288000pt;}
._e{width:21.568000pt;}
._8{width:25.408000pt;}
._a{width:32.000000pt;}
.fs5{font-size:26.877440pt;}
.fs3{font-size:34.562560pt;}
.fs2{font-size:42.874880pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.117440pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:3.200000pt;}
.y95{bottom:94.520000pt;}
.y2a{bottom:97.720000pt;}
.y8f{bottom:97.720485pt;}
.y94{bottom:97.720704pt;}
.y29{bottom:103.800000pt;}
.y28{bottom:113.080133pt;}
.y93{bottom:113.080352pt;}
.y27{bottom:119.160000pt;}
.y79{bottom:128.440000pt;}
.y64{bottom:128.599732pt;}
.y26{bottom:128.760000pt;}
.y78{bottom:134.520000pt;}
.y44{bottom:135.320133pt;}
.y77{bottom:143.800133pt;}
.y92{bottom:144.120000pt;}
.y43{bottom:144.280000pt;}
.y84{bottom:144.600133pt;}
.y76{bottom:149.880000pt;}
.y42{bottom:150.360133pt;}
.y63{bottom:151.000000pt;}
.y75{bottom:159.160000pt;}
.y41{bottom:159.960000pt;}
.y62{bottom:159.960087pt;}
.y74{bottom:165.240000pt;}
.y25{bottom:171.800000pt;}
.y8e{bottom:174.840000pt;}
.y73{bottom:174.840133pt;}
.y61{bottom:175.320133pt;}
.y83{bottom:175.480000pt;}
.y60{bottom:181.400000pt;}
.y5f{bottom:191.000133pt;}
.y24{bottom:199.320000pt;}
.y82{bottom:199.320133pt;}
.y81{bottom:206.680133pt;}
.y5e{bottom:213.240133pt;}
.y23{bottom:227.000000pt;}
.y5b{bottom:240.760000pt;}
.y5d{bottom:240.760133pt;}
.y5c{bottom:248.120133pt;}
.y22{bottom:254.520000pt;}
.y5a{bottom:268.280000pt;}
.y21{bottom:271.960000pt;}
.y40{bottom:282.200000pt;}
.y20{bottom:295.960000pt;}
.y1e{bottom:295.960133pt;}
.y1f{bottom:303.320000pt;}
.y3f{bottom:309.720000pt;}
.y59{bottom:323.480000pt;}
.y1d{bottom:323.480133pt;}
.y3e{bottom:337.400000pt;}
.y72{bottom:351.160000pt;}
.y58{bottom:351.160040pt;}
.y1c{bottom:351.160133pt;}
.y8d{bottom:358.520000pt;}
.y3d{bottom:364.920000pt;}
.y57{bottom:368.600000pt;}
.y8c{bottom:378.680000pt;}
.y1b{bottom:378.680133pt;}
.y3c{bottom:392.600000pt;}
.y71{bottom:392.600133pt;}
.y56{bottom:399.960000pt;}
.y8b{bottom:406.360000pt;}
.y1a{bottom:406.360133pt;}
.y3b{bottom:420.120000pt;}
.y70{bottom:420.120133pt;}
.y8a{bottom:433.880000pt;}
.y19{bottom:433.880133pt;}
.y3a{bottom:447.800000pt;}
.y6f{bottom:447.800133pt;}
.y89{bottom:461.560000pt;}
.y18{bottom:461.560133pt;}
.y39{bottom:465.240133pt;}
.y55{bottom:475.320000pt;}
.y6e{bottom:475.320133pt;}
.y88{bottom:479.000000pt;}
.y15{bottom:489.080000pt;}
.y17{bottom:489.080133pt;}
.y16{bottom:496.440000pt;}
.y54{bottom:503.000000pt;}
.y6d{bottom:503.000133pt;}
.y87{bottom:510.360133pt;}
.y14{bottom:516.760000pt;}
.y37{bottom:516.760133pt;}
.y38{bottom:524.120133pt;}
.y53{bottom:530.520000pt;}
.y6c{bottom:530.520133pt;}
.y13{bottom:544.280000pt;}
.y35{bottom:544.280133pt;}
.y80{bottom:547.960000pt;}
.y36{bottom:551.640000pt;}
.y52{bottom:558.200000pt;}
.y6b{bottom:558.200133pt;}
.y6a{bottom:565.560000pt;}
.y12{bottom:571.960000pt;}
.y34{bottom:571.960133pt;}
.y7f{bottom:579.320133pt;}
.y51{bottom:585.720000pt;}
.y11{bottom:599.480000pt;}
.y33{bottom:599.480133pt;}
.y50{bottom:613.400000pt;}
.y10{bottom:617.080133pt;}
.y91{bottom:626.840000pt;}
.y7e{bottom:627.160000pt;}
.y32{bottom:627.160133pt;}
.yf{bottom:640.920000pt;}
.y31{bottom:644.600000pt;}
.y7d{bottom:654.680000pt;}
.ye{bottom:668.600000pt;}
.y30{bottom:675.960000pt;}
.y7c{bottom:682.360000pt;}
.yd{bottom:696.120000pt;}
.y7b{bottom:709.880000pt;}
.y4f{bottom:713.560000pt;}
.yc{bottom:723.640000pt;}
.y68{bottom:723.640133pt;}
.y69{bottom:731.000000pt;}
.y4d{bottom:737.560000pt;}
.y4e{bottom:744.920000pt;}
.yb{bottom:751.320000pt;}
.y67{bottom:751.320133pt;}
.y4c{bottom:765.080000pt;}
.y66{bottom:768.760000pt;}
.ya{bottom:778.840000pt;}
.y4b{bottom:792.760000pt;}
.y65{bottom:800.120000pt;}
.y9{bottom:806.520000pt;}
.y4a{bottom:820.280000pt;}
.y8{bottom:834.040000pt;}
.y49{bottom:847.960000pt;}
.y86{bottom:851.640000pt;}
.y7a{bottom:855.320133pt;}
.y7{bottom:861.720000pt;}
.y48{bottom:875.480000pt;}
.y85{bottom:882.840000pt;}
.y6{bottom:889.240000pt;}
.y47{bottom:903.160000pt;}
.y2f{bottom:916.919920pt;}
.y5{bottom:916.920000pt;}
.y46{bottom:930.680000pt;}
.y2e{bottom:934.360000pt;}
.y4{bottom:944.440000pt;}
.y2d{bottom:958.360000pt;}
.y3{bottom:962.040000pt;}
.y90{bottom:965.720000pt;}
.y2{bottom:985.560133pt;}
.y2c{bottom:985.880000pt;}
.y45{bottom:993.240133pt;}
.y1{bottom:1013.240133pt;}
.y2b{bottom:1013.560000pt;}
.hc{height:15.040000pt;}
.h8{height:26.378737pt;}
.h6{height:32.834432pt;}
.h4{height:40.731136pt;}
.h2{height:42.210938pt;}
.h1{height:43.543304pt;}
.h7{height:46.713438pt;}
.ha{height:52.131863pt;}
.h9{height:56.281090pt;}
.h3{height:56.281250pt;}
.h5{height:62.812500pt;}
.hb{height:62.813033pt;}
.h0{height:1122.666667pt;}
.w1{width:172.413333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.560000pt;}
.x7{left:117.880000pt;}
.x19{left:122.200000pt;}
.x25{left:152.120000pt;}
.x2{left:157.880000pt;}
.x26{left:163.000000pt;}
.x8{left:188.600000pt;}
.x13{left:213.240000pt;}
.x14{left:218.680000pt;}
.xb{left:270.360000pt;}
.xc{left:275.800000pt;}
.x23{left:285.560000pt;}
.x21{left:290.200000pt;}
.x24{left:296.440000pt;}
.x22{left:301.080000pt;}
.x1f{left:310.040000pt;}
.x20{left:320.920000pt;}
.xd{left:326.680000pt;}
.xe{left:332.120000pt;}
.x1d{left:336.760000pt;}
.x1e{left:347.640000pt;}
.x9{left:428.600000pt;}
.xa{left:434.040000pt;}
.x29{left:439.480000pt;}
.x2a{left:450.360000pt;}
.x11{left:457.560000pt;}
.x12{left:463.000000pt;}
.x15{left:467.480000pt;}
.x16{left:472.920000pt;}
.x2b{left:480.440000pt;}
.x1a{left:484.120000pt;}
.x2c{left:491.320000pt;}
.x1b{left:495.000000pt;}
.xf{left:563.320000pt;}
.x10{left:568.760000pt;}
.x27{left:579.000000pt;}
.x5{left:582.200000pt;}
.x6{left:587.640000pt;}
.x28{left:589.880000pt;}
.x17{left:612.600000pt;}
.x2d{left:620.920000pt;}
.x18{left:623.480000pt;}
.x1c{left:637.080000pt;}
.x3{left:647.640000pt;}
.x4{left:653.080000pt;}
}

