
    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_bbd972a13029299d68ca491d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c23613570278c0fb5e06c253.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_816c6f3c2ddb094b9a6be7ce.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_0173b43a7332a3cf15a7ff64.woff')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255352,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.256103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256103,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-82.800000px;}
.v3{vertical-align:-33.120000px;}
.v1{vertical-align:-15.120000px;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.360000px;}
.v2{vertical-align:33.120000px;}
.ls1d{letter-spacing:-4.047186px;}
.lse{letter-spacing:-2.160000px;}
.ls1c{letter-spacing:-1.656000px;}
.ls1a{letter-spacing:-1.136850px;}
.ls1b{letter-spacing:-0.994744px;}
.ls20{letter-spacing:-0.936000px;}
.ls19{letter-spacing:-0.900000px;}
.ls6{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.269400px;}
.ls25{letter-spacing:-0.223800px;}
.ls15{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.181440px;}
.ls3{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.262200px;}
.ls24{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.460200px;}
.ls13{letter-spacing:0.480000px;}
.ls11{letter-spacing:0.504000px;}
.ls21{letter-spacing:0.648000px;}
.ls10{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.792000px;}
.ls16{letter-spacing:0.864000px;}
.ls2{letter-spacing:0.901440px;}
.ls14{letter-spacing:1.008000px;}
.lsd{letter-spacing:1.080000px;}
.ls22{letter-spacing:66.960000px;}
.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;}
}
.ws0{word-spacing:-24.840000px;}
.ws16{word-spacing:-21.021778px;}
.ws15{word-spacing:-19.884928px;}
.ws11{word-spacing:-18.864000px;}
.wsd{word-spacing:-18.720000px;}
.ws1a{word-spacing:-18.648000px;}
.wse{word-spacing:-18.504000px;}
.ws18{word-spacing:-18.429760px;}
.ws1c{word-spacing:-18.288000px;}
.wsf{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.ws12{word-spacing:-17.712000px;}
.ws19{word-spacing:-17.064000px;}
.ws1{word-spacing:-16.560000px;}
.ws17{word-spacing:-16.344000px;}
.wsb{word-spacing:-16.020000px;}
.ws7{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.833200px;}
.ws3{word-spacing:-12.060000px;}
.ws1d{word-spacing:-11.836200px;}
.ws13{word-spacing:-11.790600px;}
.ws14{word-spacing:-11.160000px;}
.ws1b{word-spacing:-10.440000px;}
.ws9{word-spacing:-9.720000px;}
.wsc{word-spacing:0.000000px;}
._d{margin-left:-177.402600px;}
._a{margin-left:-173.855628px;}
._c{margin-left:-126.699772px;}
._b{margin-left:-85.789543px;}
._e{margin-left:-2.352000px;}
._0{margin-left:-1.053600px;}
._2{width:1.272000px;}
._7{width:2.662320px;}
._f{width:3.838080px;}
._6{width:5.329440px;}
._5{width:6.773040px;}
._9{width:8.519760px;}
._4{width:9.687840px;}
._3{width:11.166480px;}
._1{width:16.320000px;}
._8{width:19.661040px;}
._10{width:23.998080px;}
._11{width:26.401920px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.087110px;}
.fs7{font-size:89.907782px;}
.fs2{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:4.476347px;}
.y6e{bottom:4.511873px;}
.y2{bottom:56.736000px;}
.y1{bottom:74.196000px;}
.y1b{bottom:111.636000px;}
.y6b{bottom:124.236000px;}
.y1a{bottom:128.916000px;}
.yaa{bottom:130.356000px;}
.y4d{bottom:134.340000px;}
.y78{bottom:135.216000px;}
.y19{bottom:135.756000px;}
.y67{bottom:138.636000px;}
.y4c{bottom:138.816000px;}
.y18{bottom:146.196000px;}
.y33{bottom:162.570000px;}
.y6a{bottom:165.630000px;}
.ya9{bottom:171.750000px;}
.y77{bottom:176.610000px;}
.y86{bottom:177.870000px;}
.y66{bottom:180.030000px;}
.y9e{bottom:184.350000px;}
.y4b{bottom:186.330000px;}
.y32{bottom:204.330000px;}
.ya8{bottom:213.150000px;}
.y76{bottom:218.010000px;}
.y65{bottom:221.430000px;}
.y9d{bottom:225.750000px;}
.y4a{bottom:227.730000px;}
.y31{bottom:245.730000px;}
.ya7{bottom:254.550000px;}
.y75{bottom:259.410000px;}
.y64{bottom:262.830000px;}
.y17{bottom:263.550000px;}
.y9c{bottom:267.150000px;}
.y49{bottom:269.175000px;}
.y30{bottom:287.175000px;}
.ya6{bottom:295.995000px;}
.y74{bottom:300.855000px;}
.y63{bottom:304.275000px;}
.y9b{bottom:308.595000px;}
.y16{bottom:308.775000px;}
.y48{bottom:310.575000px;}
.y2f{bottom:328.575000px;}
.ya5{bottom:337.395000px;}
.y73{bottom:342.255000px;}
.y15{bottom:343.335000px;}
.y62{bottom:345.675000px;}
.y9a{bottom:349.995000px;}
.y47{bottom:351.975000px;}
.yc3{bottom:356.655000px;}
.y2e{bottom:369.975000px;}
.y14{bottom:377.895000px;}
.ya4{bottom:378.795000px;}
.y61{bottom:387.075000px;}
.y72{bottom:390.495000px;}
.y99{bottom:391.395000px;}
.y46{bottom:393.375000px;}
.yb0{bottom:396.975000px;}
.yc2{bottom:398.055000px;}
.y2d{bottom:411.195000px;}
.y13{bottom:412.275000px;}
.ya3{bottom:417.675000px;}
.y60{bottom:428.475000px;}
.y98{bottom:432.795000px;}
.y45{bottom:434.775000px;}
.yaf{bottom:438.195000px;}
.yc1{bottom:439.455000px;}
.y12{bottom:446.835000px;}
.y2c{bottom:452.595000px;}
.y71{bottom:466.455000px;}
.y5f{bottom:469.875000px;}
.ya2{bottom:470.775000px;}
.y97{bottom:474.195000px;}
.y44{bottom:476.175000px;}
.yae{bottom:479.595000px;}
.yc0{bottom:480.855000px;}
.y11{bottom:481.395000px;}
.y2b{bottom:493.995000px;}
.y70{bottom:503.535000px;}
.ya1{bottom:508.935000px;}
.y5e{bottom:511.275000px;}
.y96{bottom:515.595000px;}
.y10{bottom:515.775000px;}
.y43{bottom:517.575000px;}
.yad{bottom:520.995000px;}
.ybf{bottom:522.255000px;}
.y2a{bottom:535.395000px;}
.ya0{bottom:546.735000px;}
.y85{bottom:549.975000px;}
.yf{bottom:550.335000px;}
.y5d{bottom:552.705000px;}
.y95{bottom:557.025000px;}
.y42{bottom:559.005000px;}
.yac{bottom:562.425000px;}
.ybe{bottom:563.685000px;}
.y29{bottom:576.825000px;}
.y9f{bottom:579.345000px;}
.ye{bottom:584.925000px;}
.y84{bottom:591.405000px;}
.y5c{bottom:594.105000px;}
.y94{bottom:598.425000px;}
.y41{bottom:600.405000px;}
.yab{bottom:601.305000px;}
.ybd{bottom:605.085000px;}
.y28{bottom:618.225000px;}
.yd{bottom:632.625000px;}
.y83{bottom:632.805000px;}
.y5b{bottom:635.505000px;}
.y93{bottom:639.825000px;}
.y40{bottom:641.805000px;}
.ybc{bottom:646.485000px;}
.y27{bottom:659.625000px;}
.y82{bottom:674.205000px;}
.y5a{bottom:676.905000px;}
.y92{bottom:681.225000px;}
.y3f{bottom:683.205000px;}
.ybb{bottom:687.885000px;}
.yc{bottom:691.305000px;}
.y26{bottom:701.025000px;}
.y81{bottom:715.605000px;}
.y59{bottom:718.305000px;}
.y91{bottom:722.625000px;}
.y3e{bottom:724.605000px;}
.yba{bottom:729.285000px;}
.yb{bottom:733.245000px;}
.y25{bottom:742.425000px;}
.y80{bottom:757.005000px;}
.y58{bottom:759.705000px;}
.y90{bottom:764.025000px;}
.y69{bottom:765.645000px;}
.y3d{bottom:766.005000px;}
.yb9{bottom:770.685000px;}
.ya{bottom:782.925000px;}
.y24{bottom:783.825000px;}
.y7f{bottom:798.405000px;}
.y57{bottom:801.105000px;}
.y8f{bottom:805.245000px;}
.y68{bottom:807.045000px;}
.y3c{bottom:807.405000px;}
.yb8{bottom:812.085000px;}
.y23{bottom:825.225000px;}
.y9{bottom:833.325000px;}
.y7e{bottom:839.850000px;}
.y56{bottom:842.550000px;}
.y8e{bottom:846.690000px;}
.y3b{bottom:848.850000px;}
.yb7{bottom:853.530000px;}
.y22{bottom:866.670000px;}
.y8{bottom:875.490000px;}
.y7d{bottom:881.250000px;}
.y55{bottom:883.950000px;}
.y8d{bottom:888.090000px;}
.y3a{bottom:890.250000px;}
.yb6{bottom:894.930000px;}
.y7c{bottom:922.650000px;}
.y7{bottom:925.170000px;}
.y54{bottom:925.350000px;}
.y21{bottom:926.070000px;}
.y8c{bottom:929.490000px;}
.y39{bottom:931.650000px;}
.yb5{bottom:936.330000px;}
.y7b{bottom:964.050000px;}
.y53{bottom:966.750000px;}
.y5{bottom:967.290000px;}
.y20{bottom:967.470000px;}
.y8b{bottom:970.890000px;}
.y38{bottom:973.050000px;}
.y6{bottom:975.570000px;}
.yb4{bottom:977.730000px;}
.y7a{bottom:1005.450000px;}
.y52{bottom:1008.150000px;}
.y1f{bottom:1008.870000px;}
.y8a{bottom:1012.290000px;}
.y37{bottom:1014.450000px;}
.yb3{bottom:1018.950000px;}
.y4{bottom:1036.590000px;}
.y79{bottom:1046.850000px;}
.y51{bottom:1049.550000px;}
.y1e{bottom:1050.270000px;}
.y89{bottom:1053.690000px;}
.y36{bottom:1055.850000px;}
.yb2{bottom:1060.350000px;}
.y50{bottom:1086.540000px;}
.y6f{bottom:1090.950000px;}
.y4f{bottom:1091.130000px;}
.y1d{bottom:1091.670000px;}
.y3{bottom:1095.270000px;}
.y35{bottom:1097.250000px;}
.yb1{bottom:1101.750000px;}
.y88{bottom:1101.930000px;}
.y6d{bottom:1127.940000px;}
.y6c{bottom:1132.560000px;}
.y34{bottom:1138.680000px;}
.y1c{bottom:1139.580000px;}
.y87{bottom:1139.940000px;}
.hd{height:27.000188px;}
.hb{height:38.158594px;}
.h7{height:47.344922px;}
.h3{height:58.651172px;}
.h9{height:60.226875px;}
.h2{height:65.010937px;}
.ha{height:66.757500px;}
.h8{height:70.664062px;}
.hc{height:72.562500px;}
.h10{height:74.004654px;}
.h5{height:80.464922px;}
.he{height:82.526900px;}
.hf{height:88.239571px;}
.h4{height:103.038750px;}
.h6{height:1262.877945px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:46.424353px;}
.w3{width:50.926662px;}
.w5{width:54.000192px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:16.151597px;}
.xc{left:33.150506px;}
.x2{left:108.036000px;}
.x11{left:111.276000px;}
.x7{left:112.896000px;}
.x16{left:140.076000px;}
.xb{left:206.190000px;}
.x5{left:214.410000px;}
.x3{left:220.888125px;}
.x4{left:226.830000px;}
.xd{left:252.570000px;}
.x6{left:324.075000px;}
.x12{left:337.395000px;}
.x8{left:446.490000px;}
.xe{left:483.540000px;}
.xa{left:497.445000px;}
.xf{left:537.585000px;}
.x14{left:768.570000px;}
.x10{left:772.170000px;}
.x1{left:776.850000px;}
.x13{left:785.670000px;}
.x15{left:787.470000px;}
@media print{
.v6{vertical-align:-73.600000pt;}
.v3{vertical-align:-29.440000pt;}
.v1{vertical-align:-13.440000pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.320000pt;}
.v2{vertical-align:29.440000pt;}
.ls1d{letter-spacing:-3.597499pt;}
.lse{letter-spacing:-1.920000pt;}
.ls1c{letter-spacing:-1.472000pt;}
.ls1a{letter-spacing:-1.010533pt;}
.ls1b{letter-spacing:-0.884217pt;}
.ls20{letter-spacing:-0.832000pt;}
.ls19{letter-spacing:-0.800000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.239467pt;}
.ls25{letter-spacing:-0.198933pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.161280pt;}
.ls3{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.233067pt;}
.ls24{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.409067pt;}
.ls13{letter-spacing:0.426667pt;}
.ls11{letter-spacing:0.448000pt;}
.ls21{letter-spacing:0.576000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.704000pt;}
.ls16{letter-spacing:0.768000pt;}
.ls2{letter-spacing:0.801280pt;}
.ls14{letter-spacing:0.896000pt;}
.lsd{letter-spacing:0.960000pt;}
.ls22{letter-spacing:59.520000pt;}
.ws0{word-spacing:-22.080000pt;}
.ws16{word-spacing:-18.686025pt;}
.ws15{word-spacing:-17.675491pt;}
.ws11{word-spacing:-16.768000pt;}
.wsd{word-spacing:-16.640000pt;}
.ws1a{word-spacing:-16.576000pt;}
.wse{word-spacing:-16.448000pt;}
.ws18{word-spacing:-16.382009pt;}
.ws1c{word-spacing:-16.256000pt;}
.wsf{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws12{word-spacing:-15.744000pt;}
.ws19{word-spacing:-15.168000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws17{word-spacing:-14.528000pt;}
.wsb{word-spacing:-14.240000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.185067pt;}
.ws3{word-spacing:-10.720000pt;}
.ws1d{word-spacing:-10.521067pt;}
.ws13{word-spacing:-10.480533pt;}
.ws14{word-spacing:-9.920000pt;}
.ws1b{word-spacing:-9.280000pt;}
.ws9{word-spacing:-8.640000pt;}
.wsc{word-spacing:0.000000pt;}
._d{margin-left:-157.691200pt;}
._a{margin-left:-154.538336pt;}
._c{margin-left:-112.622020pt;}
._b{margin-left:-76.257372pt;}
._e{margin-left:-2.090667pt;}
._0{margin-left:-0.936533pt;}
._2{width:1.130667pt;}
._7{width:2.366507pt;}
._f{width:3.411627pt;}
._6{width:4.737280pt;}
._5{width:6.020480pt;}
._9{width:7.573120pt;}
._4{width:8.611413pt;}
._3{width:9.925760pt;}
._1{width:14.506667pt;}
._8{width:17.476480pt;}
._10{width:21.331627pt;}
._11{width:23.468373pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.744098pt;}
.fs7{font-size:79.918029pt;}
.fs2{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:3.978975pt;}
.y6e{bottom:4.010554pt;}
.y2{bottom:50.432000pt;}
.y1{bottom:65.952000pt;}
.y1b{bottom:99.232000pt;}
.y6b{bottom:110.432000pt;}
.y1a{bottom:114.592000pt;}
.yaa{bottom:115.872000pt;}
.y4d{bottom:119.413333pt;}
.y78{bottom:120.192000pt;}
.y19{bottom:120.672000pt;}
.y67{bottom:123.232000pt;}
.y4c{bottom:123.392000pt;}
.y18{bottom:129.952000pt;}
.y33{bottom:144.506667pt;}
.y6a{bottom:147.226667pt;}
.ya9{bottom:152.666667pt;}
.y77{bottom:156.986667pt;}
.y86{bottom:158.106667pt;}
.y66{bottom:160.026667pt;}
.y9e{bottom:163.866667pt;}
.y4b{bottom:165.626667pt;}
.y32{bottom:181.626667pt;}
.ya8{bottom:189.466667pt;}
.y76{bottom:193.786667pt;}
.y65{bottom:196.826667pt;}
.y9d{bottom:200.666667pt;}
.y4a{bottom:202.426667pt;}
.y31{bottom:218.426667pt;}
.ya7{bottom:226.266667pt;}
.y75{bottom:230.586667pt;}
.y64{bottom:233.626667pt;}
.y17{bottom:234.266667pt;}
.y9c{bottom:237.466667pt;}
.y49{bottom:239.266667pt;}
.y30{bottom:255.266667pt;}
.ya6{bottom:263.106667pt;}
.y74{bottom:267.426667pt;}
.y63{bottom:270.466667pt;}
.y9b{bottom:274.306667pt;}
.y16{bottom:274.466667pt;}
.y48{bottom:276.066667pt;}
.y2f{bottom:292.066667pt;}
.ya5{bottom:299.906667pt;}
.y73{bottom:304.226667pt;}
.y15{bottom:305.186667pt;}
.y62{bottom:307.266667pt;}
.y9a{bottom:311.106667pt;}
.y47{bottom:312.866667pt;}
.yc3{bottom:317.026667pt;}
.y2e{bottom:328.866667pt;}
.y14{bottom:335.906667pt;}
.ya4{bottom:336.706667pt;}
.y61{bottom:344.066667pt;}
.y72{bottom:347.106667pt;}
.y99{bottom:347.906667pt;}
.y46{bottom:349.666667pt;}
.yb0{bottom:352.866667pt;}
.yc2{bottom:353.826667pt;}
.y2d{bottom:365.506667pt;}
.y13{bottom:366.466667pt;}
.ya3{bottom:371.266667pt;}
.y60{bottom:380.866667pt;}
.y98{bottom:384.706667pt;}
.y45{bottom:386.466667pt;}
.yaf{bottom:389.506667pt;}
.yc1{bottom:390.626667pt;}
.y12{bottom:397.186667pt;}
.y2c{bottom:402.306667pt;}
.y71{bottom:414.626667pt;}
.y5f{bottom:417.666667pt;}
.ya2{bottom:418.466667pt;}
.y97{bottom:421.506667pt;}
.y44{bottom:423.266667pt;}
.yae{bottom:426.306667pt;}
.yc0{bottom:427.426667pt;}
.y11{bottom:427.906667pt;}
.y2b{bottom:439.106667pt;}
.y70{bottom:447.586667pt;}
.ya1{bottom:452.386667pt;}
.y5e{bottom:454.466667pt;}
.y96{bottom:458.306667pt;}
.y10{bottom:458.466667pt;}
.y43{bottom:460.066667pt;}
.yad{bottom:463.106667pt;}
.ybf{bottom:464.226667pt;}
.y2a{bottom:475.906667pt;}
.ya0{bottom:485.986667pt;}
.y85{bottom:488.866667pt;}
.yf{bottom:489.186667pt;}
.y5d{bottom:491.293333pt;}
.y95{bottom:495.133333pt;}
.y42{bottom:496.893333pt;}
.yac{bottom:499.933333pt;}
.ybe{bottom:501.053333pt;}
.y29{bottom:512.733333pt;}
.y9f{bottom:514.973333pt;}
.ye{bottom:519.933333pt;}
.y84{bottom:525.693333pt;}
.y5c{bottom:528.093333pt;}
.y94{bottom:531.933333pt;}
.y41{bottom:533.693333pt;}
.yab{bottom:534.493333pt;}
.ybd{bottom:537.853333pt;}
.y28{bottom:549.533333pt;}
.yd{bottom:562.333333pt;}
.y83{bottom:562.493333pt;}
.y5b{bottom:564.893333pt;}
.y93{bottom:568.733333pt;}
.y40{bottom:570.493333pt;}
.ybc{bottom:574.653333pt;}
.y27{bottom:586.333333pt;}
.y82{bottom:599.293333pt;}
.y5a{bottom:601.693333pt;}
.y92{bottom:605.533333pt;}
.y3f{bottom:607.293333pt;}
.ybb{bottom:611.453333pt;}
.yc{bottom:614.493333pt;}
.y26{bottom:623.133333pt;}
.y81{bottom:636.093333pt;}
.y59{bottom:638.493333pt;}
.y91{bottom:642.333333pt;}
.y3e{bottom:644.093333pt;}
.yba{bottom:648.253333pt;}
.yb{bottom:651.773333pt;}
.y25{bottom:659.933333pt;}
.y80{bottom:672.893333pt;}
.y58{bottom:675.293333pt;}
.y90{bottom:679.133333pt;}
.y69{bottom:680.573333pt;}
.y3d{bottom:680.893333pt;}
.yb9{bottom:685.053333pt;}
.ya{bottom:695.933333pt;}
.y24{bottom:696.733333pt;}
.y7f{bottom:709.693333pt;}
.y57{bottom:712.093333pt;}
.y8f{bottom:715.773333pt;}
.y68{bottom:717.373333pt;}
.y3c{bottom:717.693333pt;}
.yb8{bottom:721.853333pt;}
.y23{bottom:733.533333pt;}
.y9{bottom:740.733333pt;}
.y7e{bottom:746.533333pt;}
.y56{bottom:748.933333pt;}
.y8e{bottom:752.613333pt;}
.y3b{bottom:754.533333pt;}
.yb7{bottom:758.693333pt;}
.y22{bottom:770.373333pt;}
.y8{bottom:778.213333pt;}
.y7d{bottom:783.333333pt;}
.y55{bottom:785.733333pt;}
.y8d{bottom:789.413333pt;}
.y3a{bottom:791.333333pt;}
.yb6{bottom:795.493333pt;}
.y7c{bottom:820.133333pt;}
.y7{bottom:822.373333pt;}
.y54{bottom:822.533333pt;}
.y21{bottom:823.173333pt;}
.y8c{bottom:826.213333pt;}
.y39{bottom:828.133333pt;}
.yb5{bottom:832.293333pt;}
.y7b{bottom:856.933333pt;}
.y53{bottom:859.333333pt;}
.y5{bottom:859.813333pt;}
.y20{bottom:859.973333pt;}
.y8b{bottom:863.013333pt;}
.y38{bottom:864.933333pt;}
.y6{bottom:867.173333pt;}
.yb4{bottom:869.093333pt;}
.y7a{bottom:893.733333pt;}
.y52{bottom:896.133333pt;}
.y1f{bottom:896.773333pt;}
.y8a{bottom:899.813333pt;}
.y37{bottom:901.733333pt;}
.yb3{bottom:905.733333pt;}
.y4{bottom:921.413333pt;}
.y79{bottom:930.533333pt;}
.y51{bottom:932.933333pt;}
.y1e{bottom:933.573333pt;}
.y89{bottom:936.613333pt;}
.y36{bottom:938.533333pt;}
.yb2{bottom:942.533333pt;}
.y50{bottom:965.813333pt;}
.y6f{bottom:969.733333pt;}
.y4f{bottom:969.893333pt;}
.y1d{bottom:970.373333pt;}
.y3{bottom:973.573333pt;}
.y35{bottom:975.333333pt;}
.yb1{bottom:979.333333pt;}
.y88{bottom:979.493333pt;}
.y6d{bottom:1002.613333pt;}
.y6c{bottom:1006.720000pt;}
.y34{bottom:1012.160000pt;}
.y1c{bottom:1012.960000pt;}
.y87{bottom:1013.280000pt;}
.hd{height:24.000167pt;}
.hb{height:33.918750pt;}
.h7{height:42.084375pt;}
.h3{height:52.134375pt;}
.h9{height:53.535000pt;}
.h2{height:57.787500pt;}
.ha{height:59.340000pt;}
.h8{height:62.812500pt;}
.hc{height:64.500000pt;}
.h10{height:65.781915pt;}
.h5{height:71.524375pt;}
.he{height:73.357245pt;}
.hf{height:78.435175pt;}
.h4{height:91.590000pt;}
.h6{height:1122.558173pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:41.266091pt;}
.w3{width:45.268144pt;}
.w5{width:48.000171pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:14.356975pt;}
.xc{left:29.467117pt;}
.x2{left:96.032000pt;}
.x11{left:98.912000pt;}
.x7{left:100.352000pt;}
.x16{left:124.512000pt;}
.xb{left:183.280000pt;}
.x5{left:190.586667pt;}
.x3{left:196.345000pt;}
.x4{left:201.626667pt;}
.xd{left:224.506667pt;}
.x6{left:288.066667pt;}
.x12{left:299.906667pt;}
.x8{left:396.880000pt;}
.xe{left:429.813333pt;}
.xa{left:442.173333pt;}
.xf{left:477.853333pt;}
.x14{left:683.173333pt;}
.x10{left:686.373333pt;}
.x1{left:690.533333pt;}
.x13{left:698.373333pt;}
.x15{left:699.973333pt;}
}

