
    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_4671caa2e6f2a25b743a065a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.110000;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_f795da84b57acda99274a91c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.129000;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_b66a9492d29bb75d22b7260d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.045000;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_20ab99a518b325e5532c3bb6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.000000;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_71683e9b46ffa8050ad939e5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.000000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-5.085000px;}
.ls13{letter-spacing:-0.996600px;}
.ls12{letter-spacing:-0.990000px;}
.ls1a{letter-spacing:-0.630000px;}
.ls19{letter-spacing:-0.618000px;}
.ls16{letter-spacing:-0.607500px;}
.ls17{letter-spacing:-0.606000px;}
.ls18{letter-spacing:-0.603000px;}
.ls15{letter-spacing:-0.585000px;}
.lsd{letter-spacing:-0.349800px;}
.lsf{letter-spacing:-0.343200px;}
.lse{letter-spacing:-0.336600px;}
.lsc{letter-spacing:-0.330000px;}
.ls8{letter-spacing:-0.026400px;}
.lsb{letter-spacing:-0.019800px;}
.ls3{letter-spacing:-0.016200px;}
.ls9{letter-spacing:-0.013200px;}
.ls4{letter-spacing:-0.010800px;}
.lsa{letter-spacing:-0.009900px;}
.ls5{letter-spacing:-0.007200px;}
.ls2{letter-spacing:-0.006600px;}
.ls6{letter-spacing:-0.003600px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.244200px;}
.ls0{letter-spacing:0.990000px;}
.ls11{letter-spacing:15.292200px;}
.ls10{letter-spacing:32.868000px;}
.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;}
}
.ws2b{word-spacing:-16.500000px;}
.ws2c{word-spacing:-16.493400px;}
.ws2e{word-spacing:-16.486800px;}
.ws2d{word-spacing:-16.480200px;}
.ws28{word-spacing:-16.473600px;}
.ws2f{word-spacing:-16.150200px;}
.ws58{word-spacing:-15.510000px;}
.ws59{word-spacing:-15.000000px;}
.ws5c{word-spacing:-14.394000px;}
.ws60{word-spacing:-14.382000px;}
.ws62{word-spacing:-14.040000px;}
.ws5d{word-spacing:-10.647000px;}
.ws61{word-spacing:-10.620000px;}
.ws63{word-spacing:-10.530000px;}
.ws1{word-spacing:-9.360000px;}
.ws0{word-spacing:-9.349200px;}
.ws75{word-spacing:-2.019600px;}
.ws3a{word-spacing:-1.914000px;}
.ws3f{word-spacing:-1.834800px;}
.ws4e{word-spacing:-1.782000px;}
.ws4d{word-spacing:-1.768800px;}
.wse{word-spacing:-1.716000px;}
.ws4a{word-spacing:-1.491600px;}
.ws6d{word-spacing:-1.386000px;}
.ws20{word-spacing:-1.254000px;}
.ws72{word-spacing:-1.188000px;}
.ws40{word-spacing:-1.135200px;}
.ws41{word-spacing:-1.122000px;}
.ws1d{word-spacing:-1.056000px;}
.ws47{word-spacing:-0.924000px;}
.ws52{word-spacing:-0.825000px;}
.ws39{word-spacing:-0.765600px;}
.ws8{word-spacing:-0.726000px;}
.ws7c{word-spacing:-0.660000px;}
.ws17{word-spacing:-0.264000px;}
.ws74{word-spacing:-0.066000px;}
.ws27{word-spacing:0.000000px;}
.ws49{word-spacing:0.132000px;}
.ws5{word-spacing:0.198000px;}
.ws57{word-spacing:0.318600px;}
.ws56{word-spacing:0.389400px;}
.ws7a{word-spacing:0.396000px;}
.ws64{word-spacing:0.660000px;}
.ws14{word-spacing:0.726000px;}
.ws2{word-spacing:0.900000px;}
.ws55{word-spacing:0.917400px;}
.ws7{word-spacing:0.924000px;}
.ws25{word-spacing:0.936000px;}
.ws42{word-spacing:0.957000px;}
.ws16{word-spacing:0.990000px;}
.ws13{word-spacing:1.056000px;}
.ws1f{word-spacing:1.122000px;}
.ws24{word-spacing:1.350000px;}
.ws34{word-spacing:1.386000px;}
.ws83{word-spacing:1.500000px;}
.ws48{word-spacing:1.518000px;}
.ws82{word-spacing:1.560000px;}
.wsd{word-spacing:1.650000px;}
.ws7f{word-spacing:1.980000px;}
.wsb{word-spacing:2.046000px;}
.ws3c{word-spacing:2.171400px;}
.ws3d{word-spacing:2.178000px;}
.ws68{word-spacing:2.442000px;}
.ws6b{word-spacing:2.640000px;}
.ws6e{word-spacing:2.706000px;}
.ws1b{word-spacing:2.838000px;}
.ws23{word-spacing:2.904000px;}
.wsc{word-spacing:2.970000px;}
.ws53{word-spacing:3.102000px;}
.ws80{word-spacing:3.115200px;}
.ws26{word-spacing:3.120000px;}
.ws6c{word-spacing:3.234000px;}
.ws6{word-spacing:3.300000px;}
.ws12{word-spacing:3.762000px;}
.ws67{word-spacing:4.026000px;}
.ws4c{word-spacing:4.356000px;}
.ws22{word-spacing:4.422000px;}
.ws1a{word-spacing:4.554000px;}
.ws54{word-spacing:4.745400px;}
.ws77{word-spacing:4.884000px;}
.ws76{word-spacing:4.917000px;}
.ws70{word-spacing:4.950000px;}
.ws5f{word-spacing:5.099400px;}
.ws46{word-spacing:5.187600px;}
.ws5b{word-spacing:5.220000px;}
.ws5e{word-spacing:5.263500px;}
.ws43{word-spacing:5.326200px;}
.ws4f{word-spacing:5.808000px;}
.ws21{word-spacing:5.940000px;}
.ws10{word-spacing:6.402000px;}
.ws45{word-spacing:6.468000px;}
.ws33{word-spacing:6.534000px;}
.ws38{word-spacing:6.600000px;}
.ws37{word-spacing:6.606600px;}
.ws15{word-spacing:6.930000px;}
.ws66{word-spacing:6.996000px;}
.ws50{word-spacing:7.055400px;}
.ws19{word-spacing:7.062000px;}
.ws18{word-spacing:7.128000px;}
.ws31{word-spacing:7.524000px;}
.ws30{word-spacing:7.550400px;}
.ws6f{word-spacing:7.920000px;}
.ws79{word-spacing:7.959600px;}
.ws11{word-spacing:8.184000px;}
.ws4{word-spacing:8.382000px;}
.ws32{word-spacing:8.514000px;}
.ws29{word-spacing:8.546400px;}
.ws3b{word-spacing:8.606400px;}
.ws81{word-spacing:8.778000px;}
.ws78{word-spacing:8.976000px;}
.ws65{word-spacing:9.042000px;}
.wsa{word-spacing:9.174000px;}
.ws73{word-spacing:9.372000px;}
.ws35{word-spacing:9.504000px;}
.ws7e{word-spacing:9.570000px;}
.ws1c{word-spacing:10.117800px;}
.ws3{word-spacing:10.428000px;}
.ws44{word-spacing:10.467600px;}
.wsf{word-spacing:12.012000px;}
.ws4b{word-spacing:12.210000px;}
.ws9{word-spacing:12.229800px;}
.ws1e{word-spacing:12.342000px;}
.ws7d{word-spacing:12.474000px;}
.ws2a{word-spacing:12.660600px;}
.ws5a{word-spacing:14.255400px;}
.ws51{word-spacing:14.751000px;}
.ws71{word-spacing:16.896000px;}
.ws36{word-spacing:17.278800px;}
.ws7b{word-spacing:17.358000px;}
.ws6a{word-spacing:17.952000px;}
.ws69{word-spacing:23.568600px;}
.ws3e{word-spacing:24.499200px;}
._1{margin-left:-7.590000px;}
._2{margin-left:-4.356000px;}
._5{margin-left:-3.168000px;}
._0{margin-left:-1.782000px;}
._4{width:1.188000px;}
._6{width:2.428800px;}
._7{width:4.455000px;}
._3{width:26.514000px;}
.fc3{color:transparent;}
.fc2{color:rgb(97,132,156);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:6.000000px;}
.fs2{font-size:36.000000px;}
.fs8{font-size:40.500000px;}
.fs7{font-size:45.000000px;}
.fs5{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:106.540200px;}
.y2d{bottom:106.543200px;}
.y5c{bottom:106.852650px;}
.y45{bottom:106.984650px;}
.y5b{bottom:129.358650px;}
.y44{bottom:129.490650px;}
.y5a{bottom:151.864650px;}
.y43{bottom:151.996650px;}
.y59{bottom:174.370650px;}
.y42{bottom:174.502650px;}
.y58{bottom:196.876650px;}
.y41{bottom:197.008650px;}
.y57{bottom:219.382650px;}
.y40{bottom:219.514650px;}
.y56{bottom:241.888650px;}
.y3f{bottom:242.020650px;}
.y55{bottom:264.394650px;}
.y3e{bottom:264.526650px;}
.y54{bottom:286.900650px;}
.y3d{bottom:287.032650px;}
.y53{bottom:309.406650px;}
.y3c{bottom:309.538650px;}
.y52{bottom:331.912650px;}
.y3b{bottom:332.044650px;}
.y51{bottom:354.418650px;}
.y3a{bottom:354.550650px;}
.y50{bottom:376.924650px;}
.y39{bottom:377.056650px;}
.y4f{bottom:399.430650px;}
.y38{bottom:399.562650px;}
.y4e{bottom:421.936650px;}
.y37{bottom:422.068650px;}
.y4d{bottom:444.442650px;}
.y36{bottom:444.574650px;}
.y7a{bottom:466.937550px;}
.y4c{bottom:466.948650px;}
.y35{bottom:467.080650px;}
.y91{bottom:481.861800px;}
.y79{bottom:489.443550px;}
.y4b{bottom:489.454650px;}
.y34{bottom:489.586650px;}
.y90{bottom:499.855500px;}
.y28{bottom:511.797000px;}
.y14{bottom:511.912500px;}
.y78{bottom:511.949550px;}
.y4a{bottom:511.960650px;}
.y33{bottom:512.092650px;}
.y8f{bottom:533.241000px;}
.y27{bottom:534.303000px;}
.y13{bottom:534.418500px;}
.y77{bottom:534.455550px;}
.y49{bottom:534.466650px;}
.y32{bottom:534.598650px;}
.y8e{bottom:551.241000px;}
.y26{bottom:556.809000px;}
.y12{bottom:556.924500px;}
.y76{bottom:556.961550px;}
.y48{bottom:556.972650px;}
.y31{bottom:557.092650px;}
.y5e{bottom:561.503700px;}
.y8d{bottom:578.242650px;}
.y25{bottom:579.315000px;}
.y11{bottom:579.430500px;}
.y75{bottom:579.467550px;}
.y47{bottom:579.478650px;}
.y30{bottom:579.598650px;}
.y29{bottom:587.985150px;}
.y8c{bottom:597.742650px;}
.y24{bottom:601.821000px;}
.y10{bottom:601.936500px;}
.y74{bottom:601.973550px;}
.y46{bottom:601.984650px;}
.y2f{bottom:602.104650px;}
.y5d{bottom:602.561100px;}
.y8b{bottom:617.242650px;}
.y23{bottom:624.327000px;}
.yf{bottom:624.442500px;}
.y73{bottom:624.479550px;}
.y2a{bottom:633.543600px;}
.y22{bottom:646.833000px;}
.ye{bottom:646.948500px;}
.y72{bottom:646.985550px;}
.y21{bottom:669.339000px;}
.yd{bottom:669.454500px;}
.y71{bottom:669.491550px;}
.y20{bottom:691.845000px;}
.y8a{bottom:691.865550px;}
.yc{bottom:691.960500px;}
.y70{bottom:691.997550px;}
.y1f{bottom:714.351000px;}
.y89{bottom:714.371550px;}
.yb{bottom:714.466500px;}
.y6f{bottom:714.503550px;}
.y1e{bottom:736.857000px;}
.y88{bottom:736.877550px;}
.ya{bottom:736.972500px;}
.y6e{bottom:737.009550px;}
.y1d{bottom:759.363000px;}
.y87{bottom:759.383550px;}
.y9{bottom:759.478500px;}
.y6d{bottom:759.515550px;}
.y1c{bottom:781.869000px;}
.y86{bottom:781.889550px;}
.y8{bottom:781.984500px;}
.y6c{bottom:782.021550px;}
.y1b{bottom:804.375000px;}
.y85{bottom:804.395550px;}
.y7{bottom:804.490500px;}
.y6b{bottom:804.527550px;}
.y1a{bottom:826.881000px;}
.y6{bottom:826.996500px;}
.y6a{bottom:827.033550px;}
.y19{bottom:849.387000px;}
.y84{bottom:849.391050px;}
.y5{bottom:849.502500px;}
.y69{bottom:849.539550px;}
.y18{bottom:871.893000px;}
.y83{bottom:871.897050px;}
.y4{bottom:872.008500px;}
.y68{bottom:872.039550px;}
.y17{bottom:894.399000px;}
.y82{bottom:894.403050px;}
.y67{bottom:894.509550px;}
.y3{bottom:894.514500px;}
.y16{bottom:916.905000px;}
.y81{bottom:916.909050px;}
.y66{bottom:917.015550px;}
.y2{bottom:917.020500px;}
.y15{bottom:939.411000px;}
.y80{bottom:939.415050px;}
.y65{bottom:939.521550px;}
.y1{bottom:939.526500px;}
.y7f{bottom:961.921050px;}
.y64{bottom:962.027550px;}
.y7e{bottom:984.427050px;}
.y63{bottom:984.533550px;}
.y2c{bottom:995.583900px;}
.y7d{bottom:1006.933050px;}
.y62{bottom:1007.039550px;}
.y7c{bottom:1029.439050px;}
.y61{bottom:1029.545550px;}
.y2b{bottom:1031.583900px;}
.y7b{bottom:1051.945050px;}
.y60{bottom:1052.051550px;}
.y2e{bottom:2690.551500px;}
.h7{height:0.000000px;}
.h4{height:30.960000px;}
.h6{height:41.040000px;}
.hd{height:45.414000px;}
.h3{height:46.440000px;}
.hc{height:50.460000px;}
.hb{height:51.600000px;}
.h2{height:55.506000px;}
.ha{height:55.530000px;}
.h8{height:55.554000px;}
.h9{height:55.650000px;}
.h5{height:103.200000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:977.952000px;}
.w1{width:978.000000px;}
.xa{left:-1500.000000px;}
.x0{left:0.000000px;}
.x5{left:38.372100px;}
.x6{left:51.716400px;}
.xc{left:93.544800px;}
.xb{left:108.543300px;}
.x9{left:140.304150px;}
.x11{left:165.258750px;}
.x1{left:310.393650px;}
.x2{left:325.392150px;}
.x8{left:354.022950px;}
.xd{left:391.205100px;}
.x15{left:400.931100px;}
.x14{left:403.709250px;}
.xe{left:406.203600px;}
.x7{left:414.172950px;}
.x13{left:431.434650px;}
.x12{left:489.199650px;}
.x3{left:608.037150px;}
.x4{left:623.035650px;}
.x10{left:688.818750px;}
.xf{left:918.529500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-4.520000pt;}
.ls13{letter-spacing:-0.885867pt;}
.ls12{letter-spacing:-0.880000pt;}
.ls1a{letter-spacing:-0.560000pt;}
.ls19{letter-spacing:-0.549333pt;}
.ls16{letter-spacing:-0.540000pt;}
.ls17{letter-spacing:-0.538667pt;}
.ls18{letter-spacing:-0.536000pt;}
.ls15{letter-spacing:-0.520000pt;}
.lsd{letter-spacing:-0.310933pt;}
.lsf{letter-spacing:-0.305067pt;}
.lse{letter-spacing:-0.299200pt;}
.lsc{letter-spacing:-0.293333pt;}
.ls8{letter-spacing:-0.023467pt;}
.lsb{letter-spacing:-0.017600pt;}
.ls3{letter-spacing:-0.014400pt;}
.ls9{letter-spacing:-0.011733pt;}
.ls4{letter-spacing:-0.009600pt;}
.lsa{letter-spacing:-0.008800pt;}
.ls5{letter-spacing:-0.006400pt;}
.ls2{letter-spacing:-0.005867pt;}
.ls6{letter-spacing:-0.003200pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.217067pt;}
.ls0{letter-spacing:0.880000pt;}
.ls11{letter-spacing:13.593067pt;}
.ls10{letter-spacing:29.216000pt;}
.ws2b{word-spacing:-14.666667pt;}
.ws2c{word-spacing:-14.660800pt;}
.ws2e{word-spacing:-14.654933pt;}
.ws2d{word-spacing:-14.649067pt;}
.ws28{word-spacing:-14.643200pt;}
.ws2f{word-spacing:-14.355733pt;}
.ws58{word-spacing:-13.786667pt;}
.ws59{word-spacing:-13.333333pt;}
.ws5c{word-spacing:-12.794667pt;}
.ws60{word-spacing:-12.784000pt;}
.ws62{word-spacing:-12.480000pt;}
.ws5d{word-spacing:-9.464000pt;}
.ws61{word-spacing:-9.440000pt;}
.ws63{word-spacing:-9.360000pt;}
.ws1{word-spacing:-8.320000pt;}
.ws0{word-spacing:-8.310400pt;}
.ws75{word-spacing:-1.795200pt;}
.ws3a{word-spacing:-1.701333pt;}
.ws3f{word-spacing:-1.630933pt;}
.ws4e{word-spacing:-1.584000pt;}
.ws4d{word-spacing:-1.572267pt;}
.wse{word-spacing:-1.525333pt;}
.ws4a{word-spacing:-1.325867pt;}
.ws6d{word-spacing:-1.232000pt;}
.ws20{word-spacing:-1.114667pt;}
.ws72{word-spacing:-1.056000pt;}
.ws40{word-spacing:-1.009067pt;}
.ws41{word-spacing:-0.997333pt;}
.ws1d{word-spacing:-0.938667pt;}
.ws47{word-spacing:-0.821333pt;}
.ws52{word-spacing:-0.733333pt;}
.ws39{word-spacing:-0.680533pt;}
.ws8{word-spacing:-0.645333pt;}
.ws7c{word-spacing:-0.586667pt;}
.ws17{word-spacing:-0.234667pt;}
.ws74{word-spacing:-0.058667pt;}
.ws27{word-spacing:0.000000pt;}
.ws49{word-spacing:0.117333pt;}
.ws5{word-spacing:0.176000pt;}
.ws57{word-spacing:0.283200pt;}
.ws56{word-spacing:0.346133pt;}
.ws7a{word-spacing:0.352000pt;}
.ws64{word-spacing:0.586667pt;}
.ws14{word-spacing:0.645333pt;}
.ws2{word-spacing:0.800000pt;}
.ws55{word-spacing:0.815467pt;}
.ws7{word-spacing:0.821333pt;}
.ws25{word-spacing:0.832000pt;}
.ws42{word-spacing:0.850667pt;}
.ws16{word-spacing:0.880000pt;}
.ws13{word-spacing:0.938667pt;}
.ws1f{word-spacing:0.997333pt;}
.ws24{word-spacing:1.200000pt;}
.ws34{word-spacing:1.232000pt;}
.ws83{word-spacing:1.333333pt;}
.ws48{word-spacing:1.349333pt;}
.ws82{word-spacing:1.386667pt;}
.wsd{word-spacing:1.466667pt;}
.ws7f{word-spacing:1.760000pt;}
.wsb{word-spacing:1.818667pt;}
.ws3c{word-spacing:1.930133pt;}
.ws3d{word-spacing:1.936000pt;}
.ws68{word-spacing:2.170667pt;}
.ws6b{word-spacing:2.346667pt;}
.ws6e{word-spacing:2.405333pt;}
.ws1b{word-spacing:2.522667pt;}
.ws23{word-spacing:2.581333pt;}
.wsc{word-spacing:2.640000pt;}
.ws53{word-spacing:2.757333pt;}
.ws80{word-spacing:2.769067pt;}
.ws26{word-spacing:2.773333pt;}
.ws6c{word-spacing:2.874667pt;}
.ws6{word-spacing:2.933333pt;}
.ws12{word-spacing:3.344000pt;}
.ws67{word-spacing:3.578667pt;}
.ws4c{word-spacing:3.872000pt;}
.ws22{word-spacing:3.930667pt;}
.ws1a{word-spacing:4.048000pt;}
.ws54{word-spacing:4.218133pt;}
.ws77{word-spacing:4.341333pt;}
.ws76{word-spacing:4.370667pt;}
.ws70{word-spacing:4.400000pt;}
.ws5f{word-spacing:4.532800pt;}
.ws46{word-spacing:4.611200pt;}
.ws5b{word-spacing:4.640000pt;}
.ws5e{word-spacing:4.678667pt;}
.ws43{word-spacing:4.734400pt;}
.ws4f{word-spacing:5.162667pt;}
.ws21{word-spacing:5.280000pt;}
.ws10{word-spacing:5.690667pt;}
.ws45{word-spacing:5.749333pt;}
.ws33{word-spacing:5.808000pt;}
.ws38{word-spacing:5.866667pt;}
.ws37{word-spacing:5.872533pt;}
.ws15{word-spacing:6.160000pt;}
.ws66{word-spacing:6.218667pt;}
.ws50{word-spacing:6.271467pt;}
.ws19{word-spacing:6.277333pt;}
.ws18{word-spacing:6.336000pt;}
.ws31{word-spacing:6.688000pt;}
.ws30{word-spacing:6.711467pt;}
.ws6f{word-spacing:7.040000pt;}
.ws79{word-spacing:7.075200pt;}
.ws11{word-spacing:7.274667pt;}
.ws4{word-spacing:7.450667pt;}
.ws32{word-spacing:7.568000pt;}
.ws29{word-spacing:7.596800pt;}
.ws3b{word-spacing:7.650133pt;}
.ws81{word-spacing:7.802667pt;}
.ws78{word-spacing:7.978667pt;}
.ws65{word-spacing:8.037333pt;}
.wsa{word-spacing:8.154667pt;}
.ws73{word-spacing:8.330667pt;}
.ws35{word-spacing:8.448000pt;}
.ws7e{word-spacing:8.506667pt;}
.ws1c{word-spacing:8.993600pt;}
.ws3{word-spacing:9.269333pt;}
.ws44{word-spacing:9.304533pt;}
.wsf{word-spacing:10.677333pt;}
.ws4b{word-spacing:10.853333pt;}
.ws9{word-spacing:10.870933pt;}
.ws1e{word-spacing:10.970667pt;}
.ws7d{word-spacing:11.088000pt;}
.ws2a{word-spacing:11.253867pt;}
.ws5a{word-spacing:12.671467pt;}
.ws51{word-spacing:13.112000pt;}
.ws71{word-spacing:15.018667pt;}
.ws36{word-spacing:15.358933pt;}
.ws7b{word-spacing:15.429333pt;}
.ws6a{word-spacing:15.957333pt;}
.ws69{word-spacing:20.949867pt;}
.ws3e{word-spacing:21.777067pt;}
._1{margin-left:-6.746667pt;}
._2{margin-left:-3.872000pt;}
._5{margin-left:-2.816000pt;}
._0{margin-left:-1.584000pt;}
._4{width:1.056000pt;}
._6{width:2.158933pt;}
._7{width:3.960000pt;}
._3{width:23.568000pt;}
.fs4{font-size:5.333333pt;}
.fs2{font-size:32.000000pt;}
.fs8{font-size:36.000000pt;}
.fs7{font-size:40.000000pt;}
.fs5{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:94.702400pt;}
.y2d{bottom:94.705067pt;}
.y5c{bottom:94.980133pt;}
.y45{bottom:95.097467pt;}
.y5b{bottom:114.985467pt;}
.y44{bottom:115.102800pt;}
.y5a{bottom:134.990800pt;}
.y43{bottom:135.108133pt;}
.y59{bottom:154.996133pt;}
.y42{bottom:155.113467pt;}
.y58{bottom:175.001467pt;}
.y41{bottom:175.118800pt;}
.y57{bottom:195.006800pt;}
.y40{bottom:195.124133pt;}
.y56{bottom:215.012133pt;}
.y3f{bottom:215.129467pt;}
.y55{bottom:235.017467pt;}
.y3e{bottom:235.134800pt;}
.y54{bottom:255.022800pt;}
.y3d{bottom:255.140133pt;}
.y53{bottom:275.028133pt;}
.y3c{bottom:275.145467pt;}
.y52{bottom:295.033467pt;}
.y3b{bottom:295.150800pt;}
.y51{bottom:315.038800pt;}
.y3a{bottom:315.156133pt;}
.y50{bottom:335.044133pt;}
.y39{bottom:335.161467pt;}
.y4f{bottom:355.049467pt;}
.y38{bottom:355.166800pt;}
.y4e{bottom:375.054800pt;}
.y37{bottom:375.172133pt;}
.y4d{bottom:395.060133pt;}
.y36{bottom:395.177467pt;}
.y7a{bottom:415.055600pt;}
.y4c{bottom:415.065467pt;}
.y35{bottom:415.182800pt;}
.y91{bottom:428.321600pt;}
.y79{bottom:435.060933pt;}
.y4b{bottom:435.070800pt;}
.y34{bottom:435.188133pt;}
.y90{bottom:444.316000pt;}
.y28{bottom:454.930667pt;}
.y14{bottom:455.033333pt;}
.y78{bottom:455.066267pt;}
.y4a{bottom:455.076133pt;}
.y33{bottom:455.193467pt;}
.y8f{bottom:473.992000pt;}
.y27{bottom:474.936000pt;}
.y13{bottom:475.038667pt;}
.y77{bottom:475.071600pt;}
.y49{bottom:475.081467pt;}
.y32{bottom:475.198800pt;}
.y8e{bottom:489.992000pt;}
.y26{bottom:494.941333pt;}
.y12{bottom:495.044000pt;}
.y76{bottom:495.076933pt;}
.y48{bottom:495.086800pt;}
.y31{bottom:495.193467pt;}
.y5e{bottom:499.114400pt;}
.y8d{bottom:513.993467pt;}
.y25{bottom:514.946667pt;}
.y11{bottom:515.049333pt;}
.y75{bottom:515.082267pt;}
.y47{bottom:515.092133pt;}
.y30{bottom:515.198800pt;}
.y29{bottom:522.653467pt;}
.y8c{bottom:531.326800pt;}
.y24{bottom:534.952000pt;}
.y10{bottom:535.054667pt;}
.y74{bottom:535.087600pt;}
.y46{bottom:535.097467pt;}
.y2f{bottom:535.204133pt;}
.y5d{bottom:535.609867pt;}
.y8b{bottom:548.660133pt;}
.y23{bottom:554.957333pt;}
.yf{bottom:555.060000pt;}
.y73{bottom:555.092933pt;}
.y2a{bottom:563.149867pt;}
.y22{bottom:574.962667pt;}
.ye{bottom:575.065333pt;}
.y72{bottom:575.098267pt;}
.y21{bottom:594.968000pt;}
.yd{bottom:595.070667pt;}
.y71{bottom:595.103600pt;}
.y20{bottom:614.973333pt;}
.y8a{bottom:614.991600pt;}
.yc{bottom:615.076000pt;}
.y70{bottom:615.108933pt;}
.y1f{bottom:634.978667pt;}
.y89{bottom:634.996933pt;}
.yb{bottom:635.081333pt;}
.y6f{bottom:635.114267pt;}
.y1e{bottom:654.984000pt;}
.y88{bottom:655.002267pt;}
.ya{bottom:655.086667pt;}
.y6e{bottom:655.119600pt;}
.y1d{bottom:674.989333pt;}
.y87{bottom:675.007600pt;}
.y9{bottom:675.092000pt;}
.y6d{bottom:675.124933pt;}
.y1c{bottom:694.994667pt;}
.y86{bottom:695.012933pt;}
.y8{bottom:695.097333pt;}
.y6c{bottom:695.130267pt;}
.y1b{bottom:715.000000pt;}
.y85{bottom:715.018267pt;}
.y7{bottom:715.102667pt;}
.y6b{bottom:715.135600pt;}
.y1a{bottom:735.005333pt;}
.y6{bottom:735.108000pt;}
.y6a{bottom:735.140933pt;}
.y19{bottom:755.010667pt;}
.y84{bottom:755.014267pt;}
.y5{bottom:755.113333pt;}
.y69{bottom:755.146267pt;}
.y18{bottom:775.016000pt;}
.y83{bottom:775.019600pt;}
.y4{bottom:775.118667pt;}
.y68{bottom:775.146267pt;}
.y17{bottom:795.021333pt;}
.y82{bottom:795.024933pt;}
.y67{bottom:795.119600pt;}
.y3{bottom:795.124000pt;}
.y16{bottom:815.026667pt;}
.y81{bottom:815.030267pt;}
.y66{bottom:815.124933pt;}
.y2{bottom:815.129333pt;}
.y15{bottom:835.032000pt;}
.y80{bottom:835.035600pt;}
.y65{bottom:835.130267pt;}
.y1{bottom:835.134667pt;}
.y7f{bottom:855.040933pt;}
.y64{bottom:855.135600pt;}
.y7e{bottom:875.046267pt;}
.y63{bottom:875.140933pt;}
.y2c{bottom:884.963467pt;}
.y7d{bottom:895.051600pt;}
.y62{bottom:895.146267pt;}
.y7c{bottom:915.056933pt;}
.y61{bottom:915.151600pt;}
.y2b{bottom:916.963467pt;}
.y7b{bottom:935.062267pt;}
.y60{bottom:935.156933pt;}
.y2e{bottom:2391.601333pt;}
.h7{height:0.000000pt;}
.h4{height:27.520000pt;}
.h6{height:36.480000pt;}
.hd{height:40.368000pt;}
.h3{height:41.280000pt;}
.hc{height:44.853333pt;}
.hb{height:45.866667pt;}
.h2{height:49.338667pt;}
.ha{height:49.360000pt;}
.h8{height:49.381333pt;}
.h9{height:49.466667pt;}
.h5{height:91.733333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:869.290667pt;}
.w1{width:869.333333pt;}
.xa{left:-1333.333333pt;}
.x0{left:0.000000pt;}
.x5{left:34.108533pt;}
.x6{left:45.970133pt;}
.xc{left:83.150933pt;}
.xb{left:96.482933pt;}
.x9{left:124.714800pt;}
.x11{left:146.896667pt;}
.x1{left:275.905467pt;}
.x2{left:289.237467pt;}
.x8{left:314.687067pt;}
.xd{left:347.737867pt;}
.x15{left:356.383200pt;}
.x14{left:358.852667pt;}
.xe{left:361.069867pt;}
.x7{left:368.153733pt;}
.x13{left:383.497467pt;}
.x12{left:434.844133pt;}
.x3{left:540.477467pt;}
.x4{left:553.809467pt;}
.x10{left:612.283333pt;}
.xf{left:816.470667pt;}
}

