
    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_ab098ecda5292e959e72694e.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_a7756b1bbfe602544c5b183a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.692871;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_38cd837f35c56118f0da0eb3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.033203;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_9f74f66f7dbe716c1ca622d8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.903320;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_72dd90bc8a598d48ddace677.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_47bb7a21968a1b60814cbc4a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_2bf148a76bde39fed12f0c82.woff')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_be63484c4b3e6a657f0ac8e3.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_61475149b577aab15fba12cc.woff')format("woff");}.ff9{font-family:ff9;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d522d7ebed4aa748b75aceb5.woff')format("woff");}.ffa{font-family:ffa;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3362dd020ae9d043c7a8c924.woff')format("woff");}.ffb{font-family:ffb;line-height:1.068848;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:ffc;src:url('chunks/assets/font_bc06acab6cdce8d8f3396f8c.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e3b315449b3b7e20c4da3c4b.woff')format("woff");}.ffd{font-family:ffd;line-height:1.117188;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:ffe;src:url('chunks/assets/font_00e953b5956de104221ba1d7.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_05d8257c6dd70e5e95382832.woff')format("woff");}.fff{font-family:fff;line-height:1.003418;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:ff10;src:url('chunks/assets/font_dcfd3ceb62cef2e08355cdb3.woff')format("woff");}.ff10{font-family:ff10;line-height:1.003418;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:ff11;src:url('chunks/assets/font_c50c1f28278515a33b176666.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_6afe008cca00baaf72f8fb47.woff')format("woff");}.ff12{font-family:ff12;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.ls26{letter-spacing:-16.560000px;}
.ls29{letter-spacing:-13.680000px;}
.ls19{letter-spacing:-10.800000px;}
.lse{letter-spacing:-8.640000px;}
.ls23{letter-spacing:-7.920000px;}
.ls12{letter-spacing:-1.440000px;}
.ls1b{letter-spacing:-1.008000px;}
.ls1d{letter-spacing:-0.780000px;}
.ls14{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.272400px;}
.ls1a{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.144000px;}
.ls31{letter-spacing:-0.064800px;}
.ls10{letter-spacing:-0.058320px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.060480px;}
.ls1c{letter-spacing:0.060600px;}
.ls5{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.150000px;}
.lsa{letter-spacing:0.174240px;}
.lsf{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.256320px;}
.ls13{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.433440px;}
.ls30{letter-spacing:0.504000px;}
.ls1f{letter-spacing:0.660000px;}
.ls8{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.780480px;}
.ls2e{letter-spacing:0.792000px;}
.ls24{letter-spacing:0.864000px;}
.ls2c{letter-spacing:2.160000px;}
.ls11{letter-spacing:2.880000px;}
.ls2d{letter-spacing:4.320000px;}
.ls16{letter-spacing:5.040000px;}
.ls25{letter-spacing:9.360000px;}
.ls2b{letter-spacing:18.720000px;}
.ls2a{letter-spacing:20.160000px;}
.ls22{letter-spacing:26.640000px;}
.ls21{letter-spacing:28.080000px;}
.ls32{letter-spacing:41.904000px;}
.ls33{letter-spacing:64.224000px;}
.ls2f{letter-spacing:69.984000px;}
.ls34{letter-spacing:90.000000px;}
.ls18{letter-spacing:93.744000px;}
.ls20{letter-spacing:98.064000px;}
.ls7{letter-spacing:121.824000px;}
.ls27{letter-spacing:126.144000px;}
.ls2{letter-spacing:149.880000px;}
.ls3{letter-spacing:197.976000px;}
.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;}
}
.wse{word-spacing:-18.792000px;}
.ws10{word-spacing:-18.504000px;}
.ws4{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.280000px;}
.wsa{word-spacing:-15.226440px;}
.wsb{word-spacing:-14.165760px;}
.ws8{word-spacing:-13.566360px;}
.ws5{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.447440px;}
.ws11{word-spacing:-13.440960px;}
.ws9{word-spacing:-12.725760px;}
.wsf{word-spacing:-8.514480px;}
.ws0{word-spacing:0.000000px;}
._24{margin-left:-16.560000px;}
._1a{margin-left:-14.400000px;}
._15{margin-left:-12.960000px;}
._14{margin-left:-9.302626px;}
._1b{margin-left:-7.654320px;}
._0{margin-left:-6.609374px;}
._4{margin-left:-5.112000px;}
._7{margin-left:-3.192000px;}
._18{margin-left:-2.172000px;}
._2{margin-left:-1.152000px;}
._6{width:1.020000px;}
._9{width:2.940000px;}
._e{width:4.380000px;}
._3{width:5.760000px;}
._8{width:6.768000px;}
._1{width:7.776000px;}
._5{width:9.696000px;}
._f{width:11.040000px;}
._16{width:12.096000px;}
._c{width:13.176000px;}
._d{width:14.544000px;}
._17{width:16.416000px;}
._b{width:19.860000px;}
._a{width:21.024000px;}
._19{width:22.188000px;}
._1d{width:23.340000px;}
._22{width:25.776000px;}
._1e{width:29.952000px;}
._1f{width:31.020000px;}
._23{width:56.806320px;}
._11{width:58.824000px;}
._13{width:60.480000px;}
._12{width:62.208000px;}
._21{width:84.828000px;}
._25{width:106.970626px;}
._20{width:152.172000px;}
._10{width:164.136000px;}
._1c{width:197.976000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:72.000001px;}
.fs1{font-size:156.000003px;}
.y0{bottom:0.000000px;}
.y16{bottom:4.500000px;}
.y15{bottom:24.660000px;}
.y6{bottom:26.852413px;}
.y1{bottom:43.272032px;}
.y5{bottom:59.550659px;}
.y4{bottom:80.248903px;}
.y3{bottom:112.947148px;}
.y48{bottom:123.516000px;}
.y47{bottom:128.736000px;}
.y35{bottom:133.776000px;}
.y53{bottom:142.956000px;}
.y2{bottom:145.645393px;}
.y46{bottom:155.010000px;}
.y6b{bottom:155.550000px;}
.y45{bottom:160.230000px;}
.y52{bottom:162.570000px;}
.y34{bottom:164.910000px;}
.y51{bottom:167.790000px;}
.y6f{bottom:174.450000px;}
.y6e{bottom:179.670000px;}
.y44{bottom:186.510000px;}
.y68{bottom:187.050000px;}
.y43{bottom:191.730000px;}
.y50{bottom:194.610000px;}
.y33{bottom:195.870000px;}
.y5e{bottom:205.950000px;}
.y5d{bottom:211.170000px;}
.y42{bottom:218.010000px;}
.y78{bottom:218.550000px;}
.y4e{bottom:223.230000px;}
.y32{bottom:226.830000px;}
.y41{bottom:237.630000px;}
.y5c{bottom:237.990000px;}
.y40{bottom:242.850000px;}
.y5a{bottom:249.510000px;}
.y4d{bottom:250.050000px;}
.y59{bottom:254.730000px;}
.y67{bottom:257.070000px;}
.y31{bottom:257.970000px;}
.y72{bottom:264.810000px;}
.y3f{bottom:269.130000px;}
.y62{bottom:274.350000px;}
.y66{bottom:276.690000px;}
.y7c{bottom:281.010000px;}
.y58{bottom:281.550000px;}
.y65{bottom:281.910000px;}
.y7b{bottom:286.230000px;}
.y3e{bottom:288.570000px;}
.y30{bottom:288.930000px;}
.y3d{bottom:293.790000px;}
.y75{bottom:295.770000px;}
.y61{bottom:301.170000px;}
.y64{bottom:308.730000px;}
.y7a{bottom:313.050000px;}
.y7e{bottom:319.755000px;}
.y2f{bottom:320.115000px;}
.y3c{bottom:320.655000px;}
.y2e{bottom:351.075000px;}
.y4c{bottom:357.915000px;}
.y2d{bottom:382.215000px;}
.y3b{bottom:389.055000px;}
.y2c{bottom:413.175000px;}
.y60{bottom:420.015000px;}
.y2b{bottom:444.315000px;}
.y4f{bottom:451.155000px;}
.y2a{bottom:475.275000px;}
.y3a{bottom:482.115000px;}
.y6a{bottom:506.055000px;}
.y29{bottom:506.415000px;}
.y55{bottom:513.255000px;}
.y71{bottom:537.015000px;}
.y28{bottom:537.375000px;}
.ya{bottom:537.411900px;}
.y77{bottom:568.185000px;}
.y27{bottom:568.545000px;}
.y57{bottom:575.385000px;}
.y9{bottom:597.808455px;}
.y26{bottom:599.505000px;}
.y39{bottom:606.345000px;}
.y25{bottom:630.645000px;}
.y79{bottom:637.485000px;}
.y8{bottom:658.204965px;}
.y24{bottom:661.605000px;}
.y38{bottom:668.445000px;}
.y14{bottom:672.709860px;}
.y23{bottom:692.745000px;}
.y6d{bottom:699.585000px;}
.y13{bottom:703.757220px;}
.y7{bottom:718.601490px;}
.y22{bottom:723.705000px;}
.y76{bottom:730.545000px;}
.y12{bottom:734.804580px;}
.y5b{bottom:754.485000px;}
.y21{bottom:754.845000px;}
.y6c{bottom:761.685000px;}
.y11{bottom:765.851940px;}
.y20{bottom:785.805000px;}
.y73{bottom:792.645000px;}
.y10{bottom:796.899300px;}
.y1f{bottom:816.945000px;}
.y70{bottom:823.830000px;}
.yf{bottom:827.946675px;}
.y74{bottom:847.590000px;}
.y1e{bottom:847.950000px;}
.y56{bottom:854.790000px;}
.ye{bottom:858.994035px;}
.y1d{bottom:879.090000px;}
.y54{bottom:885.930000px;}
.yd{bottom:890.041395px;}
.y7d{bottom:909.690000px;}
.y1c{bottom:910.050000px;}
.y63{bottom:916.890000px;}
.yc{bottom:921.088755px;}
.y1b{bottom:941.190000px;}
.y5f{bottom:948.030000px;}
.y1a{bottom:972.150000px;}
.y37{bottom:978.990000px;}
.yb{bottom:983.183490px;}
.y36{bottom:1002.930000px;}
.y19{bottom:1003.290000px;}
.y69{bottom:1010.130000px;}
.y18{bottom:1033.890000px;}
.y4a{bottom:1034.250000px;}
.y4b{bottom:1041.090000px;}
.y17{bottom:1065.390000px;}
.y49{bottom:1072.260000px;}
.h10{height:38.671172px;}
.hf{height:47.321367px;}
.he{height:47.344922px;}
.h11{height:59.439023px;}
.h5{height:63.949220px;}
.hb{height:64.546875px;}
.h2{height:64.546876px;}
.ha{height:64.898438px;}
.h7{height:65.884219px;}
.hc{height:70.628906px;}
.h8{height:70.664062px;}
.hd{height:72.562500px;}
.h12{height:74.004654px;}
.h9{height:74.953125px;}
.h3{height:105.650393px;}
.h4{height:136.119143px;}
.h1{height:162.450073px;}
.h6{height:1188.000000px;}
.h0{height:1261.500000px;}
.w1{width:264.149970px;}
.w0{width:892.500000px;}
.w4{width:917.999973px;}
.w3{width:917.999986px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:1.882605px;}
.x4{left:11.871375px;}
.x3{left:21.363555px;}
.x2{left:51.606720px;}
.x6{left:88.577910px;}
.xd{left:106.235986px;}
.x1c{left:111.095986px;}
.x27{left:115.955986px;}
.xb{left:127.575005px;}
.x1d{left:131.615986px;}
.xe{left:133.235986px;}
.x7e{left:145.655973px;}
.x16{left:147.455973px;}
.x17{left:153.569986px;}
.x7f{left:157.889986px;}
.x18{left:160.229986px;}
.x5b{left:162.209973px;}
.x78{left:166.529973px;}
.x81{left:169.229986px;}
.x4c{left:171.209973px;}
.x5c{left:174.449986px;}
.x79{left:178.769986px;}
.x4d{left:183.449986px;}
.xf{left:187.229986px;}
.x82{left:191.369986px;}
.xa{left:194.536538px;}
.x6e{left:200.009986px;}
.x54{left:214.229986px;}
.x7c{left:215.669973px;}
.x80{left:225.929986px;}
.x7d{left:227.909986px;}
.x48{left:245.189973px;}
.x2e{left:248.609973px;}
.x8{left:252.512850px;}
.x49{left:257.429986px;}
.x2f{left:260.849986px;}
.x43{left:264.269986px;}
.x10{left:273.089973px;}
.x5d{left:276.509986px;}
.x11{left:279.209986px;}
.x35{left:291.494986px;}
.x7{left:296.378340px;}
.x7b{left:303.554986px;}
.x9{left:307.261395px;}
.x2a{left:312.734973px;}
.x1b{left:322.274986px;}
.x2b{left:324.974986px;}
.x32{left:338.114986px;}
.x23{left:341.714973px;}
.x30{left:343.514973px;}
.x24{left:347.834986px;}
.x33{left:353.774973px;}
.x31{left:355.754986px;}
.x34{left:366.014986px;}
.x74{left:371.234973px;}
.x75{left:383.474986px;}
.x3f{left:389.054973px;}
.x40{left:401.294986px;}
.x64{left:410.834973px;}
.x20{left:412.094973px;}
.x21{left:415.694973px;}
.x1e{left:417.674973px;}
.x22{left:421.814986px;}
.x1f{left:423.794986px;}
.x55{left:427.754973px;}
.x44{left:429.734973px;}
.x42{left:435.854986px;}
.x56{left:439.994986px;}
.x45{left:441.974986px;}
.x4a{left:449.174973px;}
.x6b{left:452.954986px;}
.x46{left:455.654973px;}
.x4b{left:461.414986px;}
.x73{left:466.094986px;}
.x47{left:467.894986px;}
.x6f{left:473.654973px;}
.x70{left:485.924986px;}
.x67{left:488.264973px;}
.x57{left:492.044973px;}
.x68{left:500.504986px;}
.x58{left:504.284986px;}
.x19{left:512.744973px;}
.x1a{left:518.864986px;}
.x1{left:521.550015px;}
.x65{left:525.524973px;}
.x3e{left:531.104986px;}
.x36{left:536.504973px;}
.x66{left:537.764986px;}
.x3c{left:540.824973px;}
.x37{left:548.744986px;}
.x3d{left:553.064986px;}
.x28{left:558.824973px;}
.x7a{left:564.944986px;}
.x29{left:571.064986px;}
.x38{left:585.644973px;}
.x39{left:597.884986px;}
.x69{left:603.644973px;}
.x12{left:606.344973px;}
.x14{left:607.424973px;}
.x5e{left:609.404973px;}
.x13{left:612.464986px;}
.x15{left:613.544986px;}
.x6a{left:615.884986px;}
.x41{left:619.844986px;}
.x5f{left:621.644986px;}
.x60{left:624.164973px;}
.x61{left:636.404986px;}
.x62{left:639.104973px;}
.x4e{left:646.484973px;}
.x2c{left:648.644973px;}
.x63{left:651.344986px;}
.x4f{left:658.724986px;}
.x2d{left:660.884986px;}
.x50{left:676.409973px;}
.x6c{left:679.289973px;}
.x59{left:680.549973px;}
.x51{left:688.649986px;}
.x6d{left:691.529986px;}
.x5a{left:692.789986px;}
.x83{left:698.549973px;}
.x71{left:709.889973px;}
.x76{left:719.789973px;}
.x72{left:722.129986px;}
.x77{left:732.029986px;}
.x3a{left:775.049973px;}
.x52{left:779.909973px;}
.x3b{left:787.289986px;}
.x53{left:792.149986px;}
.x25{left:795.209973px;}
.xc{left:803.309986px;}
.x26{left:807.449986px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls26{letter-spacing:-14.720000pt;}
.ls29{letter-spacing:-12.160000pt;}
.ls19{letter-spacing:-9.600000pt;}
.lse{letter-spacing:-7.680000pt;}
.ls23{letter-spacing:-7.040000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls1b{letter-spacing:-0.896000pt;}
.ls1d{letter-spacing:-0.693333pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.242133pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.128000pt;}
.ls31{letter-spacing:-0.057600pt;}
.ls10{letter-spacing:-0.051840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.053760pt;}
.ls1c{letter-spacing:0.053867pt;}
.ls5{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.133333pt;}
.lsa{letter-spacing:0.154880pt;}
.lsf{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.227840pt;}
.ls13{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.385280pt;}
.ls30{letter-spacing:0.448000pt;}
.ls1f{letter-spacing:0.586667pt;}
.ls8{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.693760pt;}
.ls2e{letter-spacing:0.704000pt;}
.ls24{letter-spacing:0.768000pt;}
.ls2c{letter-spacing:1.920000pt;}
.ls11{letter-spacing:2.560000pt;}
.ls2d{letter-spacing:3.840000pt;}
.ls16{letter-spacing:4.480000pt;}
.ls25{letter-spacing:8.320000pt;}
.ls2b{letter-spacing:16.640000pt;}
.ls2a{letter-spacing:17.920000pt;}
.ls22{letter-spacing:23.680000pt;}
.ls21{letter-spacing:24.960000pt;}
.ls32{letter-spacing:37.248000pt;}
.ls33{letter-spacing:57.088000pt;}
.ls2f{letter-spacing:62.208000pt;}
.ls34{letter-spacing:80.000000pt;}
.ls18{letter-spacing:83.328000pt;}
.ls20{letter-spacing:87.168000pt;}
.ls7{letter-spacing:108.288000pt;}
.ls27{letter-spacing:112.128000pt;}
.ls2{letter-spacing:133.226667pt;}
.ls3{letter-spacing:175.978667pt;}
.wse{word-spacing:-16.704000pt;}
.ws10{word-spacing:-16.448000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.360000pt;}
.wsa{word-spacing:-13.534613pt;}
.wsb{word-spacing:-12.591787pt;}
.ws8{word-spacing:-12.058987pt;}
.ws5{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.953280pt;}
.ws11{word-spacing:-11.947520pt;}
.ws9{word-spacing:-11.311787pt;}
.wsf{word-spacing:-7.568427pt;}
.ws0{word-spacing:0.000000pt;}
._24{margin-left:-14.720000pt;}
._1a{margin-left:-12.800000pt;}
._15{margin-left:-11.520000pt;}
._14{margin-left:-8.269001pt;}
._1b{margin-left:-6.803840pt;}
._0{margin-left:-5.874999pt;}
._4{margin-left:-4.544000pt;}
._7{margin-left:-2.837333pt;}
._18{margin-left:-1.930667pt;}
._2{margin-left:-1.024000pt;}
._6{width:0.906667pt;}
._9{width:2.613333pt;}
._e{width:3.893333pt;}
._3{width:5.120000pt;}
._8{width:6.016000pt;}
._1{width:6.912000pt;}
._5{width:8.618667pt;}
._f{width:9.813333pt;}
._16{width:10.752000pt;}
._c{width:11.712000pt;}
._d{width:12.928000pt;}
._17{width:14.592000pt;}
._b{width:17.653333pt;}
._a{width:18.688000pt;}
._19{width:19.722667pt;}
._1d{width:20.746667pt;}
._22{width:22.912000pt;}
._1e{width:26.624000pt;}
._1f{width:27.573333pt;}
._23{width:50.494507pt;}
._11{width:52.288000pt;}
._13{width:53.760000pt;}
._12{width:55.296000pt;}
._21{width:75.402667pt;}
._25{width:95.085001pt;}
._20{width:135.264000pt;}
._10{width:145.898667pt;}
._1c{width:175.978667pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:64.000001pt;}
.fs1{font-size:138.666669pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:4.000000pt;}
.y15{bottom:21.920000pt;}
.y6{bottom:23.868812pt;}
.y1{bottom:38.464028pt;}
.y5{bottom:52.933919pt;}
.y4{bottom:71.332359pt;}
.y3{bottom:100.397465pt;}
.y48{bottom:109.792000pt;}
.y47{bottom:114.432000pt;}
.y35{bottom:118.912000pt;}
.y53{bottom:127.072000pt;}
.y2{bottom:129.462572pt;}
.y46{bottom:137.786667pt;}
.y6b{bottom:138.266667pt;}
.y45{bottom:142.426667pt;}
.y52{bottom:144.506667pt;}
.y34{bottom:146.586667pt;}
.y51{bottom:149.146667pt;}
.y6f{bottom:155.066667pt;}
.y6e{bottom:159.706667pt;}
.y44{bottom:165.786667pt;}
.y68{bottom:166.266667pt;}
.y43{bottom:170.426667pt;}
.y50{bottom:172.986667pt;}
.y33{bottom:174.106667pt;}
.y5e{bottom:183.066667pt;}
.y5d{bottom:187.706667pt;}
.y42{bottom:193.786667pt;}
.y78{bottom:194.266667pt;}
.y4e{bottom:198.426667pt;}
.y32{bottom:201.626667pt;}
.y41{bottom:211.226667pt;}
.y5c{bottom:211.546667pt;}
.y40{bottom:215.866667pt;}
.y5a{bottom:221.786667pt;}
.y4d{bottom:222.266667pt;}
.y59{bottom:226.426667pt;}
.y67{bottom:228.506667pt;}
.y31{bottom:229.306667pt;}
.y72{bottom:235.386667pt;}
.y3f{bottom:239.226667pt;}
.y62{bottom:243.866667pt;}
.y66{bottom:245.946667pt;}
.y7c{bottom:249.786667pt;}
.y58{bottom:250.266667pt;}
.y65{bottom:250.586667pt;}
.y7b{bottom:254.426667pt;}
.y3e{bottom:256.506667pt;}
.y30{bottom:256.826667pt;}
.y3d{bottom:261.146667pt;}
.y75{bottom:262.906667pt;}
.y61{bottom:267.706667pt;}
.y64{bottom:274.426667pt;}
.y7a{bottom:278.266667pt;}
.y7e{bottom:284.226667pt;}
.y2f{bottom:284.546667pt;}
.y3c{bottom:285.026667pt;}
.y2e{bottom:312.066667pt;}
.y4c{bottom:318.146667pt;}
.y2d{bottom:339.746667pt;}
.y3b{bottom:345.826667pt;}
.y2c{bottom:367.266667pt;}
.y60{bottom:373.346667pt;}
.y2b{bottom:394.946667pt;}
.y4f{bottom:401.026667pt;}
.y2a{bottom:422.466667pt;}
.y3a{bottom:428.546667pt;}
.y6a{bottom:449.826667pt;}
.y29{bottom:450.146667pt;}
.y55{bottom:456.226667pt;}
.y71{bottom:477.346667pt;}
.y28{bottom:477.666667pt;}
.ya{bottom:477.699467pt;}
.y77{bottom:505.053333pt;}
.y27{bottom:505.373333pt;}
.y57{bottom:511.453333pt;}
.y9{bottom:531.385293pt;}
.y26{bottom:532.893333pt;}
.y39{bottom:538.973333pt;}
.y25{bottom:560.573333pt;}
.y79{bottom:566.653333pt;}
.y8{bottom:585.071080pt;}
.y24{bottom:588.093333pt;}
.y38{bottom:594.173333pt;}
.y14{bottom:597.964320pt;}
.y23{bottom:615.773333pt;}
.y6d{bottom:621.853333pt;}
.y13{bottom:625.561973pt;}
.y7{bottom:638.756880pt;}
.y22{bottom:643.293333pt;}
.y76{bottom:649.373333pt;}
.y12{bottom:653.159627pt;}
.y5b{bottom:670.653333pt;}
.y21{bottom:670.973333pt;}
.y6c{bottom:677.053333pt;}
.y11{bottom:680.757280pt;}
.y20{bottom:698.493333pt;}
.y73{bottom:704.573333pt;}
.y10{bottom:708.354933pt;}
.y1f{bottom:726.173333pt;}
.y70{bottom:732.293333pt;}
.yf{bottom:735.952600pt;}
.y74{bottom:753.413333pt;}
.y1e{bottom:753.733333pt;}
.y56{bottom:759.813333pt;}
.ye{bottom:763.550253pt;}
.y1d{bottom:781.413333pt;}
.y54{bottom:787.493333pt;}
.yd{bottom:791.147907pt;}
.y7d{bottom:808.613333pt;}
.y1c{bottom:808.933333pt;}
.y63{bottom:815.013333pt;}
.yc{bottom:818.745560pt;}
.y1b{bottom:836.613333pt;}
.y5f{bottom:842.693333pt;}
.y1a{bottom:864.133333pt;}
.y37{bottom:870.213333pt;}
.yb{bottom:873.940880pt;}
.y36{bottom:891.493333pt;}
.y19{bottom:891.813333pt;}
.y69{bottom:897.893333pt;}
.y18{bottom:919.013333pt;}
.y4a{bottom:919.333333pt;}
.y4b{bottom:925.413333pt;}
.y17{bottom:947.013333pt;}
.y49{bottom:953.120000pt;}
.h10{height:34.374375pt;}
.hf{height:42.063437pt;}
.he{height:42.084375pt;}
.h11{height:52.834688pt;}
.h5{height:56.843751pt;}
.hb{height:57.375000pt;}
.h2{height:57.375001pt;}
.ha{height:57.687500pt;}
.h7{height:58.563750pt;}
.hc{height:62.781250pt;}
.h8{height:62.812500pt;}
.hd{height:64.500000pt;}
.h12{height:65.781915pt;}
.h9{height:66.625000pt;}
.h3{height:93.911460pt;}
.h4{height:120.994794pt;}
.h1{height:144.400065pt;}
.h6{height:1056.000000pt;}
.h0{height:1121.333333pt;}
.w1{width:234.799973pt;}
.w0{width:793.333333pt;}
.w4{width:815.999976pt;}
.w3{width:815.999988pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:1.673427pt;}
.x4{left:10.552333pt;}
.x3{left:18.989827pt;}
.x2{left:45.872640pt;}
.x6{left:78.735920pt;}
.xd{left:94.431988pt;}
.x1c{left:98.751988pt;}
.x27{left:103.071988pt;}
.xb{left:113.400004pt;}
.x1d{left:116.991988pt;}
.xe{left:118.431988pt;}
.x7e{left:129.471976pt;}
.x16{left:131.071976pt;}
.x17{left:136.506655pt;}
.x7f{left:140.346655pt;}
.x18{left:142.426655pt;}
.x5b{left:144.186642pt;}
.x78{left:148.026642pt;}
.x81{left:150.426655pt;}
.x4c{left:152.186642pt;}
.x5c{left:155.066655pt;}
.x79{left:158.906655pt;}
.x4d{left:163.066655pt;}
.xf{left:166.426655pt;}
.x82{left:170.106655pt;}
.xa{left:172.921367pt;}
.x6e{left:177.786655pt;}
.x54{left:190.426655pt;}
.x7c{left:191.706642pt;}
.x80{left:200.826655pt;}
.x7d{left:202.586655pt;}
.x48{left:217.946642pt;}
.x2e{left:220.986642pt;}
.x8{left:224.455867pt;}
.x49{left:228.826655pt;}
.x2f{left:231.866655pt;}
.x43{left:234.906655pt;}
.x10{left:242.746642pt;}
.x5d{left:245.786655pt;}
.x11{left:248.186655pt;}
.x35{left:259.106655pt;}
.x7{left:263.447413pt;}
.x7b{left:269.826655pt;}
.x9{left:273.121240pt;}
.x2a{left:277.986642pt;}
.x1b{left:286.466655pt;}
.x2b{left:288.866655pt;}
.x32{left:300.546655pt;}
.x23{left:303.746642pt;}
.x30{left:305.346642pt;}
.x24{left:309.186655pt;}
.x33{left:314.466642pt;}
.x31{left:316.226655pt;}
.x34{left:325.346655pt;}
.x74{left:329.986642pt;}
.x75{left:340.866655pt;}
.x3f{left:345.826642pt;}
.x40{left:356.706655pt;}
.x64{left:365.186642pt;}
.x20{left:366.306642pt;}
.x21{left:369.506642pt;}
.x1e{left:371.266642pt;}
.x22{left:374.946655pt;}
.x1f{left:376.706655pt;}
.x55{left:380.226642pt;}
.x44{left:381.986642pt;}
.x42{left:387.426655pt;}
.x56{left:391.106655pt;}
.x45{left:392.866655pt;}
.x4a{left:399.266642pt;}
.x6b{left:402.626655pt;}
.x46{left:405.026642pt;}
.x4b{left:410.146655pt;}
.x73{left:414.306655pt;}
.x47{left:415.906655pt;}
.x6f{left:421.026642pt;}
.x70{left:431.933321pt;}
.x67{left:434.013309pt;}
.x57{left:437.373309pt;}
.x68{left:444.893321pt;}
.x58{left:448.253321pt;}
.x19{left:455.773309pt;}
.x1a{left:461.213321pt;}
.x1{left:463.600013pt;}
.x65{left:467.133309pt;}
.x3e{left:472.093321pt;}
.x36{left:476.893309pt;}
.x66{left:478.013321pt;}
.x3c{left:480.733309pt;}
.x37{left:487.773321pt;}
.x3d{left:491.613321pt;}
.x28{left:496.733309pt;}
.x7a{left:502.173321pt;}
.x29{left:507.613321pt;}
.x38{left:520.573309pt;}
.x39{left:531.453321pt;}
.x69{left:536.573309pt;}
.x12{left:538.973309pt;}
.x14{left:539.933309pt;}
.x5e{left:541.693309pt;}
.x13{left:544.413321pt;}
.x15{left:545.373321pt;}
.x6a{left:547.453321pt;}
.x41{left:550.973321pt;}
.x5f{left:552.573321pt;}
.x60{left:554.813309pt;}
.x61{left:565.693321pt;}
.x62{left:568.093309pt;}
.x4e{left:574.653309pt;}
.x2c{left:576.573309pt;}
.x63{left:578.973321pt;}
.x4f{left:585.533321pt;}
.x2d{left:587.453321pt;}
.x50{left:601.253309pt;}
.x6c{left:603.813309pt;}
.x59{left:604.933309pt;}
.x51{left:612.133321pt;}
.x6d{left:614.693321pt;}
.x5a{left:615.813321pt;}
.x83{left:620.933309pt;}
.x71{left:631.013309pt;}
.x76{left:639.813309pt;}
.x72{left:641.893321pt;}
.x77{left:650.693321pt;}
.x3a{left:688.933309pt;}
.x52{left:693.253309pt;}
.x3b{left:699.813321pt;}
.x53{left:704.133321pt;}
.x25{left:706.853309pt;}
.xc{left:714.053321pt;}
.x26{left:717.733321pt;}
}

