
    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_88a6083491187e03cba2d716.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_6a23a19e17bc2e0803fbe568.woff')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_038126bf8aead417b1dc11cc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_67806b91031a91933ab5974b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.727539;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_00a698b46212567bdf756cd5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.691406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7dc3738fca1f3c7d67a74dfc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.059082;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_456d24d47c0e45e5ff5616e1.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b6aa98729c07b23ce7727d0c.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0f046315ec509d0e845c6983.woff')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.150000px;}
.ls7{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.720000px;}
.lse{letter-spacing:3.600000px;}
.ls8{letter-spacing:5.940000px;}
.lsb{letter-spacing:6.480000px;}
.ls12{letter-spacing:13.109760px;}
.ls4{letter-spacing:15.120000px;}
.lsc{letter-spacing:26.640000px;}
.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;}
}
.wsb{word-spacing:-18.504000px;}
.ws9{word-spacing:-18.432000px;}
.ws4{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.280000px;}
.ws6{word-spacing:-15.226440px;}
.ws0{word-spacing:-15.102720px;}
.ws3{word-spacing:-14.940000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.010880px;}
._1{width:1.092000px;}
._3{width:2.105760px;}
._9{width:3.314880px;}
._8{width:4.320000px;}
._2e{width:5.326080px;}
._15{width:6.334560px;}
._17{width:7.399200px;}
._4{width:8.496000px;}
._5{width:9.650880px;}
._1a{width:10.653600px;}
._a{width:11.712000px;}
._b{width:12.948000px;}
._6{width:14.184000px;}
._7{width:15.912000px;}
._14{width:17.126400px;}
._13{width:18.198720px;}
._39{width:19.220160px;}
._19{width:20.232000px;}
._18{width:21.312000px;}
._16{width:23.184000px;}
._32{width:24.194880px;}
._24{width:25.766880px;}
._25{width:27.027360px;}
._2b{width:28.532160px;}
._2a{width:29.808000px;}
._1c{width:31.320000px;}
._1d{width:32.328000px;}
._31{width:33.998160px;}
._30{width:35.025840px;}
._11{width:36.185040px;}
._12{width:37.678320px;}
._34{width:38.729040px;}
._f{width:39.900000px;}
._10{width:41.208000px;}
._2c{width:42.336000px;}
._2d{width:43.776000px;}
._36{width:45.432000px;}
._37{width:46.584000px;}
._35{width:47.784000px;}
._28{width:48.943440px;}
._29{width:50.174160px;}
._26{width:51.672000px;}
._27{width:52.872000px;}
._3c{width:54.069120px;}
._33{width:55.346880px;}
._c{width:56.520000px;}
._d{width:57.794880px;}
._1b{width:59.688000px;}
._3e{width:62.280000px;}
._38{width:63.696000px;}
._20{width:65.448000px;}
._21{width:66.456000px;}
._2{width:68.544000px;}
._3d{width:69.588000px;}
._22{width:74.520000px;}
._23{width:75.648000px;}
._1e{width:77.736000px;}
._1f{width:78.984000px;}
._3f{width:87.096000px;}
._40{width:89.136000px;}
._3a{width:92.640000px;}
._3b{width:93.768000px;}
._2f{width:98.784000px;}
._e{width:129.600000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:81.360000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ye{bottom:57.600000px;}
.yd{bottom:77.760000px;}
.y9f{bottom:109.836000px;}
.y31{bottom:110.196000px;}
.y6b{bottom:118.656000px;}
.y73{bottom:125.496000px;}
.y9e{bottom:127.116000px;}
.ya6{bottom:127.836000px;}
.y30{bottom:128.196000px;}
.yd5{bottom:133.776000px;}
.ybb{bottom:134.676000px;}
.y51{bottom:135.576000px;}
.y9d{bottom:144.396000px;}
.ya5{bottom:144.576000px;}
.ybf{bottom:144.756000px;}
.y2f{bottom:145.476000px;}
.y83{bottom:146.376000px;}
.y6a{bottom:149.796000px;}
.ya4{bottom:152.130000px;}
.y82{bottom:153.930000px;}
.y72{bottom:156.630000px;}
.y9c{bottom:161.670000px;}
.y2e{bottom:162.750000px;}
.ya3{bottom:164.730000px;}
.yba{bottom:165.630000px;}
.y50{bottom:166.530000px;}
.ybe{bottom:175.710000px;}
.y9b{bottom:179.850000px;}
.y2d{bottom:180.030000px;}
.y69{bottom:180.750000px;}
.y9a{bottom:187.410000px;}
.y71{bottom:187.590000px;}
.yb9{bottom:196.770000px;}
.y2c{bottom:197.130000px;}
.y99{bottom:200.010000px;}
.ye5{bottom:205.950000px;}
.y68{bottom:211.890000px;}
.y2b{bottom:214.410000px;}
.yd4{bottom:216.930000px;}
.y4f{bottom:218.730000px;}
.y81{bottom:227.010000px;}
.yb8{bottom:227.730000px;}
.y2a{bottom:231.690000px;}
.ye4{bottom:236.910000px;}
.y67{bottom:242.850000px;}
.yd3{bottom:247.890000px;}
.y29{bottom:248.970000px;}
.y4e{bottom:249.690000px;}
.y98{bottom:250.050000px;}
.yb7{bottom:258.870000px;}
.y28{bottom:267.150000px;}
.ye3{bottom:268.050000px;}
.y66{bottom:273.990000px;}
.y27{bottom:274.710000px;}
.yd2{bottom:278.850000px;}
.y4d{bottom:280.830000px;}
.y97{bottom:281.190000px;}
.y26{bottom:287.310000px;}
.yb6{bottom:289.830000px;}
.yaa{bottom:301.710000px;}
.y65{bottom:304.950000px;}
.y25{bottom:308.190000px;}
.y4c{bottom:311.790000px;}
.y96{bottom:312.150000px;}
.ye2{bottom:320.070000px;}
.yd1{bottom:331.050000px;}
.ya9{bottom:332.850000px;}
.y64{bottom:336.090000px;}
.y24{bottom:339.330000px;}
.yb5{bottom:342.030000px;}
.y4b{bottom:342.930000px;}
.y95{bottom:343.290000px;}
.ybd{bottom:344.370000px;}
.ye1{bottom:351.030000px;}
.yd0{bottom:362.055000px;}
.ya8{bottom:363.855000px;}
.y63{bottom:367.095000px;}
.y23{bottom:370.335000px;}
.yb4{bottom:373.035000px;}
.y4a{bottom:373.935000px;}
.y94{bottom:374.295000px;}
.ya2{bottom:382.215000px;}
.ya7{bottom:394.995000px;}
.y62{bottom:398.235000px;}
.y22{bottom:401.475000px;}
.ye0{bottom:403.275000px;}
.yb3{bottom:404.175000px;}
.y49{bottom:405.075000px;}
.y93{bottom:405.435000px;}
.ycf{bottom:414.255000px;}
.ybc{bottom:414.975000px;}
.y80{bottom:425.955000px;}
.y61{bottom:429.195000px;}
.y21{bottom:432.435000px;}
.ydf{bottom:434.235000px;}
.yb2{bottom:435.135000px;}
.y48{bottom:436.035000px;}
.y91{bottom:436.395000px;}
.y92{bottom:444.675000px;}
.yce{bottom:445.215000px;}
.y7f{bottom:457.095000px;}
.y60{bottom:460.335000px;}
.y20{bottom:463.575000px;}
.yde{bottom:465.195000px;}
.yb1{bottom:466.275000px;}
.y47{bottom:467.175000px;}
.y90{bottom:467.535000px;}
.y7e{bottom:488.055000px;}
.y5f{bottom:491.295000px;}
.y1f{bottom:494.535000px;}
.yb0{bottom:497.235000px;}
.y46{bottom:498.135000px;}
.y8f{bottom:498.495000px;}
.ydd{bottom:517.395000px;}
.y7d{bottom:519.195000px;}
.y5e{bottom:522.435000px;}
.y1e{bottom:525.675000px;}
.yaf{bottom:528.195000px;}
.ycd{bottom:528.375000px;}
.y45{bottom:529.275000px;}
.y8e{bottom:529.635000px;}
.ydc{bottom:548.355000px;}
.y7c{bottom:550.155000px;}
.y5d{bottom:553.395000px;}
.y1d{bottom:556.635000px;}
.yae{bottom:559.335000px;}
.y44{bottom:560.235000px;}
.y8d{bottom:560.595000px;}
.y7b{bottom:581.295000px;}
.y5c{bottom:584.535000px;}
.y1c{bottom:587.775000px;}
.yad{bottom:590.295000px;}
.ycc{bottom:590.475000px;}
.y84{bottom:591.195000px;}
.y43{bottom:591.375000px;}
.y8c{bottom:591.735000px;}
.ydb{bottom:600.375000px;}
.y7a{bottom:612.255000px;}
.y5b{bottom:615.495000px;}
.y1b{bottom:618.765000px;}
.yac{bottom:621.465000px;}
.y42{bottom:622.365000px;}
.y8b{bottom:622.725000px;}
.yda{bottom:631.545000px;}
.y79{bottom:643.425000px;}
.y5a{bottom:646.665000px;}
.y19{bottom:649.905000px;}
.y41{bottom:653.505000px;}
.y8a{bottom:653.865000px;}
.y1a{bottom:658.185000px;}
.yd9{bottom:662.505000px;}
.ycb{bottom:673.485000px;}
.y78{bottom:674.385000px;}
.yab{bottom:676.005000px;}
.y59{bottom:677.625000px;}
.y18{bottom:680.865000px;}
.y40{bottom:684.465000px;}
.y89{bottom:684.825000px;}
.yc{bottom:685.365000px;}
.yca{bottom:704.625000px;}
.y77{bottom:705.525000px;}
.y58{bottom:708.765000px;}
.yd8{bottom:714.705000px;}
.y3f{bottom:715.605000px;}
.y88{bottom:715.965000px;}
.yb{bottom:723.345000px;}
.y17{bottom:735.405000px;}
.yc9{bottom:735.585000px;}
.y76{bottom:736.485000px;}
.y57{bottom:739.725000px;}
.yd7{bottom:745.665000px;}
.y3e{bottom:746.565000px;}
.y87{bottom:746.925000px;}
.ya{bottom:760.965000px;}
.yc8{bottom:766.725000px;}
.y75{bottom:767.625000px;}
.y56{bottom:770.865000px;}
.y3d{bottom:777.525000px;}
.y70{bottom:777.705000px;}
.y86{bottom:777.885000px;}
.yc7{bottom:797.685000px;}
.y74{bottom:798.585000px;}
.y9{bottom:799.485000px;}
.y55{bottom:801.825000px;}
.y16{bottom:805.965000px;}
.y6f{bottom:808.665000px;}
.y8{bottom:820.410000px;}
.yd6{bottom:828.645000px;}
.y3c{bottom:829.725000px;}
.y85{bottom:831.885000px;}
.y6e{bottom:839.805000px;}
.y7{bottom:840.930000px;}
.yc6{bottom:849.705000px;}
.y54{bottom:856.185000px;}
.y15{bottom:857.985000px;}
.y3b{bottom:860.685000px;}
.y6d{bottom:870.765000px;}
.y6{bottom:879.630000px;}
.yc5{bottom:880.890000px;}
.y14{bottom:889.170000px;}
.y3a{bottom:891.870000px;}
.y53{bottom:893.310000px;}
.y6c{bottom:901.770000px;}
.ya1{bottom:901.950000px;}
.yc4{bottom:911.850000px;}
.y5{bottom:918.150000px;}
.y13{bottom:920.130000px;}
.y39{bottom:922.830000px;}
.ya0{bottom:932.910000px;}
.y4{bottom:939.030000px;}
.yc3{bottom:942.810000px;}
.y38{bottom:953.970000px;}
.y52{bottom:963.870000px;}
.y12{bottom:972.150000px;}
.y3{bottom:978.090000px;}
.y37{bottom:984.930000px;}
.yc2{bottom:995.010000px;}
.y2{bottom:1002.210000px;}
.y36{bottom:1016.070000px;}
.yc1{bottom:1025.970000px;}
.y11{bottom:1026.510000px;}
.y1{bottom:1044.330000px;}
.y35{bottom:1047.030000px;}
.y10{bottom:1063.590000px;}
.y34{bottom:1078.170000px;}
.yf{bottom:1100.670000px;}
.y33{bottom:1109.130000px;}
.yc0{bottom:1140.120000px;}
.y32{bottom:1140.300000px;}
.hd{height:28.485703px;}
.hf{height:40.764023px;}
.h8{height:45.184219px;}
.hc{height:47.344922px;}
.h5{height:51.539062px;}
.h11{height:52.998047px;}
.he{height:58.651172px;}
.h4{height:59.738906px;}
.h10{height:64.546875px;}
.h3{height:64.933594px;}
.ha{height:70.664062px;}
.h9{height:70.789570px;}
.h1{height:75.972305px;}
.h2{height:76.589297px;}
.h0{height:1188.000000px;}
.hb{height:1262.877990px;}
.h6{height:1262.880000px;}
.h7{height:1263.000000px;}
.w3{width:892.978125px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.x11{left:132.876000px;}
.xe{left:134.136000px;}
.x2{left:148.896000px;}
.x5{left:155.910000px;}
.x4{left:188.130000px;}
.x9{left:342.075000px;}
.xd{left:343.695000px;}
.x8{left:376.815000px;}
.x6{left:405.255000px;}
.xa{left:408.495000px;}
.x14{left:438.195000px;}
.x3{left:442.335000px;}
.x7{left:446.475000px;}
.x12{left:586.903125px;}
.x13{left:598.605000px;}
.xb{left:620.923125px;}
.xc{left:628.125000px;}
.x15{left:647.788125px;}
.x16{left:653.910000px;}
.xf{left:759.388125px;}
.x10{left:765.510000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.133333pt;}
.ls7{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.640000pt;}
.lse{letter-spacing:3.200000pt;}
.ls8{letter-spacing:5.280000pt;}
.lsb{letter-spacing:5.760000pt;}
.ls12{letter-spacing:11.653120pt;}
.ls4{letter-spacing:13.440000pt;}
.lsc{letter-spacing:23.680000pt;}
.wsb{word-spacing:-16.448000pt;}
.ws9{word-spacing:-16.384000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.360000pt;}
.ws6{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.424640pt;}
.ws3{word-spacing:-13.280000pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-0.898560pt;}
._1{width:0.970667pt;}
._3{width:1.871787pt;}
._9{width:2.946560pt;}
._8{width:3.840000pt;}
._2e{width:4.734293pt;}
._15{width:5.630720pt;}
._17{width:6.577067pt;}
._4{width:7.552000pt;}
._5{width:8.578560pt;}
._1a{width:9.469867pt;}
._a{width:10.410667pt;}
._b{width:11.509333pt;}
._6{width:12.608000pt;}
._7{width:14.144000pt;}
._14{width:15.223467pt;}
._13{width:16.176640pt;}
._39{width:17.084587pt;}
._19{width:17.984000pt;}
._18{width:18.944000pt;}
._16{width:20.608000pt;}
._32{width:21.506560pt;}
._24{width:22.903893pt;}
._25{width:24.024320pt;}
._2b{width:25.361920pt;}
._2a{width:26.496000pt;}
._1c{width:27.840000pt;}
._1d{width:28.736000pt;}
._31{width:30.220587pt;}
._30{width:31.134080pt;}
._11{width:32.164480pt;}
._12{width:33.491840pt;}
._34{width:34.425813pt;}
._f{width:35.466667pt;}
._10{width:36.629333pt;}
._2c{width:37.632000pt;}
._2d{width:38.912000pt;}
._36{width:40.384000pt;}
._37{width:41.408000pt;}
._35{width:42.474667pt;}
._28{width:43.505280pt;}
._29{width:44.599253pt;}
._26{width:45.930667pt;}
._27{width:46.997333pt;}
._3c{width:48.061440pt;}
._33{width:49.197227pt;}
._c{width:50.240000pt;}
._d{width:51.373227pt;}
._1b{width:53.056000pt;}
._3e{width:55.360000pt;}
._38{width:56.618667pt;}
._20{width:58.176000pt;}
._21{width:59.072000pt;}
._2{width:60.928000pt;}
._3d{width:61.856000pt;}
._22{width:66.240000pt;}
._23{width:67.242667pt;}
._1e{width:69.098667pt;}
._1f{width:70.208000pt;}
._3f{width:77.418667pt;}
._40{width:79.232000pt;}
._3a{width:82.346667pt;}
._3b{width:83.349333pt;}
._2f{width:87.808000pt;}
._e{width:115.200000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:72.320000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:51.200000pt;}
.yd{bottom:69.120000pt;}
.y9f{bottom:97.632000pt;}
.y31{bottom:97.952000pt;}
.y6b{bottom:105.472000pt;}
.y73{bottom:111.552000pt;}
.y9e{bottom:112.992000pt;}
.ya6{bottom:113.632000pt;}
.y30{bottom:113.952000pt;}
.yd5{bottom:118.912000pt;}
.ybb{bottom:119.712000pt;}
.y51{bottom:120.512000pt;}
.y9d{bottom:128.352000pt;}
.ya5{bottom:128.512000pt;}
.ybf{bottom:128.672000pt;}
.y2f{bottom:129.312000pt;}
.y83{bottom:130.112000pt;}
.y6a{bottom:133.152000pt;}
.ya4{bottom:135.226667pt;}
.y82{bottom:136.826667pt;}
.y72{bottom:139.226667pt;}
.y9c{bottom:143.706667pt;}
.y2e{bottom:144.666667pt;}
.ya3{bottom:146.426667pt;}
.yba{bottom:147.226667pt;}
.y50{bottom:148.026667pt;}
.ybe{bottom:156.186667pt;}
.y9b{bottom:159.866667pt;}
.y2d{bottom:160.026667pt;}
.y69{bottom:160.666667pt;}
.y9a{bottom:166.586667pt;}
.y71{bottom:166.746667pt;}
.yb9{bottom:174.906667pt;}
.y2c{bottom:175.226667pt;}
.y99{bottom:177.786667pt;}
.ye5{bottom:183.066667pt;}
.y68{bottom:188.346667pt;}
.y2b{bottom:190.586667pt;}
.yd4{bottom:192.826667pt;}
.y4f{bottom:194.426667pt;}
.y81{bottom:201.786667pt;}
.yb8{bottom:202.426667pt;}
.y2a{bottom:205.946667pt;}
.ye4{bottom:210.586667pt;}
.y67{bottom:215.866667pt;}
.yd3{bottom:220.346667pt;}
.y29{bottom:221.306667pt;}
.y4e{bottom:221.946667pt;}
.y98{bottom:222.266667pt;}
.yb7{bottom:230.106667pt;}
.y28{bottom:237.466667pt;}
.ye3{bottom:238.266667pt;}
.y66{bottom:243.546667pt;}
.y27{bottom:244.186667pt;}
.yd2{bottom:247.866667pt;}
.y4d{bottom:249.626667pt;}
.y97{bottom:249.946667pt;}
.y26{bottom:255.386667pt;}
.yb6{bottom:257.626667pt;}
.yaa{bottom:268.186667pt;}
.y65{bottom:271.066667pt;}
.y25{bottom:273.946667pt;}
.y4c{bottom:277.146667pt;}
.y96{bottom:277.466667pt;}
.ye2{bottom:284.506667pt;}
.yd1{bottom:294.266667pt;}
.ya9{bottom:295.866667pt;}
.y64{bottom:298.746667pt;}
.y24{bottom:301.626667pt;}
.yb5{bottom:304.026667pt;}
.y4b{bottom:304.826667pt;}
.y95{bottom:305.146667pt;}
.ybd{bottom:306.106667pt;}
.ye1{bottom:312.026667pt;}
.yd0{bottom:321.826667pt;}
.ya8{bottom:323.426667pt;}
.y63{bottom:326.306667pt;}
.y23{bottom:329.186667pt;}
.yb4{bottom:331.586667pt;}
.y4a{bottom:332.386667pt;}
.y94{bottom:332.706667pt;}
.ya2{bottom:339.746667pt;}
.ya7{bottom:351.106667pt;}
.y62{bottom:353.986667pt;}
.y22{bottom:356.866667pt;}
.ye0{bottom:358.466667pt;}
.yb3{bottom:359.266667pt;}
.y49{bottom:360.066667pt;}
.y93{bottom:360.386667pt;}
.ycf{bottom:368.226667pt;}
.ybc{bottom:368.866667pt;}
.y80{bottom:378.626667pt;}
.y61{bottom:381.506667pt;}
.y21{bottom:384.386667pt;}
.ydf{bottom:385.986667pt;}
.yb2{bottom:386.786667pt;}
.y48{bottom:387.586667pt;}
.y91{bottom:387.906667pt;}
.y92{bottom:395.266667pt;}
.yce{bottom:395.746667pt;}
.y7f{bottom:406.306667pt;}
.y60{bottom:409.186667pt;}
.y20{bottom:412.066667pt;}
.yde{bottom:413.506667pt;}
.yb1{bottom:414.466667pt;}
.y47{bottom:415.266667pt;}
.y90{bottom:415.586667pt;}
.y7e{bottom:433.826667pt;}
.y5f{bottom:436.706667pt;}
.y1f{bottom:439.586667pt;}
.yb0{bottom:441.986667pt;}
.y46{bottom:442.786667pt;}
.y8f{bottom:443.106667pt;}
.ydd{bottom:459.906667pt;}
.y7d{bottom:461.506667pt;}
.y5e{bottom:464.386667pt;}
.y1e{bottom:467.266667pt;}
.yaf{bottom:469.506667pt;}
.ycd{bottom:469.666667pt;}
.y45{bottom:470.466667pt;}
.y8e{bottom:470.786667pt;}
.ydc{bottom:487.426667pt;}
.y7c{bottom:489.026667pt;}
.y5d{bottom:491.906667pt;}
.y1d{bottom:494.786667pt;}
.yae{bottom:497.186667pt;}
.y44{bottom:497.986667pt;}
.y8d{bottom:498.306667pt;}
.y7b{bottom:516.706667pt;}
.y5c{bottom:519.586667pt;}
.y1c{bottom:522.466667pt;}
.yad{bottom:524.706667pt;}
.ycc{bottom:524.866667pt;}
.y84{bottom:525.506667pt;}
.y43{bottom:525.666667pt;}
.y8c{bottom:525.986667pt;}
.ydb{bottom:533.666667pt;}
.y7a{bottom:544.226667pt;}
.y5b{bottom:547.106667pt;}
.y1b{bottom:550.013333pt;}
.yac{bottom:552.413333pt;}
.y42{bottom:553.213333pt;}
.y8b{bottom:553.533333pt;}
.yda{bottom:561.373333pt;}
.y79{bottom:571.933333pt;}
.y5a{bottom:574.813333pt;}
.y19{bottom:577.693333pt;}
.y41{bottom:580.893333pt;}
.y8a{bottom:581.213333pt;}
.y1a{bottom:585.053333pt;}
.yd9{bottom:588.893333pt;}
.ycb{bottom:598.653333pt;}
.y78{bottom:599.453333pt;}
.yab{bottom:600.893333pt;}
.y59{bottom:602.333333pt;}
.y18{bottom:605.213333pt;}
.y40{bottom:608.413333pt;}
.y89{bottom:608.733333pt;}
.yc{bottom:609.213333pt;}
.yca{bottom:626.333333pt;}
.y77{bottom:627.133333pt;}
.y58{bottom:630.013333pt;}
.yd8{bottom:635.293333pt;}
.y3f{bottom:636.093333pt;}
.y88{bottom:636.413333pt;}
.yb{bottom:642.973333pt;}
.y17{bottom:653.693333pt;}
.yc9{bottom:653.853333pt;}
.y76{bottom:654.653333pt;}
.y57{bottom:657.533333pt;}
.yd7{bottom:662.813333pt;}
.y3e{bottom:663.613333pt;}
.y87{bottom:663.933333pt;}
.ya{bottom:676.413333pt;}
.yc8{bottom:681.533333pt;}
.y75{bottom:682.333333pt;}
.y56{bottom:685.213333pt;}
.y3d{bottom:691.133333pt;}
.y70{bottom:691.293333pt;}
.y86{bottom:691.453333pt;}
.yc7{bottom:709.053333pt;}
.y74{bottom:709.853333pt;}
.y9{bottom:710.653333pt;}
.y55{bottom:712.733333pt;}
.y16{bottom:716.413333pt;}
.y6f{bottom:718.813333pt;}
.y8{bottom:729.253333pt;}
.yd6{bottom:736.573333pt;}
.y3c{bottom:737.533333pt;}
.y85{bottom:739.453333pt;}
.y6e{bottom:746.493333pt;}
.y7{bottom:747.493333pt;}
.yc6{bottom:755.293333pt;}
.y54{bottom:761.053333pt;}
.y15{bottom:762.653333pt;}
.y3b{bottom:765.053333pt;}
.y6d{bottom:774.013333pt;}
.y6{bottom:781.893333pt;}
.yc5{bottom:783.013333pt;}
.y14{bottom:790.373333pt;}
.y3a{bottom:792.773333pt;}
.y53{bottom:794.053333pt;}
.y6c{bottom:801.573333pt;}
.ya1{bottom:801.733333pt;}
.yc4{bottom:810.533333pt;}
.y5{bottom:816.133333pt;}
.y13{bottom:817.893333pt;}
.y39{bottom:820.293333pt;}
.ya0{bottom:829.253333pt;}
.y4{bottom:834.693333pt;}
.yc3{bottom:838.053333pt;}
.y38{bottom:847.973333pt;}
.y52{bottom:856.773333pt;}
.y12{bottom:864.133333pt;}
.y3{bottom:869.413333pt;}
.y37{bottom:875.493333pt;}
.yc2{bottom:884.453333pt;}
.y2{bottom:890.853333pt;}
.y36{bottom:903.173333pt;}
.yc1{bottom:911.973333pt;}
.y11{bottom:912.453333pt;}
.y1{bottom:928.293333pt;}
.y35{bottom:930.693333pt;}
.y10{bottom:945.413333pt;}
.y34{bottom:958.373333pt;}
.yf{bottom:978.373333pt;}
.y33{bottom:985.893333pt;}
.yc0{bottom:1013.440000pt;}
.y32{bottom:1013.600000pt;}
.hd{height:25.320625pt;}
.hf{height:36.234687pt;}
.h8{height:40.163750pt;}
.hc{height:42.084375pt;}
.h5{height:45.812500pt;}
.h11{height:47.109375pt;}
.he{height:52.134375pt;}
.h4{height:53.101250pt;}
.h10{height:57.375000pt;}
.h3{height:57.718750pt;}
.ha{height:62.812500pt;}
.h9{height:62.924062pt;}
.h1{height:67.530937pt;}
.h2{height:68.079375pt;}
.h0{height:1056.000000pt;}
.hb{height:1122.558213pt;}
.h6{height:1122.560000pt;}
.h7{height:1122.666667pt;}
.w3{width:793.758333pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.x11{left:118.112000pt;}
.xe{left:119.232000pt;}
.x2{left:132.352000pt;}
.x5{left:138.586667pt;}
.x4{left:167.226667pt;}
.x9{left:304.066667pt;}
.xd{left:305.506667pt;}
.x8{left:334.946667pt;}
.x6{left:360.226667pt;}
.xa{left:363.106667pt;}
.x14{left:389.506667pt;}
.x3{left:393.186667pt;}
.x7{left:396.866667pt;}
.x12{left:521.691667pt;}
.x13{left:532.093333pt;}
.xb{left:551.931667pt;}
.xc{left:558.333333pt;}
.x15{left:575.811667pt;}
.x16{left:581.253333pt;}
.xf{left:675.011667pt;}
.x10{left:680.453333pt;}
}

