
    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_1c6f322e1eb1525edca44a0c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_12f03cd811787c2aea7f7755.woff')format("woff");}.ff2{font-family:ff2;line-height:1.392578;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_bd14a8ce75f919766c216818.woff')format("woff");}.ff3{font-family:ff3;line-height:1.392578;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_b909bef7584361dd0ddc1633.woff')format("woff");}.ff4{font-family:ff4;line-height:0.956543;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_ae327537fc7debaac273d376.woff')format("woff");}.ff6{font-family:ff6;line-height:1.592000;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;}
.lsb{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.288000px;}
.lse{letter-spacing:0.864000px;}
.ls1a{letter-spacing:1.584000px;}
.ls14{letter-spacing:2.304000px;}
.ls9{letter-spacing:3.024000px;}
.ls1d{letter-spacing:3.744000px;}
.ls20{letter-spacing:4.464000px;}
.ls12{letter-spacing:5.184000px;}
.ls23{letter-spacing:5.904000px;}
.lsf{letter-spacing:6.624000px;}
.lsd{letter-spacing:7.344000px;}
.ls22{letter-spacing:8.064000px;}
.ls1b{letter-spacing:8.784000px;}
.ls15{letter-spacing:9.504000px;}
.ls1e{letter-spacing:10.224000px;}
.ls21{letter-spacing:10.944000px;}
.ls10{letter-spacing:11.664000px;}
.lsa{letter-spacing:12.384000px;}
.ls13{letter-spacing:13.824000px;}
.ls8{letter-spacing:14.544000px;}
.ls11{letter-spacing:17.424000px;}
.ls18{letter-spacing:18.864000px;}
.ls17{letter-spacing:19.584000px;}
.ls19{letter-spacing:23.904000px;}
.ls1f{letter-spacing:29.664000px;}
.ls3{letter-spacing:32.544000px;}
.ls24{letter-spacing:42.624000px;}
.ls16{letter-spacing:54.864000px;}
.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;}
}
.ws1{word-spacing:-16.704000px;}
.ws4{word-spacing:-16.632000px;}
.ws0{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.416000px;}
.ws2{word-spacing:-16.344000px;}
.ws18{word-spacing:-16.272000px;}
.ws5{word-spacing:-16.200000px;}
.ws19{word-spacing:-15.984000px;}
.ws9{word-spacing:-0.864000px;}
.ws42{word-spacing:-0.432000px;}
.ws22{word-spacing:-0.288000px;}
.ws3f{word-spacing:-0.216000px;}
.ws8{word-spacing:-0.144000px;}
.ws7{word-spacing:0.000000px;}
.ws3c{word-spacing:0.072000px;}
.ws33{word-spacing:0.144000px;}
.wsa{word-spacing:0.216000px;}
.ws6{word-spacing:0.288000px;}
.ws2b{word-spacing:0.432000px;}
.ws13{word-spacing:0.576000px;}
.ws1a{word-spacing:0.720000px;}
.ws39{word-spacing:0.864000px;}
.ws34{word-spacing:1.080000px;}
.wsd{word-spacing:1.296000px;}
.ws4a{word-spacing:1.440000px;}
.ws15{word-spacing:2.016000px;}
.ws46{word-spacing:2.448000px;}
.ws10{word-spacing:2.736000px;}
.ws40{word-spacing:3.024000px;}
.ws36{word-spacing:3.240000px;}
.ws29{word-spacing:3.456000px;}
.ws49{word-spacing:3.600000px;}
.ws14{word-spacing:4.176000px;}
.wsf{word-spacing:4.896000px;}
.ws32{word-spacing:5.040000px;}
.ws1b{word-spacing:5.616000px;}
.ws41{word-spacing:5.760000px;}
.ws23{word-spacing:6.336000px;}
.ws31{word-spacing:6.768000px;}
.wsc{word-spacing:7.056000px;}
.ws11{word-spacing:7.776000px;}
.ws12{word-spacing:8.496000px;}
.ws21{word-spacing:9.216000px;}
.ws3d{word-spacing:9.648000px;}
.ws2a{word-spacing:9.936000px;}
.ws28{word-spacing:10.656000px;}
.ws47{word-spacing:10.800000px;}
.ws48{word-spacing:11.088000px;}
.ws25{word-spacing:11.376000px;}
.wse{word-spacing:12.096000px;}
.ws26{word-spacing:12.600000px;}
.ws1e{word-spacing:12.816000px;}
.ws1d{word-spacing:13.536000px;}
.ws1f{word-spacing:14.256000px;}
.ws20{word-spacing:14.976000px;}
.ws2d{word-spacing:15.696000px;}
.ws37{word-spacing:16.416000px;}
.ws2e{word-spacing:17.136000px;}
.ws2f{word-spacing:17.424000px;}
.ws38{word-spacing:17.856000px;}
.ws27{word-spacing:18.576000px;}
.wsb{word-spacing:19.296000px;}
.ws3b{word-spacing:20.016000px;}
.ws16{word-spacing:20.736000px;}
.ws1c{word-spacing:21.456000px;}
.ws43{word-spacing:22.896000px;}
.ws3a{word-spacing:23.616000px;}
.ws2c{word-spacing:24.336000px;}
.ws24{word-spacing:25.056000px;}
.ws35{word-spacing:25.776000px;}
.ws30{word-spacing:27.936000px;}
.ws3e{word-spacing:29.376000px;}
.ws17{word-spacing:32.256000px;}
.ws44{word-spacing:42.120000px;}
.ws45{word-spacing:42.336000px;}
._c{margin-left:-42.408000px;}
._2{margin-left:-2.016000px;}
._1{margin-left:-1.008000px;}
._0{width:1.080000px;}
._a{width:2.664000px;}
._9{width:4.464000px;}
._6{width:6.696000px;}
._b{width:8.136000px;}
._4{width:9.288000px;}
._7{width:12.024000px;}
._8{width:17.424000px;}
._5{width:18.648000px;}
._3{width:31.896000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:3.156000px;}
.y28{bottom:37.500091px;}
.y7c{bottom:123.120000px;}
.y7b{bottom:143.820000px;}
.yb1{bottom:156.240000px;}
.y7a{bottom:164.340000px;}
.yb0{bottom:176.940000px;}
.y27{bottom:182.520000px;}
.y79{bottom:185.040000px;}
.ya0{bottom:186.300000px;}
.yaf{bottom:215.280000px;}
.y26{bottom:221.220000px;}
.y78{bottom:224.820000px;}
.yae{bottom:235.980000px;}
.y77{bottom:245.520000px;}
.y25{bottom:259.560000px;}
.y51{bottom:263.340000px;}
.y76{bottom:266.040000px;}
.yad{bottom:274.500000px;}
.y24{bottom:280.260000px;}
.ya5{bottom:284.040000px;}
.y75{bottom:286.740000px;}
.y50{bottom:301.860000px;}
.y9f{bottom:304.560000px;}
.yac{bottom:313.020000px;}
.y23{bottom:318.780000px;}
.y4f{bottom:322.380000px;}
.y74{bottom:325.260000px;}
.y4e{bottom:343.080000px;}
.y73{bottom:345.960000px;}
.yab{bottom:351.540000px;}
.y9c{bottom:351.900000px;}
.y22{bottom:357.480000px;}
.y4d{bottom:363.780000px;}
.y72{bottom:366.660000px;}
.yaa{bottom:372.240000px;}
.y4c{bottom:384.480000px;}
.y71{bottom:387.180000px;}
.y9b{bottom:390.420000px;}
.y21{bottom:396.000000px;}
.y4b{bottom:405.000000px;}
.y70{bottom:407.880000px;}
.ya9{bottom:410.760000px;}
.y9a{bottom:411.120000px;}
.y20{bottom:416.700000px;}
.y4a{bottom:425.700000px;}
.y6f{bottom:428.580000px;}
.y99{bottom:431.640000px;}
.y1f{bottom:437.220000px;}
.y49{bottom:446.400000px;}
.y6e{bottom:449.280000px;}
.y98{bottom:452.340000px;}
.y1e{bottom:457.920000px;}
.y48{bottom:467.100000px;}
.y6d{bottom:469.800000px;}
.y97{bottom:473.040000px;}
.y1d{bottom:478.620000px;}
.y47{bottom:487.620000px;}
.y6c{bottom:490.500000px;}
.y96{bottom:493.740000px;}
.y1c{bottom:499.320000px;}
.y46{bottom:508.320000px;}
.y6b{bottom:511.200000px;}
.y95{bottom:514.260000px;}
.y1b{bottom:519.840000px;}
.y9e{bottom:529.020000px;}
.y6a{bottom:531.900000px;}
.y94{bottom:534.960000px;}
.y1a{bottom:540.540000px;}
.y45{bottom:546.840000px;}
.ya4{bottom:549.720000px;}
.y69{bottom:552.420000px;}
.y93{bottom:555.660000px;}
.y19{bottom:561.240000px;}
.y44{bottom:567.540000px;}
.ya3{bottom:570.240000px;}
.y68{bottom:573.120000px;}
.y92{bottom:576.360000px;}
.y18{bottom:581.940000px;}
.y43{bottom:588.240000px;}
.ya2{bottom:590.940000px;}
.y91{bottom:596.880000px;}
.y17{bottom:602.460000px;}
.y42{bottom:608.760000px;}
.y67{bottom:611.640000px;}
.y16{bottom:623.160000px;}
.y41{bottom:629.460000px;}
.y66{bottom:632.340000px;}
.ybf{bottom:634.140000px;}
.y90{bottom:635.400000px;}
.y15{bottom:643.860000px;}
.y40{bottom:650.160000px;}
.y65{bottom:652.860000px;}
.y8f{bottom:656.100000px;}
.y14{bottom:664.380000px;}
.y3f{bottom:670.860000px;}
.ybe{bottom:672.660000px;}
.y64{bottom:673.560000px;}
.y8e{bottom:676.800000px;}
.y3e{bottom:691.380000px;}
.ybd{bottom:693.360000px;}
.y63{bottom:694.260000px;}
.y8d{bottom:697.320000px;}
.y13{bottom:702.900000px;}
.y3d{bottom:712.080000px;}
.y62{bottom:714.960000px;}
.y8c{bottom:718.020000px;}
.ybc{bottom:728.820000px;}
.y3c{bottom:732.780000px;}
.y61{bottom:735.480000px;}
.y12{bottom:741.420000px;}
.ybb{bottom:749.700000px;}
.y3b{bottom:753.480000px;}
.y60{bottom:756.180000px;}
.y8b{bottom:756.540000px;}
.yba{bottom:770.220000px;}
.y3a{bottom:774.000000px;}
.y5f{bottom:776.880000px;}
.y11{bottom:779.940000px;}
.y39{bottom:794.700000px;}
.y8a{bottom:795.060000px;}
.y5e{bottom:797.580000px;}
.yb9{bottom:805.680000px;}
.y10{bottom:809.640000px;}
.y38{bottom:815.400000px;}
.y5d{bottom:818.100000px;}
.yb8{bottom:826.560000px;}
.yf{bottom:830.160000px;}
.ya1{bottom:833.220000px;}
.y89{bottom:833.580000px;}
.y9d{bottom:836.100000px;}
.y5c{bottom:838.800000px;}
.ye{bottom:850.860000px;}
.y37{bottom:853.920000px;}
.y88{bottom:854.280000px;}
.ya8{bottom:856.620000px;}
.y5b{bottom:859.500000px;}
.yb7{bottom:865.080000px;}
.yd{bottom:871.560000px;}
.y36{bottom:874.440000px;}
.y87{bottom:874.800000px;}
.ya7{bottom:877.320000px;}
.y5a{bottom:880.200000px;}
.yb6{bottom:885.780000px;}
.yc{bottom:892.260000px;}
.y35{bottom:895.140000px;}
.y86{bottom:895.500000px;}
.ya6{bottom:898.020000px;}
.y59{bottom:900.720000px;}
.yb{bottom:912.780000px;}
.y34{bottom:915.840000px;}
.y85{bottom:916.200000px;}
.y58{bottom:921.420000px;}
.yb5{bottom:924.300000px;}
.ya{bottom:933.480000px;}
.y33{bottom:936.540000px;}
.y84{bottom:936.720000px;}
.y57{bottom:942.120000px;}
.yb4{bottom:944.820000px;}
.y9{bottom:954.180000px;}
.y32{bottom:957.060000px;}
.y8{bottom:974.880000px;}
.y83{bottom:976.500000px;}
.y31{bottom:977.760000px;}
.y56{bottom:980.640000px;}
.yb3{bottom:983.340000px;}
.y7{bottom:995.400000px;}
.y82{bottom:997.200000px;}
.y30{bottom:998.460000px;}
.y55{bottom:1001.340000px;}
.yb2{bottom:1004.040000px;}
.y6{bottom:1016.100000px;}
.y81{bottom:1017.900000px;}
.y2f{bottom:1019.160000px;}
.y54{bottom:1021.860000px;}
.y5{bottom:1036.800000px;}
.y80{bottom:1038.600000px;}
.y2e{bottom:1039.680000px;}
.y53{bottom:1042.560000px;}
.y4{bottom:1057.500000px;}
.y7f{bottom:1059.120000px;}
.y2d{bottom:1060.380000px;}
.y52{bottom:1063.260000px;}
.y3{bottom:1078.020000px;}
.y2c{bottom:1081.080000px;}
.y2{bottom:1098.720000px;}
.y7e{bottom:1098.900000px;}
.y2b{bottom:1101.780000px;}
.y1{bottom:1119.420000px;}
.y7d{bottom:1119.600000px;}
.y2a{bottom:1140.300000px;}
.h4{height:16.500090px;}
.h5{height:65.156250px;}
.h2{height:76.824000px;}
.h3{height:78.187500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:42.393000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:127.620000px;}
.xc{left:154.620000px;}
.xd{left:181.620000px;}
.x1{left:209.880000px;}
.x7{left:350.640000px;}
.x4{left:357.120000px;}
.x5{left:368.100000px;}
.x3{left:383.400000px;}
.x9{left:387.180000px;}
.x6{left:391.320000px;}
.x8{left:392.580000px;}
.xb{left:425.293488px;}
.x2{left:446.580000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.768000pt;}
.ls1a{letter-spacing:1.408000pt;}
.ls14{letter-spacing:2.048000pt;}
.ls9{letter-spacing:2.688000pt;}
.ls1d{letter-spacing:3.328000pt;}
.ls20{letter-spacing:3.968000pt;}
.ls12{letter-spacing:4.608000pt;}
.ls23{letter-spacing:5.248000pt;}
.lsf{letter-spacing:5.888000pt;}
.lsd{letter-spacing:6.528000pt;}
.ls22{letter-spacing:7.168000pt;}
.ls1b{letter-spacing:7.808000pt;}
.ls15{letter-spacing:8.448000pt;}
.ls1e{letter-spacing:9.088000pt;}
.ls21{letter-spacing:9.728000pt;}
.ls10{letter-spacing:10.368000pt;}
.lsa{letter-spacing:11.008000pt;}
.ls13{letter-spacing:12.288000pt;}
.ls8{letter-spacing:12.928000pt;}
.ls11{letter-spacing:15.488000pt;}
.ls18{letter-spacing:16.768000pt;}
.ls17{letter-spacing:17.408000pt;}
.ls19{letter-spacing:21.248000pt;}
.ls1f{letter-spacing:26.368000pt;}
.ls3{letter-spacing:28.928000pt;}
.ls24{letter-spacing:37.888000pt;}
.ls16{letter-spacing:48.768000pt;}
.ws1{word-spacing:-14.848000pt;}
.ws4{word-spacing:-14.784000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.592000pt;}
.ws2{word-spacing:-14.528000pt;}
.ws18{word-spacing:-14.464000pt;}
.ws5{word-spacing:-14.400000pt;}
.ws19{word-spacing:-14.208000pt;}
.ws9{word-spacing:-0.768000pt;}
.ws42{word-spacing:-0.384000pt;}
.ws22{word-spacing:-0.256000pt;}
.ws3f{word-spacing:-0.192000pt;}
.ws8{word-spacing:-0.128000pt;}
.ws7{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.064000pt;}
.ws33{word-spacing:0.128000pt;}
.wsa{word-spacing:0.192000pt;}
.ws6{word-spacing:0.256000pt;}
.ws2b{word-spacing:0.384000pt;}
.ws13{word-spacing:0.512000pt;}
.ws1a{word-spacing:0.640000pt;}
.ws39{word-spacing:0.768000pt;}
.ws34{word-spacing:0.960000pt;}
.wsd{word-spacing:1.152000pt;}
.ws4a{word-spacing:1.280000pt;}
.ws15{word-spacing:1.792000pt;}
.ws46{word-spacing:2.176000pt;}
.ws10{word-spacing:2.432000pt;}
.ws40{word-spacing:2.688000pt;}
.ws36{word-spacing:2.880000pt;}
.ws29{word-spacing:3.072000pt;}
.ws49{word-spacing:3.200000pt;}
.ws14{word-spacing:3.712000pt;}
.wsf{word-spacing:4.352000pt;}
.ws32{word-spacing:4.480000pt;}
.ws1b{word-spacing:4.992000pt;}
.ws41{word-spacing:5.120000pt;}
.ws23{word-spacing:5.632000pt;}
.ws31{word-spacing:6.016000pt;}
.wsc{word-spacing:6.272000pt;}
.ws11{word-spacing:6.912000pt;}
.ws12{word-spacing:7.552000pt;}
.ws21{word-spacing:8.192000pt;}
.ws3d{word-spacing:8.576000pt;}
.ws2a{word-spacing:8.832000pt;}
.ws28{word-spacing:9.472000pt;}
.ws47{word-spacing:9.600000pt;}
.ws48{word-spacing:9.856000pt;}
.ws25{word-spacing:10.112000pt;}
.wse{word-spacing:10.752000pt;}
.ws26{word-spacing:11.200000pt;}
.ws1e{word-spacing:11.392000pt;}
.ws1d{word-spacing:12.032000pt;}
.ws1f{word-spacing:12.672000pt;}
.ws20{word-spacing:13.312000pt;}
.ws2d{word-spacing:13.952000pt;}
.ws37{word-spacing:14.592000pt;}
.ws2e{word-spacing:15.232000pt;}
.ws2f{word-spacing:15.488000pt;}
.ws38{word-spacing:15.872000pt;}
.ws27{word-spacing:16.512000pt;}
.wsb{word-spacing:17.152000pt;}
.ws3b{word-spacing:17.792000pt;}
.ws16{word-spacing:18.432000pt;}
.ws1c{word-spacing:19.072000pt;}
.ws43{word-spacing:20.352000pt;}
.ws3a{word-spacing:20.992000pt;}
.ws2c{word-spacing:21.632000pt;}
.ws24{word-spacing:22.272000pt;}
.ws35{word-spacing:22.912000pt;}
.ws30{word-spacing:24.832000pt;}
.ws3e{word-spacing:26.112000pt;}
.ws17{word-spacing:28.672000pt;}
.ws44{word-spacing:37.440000pt;}
.ws45{word-spacing:37.632000pt;}
._c{margin-left:-37.696000pt;}
._2{margin-left:-1.792000pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.960000pt;}
._a{width:2.368000pt;}
._9{width:3.968000pt;}
._6{width:5.952000pt;}
._b{width:7.232000pt;}
._4{width:8.256000pt;}
._7{width:10.688000pt;}
._8{width:15.488000pt;}
._5{width:16.576000pt;}
._3{width:28.352000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:2.805333pt;}
.y28{bottom:33.333415pt;}
.y7c{bottom:109.440000pt;}
.y7b{bottom:127.840000pt;}
.yb1{bottom:138.880000pt;}
.y7a{bottom:146.080000pt;}
.yb0{bottom:157.280000pt;}
.y27{bottom:162.240000pt;}
.y79{bottom:164.480000pt;}
.ya0{bottom:165.600000pt;}
.yaf{bottom:191.360000pt;}
.y26{bottom:196.640000pt;}
.y78{bottom:199.840000pt;}
.yae{bottom:209.760000pt;}
.y77{bottom:218.240000pt;}
.y25{bottom:230.720000pt;}
.y51{bottom:234.080000pt;}
.y76{bottom:236.480000pt;}
.yad{bottom:244.000000pt;}
.y24{bottom:249.120000pt;}
.ya5{bottom:252.480000pt;}
.y75{bottom:254.880000pt;}
.y50{bottom:268.320000pt;}
.y9f{bottom:270.720000pt;}
.yac{bottom:278.240000pt;}
.y23{bottom:283.360000pt;}
.y4f{bottom:286.560000pt;}
.y74{bottom:289.120000pt;}
.y4e{bottom:304.960000pt;}
.y73{bottom:307.520000pt;}
.yab{bottom:312.480000pt;}
.y9c{bottom:312.800000pt;}
.y22{bottom:317.760000pt;}
.y4d{bottom:323.360000pt;}
.y72{bottom:325.920000pt;}
.yaa{bottom:330.880000pt;}
.y4c{bottom:341.760000pt;}
.y71{bottom:344.160000pt;}
.y9b{bottom:347.040000pt;}
.y21{bottom:352.000000pt;}
.y4b{bottom:360.000000pt;}
.y70{bottom:362.560000pt;}
.ya9{bottom:365.120000pt;}
.y9a{bottom:365.440000pt;}
.y20{bottom:370.400000pt;}
.y4a{bottom:378.400000pt;}
.y6f{bottom:380.960000pt;}
.y99{bottom:383.680000pt;}
.y1f{bottom:388.640000pt;}
.y49{bottom:396.800000pt;}
.y6e{bottom:399.360000pt;}
.y98{bottom:402.080000pt;}
.y1e{bottom:407.040000pt;}
.y48{bottom:415.200000pt;}
.y6d{bottom:417.600000pt;}
.y97{bottom:420.480000pt;}
.y1d{bottom:425.440000pt;}
.y47{bottom:433.440000pt;}
.y6c{bottom:436.000000pt;}
.y96{bottom:438.880000pt;}
.y1c{bottom:443.840000pt;}
.y46{bottom:451.840000pt;}
.y6b{bottom:454.400000pt;}
.y95{bottom:457.120000pt;}
.y1b{bottom:462.080000pt;}
.y9e{bottom:470.240000pt;}
.y6a{bottom:472.800000pt;}
.y94{bottom:475.520000pt;}
.y1a{bottom:480.480000pt;}
.y45{bottom:486.080000pt;}
.ya4{bottom:488.640000pt;}
.y69{bottom:491.040000pt;}
.y93{bottom:493.920000pt;}
.y19{bottom:498.880000pt;}
.y44{bottom:504.480000pt;}
.ya3{bottom:506.880000pt;}
.y68{bottom:509.440000pt;}
.y92{bottom:512.320000pt;}
.y18{bottom:517.280000pt;}
.y43{bottom:522.880000pt;}
.ya2{bottom:525.280000pt;}
.y91{bottom:530.560000pt;}
.y17{bottom:535.520000pt;}
.y42{bottom:541.120000pt;}
.y67{bottom:543.680000pt;}
.y16{bottom:553.920000pt;}
.y41{bottom:559.520000pt;}
.y66{bottom:562.080000pt;}
.ybf{bottom:563.680000pt;}
.y90{bottom:564.800000pt;}
.y15{bottom:572.320000pt;}
.y40{bottom:577.920000pt;}
.y65{bottom:580.320000pt;}
.y8f{bottom:583.200000pt;}
.y14{bottom:590.560000pt;}
.y3f{bottom:596.320000pt;}
.ybe{bottom:597.920000pt;}
.y64{bottom:598.720000pt;}
.y8e{bottom:601.600000pt;}
.y3e{bottom:614.560000pt;}
.ybd{bottom:616.320000pt;}
.y63{bottom:617.120000pt;}
.y8d{bottom:619.840000pt;}
.y13{bottom:624.800000pt;}
.y3d{bottom:632.960000pt;}
.y62{bottom:635.520000pt;}
.y8c{bottom:638.240000pt;}
.ybc{bottom:647.840000pt;}
.y3c{bottom:651.360000pt;}
.y61{bottom:653.760000pt;}
.y12{bottom:659.040000pt;}
.ybb{bottom:666.400000pt;}
.y3b{bottom:669.760000pt;}
.y60{bottom:672.160000pt;}
.y8b{bottom:672.480000pt;}
.yba{bottom:684.640000pt;}
.y3a{bottom:688.000000pt;}
.y5f{bottom:690.560000pt;}
.y11{bottom:693.280000pt;}
.y39{bottom:706.400000pt;}
.y8a{bottom:706.720000pt;}
.y5e{bottom:708.960000pt;}
.yb9{bottom:716.160000pt;}
.y10{bottom:719.680000pt;}
.y38{bottom:724.800000pt;}
.y5d{bottom:727.200000pt;}
.yb8{bottom:734.720000pt;}
.yf{bottom:737.920000pt;}
.ya1{bottom:740.640000pt;}
.y89{bottom:740.960000pt;}
.y9d{bottom:743.200000pt;}
.y5c{bottom:745.600000pt;}
.ye{bottom:756.320000pt;}
.y37{bottom:759.040000pt;}
.y88{bottom:759.360000pt;}
.ya8{bottom:761.440000pt;}
.y5b{bottom:764.000000pt;}
.yb7{bottom:768.960000pt;}
.yd{bottom:774.720000pt;}
.y36{bottom:777.280000pt;}
.y87{bottom:777.600000pt;}
.ya7{bottom:779.840000pt;}
.y5a{bottom:782.400000pt;}
.yb6{bottom:787.360000pt;}
.yc{bottom:793.120000pt;}
.y35{bottom:795.680000pt;}
.y86{bottom:796.000000pt;}
.ya6{bottom:798.240000pt;}
.y59{bottom:800.640000pt;}
.yb{bottom:811.360000pt;}
.y34{bottom:814.080000pt;}
.y85{bottom:814.400000pt;}
.y58{bottom:819.040000pt;}
.yb5{bottom:821.600000pt;}
.ya{bottom:829.760000pt;}
.y33{bottom:832.480000pt;}
.y84{bottom:832.640000pt;}
.y57{bottom:837.440000pt;}
.yb4{bottom:839.840000pt;}
.y9{bottom:848.160000pt;}
.y32{bottom:850.720000pt;}
.y8{bottom:866.560000pt;}
.y83{bottom:868.000000pt;}
.y31{bottom:869.120000pt;}
.y56{bottom:871.680000pt;}
.yb3{bottom:874.080000pt;}
.y7{bottom:884.800000pt;}
.y82{bottom:886.400000pt;}
.y30{bottom:887.520000pt;}
.y55{bottom:890.080000pt;}
.yb2{bottom:892.480000pt;}
.y6{bottom:903.200000pt;}
.y81{bottom:904.800000pt;}
.y2f{bottom:905.920000pt;}
.y54{bottom:908.320000pt;}
.y5{bottom:921.600000pt;}
.y80{bottom:923.200000pt;}
.y2e{bottom:924.160000pt;}
.y53{bottom:926.720000pt;}
.y4{bottom:940.000000pt;}
.y7f{bottom:941.440000pt;}
.y2d{bottom:942.560000pt;}
.y52{bottom:945.120000pt;}
.y3{bottom:958.240000pt;}
.y2c{bottom:960.960000pt;}
.y2{bottom:976.640000pt;}
.y7e{bottom:976.800000pt;}
.y2b{bottom:979.360000pt;}
.y1{bottom:995.040000pt;}
.y7d{bottom:995.200000pt;}
.y2a{bottom:1013.600000pt;}
.h4{height:14.666747pt;}
.h5{height:57.916667pt;}
.h2{height:68.288000pt;}
.h3{height:69.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:37.682667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:113.440000pt;}
.xc{left:137.440000pt;}
.xd{left:161.440000pt;}
.x1{left:186.560000pt;}
.x7{left:311.680000pt;}
.x4{left:317.440000pt;}
.x5{left:327.200000pt;}
.x3{left:340.800000pt;}
.x9{left:344.160000pt;}
.x6{left:347.840000pt;}
.x8{left:348.960000pt;}
.xb{left:378.038656pt;}
.x2{left:396.960000pt;}
}

