
    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_59b1793a63e61de813e828cc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.263000;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_ccdf8b2299d2dc2ee6482cf6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_16104d9dd245ea476cda9704.woff')format("woff");}.ff3{font-family:ff3;line-height:0.984048;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_3c69b49910d85cebe4beed1f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.692000;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_84b8b01066a8133de99dc770.woff')format("woff");}.ff5{font-family:ff5;line-height:0.918500;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_d998bdf469641c06b5127b24.woff')format("woff");}.ff6{font-family:ff6;line-height:0.962000;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_0e5716646d035637ef373f2d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.982000;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_ccdf8b2299d2dc2ee6482cf6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.984000;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_937d8a7807f0a161c7b7ecb0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.984048;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_64df2c5d94db6dadbd43df09.woff')format("woff");}.ffa{font-family:ffa;line-height:1.263000;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_ca5409fc7a0ed26b43606c8b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.692000;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);}
.v3{vertical-align:-22.977000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:22.977000px;}
.v1{vertical-align:25.974000px;}
.ls6{letter-spacing:-0.414000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000300px;}
.ls0{letter-spacing:0.936000px;}
.ls4{letter-spacing:1.596000px;}
.ls3{letter-spacing:2.052000px;}
.ls1{letter-spacing:47.797050px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-17.250000px;}
.ws1c{word-spacing:-15.822000px;}
.ws65{word-spacing:-10.056750px;}
.ws3a{word-spacing:-3.450000px;}
.ws3b{word-spacing:-3.381000px;}
.ws72{word-spacing:-3.174000px;}
.ws5e{word-spacing:-3.105000px;}
.ws46{word-spacing:-2.967000px;}
.ws43{word-spacing:-2.898000px;}
.ws55{word-spacing:-2.829000px;}
.ws6c{word-spacing:-2.760000px;}
.ws5d{word-spacing:-2.691000px;}
.ws45{word-spacing:-2.622000px;}
.ws3c{word-spacing:-2.553000px;}
.ws6d{word-spacing:-2.484000px;}
.ws7{word-spacing:-2.346000px;}
.ws48{word-spacing:-2.277000px;}
.ws4{word-spacing:-2.208000px;}
.ws42{word-spacing:-2.139000px;}
.ws24{word-spacing:-2.070000px;}
.ws35{word-spacing:-2.052000px;}
.ws8a{word-spacing:-2.001000px;}
.ws88{word-spacing:-1.932000px;}
.ws53{word-spacing:-1.794000px;}
.ws1b{word-spacing:-1.740000px;}
.ws52{word-spacing:-1.725000px;}
.ws86{word-spacing:-1.656000px;}
.ws9{word-spacing:-1.587000px;}
.ws5c{word-spacing:-1.518000px;}
.ws4a{word-spacing:-1.449000px;}
.ws71{word-spacing:-1.440000px;}
.ws87{word-spacing:-1.311000px;}
.ws27{word-spacing:-1.242000px;}
.ws18{word-spacing:-1.173000px;}
.ws70{word-spacing:-1.140000px;}
.ws61{word-spacing:-1.104000px;}
.ws2e{word-spacing:-1.035000px;}
.ws6f{word-spacing:-0.897000px;}
.ws29{word-spacing:-0.828000px;}
.ws47{word-spacing:-0.759000px;}
.ws56{word-spacing:-0.690000px;}
.wsa{word-spacing:-0.621000px;}
.ws20{word-spacing:-0.552000px;}
.ws39{word-spacing:-0.414000px;}
.ws90{word-spacing:-0.345000px;}
.ws75{word-spacing:-0.276000px;}
.ws84{word-spacing:-0.207000px;}
.ws5b{word-spacing:-0.138000px;}
.ws54{word-spacing:-0.069000px;}
.ws1{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws82{word-spacing:0.069000px;}
.ws2a{word-spacing:0.138000px;}
.wsf{word-spacing:0.207000px;}
.ws8{word-spacing:0.276000px;}
.ws4d{word-spacing:0.345000px;}
.ws77{word-spacing:0.414000px;}
.ws10{word-spacing:0.483000px;}
.ws31{word-spacing:0.552000px;}
.ws73{word-spacing:0.621000px;}
.ws32{word-spacing:0.690000px;}
.ws41{word-spacing:0.759000px;}
.ws26{word-spacing:0.828000px;}
.ws1a{word-spacing:0.897000px;}
.ws44{word-spacing:0.966000px;}
.wsc{word-spacing:1.035000px;}
.ws69{word-spacing:1.104000px;}
.wsb{word-spacing:1.173000px;}
.ws76{word-spacing:1.242000px;}
.ws12{word-spacing:1.311000px;}
.ws13{word-spacing:1.380000px;}
.ws3e{word-spacing:1.449000px;}
.ws4e{word-spacing:1.518000px;}
.ws15{word-spacing:1.656000px;}
.ws30{word-spacing:1.725000px;}
.wsd{word-spacing:1.794000px;}
.ws7e{word-spacing:1.863000px;}
.ws5{word-spacing:1.932000px;}
.ws6b{word-spacing:2.001000px;}
.ws16{word-spacing:2.070000px;}
.ws3f{word-spacing:2.139000px;}
.ws8e{word-spacing:2.208000px;}
.ws6e{word-spacing:2.277000px;}
.wse{word-spacing:2.346000px;}
.ws89{word-spacing:2.553000px;}
.ws57{word-spacing:2.622000px;}
.ws3d{word-spacing:2.691000px;}
.ws25{word-spacing:2.760000px;}
.ws5f{word-spacing:2.829000px;}
.ws36{word-spacing:2.898000px;}
.ws68{word-spacing:3.036000px;}
.ws2f{word-spacing:3.105000px;}
.ws67{word-spacing:3.174000px;}
.ws51{word-spacing:3.243000px;}
.ws38{word-spacing:3.381000px;}
.ws8b{word-spacing:3.519000px;}
.ws2b{word-spacing:3.588000px;}
.ws17{word-spacing:3.657000px;}
.ws49{word-spacing:3.795000px;}
.ws11{word-spacing:3.864000px;}
.ws33{word-spacing:3.900000px;}
.ws22{word-spacing:3.933000px;}
.ws50{word-spacing:4.002000px;}
.ws28{word-spacing:4.209000px;}
.ws62{word-spacing:4.347000px;}
.ws2c{word-spacing:4.416000px;}
.ws7d{word-spacing:4.485000px;}
.ws23{word-spacing:4.623000px;}
.ws8d{word-spacing:4.692000px;}
.ws6{word-spacing:4.830000px;}
.ws5a{word-spacing:4.968000px;}
.ws4b{word-spacing:5.037000px;}
.ws66{word-spacing:5.106000px;}
.ws63{word-spacing:5.175000px;}
.ws79{word-spacing:5.313000px;}
.ws1f{word-spacing:5.727000px;}
.ws6a{word-spacing:5.796000px;}
.ws4f{word-spacing:5.865000px;}
.ws7c{word-spacing:6.003000px;}
.ws2d{word-spacing:6.279000px;}
.ws81{word-spacing:6.348000px;}
.ws78{word-spacing:6.417000px;}
.ws83{word-spacing:6.486000px;}
.ws34{word-spacing:6.540000px;}
.ws7b{word-spacing:6.969000px;}
.ws8f{word-spacing:7.038000px;}
.ws85{word-spacing:7.107000px;}
.ws1e{word-spacing:7.518000px;}
.ws21{word-spacing:7.521000px;}
.ws59{word-spacing:7.659000px;}
.ws14{word-spacing:7.935000px;}
.ws74{word-spacing:8.073000px;}
.ws19{word-spacing:8.142000px;}
.ws40{word-spacing:8.211000px;}
.ws60{word-spacing:8.487000px;}
.ws8c{word-spacing:8.694000px;}
.ws2{word-spacing:8.970000px;}
.ws4c{word-spacing:9.453000px;}
.ws7f{word-spacing:10.005000px;}
.ws64{word-spacing:10.419000px;}
.ws37{word-spacing:11.592000px;}
.ws7a{word-spacing:11.937000px;}
.ws1d{word-spacing:13.540800px;}
.ws58{word-spacing:14.766000px;}
.ws80{word-spacing:15.249000px;}
._6{margin-left:-9.039000px;}
._a{margin-left:-7.590000px;}
._0{margin-left:-6.318000px;}
._9{margin-left:-4.278000px;}
._2{margin-left:-3.243000px;}
._1{margin-left:-1.380000px;}
._3{width:1.311000px;}
._5{width:3.030600px;}
._c{width:4.321800px;}
._b{width:5.786400px;}
._7{width:54.868950px;}
._8{width:1105.792200px;}
._4{width:1235.511600px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:36.000000px;}
.fs5{font-size:40.227000px;}
.fs8{font-size:42.000000px;}
.fs1{font-size:45.474000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:62.400000px;}
.fs4{font-size:63.000000px;}
.fs2{font-size:69.000000px;}
.fs0{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:70.984950px;}
.y20{bottom:127.559100px;}
.y5e{bottom:127.563450px;}
.y1f{bottom:145.559100px;}
.ya4{bottom:146.909250px;}
.y5d{bottom:146.913450px;}
.y44{bottom:163.559100px;}
.ya3{bottom:166.259250px;}
.y5c{bottom:166.263450px;}
.y7f{bottom:169.303350px;}
.ya2{bottom:185.609400px;}
.y5b{bottom:185.613450px;}
.y43{bottom:187.303350px;}
.y1e{bottom:203.775900px;}
.ya1{bottom:204.959550px;}
.yae{bottom:204.961350px;}
.y5a{bottom:204.963450px;}
.y7e{bottom:215.574900px;}
.y1d{bottom:223.130400px;}
.ya0{bottom:224.309700px;}
.yad{bottom:224.311350px;}
.y59{bottom:224.313450px;}
.y7d{bottom:235.197900px;}
.y1c{bottom:242.484900px;}
.y9f{bottom:243.659700px;}
.y42{bottom:243.661350px;}
.y58{bottom:243.663450px;}
.y7c{bottom:254.820900px;}
.y1b{bottom:261.839400px;}
.y9e{bottom:263.009850px;}
.y41{bottom:263.011350px;}
.y57{bottom:263.013450px;}
.y7b{bottom:274.443900px;}
.y1a{bottom:281.193900px;}
.y9d{bottom:282.360000px;}
.y40{bottom:282.361350px;}
.y56{bottom:282.363450px;}
.y7a{bottom:294.066900px;}
.y19{bottom:300.548400px;}
.y9c{bottom:301.710000px;}
.y3f{bottom:301.711350px;}
.y55{bottom:301.713450px;}
.y79{bottom:313.689900px;}
.y18{bottom:319.902900px;}
.y9b{bottom:321.060150px;}
.y3e{bottom:321.061350px;}
.y54{bottom:321.063450px;}
.y78{bottom:333.312900px;}
.y17{bottom:339.257400px;}
.y9a{bottom:340.410300px;}
.y3d{bottom:340.411350px;}
.y53{bottom:340.413450px;}
.y16{bottom:358.611900px;}
.y99{bottom:359.760450px;}
.y3c{bottom:359.761350px;}
.y52{bottom:359.763450px;}
.y77{bottom:372.286650px;}
.y15{bottom:377.966400px;}
.y98{bottom:379.110600px;}
.y3b{bottom:379.111350px;}
.y51{bottom:379.113450px;}
.y14{bottom:397.320900px;}
.y97{bottom:398.460600px;}
.y3a{bottom:398.461350px;}
.y50{bottom:398.463450px;}
.y13{bottom:416.675400px;}
.y96{bottom:417.810750px;}
.y39{bottom:417.811350px;}
.y4f{bottom:417.813450px;}
.y76{bottom:430.611150px;}
.y12{bottom:436.029900px;}
.y95{bottom:437.160900px;}
.y38{bottom:437.161350px;}
.y4e{bottom:437.163450px;}
.y75{bottom:450.234150px;}
.y11{bottom:455.384400px;}
.y94{bottom:456.510900px;}
.y37{bottom:456.511350px;}
.y4d{bottom:456.513450px;}
.y74{bottom:469.857150px;}
.y10{bottom:474.738900px;}
.y93{bottom:475.861050px;}
.y36{bottom:475.861350px;}
.y4c{bottom:475.863450px;}
.y73{bottom:489.480150px;}
.yf{bottom:494.093400px;}
.y92{bottom:495.211200px;}
.y35{bottom:495.211350px;}
.y4b{bottom:495.213450px;}
.y72{bottom:509.103150px;}
.ye{bottom:513.447900px;}
.y34{bottom:514.561350px;}
.y4a{bottom:514.563450px;}
.y71{bottom:528.726150px;}
.yd{bottom:532.802400px;}
.y91{bottom:533.911350px;}
.y49{bottom:533.913450px;}
.y70{bottom:548.349150px;}
.yc{bottom:552.156900px;}
.yac{bottom:553.261350px;}
.y90{bottom:553.261500px;}
.y33{bottom:553.262100px;}
.y48{bottom:553.263450px;}
.y6f{bottom:567.972150px;}
.yb{bottom:571.511400px;}
.yab{bottom:572.611350px;}
.y8f{bottom:572.611650px;}
.y47{bottom:572.613450px;}
.y6e{bottom:587.595300px;}
.ya{bottom:590.865900px;}
.yaa{bottom:591.961350px;}
.y8e{bottom:591.961800px;}
.y46{bottom:591.963450px;}
.y6d{bottom:607.218300px;}
.y9{bottom:610.220400px;}
.ya9{bottom:611.311350px;}
.y8d{bottom:611.311800px;}
.y32{bottom:611.313450px;}
.y6c{bottom:626.841300px;}
.y8{bottom:629.574900px;}
.ya8{bottom:630.661350px;}
.y8c{bottom:630.661950px;}
.y31{bottom:630.663450px;}
.y6b{bottom:646.464300px;}
.y7{bottom:648.929400px;}
.ya7{bottom:650.011350px;}
.y8b{bottom:650.012100px;}
.y30{bottom:650.013450px;}
.y6a{bottom:666.087300px;}
.y6{bottom:668.283900px;}
.ya6{bottom:669.361350px;}
.y8a{bottom:669.362250px;}
.y2f{bottom:669.363450px;}
.y69{bottom:685.710300px;}
.y89{bottom:688.712250px;}
.y2e{bottom:688.713450px;}
.y68{bottom:705.333300px;}
.y5{bottom:706.984650px;}
.ya5{bottom:708.062100px;}
.y88{bottom:708.062400px;}
.y2d{bottom:708.063450px;}
.y67{bottom:724.956300px;}
.y87{bottom:727.412550px;}
.y2c{bottom:727.413450px;}
.y66{bottom:744.579300px;}
.y86{bottom:746.762550px;}
.y2b{bottom:746.763450px;}
.y65{bottom:764.202450px;}
.y85{bottom:766.112700px;}
.y2a{bottom:766.113450px;}
.y64{bottom:783.825300px;}
.y84{bottom:785.462850px;}
.y29{bottom:785.463450px;}
.y63{bottom:803.448450px;}
.y83{bottom:804.812850px;}
.y28{bottom:804.813450px;}
.y4{bottom:811.374000px;}
.y62{bottom:823.071450px;}
.y82{bottom:824.163000px;}
.y27{bottom:824.163450px;}
.y3{bottom:830.724000px;}
.y61{bottom:842.694450px;}
.y81{bottom:843.513150px;}
.y26{bottom:843.513450px;}
.y60{bottom:862.317450px;}
.y80{bottom:862.863300px;}
.y25{bottom:862.863450px;}
.y2{bottom:867.081900px;}
.y5f{bottom:881.940450px;}
.y24{bottom:882.213450px;}
.y1{bottom:898.085850px;}
.y23{bottom:901.563450px;}
.y21{bottom:945.289350px;}
.y45{bottom:946.824300px;}
.hb{height:26.748000px;}
.hc{height:28.762305px;}
.h9{height:42.900000px;}
.hd{height:42.902857px;}
.he{height:45.927000px;}
.h6{height:49.335000px;}
.h7{height:49.338286px;}
.h8{height:51.739305px;}
.ha{height:53.071200px;}
.h4{height:53.730000px;}
.h5{height:62.685000px;}
.h3{height:68.655000px;}
.h2{height:77.610000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:106.297950px;}
.x8{left:127.559100px;}
.x6{left:140.314950px;}
.x1{left:178.556250px;}
.x9{left:219.481200px;}
.x2{left:229.159800px;}
.x3{left:246.551100px;}
.x4{left:298.089900px;}
.x5{left:356.865750px;}
@media print{
.v3{vertical-align:-20.424000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:20.424000pt;}
.v1{vertical-align:23.088000pt;}
.ls6{letter-spacing:-0.368000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000267pt;}
.ls0{letter-spacing:0.832000pt;}
.ls4{letter-spacing:1.418667pt;}
.ls3{letter-spacing:1.824000pt;}
.ls1{letter-spacing:42.486267pt;}
.ws0{word-spacing:-15.333333pt;}
.ws1c{word-spacing:-14.064000pt;}
.ws65{word-spacing:-8.939333pt;}
.ws3a{word-spacing:-3.066667pt;}
.ws3b{word-spacing:-3.005333pt;}
.ws72{word-spacing:-2.821333pt;}
.ws5e{word-spacing:-2.760000pt;}
.ws46{word-spacing:-2.637333pt;}
.ws43{word-spacing:-2.576000pt;}
.ws55{word-spacing:-2.514667pt;}
.ws6c{word-spacing:-2.453333pt;}
.ws5d{word-spacing:-2.392000pt;}
.ws45{word-spacing:-2.330667pt;}
.ws3c{word-spacing:-2.269333pt;}
.ws6d{word-spacing:-2.208000pt;}
.ws7{word-spacing:-2.085333pt;}
.ws48{word-spacing:-2.024000pt;}
.ws4{word-spacing:-1.962667pt;}
.ws42{word-spacing:-1.901333pt;}
.ws24{word-spacing:-1.840000pt;}
.ws35{word-spacing:-1.824000pt;}
.ws8a{word-spacing:-1.778667pt;}
.ws88{word-spacing:-1.717333pt;}
.ws53{word-spacing:-1.594667pt;}
.ws1b{word-spacing:-1.546667pt;}
.ws52{word-spacing:-1.533333pt;}
.ws86{word-spacing:-1.472000pt;}
.ws9{word-spacing:-1.410667pt;}
.ws5c{word-spacing:-1.349333pt;}
.ws4a{word-spacing:-1.288000pt;}
.ws71{word-spacing:-1.280000pt;}
.ws87{word-spacing:-1.165333pt;}
.ws27{word-spacing:-1.104000pt;}
.ws18{word-spacing:-1.042667pt;}
.ws70{word-spacing:-1.013333pt;}
.ws61{word-spacing:-0.981333pt;}
.ws2e{word-spacing:-0.920000pt;}
.ws6f{word-spacing:-0.797333pt;}
.ws29{word-spacing:-0.736000pt;}
.ws47{word-spacing:-0.674667pt;}
.ws56{word-spacing:-0.613333pt;}
.wsa{word-spacing:-0.552000pt;}
.ws20{word-spacing:-0.490667pt;}
.ws39{word-spacing:-0.368000pt;}
.ws90{word-spacing:-0.306667pt;}
.ws75{word-spacing:-0.245333pt;}
.ws84{word-spacing:-0.184000pt;}
.ws5b{word-spacing:-0.122667pt;}
.ws54{word-spacing:-0.061333pt;}
.ws1{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws82{word-spacing:0.061333pt;}
.ws2a{word-spacing:0.122667pt;}
.wsf{word-spacing:0.184000pt;}
.ws8{word-spacing:0.245333pt;}
.ws4d{word-spacing:0.306667pt;}
.ws77{word-spacing:0.368000pt;}
.ws10{word-spacing:0.429333pt;}
.ws31{word-spacing:0.490667pt;}
.ws73{word-spacing:0.552000pt;}
.ws32{word-spacing:0.613333pt;}
.ws41{word-spacing:0.674667pt;}
.ws26{word-spacing:0.736000pt;}
.ws1a{word-spacing:0.797333pt;}
.ws44{word-spacing:0.858667pt;}
.wsc{word-spacing:0.920000pt;}
.ws69{word-spacing:0.981333pt;}
.wsb{word-spacing:1.042667pt;}
.ws76{word-spacing:1.104000pt;}
.ws12{word-spacing:1.165333pt;}
.ws13{word-spacing:1.226667pt;}
.ws3e{word-spacing:1.288000pt;}
.ws4e{word-spacing:1.349333pt;}
.ws15{word-spacing:1.472000pt;}
.ws30{word-spacing:1.533333pt;}
.wsd{word-spacing:1.594667pt;}
.ws7e{word-spacing:1.656000pt;}
.ws5{word-spacing:1.717333pt;}
.ws6b{word-spacing:1.778667pt;}
.ws16{word-spacing:1.840000pt;}
.ws3f{word-spacing:1.901333pt;}
.ws8e{word-spacing:1.962667pt;}
.ws6e{word-spacing:2.024000pt;}
.wse{word-spacing:2.085333pt;}
.ws89{word-spacing:2.269333pt;}
.ws57{word-spacing:2.330667pt;}
.ws3d{word-spacing:2.392000pt;}
.ws25{word-spacing:2.453333pt;}
.ws5f{word-spacing:2.514667pt;}
.ws36{word-spacing:2.576000pt;}
.ws68{word-spacing:2.698667pt;}
.ws2f{word-spacing:2.760000pt;}
.ws67{word-spacing:2.821333pt;}
.ws51{word-spacing:2.882667pt;}
.ws38{word-spacing:3.005333pt;}
.ws8b{word-spacing:3.128000pt;}
.ws2b{word-spacing:3.189333pt;}
.ws17{word-spacing:3.250667pt;}
.ws49{word-spacing:3.373333pt;}
.ws11{word-spacing:3.434667pt;}
.ws33{word-spacing:3.466667pt;}
.ws22{word-spacing:3.496000pt;}
.ws50{word-spacing:3.557333pt;}
.ws28{word-spacing:3.741333pt;}
.ws62{word-spacing:3.864000pt;}
.ws2c{word-spacing:3.925333pt;}
.ws7d{word-spacing:3.986667pt;}
.ws23{word-spacing:4.109333pt;}
.ws8d{word-spacing:4.170667pt;}
.ws6{word-spacing:4.293333pt;}
.ws5a{word-spacing:4.416000pt;}
.ws4b{word-spacing:4.477333pt;}
.ws66{word-spacing:4.538667pt;}
.ws63{word-spacing:4.600000pt;}
.ws79{word-spacing:4.722667pt;}
.ws1f{word-spacing:5.090667pt;}
.ws6a{word-spacing:5.152000pt;}
.ws4f{word-spacing:5.213333pt;}
.ws7c{word-spacing:5.336000pt;}
.ws2d{word-spacing:5.581333pt;}
.ws81{word-spacing:5.642667pt;}
.ws78{word-spacing:5.704000pt;}
.ws83{word-spacing:5.765333pt;}
.ws34{word-spacing:5.813333pt;}
.ws7b{word-spacing:6.194667pt;}
.ws8f{word-spacing:6.256000pt;}
.ws85{word-spacing:6.317333pt;}
.ws1e{word-spacing:6.682667pt;}
.ws21{word-spacing:6.685333pt;}
.ws59{word-spacing:6.808000pt;}
.ws14{word-spacing:7.053333pt;}
.ws74{word-spacing:7.176000pt;}
.ws19{word-spacing:7.237333pt;}
.ws40{word-spacing:7.298667pt;}
.ws60{word-spacing:7.544000pt;}
.ws8c{word-spacing:7.728000pt;}
.ws2{word-spacing:7.973333pt;}
.ws4c{word-spacing:8.402667pt;}
.ws7f{word-spacing:8.893333pt;}
.ws64{word-spacing:9.261333pt;}
.ws37{word-spacing:10.304000pt;}
.ws7a{word-spacing:10.610667pt;}
.ws1d{word-spacing:12.036267pt;}
.ws58{word-spacing:13.125333pt;}
.ws80{word-spacing:13.554667pt;}
._6{margin-left:-8.034667pt;}
._a{margin-left:-6.746667pt;}
._0{margin-left:-5.616000pt;}
._9{margin-left:-3.802667pt;}
._2{margin-left:-2.882667pt;}
._1{margin-left:-1.226667pt;}
._3{width:1.165333pt;}
._5{width:2.693867pt;}
._c{width:3.841600pt;}
._b{width:5.143467pt;}
._7{width:48.772400pt;}
._8{width:982.926400pt;}
._4{width:1098.232533pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:35.757333pt;}
.fs8{font-size:37.333333pt;}
.fs1{font-size:40.421333pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:55.466667pt;}
.fs4{font-size:56.000000pt;}
.fs2{font-size:61.333333pt;}
.fs0{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:63.097733pt;}
.y20{bottom:113.385867pt;}
.y5e{bottom:113.389733pt;}
.y1f{bottom:129.385867pt;}
.ya4{bottom:130.586000pt;}
.y5d{bottom:130.589733pt;}
.y44{bottom:145.385867pt;}
.ya3{bottom:147.786000pt;}
.y5c{bottom:147.789733pt;}
.y7f{bottom:150.491867pt;}
.ya2{bottom:164.986133pt;}
.y5b{bottom:164.989733pt;}
.y43{bottom:166.491867pt;}
.y1e{bottom:181.134133pt;}
.ya1{bottom:182.186267pt;}
.yae{bottom:182.187867pt;}
.y5a{bottom:182.189733pt;}
.y7e{bottom:191.622133pt;}
.y1d{bottom:198.338133pt;}
.ya0{bottom:199.386400pt;}
.yad{bottom:199.387867pt;}
.y59{bottom:199.389733pt;}
.y7d{bottom:209.064800pt;}
.y1c{bottom:215.542133pt;}
.y9f{bottom:216.586400pt;}
.y42{bottom:216.587867pt;}
.y58{bottom:216.589733pt;}
.y7c{bottom:226.507467pt;}
.y1b{bottom:232.746133pt;}
.y9e{bottom:233.786533pt;}
.y41{bottom:233.787867pt;}
.y57{bottom:233.789733pt;}
.y7b{bottom:243.950133pt;}
.y1a{bottom:249.950133pt;}
.y9d{bottom:250.986667pt;}
.y40{bottom:250.987867pt;}
.y56{bottom:250.989733pt;}
.y7a{bottom:261.392800pt;}
.y19{bottom:267.154133pt;}
.y9c{bottom:268.186667pt;}
.y3f{bottom:268.187867pt;}
.y55{bottom:268.189733pt;}
.y79{bottom:278.835467pt;}
.y18{bottom:284.358133pt;}
.y9b{bottom:285.386800pt;}
.y3e{bottom:285.387867pt;}
.y54{bottom:285.389733pt;}
.y78{bottom:296.278133pt;}
.y17{bottom:301.562133pt;}
.y9a{bottom:302.586933pt;}
.y3d{bottom:302.587867pt;}
.y53{bottom:302.589733pt;}
.y16{bottom:318.766133pt;}
.y99{bottom:319.787067pt;}
.y3c{bottom:319.787867pt;}
.y52{bottom:319.789733pt;}
.y77{bottom:330.921467pt;}
.y15{bottom:335.970133pt;}
.y98{bottom:336.987200pt;}
.y3b{bottom:336.987867pt;}
.y51{bottom:336.989733pt;}
.y14{bottom:353.174133pt;}
.y97{bottom:354.187200pt;}
.y3a{bottom:354.187867pt;}
.y50{bottom:354.189733pt;}
.y13{bottom:370.378133pt;}
.y96{bottom:371.387333pt;}
.y39{bottom:371.387867pt;}
.y4f{bottom:371.389733pt;}
.y76{bottom:382.765467pt;}
.y12{bottom:387.582133pt;}
.y95{bottom:388.587467pt;}
.y38{bottom:388.587867pt;}
.y4e{bottom:388.589733pt;}
.y75{bottom:400.208133pt;}
.y11{bottom:404.786133pt;}
.y94{bottom:405.787467pt;}
.y37{bottom:405.787867pt;}
.y4d{bottom:405.789733pt;}
.y74{bottom:417.650800pt;}
.y10{bottom:421.990133pt;}
.y93{bottom:422.987600pt;}
.y36{bottom:422.987867pt;}
.y4c{bottom:422.989733pt;}
.y73{bottom:435.093467pt;}
.yf{bottom:439.194133pt;}
.y92{bottom:440.187733pt;}
.y35{bottom:440.187867pt;}
.y4b{bottom:440.189733pt;}
.y72{bottom:452.536133pt;}
.ye{bottom:456.398133pt;}
.y34{bottom:457.387867pt;}
.y4a{bottom:457.389733pt;}
.y71{bottom:469.978800pt;}
.yd{bottom:473.602133pt;}
.y91{bottom:474.587867pt;}
.y49{bottom:474.589733pt;}
.y70{bottom:487.421467pt;}
.yc{bottom:490.806133pt;}
.yac{bottom:491.787867pt;}
.y90{bottom:491.788000pt;}
.y33{bottom:491.788533pt;}
.y48{bottom:491.789733pt;}
.y6f{bottom:504.864133pt;}
.yb{bottom:508.010133pt;}
.yab{bottom:508.987867pt;}
.y8f{bottom:508.988133pt;}
.y47{bottom:508.989733pt;}
.y6e{bottom:522.306933pt;}
.ya{bottom:525.214133pt;}
.yaa{bottom:526.187867pt;}
.y8e{bottom:526.188267pt;}
.y46{bottom:526.189733pt;}
.y6d{bottom:539.749600pt;}
.y9{bottom:542.418133pt;}
.ya9{bottom:543.387867pt;}
.y8d{bottom:543.388267pt;}
.y32{bottom:543.389733pt;}
.y6c{bottom:557.192267pt;}
.y8{bottom:559.622133pt;}
.ya8{bottom:560.587867pt;}
.y8c{bottom:560.588400pt;}
.y31{bottom:560.589733pt;}
.y6b{bottom:574.634933pt;}
.y7{bottom:576.826133pt;}
.ya7{bottom:577.787867pt;}
.y8b{bottom:577.788533pt;}
.y30{bottom:577.789733pt;}
.y6a{bottom:592.077600pt;}
.y6{bottom:594.030133pt;}
.ya6{bottom:594.987867pt;}
.y8a{bottom:594.988667pt;}
.y2f{bottom:594.989733pt;}
.y69{bottom:609.520267pt;}
.y89{bottom:612.188667pt;}
.y2e{bottom:612.189733pt;}
.y68{bottom:626.962933pt;}
.y5{bottom:628.430800pt;}
.ya5{bottom:629.388533pt;}
.y88{bottom:629.388800pt;}
.y2d{bottom:629.389733pt;}
.y67{bottom:644.405600pt;}
.y87{bottom:646.588933pt;}
.y2c{bottom:646.589733pt;}
.y66{bottom:661.848267pt;}
.y86{bottom:663.788933pt;}
.y2b{bottom:663.789733pt;}
.y65{bottom:679.291067pt;}
.y85{bottom:680.989067pt;}
.y2a{bottom:680.989733pt;}
.y64{bottom:696.733600pt;}
.y84{bottom:698.189200pt;}
.y29{bottom:698.189733pt;}
.y63{bottom:714.176400pt;}
.y83{bottom:715.389200pt;}
.y28{bottom:715.389733pt;}
.y4{bottom:721.221333pt;}
.y62{bottom:731.619067pt;}
.y82{bottom:732.589333pt;}
.y27{bottom:732.589733pt;}
.y3{bottom:738.421333pt;}
.y61{bottom:749.061733pt;}
.y81{bottom:749.789467pt;}
.y26{bottom:749.789733pt;}
.y60{bottom:766.504400pt;}
.y80{bottom:766.989600pt;}
.y25{bottom:766.989733pt;}
.y2{bottom:770.739467pt;}
.y5f{bottom:783.947067pt;}
.y24{bottom:784.189733pt;}
.y1{bottom:798.298533pt;}
.y23{bottom:801.389733pt;}
.y21{bottom:840.257200pt;}
.y45{bottom:841.621600pt;}
.hb{height:23.776000pt;}
.hc{height:25.566493pt;}
.h9{height:38.133333pt;}
.hd{height:38.135873pt;}
.he{height:40.824000pt;}
.h6{height:43.853333pt;}
.h7{height:43.856254pt;}
.h8{height:45.990493pt;}
.ha{height:47.174400pt;}
.h4{height:47.760000pt;}
.h5{height:55.720000pt;}
.h3{height:61.026667pt;}
.h2{height:68.986667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:94.487067pt;}
.x8{left:113.385867pt;}
.x6{left:124.724400pt;}
.x1{left:158.716667pt;}
.x9{left:195.094400pt;}
.x2{left:203.697600pt;}
.x3{left:219.156533pt;}
.x4{left:264.968800pt;}
.x5{left:317.214000pt;}
}

