
    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_49394186b066433e8e0e57ff.woff')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_7e571d908580c75f82980aa8.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_61d3754f0694a1db277395ef.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e658b11c21ac3f8c8ba9b880.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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ad322b4fbece193c9c4269bf.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ebaf74e9ddd83eafab26ee38.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1499d832acbc207cb1872282.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_c817ab1d98d7f906092efa43.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6b6044cf6de0bb1419530eab.woff')format("woff");}.ff9{font-family:ff9;line-height:0.897461;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;}
.lsd{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.256200px;}
.ls11{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.792000px;}
.ls10{letter-spacing:0.864000px;}
.ls6{letter-spacing:8.640000px;}
.lse{letter-spacing:13.680000px;}
.ls5{letter-spacing:33.960000px;}
.ls3{letter-spacing:33.984000px;}
.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;}
}
.ws8{word-spacing:-18.864000px;}
.wsa{word-spacing:-18.720000px;}
.wsb{word-spacing:-18.432000px;}
.ws6{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.568000px;}
.ws5{word-spacing:-17.424000px;}
.ws9{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.226440px;}
.ws0{word-spacing:0.000000px;}
._10{margin-left:-15.144000px;}
._a{margin-left:-13.920000px;}
._b{margin-left:-11.532000px;}
._c{margin-left:-9.444000px;}
._9{margin-left:-7.224000px;}
._f{margin-left:-5.604000px;}
._d{margin-left:-4.140000px;}
._e{margin-left:-2.288640px;}
._0{margin-left:-1.179360px;}
._1{width:1.179360px;}
._2{width:2.564640px;}
._3{width:4.131360px;}
._1c{width:5.741760px;}
._6{width:7.272000px;}
._7{width:9.027360px;}
._8{width:10.340640px;}
._1a{width:11.856000px;}
._1b{width:12.888000px;}
._4{width:13.944000px;}
._5{width:15.432000px;}
._20{width:16.656000px;}
._19{width:19.152000px;}
._16{width:20.160000px;}
._15{width:21.384000px;}
._17{width:23.124000px;}
._1d{width:24.144000px;}
._25{width:25.153920px;}
._13{width:26.208000px;}
._14{width:27.504000px;}
._12{width:28.531200px;}
._11{width:29.595360px;}
._18{width:30.910080px;}
._29{width:32.424960px;}
._23{width:33.912000px;}
._24{width:35.108640px;}
._26{width:36.432000px;}
._22{width:39.024000px;}
._1e{width:40.248000px;}
._1f{width:41.472000px;}
._2c{width:43.200000px;}
._27{width:45.216000px;}
._28{width:46.368000px;}
._2b{width:83.655360px;}
._2a{width:90.696000px;}
._21{width:192.720000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.600000px;}
.y1{bottom:77.760000px;}
.y52{bottom:122.796000px;}
.y6e{bottom:122.976000px;}
.y2f{bottom:130.536000px;}
.y3f{bottom:134.136000px;}
.y8b{bottom:137.916000px;}
.y22{bottom:145.476000px;}
.yd{bottom:146.376000px;}
.y81{bottom:149.256000px;}
.y92{bottom:152.490000px;}
.y6a{bottom:152.850000px;}
.y5d{bottom:160.590000px;}
.y51{bottom:164.370000px;}
.y77{bottom:179.130000px;}
.y8a{bottom:179.310000px;}
.y2e{bottom:186.870000px;}
.y3e{bottom:190.470000px;}
.y80{bottom:190.650000px;}
.y91{bottom:193.890000px;}
.y69{bottom:194.250000px;}
.y21{bottom:201.990000px;}
.yc{bottom:202.890000px;}
.y74{bottom:205.590000px;}
.y50{bottom:205.770000px;}
.y5c{bottom:216.930000px;}
.y88{bottom:220.530000px;}
.y76{bottom:220.710000px;}
.y7f{bottom:232.050000px;}
.y68{bottom:235.650000px;}
.y2d{bottom:243.390000px;}
.y20{bottom:243.570000px;}
.y3d{bottom:246.990000px;}
.y4f{bottom:247.170000px;}
.yb{bottom:259.230000px;}
.y73{bottom:261.930000px;}
.y75{bottom:262.110000px;}
.y5b{bottom:273.270000px;}
.y7e{bottom:273.450000px;}
.y67{bottom:277.050000px;}
.y1f{bottom:284.970000px;}
.y3c{bottom:288.570000px;}
.y2c{bottom:299.730000px;}
.y72{bottom:303.510000px;}
.y7d{bottom:314.850000px;}
.ya{bottom:315.570000px;}
.y66{bottom:318.450000px;}
.y1e{bottom:326.370000px;}
.y5a{bottom:329.790000px;}
.y3b{bottom:329.970000px;}
.y8e{bottom:344.775000px;}
.y71{bottom:344.955000px;}
.y2b{bottom:356.115000px;}
.y7c{bottom:356.295000px;}
.y65{bottom:359.895000px;}
.y1d{bottom:367.815000px;}
.y3a{bottom:371.415000px;}
.y9{bottom:371.955000px;}
.y59{bottom:386.175000px;}
.y70{bottom:386.355000px;}
.y7b{bottom:397.695000px;}
.y64{bottom:401.295000px;}
.y1c{bottom:409.215000px;}
.y9b{bottom:412.455000px;}
.y2a{bottom:412.635000px;}
.y39{bottom:412.815000px;}
.y96{bottom:427.575000px;}
.y58{bottom:427.755000px;}
.y8{bottom:428.475000px;}
.y7a{bottom:439.095000px;}
.y63{bottom:442.695000px;}
.y1b{bottom:450.615000px;}
.y29{bottom:454.215000px;}
.y4e{bottom:468.975000px;}
.y57{bottom:469.155000px;}
.y85{bottom:480.495000px;}
.y89{bottom:483.915000px;}
.y62{bottom:484.095000px;}
.y7{bottom:484.815000px;}
.y79{bottom:495.435000px;}
.y28{bottom:495.615000px;}
.y1a{bottom:506.415000px;}
.y4d{bottom:510.555000px;}
.y84{bottom:521.895000px;}
.y9d{bottom:525.315000px;}
.y61{bottom:525.495000px;}
.y87{bottom:536.475000px;}
.y6{bottom:536.835000px;}
.y27{bottom:537.015000px;}
.y95{bottom:551.595000px;}
.y6d{bottom:551.775000px;}
.y4c{bottom:551.955000px;}
.y19{bottom:563.115000px;}
.y83{bottom:563.295000px;}
.y93{bottom:566.715000px;}
.y60{bottom:566.895000px;}
.y90{bottom:578.055000px;}
.y26{bottom:578.415000px;}
.y86{bottom:593.205000px;}
.y4b{bottom:593.385000px;}
.y18{bottom:604.725000px;}
.y94{bottom:608.145000px;}
.y5f{bottom:608.325000px;}
.y82{bottom:619.305000px;}
.y25{bottom:619.845000px;}
.y8f{bottom:634.605000px;}
.y4a{bottom:634.785000px;}
.y56{bottom:649.545000px;}
.y5e{bottom:649.725000px;}
.y17{bottom:661.065000px;}
.y24{bottom:661.245000px;}
.y99{bottom:675.825000px;}
.y38{bottom:676.005000px;}
.y49{bottom:676.185000px;}
.y8d{bottom:690.945000px;}
.y55{bottom:691.125000px;}
.y16{bottom:702.465000px;}
.y37{bottom:717.585000px;}
.y48{bottom:732.345000px;}
.y54{bottom:732.525000px;}
.y15{bottom:743.865000px;}
.y36{bottom:758.985000px;}
.y9a{bottom:773.745000px;}
.y47{bottom:773.925000px;}
.y14{bottom:785.265000px;}
.y98{bottom:799.845000px;}
.y35{bottom:800.385000px;}
.y8c{bottom:815.145000px;}
.y46{bottom:815.325000px;}
.y13{bottom:826.710000px;}
.y78{bottom:841.650000px;}
.y34{bottom:841.830000px;}
.y97{bottom:856.590000px;}
.y45{bottom:856.770000px;}
.y12{bottom:868.110000px;}
.y33{bottom:883.230000px;}
.y9c{bottom:897.810000px;}
.y6f{bottom:897.990000px;}
.y44{bottom:898.170000px;}
.y11{bottom:909.510000px;}
.y32{bottom:924.630000px;}
.y5{bottom:937.050000px;}
.y43{bottom:939.570000px;}
.y10{bottom:950.910000px;}
.y31{bottom:966.030000px;}
.y6b{bottom:980.610000px;}
.y42{bottom:980.970000px;}
.y4{bottom:997.170000px;}
.yf{bottom:1006.890000px;}
.y23{bottom:1007.250000px;}
.y30{bottom:1007.430000px;}
.y6c{bottom:1022.190000px;}
.y41{bottom:1022.370000px;}
.y3{bottom:1060.530000px;}
.ye{bottom:1063.230000px;}
.y53{bottom:1063.410000px;}
.y40{bottom:1063.770000px;}
.h7{height:64.546875px;}
.h1{height:65.884219px;}
.h3{height:70.664062px;}
.h4{height:72.562500px;}
.h5{height:74.004654px;}
.h6{height:74.953125px;}
.h2{height:84.898125px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:108.036000px;}
.x2{left:134.856000px;}
.xf{left:150.150000px;}
.x12{left:161.130000px;}
.x17{left:162.570000px;}
.x3{left:176.610000px;}
.xc{left:183.990000px;}
.x13{left:188.850000px;}
.x15{left:216.030000px;}
.xa{left:266.970000px;}
.x4{left:291.810000px;}
.x8{left:309.810000px;}
.x7{left:346.215000px;}
.xb{left:399.495000px;}
.x9{left:410.115000px;}
.x16{left:427.575000px;}
.x10{left:431.175000px;}
.xd{left:433.875000px;}
.x11{left:436.035000px;}
.x5{left:472.395000px;}
.x6{left:677.265000px;}
.x14{left:793.410000px;}
.x1{left:801.870000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.227733pt;}
.ls11{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.704000pt;}
.ls10{letter-spacing:0.768000pt;}
.ls6{letter-spacing:7.680000pt;}
.lse{letter-spacing:12.160000pt;}
.ls5{letter-spacing:30.186667pt;}
.ls3{letter-spacing:30.208000pt;}
.ws8{word-spacing:-16.768000pt;}
.wsa{word-spacing:-16.640000pt;}
.wsb{word-spacing:-16.384000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.616000pt;}
.ws5{word-spacing:-15.488000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.534613pt;}
.ws0{word-spacing:0.000000pt;}
._10{margin-left:-13.461333pt;}
._a{margin-left:-12.373333pt;}
._b{margin-left:-10.250667pt;}
._c{margin-left:-8.394667pt;}
._9{margin-left:-6.421333pt;}
._f{margin-left:-4.981333pt;}
._d{margin-left:-3.680000pt;}
._e{margin-left:-2.034347pt;}
._0{margin-left:-1.048320pt;}
._1{width:1.048320pt;}
._2{width:2.279680pt;}
._3{width:3.672320pt;}
._1c{width:5.103787pt;}
._6{width:6.464000pt;}
._7{width:8.024320pt;}
._8{width:9.191680pt;}
._1a{width:10.538667pt;}
._1b{width:11.456000pt;}
._4{width:12.394667pt;}
._5{width:13.717333pt;}
._20{width:14.805333pt;}
._19{width:17.024000pt;}
._16{width:17.920000pt;}
._15{width:19.008000pt;}
._17{width:20.554667pt;}
._1d{width:21.461333pt;}
._25{width:22.359040pt;}
._13{width:23.296000pt;}
._14{width:24.448000pt;}
._12{width:25.361067pt;}
._11{width:26.306987pt;}
._18{width:27.475627pt;}
._29{width:28.822187pt;}
._23{width:30.144000pt;}
._24{width:31.207680pt;}
._26{width:32.384000pt;}
._22{width:34.688000pt;}
._1e{width:35.776000pt;}
._1f{width:36.864000pt;}
._2c{width:38.400000pt;}
._27{width:40.192000pt;}
._28{width:41.216000pt;}
._2b{width:74.360320pt;}
._2a{width:80.618667pt;}
._21{width:171.306667pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.200000pt;}
.y1{bottom:69.120000pt;}
.y52{bottom:109.152000pt;}
.y6e{bottom:109.312000pt;}
.y2f{bottom:116.032000pt;}
.y3f{bottom:119.232000pt;}
.y8b{bottom:122.592000pt;}
.y22{bottom:129.312000pt;}
.yd{bottom:130.112000pt;}
.y81{bottom:132.672000pt;}
.y92{bottom:135.546667pt;}
.y6a{bottom:135.866667pt;}
.y5d{bottom:142.746667pt;}
.y51{bottom:146.106667pt;}
.y77{bottom:159.226667pt;}
.y8a{bottom:159.386667pt;}
.y2e{bottom:166.106667pt;}
.y3e{bottom:169.306667pt;}
.y80{bottom:169.466667pt;}
.y91{bottom:172.346667pt;}
.y69{bottom:172.666667pt;}
.y21{bottom:179.546667pt;}
.yc{bottom:180.346667pt;}
.y74{bottom:182.746667pt;}
.y50{bottom:182.906667pt;}
.y5c{bottom:192.826667pt;}
.y88{bottom:196.026667pt;}
.y76{bottom:196.186667pt;}
.y7f{bottom:206.266667pt;}
.y68{bottom:209.466667pt;}
.y2d{bottom:216.346667pt;}
.y20{bottom:216.506667pt;}
.y3d{bottom:219.546667pt;}
.y4f{bottom:219.706667pt;}
.yb{bottom:230.426667pt;}
.y73{bottom:232.826667pt;}
.y75{bottom:232.986667pt;}
.y5b{bottom:242.906667pt;}
.y7e{bottom:243.066667pt;}
.y67{bottom:246.266667pt;}
.y1f{bottom:253.306667pt;}
.y3c{bottom:256.506667pt;}
.y2c{bottom:266.426667pt;}
.y72{bottom:269.786667pt;}
.y7d{bottom:279.866667pt;}
.ya{bottom:280.506667pt;}
.y66{bottom:283.066667pt;}
.y1e{bottom:290.106667pt;}
.y5a{bottom:293.146667pt;}
.y3b{bottom:293.306667pt;}
.y8e{bottom:306.466667pt;}
.y71{bottom:306.626667pt;}
.y2b{bottom:316.546667pt;}
.y7c{bottom:316.706667pt;}
.y65{bottom:319.906667pt;}
.y1d{bottom:326.946667pt;}
.y3a{bottom:330.146667pt;}
.y9{bottom:330.626667pt;}
.y59{bottom:343.266667pt;}
.y70{bottom:343.426667pt;}
.y7b{bottom:353.506667pt;}
.y64{bottom:356.706667pt;}
.y1c{bottom:363.746667pt;}
.y9b{bottom:366.626667pt;}
.y2a{bottom:366.786667pt;}
.y39{bottom:366.946667pt;}
.y96{bottom:380.066667pt;}
.y58{bottom:380.226667pt;}
.y8{bottom:380.866667pt;}
.y7a{bottom:390.306667pt;}
.y63{bottom:393.506667pt;}
.y1b{bottom:400.546667pt;}
.y29{bottom:403.746667pt;}
.y4e{bottom:416.866667pt;}
.y57{bottom:417.026667pt;}
.y85{bottom:427.106667pt;}
.y89{bottom:430.146667pt;}
.y62{bottom:430.306667pt;}
.y7{bottom:430.946667pt;}
.y79{bottom:440.386667pt;}
.y28{bottom:440.546667pt;}
.y1a{bottom:450.146667pt;}
.y4d{bottom:453.826667pt;}
.y84{bottom:463.906667pt;}
.y9d{bottom:466.946667pt;}
.y61{bottom:467.106667pt;}
.y87{bottom:476.866667pt;}
.y6{bottom:477.186667pt;}
.y27{bottom:477.346667pt;}
.y95{bottom:490.306667pt;}
.y6d{bottom:490.466667pt;}
.y4c{bottom:490.626667pt;}
.y19{bottom:500.546667pt;}
.y83{bottom:500.706667pt;}
.y93{bottom:503.746667pt;}
.y60{bottom:503.906667pt;}
.y90{bottom:513.826667pt;}
.y26{bottom:514.146667pt;}
.y86{bottom:527.293333pt;}
.y4b{bottom:527.453333pt;}
.y18{bottom:537.533333pt;}
.y94{bottom:540.573333pt;}
.y5f{bottom:540.733333pt;}
.y82{bottom:550.493333pt;}
.y25{bottom:550.973333pt;}
.y8f{bottom:564.093333pt;}
.y4a{bottom:564.253333pt;}
.y56{bottom:577.373333pt;}
.y5e{bottom:577.533333pt;}
.y17{bottom:587.613333pt;}
.y24{bottom:587.773333pt;}
.y99{bottom:600.733333pt;}
.y38{bottom:600.893333pt;}
.y49{bottom:601.053333pt;}
.y8d{bottom:614.173333pt;}
.y55{bottom:614.333333pt;}
.y16{bottom:624.413333pt;}
.y37{bottom:637.853333pt;}
.y48{bottom:650.973333pt;}
.y54{bottom:651.133333pt;}
.y15{bottom:661.213333pt;}
.y36{bottom:674.653333pt;}
.y9a{bottom:687.773333pt;}
.y47{bottom:687.933333pt;}
.y14{bottom:698.013333pt;}
.y98{bottom:710.973333pt;}
.y35{bottom:711.453333pt;}
.y8c{bottom:724.573333pt;}
.y46{bottom:724.733333pt;}
.y13{bottom:734.853333pt;}
.y78{bottom:748.133333pt;}
.y34{bottom:748.293333pt;}
.y97{bottom:761.413333pt;}
.y45{bottom:761.573333pt;}
.y12{bottom:771.653333pt;}
.y33{bottom:785.093333pt;}
.y9c{bottom:798.053333pt;}
.y6f{bottom:798.213333pt;}
.y44{bottom:798.373333pt;}
.y11{bottom:808.453333pt;}
.y32{bottom:821.893333pt;}
.y5{bottom:832.933333pt;}
.y43{bottom:835.173333pt;}
.y10{bottom:845.253333pt;}
.y31{bottom:858.693333pt;}
.y6b{bottom:871.653333pt;}
.y42{bottom:871.973333pt;}
.y4{bottom:886.373333pt;}
.yf{bottom:895.013333pt;}
.y23{bottom:895.333333pt;}
.y30{bottom:895.493333pt;}
.y6c{bottom:908.613333pt;}
.y41{bottom:908.773333pt;}
.y3{bottom:942.693333pt;}
.ye{bottom:945.093333pt;}
.y53{bottom:945.253333pt;}
.y40{bottom:945.573333pt;}
.h7{height:57.375000pt;}
.h1{height:58.563750pt;}
.h3{height:62.812500pt;}
.h4{height:64.500000pt;}
.h5{height:65.781915pt;}
.h6{height:66.625000pt;}
.h2{height:75.465000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:96.032000pt;}
.x2{left:119.872000pt;}
.xf{left:133.466667pt;}
.x12{left:143.226667pt;}
.x17{left:144.506667pt;}
.x3{left:156.986667pt;}
.xc{left:163.546667pt;}
.x13{left:167.866667pt;}
.x15{left:192.026667pt;}
.xa{left:237.306667pt;}
.x4{left:259.386667pt;}
.x8{left:275.386667pt;}
.x7{left:307.746667pt;}
.xb{left:355.106667pt;}
.x9{left:364.546667pt;}
.x16{left:380.066667pt;}
.x10{left:383.266667pt;}
.xd{left:385.666667pt;}
.x11{left:387.586667pt;}
.x5{left:419.906667pt;}
.x6{left:602.013333pt;}
.x14{left:705.253333pt;}
.x1{left:712.773333pt;}
}

