
    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_330f9760b7cfbb9188e3f282.woff')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_5626879c2c8909aceaf30301.woff')format("woff");}.ff2{font-family:ff2;line-height:1.166504;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_67e0b8995a52f35d8f66a48f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.166504;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_93591e6be63f55eaddeee729.woff')format("woff");}.ff4{font-family:ff4;line-height:0.916016;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_08f51d3218e4dc67f596fd74.woff')format("woff");}.ff5{font-family:ff5;line-height:0.972656;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_330f9760b7cfbb9188e3f282.woff')format("woff");}.ff6{font-family:ff6;line-height:0.691406;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_be7a817c15a7c75aa33fbd3a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.166504;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_f1c799cfc5220c316a4c6083.woff')format("woff");}.ff8{font-family:ff8;line-height:1.166504;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_b31e68f02c14781ef970e1ac.woff')format("woff");}.ff9{font-family:ff9;line-height:0.706543;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:ffa;src:url('chunks/assets/font_fb1edcb35803699532f06f35.woff')format("woff");}.ffa{font-family:ffa;line-height:1.007324;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:ffb;src:url('chunks/assets/font_88eff143651c25f69b29259b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.973145;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:ffc;src:url('chunks/assets/font_4c2bc2ddb06bf5c7920fdd2d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.770996;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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.385800px;}
.lsb{letter-spacing:-0.273600px;}
.ls8{letter-spacing:-0.200400px;}
.ls9{letter-spacing:-0.147000px;}
.ls3{letter-spacing:-0.010080px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.136800px;}
.ls7{letter-spacing:0.158400px;}
.ls4{letter-spacing:0.244800px;}
.ls1{letter-spacing:0.352800px;}
.ls6{letter-spacing:0.553200px;}
.ls0{letter-spacing:0.859680px;}
.lsc{letter-spacing:0.966000px;}
.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;}
}
.ws5{word-spacing:-11.762640px;}
.ws0{word-spacing:-11.625840px;}
.ws1{word-spacing:-10.959840px;}
.ws3{word-spacing:-10.607040px;}
.ws9{word-spacing:-10.308960px;}
.ws6{word-spacing:-10.222560px;}
.ws2{word-spacing:-10.064160px;}
.ws8{word-spacing:-9.917160px;}
.ws7{word-spacing:-9.863760px;}
.wsa{word-spacing:-9.790560px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.182240px;}
._1{width:1.044000px;}
._c{width:2.046240px;}
._10{width:3.108000px;}
._2{width:4.134240px;}
._7{width:5.466720px;}
._6{width:6.598080px;}
._5{width:8.017920px;}
._1b{width:9.020160px;}
._f{width:11.901600px;}
._12{width:12.945600px;}
._13{width:14.365440px;}
._1c{width:15.701760px;}
._17{width:17.330400px;}
._2a{width:18.332640px;}
._3{width:19.334880px;}
._11{width:20.504160px;}
._e{width:21.589920px;}
._b{width:23.260320px;}
._1f{width:24.304320px;}
._4{width:25.306560px;}
._1d{width:26.768160px;}
._21{width:28.234080px;}
._28{width:29.645280px;}
._22{width:30.651840px;}
._14{width:31.779360px;}
._1e{width:33.073920px;}
._29{width:34.326720px;}
._2d{width:35.611200px;}
._26{width:37.291680px;}
._d{width:38.419200px;}
._20{width:39.964320px;}
._23{width:41.258880px;}
._2e{width:42.762240px;}
._16{width:44.307360px;}
._a{width:45.643680px;}
._2f{width:46.771200px;}
._27{width:48.191040px;}
._24{width:49.861440px;}
._19{width:51.907680px;}
._18{width:52.951680px;}
._1a{width:53.964000px;}
._2b{width:55.039680px;}
._2c{width:56.125440px;}
._15{width:62.890560px;}
._25{width:64.143360px;}
._8{width:69.238080px;}
._9{width:70.532640px;}
.fc2{color:transparent;}
.fc1{color:rgb(131,160,168);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:216.000000px;}
.y48{bottom:-155.190000px;}
.y47{bottom:-68.970000px;}
.y0{bottom:0.000000px;}
.y46{bottom:1.800000px;}
.y2{bottom:55.800000px;}
.y80{bottom:110.016000px;}
.ydc{bottom:119.556000px;}
.y42{bottom:120.456000px;}
.ya3{bottom:121.896000px;}
.y7f{bottom:123.876000px;}
.ydb{bottom:131.616000px;}
.y41{bottom:132.336000px;}
.ya2{bottom:135.576000px;}
.y7e{bottom:137.556000px;}
.yda{bottom:143.496000px;}
.y40{bottom:144.216000px;}
.ya1{bottom:149.256000px;}
.y7d{bottom:151.230000px;}
.yd9{bottom:155.370000px;}
.y3f{bottom:156.090000px;}
.ya0{bottom:162.930000px;}
.y7c{bottom:164.910000px;}
.yd8{bottom:167.430000px;}
.y3e{bottom:168.150000px;}
.y9f{bottom:176.790000px;}
.y7b{bottom:178.590000px;}
.yd7{bottom:179.310000px;}
.y3d{bottom:180.030000px;}
.y9e{bottom:190.470000px;}
.yd6{bottom:191.190000px;}
.y3c{bottom:191.910000px;}
.y7a{bottom:192.450000px;}
.yd5{bottom:203.070000px;}
.y3b{bottom:203.970000px;}
.y9d{bottom:204.150000px;}
.y79{bottom:206.130000px;}
.yd4{bottom:215.130000px;}
.y3a{bottom:215.850000px;}
.y9c{bottom:217.830000px;}
.y78{bottom:219.810000px;}
.yd3{bottom:227.010000px;}
.y39{bottom:227.730000px;}
.y9b{bottom:231.510000px;}
.y77{bottom:233.490000px;}
.yd2{bottom:238.890000px;}
.y38{bottom:239.610000px;}
.y9a{bottom:245.370000px;}
.y76{bottom:247.350000px;}
.yd1{bottom:250.950000px;}
.y37{bottom:251.670000px;}
.y99{bottom:259.050000px;}
.y75{bottom:261.030000px;}
.yd0{bottom:262.830000px;}
.y36{bottom:263.550000px;}
.y98{bottom:272.730000px;}
.y74{bottom:274.710000px;}
.y35{bottom:275.430000px;}
.y97{bottom:286.455000px;}
.ycf{bottom:286.635000px;}
.y34{bottom:287.535000px;}
.y73{bottom:288.435000px;}
.yce{bottom:298.695000px;}
.y33{bottom:299.415000px;}
.y96{bottom:300.315000px;}
.y72{bottom:302.115000px;}
.ycd{bottom:310.575000px;}
.y32{bottom:311.295000px;}
.y95{bottom:313.995000px;}
.y71{bottom:315.975000px;}
.ycc{bottom:322.455000px;}
.y31{bottom:323.175000px;}
.y94{bottom:327.675000px;}
.y70{bottom:329.655000px;}
.ycb{bottom:334.335000px;}
.y30{bottom:335.235000px;}
.y93{bottom:341.355000px;}
.y6f{bottom:343.335000px;}
.yca{bottom:346.395000px;}
.y2f{bottom:347.115000px;}
.y92{bottom:355.035000px;}
.y6e{bottom:357.015000px;}
.yc9{bottom:358.275000px;}
.y2e{bottom:358.995000px;}
.y91{bottom:368.895000px;}
.yc8{bottom:370.155000px;}
.y2d{bottom:370.875000px;}
.yc7{bottom:382.215000px;}
.y90{bottom:382.575000px;}
.y2c{bottom:382.935000px;}
.y6d{bottom:384.555000px;}
.yc6{bottom:394.095000px;}
.y2b{bottom:394.815000px;}
.y8f{bottom:396.255000px;}
.y6c{bottom:398.235000px;}
.yc5{bottom:405.975000px;}
.y2a{bottom:406.695000px;}
.y8e{bottom:409.935000px;}
.y6b{bottom:411.915000px;}
.yc4{bottom:417.855000px;}
.y29{bottom:418.755000px;}
.y8d{bottom:423.795000px;}
.y6a{bottom:425.775000px;}
.yc3{bottom:429.915000px;}
.y28{bottom:430.635000px;}
.y8c{bottom:437.475000px;}
.y69{bottom:439.455000px;}
.yc2{bottom:441.795000px;}
.y27{bottom:442.515000px;}
.y8b{bottom:451.155000px;}
.y68{bottom:453.135000px;}
.yc1{bottom:453.675000px;}
.y26{bottom:454.395000px;}
.y8a{bottom:464.835000px;}
.yc0{bottom:465.735000px;}
.y25{bottom:466.455000px;}
.y67{bottom:466.815000px;}
.ybf{bottom:477.615000px;}
.y24{bottom:478.335000px;}
.y89{bottom:478.695000px;}
.y66{bottom:480.495000px;}
.ybe{bottom:489.495000px;}
.y23{bottom:490.215000px;}
.y88{bottom:492.375000px;}
.y65{bottom:494.385000px;}
.ybd{bottom:501.405000px;}
.y22{bottom:502.305000px;}
.y87{bottom:506.085000px;}
.y64{bottom:508.065000px;}
.ybc{bottom:513.465000px;}
.y21{bottom:514.185000px;}
.y86{bottom:519.765000px;}
.y63{bottom:521.745000px;}
.ybb{bottom:525.345000px;}
.y20{bottom:526.065000px;}
.y85{bottom:533.445000px;}
.y62{bottom:535.425000px;}
.yba{bottom:537.225000px;}
.y1f{bottom:537.945000px;}
.y84{bottom:547.305000px;}
.y61{bottom:549.285000px;}
.y1e{bottom:550.005000px;}
.y83{bottom:560.985000px;}
.yb9{bottom:561.165000px;}
.y1d{bottom:561.885000px;}
.y60{bottom:562.965000px;}
.yb8{bottom:573.045000px;}
.y1c{bottom:573.765000px;}
.y82{bottom:574.665000px;}
.y5f{bottom:576.645000px;}
.yb7{bottom:584.925000px;}
.y1b{bottom:585.825000px;}
.y81{bottom:588.885000px;}
.y5e{bottom:590.325000px;}
.yb6{bottom:596.985000px;}
.y1a{bottom:597.705000px;}
.y5d{bottom:604.005000px;}
.yb5{bottom:608.865000px;}
.y19{bottom:609.585000px;}
.y5c{bottom:617.865000px;}
.yb4{bottom:620.745000px;}
.y18{bottom:621.465000px;}
.y5b{bottom:631.545000px;}
.yb3{bottom:632.625000px;}
.y17{bottom:633.525000px;}
.yb2{bottom:644.685000px;}
.y5a{bottom:645.225000px;}
.y16{bottom:645.405000px;}
.yb1{bottom:656.565000px;}
.y15{bottom:657.285000px;}
.y59{bottom:658.905000px;}
.yb0{bottom:668.445000px;}
.y14{bottom:669.165000px;}
.y58{bottom:672.765000px;}
.yaf{bottom:680.505000px;}
.y13{bottom:681.225000px;}
.y57{bottom:686.445000px;}
.yae{bottom:692.385000px;}
.y12{bottom:693.105000px;}
.yeb{bottom:694.545000px;}
.y56{bottom:700.125000px;}
.yad{bottom:704.265000px;}
.y11{bottom:705.030000px;}
.yea{bottom:710.070000px;}
.y55{bottom:713.850000px;}
.yac{bottom:716.190000px;}
.y10{bottom:717.090000px;}
.ye9{bottom:723.390000px;}
.y54{bottom:727.530000px;}
.yab{bottom:728.250000px;}
.yf{bottom:728.970000px;}
.ye8{bottom:735.270000px;}
.yaa{bottom:740.130000px;}
.ye{bottom:740.850000px;}
.y53{bottom:741.390000px;}
.ye7{bottom:747.330000px;}
.ya9{bottom:752.010000px;}
.yd{bottom:752.730000px;}
.y52{bottom:755.070000px;}
.ye6{bottom:759.210000px;}
.ya8{bottom:764.070000px;}
.yc{bottom:764.790000px;}
.y51{bottom:768.750000px;}
.ye5{bottom:771.090000px;}
.ya7{bottom:775.950000px;}
.yb{bottom:776.670000px;}
.y50{bottom:782.430000px;}
.ye4{bottom:783.150000px;}
.ya6{bottom:787.830000px;}
.ya{bottom:788.550000px;}
.ye3{bottom:795.030000px;}
.y4f{bottom:796.290000px;}
.ya5{bottom:799.710000px;}
.y9{bottom:800.610000px;}
.ye2{bottom:806.910000px;}
.y4e{bottom:809.970000px;}
.ya4{bottom:811.770000px;}
.y8{bottom:812.490000px;}
.ye1{bottom:818.790000px;}
.y4d{bottom:823.650000px;}
.y7{bottom:824.370000px;}
.ye0{bottom:830.850000px;}
.y6{bottom:836.250000px;}
.y4c{bottom:837.330000px;}
.ydf{bottom:842.730000px;}
.y5{bottom:848.310000px;}
.y4b{bottom:851.010000px;}
.yde{bottom:854.610000px;}
.y4{bottom:860.190000px;}
.y4a{bottom:864.870000px;}
.ydd{bottom:866.670000px;}
.y3{bottom:872.070000px;}
.y49{bottom:878.550000px;}
.y1{bottom:881.790000px;}
.y44{bottom:892.770000px;}
.y43{bottom:910.590000px;}
.y45{bottom:914.940000px;}
.h6{height:12.780000px;}
.h4{height:31.564687px;}
.hb{height:31.585078px;}
.ha{height:36.462656px;}
.hc{height:36.486211px;}
.h5{height:39.659766px;}
.h9{height:41.291016px;}
.h2{height:45.184219px;}
.h3{height:45.813867px;}
.h7{height:150.925781px;}
.h8{height:205.136719px;}
.h1{height:1020.000000px;}
.h0{height:1020.060000px;}
.w2{width:59.400000px;}
.w1{width:700.500000px;}
.w0{width:700.560000px;}
.x0{left:0.000000px;}
.x8{left:23.415000px;}
.xa{left:24.495000px;}
.x9{left:29.715000px;}
.x3{left:127.656000px;}
.xc{left:232.455000px;}
.x5{left:242.715000px;}
.x6{left:251.535000px;}
.x2{left:257.295000px;}
.xb{left:339.735000px;}
.x4{left:361.005000px;}
.x7{left:532.935000px;}
.xd{left:573.090000px;}
.x1{left:574.710000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.342933pt;}
.lsb{letter-spacing:-0.243200pt;}
.ls8{letter-spacing:-0.178133pt;}
.ls9{letter-spacing:-0.130667pt;}
.ls3{letter-spacing:-0.008960pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.121600pt;}
.ls7{letter-spacing:0.140800pt;}
.ls4{letter-spacing:0.217600pt;}
.ls1{letter-spacing:0.313600pt;}
.ls6{letter-spacing:0.491733pt;}
.ls0{letter-spacing:0.764160pt;}
.lsc{letter-spacing:0.858667pt;}
.ws5{word-spacing:-10.455680pt;}
.ws0{word-spacing:-10.334080pt;}
.ws1{word-spacing:-9.742080pt;}
.ws3{word-spacing:-9.428480pt;}
.ws9{word-spacing:-9.163520pt;}
.ws6{word-spacing:-9.086720pt;}
.ws2{word-spacing:-8.945920pt;}
.ws8{word-spacing:-8.815253pt;}
.ws7{word-spacing:-8.767787pt;}
.wsa{word-spacing:-8.702720pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.050880pt;}
._1{width:0.928000pt;}
._c{width:1.818880pt;}
._10{width:2.762667pt;}
._2{width:3.674880pt;}
._7{width:4.859307pt;}
._6{width:5.864960pt;}
._5{width:7.127040pt;}
._1b{width:8.017920pt;}
._f{width:10.579200pt;}
._12{width:11.507200pt;}
._13{width:12.769280pt;}
._1c{width:13.957120pt;}
._17{width:15.404800pt;}
._2a{width:16.295680pt;}
._3{width:17.186560pt;}
._11{width:18.225920pt;}
._e{width:19.191040pt;}
._b{width:20.675840pt;}
._1f{width:21.603840pt;}
._4{width:22.494720pt;}
._1d{width:23.793920pt;}
._21{width:25.096960pt;}
._28{width:26.351360pt;}
._22{width:27.246080pt;}
._14{width:28.248320pt;}
._1e{width:29.399040pt;}
._29{width:30.512640pt;}
._2d{width:31.654400pt;}
._26{width:33.148160pt;}
._d{width:34.150400pt;}
._20{width:35.523840pt;}
._23{width:36.674560pt;}
._2e{width:38.010880pt;}
._16{width:39.384320pt;}
._a{width:40.572160pt;}
._2f{width:41.574400pt;}
._27{width:42.836480pt;}
._24{width:44.321280pt;}
._19{width:46.140160pt;}
._18{width:47.068160pt;}
._1a{width:47.968000pt;}
._2b{width:48.924160pt;}
._2c{width:49.889280pt;}
._15{width:55.902720pt;}
._25{width:57.016320pt;}
._8{width:61.544960pt;}
._9{width:62.695680pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:192.000000pt;}
.y48{bottom:-137.946667pt;}
.y47{bottom:-61.306667pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:1.600000pt;}
.y2{bottom:49.600000pt;}
.y80{bottom:97.792000pt;}
.ydc{bottom:106.272000pt;}
.y42{bottom:107.072000pt;}
.ya3{bottom:108.352000pt;}
.y7f{bottom:110.112000pt;}
.ydb{bottom:116.992000pt;}
.y41{bottom:117.632000pt;}
.ya2{bottom:120.512000pt;}
.y7e{bottom:122.272000pt;}
.yda{bottom:127.552000pt;}
.y40{bottom:128.192000pt;}
.ya1{bottom:132.672000pt;}
.y7d{bottom:134.426667pt;}
.yd9{bottom:138.106667pt;}
.y3f{bottom:138.746667pt;}
.ya0{bottom:144.826667pt;}
.y7c{bottom:146.586667pt;}
.yd8{bottom:148.826667pt;}
.y3e{bottom:149.466667pt;}
.y9f{bottom:157.146667pt;}
.y7b{bottom:158.746667pt;}
.yd7{bottom:159.386667pt;}
.y3d{bottom:160.026667pt;}
.y9e{bottom:169.306667pt;}
.yd6{bottom:169.946667pt;}
.y3c{bottom:170.586667pt;}
.y7a{bottom:171.066667pt;}
.yd5{bottom:180.506667pt;}
.y3b{bottom:181.306667pt;}
.y9d{bottom:181.466667pt;}
.y79{bottom:183.226667pt;}
.yd4{bottom:191.226667pt;}
.y3a{bottom:191.866667pt;}
.y9c{bottom:193.626667pt;}
.y78{bottom:195.386667pt;}
.yd3{bottom:201.786667pt;}
.y39{bottom:202.426667pt;}
.y9b{bottom:205.786667pt;}
.y77{bottom:207.546667pt;}
.yd2{bottom:212.346667pt;}
.y38{bottom:212.986667pt;}
.y9a{bottom:218.106667pt;}
.y76{bottom:219.866667pt;}
.yd1{bottom:223.066667pt;}
.y37{bottom:223.706667pt;}
.y99{bottom:230.266667pt;}
.y75{bottom:232.026667pt;}
.yd0{bottom:233.626667pt;}
.y36{bottom:234.266667pt;}
.y98{bottom:242.426667pt;}
.y74{bottom:244.186667pt;}
.y35{bottom:244.826667pt;}
.y97{bottom:254.626667pt;}
.ycf{bottom:254.786667pt;}
.y34{bottom:255.586667pt;}
.y73{bottom:256.386667pt;}
.yce{bottom:265.506667pt;}
.y33{bottom:266.146667pt;}
.y96{bottom:266.946667pt;}
.y72{bottom:268.546667pt;}
.ycd{bottom:276.066667pt;}
.y32{bottom:276.706667pt;}
.y95{bottom:279.106667pt;}
.y71{bottom:280.866667pt;}
.ycc{bottom:286.626667pt;}
.y31{bottom:287.266667pt;}
.y94{bottom:291.266667pt;}
.y70{bottom:293.026667pt;}
.ycb{bottom:297.186667pt;}
.y30{bottom:297.986667pt;}
.y93{bottom:303.426667pt;}
.y6f{bottom:305.186667pt;}
.yca{bottom:307.906667pt;}
.y2f{bottom:308.546667pt;}
.y92{bottom:315.586667pt;}
.y6e{bottom:317.346667pt;}
.yc9{bottom:318.466667pt;}
.y2e{bottom:319.106667pt;}
.y91{bottom:327.906667pt;}
.yc8{bottom:329.026667pt;}
.y2d{bottom:329.666667pt;}
.yc7{bottom:339.746667pt;}
.y90{bottom:340.066667pt;}
.y2c{bottom:340.386667pt;}
.y6d{bottom:341.826667pt;}
.yc6{bottom:350.306667pt;}
.y2b{bottom:350.946667pt;}
.y8f{bottom:352.226667pt;}
.y6c{bottom:353.986667pt;}
.yc5{bottom:360.866667pt;}
.y2a{bottom:361.506667pt;}
.y8e{bottom:364.386667pt;}
.y6b{bottom:366.146667pt;}
.yc4{bottom:371.426667pt;}
.y29{bottom:372.226667pt;}
.y8d{bottom:376.706667pt;}
.y6a{bottom:378.466667pt;}
.yc3{bottom:382.146667pt;}
.y28{bottom:382.786667pt;}
.y8c{bottom:388.866667pt;}
.y69{bottom:390.626667pt;}
.yc2{bottom:392.706667pt;}
.y27{bottom:393.346667pt;}
.y8b{bottom:401.026667pt;}
.y68{bottom:402.786667pt;}
.yc1{bottom:403.266667pt;}
.y26{bottom:403.906667pt;}
.y8a{bottom:413.186667pt;}
.yc0{bottom:413.986667pt;}
.y25{bottom:414.626667pt;}
.y67{bottom:414.946667pt;}
.ybf{bottom:424.546667pt;}
.y24{bottom:425.186667pt;}
.y89{bottom:425.506667pt;}
.y66{bottom:427.106667pt;}
.ybe{bottom:435.106667pt;}
.y23{bottom:435.746667pt;}
.y88{bottom:437.666667pt;}
.y65{bottom:439.453333pt;}
.ybd{bottom:445.693333pt;}
.y22{bottom:446.493333pt;}
.y87{bottom:449.853333pt;}
.y64{bottom:451.613333pt;}
.ybc{bottom:456.413333pt;}
.y21{bottom:457.053333pt;}
.y86{bottom:462.013333pt;}
.y63{bottom:463.773333pt;}
.ybb{bottom:466.973333pt;}
.y20{bottom:467.613333pt;}
.y85{bottom:474.173333pt;}
.y62{bottom:475.933333pt;}
.yba{bottom:477.533333pt;}
.y1f{bottom:478.173333pt;}
.y84{bottom:486.493333pt;}
.y61{bottom:488.253333pt;}
.y1e{bottom:488.893333pt;}
.y83{bottom:498.653333pt;}
.yb9{bottom:498.813333pt;}
.y1d{bottom:499.453333pt;}
.y60{bottom:500.413333pt;}
.yb8{bottom:509.373333pt;}
.y1c{bottom:510.013333pt;}
.y82{bottom:510.813333pt;}
.y5f{bottom:512.573333pt;}
.yb7{bottom:519.933333pt;}
.y1b{bottom:520.733333pt;}
.y81{bottom:523.453333pt;}
.y5e{bottom:524.733333pt;}
.yb6{bottom:530.653333pt;}
.y1a{bottom:531.293333pt;}
.y5d{bottom:536.893333pt;}
.yb5{bottom:541.213333pt;}
.y19{bottom:541.853333pt;}
.y5c{bottom:549.213333pt;}
.yb4{bottom:551.773333pt;}
.y18{bottom:552.413333pt;}
.y5b{bottom:561.373333pt;}
.yb3{bottom:562.333333pt;}
.y17{bottom:563.133333pt;}
.yb2{bottom:573.053333pt;}
.y5a{bottom:573.533333pt;}
.y16{bottom:573.693333pt;}
.yb1{bottom:583.613333pt;}
.y15{bottom:584.253333pt;}
.y59{bottom:585.693333pt;}
.yb0{bottom:594.173333pt;}
.y14{bottom:594.813333pt;}
.y58{bottom:598.013333pt;}
.yaf{bottom:604.893333pt;}
.y13{bottom:605.533333pt;}
.y57{bottom:610.173333pt;}
.yae{bottom:615.453333pt;}
.y12{bottom:616.093333pt;}
.yeb{bottom:617.373333pt;}
.y56{bottom:622.333333pt;}
.yad{bottom:626.013333pt;}
.y11{bottom:626.693333pt;}
.yea{bottom:631.173333pt;}
.y55{bottom:634.533333pt;}
.yac{bottom:636.613333pt;}
.y10{bottom:637.413333pt;}
.ye9{bottom:643.013333pt;}
.y54{bottom:646.693333pt;}
.yab{bottom:647.333333pt;}
.yf{bottom:647.973333pt;}
.ye8{bottom:653.573333pt;}
.yaa{bottom:657.893333pt;}
.ye{bottom:658.533333pt;}
.y53{bottom:659.013333pt;}
.ye7{bottom:664.293333pt;}
.ya9{bottom:668.453333pt;}
.yd{bottom:669.093333pt;}
.y52{bottom:671.173333pt;}
.ye6{bottom:674.853333pt;}
.ya8{bottom:679.173333pt;}
.yc{bottom:679.813333pt;}
.y51{bottom:683.333333pt;}
.ye5{bottom:685.413333pt;}
.ya7{bottom:689.733333pt;}
.yb{bottom:690.373333pt;}
.y50{bottom:695.493333pt;}
.ye4{bottom:696.133333pt;}
.ya6{bottom:700.293333pt;}
.ya{bottom:700.933333pt;}
.ye3{bottom:706.693333pt;}
.y4f{bottom:707.813333pt;}
.ya5{bottom:710.853333pt;}
.y9{bottom:711.653333pt;}
.ye2{bottom:717.253333pt;}
.y4e{bottom:719.973333pt;}
.ya4{bottom:721.573333pt;}
.y8{bottom:722.213333pt;}
.ye1{bottom:727.813333pt;}
.y4d{bottom:732.133333pt;}
.y7{bottom:732.773333pt;}
.ye0{bottom:738.533333pt;}
.y6{bottom:743.333333pt;}
.y4c{bottom:744.293333pt;}
.ydf{bottom:749.093333pt;}
.y5{bottom:754.053333pt;}
.y4b{bottom:756.453333pt;}
.yde{bottom:759.653333pt;}
.y4{bottom:764.613333pt;}
.y4a{bottom:768.773333pt;}
.ydd{bottom:770.373333pt;}
.y3{bottom:775.173333pt;}
.y49{bottom:780.933333pt;}
.y1{bottom:783.813333pt;}
.y44{bottom:793.573333pt;}
.y43{bottom:809.413333pt;}
.y45{bottom:813.280000pt;}
.h6{height:11.360000pt;}
.h4{height:28.057500pt;}
.hb{height:28.075625pt;}
.ha{height:32.411250pt;}
.hc{height:32.432187pt;}
.h5{height:35.253125pt;}
.h9{height:36.703125pt;}
.h2{height:40.163750pt;}
.h3{height:40.723437pt;}
.h7{height:134.156250pt;}
.h8{height:182.343750pt;}
.h1{height:906.666667pt;}
.h0{height:906.720000pt;}
.w2{width:52.800000pt;}
.w1{width:622.666667pt;}
.w0{width:622.720000pt;}
.x0{left:0.000000pt;}
.x8{left:20.813333pt;}
.xa{left:21.773333pt;}
.x9{left:26.413333pt;}
.x3{left:113.472000pt;}
.xc{left:206.626667pt;}
.x5{left:215.746667pt;}
.x6{left:223.586667pt;}
.x2{left:228.706667pt;}
.xb{left:301.986667pt;}
.x4{left:320.893333pt;}
.x7{left:473.720000pt;}
.xd{left:509.413333pt;}
.x1{left:510.853333pt;}
}

