
    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_e13c68d6b6a4e82112ec186b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.988281;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_a9db24c4dce2bc19191efe36.woff')format("woff");}.ff2{font-family:ff2;line-height:0.988281;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_38444feadbef89f97dfc31cc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.680176;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_0e32f4b85903500bbd0d4531.woff')format("woff");}.ff4{font-family:ff4;line-height:1.173340;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_75f28ef22edea6d1f2e9a0b2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e57407cf76b0b0e63b8451ae.woff')format("woff");}.ff6{font-family:ff6;line-height:0.988281;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_6017ddcd9960664cb289c0b1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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_950191410b2d831bf0e09749.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.224000px;}
.lsd{letter-spacing:-0.936000px;}
.ls2{letter-spacing:-0.714000px;}
.ls7{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.504000px;}
.ls1a{letter-spacing:-0.348600px;}
.ls10{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.085200px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012960px;}
.ls19{letter-spacing:0.023040px;}
.ls5{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.149760px;}
.lse{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.283800px;}
.ls15{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.732000px;}
.ls14{letter-spacing:0.869760px;}
.lsf{letter-spacing:1.656000px;}
.ls18{letter-spacing:14.051520px;}
.lsc{letter-spacing:21.096000px;}
.ls17{letter-spacing:21.749760px;}
.ls13{letter-spacing:64.949760px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.wsd{word-spacing:-20.376000px;}
.ws9{word-spacing:-20.160000px;}
.ws8{word-spacing:-19.944000px;}
.ws7{word-spacing:-19.800000px;}
.wse{word-spacing:-19.728000px;}
.wsa{word-spacing:-19.656000px;}
.wsb{word-spacing:-19.440000px;}
.ws6{word-spacing:-19.296000px;}
.ws10{word-spacing:-18.348480px;}
.ws1{word-spacing:-17.285520px;}
.ws5{word-spacing:-16.837320px;}
.ws3{word-spacing:-16.589520px;}
.ws0{word-spacing:-16.566480px;}
.wsf{word-spacing:-16.553520px;}
.ws2{word-spacing:-13.277280px;}
.ws4{word-spacing:0.000000px;}
._1a{margin-left:-8.200800px;}
._4{margin-left:-5.363760px;}
._21{margin-left:-2.229360px;}
._1{margin-left:-1.015920px;}
._0{width:1.106400px;}
._6{width:2.262240px;}
._b{width:3.355200px;}
._9{width:4.362480px;}
._a{width:5.885520px;}
._8{width:6.932160px;}
._7{width:8.426160px;}
._19{width:10.039680px;}
._13{width:11.289840px;}
._12{width:12.332880px;}
._15{width:13.924080px;}
._14{width:15.238800px;}
._26{width:16.711920px;}
._1b{width:17.839440px;}
._e{width:19.630320px;}
._f{width:20.676960px;}
._11{width:21.988320px;}
._1f{width:23.430960px;}
._10{width:24.680880px;}
._24{width:26.025120px;}
._18{width:27.131040px;}
._d{width:28.416720px;}
._c{width:30.148080px;}
._1e{width:31.831920px;}
._20{width:33.336000px;}
._1d{width:35.319840px;}
._1c{width:36.482640px;}
._25{width:37.728000px;}
._29{width:39.138960px;}
._28{width:40.560480px;}
._27{width:41.616000px;}
._17{width:43.116000px;}
._16{width:44.370960px;}
._2b{width:46.050960px;}
._2a{width:47.304000px;}
._2c{width:48.567600px;}
._2f{width:49.896000px;}
._36{width:51.199920px;}
._31{width:53.352000px;}
._37{width:56.095920px;}
._23{width:57.210960px;}
._22{width:58.615920px;}
._2d{width:59.651040px;}
._30{width:60.768000px;}
._32{width:62.136000px;}
._35{width:64.447920px;}
._2e{width:66.384000px;}
._33{width:67.759920px;}
._34{width:68.760000px;}
._2{width:752.377200px;}
._3{width:1024.866480px;}
._5{width:1160.369760px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs2{font-size:30.240000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.520000px;}
.y3e{bottom:2.700000px;}
.ya8{bottom:6.480000px;}
.yaf{bottom:9.540000px;}
.ya7{bottom:25.020000px;}
.yae{bottom:29.700000px;}
.ya6{bottom:43.380000px;}
.yad{bottom:50.040000px;}
.y7{bottom:53.496000px;}
.y5{bottom:54.936000px;}
.ya5{bottom:61.740000px;}
.yac{bottom:70.200000px;}
.y4{bottom:71.136000px;}
.ya4{bottom:80.460000px;}
.y3{bottom:81.936000px;}
.yab{bottom:90.405000px;}
.ya3{bottom:100.440000px;}
.ya2{bottom:119.160000px;}
.yaa{bottom:131.985000px;}
.y6f{bottom:142.056000px;}
.y9c{bottom:145.836000px;}
.y3a{bottom:146.916000px;}
.ya1{bottom:148.680000px;}
.y6e{bottom:164.190000px;}
.y39{bottom:165.270000px;}
.y9b{bottom:167.790000px;}
.y38{bottom:183.810000px;}
.y6d{bottom:186.150000px;}
.ya9{bottom:187.590000px;}
.y9a{bottom:189.930000px;}
.y37{bottom:202.170000px;}
.y6c{bottom:208.290000px;}
.y99{bottom:211.890000px;}
.y36{bottom:220.530000px;}
.y6b{bottom:230.430000px;}
.y98{bottom:234.030000px;}
.y35{bottom:238.890000px;}
.y6a{bottom:252.390000px;}
.y97{bottom:256.170000px;}
.y34{bottom:257.250000px;}
.y69{bottom:274.575000px;}
.y33{bottom:275.835000px;}
.y96{bottom:278.175000px;}
.y32{bottom:294.195000px;}
.y68{bottom:296.535000px;}
.y95{bottom:300.315000px;}
.y31{bottom:312.555000px;}
.y67{bottom:318.675000px;}
.y94{bottom:322.275000px;}
.y30{bottom:330.915000px;}
.y66{bottom:340.815000px;}
.y93{bottom:344.415000px;}
.y2f{bottom:349.275000px;}
.ya0{bottom:360.975000px;}
.y65{bottom:362.775000px;}
.y92{bottom:366.555000px;}
.y2e{bottom:367.635000px;}
.y64{bottom:384.915000px;}
.y2d{bottom:386.175000px;}
.y91{bottom:388.515000px;}
.y2c{bottom:404.535000px;}
.y63{bottom:406.875000px;}
.y90{bottom:410.655000px;}
.y2b{bottom:422.895000px;}
.y62{bottom:429.015000px;}
.y8f{bottom:432.615000px;}
.y2a{bottom:441.255000px;}
.y61{bottom:451.155000px;}
.y8e{bottom:454.755000px;}
.y29{bottom:459.615000px;}
.y60{bottom:473.115000px;}
.y8d{bottom:476.895000px;}
.y28{bottom:477.975000px;}
.y9f{bottom:480.855000px;}
.y5f{bottom:495.255000px;}
.y27{bottom:496.515000px;}
.y8c{bottom:498.855000px;}
.y9e{bottom:511.995000px;}
.y26{bottom:514.875000px;}
.y5e{bottom:517.215000px;}
.y8b{bottom:520.995000px;}
.y25{bottom:533.235000px;}
.y5d{bottom:539.355000px;}
.y8a{bottom:542.955000px;}
.y24{bottom:551.595000px;}
.y5c{bottom:561.525000px;}
.y89{bottom:565.125000px;}
.y23{bottom:569.985000px;}
.y5b{bottom:583.485000px;}
.y88{bottom:587.265000px;}
.y22{bottom:588.345000px;}
.y5a{bottom:605.625000px;}
.y21{bottom:606.885000px;}
.y87{bottom:609.225000px;}
.y20{bottom:625.245000px;}
.y59{bottom:627.585000px;}
.y86{bottom:631.365000px;}
.y1f{bottom:643.605000px;}
.y58{bottom:649.725000px;}
.y85{bottom:653.325000px;}
.y1e{bottom:661.965000px;}
.y57{bottom:671.865000px;}
.y84{bottom:675.465000px;}
.y1d{bottom:680.325000px;}
.y56{bottom:693.825000px;}
.y83{bottom:697.605000px;}
.y1c{bottom:698.685000px;}
.y55{bottom:715.245000px;}
.y1b{bottom:717.225000px;}
.y82{bottom:719.565000px;}
.y54{bottom:733.785000px;}
.y1a{bottom:735.585000px;}
.y81{bottom:741.705000px;}
.y53{bottom:752.145000px;}
.y19{bottom:753.945000px;}
.y80{bottom:763.845000px;}
.y52{bottom:770.505000px;}
.y18{bottom:772.305000px;}
.y7f{bottom:785.805000px;}
.y51{bottom:788.865000px;}
.y17{bottom:791.385000px;}
.y50{bottom:807.225000px;}
.y7e{bottom:807.945000px;}
.y16{bottom:813.345000px;}
.y4f{bottom:825.585000px;}
.y7d{bottom:829.905000px;}
.y15{bottom:834.945000px;}
.y4e{bottom:844.170000px;}
.y7c{bottom:852.090000px;}
.y14{bottom:853.350000px;}
.y4d{bottom:862.530000px;}
.y13{bottom:871.710000px;}
.y7b{bottom:874.230000px;}
.y4c{bottom:880.890000px;}
.y12{bottom:890.790000px;}
.y7a{bottom:896.190000px;}
.y4b{bottom:899.250000px;}
.y11{bottom:912.750000px;}
.y4a{bottom:917.610000px;}
.y79{bottom:918.330000px;}
.y10{bottom:934.170000px;}
.y49{bottom:936.150000px;}
.y78{bottom:940.290000px;}
.yf{bottom:953.070000px;}
.y48{bottom:954.510000px;}
.y77{bottom:962.430000px;}
.y47{bottom:972.870000px;}
.ye{bottom:973.410000px;}
.y76{bottom:984.570000px;}
.y9d{bottom:984.930000px;}
.y46{bottom:991.230000px;}
.yd{bottom:995.550000px;}
.y75{bottom:1006.530000px;}
.y45{bottom:1009.590000px;}
.yc{bottom:1017.690000px;}
.y44{bottom:1027.950000px;}
.y74{bottom:1028.670000px;}
.yb{bottom:1039.650000px;}
.y43{bottom:1046.490000px;}
.y73{bottom:1050.630000px;}
.ya{bottom:1062.330000px;}
.y42{bottom:1064.850000px;}
.y72{bottom:1072.770000px;}
.y41{bottom:1083.210000px;}
.y9{bottom:1088.070000px;}
.y71{bottom:1094.910000px;}
.y40{bottom:1101.570000px;}
.y8{bottom:1113.810000px;}
.y70{bottom:1116.870000px;}
.y3f{bottom:1119.930000px;}
.y3d{bottom:1139.220000px;}
.y3c{bottom:1157.580000px;}
.y2{bottom:1175.760000px;}
.y3b{bottom:1175.940000px;}
.y1{bottom:1194.480000px;}
.h7{height:3.864375px;}
.he{height:4.494375px;}
.h5{height:14.580000px;}
.hd{height:14.760000px;}
.h4{height:23.595469px;}
.h6{height:37.640391px;}
.h3{height:44.440312px;}
.h2{height:46.629141px;}
.ha{height:51.685312px;}
.hf{height:54.000000px;}
.hb{height:56.179688px;}
.hc{height:57.688242px;}
.h11{height:63.943594px;}
.h9{height:69.503906px;}
.h8{height:81.319570px;}
.h12{height:150.330000px;}
.h10{height:167.040000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:125.100000px;}
.w3{width:138.096000px;}
.w5{width:138.276000px;}
.w4{width:358.095000px;}
.w7{width:594.645000px;}
.w6{width:596.625000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x16{left:9.180000px;}
.x1a{left:10.800000px;}
.x12{left:16.380000px;}
.x14{left:17.640000px;}
.x11{left:114.156000px;}
.x4{left:119.556000px;}
.x1{left:127.656000px;}
.x8{left:133.056000px;}
.x7{left:150.870000px;}
.xa{left:152.850000px;}
.x10{left:180.750000px;}
.x19{left:204.330000px;}
.x17{left:207.750000px;}
.xb{left:225.030000px;}
.x2{left:244.650000px;}
.x18{left:255.270000px;}
.x13{left:277.230000px;}
.x9{left:334.155000px;}
.x6{left:382.755000px;}
.x1c{left:414.075000px;}
.x15{left:415.515000px;}
.x3{left:446.475000px;}
.xc{left:473.115000px;}
.x1b{left:480.675000px;}
.x1d{left:586.020000px;}
.xe{left:630.645000px;}
.xd{left:660.885000px;}
.xf{left:765.510000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.088000pt;}
.lsd{letter-spacing:-0.832000pt;}
.ls2{letter-spacing:-0.634667pt;}
.ls7{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.448000pt;}
.ls1a{letter-spacing:-0.309867pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.075733pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.011520pt;}
.ls19{letter-spacing:0.020480pt;}
.ls5{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.133120pt;}
.lse{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.252267pt;}
.ls15{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.650667pt;}
.ls14{letter-spacing:0.773120pt;}
.lsf{letter-spacing:1.472000pt;}
.ls18{letter-spacing:12.490240pt;}
.lsc{letter-spacing:18.752000pt;}
.ls17{letter-spacing:19.333120pt;}
.ls13{letter-spacing:57.733120pt;}
.wsc{word-spacing:-64.000000pt;}
.wsd{word-spacing:-18.112000pt;}
.ws9{word-spacing:-17.920000pt;}
.ws8{word-spacing:-17.728000pt;}
.ws7{word-spacing:-17.600000pt;}
.wse{word-spacing:-17.536000pt;}
.wsa{word-spacing:-17.472000pt;}
.wsb{word-spacing:-17.280000pt;}
.ws6{word-spacing:-17.152000pt;}
.ws10{word-spacing:-16.309760pt;}
.ws1{word-spacing:-15.364907pt;}
.ws5{word-spacing:-14.966507pt;}
.ws3{word-spacing:-14.746240pt;}
.ws0{word-spacing:-14.725760pt;}
.wsf{word-spacing:-14.714240pt;}
.ws2{word-spacing:-11.802027pt;}
.ws4{word-spacing:0.000000pt;}
._1a{margin-left:-7.289600pt;}
._4{margin-left:-4.767787pt;}
._21{margin-left:-1.981653pt;}
._1{margin-left:-0.903040pt;}
._0{width:0.983467pt;}
._6{width:2.010880pt;}
._b{width:2.982400pt;}
._9{width:3.877760pt;}
._a{width:5.231573pt;}
._8{width:6.161920pt;}
._7{width:7.489920pt;}
._19{width:8.924160pt;}
._13{width:10.035413pt;}
._12{width:10.962560pt;}
._15{width:12.376960pt;}
._14{width:13.545600pt;}
._26{width:14.855040pt;}
._1b{width:15.857280pt;}
._e{width:17.449173pt;}
._f{width:18.379520pt;}
._11{width:19.545173pt;}
._1f{width:20.827520pt;}
._10{width:21.938560pt;}
._24{width:23.133440pt;}
._18{width:24.116480pt;}
._d{width:25.259307pt;}
._c{width:26.798293pt;}
._1e{width:28.295040pt;}
._20{width:29.632000pt;}
._1d{width:31.395413pt;}
._1c{width:32.429013pt;}
._25{width:33.536000pt;}
._29{width:34.790187pt;}
._28{width:36.053760pt;}
._27{width:36.992000pt;}
._17{width:38.325333pt;}
._16{width:39.440853pt;}
._2b{width:40.934187pt;}
._2a{width:42.048000pt;}
._2c{width:43.171200pt;}
._2f{width:44.352000pt;}
._36{width:45.511040pt;}
._31{width:47.424000pt;}
._37{width:49.863040pt;}
._23{width:50.854187pt;}
._22{width:52.103040pt;}
._2d{width:53.023147pt;}
._30{width:54.016000pt;}
._32{width:55.232000pt;}
._35{width:57.287040pt;}
._2e{width:59.008000pt;}
._33{width:60.231040pt;}
._34{width:61.120000pt;}
._2{width:668.779733pt;}
._3{width:910.992427pt;}
._5{width:1031.439787pt;}
.fs4{font-size:5.120000pt;}
.fs2{font-size:26.880000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.240000pt;}
.y3e{bottom:2.400000pt;}
.ya8{bottom:5.760000pt;}
.yaf{bottom:8.480000pt;}
.ya7{bottom:22.240000pt;}
.yae{bottom:26.400000pt;}
.ya6{bottom:38.560000pt;}
.yad{bottom:44.480000pt;}
.y7{bottom:47.552000pt;}
.y5{bottom:48.832000pt;}
.ya5{bottom:54.880000pt;}
.yac{bottom:62.400000pt;}
.y4{bottom:63.232000pt;}
.ya4{bottom:71.520000pt;}
.y3{bottom:72.832000pt;}
.yab{bottom:80.360000pt;}
.ya3{bottom:89.280000pt;}
.ya2{bottom:105.920000pt;}
.yaa{bottom:117.320000pt;}
.y6f{bottom:126.272000pt;}
.y9c{bottom:129.632000pt;}
.y3a{bottom:130.592000pt;}
.ya1{bottom:132.160000pt;}
.y6e{bottom:145.946667pt;}
.y39{bottom:146.906667pt;}
.y9b{bottom:149.146667pt;}
.y38{bottom:163.386667pt;}
.y6d{bottom:165.466667pt;}
.ya9{bottom:166.746667pt;}
.y9a{bottom:168.826667pt;}
.y37{bottom:179.706667pt;}
.y6c{bottom:185.146667pt;}
.y99{bottom:188.346667pt;}
.y36{bottom:196.026667pt;}
.y6b{bottom:204.826667pt;}
.y98{bottom:208.026667pt;}
.y35{bottom:212.346667pt;}
.y6a{bottom:224.346667pt;}
.y97{bottom:227.706667pt;}
.y34{bottom:228.666667pt;}
.y69{bottom:244.066667pt;}
.y33{bottom:245.186667pt;}
.y96{bottom:247.266667pt;}
.y32{bottom:261.506667pt;}
.y68{bottom:263.586667pt;}
.y95{bottom:266.946667pt;}
.y31{bottom:277.826667pt;}
.y67{bottom:283.266667pt;}
.y94{bottom:286.466667pt;}
.y30{bottom:294.146667pt;}
.y66{bottom:302.946667pt;}
.y93{bottom:306.146667pt;}
.y2f{bottom:310.466667pt;}
.ya0{bottom:320.866667pt;}
.y65{bottom:322.466667pt;}
.y92{bottom:325.826667pt;}
.y2e{bottom:326.786667pt;}
.y64{bottom:342.146667pt;}
.y2d{bottom:343.266667pt;}
.y91{bottom:345.346667pt;}
.y2c{bottom:359.586667pt;}
.y63{bottom:361.666667pt;}
.y90{bottom:365.026667pt;}
.y2b{bottom:375.906667pt;}
.y62{bottom:381.346667pt;}
.y8f{bottom:384.546667pt;}
.y2a{bottom:392.226667pt;}
.y61{bottom:401.026667pt;}
.y8e{bottom:404.226667pt;}
.y29{bottom:408.546667pt;}
.y60{bottom:420.546667pt;}
.y8d{bottom:423.906667pt;}
.y28{bottom:424.866667pt;}
.y9f{bottom:427.426667pt;}
.y5f{bottom:440.226667pt;}
.y27{bottom:441.346667pt;}
.y8c{bottom:443.426667pt;}
.y9e{bottom:455.106667pt;}
.y26{bottom:457.666667pt;}
.y5e{bottom:459.746667pt;}
.y8b{bottom:463.106667pt;}
.y25{bottom:473.986667pt;}
.y5d{bottom:479.426667pt;}
.y8a{bottom:482.626667pt;}
.y24{bottom:490.306667pt;}
.y5c{bottom:499.133333pt;}
.y89{bottom:502.333333pt;}
.y23{bottom:506.653333pt;}
.y5b{bottom:518.653333pt;}
.y88{bottom:522.013333pt;}
.y22{bottom:522.973333pt;}
.y5a{bottom:538.333333pt;}
.y21{bottom:539.453333pt;}
.y87{bottom:541.533333pt;}
.y20{bottom:555.773333pt;}
.y59{bottom:557.853333pt;}
.y86{bottom:561.213333pt;}
.y1f{bottom:572.093333pt;}
.y58{bottom:577.533333pt;}
.y85{bottom:580.733333pt;}
.y1e{bottom:588.413333pt;}
.y57{bottom:597.213333pt;}
.y84{bottom:600.413333pt;}
.y1d{bottom:604.733333pt;}
.y56{bottom:616.733333pt;}
.y83{bottom:620.093333pt;}
.y1c{bottom:621.053333pt;}
.y55{bottom:635.773333pt;}
.y1b{bottom:637.533333pt;}
.y82{bottom:639.613333pt;}
.y54{bottom:652.253333pt;}
.y1a{bottom:653.853333pt;}
.y81{bottom:659.293333pt;}
.y53{bottom:668.573333pt;}
.y19{bottom:670.173333pt;}
.y80{bottom:678.973333pt;}
.y52{bottom:684.893333pt;}
.y18{bottom:686.493333pt;}
.y7f{bottom:698.493333pt;}
.y51{bottom:701.213333pt;}
.y17{bottom:703.453333pt;}
.y50{bottom:717.533333pt;}
.y7e{bottom:718.173333pt;}
.y16{bottom:722.973333pt;}
.y4f{bottom:733.853333pt;}
.y7d{bottom:737.693333pt;}
.y15{bottom:742.173333pt;}
.y4e{bottom:750.373333pt;}
.y7c{bottom:757.413333pt;}
.y14{bottom:758.533333pt;}
.y4d{bottom:766.693333pt;}
.y13{bottom:774.853333pt;}
.y7b{bottom:777.093333pt;}
.y4c{bottom:783.013333pt;}
.y12{bottom:791.813333pt;}
.y7a{bottom:796.613333pt;}
.y4b{bottom:799.333333pt;}
.y11{bottom:811.333333pt;}
.y4a{bottom:815.653333pt;}
.y79{bottom:816.293333pt;}
.y10{bottom:830.373333pt;}
.y49{bottom:832.133333pt;}
.y78{bottom:835.813333pt;}
.yf{bottom:847.173333pt;}
.y48{bottom:848.453333pt;}
.y77{bottom:855.493333pt;}
.y47{bottom:864.773333pt;}
.ye{bottom:865.253333pt;}
.y76{bottom:875.173333pt;}
.y9d{bottom:875.493333pt;}
.y46{bottom:881.093333pt;}
.yd{bottom:884.933333pt;}
.y75{bottom:894.693333pt;}
.y45{bottom:897.413333pt;}
.yc{bottom:904.613333pt;}
.y44{bottom:913.733333pt;}
.y74{bottom:914.373333pt;}
.yb{bottom:924.133333pt;}
.y43{bottom:930.213333pt;}
.y73{bottom:933.893333pt;}
.ya{bottom:944.293333pt;}
.y42{bottom:946.533333pt;}
.y72{bottom:953.573333pt;}
.y41{bottom:962.853333pt;}
.y9{bottom:967.173333pt;}
.y71{bottom:973.253333pt;}
.y40{bottom:979.173333pt;}
.y8{bottom:990.053333pt;}
.y70{bottom:992.773333pt;}
.y3f{bottom:995.493333pt;}
.y3d{bottom:1012.640000pt;}
.y3c{bottom:1028.960000pt;}
.y2{bottom:1045.120000pt;}
.y3b{bottom:1045.280000pt;}
.y1{bottom:1061.760000pt;}
.h7{height:3.435000pt;}
.he{height:3.995000pt;}
.h5{height:12.960000pt;}
.hd{height:13.120000pt;}
.h4{height:20.973750pt;}
.h6{height:33.458125pt;}
.h3{height:39.502500pt;}
.h2{height:41.448125pt;}
.ha{height:45.942500pt;}
.hf{height:48.000000pt;}
.hb{height:49.937500pt;}
.hc{height:51.278437pt;}
.h11{height:56.838750pt;}
.h9{height:61.781250pt;}
.h8{height:72.284062pt;}
.h12{height:133.626667pt;}
.h10{height:148.480000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:111.200000pt;}
.w3{width:122.752000pt;}
.w5{width:122.912000pt;}
.w4{width:318.306667pt;}
.w7{width:528.573333pt;}
.w6{width:530.333333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x16{left:8.160000pt;}
.x1a{left:9.600000pt;}
.x12{left:14.560000pt;}
.x14{left:15.680000pt;}
.x11{left:101.472000pt;}
.x4{left:106.272000pt;}
.x1{left:113.472000pt;}
.x8{left:118.272000pt;}
.x7{left:134.106667pt;}
.xa{left:135.866667pt;}
.x10{left:160.666667pt;}
.x19{left:181.626667pt;}
.x17{left:184.666667pt;}
.xb{left:200.026667pt;}
.x2{left:217.466667pt;}
.x18{left:226.906667pt;}
.x13{left:246.426667pt;}
.x9{left:297.026667pt;}
.x6{left:340.226667pt;}
.x1c{left:368.066667pt;}
.x15{left:369.346667pt;}
.x3{left:396.866667pt;}
.xc{left:420.546667pt;}
.x1b{left:427.266667pt;}
.x1d{left:520.906667pt;}
.xe{left:560.573333pt;}
.xd{left:587.453333pt;}
.xf{left:680.453333pt;}
}

