
    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_9c013625d3e7ec5198ba4a6e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0653a783e1a59d8b33fbed21.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f8ad3e3903a5d3d540468b8c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.401855;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_5c2c3e96b776f341f8041cfd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.696777;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_0618b395900bf3aa68bd6a38.woff')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_b292d159930786e57b97e9c0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_2087af6e4ac287211a0790aa.woff')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_c08eaad0a65c0bbc74bf0df2.woff')format("woff");}.ff8{font-family:ff8;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);}
.v3{vertical-align:-82.800000px;}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls6{letter-spacing:-0.432000px;}
.ls2{letter-spacing:-0.414600px;}
.lsd{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.178800px;}
.ls1{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.069600px;}
.ls8{letter-spacing:-0.058200px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.262200px;}
.lse{letter-spacing:0.264960px;}
.ls5{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.864000px;}
.lsc{letter-spacing:3.744000px;}
.lsb{letter-spacing:115.344000px;}
.lsa{letter-spacing:175.080000px;}
.ls9{letter-spacing:481.800000px;}
.lsf{letter-spacing:1340.340000px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws9{word-spacing:-20.880000px;}
.ws4{word-spacing:-20.304000px;}
.ws7{word-spacing:-20.016000px;}
.ws8{word-spacing:-19.800000px;}
.ws2{word-spacing:-18.414720px;}
.ws0{word-spacing:-16.506480px;}
.ws5{word-spacing:-13.436160px;}
.ws1{word-spacing:-11.609280px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-2.726400px;}
._2{margin-left:-1.584000px;}
._0{width:1.390080px;}
._1{width:3.104880px;}
._d{width:4.128480px;}
._11{width:5.184000px;}
._9{width:6.413760px;}
._8{width:7.551360px;}
._c{width:8.635200px;}
._e{width:10.532160px;}
._6{width:11.724480px;}
._7{width:13.512960px;}
._4{width:15.367680px;}
._5{width:16.620480px;}
._15{width:18.155520px;}
._13{width:21.384000px;}
._1d{width:22.388160px;}
._12{width:23.481600px;}
._f{width:24.503040px;}
._a{width:26.032320px;}
._b{width:27.224640px;}
._17{width:29.160000px;}
._16{width:30.168000px;}
._1b{width:38.808000px;}
._18{width:42.984000px;}
._1a{width:45.216000px;}
._19{width:46.368000px;}
._14{width:50.832000px;}
._20{width:51.932160px;}
._1c{width:54.864000px;}
._1f{width:59.690880px;}
._1e{width:61.205760px;}
._10{width:844.140000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(34,34,34);}
.fs1{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y63{bottom:-17.100000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:3.960000px;}
.y67{bottom:4.140000px;}
.y60{bottom:4.860000px;}
.y69{bottom:5.040000px;}
.y7e{bottom:22.314000px;}
.y72{bottom:22.320000px;}
.y80{bottom:22.350000px;}
.y66{bottom:22.500000px;}
.y61{bottom:27.000000px;}
.y7d{bottom:40.674000px;}
.y71{bottom:40.680000px;}
.y75{bottom:40.710000px;}
.y83{bottom:40.725000px;}
.y65{bottom:40.860000px;}
.y6d{bottom:40.905000px;}
.y2{bottom:56.340000px;}
.y70{bottom:58.860000px;}
.y6a{bottom:59.040000px;}
.y7a{bottom:59.085000px;}
.y9d{bottom:92.556000px;}
.ycf{bottom:95.076000px;}
.yb2{bottom:97.596000px;}
.y5e{bottom:105.516000px;}
.yf4{bottom:109.116000px;}
.y9c{bottom:113.256000px;}
.yce{bottom:117.036000px;}
.yb1{bottom:118.296000px;}
.yc1{bottom:120.816000px;}
.y101{bottom:124.416000px;}
.y5d{bottom:126.216000px;}
.yf3{bottom:129.816000px;}
.y9b{bottom:133.956000px;}
.ycd{bottom:138.996000px;}
.yc0{bottom:141.516000px;}
.y7c{bottom:143.316000px;}
.y100{bottom:145.116000px;}
.y37{bottom:146.916000px;}
.yf2{bottom:150.510000px;}
.y9a{bottom:154.650000px;}
.yb0{bottom:159.690000px;}
.ybf{bottom:162.210000px;}
.yff{bottom:165.450000px;}
.y36{bottom:167.610000px;}
.yf1{bottom:171.210000px;}
.y99{bottom:175.350000px;}
.yaf{bottom:176.430000px;}
.ycc{bottom:180.390000px;}
.ybe{bottom:182.910000px;}
.yfe{bottom:184.350000px;}
.y35{bottom:188.310000px;}
.yf0{bottom:191.910000px;}
.y98{bottom:196.050000px;}
.ycb{bottom:201.090000px;}
.yfd{bottom:203.430000px;}
.ybd{bottom:203.610000px;}
.y34{bottom:209.010000px;}
.y7b{bottom:210.810000px;}
.yef{bottom:212.610000px;}
.y97{bottom:216.750000px;}
.yca{bottom:221.790000px;}
.yfc{bottom:222.330000px;}
.ybc{bottom:224.310000px;}
.y33{bottom:229.710000px;}
.yee{bottom:233.310000px;}
.y96{bottom:237.450000px;}
.yfb{bottom:241.230000px;}
.yc9{bottom:242.490000px;}
.ybb{bottom:245.010000px;}
.y32{bottom:250.410000px;}
.yed{bottom:254.010000px;}
.y95{bottom:258.150000px;}
.yfa{bottom:260.310000px;}
.yc8{bottom:263.190000px;}
.yba{bottom:265.710000px;}
.y31{bottom:271.110000px;}
.yec{bottom:274.710000px;}
.y79{bottom:278.310000px;}
.y94{bottom:278.850000px;}
.yf9{bottom:279.210000px;}
.yc7{bottom:283.890000px;}
.yb9{bottom:286.410000px;}
.y30{bottom:291.810000px;}
.yeb{bottom:295.410000px;}
.yf8{bottom:298.290000px;}
.y93{bottom:299.550000px;}
.yc6{bottom:304.590000px;}
.yb8{bottom:307.110000px;}
.y2f{bottom:312.510000px;}
.yea{bottom:316.110000px;}
.yf7{bottom:317.190000px;}
.y92{bottom:320.250000px;}
.yc5{bottom:325.290000px;}
.yb7{bottom:327.855000px;}
.y2e{bottom:332.715000px;}
.y5c{bottom:333.255000px;}
.yf6{bottom:336.135000px;}
.ye9{bottom:336.855000px;}
.y91{bottom:340.995000px;}
.yc4{bottom:346.035000px;}
.yb6{bottom:348.555000px;}
.y78{bottom:351.615000px;}
.y2d{bottom:351.795000px;}
.ye5{bottom:353.775000px;}
.y5b{bottom:353.955000px;}
.yf5{bottom:355.215000px;}
.ye8{bottom:357.555000px;}
.y90{bottom:361.695000px;}
.yc3{bottom:366.735000px;}
.yb5{bottom:369.255000px;}
.y2c{bottom:370.695000px;}
.ye4{bottom:374.475000px;}
.y5a{bottom:374.655000px;}
.ye7{bottom:378.255000px;}
.y8f{bottom:382.395000px;}
.yc2{bottom:383.295000px;}
.y2b{bottom:389.775000px;}
.ye6{bottom:394.815000px;}
.ye3{bottom:395.175000px;}
.y59{bottom:395.355000px;}
.y8e{bottom:403.095000px;}
.y2a{bottom:408.675000px;}
.yb4{bottom:410.655000px;}
.ye2{bottom:415.875000px;}
.y58{bottom:416.055000px;}
.y77{bottom:419.115000px;}
.y8d{bottom:423.795000px;}
.yb3{bottom:427.395000px;}
.y29{bottom:427.575000px;}
.ye1{bottom:436.575000px;}
.y57{bottom:436.755000px;}
.y8c{bottom:444.495000px;}
.y28{bottom:446.655000px;}
.ye0{bottom:457.275000px;}
.y56{bottom:457.455000px;}
.y8b{bottom:465.195000px;}
.y27{bottom:465.555000px;}
.ydf{bottom:477.975000px;}
.y55{bottom:478.155000px;}
.y26{bottom:484.635000px;}
.y8a{bottom:485.895000px;}
.y76{bottom:492.375000px;}
.yde{bottom:498.675000px;}
.y54{bottom:498.855000px;}
.y25{bottom:503.535000px;}
.y89{bottom:506.595000px;}
.y53{bottom:519.555000px;}
.y24{bottom:522.435000px;}
.ydd{bottom:540.075000px;}
.y52{bottom:540.255000px;}
.y23{bottom:541.515000px;}
.y88{bottom:547.995000px;}
.ydc{bottom:556.635000px;}
.y74{bottom:559.875000px;}
.y22{bottom:560.415000px;}
.y51{bottom:560.955000px;}
.y87{bottom:564.555000px;}
.yae{bottom:569.775000px;}
.y21{bottom:579.495000px;}
.y50{bottom:581.655000px;}
.yad{bottom:590.475000px;}
.y20{bottom:598.425000px;}
.y4f{bottom:602.385000px;}
.yac{bottom:611.205000px;}
.y1f{bottom:617.325000px;}
.y4e{bottom:623.085000px;}
.y73{bottom:627.405000px;}
.yab{bottom:631.905000px;}
.y86{bottom:632.085000px;}
.y1e{bottom:636.405000px;}
.y4d{bottom:643.785000px;}
.yaa{bottom:652.605000px;}
.y1d{bottom:655.305000px;}
.y4c{bottom:664.485000px;}
.ya9{bottom:673.305000px;}
.y1c{bottom:674.385000px;}
.y4b{bottom:685.185000px;}
.y1b{bottom:693.285000px;}
.ya8{bottom:694.005000px;}
.y6e{bottom:694.905000px;}
.y85{bottom:699.585000px;}
.y4a{bottom:705.885000px;}
.y1a{bottom:712.185000px;}
.ya7{bottom:714.705000px;}
.y49{bottom:726.585000px;}
.y19{bottom:731.265000px;}
.ya6{bottom:735.405000px;}
.y48{bottom:747.285000px;}
.y18{bottom:750.165000px;}
.ya5{bottom:756.105000px;}
.y84{bottom:767.085000px;}
.y47{bottom:767.985000px;}
.y17{bottom:769.245000px;}
.ya4{bottom:776.805000px;}
.y16{bottom:788.145000px;}
.y46{bottom:788.685000px;}
.ya3{bottom:797.505000px;}
.y15{bottom:807.225000px;}
.y45{bottom:809.385000px;}
.ya2{bottom:818.205000px;}
.y14{bottom:826.125000px;}
.y44{bottom:830.085000px;}
.y82{bottom:834.585000px;}
.y6c{bottom:835.485000px;}
.ya1{bottom:838.905000px;}
.y13{bottom:845.025000px;}
.y43{bottom:850.785000px;}
.ya0{bottom:859.605000px;}
.y12{bottom:864.150000px;}
.y42{bottom:871.530000px;}
.y9f{bottom:880.350000px;}
.y11{bottom:883.050000px;}
.y41{bottom:892.230000px;}
.y9e{bottom:897.090000px;}
.y10{bottom:902.130000px;}
.y6b{bottom:903.030000px;}
.y40{bottom:912.930000px;}
.yf{bottom:921.570000px;}
.ydb{bottom:929.850000px;}
.y3f{bottom:933.630000px;}
.ye{bottom:942.270000px;}
.yda{bottom:950.550000px;}
.y3e{bottom:954.330000px;}
.yd{bottom:962.970000px;}
.y81{bottom:969.630000px;}
.y68{bottom:970.530000px;}
.yd9{bottom:971.430000px;}
.y3d{bottom:975.030000px;}
.yc{bottom:983.670000px;}
.yd8{bottom:991.950000px;}
.y3c{bottom:995.730000px;}
.yb{bottom:1004.010000px;}
.yd7{bottom:1012.650000px;}
.y3b{bottom:1016.430000px;}
.ya{bottom:1022.910000px;}
.yd6{bottom:1033.350000px;}
.y3a{bottom:1037.130000px;}
.y9{bottom:1041.990000px;}
.y64{bottom:1043.790000px;}
.yd5{bottom:1054.050000px;}
.y39{bottom:1057.830000px;}
.y8{bottom:1060.890000px;}
.yd4{bottom:1074.750000px;}
.y38{bottom:1078.530000px;}
.y7{bottom:1087.530000px;}
.yd3{bottom:1095.450000px;}
.y6{bottom:1099.230000px;}
.y7f{bottom:1110.390000px;}
.y62{bottom:1111.290000px;}
.yd2{bottom:1117.410000px;}
.y5{bottom:1119.930000px;}
.y5f{bottom:1133.820000px;}
.yd1{bottom:1138.140000px;}
.y4{bottom:1140.660000px;}
.yd0{bottom:1160.100000px;}
.y3{bottom:1161.360000px;}
.y1{bottom:1195.920000px;}
.hb{height:22.536000px;}
.h5{height:43.554375px;}
.h9{height:44.100000px;}
.he{height:49.284492px;}
.ha{height:49.359375px;}
.hd{height:59.378906px;}
.h3{height:62.327813px;}
.h13{height:64.546875px;}
.hc{height:67.500000px;}
.h10{height:67.536000px;}
.h6{height:69.086250px;}
.h2{height:70.790625px;}
.h8{height:72.562500px;}
.h11{height:73.080000px;}
.hf{height:73.260000px;}
.h12{height:73.296000px;}
.h7{height:73.794375px;}
.h4{height:75.093750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:51.660000px;}
.w3{width:136.476000px;}
.w4{width:157.530000px;}
.w5{width:289.515000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.x14{left:21.060000px;}
.x15{left:23.580000px;}
.x13{left:25.740000px;}
.xe{left:105.336000px;}
.xd{left:106.416000px;}
.x3{left:110.916000px;}
.x17{left:120.096000px;}
.x4{left:132.336000px;}
.x1e{left:133.416000px;}
.x1c{left:138.456000px;}
.x1{left:143.136000px;}
.x18{left:155.190000px;}
.x10{left:156.990000px;}
.x1f{left:160.410000px;}
.x7{left:195.150000px;}
.xa{left:197.670000px;}
.x8{left:209.010000px;}
.x5{left:229.170000px;}
.x1b{left:248.835000px;}
.x9{left:284.835000px;}
.x11{left:293.475000px;}
.xb{left:346.215000px;}
.x19{left:358.995000px;}
.xc{left:401.475000px;}
.x6{left:446.505000px;}
.x12{left:451.005000px;}
.x21{left:738.360000px;}
.x1a{left:765.360000px;}
.x2{left:770.040000px;}
.x16{left:788.220000px;}
.x20{left:800.280000px;}
.x1d{left:824.940000px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls2{letter-spacing:-0.368533pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.158933pt;}
.ls1{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.061867pt;}
.ls8{letter-spacing:-0.051733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.233067pt;}
.lse{letter-spacing:0.235520pt;}
.ls5{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.768000pt;}
.lsc{letter-spacing:3.328000pt;}
.lsb{letter-spacing:102.528000pt;}
.lsa{letter-spacing:155.626667pt;}
.ls9{letter-spacing:428.266667pt;}
.lsf{letter-spacing:1191.413333pt;}
.ws6{word-spacing:-64.000000pt;}
.ws9{word-spacing:-18.560000pt;}
.ws4{word-spacing:-18.048000pt;}
.ws7{word-spacing:-17.792000pt;}
.ws8{word-spacing:-17.600000pt;}
.ws2{word-spacing:-16.368640pt;}
.ws0{word-spacing:-14.672427pt;}
.ws5{word-spacing:-11.943253pt;}
.ws1{word-spacing:-10.319360pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-2.423467pt;}
._2{margin-left:-1.408000pt;}
._0{width:1.235627pt;}
._1{width:2.759893pt;}
._d{width:3.669760pt;}
._11{width:4.608000pt;}
._9{width:5.701120pt;}
._8{width:6.712320pt;}
._c{width:7.675733pt;}
._e{width:9.361920pt;}
._6{width:10.421760pt;}
._7{width:12.011520pt;}
._4{width:13.660160pt;}
._5{width:14.773760pt;}
._15{width:16.138240pt;}
._13{width:19.008000pt;}
._1d{width:19.900587pt;}
._12{width:20.872533pt;}
._f{width:21.780480pt;}
._a{width:23.139840pt;}
._b{width:24.199680pt;}
._17{width:25.920000pt;}
._16{width:26.816000pt;}
._1b{width:34.496000pt;}
._18{width:38.208000pt;}
._1a{width:40.192000pt;}
._19{width:41.216000pt;}
._14{width:45.184000pt;}
._20{width:46.161920pt;}
._1c{width:48.768000pt;}
._1f{width:53.058560pt;}
._1e{width:54.405120pt;}
._10{width:750.346667pt;}
.fs1{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y63{bottom:-15.200000pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:3.520000pt;}
.y67{bottom:3.680000pt;}
.y60{bottom:4.320000pt;}
.y69{bottom:4.480000pt;}
.y7e{bottom:19.834667pt;}
.y72{bottom:19.840000pt;}
.y80{bottom:19.866667pt;}
.y66{bottom:20.000000pt;}
.y61{bottom:24.000000pt;}
.y7d{bottom:36.154667pt;}
.y71{bottom:36.160000pt;}
.y75{bottom:36.186667pt;}
.y83{bottom:36.200000pt;}
.y65{bottom:36.320000pt;}
.y6d{bottom:36.360000pt;}
.y2{bottom:50.080000pt;}
.y70{bottom:52.320000pt;}
.y6a{bottom:52.480000pt;}
.y7a{bottom:52.520000pt;}
.y9d{bottom:82.272000pt;}
.ycf{bottom:84.512000pt;}
.yb2{bottom:86.752000pt;}
.y5e{bottom:93.792000pt;}
.yf4{bottom:96.992000pt;}
.y9c{bottom:100.672000pt;}
.yce{bottom:104.032000pt;}
.yb1{bottom:105.152000pt;}
.yc1{bottom:107.392000pt;}
.y101{bottom:110.592000pt;}
.y5d{bottom:112.192000pt;}
.yf3{bottom:115.392000pt;}
.y9b{bottom:119.072000pt;}
.ycd{bottom:123.552000pt;}
.yc0{bottom:125.792000pt;}
.y7c{bottom:127.392000pt;}
.y100{bottom:128.992000pt;}
.y37{bottom:130.592000pt;}
.yf2{bottom:133.786667pt;}
.y9a{bottom:137.466667pt;}
.yb0{bottom:141.946667pt;}
.ybf{bottom:144.186667pt;}
.yff{bottom:147.066667pt;}
.y36{bottom:148.986667pt;}
.yf1{bottom:152.186667pt;}
.y99{bottom:155.866667pt;}
.yaf{bottom:156.826667pt;}
.ycc{bottom:160.346667pt;}
.ybe{bottom:162.586667pt;}
.yfe{bottom:163.866667pt;}
.y35{bottom:167.386667pt;}
.yf0{bottom:170.586667pt;}
.y98{bottom:174.266667pt;}
.ycb{bottom:178.746667pt;}
.yfd{bottom:180.826667pt;}
.ybd{bottom:180.986667pt;}
.y34{bottom:185.786667pt;}
.y7b{bottom:187.386667pt;}
.yef{bottom:188.986667pt;}
.y97{bottom:192.666667pt;}
.yca{bottom:197.146667pt;}
.yfc{bottom:197.626667pt;}
.ybc{bottom:199.386667pt;}
.y33{bottom:204.186667pt;}
.yee{bottom:207.386667pt;}
.y96{bottom:211.066667pt;}
.yfb{bottom:214.426667pt;}
.yc9{bottom:215.546667pt;}
.ybb{bottom:217.786667pt;}
.y32{bottom:222.586667pt;}
.yed{bottom:225.786667pt;}
.y95{bottom:229.466667pt;}
.yfa{bottom:231.386667pt;}
.yc8{bottom:233.946667pt;}
.yba{bottom:236.186667pt;}
.y31{bottom:240.986667pt;}
.yec{bottom:244.186667pt;}
.y79{bottom:247.386667pt;}
.y94{bottom:247.866667pt;}
.yf9{bottom:248.186667pt;}
.yc7{bottom:252.346667pt;}
.yb9{bottom:254.586667pt;}
.y30{bottom:259.386667pt;}
.yeb{bottom:262.586667pt;}
.yf8{bottom:265.146667pt;}
.y93{bottom:266.266667pt;}
.yc6{bottom:270.746667pt;}
.yb8{bottom:272.986667pt;}
.y2f{bottom:277.786667pt;}
.yea{bottom:280.986667pt;}
.yf7{bottom:281.946667pt;}
.y92{bottom:284.666667pt;}
.yc5{bottom:289.146667pt;}
.yb7{bottom:291.426667pt;}
.y2e{bottom:295.746667pt;}
.y5c{bottom:296.226667pt;}
.yf6{bottom:298.786667pt;}
.ye9{bottom:299.426667pt;}
.y91{bottom:303.106667pt;}
.yc4{bottom:307.586667pt;}
.yb6{bottom:309.826667pt;}
.y78{bottom:312.546667pt;}
.y2d{bottom:312.706667pt;}
.ye5{bottom:314.466667pt;}
.y5b{bottom:314.626667pt;}
.yf5{bottom:315.746667pt;}
.ye8{bottom:317.826667pt;}
.y90{bottom:321.506667pt;}
.yc3{bottom:325.986667pt;}
.yb5{bottom:328.226667pt;}
.y2c{bottom:329.506667pt;}
.ye4{bottom:332.866667pt;}
.y5a{bottom:333.026667pt;}
.ye7{bottom:336.226667pt;}
.y8f{bottom:339.906667pt;}
.yc2{bottom:340.706667pt;}
.y2b{bottom:346.466667pt;}
.ye6{bottom:350.946667pt;}
.ye3{bottom:351.266667pt;}
.y59{bottom:351.426667pt;}
.y8e{bottom:358.306667pt;}
.y2a{bottom:363.266667pt;}
.yb4{bottom:365.026667pt;}
.ye2{bottom:369.666667pt;}
.y58{bottom:369.826667pt;}
.y77{bottom:372.546667pt;}
.y8d{bottom:376.706667pt;}
.yb3{bottom:379.906667pt;}
.y29{bottom:380.066667pt;}
.ye1{bottom:388.066667pt;}
.y57{bottom:388.226667pt;}
.y8c{bottom:395.106667pt;}
.y28{bottom:397.026667pt;}
.ye0{bottom:406.466667pt;}
.y56{bottom:406.626667pt;}
.y8b{bottom:413.506667pt;}
.y27{bottom:413.826667pt;}
.ydf{bottom:424.866667pt;}
.y55{bottom:425.026667pt;}
.y26{bottom:430.786667pt;}
.y8a{bottom:431.906667pt;}
.y76{bottom:437.666667pt;}
.yde{bottom:443.266667pt;}
.y54{bottom:443.426667pt;}
.y25{bottom:447.586667pt;}
.y89{bottom:450.306667pt;}
.y53{bottom:461.826667pt;}
.y24{bottom:464.386667pt;}
.ydd{bottom:480.066667pt;}
.y52{bottom:480.226667pt;}
.y23{bottom:481.346667pt;}
.y88{bottom:487.106667pt;}
.ydc{bottom:494.786667pt;}
.y74{bottom:497.666667pt;}
.y22{bottom:498.146667pt;}
.y51{bottom:498.626667pt;}
.y87{bottom:501.826667pt;}
.yae{bottom:506.466667pt;}
.y21{bottom:515.106667pt;}
.y50{bottom:517.026667pt;}
.yad{bottom:524.866667pt;}
.y20{bottom:531.933333pt;}
.y4f{bottom:535.453333pt;}
.yac{bottom:543.293333pt;}
.y1f{bottom:548.733333pt;}
.y4e{bottom:553.853333pt;}
.y73{bottom:557.693333pt;}
.yab{bottom:561.693333pt;}
.y86{bottom:561.853333pt;}
.y1e{bottom:565.693333pt;}
.y4d{bottom:572.253333pt;}
.yaa{bottom:580.093333pt;}
.y1d{bottom:582.493333pt;}
.y4c{bottom:590.653333pt;}
.ya9{bottom:598.493333pt;}
.y1c{bottom:599.453333pt;}
.y4b{bottom:609.053333pt;}
.y1b{bottom:616.253333pt;}
.ya8{bottom:616.893333pt;}
.y6e{bottom:617.693333pt;}
.y85{bottom:621.853333pt;}
.y4a{bottom:627.453333pt;}
.y1a{bottom:633.053333pt;}
.ya7{bottom:635.293333pt;}
.y49{bottom:645.853333pt;}
.y19{bottom:650.013333pt;}
.ya6{bottom:653.693333pt;}
.y48{bottom:664.253333pt;}
.y18{bottom:666.813333pt;}
.ya5{bottom:672.093333pt;}
.y84{bottom:681.853333pt;}
.y47{bottom:682.653333pt;}
.y17{bottom:683.773333pt;}
.ya4{bottom:690.493333pt;}
.y16{bottom:700.573333pt;}
.y46{bottom:701.053333pt;}
.ya3{bottom:708.893333pt;}
.y15{bottom:717.533333pt;}
.y45{bottom:719.453333pt;}
.ya2{bottom:727.293333pt;}
.y14{bottom:734.333333pt;}
.y44{bottom:737.853333pt;}
.y82{bottom:741.853333pt;}
.y6c{bottom:742.653333pt;}
.ya1{bottom:745.693333pt;}
.y13{bottom:751.133333pt;}
.y43{bottom:756.253333pt;}
.ya0{bottom:764.093333pt;}
.y12{bottom:768.133333pt;}
.y42{bottom:774.693333pt;}
.y9f{bottom:782.533333pt;}
.y11{bottom:784.933333pt;}
.y41{bottom:793.093333pt;}
.y9e{bottom:797.413333pt;}
.y10{bottom:801.893333pt;}
.y6b{bottom:802.693333pt;}
.y40{bottom:811.493333pt;}
.yf{bottom:819.173333pt;}
.ydb{bottom:826.533333pt;}
.y3f{bottom:829.893333pt;}
.ye{bottom:837.573333pt;}
.yda{bottom:844.933333pt;}
.y3e{bottom:848.293333pt;}
.yd{bottom:855.973333pt;}
.y81{bottom:861.893333pt;}
.y68{bottom:862.693333pt;}
.yd9{bottom:863.493333pt;}
.y3d{bottom:866.693333pt;}
.yc{bottom:874.373333pt;}
.yd8{bottom:881.733333pt;}
.y3c{bottom:885.093333pt;}
.yb{bottom:892.453333pt;}
.yd7{bottom:900.133333pt;}
.y3b{bottom:903.493333pt;}
.ya{bottom:909.253333pt;}
.yd6{bottom:918.533333pt;}
.y3a{bottom:921.893333pt;}
.y9{bottom:926.213333pt;}
.y64{bottom:927.813333pt;}
.yd5{bottom:936.933333pt;}
.y39{bottom:940.293333pt;}
.y8{bottom:943.013333pt;}
.yd4{bottom:955.333333pt;}
.y38{bottom:958.693333pt;}
.y7{bottom:966.693333pt;}
.yd3{bottom:973.733333pt;}
.y6{bottom:977.093333pt;}
.y7f{bottom:987.013333pt;}
.y62{bottom:987.813333pt;}
.yd2{bottom:993.253333pt;}
.y5{bottom:995.493333pt;}
.y5f{bottom:1007.840000pt;}
.yd1{bottom:1011.680000pt;}
.y4{bottom:1013.920000pt;}
.yd0{bottom:1031.200000pt;}
.y3{bottom:1032.320000pt;}
.y1{bottom:1063.040000pt;}
.hb{height:20.032000pt;}
.h5{height:38.715000pt;}
.h9{height:39.200000pt;}
.he{height:43.808438pt;}
.ha{height:43.875000pt;}
.hd{height:52.781250pt;}
.h3{height:55.402500pt;}
.h13{height:57.375000pt;}
.hc{height:60.000000pt;}
.h10{height:60.032000pt;}
.h6{height:61.410000pt;}
.h2{height:62.925000pt;}
.h8{height:64.500000pt;}
.h11{height:64.960000pt;}
.hf{height:65.120000pt;}
.h12{height:65.152000pt;}
.h7{height:65.595000pt;}
.h4{height:66.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:45.920000pt;}
.w3{width:121.312000pt;}
.w4{width:140.026667pt;}
.w5{width:257.346667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.x14{left:18.720000pt;}
.x15{left:20.960000pt;}
.x13{left:22.880000pt;}
.xe{left:93.632000pt;}
.xd{left:94.592000pt;}
.x3{left:98.592000pt;}
.x17{left:106.752000pt;}
.x4{left:117.632000pt;}
.x1e{left:118.592000pt;}
.x1c{left:123.072000pt;}
.x1{left:127.232000pt;}
.x18{left:137.946667pt;}
.x10{left:139.546667pt;}
.x1f{left:142.586667pt;}
.x7{left:173.466667pt;}
.xa{left:175.706667pt;}
.x8{left:185.786667pt;}
.x5{left:203.706667pt;}
.x1b{left:221.186667pt;}
.x9{left:253.186667pt;}
.x11{left:260.866667pt;}
.xb{left:307.746667pt;}
.x19{left:319.106667pt;}
.xc{left:356.866667pt;}
.x6{left:396.893333pt;}
.x12{left:400.893333pt;}
.x21{left:656.320000pt;}
.x1a{left:680.320000pt;}
.x2{left:684.480000pt;}
.x16{left:700.640000pt;}
.x20{left:711.360000pt;}
.x1d{left:733.280000pt;}
}

