
    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_5c3848e6f11c1d9912293d6d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f32fef4f22c37c19525d33d3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e1505e01e63c85513032ad79.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1ad8abaf1093e70aa9ad8acd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.239258;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_08d69b78b7e8c3a57cc0ece2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6c1729928477014f4564f07e.woff')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v7{vertical-align:-48.000000px;}
.v8{vertical-align:-45.120000px;}
.v2{vertical-align:-39.000000px;}
.v6{vertical-align:-23.940000px;}
.v5{vertical-align:-11.940000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.v3{vertical-align:39.000000px;}
.v4{vertical-align:62.940000px;}
.lsb{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.900000px;}
.ls2{letter-spacing:0.960000px;}
.lse{letter-spacing:1.080000px;}
.ls1{letter-spacing:1.200000px;}
.lsd{letter-spacing:1.320000px;}
.ls3{letter-spacing:1.416000px;}
.lsa{letter-spacing:1.440000px;}
.ls4{letter-spacing:1.476000px;}
.ls5{letter-spacing:1.740000px;}
.ls0{letter-spacing:1.800000px;}
.ls9{letter-spacing:2.880000px;}
.ls6{letter-spacing:13.416000px;}
.ls7{letter-spacing:18.216000px;}
.ls8{letter-spacing:417.636000px;}
.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;}
}
.ws2{word-spacing:-15.900000px;}
.ws4{word-spacing:-15.000000px;}
.ws46{word-spacing:-13.344000px;}
.ws0{word-spacing:-12.960000px;}
.ws20{word-spacing:-4.140000px;}
.ws5{word-spacing:-4.020000px;}
.ws1b{word-spacing:-3.960000px;}
.ws58{word-spacing:-3.780000px;}
.ws19{word-spacing:-3.600000px;}
.ws52{word-spacing:-3.540000px;}
.ws67{word-spacing:-3.480000px;}
.ws6{word-spacing:-3.300000px;}
.ws51{word-spacing:-3.120000px;}
.ws9{word-spacing:-3.000000px;}
.ws65{word-spacing:-2.940000px;}
.ws32{word-spacing:-2.820000px;}
.ws7a{word-spacing:-2.808000px;}
.wsa{word-spacing:-2.760000px;}
.ws14{word-spacing:-2.580000px;}
.ws4c{word-spacing:-2.520000px;}
.ws4a{word-spacing:-2.280000px;}
.ws68{word-spacing:-1.980000px;}
.ws5e{word-spacing:-1.920000px;}
.ws13{word-spacing:-1.860000px;}
.ws6f{word-spacing:-1.620000px;}
.ws15{word-spacing:-1.500000px;}
.ws8{word-spacing:-1.260000px;}
.ws33{word-spacing:-1.200000px;}
.ws70{word-spacing:-1.188000px;}
.ws39{word-spacing:-1.140000px;}
.ws1c{word-spacing:-0.960000px;}
.wsf{word-spacing:-0.840000px;}
.ws30{word-spacing:-0.480000px;}
.ws3e{word-spacing:-0.420000px;}
.ws28{word-spacing:-0.360000px;}
.ws63{word-spacing:-0.060000px;}
.ws3{word-spacing:-0.042000px;}
.wsb{word-spacing:0.000000px;}
.ws1{word-spacing:0.012000px;}
.ws3f{word-spacing:0.060000px;}
.ws2b{word-spacing:0.240000px;}
.ws22{word-spacing:0.300000px;}
.wsd{word-spacing:0.540000px;}
.ws7e{word-spacing:0.702000px;}
.ws57{word-spacing:0.960000px;}
.ws64{word-spacing:1.020000px;}
.ws38{word-spacing:1.080000px;}
.ws74{word-spacing:1.296000px;}
.ws5c{word-spacing:1.620000px;}
.ws5f{word-spacing:1.920000px;}
.ws76{word-spacing:2.214000px;}
.ws29{word-spacing:2.220000px;}
.ws43{word-spacing:2.230200px;}
.ws31{word-spacing:2.340000px;}
.ws5d{word-spacing:2.400000px;}
.ws2d{word-spacing:2.520000px;}
.ws62{word-spacing:2.760000px;}
.ws40{word-spacing:2.784000px;}
.ws2c{word-spacing:2.820000px;}
.ws49{word-spacing:2.880000px;}
.ws6a{word-spacing:3.000000px;}
.wsc{word-spacing:3.180000px;}
.ws2a{word-spacing:3.240000px;}
.ws1d{word-spacing:3.480000px;}
.ws11{word-spacing:3.660000px;}
.ws6b{word-spacing:3.780000px;}
.ws3d{word-spacing:3.900000px;}
.ws24{word-spacing:4.020000px;}
.ws2e{word-spacing:4.440000px;}
.ws18{word-spacing:4.620000px;}
.ws3a{word-spacing:4.680000px;}
.ws2f{word-spacing:4.740000px;}
.ws7f{word-spacing:4.968000px;}
.ws44{word-spacing:4.989600px;}
.ws36{word-spacing:5.340000px;}
.ws4e{word-spacing:5.640000px;}
.ws71{word-spacing:5.940000px;}
.ws54{word-spacing:6.060000px;}
.ws50{word-spacing:6.360000px;}
.ws7d{word-spacing:6.588000px;}
.ws56{word-spacing:6.660000px;}
.ws37{word-spacing:6.840000px;}
.ws27{word-spacing:7.020000px;}
.ws3b{word-spacing:7.080000px;}
.ws10{word-spacing:7.200000px;}
.ws23{word-spacing:7.260000px;}
.ws7b{word-spacing:7.992000px;}
.ws48{word-spacing:8.100000px;}
.ws55{word-spacing:8.160000px;}
.ws6c{word-spacing:8.280000px;}
.ws21{word-spacing:8.460000px;}
.ws17{word-spacing:8.940000px;}
.ws61{word-spacing:9.840000px;}
.ws4f{word-spacing:9.960000px;}
.ws80{word-spacing:10.206000px;}
.ws12{word-spacing:10.260000px;}
.ws1e{word-spacing:10.320000px;}
.ws34{word-spacing:10.380000px;}
.ws4b{word-spacing:10.860000px;}
.ws1f{word-spacing:10.920000px;}
.ws73{word-spacing:11.016000px;}
.ws59{word-spacing:11.040000px;}
.ws42{word-spacing:11.075400px;}
.ws77{word-spacing:11.232000px;}
.ws16{word-spacing:11.340000px;}
.ws6d{word-spacing:11.820000px;}
.ws35{word-spacing:12.000000px;}
.ws69{word-spacing:12.240000px;}
.ws26{word-spacing:12.660000px;}
.ws78{word-spacing:13.014000px;}
.ws47{word-spacing:13.200000px;}
.ws5b{word-spacing:13.500000px;}
.ws3c{word-spacing:13.680000px;}
.ws7{word-spacing:14.280000px;}
.ws4d{word-spacing:15.360000px;}
.ws25{word-spacing:16.020000px;}
.ws7c{word-spacing:16.200000px;}
.wse{word-spacing:16.620000px;}
.ws6e{word-spacing:16.740000px;}
.ws1a{word-spacing:16.980000px;}
.ws66{word-spacing:18.780000px;}
.ws79{word-spacing:19.602000px;}
.ws41{word-spacing:19.680000px;}
.ws60{word-spacing:19.740000px;}
.ws53{word-spacing:20.160000px;}
.ws81{word-spacing:20.520000px;}
.ws5a{word-spacing:24.840000px;}
.ws75{word-spacing:42.714000px;}
.ws72{word-spacing:43.362000px;}
.ws45{word-spacing:107.856000px;}
._4{margin-left:-10.080000px;}
._3{margin-left:-4.800000px;}
._2{margin-left:-3.780000px;}
._1{margin-left:-2.280000px;}
._0{margin-left:-1.260000px;}
._7{width:1.440000px;}
._5{width:20.196000px;}
._6{width:114.518400px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:130.980000px;}
.y3f{bottom:134.190000px;}
.yae{bottom:140.775000px;}
.y23{bottom:145.980000px;}
.y3e{bottom:159.690000px;}
.y22{bottom:160.980000px;}
.y21{bottom:175.980000px;}
.y3d{bottom:182.175000px;}
.yad{bottom:184.035000px;}
.y20{bottom:190.980000px;}
.y3c{bottom:197.175000px;}
.y1f{bottom:205.980000px;}
.y3b{bottom:212.175000px;}
.y1e{bottom:220.980000px;}
.y3a{bottom:227.175000px;}
.y1d{bottom:235.980000px;}
.y39{bottom:242.175000px;}
.ya6{bottom:242.745000px;}
.y1c{bottom:250.980000px;}
.y38{bottom:257.175000px;}
.ya7{bottom:259.980000px;}
.y1b{bottom:265.980000px;}
.yab{bottom:270.255600px;}
.y37{bottom:272.175000px;}
.ya5{bottom:277.860000px;}
.y1a{bottom:280.980000px;}
.ya2{bottom:292.755000px;}
.y19{bottom:295.980000px;}
.y36{bottom:298.185000px;}
.ya9{bottom:299.355000px;}
.y18{bottom:310.980000px;}
.ya8{bottom:314.775000px;}
.yac{bottom:317.655000px;}
.y35{bottom:329.175000px;}
.ya4{bottom:341.445600px;}
.ya1{bottom:342.045000px;}
.y34{bottom:344.175000px;}
.y43{bottom:344.580000px;}
.y33{bottom:359.175000px;}
.ya3{bottom:368.550000px;}
.yaa{bottom:368.850000px;}
.y32{bottom:374.175000px;}
.y49{bottom:378.453000px;}
.y48{bottom:390.225000px;}
.ya0{bottom:391.320000px;}
.y31{bottom:392.175000px;}
.y47{bottom:401.997000px;}
.y30{bottom:407.175000px;}
.y46{bottom:420.957000px;}
.y2f{bottom:422.175000px;}
.y45{bottom:432.753000px;}
.y2e{bottom:437.175000px;}
.y44{bottom:444.525000px;}
.y2d{bottom:452.175000px;}
.y77{bottom:457.515000px;}
.y9f{bottom:459.327150px;}
.y2c{bottom:467.175000px;}
.y42{bottom:470.976000px;}
.y76{bottom:472.515000px;}
.y9e{bottom:472.827150px;}
.y2b{bottom:482.175000px;}
.y41{bottom:482.748000px;}
.y9d{bottom:486.327150px;}
.y75{bottom:487.515000px;}
.y40{bottom:494.520000px;}
.y2a{bottom:497.175000px;}
.y9c{bottom:499.827150px;}
.y74{bottom:502.515000px;}
.y29{bottom:512.175000px;}
.y73{bottom:517.515000px;}
.y9b{bottom:520.827750px;}
.y17{bottom:530.175000px;}
.y72{bottom:532.515000px;}
.y9a{bottom:534.327750px;}
.y16{bottom:545.175000px;}
.y71{bottom:547.515000px;}
.y99{bottom:547.827750px;}
.y15{bottom:560.175000px;}
.y70{bottom:562.515000px;}
.y98{bottom:568.827000px;}
.y14{bottom:575.175000px;}
.y6f{bottom:577.515000px;}
.y97{bottom:582.327000px;}
.y13{bottom:590.175000px;}
.y6e{bottom:592.515000px;}
.y96{bottom:595.827000px;}
.y12{bottom:605.175000px;}
.y6d{bottom:610.515000px;}
.y95{bottom:616.827600px;}
.y11{bottom:620.175000px;}
.y6c{bottom:625.515000px;}
.y94{bottom:630.327600px;}
.y10{bottom:635.175000px;}
.y28{bottom:638.175000px;}
.y6b{bottom:640.515000px;}
.y93{bottom:643.827600px;}
.yf{bottom:653.175000px;}
.y6a{bottom:655.515000px;}
.y92{bottom:664.828200px;}
.ye{bottom:668.175000px;}
.y69{bottom:670.515000px;}
.y91{bottom:678.328200px;}
.yd{bottom:683.175000px;}
.y68{bottom:685.515000px;}
.y90{bottom:691.828200px;}
.yc{bottom:698.175000px;}
.y67{bottom:700.515000px;}
.y8f{bottom:705.328200px;}
.yb{bottom:713.175000px;}
.y66{bottom:715.515000px;}
.y8e{bottom:726.328800px;}
.ya{bottom:728.175000px;}
.y65{bottom:730.515000px;}
.y27{bottom:739.185000px;}
.y8d{bottom:739.828800px;}
.y9{bottom:743.175000px;}
.y64{bottom:745.515000px;}
.y8c{bottom:753.328800px;}
.y63{bottom:760.515000px;}
.y8b{bottom:766.828800px;}
.y8{bottom:769.185000px;}
.y26{bottom:770.175000px;}
.y62{bottom:778.515000px;}
.y25{bottom:785.175000px;}
.y8a{bottom:787.829400px;}
.y61{bottom:793.515000px;}
.y7{bottom:800.175000px;}
.y89{bottom:801.329400px;}
.y60{bottom:808.515000px;}
.y88{bottom:814.829400px;}
.y6{bottom:815.175000px;}
.y5f{bottom:823.515000px;}
.y87{bottom:828.329400px;}
.y5{bottom:830.175000px;}
.y5e{bottom:838.515000px;}
.y4{bottom:845.175000px;}
.y86{bottom:849.330000px;}
.y5d{bottom:853.515000px;}
.y3{bottom:860.175000px;}
.y85{bottom:862.830000px;}
.y5c{bottom:868.515000px;}
.y2{bottom:875.175000px;}
.y84{bottom:876.330000px;}
.y5b{bottom:883.515000px;}
.y83{bottom:889.830000px;}
.y1{bottom:890.175000px;}
.y5a{bottom:898.515000px;}
.y82{bottom:911.835000px;}
.y59{bottom:913.515000px;}
.y58{bottom:928.515000px;}
.y81{bottom:942.840000px;}
.y57{bottom:943.515000px;}
.y80{bottom:957.840000px;}
.y56{bottom:958.515000px;}
.y4d{bottom:972.160500px;}
.y7f{bottom:972.840000px;}
.y55{bottom:973.515000px;}
.y7e{bottom:987.840000px;}
.y54{bottom:988.515000px;}
.y4c{bottom:993.165000px;}
.y7d{bottom:1002.840000px;}
.y53{bottom:1006.515000px;}
.y7c{bottom:1017.840000px;}
.y52{bottom:1021.515000px;}
.y4b{bottom:1025.175000px;}
.y7b{bottom:1032.840000px;}
.y51{bottom:1036.515000px;}
.y7a{bottom:1047.840000px;}
.y50{bottom:1051.515000px;}
.y79{bottom:1062.840000px;}
.y4f{bottom:1066.515000px;}
.y4a{bottom:1075.515000px;}
.y4e{bottom:1081.515000px;}
.y78{bottom:1088.835000px;}
.h7{height:47.085938px;}
.h6{height:47.109375px;}
.hc{height:50.062500px;}
.hb{height:52.998047px;}
.h1{height:58.857422px;}
.h3{height:58.886719px;}
.ha{height:64.775391px;}
.h9{height:70.664062px;}
.h5{height:71.049375px;}
.h4{height:71.109375px;}
.h2{height:76.552734px;}
.h8{height:96.750000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:86.025000px;}
.x9{left:89.985000px;}
.xa{left:94.977000px;}
.xb{left:101.235000px;}
.x3{left:107.280000px;}
.xc{left:163.470000px;}
.x2{left:203.325000px;}
.x13{left:230.550000px;}
.x12{left:232.215000px;}
.xe{left:236.460000px;}
.x17{left:258.300000px;}
.x1e{left:272.040000px;}
.xf{left:275.482500px;}
.xd{left:282.105000px;}
.x1d{left:365.145000px;}
.x4{left:469.860000px;}
.x5{left:483.735000px;}
.x6{left:491.130000px;}
.x7{left:495.465000px;}
.x15{left:498.705600px;}
.x16{left:500.805000px;}
.x14{left:508.020000px;}
.x1b{left:554.940000px;}
.x1a{left:562.830000px;}
.x10{left:565.485000px;}
.x8{left:574.980000px;}
.x18{left:606.465000px;}
.x11{left:609.750000px;}
.x19{left:620.130600px;}
.x1c{left:669.420000px;}
@media print{
.v7{vertical-align:-42.666667pt;}
.v8{vertical-align:-40.106667pt;}
.v2{vertical-align:-34.666667pt;}
.v6{vertical-align:-21.280000pt;}
.v5{vertical-align:-10.613333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.v3{vertical-align:34.666667pt;}
.v4{vertical-align:55.946667pt;}
.lsb{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls2{letter-spacing:0.853333pt;}
.lse{letter-spacing:0.960000pt;}
.ls1{letter-spacing:1.066667pt;}
.lsd{letter-spacing:1.173333pt;}
.ls3{letter-spacing:1.258667pt;}
.lsa{letter-spacing:1.280000pt;}
.ls4{letter-spacing:1.312000pt;}
.ls5{letter-spacing:1.546667pt;}
.ls0{letter-spacing:1.600000pt;}
.ls9{letter-spacing:2.560000pt;}
.ls6{letter-spacing:11.925333pt;}
.ls7{letter-spacing:16.192000pt;}
.ls8{letter-spacing:371.232000pt;}
.ws2{word-spacing:-14.133333pt;}
.ws4{word-spacing:-13.333333pt;}
.ws46{word-spacing:-11.861333pt;}
.ws0{word-spacing:-11.520000pt;}
.ws20{word-spacing:-3.680000pt;}
.ws5{word-spacing:-3.573333pt;}
.ws1b{word-spacing:-3.520000pt;}
.ws58{word-spacing:-3.360000pt;}
.ws19{word-spacing:-3.200000pt;}
.ws52{word-spacing:-3.146667pt;}
.ws67{word-spacing:-3.093333pt;}
.ws6{word-spacing:-2.933333pt;}
.ws51{word-spacing:-2.773333pt;}
.ws9{word-spacing:-2.666667pt;}
.ws65{word-spacing:-2.613333pt;}
.ws32{word-spacing:-2.506667pt;}
.ws7a{word-spacing:-2.496000pt;}
.wsa{word-spacing:-2.453333pt;}
.ws14{word-spacing:-2.293333pt;}
.ws4c{word-spacing:-2.240000pt;}
.ws4a{word-spacing:-2.026667pt;}
.ws68{word-spacing:-1.760000pt;}
.ws5e{word-spacing:-1.706667pt;}
.ws13{word-spacing:-1.653333pt;}
.ws6f{word-spacing:-1.440000pt;}
.ws15{word-spacing:-1.333333pt;}
.ws8{word-spacing:-1.120000pt;}
.ws33{word-spacing:-1.066667pt;}
.ws70{word-spacing:-1.056000pt;}
.ws39{word-spacing:-1.013333pt;}
.ws1c{word-spacing:-0.853333pt;}
.wsf{word-spacing:-0.746667pt;}
.ws30{word-spacing:-0.426667pt;}
.ws3e{word-spacing:-0.373333pt;}
.ws28{word-spacing:-0.320000pt;}
.ws63{word-spacing:-0.053333pt;}
.ws3{word-spacing:-0.037333pt;}
.wsb{word-spacing:0.000000pt;}
.ws1{word-spacing:0.010667pt;}
.ws3f{word-spacing:0.053333pt;}
.ws2b{word-spacing:0.213333pt;}
.ws22{word-spacing:0.266667pt;}
.wsd{word-spacing:0.480000pt;}
.ws7e{word-spacing:0.624000pt;}
.ws57{word-spacing:0.853333pt;}
.ws64{word-spacing:0.906667pt;}
.ws38{word-spacing:0.960000pt;}
.ws74{word-spacing:1.152000pt;}
.ws5c{word-spacing:1.440000pt;}
.ws5f{word-spacing:1.706667pt;}
.ws76{word-spacing:1.968000pt;}
.ws29{word-spacing:1.973333pt;}
.ws43{word-spacing:1.982400pt;}
.ws31{word-spacing:2.080000pt;}
.ws5d{word-spacing:2.133333pt;}
.ws2d{word-spacing:2.240000pt;}
.ws62{word-spacing:2.453333pt;}
.ws40{word-spacing:2.474667pt;}
.ws2c{word-spacing:2.506667pt;}
.ws49{word-spacing:2.560000pt;}
.ws6a{word-spacing:2.666667pt;}
.wsc{word-spacing:2.826667pt;}
.ws2a{word-spacing:2.880000pt;}
.ws1d{word-spacing:3.093333pt;}
.ws11{word-spacing:3.253333pt;}
.ws6b{word-spacing:3.360000pt;}
.ws3d{word-spacing:3.466667pt;}
.ws24{word-spacing:3.573333pt;}
.ws2e{word-spacing:3.946667pt;}
.ws18{word-spacing:4.106667pt;}
.ws3a{word-spacing:4.160000pt;}
.ws2f{word-spacing:4.213333pt;}
.ws7f{word-spacing:4.416000pt;}
.ws44{word-spacing:4.435200pt;}
.ws36{word-spacing:4.746667pt;}
.ws4e{word-spacing:5.013333pt;}
.ws71{word-spacing:5.280000pt;}
.ws54{word-spacing:5.386667pt;}
.ws50{word-spacing:5.653333pt;}
.ws7d{word-spacing:5.856000pt;}
.ws56{word-spacing:5.920000pt;}
.ws37{word-spacing:6.080000pt;}
.ws27{word-spacing:6.240000pt;}
.ws3b{word-spacing:6.293333pt;}
.ws10{word-spacing:6.400000pt;}
.ws23{word-spacing:6.453333pt;}
.ws7b{word-spacing:7.104000pt;}
.ws48{word-spacing:7.200000pt;}
.ws55{word-spacing:7.253333pt;}
.ws6c{word-spacing:7.360000pt;}
.ws21{word-spacing:7.520000pt;}
.ws17{word-spacing:7.946667pt;}
.ws61{word-spacing:8.746667pt;}
.ws4f{word-spacing:8.853333pt;}
.ws80{word-spacing:9.072000pt;}
.ws12{word-spacing:9.120000pt;}
.ws1e{word-spacing:9.173333pt;}
.ws34{word-spacing:9.226667pt;}
.ws4b{word-spacing:9.653333pt;}
.ws1f{word-spacing:9.706667pt;}
.ws73{word-spacing:9.792000pt;}
.ws59{word-spacing:9.813333pt;}
.ws42{word-spacing:9.844800pt;}
.ws77{word-spacing:9.984000pt;}
.ws16{word-spacing:10.080000pt;}
.ws6d{word-spacing:10.506667pt;}
.ws35{word-spacing:10.666667pt;}
.ws69{word-spacing:10.880000pt;}
.ws26{word-spacing:11.253333pt;}
.ws78{word-spacing:11.568000pt;}
.ws47{word-spacing:11.733333pt;}
.ws5b{word-spacing:12.000000pt;}
.ws3c{word-spacing:12.160000pt;}
.ws7{word-spacing:12.693333pt;}
.ws4d{word-spacing:13.653333pt;}
.ws25{word-spacing:14.240000pt;}
.ws7c{word-spacing:14.400000pt;}
.wse{word-spacing:14.773333pt;}
.ws6e{word-spacing:14.880000pt;}
.ws1a{word-spacing:15.093333pt;}
.ws66{word-spacing:16.693333pt;}
.ws79{word-spacing:17.424000pt;}
.ws41{word-spacing:17.493333pt;}
.ws60{word-spacing:17.546667pt;}
.ws53{word-spacing:17.920000pt;}
.ws81{word-spacing:18.240000pt;}
.ws5a{word-spacing:22.080000pt;}
.ws75{word-spacing:37.968000pt;}
.ws72{word-spacing:38.544000pt;}
.ws45{word-spacing:95.872000pt;}
._4{margin-left:-8.960000pt;}
._3{margin-left:-4.266667pt;}
._2{margin-left:-3.360000pt;}
._1{margin-left:-2.026667pt;}
._0{margin-left:-1.120000pt;}
._7{width:1.280000pt;}
._5{width:17.952000pt;}
._6{width:101.794133pt;}
.fs2{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:116.426667pt;}
.y3f{bottom:119.280000pt;}
.yae{bottom:125.133333pt;}
.y23{bottom:129.760000pt;}
.y3e{bottom:141.946667pt;}
.y22{bottom:143.093333pt;}
.y21{bottom:156.426667pt;}
.y3d{bottom:161.933333pt;}
.yad{bottom:163.586667pt;}
.y20{bottom:169.760000pt;}
.y3c{bottom:175.266667pt;}
.y1f{bottom:183.093333pt;}
.y3b{bottom:188.600000pt;}
.y1e{bottom:196.426667pt;}
.y3a{bottom:201.933333pt;}
.y1d{bottom:209.760000pt;}
.y39{bottom:215.266667pt;}
.ya6{bottom:215.773333pt;}
.y1c{bottom:223.093333pt;}
.y38{bottom:228.600000pt;}
.ya7{bottom:231.093333pt;}
.y1b{bottom:236.426667pt;}
.yab{bottom:240.227200pt;}
.y37{bottom:241.933333pt;}
.ya5{bottom:246.986667pt;}
.y1a{bottom:249.760000pt;}
.ya2{bottom:260.226667pt;}
.y19{bottom:263.093333pt;}
.y36{bottom:265.053333pt;}
.ya9{bottom:266.093333pt;}
.y18{bottom:276.426667pt;}
.ya8{bottom:279.800000pt;}
.yac{bottom:282.360000pt;}
.y35{bottom:292.600000pt;}
.ya4{bottom:303.507200pt;}
.ya1{bottom:304.040000pt;}
.y34{bottom:305.933333pt;}
.y43{bottom:306.293333pt;}
.y33{bottom:319.266667pt;}
.ya3{bottom:327.600000pt;}
.yaa{bottom:327.866667pt;}
.y32{bottom:332.600000pt;}
.y49{bottom:336.402667pt;}
.y48{bottom:346.866667pt;}
.ya0{bottom:347.840000pt;}
.y31{bottom:348.600000pt;}
.y47{bottom:357.330667pt;}
.y30{bottom:361.933333pt;}
.y46{bottom:374.184000pt;}
.y2f{bottom:375.266667pt;}
.y45{bottom:384.669333pt;}
.y2e{bottom:388.600000pt;}
.y44{bottom:395.133333pt;}
.y2d{bottom:401.933333pt;}
.y77{bottom:406.680000pt;}
.y9f{bottom:408.290800pt;}
.y2c{bottom:415.266667pt;}
.y42{bottom:418.645333pt;}
.y76{bottom:420.013333pt;}
.y9e{bottom:420.290800pt;}
.y2b{bottom:428.600000pt;}
.y41{bottom:429.109333pt;}
.y9d{bottom:432.290800pt;}
.y75{bottom:433.346667pt;}
.y40{bottom:439.573333pt;}
.y2a{bottom:441.933333pt;}
.y9c{bottom:444.290800pt;}
.y74{bottom:446.680000pt;}
.y29{bottom:455.266667pt;}
.y73{bottom:460.013333pt;}
.y9b{bottom:462.958000pt;}
.y17{bottom:471.266667pt;}
.y72{bottom:473.346667pt;}
.y9a{bottom:474.958000pt;}
.y16{bottom:484.600000pt;}
.y71{bottom:486.680000pt;}
.y99{bottom:486.958000pt;}
.y15{bottom:497.933333pt;}
.y70{bottom:500.013333pt;}
.y98{bottom:505.624000pt;}
.y14{bottom:511.266667pt;}
.y6f{bottom:513.346667pt;}
.y97{bottom:517.624000pt;}
.y13{bottom:524.600000pt;}
.y6e{bottom:526.680000pt;}
.y96{bottom:529.624000pt;}
.y12{bottom:537.933333pt;}
.y6d{bottom:542.680000pt;}
.y95{bottom:548.291200pt;}
.y11{bottom:551.266667pt;}
.y6c{bottom:556.013333pt;}
.y94{bottom:560.291200pt;}
.y10{bottom:564.600000pt;}
.y28{bottom:567.266667pt;}
.y6b{bottom:569.346667pt;}
.y93{bottom:572.291200pt;}
.yf{bottom:580.600000pt;}
.y6a{bottom:582.680000pt;}
.y92{bottom:590.958400pt;}
.ye{bottom:593.933333pt;}
.y69{bottom:596.013333pt;}
.y91{bottom:602.958400pt;}
.yd{bottom:607.266667pt;}
.y68{bottom:609.346667pt;}
.y90{bottom:614.958400pt;}
.yc{bottom:620.600000pt;}
.y67{bottom:622.680000pt;}
.y8f{bottom:626.958400pt;}
.yb{bottom:633.933333pt;}
.y66{bottom:636.013333pt;}
.y8e{bottom:645.625600pt;}
.ya{bottom:647.266667pt;}
.y65{bottom:649.346667pt;}
.y27{bottom:657.053333pt;}
.y8d{bottom:657.625600pt;}
.y9{bottom:660.600000pt;}
.y64{bottom:662.680000pt;}
.y8c{bottom:669.625600pt;}
.y63{bottom:676.013333pt;}
.y8b{bottom:681.625600pt;}
.y8{bottom:683.720000pt;}
.y26{bottom:684.600000pt;}
.y62{bottom:692.013333pt;}
.y25{bottom:697.933333pt;}
.y8a{bottom:700.292800pt;}
.y61{bottom:705.346667pt;}
.y7{bottom:711.266667pt;}
.y89{bottom:712.292800pt;}
.y60{bottom:718.680000pt;}
.y88{bottom:724.292800pt;}
.y6{bottom:724.600000pt;}
.y5f{bottom:732.013333pt;}
.y87{bottom:736.292800pt;}
.y5{bottom:737.933333pt;}
.y5e{bottom:745.346667pt;}
.y4{bottom:751.266667pt;}
.y86{bottom:754.960000pt;}
.y5d{bottom:758.680000pt;}
.y3{bottom:764.600000pt;}
.y85{bottom:766.960000pt;}
.y5c{bottom:772.013333pt;}
.y2{bottom:777.933333pt;}
.y84{bottom:778.960000pt;}
.y5b{bottom:785.346667pt;}
.y83{bottom:790.960000pt;}
.y1{bottom:791.266667pt;}
.y5a{bottom:798.680000pt;}
.y82{bottom:810.520000pt;}
.y59{bottom:812.013333pt;}
.y58{bottom:825.346667pt;}
.y81{bottom:838.080000pt;}
.y57{bottom:838.680000pt;}
.y80{bottom:851.413333pt;}
.y56{bottom:852.013333pt;}
.y4d{bottom:864.142667pt;}
.y7f{bottom:864.746667pt;}
.y55{bottom:865.346667pt;}
.y7e{bottom:878.080000pt;}
.y54{bottom:878.680000pt;}
.y4c{bottom:882.813333pt;}
.y7d{bottom:891.413333pt;}
.y53{bottom:894.680000pt;}
.y7c{bottom:904.746667pt;}
.y52{bottom:908.013333pt;}
.y4b{bottom:911.266667pt;}
.y7b{bottom:918.080000pt;}
.y51{bottom:921.346667pt;}
.y7a{bottom:931.413333pt;}
.y50{bottom:934.680000pt;}
.y79{bottom:944.746667pt;}
.y4f{bottom:948.013333pt;}
.y4a{bottom:956.013333pt;}
.y4e{bottom:961.346667pt;}
.y78{bottom:967.853333pt;}
.h7{height:41.854167pt;}
.h6{height:41.875000pt;}
.hc{height:44.500000pt;}
.hb{height:47.109375pt;}
.h1{height:52.317708pt;}
.h3{height:52.343750pt;}
.ha{height:57.578125pt;}
.h9{height:62.812500pt;}
.h5{height:63.155000pt;}
.h4{height:63.208333pt;}
.h2{height:68.046875pt;}
.h8{height:86.000000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:76.466667pt;}
.x9{left:79.986667pt;}
.xa{left:84.424000pt;}
.xb{left:89.986667pt;}
.x3{left:95.360000pt;}
.xc{left:145.306667pt;}
.x2{left:180.733333pt;}
.x13{left:204.933333pt;}
.x12{left:206.413333pt;}
.xe{left:210.186667pt;}
.x17{left:229.600000pt;}
.x1e{left:241.813333pt;}
.xf{left:244.873333pt;}
.xd{left:250.760000pt;}
.x1d{left:324.573333pt;}
.x4{left:417.653333pt;}
.x5{left:429.986667pt;}
.x6{left:436.560000pt;}
.x7{left:440.413333pt;}
.x15{left:443.293867pt;}
.x16{left:445.160000pt;}
.x14{left:451.573333pt;}
.x1b{left:493.280000pt;}
.x1a{left:500.293333pt;}
.x10{left:502.653333pt;}
.x8{left:511.093333pt;}
.x18{left:539.080000pt;}
.x11{left:542.000000pt;}
.x19{left:551.227200pt;}
.x1c{left:595.040000pt;}
}

