
    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_c9f0dc19ccfc85dfe44e8ead.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fd3df951f72cfd1eb8d3aab5.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_263c6a03180c57ac4f862ec4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.239258;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_251eb2750fbd7d897fc951e6.woff')format("woff");}.ff4{font-family:ff4;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;}
.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);}
.v4{vertical-align:-21.595200px;}
.v2{vertical-align:-17.995200px;}
.v6{vertical-align:-13.500000px;}
.v5{vertical-align:-11.640000px;}
.vd{vertical-align:-1.142400px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:1.142400px;}
.vc{vertical-align:7.382400px;}
.v3{vertical-align:18.000000px;}
.v8{vertical-align:21.600000px;}
.v1{vertical-align:28.840800px;}
.v7{vertical-align:38.701800px;}
.v9{vertical-align:45.780000px;}
.vb{vertical-align:73.920000px;}
.va{vertical-align:87.420000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.007200px;}
.ls3{letter-spacing:0.014400px;}
.lsd{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.024000px;}
.ls12{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.045600px;}
.ls11{letter-spacing:0.048000px;}
.ls6{letter-spacing:0.050400px;}
.ls5{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.360000px;}
.ls9{letter-spacing:2.724000px;}
.ls7{letter-spacing:2.726400px;}
.ls8{letter-spacing:3.186000px;}
.ls10{letter-spacing:9.042000px;}
.lse{letter-spacing:19.526400px;}
.ls16{letter-spacing:99.360000px;}
.ls18{letter-spacing:116.928000px;}
.lsa{letter-spacing:125.978400px;}
.lsf{letter-spacing:201.830400px;}
.ls14{letter-spacing:210.120000px;}
.ls17{letter-spacing:254.520000px;}
.ls15{letter-spacing:326.040000px;}
.lsb{letter-spacing:471.168000px;}
.ls13{letter-spacing:1200.897600px;}
.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;}
}
.ws1c{word-spacing:-489.168000px;}
.ws0{word-spacing:-18.000000px;}
.ws19{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.400000px;}
.ws40{word-spacing:-13.500000px;}
.ws42{word-spacing:-12.000000px;}
.ws41{word-spacing:-10.800000px;}
.wsb{word-spacing:-4.392000px;}
.ws22{word-spacing:-4.104000px;}
.ws2b{word-spacing:-3.888000px;}
.ws30{word-spacing:-3.744000px;}
.ws2c{word-spacing:-3.168000px;}
.wsd{word-spacing:-2.952000px;}
.ws17{word-spacing:-2.664000px;}
.ws24{word-spacing:-2.232000px;}
.ws36{word-spacing:-2.160000px;}
.ws35{word-spacing:-2.088000px;}
.ws29{word-spacing:-1.584000px;}
.ws23{word-spacing:-0.720000px;}
.ws3b{word-spacing:-0.648000px;}
.ws12{word-spacing:-0.360000px;}
.ws38{word-spacing:-0.288000px;}
.ws34{word-spacing:-0.216000px;}
.ws11{word-spacing:-0.144000px;}
.ws2{word-spacing:0.000000px;}
.ws28{word-spacing:0.216000px;}
.wsa{word-spacing:0.360000px;}
.ws33{word-spacing:0.432000px;}
.ws5{word-spacing:0.504000px;}
.ws2d{word-spacing:0.576000px;}
.ws20{word-spacing:0.648000px;}
.ws27{word-spacing:0.720000px;}
.ws14{word-spacing:0.936000px;}
.ws4{word-spacing:1.008000px;}
.ws15{word-spacing:1.296000px;}
.ws31{word-spacing:1.512000px;}
.ws7{word-spacing:1.656000px;}
.ws39{word-spacing:2.016000px;}
.ws6{word-spacing:2.088000px;}
.ws3c{word-spacing:2.232000px;}
.wsc{word-spacing:2.520000px;}
.ws3a{word-spacing:2.592000px;}
.ws18{word-spacing:2.736000px;}
.wse{word-spacing:2.880000px;}
.ws2e{word-spacing:3.096000px;}
.ws13{word-spacing:3.168000px;}
.ws2a{word-spacing:3.240000px;}
.ws25{word-spacing:3.744000px;}
.ws1e{word-spacing:3.816000px;}
.ws3f{word-spacing:4.248000px;}
.ws21{word-spacing:4.320000px;}
.ws43{word-spacing:4.536000px;}
.ws3{word-spacing:5.616000px;}
.ws2f{word-spacing:5.832000px;}
.ws1f{word-spacing:6.408000px;}
.ws8{word-spacing:6.480000px;}
.ws9{word-spacing:6.624000px;}
.ws32{word-spacing:7.056000px;}
.ws26{word-spacing:7.200000px;}
.ws3e{word-spacing:7.560000px;}
.ws16{word-spacing:7.992000px;}
.ws10{word-spacing:10.080000px;}
.ws3d{word-spacing:10.944000px;}
.ws37{word-spacing:12.960000px;}
.wsf{word-spacing:19.296000px;}
.ws1b{word-spacing:28.140000px;}
.ws1a{word-spacing:56.784000px;}
.ws1d{word-spacing:1074.434400px;}
._b{margin-left:-1319.760000px;}
._8{margin-left:-417.096000px;}
._7{margin-left:-328.737600px;}
._9{margin-left:-145.562400px;}
._6{margin-left:-66.002400px;}
._4{margin-left:-8.510400px;}
._3{margin-left:-6.696000px;}
._1{margin-left:-4.752000px;}
._2{margin-left:-2.880000px;}
._0{margin-left:-1.080000px;}
._5{width:14.796000px;}
._e{width:21.024000px;}
._c{width:44.136000px;}
._a{width:86.112000px;}
._d{width:364.368000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.400000px;}
.fs4{font-size:43.200000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:57.600000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:128.504400px;}
.y4e{bottom:129.583800px;}
.y24{bottom:149.503800px;}
.y4d{bottom:150.584400px;}
.y23{bottom:170.504400px;}
.y4c{bottom:171.584400px;}
.y22{bottom:191.505000px;}
.y4b{bottom:192.583800px;}
.y4a{bottom:213.584400px;}
.y9a{bottom:222.105000px;}
.y21{bottom:222.994800px;}
.y49{bottom:234.584400px;}
.y20{bottom:243.995400px;}
.y48{bottom:255.584400px;}
.y1f{bottom:264.996000px;}
.y47{bottom:276.582600px;}
.y9d{bottom:285.254400px;}
.y1e{bottom:285.996600px;}
.y46{bottom:297.583200px;}
.y9c{bottom:306.255000px;}
.y1d{bottom:306.997200px;}
.y45{bottom:318.583800px;}
.y1c{bottom:327.997800px;}
.y44{bottom:339.584400px;}
.y8f{bottom:348.990000px;}
.y1b{bottom:359.497800px;}
.y90{bottom:364.065600px;}
.y43{bottom:371.084400px;}
.y8e{bottom:379.650000px;}
.y86{bottom:397.035000px;}
.y1a{bottom:401.497200px;}
.y89{bottom:408.165000px;}
.y42{bottom:413.083800px;}
.y19{bottom:422.497800px;}
.y87{bottom:422.580000px;}
.y41{bottom:434.084400px;}
.y18{bottom:443.498400px;}
.y40{bottom:455.083800px;}
.y92{bottom:457.995000px;}
.y17{bottom:464.499000px;}
.y6a{bottom:470.783400px;}
.y8b{bottom:475.590000px;}
.y3f{bottom:476.084400px;}
.y69{bottom:491.784000px;}
.y16{bottom:495.999000px;}
.y3e{bottom:497.083200px;}
.y15{bottom:516.999600px;}
.y3d{bottom:518.083800px;}
.y91{bottom:523.125000px;}
.y68{bottom:523.298400px;}
.y14{bottom:538.000200px;}
.y3c{bottom:539.084400px;}
.y67{bottom:544.299000px;}
.y8a{bottom:544.425000px;}
.y8c{bottom:555.930000px;}
.y13{bottom:559.000800px;}
.y66{bottom:565.299600px;}
.y3b{bottom:570.584400px;}
.y96{bottom:573.974400px;}
.y99{bottom:574.244400px;}
.y94{bottom:574.260000px;}
.y12{bottom:580.001400px;}
.y88{bottom:580.545000px;}
.y3a{bottom:591.585000px;}
.y97{bottom:595.890000px;}
.y95{bottom:596.160000px;}
.y8d{bottom:596.775000px;}
.y65{bottom:596.799600px;}
.y11{bottom:601.002000px;}
.y64{bottom:617.800200px;}
.y98{bottom:619.724400px;}
.y93{bottom:620.010000px;}
.y10{bottom:622.002600px;}
.y51{bottom:633.225000px;}
.y4f{bottom:638.623800px;}
.y50{bottom:638.625000px;}
.y63{bottom:638.800800px;}
.yf{bottom:643.003200px;}
.ye{bottom:664.003800px;}
.y62{bottom:670.300800px;}
.y39{bottom:679.605000px;}
.yd{bottom:685.004400px;}
.y61{bottom:691.301400px;}
.y38{bottom:700.605600px;}
.y60{bottom:712.302000px;}
.yc{bottom:716.504400px;}
.y37{bottom:732.105600px;}
.y5f{bottom:743.802000px;}
.yb{bottom:758.503800px;}
.y5e{bottom:764.802600px;}
.y36{bottom:774.103800px;}
.ya{bottom:779.504400px;}
.y35{bottom:795.104400px;}
.y5d{bottom:796.288200px;}
.y9{bottom:800.505000px;}
.y85{bottom:805.410000px;}
.y34{bottom:816.103800px;}
.y5c{bottom:817.288800px;}
.y8{bottom:821.505600px;}
.y33{bottom:837.104400px;}
.y5b{bottom:838.289400px;}
.y7{bottom:842.506200px;}
.y9b{bottom:847.365000px;}
.y32{bottom:858.100800px;}
.y5a{bottom:869.789400px;}
.y6{bottom:874.006200px;}
.y6b{bottom:876.225000px;}
.y31{bottom:879.101400px;}
.y59{bottom:890.790000px;}
.y30{bottom:900.102000px;}
.y58{bottom:911.790600px;}
.y5{bottom:916.005600px;}
.y2f{bottom:921.102600px;}
.y7b{bottom:922.515000px;}
.y2e{bottom:942.103200px;}
.y57{bottom:943.290600px;}
.y82{bottom:950.969400px;}
.y7d{bottom:954.255000px;}
.y6f{bottom:958.995000px;}
.y78{bottom:962.715000px;}
.y6e{bottom:964.904850px;}
.y2d{bottom:973.603200px;}
.y83{bottom:978.015000px;}
.y7c{bottom:978.375000px;}
.y76{bottom:980.430000px;}
.y72{bottom:989.145000px;}
.y71{bottom:990.030000px;}
.y2c{bottom:994.603800px;}
.y4{bottom:997.290000px;}
.y84{bottom:998.595000px;}
.y70{bottom:1003.110000px;}
.y75{bottom:1006.770000px;}
.y7a{bottom:1009.455000px;}
.y6d{bottom:1012.545000px;}
.y2b{bottom:1015.604400px;}
.y7f{bottom:1024.320000px;}
.y77{bottom:1025.400000px;}
.y56{bottom:1026.102600px;}
.y73{bottom:1027.920000px;}
.y3{bottom:1028.790000px;}
.y74{bottom:1035.915000px;}
.y2a{bottom:1036.603800px;}
.y7e{bottom:1039.170000px;}
.y6c{bottom:1042.725000px;}
.y55{bottom:1047.103200px;}
.y81{bottom:1048.695000px;}
.y29{bottom:1057.604400px;}
.y79{bottom:1058.790000px;}
.y2{bottom:1060.290000px;}
.y80{bottom:1060.800000px;}
.y54{bottom:1068.103800px;}
.y28{bottom:1078.603800px;}
.y53{bottom:1089.104400px;}
.y27{bottom:1099.604400px;}
.y52{bottom:1110.105000px;}
.y26{bottom:1120.604400px;}
.y1{bottom:1141.605000px;}
.h14{height:47.085938px;}
.h13{height:47.109375px;}
.h17{height:48.251775px;}
.hb{height:52.998047px;}
.hf{height:52.998647px;}
.h15{height:54.421875px;}
.h16{height:54.491775px;}
.he{height:58.886719px;}
.h12{height:63.998437px;}
.hc{height:66.691406px;}
.h2{height:70.664062px;}
.h6{height:70.666463px;}
.h4{height:70.668863px;}
.h9{height:70.671263px;}
.hd{height:70.673663px;}
.h1{height:72.562500px;}
.h7{height:85.276050px;}
.h8{height:85.288050px;}
.h5{height:85.333650px;}
.ha{height:85.340850px;}
.h3{height:85.372050px;}
.h10{height:91.699847px;}
.h11{height:140.418047px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xb{left:169.350600px;}
.x6{left:171.061200px;}
.x21{left:188.355000px;}
.x23{left:190.395000px;}
.x5{left:192.315600px;}
.x36{left:207.600000px;}
.x19{left:210.825000px;}
.xc{left:211.875600px;}
.x1{left:228.465000px;}
.x1f{left:252.345000px;}
.x4{left:256.230000px;}
.x34{left:273.090000px;}
.x1c{left:276.510000px;}
.x3{left:291.974400px;}
.x15{left:301.035000px;}
.x35{left:303.210000px;}
.x2{left:309.479400px;}
.x2b{left:310.710600px;}
.x1e{left:311.985000px;}
.x29{left:316.875000px;}
.x16{left:328.815000px;}
.x2d{left:341.400000px;}
.x7{left:346.979400px;}
.x2a{left:352.425000px;}
.x28{left:358.245000px;}
.x17{left:365.595000px;}
.x1d{left:367.815000px;}
.x2e{left:376.634400px;}
.x18{left:402.135000px;}
.x2f{left:407.474400px;}
.x27{left:413.010000px;}
.x2c{left:427.470000px;}
.x20{left:432.435000px;}
.x33{left:437.430000px;}
.x30{left:442.710000px;}
.x8{left:450.195000px;}
.x1b{left:458.040000px;}
.x1a{left:466.380000px;}
.x22{left:494.579400px;}
.x31{left:512.340000px;}
.xa{left:522.465000px;}
.x32{left:532.664400px;}
.x9{left:538.140000px;}
.x25{left:575.910000px;}
.x10{left:606.105000px;}
.x11{left:615.585000px;}
.x26{left:617.070000px;}
.x24{left:622.470000px;}
.x12{left:631.455000px;}
.xe{left:637.680000px;}
.xd{left:647.745000px;}
.x14{left:655.425000px;}
.xf{left:658.575000px;}
.x13{left:702.795000px;}
@media print{
.v4{vertical-align:-19.195733pt;}
.v2{vertical-align:-15.995733pt;}
.v6{vertical-align:-12.000000pt;}
.v5{vertical-align:-10.346667pt;}
.vd{vertical-align:-1.015467pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:1.015467pt;}
.vc{vertical-align:6.562133pt;}
.v3{vertical-align:16.000000pt;}
.v8{vertical-align:19.200000pt;}
.v1{vertical-align:25.636267pt;}
.v7{vertical-align:34.401600pt;}
.v9{vertical-align:40.693333pt;}
.vb{vertical-align:65.706667pt;}
.va{vertical-align:77.706667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.006400pt;}
.ls3{letter-spacing:0.012800pt;}
.lsd{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.021333pt;}
.ls12{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.040533pt;}
.ls11{letter-spacing:0.042667pt;}
.ls6{letter-spacing:0.044800pt;}
.ls5{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls9{letter-spacing:2.421333pt;}
.ls7{letter-spacing:2.423467pt;}
.ls8{letter-spacing:2.832000pt;}
.ls10{letter-spacing:8.037333pt;}
.lse{letter-spacing:17.356800pt;}
.ls16{letter-spacing:88.320000pt;}
.ls18{letter-spacing:103.936000pt;}
.lsa{letter-spacing:111.980800pt;}
.lsf{letter-spacing:179.404800pt;}
.ls14{letter-spacing:186.773333pt;}
.ls17{letter-spacing:226.240000pt;}
.ls15{letter-spacing:289.813333pt;}
.lsb{letter-spacing:418.816000pt;}
.ls13{letter-spacing:1067.464533pt;}
.ws1c{word-spacing:-434.816000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws19{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.800000pt;}
.ws40{word-spacing:-12.000000pt;}
.ws42{word-spacing:-10.666667pt;}
.ws41{word-spacing:-9.600000pt;}
.wsb{word-spacing:-3.904000pt;}
.ws22{word-spacing:-3.648000pt;}
.ws2b{word-spacing:-3.456000pt;}
.ws30{word-spacing:-3.328000pt;}
.ws2c{word-spacing:-2.816000pt;}
.wsd{word-spacing:-2.624000pt;}
.ws17{word-spacing:-2.368000pt;}
.ws24{word-spacing:-1.984000pt;}
.ws36{word-spacing:-1.920000pt;}
.ws35{word-spacing:-1.856000pt;}
.ws29{word-spacing:-1.408000pt;}
.ws23{word-spacing:-0.640000pt;}
.ws3b{word-spacing:-0.576000pt;}
.ws12{word-spacing:-0.320000pt;}
.ws38{word-spacing:-0.256000pt;}
.ws34{word-spacing:-0.192000pt;}
.ws11{word-spacing:-0.128000pt;}
.ws2{word-spacing:0.000000pt;}
.ws28{word-spacing:0.192000pt;}
.wsa{word-spacing:0.320000pt;}
.ws33{word-spacing:0.384000pt;}
.ws5{word-spacing:0.448000pt;}
.ws2d{word-spacing:0.512000pt;}
.ws20{word-spacing:0.576000pt;}
.ws27{word-spacing:0.640000pt;}
.ws14{word-spacing:0.832000pt;}
.ws4{word-spacing:0.896000pt;}
.ws15{word-spacing:1.152000pt;}
.ws31{word-spacing:1.344000pt;}
.ws7{word-spacing:1.472000pt;}
.ws39{word-spacing:1.792000pt;}
.ws6{word-spacing:1.856000pt;}
.ws3c{word-spacing:1.984000pt;}
.wsc{word-spacing:2.240000pt;}
.ws3a{word-spacing:2.304000pt;}
.ws18{word-spacing:2.432000pt;}
.wse{word-spacing:2.560000pt;}
.ws2e{word-spacing:2.752000pt;}
.ws13{word-spacing:2.816000pt;}
.ws2a{word-spacing:2.880000pt;}
.ws25{word-spacing:3.328000pt;}
.ws1e{word-spacing:3.392000pt;}
.ws3f{word-spacing:3.776000pt;}
.ws21{word-spacing:3.840000pt;}
.ws43{word-spacing:4.032000pt;}
.ws3{word-spacing:4.992000pt;}
.ws2f{word-spacing:5.184000pt;}
.ws1f{word-spacing:5.696000pt;}
.ws8{word-spacing:5.760000pt;}
.ws9{word-spacing:5.888000pt;}
.ws32{word-spacing:6.272000pt;}
.ws26{word-spacing:6.400000pt;}
.ws3e{word-spacing:6.720000pt;}
.ws16{word-spacing:7.104000pt;}
.ws10{word-spacing:8.960000pt;}
.ws3d{word-spacing:9.728000pt;}
.ws37{word-spacing:11.520000pt;}
.wsf{word-spacing:17.152000pt;}
.ws1b{word-spacing:25.013333pt;}
.ws1a{word-spacing:50.474667pt;}
.ws1d{word-spacing:955.052800pt;}
._b{margin-left:-1173.120000pt;}
._8{margin-left:-370.752000pt;}
._7{margin-left:-292.211200pt;}
._9{margin-left:-129.388800pt;}
._6{margin-left:-58.668800pt;}
._4{margin-left:-7.564800pt;}
._3{margin-left:-5.952000pt;}
._1{margin-left:-4.224000pt;}
._2{margin-left:-2.560000pt;}
._0{margin-left:-0.960000pt;}
._5{width:13.152000pt;}
._e{width:18.688000pt;}
._c{width:39.232000pt;}
._a{width:76.544000pt;}
._d{width:323.882667pt;}
.fs7{font-size:34.133333pt;}
.fs4{font-size:38.400000pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:51.200000pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:114.226133pt;}
.y4e{bottom:115.185600pt;}
.y24{bottom:132.892267pt;}
.y4d{bottom:133.852800pt;}
.y23{bottom:151.559467pt;}
.y4c{bottom:152.519467pt;}
.y22{bottom:170.226667pt;}
.y4b{bottom:171.185600pt;}
.y4a{bottom:189.852800pt;}
.y9a{bottom:197.426667pt;}
.y21{bottom:198.217600pt;}
.y49{bottom:208.519467pt;}
.y20{bottom:216.884800pt;}
.y48{bottom:227.186133pt;}
.y1f{bottom:235.552000pt;}
.y47{bottom:245.851200pt;}
.y9d{bottom:253.559467pt;}
.y1e{bottom:254.219200pt;}
.y46{bottom:264.518400pt;}
.y9c{bottom:272.226667pt;}
.y1d{bottom:272.886400pt;}
.y45{bottom:283.185600pt;}
.y1c{bottom:291.553600pt;}
.y44{bottom:301.852800pt;}
.y8f{bottom:310.213333pt;}
.y1b{bottom:319.553600pt;}
.y90{bottom:323.613867pt;}
.y43{bottom:329.852800pt;}
.y8e{bottom:337.466667pt;}
.y86{bottom:352.920000pt;}
.y1a{bottom:356.886400pt;}
.y89{bottom:362.813333pt;}
.y42{bottom:367.185600pt;}
.y19{bottom:375.553600pt;}
.y87{bottom:375.626667pt;}
.y41{bottom:385.852800pt;}
.y18{bottom:394.220800pt;}
.y40{bottom:404.518933pt;}
.y92{bottom:407.106667pt;}
.y17{bottom:412.888000pt;}
.y6a{bottom:418.474133pt;}
.y8b{bottom:422.746667pt;}
.y3f{bottom:423.186133pt;}
.y69{bottom:437.141333pt;}
.y16{bottom:440.888000pt;}
.y3e{bottom:441.851733pt;}
.y15{bottom:459.555200pt;}
.y3d{bottom:460.518933pt;}
.y91{bottom:465.000000pt;}
.y68{bottom:465.154133pt;}
.y14{bottom:478.222400pt;}
.y3c{bottom:479.186133pt;}
.y67{bottom:483.821333pt;}
.y8a{bottom:483.933333pt;}
.y8c{bottom:494.160000pt;}
.y13{bottom:496.889600pt;}
.y66{bottom:502.488533pt;}
.y3b{bottom:507.186133pt;}
.y96{bottom:510.199467pt;}
.y99{bottom:510.439467pt;}
.y94{bottom:510.453333pt;}
.y12{bottom:515.556800pt;}
.y88{bottom:516.040000pt;}
.y3a{bottom:525.853333pt;}
.y97{bottom:529.680000pt;}
.y95{bottom:529.920000pt;}
.y8d{bottom:530.466667pt;}
.y65{bottom:530.488533pt;}
.y11{bottom:534.224000pt;}
.y64{bottom:549.155733pt;}
.y98{bottom:550.866133pt;}
.y93{bottom:551.120000pt;}
.y10{bottom:552.891200pt;}
.y51{bottom:562.866667pt;}
.y4f{bottom:567.665600pt;}
.y50{bottom:567.666667pt;}
.y63{bottom:567.822933pt;}
.yf{bottom:571.558400pt;}
.ye{bottom:590.225600pt;}
.y62{bottom:595.822933pt;}
.y39{bottom:604.093333pt;}
.yd{bottom:608.892800pt;}
.y61{bottom:614.490133pt;}
.y38{bottom:622.760533pt;}
.y60{bottom:633.157333pt;}
.yc{bottom:636.892800pt;}
.y37{bottom:650.760533pt;}
.y5f{bottom:661.157333pt;}
.yb{bottom:674.225600pt;}
.y5e{bottom:679.824533pt;}
.y36{bottom:688.092267pt;}
.ya{bottom:692.892800pt;}
.y35{bottom:706.759467pt;}
.y5d{bottom:707.811733pt;}
.y9{bottom:711.560000pt;}
.y85{bottom:715.920000pt;}
.y34{bottom:725.425600pt;}
.y5c{bottom:726.478933pt;}
.y8{bottom:730.227200pt;}
.y33{bottom:744.092800pt;}
.y5b{bottom:745.146133pt;}
.y7{bottom:748.894400pt;}
.y9b{bottom:753.213333pt;}
.y32{bottom:762.756267pt;}
.y5a{bottom:773.146133pt;}
.y6{bottom:776.894400pt;}
.y6b{bottom:778.866667pt;}
.y31{bottom:781.423467pt;}
.y59{bottom:791.813333pt;}
.y30{bottom:800.090667pt;}
.y58{bottom:810.480533pt;}
.y5{bottom:814.227200pt;}
.y2f{bottom:818.757867pt;}
.y7b{bottom:820.013333pt;}
.y2e{bottom:837.425067pt;}
.y57{bottom:838.480533pt;}
.y82{bottom:845.306133pt;}
.y7d{bottom:848.226667pt;}
.y6f{bottom:852.440000pt;}
.y78{bottom:855.746667pt;}
.y6e{bottom:857.693200pt;}
.y2d{bottom:865.425067pt;}
.y83{bottom:869.346667pt;}
.y7c{bottom:869.666667pt;}
.y76{bottom:871.493333pt;}
.y72{bottom:879.240000pt;}
.y71{bottom:880.026667pt;}
.y2c{bottom:884.092267pt;}
.y4{bottom:886.480000pt;}
.y84{bottom:887.640000pt;}
.y70{bottom:891.653333pt;}
.y75{bottom:894.906667pt;}
.y7a{bottom:897.293333pt;}
.y6d{bottom:900.040000pt;}
.y2b{bottom:902.759467pt;}
.y7f{bottom:910.506667pt;}
.y77{bottom:911.466667pt;}
.y56{bottom:912.091200pt;}
.y73{bottom:913.706667pt;}
.y3{bottom:914.480000pt;}
.y74{bottom:920.813333pt;}
.y2a{bottom:921.425600pt;}
.y7e{bottom:923.706667pt;}
.y6c{bottom:926.866667pt;}
.y55{bottom:930.758400pt;}
.y81{bottom:932.173333pt;}
.y29{bottom:940.092800pt;}
.y79{bottom:941.146667pt;}
.y2{bottom:942.480000pt;}
.y80{bottom:942.933333pt;}
.y54{bottom:949.425600pt;}
.y28{bottom:958.758933pt;}
.y53{bottom:968.092800pt;}
.y27{bottom:977.426133pt;}
.y52{bottom:986.760000pt;}
.y26{bottom:996.092800pt;}
.y1{bottom:1014.760000pt;}
.h14{height:41.854167pt;}
.h13{height:41.875000pt;}
.h17{height:42.890467pt;}
.hb{height:47.109375pt;}
.hf{height:47.109908pt;}
.h15{height:48.375000pt;}
.h16{height:48.437133pt;}
.he{height:52.343750pt;}
.h12{height:56.887500pt;}
.hc{height:59.281250pt;}
.h2{height:62.812500pt;}
.h6{height:62.814633pt;}
.h4{height:62.816767pt;}
.h9{height:62.818900pt;}
.hd{height:62.821033pt;}
.h1{height:64.500000pt;}
.h7{height:75.800933pt;}
.h8{height:75.811600pt;}
.h5{height:75.852133pt;}
.ha{height:75.858533pt;}
.h3{height:75.886267pt;}
.h10{height:81.510975pt;}
.h11{height:124.816042pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xb{left:150.533867pt;}
.x6{left:152.054400pt;}
.x21{left:167.426667pt;}
.x23{left:169.240000pt;}
.x5{left:170.947200pt;}
.x36{left:184.533333pt;}
.x19{left:187.400000pt;}
.xc{left:188.333867pt;}
.x1{left:203.080000pt;}
.x1f{left:224.306667pt;}
.x4{left:227.760000pt;}
.x34{left:242.746667pt;}
.x1c{left:245.786667pt;}
.x3{left:259.532800pt;}
.x15{left:267.586667pt;}
.x35{left:269.520000pt;}
.x2{left:275.092800pt;}
.x2b{left:276.187200pt;}
.x1e{left:277.320000pt;}
.x29{left:281.666667pt;}
.x16{left:292.280000pt;}
.x2d{left:303.466667pt;}
.x7{left:308.426133pt;}
.x2a{left:313.266667pt;}
.x28{left:318.440000pt;}
.x17{left:324.973333pt;}
.x1d{left:326.946667pt;}
.x2e{left:334.786133pt;}
.x18{left:357.453333pt;}
.x2f{left:362.199467pt;}
.x27{left:367.120000pt;}
.x2c{left:379.973333pt;}
.x20{left:384.386667pt;}
.x33{left:388.826667pt;}
.x30{left:393.520000pt;}
.x8{left:400.173333pt;}
.x1b{left:407.146667pt;}
.x1a{left:414.560000pt;}
.x22{left:439.626133pt;}
.x31{left:455.413333pt;}
.xa{left:464.413333pt;}
.x32{left:473.479467pt;}
.x9{left:478.346667pt;}
.x25{left:511.920000pt;}
.x10{left:538.760000pt;}
.x11{left:547.186667pt;}
.x26{left:548.506667pt;}
.x24{left:553.306667pt;}
.x12{left:561.293333pt;}
.xe{left:566.826667pt;}
.xd{left:575.773333pt;}
.x14{left:582.600000pt;}
.xf{left:585.400000pt;}
.x13{left:624.706667pt;}
}

