
    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_0f7d0182258206822883b16c.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_3803a6f5a2dafb7c93759d01.woff')format("woff");}.ff2{font-family:ff2;line-height:1.110352;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_b211d7b16e072516b7b57779.woff')format("woff");}.ff4{font-family:ff4;line-height:1.116699;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_08df154c93eb73eb4394f298.woff')format("woff");}.ff5{font-family:ff5;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;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.179280px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.179280px;}
.lsb{letter-spacing:0.198720px;}
.ls1{letter-spacing:0.358560px;}
.ls9{letter-spacing:1.613520px;}
.lse{letter-spacing:7.200000px;}
.ls2{letter-spacing:10.080000px;}
.lsd{letter-spacing:23.040000px;}
.ls5{letter-spacing:194.400000px;}
.lsa{letter-spacing:198.000000px;}
.ls7{letter-spacing:198.000600px;}
.lsc{letter-spacing:78954579.000000px;}
.ls8{letter-spacing:79593804.000000px;}
.ls4{letter-spacing:100275075.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;}
}
.ws15{word-spacing:-100275075.000000px;}
.ws1b{word-spacing:-79593804.000000px;}
.ws29{word-spacing:-78954579.000000px;}
.ws26{word-spacing:-198.072000px;}
.ws2d{word-spacing:-23.112000px;}
.wsb{word-spacing:-10.152000px;}
.ws2c{word-spacing:-7.272000px;}
.ws18{word-spacing:-1.673280px;}
.ws9{word-spacing:-0.418320px;}
.wsc{word-spacing:-0.239040px;}
.ws0{word-spacing:-0.072000px;}
.wsf{word-spacing:-0.066240px;}
.ws13{word-spacing:-0.059760px;}
.wsa{word-spacing:0.000000px;}
.ws14{word-spacing:0.119520px;}
.ws19{word-spacing:10.218960px;}
.ws28{word-spacing:11.459520px;}
.ws7{word-spacing:12.168000px;}
.ws5{word-spacing:12.888000px;}
.ws10{word-spacing:12.916800px;}
.ws8{word-spacing:13.608000px;}
.ws1a{word-spacing:13.804560px;}
.ws3{word-spacing:14.328000px;}
.ws27{word-spacing:15.036480px;}
.ws6{word-spacing:15.048000px;}
.ws11{word-spacing:15.768000px;}
.ws17{word-spacing:16.488000px;}
.ws16{word-spacing:17.208000px;}
.ws21{word-spacing:17.928000px;}
.ws22{word-spacing:18.648000px;}
.ws1d{word-spacing:19.368000px;}
.ws1{word-spacing:20.088000px;}
.ws24{word-spacing:20.808000px;}
.ws1c{word-spacing:22.968000px;}
.ws25{word-spacing:23.688000px;}
.ws2{word-spacing:25.128000px;}
.wse{word-spacing:25.833600px;}
.ws2e{word-spacing:27.288000px;}
.ws12{word-spacing:30.168000px;}
.ws2b{word-spacing:32.328000px;}
.ws2a{word-spacing:33.048000px;}
.ws23{word-spacing:51.048000px;}
.wsd{word-spacing:192.162240px;}
.ws4{word-spacing:194.328000px;}
.ws20{word-spacing:195.341760px;}
.ws1f{word-spacing:195.739200px;}
.ws1e{word-spacing:199.382400px;}
._17{margin-left:-23.328000px;}
._e{margin-left:-9.792000px;}
._16{margin-left:-7.200000px;}
._13{margin-left:-3.632839px;}
._b{margin-left:-1.591200px;}
._0{width:1.440000px;}
._3{width:2.880000px;}
._5{width:4.320000px;}
._2{width:5.760000px;}
._1{width:7.200000px;}
._c{width:8.338320px;}
._6{width:9.360000px;}
._7{width:10.800000px;}
._a{width:12.240000px;}
._9{width:14.400000px;}
._4{width:15.840000px;}
._11{width:17.280000px;}
._15{width:18.439200px;}
._18{width:19.440000px;}
._8{width:21.600000px;}
._14{width:24.480000px;}
._10{width:27.574560px;}
._12{width:31.680000px;}
._d{width:194.400000px;}
._f{width:199.448640px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.882880px;}
.fs5{font-size:41.765760px;}
.fs1{font-size:48.234240px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y78{bottom:127.934662px;}
.y31{bottom:127.935000px;}
.y24{bottom:127.935546px;}
.y30{bottom:134.775000px;}
.y77{bottom:145.214714px;}
.y23{bottom:145.215150px;}
.y2f{bottom:145.575000px;}
.ybc{bottom:145.575150px;}
.y22{bottom:152.055000px;}
.y76{bottom:162.494766px;}
.y21{bottom:162.855000px;}
.y9f{bottom:163.215150px;}
.y9e{bottom:170.055000px;}
.ybf{bottom:177.435000px;}
.y2e{bottom:177.795000px;}
.ybb{bottom:177.795150px;}
.y75{bottom:179.774818px;}
.y54{bottom:180.495000px;}
.y53{bottom:187.335000px;}
.y74{bottom:197.054870px;}
.y52{bottom:198.135000px;}
.yad{bottom:198.135150px;}
.y9d{bottom:198.495098px;}
.y2d{bottom:208.755000px;}
.yba{bottom:208.755150px;}
.y73{bottom:214.334923px;}
.y95{bottom:215.595000px;}
.y9c{bottom:215.775150px;}
.y9b{bottom:222.615000px;}
.y72{bottom:231.434948px;}
.y51{bottom:236.295000px;}
.y20{bottom:239.895000px;}
.yb9{bottom:239.895150px;}
.y94{bottom:246.735000px;}
.y71{bottom:248.715000px;}
.y9a{bottom:251.055150px;}
.yac{bottom:253.575150px;}
.y70{bottom:255.555150px;}
.y99{bottom:257.895150px;}
.y50{bottom:267.435000px;}
.y98{bottom:268.695000px;}
.y1f{bottom:270.855000px;}
.yb8{bottom:270.855150px;}
.y93{bottom:277.695000px;}
.y6f{bottom:283.995000px;}
.yab{bottom:284.715150px;}
.y6e{bottom:290.835000px;}
.y4f{bottom:298.395000px;}
.y6d{bottom:301.635150px;}
.y1e{bottom:301.815000px;}
.yb7{bottom:301.815150px;}
.yaa{bottom:305.055150px;}
.ya8{bottom:305.055632px;}
.y92{bottom:308.835000px;}
.ya9{bottom:312.615000px;}
.ya7{bottom:323.955560px;}
.y91{bottom:329.175150px;}
.y8f{bottom:329.175482px;}
.y4e{bottom:329.535000px;}
.y1d{bottom:332.955000px;}
.yb6{bottom:332.955150px;}
.y90{bottom:336.735150px;}
.ya6{bottom:343.035496px;}
.y8e{bottom:348.255418px;}
.y4d{bottom:360.495000px;}
.ya5{bottom:361.935424px;}
.y1c{bottom:363.915000px;}
.yb5{bottom:363.915150px;}
.y8d{bottom:367.155346px;}
.y6c{bottom:369.135150px;}
.ya4{bottom:381.015359px;}
.y8c{bottom:386.055274px;}
.y4c{bottom:391.635000px;}
.y1b{bottom:395.055000px;}
.yb4{bottom:395.055150px;}
.ya3{bottom:399.915287px;}
.y6b{bottom:400.275150px;}
.y8b{bottom:405.135209px;}
.ya2{bottom:418.995222px;}
.y4b{bottom:422.595000px;}
.y8a{bottom:424.035137px;}
.y1a{bottom:426.015000px;}
.yb3{bottom:426.015150px;}
.y6a{bottom:431.235150px;}
.ya1{bottom:437.895000px;}
.y89{bottom:443.115072px;}
.y4a{bottom:453.735000px;}
.y19{bottom:457.155000px;}
.yb2{bottom:457.155150px;}
.ya0{bottom:457.335000px;}
.y88{bottom:462.015150px;}
.y69{bottom:462.375150px;}
.y49{bottom:484.695000px;}
.y18{bottom:488.115000px;}
.yb1{bottom:488.115150px;}
.y87{bottom:491.715150px;}
.y68{bottom:493.335150px;}
.ybd{bottom:496.395150px;}
.y48{bottom:515.835000px;}
.y17{bottom:519.255000px;}
.yb0{bottom:519.255150px;}
.y86{bottom:522.675150px;}
.y67{bottom:524.475150px;}
.y47{bottom:546.795000px;}
.y16{bottom:550.215000px;}
.yaf{bottom:550.215150px;}
.y85{bottom:553.815150px;}
.y66{bottom:555.435150px;}
.yae{bottom:558.495000px;}
.y46{bottom:577.935000px;}
.y15{bottom:581.355000px;}
.y84{bottom:584.775150px;}
.y65{bottom:586.575150px;}
.y45{bottom:608.895000px;}
.y14{bottom:612.315000px;}
.y83{bottom:615.735150px;}
.y64{bottom:617.535150px;}
.y44{bottom:640.035000px;}
.y13{bottom:643.455000px;}
.y82{bottom:646.875150px;}
.y63{bottom:648.675150px;}
.ybe{bottom:651.735150px;}
.y81{bottom:667.215482px;}
.y43{bottom:670.995000px;}
.y12{bottom:674.415000px;}
.y62{bottom:679.635150px;}
.y97{bottom:682.695000px;}
.y80{bottom:686.295418px;}
.y42{bottom:702.135000px;}
.y7f{bottom:705.195346px;}
.y11{bottom:705.555000px;}
.y61{bottom:710.775150px;}
.y7e{bottom:724.275281px;}
.y41{bottom:733.095000px;}
.y10{bottom:736.515000px;}
.y60{bottom:741.735150px;}
.y7d{bottom:743.175209px;}
.y96{bottom:744.795000px;}
.y7c{bottom:762.075137px;}
.y40{bottom:764.235000px;}
.yf{bottom:767.655000px;}
.y5f{bottom:772.875150px;}
.y7b{bottom:781.155072px;}
.y3f{bottom:795.195000px;}
.ye{bottom:798.615000px;}
.y7a{bottom:800.055000px;}
.y5e{bottom:803.835150px;}
.y3e{bottom:815.535000px;}
.y3c{bottom:815.535619px;}
.y3d{bottom:823.095000px;}
.yd{bottom:829.755000px;}
.y3b{bottom:834.615554px;}
.y5d{bottom:834.795150px;}
.y3a{bottom:853.515482px;}
.yc{bottom:860.715000px;}
.y5c{bottom:865.935150px;}
.y39{bottom:872.595418px;}
.y38{bottom:891.495346px;}
.yb{bottom:891.855000px;}
.y5b{bottom:896.895150px;}
.y79{bottom:900.135000px;}
.y37{bottom:910.575281px;}
.y5a{bottom:917.415000px;}
.y58{bottom:917.415287px;}
.ya{bottom:922.815000px;}
.y8{bottom:922.815150px;}
.y59{bottom:924.975000px;}
.y36{bottom:929.475209px;}
.y9{bottom:931.095000px;}
.y57{bottom:936.315215px;}
.y35{bottom:948.375137px;}
.y2c{bottom:953.955000px;}
.y7{bottom:953.955150px;}
.y56{bottom:955.395000px;}
.y34{bottom:967.455072px;}
.y2b{bottom:984.915000px;}
.y6{bottom:984.915150px;}
.y33{bottom:986.355000px;}
.y2a{bottom:1016.055000px;}
.y5{bottom:1016.055150px;}
.y28{bottom:1047.015000px;}
.y4{bottom:1047.015150px;}
.y29{bottom:1055.295000px;}
.y3{bottom:1077.795150px;}
.y27{bottom:1078.155000px;}
.y55{bottom:1086.435000px;}
.y2{bottom:1108.755150px;}
.y26{bottom:1109.115000px;}
.y32{bottom:1117.395150px;}
.y1{bottom:1139.895150px;}
.y25{bottom:1140.255000px;}
.h6{height:36.938736px;}
.hb{height:39.677472px;}
.h3{height:45.822528px;}
.h1{height:48.986217px;}
.h8{height:53.194570px;}
.h7{height:53.778164px;}
.h9{height:58.962656px;}
.ha{height:59.609531px;}
.h2{height:64.089844px;}
.h4{height:64.792969px;}
.h5{height:70.664062px;}
.hc{height:70.664663px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.755000px;}
.x4{left:132.615000px;}
.xb{left:135.135000px;}
.x12{left:137.655000px;}
.x26{left:150.075000px;}
.x3{left:174.195000px;}
.x1d{left:176.715000px;}
.x2{left:180.855000px;}
.x1e{left:188.955000px;}
.x1f{left:231.615000px;}
.x20{left:242.055000px;}
.x21{left:255.195000px;}
.x22{left:267.435000px;}
.x23{left:269.595000px;}
.x1b{left:273.555000px;}
.x9{left:276.795000px;}
.xa{left:282.015000px;}
.x1c{left:285.795000px;}
.x7{left:298.215000px;}
.x8{left:304.335000px;}
.xe{left:350.415000px;}
.xf{left:355.635000px;}
.x13{left:376.695000px;}
.x14{left:381.915000px;}
.x24{left:446.895000px;}
.x25{left:459.135000px;}
.x19{left:503.415000px;}
.x1a{left:515.655000px;}
.x15{left:526.275000px;}
.x16{left:532.395000px;}
.x5{left:634.455000px;}
.x6{left:640.575000px;}
.x10{left:659.475000px;}
.x11{left:665.595000px;}
.x17{left:733.815000px;}
.x18{left:746.055000px;}
.xc{left:786.915000px;}
.xd{left:793.034850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.159360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.159360pt;}
.lsb{letter-spacing:0.176640pt;}
.ls1{letter-spacing:0.318720pt;}
.ls9{letter-spacing:1.434240pt;}
.lse{letter-spacing:6.400000pt;}
.ls2{letter-spacing:8.960000pt;}
.lsd{letter-spacing:20.480000pt;}
.ls5{letter-spacing:172.800000pt;}
.lsa{letter-spacing:176.000000pt;}
.ls7{letter-spacing:176.000533pt;}
.lsc{letter-spacing:70181848.000000pt;}
.ls8{letter-spacing:70750048.000000pt;}
.ls4{letter-spacing:89133400.000000pt;}
.ws15{word-spacing:-89133400.000000pt;}
.ws1b{word-spacing:-70750048.000000pt;}
.ws29{word-spacing:-70181848.000000pt;}
.ws26{word-spacing:-176.064000pt;}
.ws2d{word-spacing:-20.544000pt;}
.wsb{word-spacing:-9.024000pt;}
.ws2c{word-spacing:-6.464000pt;}
.ws18{word-spacing:-1.487360pt;}
.ws9{word-spacing:-0.371840pt;}
.wsc{word-spacing:-0.212480pt;}
.ws0{word-spacing:-0.064000pt;}
.wsf{word-spacing:-0.058880pt;}
.ws13{word-spacing:-0.053120pt;}
.wsa{word-spacing:0.000000pt;}
.ws14{word-spacing:0.106240pt;}
.ws19{word-spacing:9.083520pt;}
.ws28{word-spacing:10.186240pt;}
.ws7{word-spacing:10.816000pt;}
.ws5{word-spacing:11.456000pt;}
.ws10{word-spacing:11.481600pt;}
.ws8{word-spacing:12.096000pt;}
.ws1a{word-spacing:12.270720pt;}
.ws3{word-spacing:12.736000pt;}
.ws27{word-spacing:13.365760pt;}
.ws6{word-spacing:13.376000pt;}
.ws11{word-spacing:14.016000pt;}
.ws17{word-spacing:14.656000pt;}
.ws16{word-spacing:15.296000pt;}
.ws21{word-spacing:15.936000pt;}
.ws22{word-spacing:16.576000pt;}
.ws1d{word-spacing:17.216000pt;}
.ws1{word-spacing:17.856000pt;}
.ws24{word-spacing:18.496000pt;}
.ws1c{word-spacing:20.416000pt;}
.ws25{word-spacing:21.056000pt;}
.ws2{word-spacing:22.336000pt;}
.wse{word-spacing:22.963200pt;}
.ws2e{word-spacing:24.256000pt;}
.ws12{word-spacing:26.816000pt;}
.ws2b{word-spacing:28.736000pt;}
.ws2a{word-spacing:29.376000pt;}
.ws23{word-spacing:45.376000pt;}
.wsd{word-spacing:170.810880pt;}
.ws4{word-spacing:172.736000pt;}
.ws20{word-spacing:173.637120pt;}
.ws1f{word-spacing:173.990400pt;}
.ws1e{word-spacing:177.228800pt;}
._17{margin-left:-20.736000pt;}
._e{margin-left:-8.704000pt;}
._16{margin-left:-6.400000pt;}
._13{margin-left:-3.229190pt;}
._b{margin-left:-1.414400pt;}
._0{width:1.280000pt;}
._3{width:2.560000pt;}
._5{width:3.840000pt;}
._2{width:5.120000pt;}
._1{width:6.400000pt;}
._c{width:7.411840pt;}
._6{width:8.320000pt;}
._7{width:9.600000pt;}
._a{width:10.880000pt;}
._9{width:12.800000pt;}
._4{width:14.080000pt;}
._11{width:15.360000pt;}
._15{width:16.390400pt;}
._18{width:17.280000pt;}
._8{width:19.200000pt;}
._14{width:21.760000pt;}
._10{width:24.510720pt;}
._12{width:28.160000pt;}
._d{width:172.800000pt;}
._f{width:177.287680pt;}
.fs2{font-size:34.562560pt;}
.fs5{font-size:37.125120pt;}
.fs1{font-size:42.874880pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:113.719699pt;}
.y31{bottom:113.720000pt;}
.y24{bottom:113.720485pt;}
.y30{bottom:119.800000pt;}
.y77{bottom:129.079746pt;}
.y23{bottom:129.080133pt;}
.y2f{bottom:129.400000pt;}
.ybc{bottom:129.400133pt;}
.y22{bottom:135.160000pt;}
.y76{bottom:144.439792pt;}
.y21{bottom:144.760000pt;}
.y9f{bottom:145.080133pt;}
.y9e{bottom:151.160000pt;}
.ybf{bottom:157.720000pt;}
.y2e{bottom:158.040000pt;}
.ybb{bottom:158.040133pt;}
.y75{bottom:159.799838pt;}
.y54{bottom:160.440000pt;}
.y53{bottom:166.520000pt;}
.y74{bottom:175.159885pt;}
.y52{bottom:176.120000pt;}
.yad{bottom:176.120133pt;}
.y9d{bottom:176.440087pt;}
.y2d{bottom:185.560000pt;}
.yba{bottom:185.560133pt;}
.y73{bottom:190.519931pt;}
.y95{bottom:191.640000pt;}
.y9c{bottom:191.800133pt;}
.y9b{bottom:197.880000pt;}
.y72{bottom:205.719954pt;}
.y51{bottom:210.040000pt;}
.y20{bottom:213.240000pt;}
.yb9{bottom:213.240133pt;}
.y94{bottom:219.320000pt;}
.y71{bottom:221.080000pt;}
.y9a{bottom:223.160133pt;}
.yac{bottom:225.400133pt;}
.y70{bottom:227.160133pt;}
.y99{bottom:229.240133pt;}
.y50{bottom:237.720000pt;}
.y98{bottom:238.840000pt;}
.y1f{bottom:240.760000pt;}
.yb8{bottom:240.760133pt;}
.y93{bottom:246.840000pt;}
.y6f{bottom:252.440000pt;}
.yab{bottom:253.080133pt;}
.y6e{bottom:258.520000pt;}
.y4f{bottom:265.240000pt;}
.y6d{bottom:268.120133pt;}
.y1e{bottom:268.280000pt;}
.yb7{bottom:268.280133pt;}
.yaa{bottom:271.160133pt;}
.ya8{bottom:271.160562pt;}
.y92{bottom:274.520000pt;}
.ya9{bottom:277.880000pt;}
.ya7{bottom:287.960498pt;}
.y91{bottom:292.600133pt;}
.y8f{bottom:292.600429pt;}
.y4e{bottom:292.920000pt;}
.y1d{bottom:295.960000pt;}
.yb6{bottom:295.960133pt;}
.y90{bottom:299.320133pt;}
.ya6{bottom:304.920441pt;}
.y8e{bottom:309.560371pt;}
.y4d{bottom:320.440000pt;}
.ya5{bottom:321.720377pt;}
.y1c{bottom:323.480000pt;}
.yb5{bottom:323.480133pt;}
.y8d{bottom:326.360307pt;}
.y6c{bottom:328.120133pt;}
.ya4{bottom:338.680319pt;}
.y8c{bottom:343.160243pt;}
.y4c{bottom:348.120000pt;}
.y1b{bottom:351.160000pt;}
.yb4{bottom:351.160133pt;}
.ya3{bottom:355.480255pt;}
.y6b{bottom:355.800133pt;}
.y8b{bottom:360.120186pt;}
.ya2{bottom:372.440197pt;}
.y4b{bottom:375.640000pt;}
.y8a{bottom:376.920122pt;}
.y1a{bottom:378.680000pt;}
.yb3{bottom:378.680133pt;}
.y6a{bottom:383.320133pt;}
.ya1{bottom:389.240000pt;}
.y89{bottom:393.880064pt;}
.y4a{bottom:403.320000pt;}
.y19{bottom:406.360000pt;}
.yb2{bottom:406.360133pt;}
.ya0{bottom:406.520000pt;}
.y88{bottom:410.680133pt;}
.y69{bottom:411.000133pt;}
.y49{bottom:430.840000pt;}
.y18{bottom:433.880000pt;}
.yb1{bottom:433.880133pt;}
.y87{bottom:437.080133pt;}
.y68{bottom:438.520133pt;}
.ybd{bottom:441.240133pt;}
.y48{bottom:458.520000pt;}
.y17{bottom:461.560000pt;}
.yb0{bottom:461.560133pt;}
.y86{bottom:464.600133pt;}
.y67{bottom:466.200133pt;}
.y47{bottom:486.040000pt;}
.y16{bottom:489.080000pt;}
.yaf{bottom:489.080133pt;}
.y85{bottom:492.280133pt;}
.y66{bottom:493.720133pt;}
.yae{bottom:496.440000pt;}
.y46{bottom:513.720000pt;}
.y15{bottom:516.760000pt;}
.y84{bottom:519.800133pt;}
.y65{bottom:521.400133pt;}
.y45{bottom:541.240000pt;}
.y14{bottom:544.280000pt;}
.y83{bottom:547.320133pt;}
.y64{bottom:548.920133pt;}
.y44{bottom:568.920000pt;}
.y13{bottom:571.960000pt;}
.y82{bottom:575.000133pt;}
.y63{bottom:576.600133pt;}
.ybe{bottom:579.320133pt;}
.y81{bottom:593.080429pt;}
.y43{bottom:596.440000pt;}
.y12{bottom:599.480000pt;}
.y62{bottom:604.120133pt;}
.y97{bottom:606.840000pt;}
.y80{bottom:610.040371pt;}
.y42{bottom:624.120000pt;}
.y7f{bottom:626.840307pt;}
.y11{bottom:627.160000pt;}
.y61{bottom:631.800133pt;}
.y7e{bottom:643.800250pt;}
.y41{bottom:651.640000pt;}
.y10{bottom:654.680000pt;}
.y60{bottom:659.320133pt;}
.y7d{bottom:660.600186pt;}
.y96{bottom:662.040000pt;}
.y7c{bottom:677.400122pt;}
.y40{bottom:679.320000pt;}
.yf{bottom:682.360000pt;}
.y5f{bottom:687.000133pt;}
.y7b{bottom:694.360064pt;}
.y3f{bottom:706.840000pt;}
.ye{bottom:709.880000pt;}
.y7a{bottom:711.160000pt;}
.y5e{bottom:714.520133pt;}
.y3e{bottom:724.920000pt;}
.y3c{bottom:724.920550pt;}
.y3d{bottom:731.640000pt;}
.yd{bottom:737.560000pt;}
.y3b{bottom:741.880493pt;}
.y5d{bottom:742.040133pt;}
.y3a{bottom:758.680429pt;}
.yc{bottom:765.080000pt;}
.y5c{bottom:769.720133pt;}
.y39{bottom:775.640371pt;}
.y38{bottom:792.440307pt;}
.yb{bottom:792.760000pt;}
.y5b{bottom:797.240133pt;}
.y79{bottom:800.120000pt;}
.y37{bottom:809.400250pt;}
.y5a{bottom:815.480000pt;}
.y58{bottom:815.480255pt;}
.ya{bottom:820.280000pt;}
.y8{bottom:820.280133pt;}
.y59{bottom:822.200000pt;}
.y36{bottom:826.200186pt;}
.y9{bottom:827.640000pt;}
.y57{bottom:832.280191pt;}
.y35{bottom:843.000122pt;}
.y2c{bottom:847.960000pt;}
.y7{bottom:847.960133pt;}
.y56{bottom:849.240000pt;}
.y34{bottom:859.960064pt;}
.y2b{bottom:875.480000pt;}
.y6{bottom:875.480133pt;}
.y33{bottom:876.760000pt;}
.y2a{bottom:903.160000pt;}
.y5{bottom:903.160133pt;}
.y28{bottom:930.680000pt;}
.y4{bottom:930.680133pt;}
.y29{bottom:938.040000pt;}
.y3{bottom:958.040133pt;}
.y27{bottom:958.360000pt;}
.y55{bottom:965.720000pt;}
.y2{bottom:985.560133pt;}
.y26{bottom:985.880000pt;}
.y32{bottom:993.240133pt;}
.y1{bottom:1013.240133pt;}
.y25{bottom:1013.560000pt;}
.h6{height:32.834432pt;}
.hb{height:35.268864pt;}
.h3{height:40.731136pt;}
.h1{height:43.543304pt;}
.h8{height:47.284063pt;}
.h7{height:47.802813pt;}
.h9{height:52.411250pt;}
.ha{height:52.986250pt;}
.h2{height:56.968750pt;}
.h4{height:57.593750pt;}
.h5{height:62.812500pt;}
.hc{height:62.813033pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.560000pt;}
.x4{left:117.880000pt;}
.xb{left:120.120000pt;}
.x12{left:122.360000pt;}
.x26{left:133.400000pt;}
.x3{left:154.840000pt;}
.x1d{left:157.080000pt;}
.x2{left:160.760000pt;}
.x1e{left:167.960000pt;}
.x1f{left:205.880000pt;}
.x20{left:215.160000pt;}
.x21{left:226.840000pt;}
.x22{left:237.720000pt;}
.x23{left:239.640000pt;}
.x1b{left:243.160000pt;}
.x9{left:246.040000pt;}
.xa{left:250.680000pt;}
.x1c{left:254.040000pt;}
.x7{left:265.080000pt;}
.x8{left:270.520000pt;}
.xe{left:311.480000pt;}
.xf{left:316.120000pt;}
.x13{left:334.840000pt;}
.x14{left:339.480000pt;}
.x24{left:397.240000pt;}
.x25{left:408.120000pt;}
.x19{left:447.480000pt;}
.x1a{left:458.360000pt;}
.x15{left:467.800000pt;}
.x16{left:473.240000pt;}
.x5{left:563.960000pt;}
.x6{left:569.400000pt;}
.x10{left:586.200000pt;}
.x11{left:591.640000pt;}
.x17{left:652.280000pt;}
.x18{left:663.160000pt;}
.xc{left:699.480000pt;}
.xd{left:704.919867pt;}
}

