
    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_ba3db2e7d8ae3da7dd89309f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.965332;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_12b6f15385f6830964b12c71.woff')format("woff");}.ff2{font-family:ff2;line-height:0.965332;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_0cf73d6eb9e98dc07ec82737.woff')format("woff");}.ff3{font-family:ff3;line-height:0.936035;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_5a8cba8167eea17d140a8ed3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.757812;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_ce2896ed3c7cc7ea2f82ac28.woff')format("woff");}.ff5{font-family:ff5;line-height:1.201000;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_ba3db2e7d8ae3da7dd89309f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.965332;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_12b6f15385f6830964b12c71.woff')format("woff");}.ff7{font-family:ff7;line-height:0.965332;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_0cf73d6eb9e98dc07ec82737.woff')format("woff");}.ff8{font-family:ff8;line-height:0.936035;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_5a8cba8167eea17d140a8ed3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.757812;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_8a677448761631d4a8eafb6a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.219000;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_5e54f915f40885337019bed3.woff')format("woff");}.ffb{font-family:ffb;line-height:1.222000;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_864d642588313e429ed713b0.woff')format("woff");}.ffc{font-family:ffc;line-height:1.178000;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_28f04b628b5d80f68e49a087.woff')format("woff");}.ffd{font-family:ffd;line-height:1.215000;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_fbdffe933705c0a2a9dcdc4f.woff')format("woff");}.ffe{font-family:ffe;line-height:1.079400;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);}
.m2{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);}
.v2{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.780000px;}
.lsa{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.011400px;}
.ls12{letter-spacing:0.235200px;}
.ls13{letter-spacing:0.239400px;}
.ls11{letter-spacing:0.240000px;}
.ls9{letter-spacing:0.270000px;}
.lse{letter-spacing:0.294000px;}
.lsd{letter-spacing:0.299400px;}
.lsf{letter-spacing:0.300000px;}
.lsc{letter-spacing:0.330000px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.435000px;}
.ls6{letter-spacing:0.435600px;}
.ls4{letter-spacing:0.441000px;}
.lsb{letter-spacing:0.448800px;}
.ls8{letter-spacing:0.449400px;}
.ls7{letter-spacing:0.450000px;}
.ls3{letter-spacing:0.465000px;}
.ls0{letter-spacing:0.690000px;}
.ls19{letter-spacing:1.093200px;}
.ls17{letter-spacing:1.169400px;}
.ls14{letter-spacing:1.170000px;}
.ls10{letter-spacing:1.349400px;}
.ls1b{letter-spacing:1.581000px;}
.ls1a{letter-spacing:2.076600px;}
.ls18{letter-spacing:2.640000px;}
.ls16{letter-spacing:3.043200px;}
.ls1c{letter-spacing:3.045000px;}
.ls15{letter-spacing:5.452800px;}
.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;}
}
.ws3{word-spacing:-54.270000px;}
.ws1{word-spacing:-17.955000px;}
.ws2{word-spacing:-17.514000px;}
.ws5{word-spacing:-16.764000px;}
.wsc{word-spacing:-15.600000px;}
.ws12{word-spacing:-15.180000px;}
.ws9{word-spacing:-13.716000px;}
.ws0{word-spacing:-12.843600px;}
.wsb{word-spacing:-12.600000px;}
.wsa{word-spacing:-12.420000px;}
.ws8{word-spacing:-12.000000px;}
.wse{word-spacing:-11.734800px;}
.wsd{word-spacing:-10.920000px;}
.wsf{word-spacing:-9.601200px;}
.ws13{word-spacing:-9.600000px;}
.ws6{word-spacing:-8.694000px;}
.ws7{word-spacing:-8.400000px;}
.ws10{word-spacing:-6.955200px;}
.ws11{word-spacing:-6.720000px;}
.ws4{word-spacing:0.000000px;}
._11{margin-left:-1090.834200px;}
._0{margin-left:-10.212000px;}
._10{margin-left:-7.565400px;}
._7{margin-left:-6.393600px;}
._1{margin-left:-5.106000px;}
._3{margin-left:-3.423600px;}
._8{margin-left:-2.059200px;}
._2{margin-left:-1.027200px;}
._4{width:1.246800px;}
._6{width:2.592000px;}
._9{width:4.222800px;}
._e{width:5.526000px;}
._f{width:7.332600px;}
._d{width:9.290400px;}
._c{width:10.296000px;}
._5{width:11.316000px;}
._a{width:35.424000px;}
._b{width:36.612000px;}
.fc4{color:transparent;}
.fc3{color:rgb(79,76,77);}
.fc1{color:rgb(46,49,146);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:33.600000px;}
.fsb{font-size:37.800000px;}
.fs8{font-size:42.000000px;}
.fs3{font-size:46.200000px;}
.fsc{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fsa{font-size:54.600000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:78.000000px;}
.fs4{font-size:90.000000px;}
.fs0{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:48.660750px;}
.y5{bottom:67.373250px;}
.ye{bottom:74.459850px;}
.y4c{bottom:82.913400px;}
.y28{bottom:84.190800px;}
.y9d{bottom:84.805800px;}
.y4b{bottom:99.413400px;}
.y27{bottom:99.940800px;}
.yaa{bottom:103.868400px;}
.y9c{bottom:104.305800px;}
.y76{bottom:115.913400px;}
.y9b{bottom:123.805800px;}
.y4a{bottom:128.872350px;}
.y26{bottom:131.440800px;}
.y75{bottom:132.413400px;}
.yc9{bottom:143.305800px;}
.y25{bottom:147.190800px;}
.y74{bottom:148.913400px;}
.ya9{bottom:154.301850px;}
.y9a{bottom:155.305800px;}
.yda{bottom:161.005800px;}
.yb0{bottom:162.805800px;}
.yc8{bottom:165.140400px;}
.y73{bottom:165.413400px;}
.y49{bottom:173.154300px;}
.ya8{bottom:173.802000px;}
.yd9{bottom:178.180800px;}
.y24{bottom:178.690800px;}
.yaf{bottom:182.305800px;}
.yc7{bottom:184.640400px;}
.y72{bottom:186.368400px;}
.y48{bottom:192.654300px;}
.ya7{bottom:193.302000px;}
.y23{bottom:194.440800px;}
.yd8{bottom:195.355800px;}
.y71{bottom:198.413400px;}
.y99{bottom:201.805800px;}
.yc6{bottom:204.140400px;}
.y47{bottom:212.154300px;}
.yd7{bottom:212.530800px;}
.ya6{bottom:212.802000px;}
.y70{bottom:214.913400px;}
.y98{bottom:221.305800px;}
.yc5{bottom:223.640400px;}
.y22{bottom:225.940800px;}
.yd6{bottom:229.705800px;}
.y6f{bottom:231.413400px;}
.y46{bottom:231.654300px;}
.ya5{bottom:232.302000px;}
.y97{bottom:240.805800px;}
.y21{bottom:241.690800px;}
.yc4{bottom:243.140400px;}
.yd5{bottom:246.880800px;}
.y6e{bottom:247.913400px;}
.y45{bottom:251.154300px;}
.ya4{bottom:251.802000px;}
.y96{bottom:260.305800px;}
.yc3{bottom:262.640400px;}
.yd4{bottom:264.055800px;}
.y6d{bottom:268.868400px;}
.y44{bottom:270.654300px;}
.ya3{bottom:271.302000px;}
.y20{bottom:273.190800px;}
.y95{bottom:279.805800px;}
.yd3{bottom:281.230800px;}
.yc2{bottom:282.140400px;}
.y1f{bottom:289.690800px;}
.y43{bottom:290.154300px;}
.ya2{bottom:290.802000px;}
.y13{bottom:296.956650px;}
.yd2{bottom:298.405800px;}
.y94{bottom:299.305800px;}
.yc1{bottom:301.640400px;}
.y1e{bottom:305.440800px;}
.y42{bottom:309.654300px;}
.yd1{bottom:315.580800px;}
.y93{bottom:318.805800px;}
.y6c{bottom:321.100800px;}
.y1d{bottom:321.190800px;}
.y41{bottom:329.154300px;}
.ya1{bottom:329.802000px;}
.yd0{bottom:332.755800px;}
.yc0{bottom:333.140400px;}
.y11{bottom:337.954650px;}
.y92{bottom:338.305800px;}
.y6b{bottom:340.600800px;}
.y8{bottom:341.484600px;}
.y40{bottom:348.654300px;}
.ycf{bottom:349.930800px;}
.y1c{bottom:356.440800px;}
.yae{bottom:357.805800px;}
.y6a{bottom:360.100800px;}
.y10{bottom:361.954650px;}
.y7{bottom:365.484600px;}
.yce{bottom:367.105800px;}
.y3f{bottom:368.154300px;}
.y91{bottom:369.805800px;}
.y1b{bottom:372.190800px;}
.yad{bottom:377.305800px;}
.y69{bottom:379.600800px;}
.ybf{bottom:379.640400px;}
.ycd{bottom:384.280800px;}
.yf{bottom:385.954650px;}
.y3e{bottom:387.654300px;}
.y1a{bottom:387.940800px;}
.y6{bottom:389.484600px;}
.yac{bottom:396.805800px;}
.y68{bottom:399.100800px;}
.ybe{bottom:399.140400px;}
.ycc{bottom:401.455800px;}
.y19{bottom:403.690800px;}
.y3d{bottom:407.154300px;}
.y12{bottom:413.898750px;}
.y90{bottom:416.305800px;}
.y9{bottom:416.365800px;}
.y67{bottom:418.600800px;}
.ycb{bottom:418.630800px;}
.ybd{bottom:418.640400px;}
.y3c{bottom:426.654300px;}
.y8f{bottom:435.805800px;}
.y66{bottom:438.100800px;}
.ybc{bottom:438.140400px;}
.y3b{bottom:446.154300px;}
.yca{bottom:447.805800px;}
.y18{bottom:450.940800px;}
.y8e{bottom:455.305800px;}
.y3{bottom:456.509550px;}
.y65{bottom:457.600800px;}
.ybb{bottom:457.640400px;}
.yd{bottom:463.596150px;}
.y3a{bottom:465.654300px;}
.y17{bottom:467.440800px;}
.y4{bottom:469.179600px;}
.y8d{bottom:474.805800px;}
.y64{bottom:477.100800px;}
.yba{bottom:477.140400px;}
.y39{bottom:485.154300px;}
.y8c{bottom:494.305800px;}
.y63{bottom:496.600800px;}
.yb9{bottom:496.640400px;}
.y16{bottom:499.690800px;}
.y38{bottom:504.654300px;}
.y2{bottom:510.509550px;}
.ya{bottom:512.832150px;}
.y8b{bottom:513.805800px;}
.y62{bottom:516.100800px;}
.yb8{bottom:516.140400px;}
.yc{bottom:517.596150px;}
.y15{bottom:523.944750px;}
.y37{bottom:524.154300px;}
.y8a{bottom:533.305800px;}
.y61{bottom:535.600800px;}
.yb7{bottom:535.640400px;}
.y14{bottom:541.944750px;}
.y36{bottom:543.654300px;}
.y89{bottom:552.805800px;}
.y60{bottom:555.100800px;}
.yb6{bottom:555.140400px;}
.y35{bottom:563.154300px;}
.y1{bottom:564.509550px;}
.yb{bottom:571.596150px;}
.y88{bottom:572.305800px;}
.y5f{bottom:574.600800px;}
.yb5{bottom:574.640400px;}
.y34{bottom:582.654300px;}
.y87{bottom:591.805800px;}
.y5e{bottom:594.100800px;}
.yb4{bottom:594.140400px;}
.y33{bottom:602.154300px;}
.y86{bottom:611.305800px;}
.y5d{bottom:613.600800px;}
.yb3{bottom:613.640400px;}
.y32{bottom:621.654300px;}
.y85{bottom:630.805800px;}
.y5c{bottom:633.100800px;}
.y31{bottom:641.154300px;}
.y84{bottom:650.305800px;}
.y5b{bottom:652.600800px;}
.yb2{bottom:652.640400px;}
.y30{bottom:660.654300px;}
.yb1{bottom:669.140400px;}
.y83{bottom:669.805800px;}
.y5a{bottom:672.100800px;}
.y2f{bottom:680.154300px;}
.y82{bottom:689.305800px;}
.y59{bottom:691.600800px;}
.yab{bottom:701.305800px;}
.y81{bottom:708.805800px;}
.y2e{bottom:710.154300px;}
.y58{bottom:711.100800px;}
.y80{bottom:728.305800px;}
.y57{bottom:730.600800px;}
.y7f{bottom:747.805800px;}
.y56{bottom:750.100800px;}
.y7e{bottom:767.305800px;}
.y55{bottom:769.600800px;}
.y2d{bottom:780.512100px;}
.ya0{bottom:786.805800px;}
.y54{bottom:789.100800px;}
.y7d{bottom:798.805800px;}
.y2c{bottom:802.764000px;}
.y9f{bottom:806.305800px;}
.y53{bottom:808.600800px;}
.y9e{bottom:825.805800px;}
.y52{bottom:828.100800px;}
.y2b{bottom:836.520000px;}
.y7c{bottom:845.305800px;}
.y51{bottom:847.600800px;}
.y2a{bottom:862.020000px;}
.y7b{bottom:864.805800px;}
.y50{bottom:867.100800px;}
.y7a{bottom:884.305800px;}
.y4f{bottom:898.600800px;}
.y79{bottom:903.805800px;}
.y4e{bottom:921.100800px;}
.y78{bottom:923.305800px;}
.y77{bottom:963.647850px;}
.y4d{bottom:969.132900px;}
.h12{height:35.002800px;}
.h6{height:39.788086px;}
.h13{height:45.456000px;}
.h9{height:47.412000px;}
.hb{height:50.004000px;}
.ha{height:50.760000px;}
.hf{height:52.680000px;}
.h8{height:56.820000px;}
.h7{height:61.116000px;}
.h4{height:62.390625px;}
.h14{height:62.502000px;}
.h11{height:64.561200px;}
.hc{height:66.672000px;}
.h3{height:68.062500px;}
.he{height:68.184000px;}
.h10{height:73.866000px;}
.h5{height:82.353516px;}
.hd{height:85.230000px;}
.h2{height:130.453125px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:25.173600px;}
.x12{left:43.901550px;}
.x6{left:58.590750px;}
.x1{left:62.864250px;}
.x10{left:64.154550px;}
.x7{left:76.377150px;}
.xf{left:77.660400px;}
.x11{left:81.162450px;}
.xb{left:85.039350px;}
.x15{left:95.842500px;}
.x14{left:102.047250px;}
.x13{left:106.299300px;}
.x3{left:107.700750px;}
.xd{left:145.275600px;}
.xc{left:148.110300px;}
.x8{left:344.535750px;}
.x4{left:347.796300px;}
.xa{left:443.267700px;}
.x9{left:574.141950px;}
.x5{left:580.591500px;}
.xe{left:651.933000px;}
@media print{
.v2{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.360000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.010133pt;}
.ls12{letter-spacing:0.209067pt;}
.ls13{letter-spacing:0.212800pt;}
.ls11{letter-spacing:0.213333pt;}
.ls9{letter-spacing:0.240000pt;}
.lse{letter-spacing:0.261333pt;}
.lsd{letter-spacing:0.266133pt;}
.lsf{letter-spacing:0.266667pt;}
.lsc{letter-spacing:0.293333pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.386667pt;}
.ls6{letter-spacing:0.387200pt;}
.ls4{letter-spacing:0.392000pt;}
.lsb{letter-spacing:0.398933pt;}
.ls8{letter-spacing:0.399467pt;}
.ls7{letter-spacing:0.400000pt;}
.ls3{letter-spacing:0.413333pt;}
.ls0{letter-spacing:0.613333pt;}
.ls19{letter-spacing:0.971733pt;}
.ls17{letter-spacing:1.039467pt;}
.ls14{letter-spacing:1.040000pt;}
.ls10{letter-spacing:1.199467pt;}
.ls1b{letter-spacing:1.405333pt;}
.ls1a{letter-spacing:1.845867pt;}
.ls18{letter-spacing:2.346667pt;}
.ls16{letter-spacing:2.705067pt;}
.ls1c{letter-spacing:2.706667pt;}
.ls15{letter-spacing:4.846933pt;}
.ws3{word-spacing:-48.240000pt;}
.ws1{word-spacing:-15.960000pt;}
.ws2{word-spacing:-15.568000pt;}
.ws5{word-spacing:-14.901333pt;}
.wsc{word-spacing:-13.866667pt;}
.ws12{word-spacing:-13.493333pt;}
.ws9{word-spacing:-12.192000pt;}
.ws0{word-spacing:-11.416533pt;}
.wsb{word-spacing:-11.200000pt;}
.wsa{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.666667pt;}
.wse{word-spacing:-10.430933pt;}
.wsd{word-spacing:-9.706667pt;}
.wsf{word-spacing:-8.534400pt;}
.ws13{word-spacing:-8.533333pt;}
.ws6{word-spacing:-7.728000pt;}
.ws7{word-spacing:-7.466667pt;}
.ws10{word-spacing:-6.182400pt;}
.ws11{word-spacing:-5.973333pt;}
.ws4{word-spacing:0.000000pt;}
._11{margin-left:-969.630400pt;}
._0{margin-left:-9.077333pt;}
._10{margin-left:-6.724800pt;}
._7{margin-left:-5.683200pt;}
._1{margin-left:-4.538667pt;}
._3{margin-left:-3.043200pt;}
._8{margin-left:-1.830400pt;}
._2{margin-left:-0.913067pt;}
._4{width:1.108267pt;}
._6{width:2.304000pt;}
._9{width:3.753600pt;}
._e{width:4.912000pt;}
._f{width:6.517867pt;}
._d{width:8.258133pt;}
._c{width:9.152000pt;}
._5{width:10.058667pt;}
._a{width:31.488000pt;}
._b{width:32.544000pt;}
.fsd{font-size:29.866667pt;}
.fsb{font-size:33.600000pt;}
.fs8{font-size:37.333333pt;}
.fs3{font-size:41.066667pt;}
.fsc{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fsa{font-size:48.533333pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:69.333333pt;}
.fs4{font-size:80.000000pt;}
.fs0{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:43.254000pt;}
.y5{bottom:59.887333pt;}
.ye{bottom:66.186533pt;}
.y4c{bottom:73.700800pt;}
.y28{bottom:74.836267pt;}
.y9d{bottom:75.382933pt;}
.y4b{bottom:88.367467pt;}
.y27{bottom:88.836267pt;}
.yaa{bottom:92.327467pt;}
.y9c{bottom:92.716267pt;}
.y76{bottom:103.034133pt;}
.y9b{bottom:110.049600pt;}
.y4a{bottom:114.553200pt;}
.y26{bottom:116.836267pt;}
.y75{bottom:117.700800pt;}
.yc9{bottom:127.382933pt;}
.y25{bottom:130.836267pt;}
.y74{bottom:132.367467pt;}
.ya9{bottom:137.157200pt;}
.y9a{bottom:138.049600pt;}
.yda{bottom:143.116267pt;}
.yb0{bottom:144.716267pt;}
.yc8{bottom:146.791467pt;}
.y73{bottom:147.034133pt;}
.y49{bottom:153.914933pt;}
.ya8{bottom:154.490667pt;}
.yd9{bottom:158.382933pt;}
.y24{bottom:158.836267pt;}
.yaf{bottom:162.049600pt;}
.yc7{bottom:164.124800pt;}
.y72{bottom:165.660800pt;}
.y48{bottom:171.248267pt;}
.ya7{bottom:171.824000pt;}
.y23{bottom:172.836267pt;}
.yd8{bottom:173.649600pt;}
.y71{bottom:176.367467pt;}
.y99{bottom:179.382933pt;}
.yc6{bottom:181.458133pt;}
.y47{bottom:188.581600pt;}
.yd7{bottom:188.916267pt;}
.ya6{bottom:189.157333pt;}
.y70{bottom:191.034133pt;}
.y98{bottom:196.716267pt;}
.yc5{bottom:198.791467pt;}
.y22{bottom:200.836267pt;}
.yd6{bottom:204.182933pt;}
.y6f{bottom:205.700800pt;}
.y46{bottom:205.914933pt;}
.ya5{bottom:206.490667pt;}
.y97{bottom:214.049600pt;}
.y21{bottom:214.836267pt;}
.yc4{bottom:216.124800pt;}
.yd5{bottom:219.449600pt;}
.y6e{bottom:220.367467pt;}
.y45{bottom:223.248267pt;}
.ya4{bottom:223.824000pt;}
.y96{bottom:231.382933pt;}
.yc3{bottom:233.458133pt;}
.yd4{bottom:234.716267pt;}
.y6d{bottom:238.994133pt;}
.y44{bottom:240.581600pt;}
.ya3{bottom:241.157333pt;}
.y20{bottom:242.836267pt;}
.y95{bottom:248.716267pt;}
.yd3{bottom:249.982933pt;}
.yc2{bottom:250.791467pt;}
.y1f{bottom:257.502933pt;}
.y43{bottom:257.914933pt;}
.ya2{bottom:258.490667pt;}
.y13{bottom:263.961467pt;}
.yd2{bottom:265.249600pt;}
.y94{bottom:266.049600pt;}
.yc1{bottom:268.124800pt;}
.y1e{bottom:271.502933pt;}
.y42{bottom:275.248267pt;}
.yd1{bottom:280.516267pt;}
.y93{bottom:283.382933pt;}
.y6c{bottom:285.422933pt;}
.y1d{bottom:285.502933pt;}
.y41{bottom:292.581600pt;}
.ya1{bottom:293.157333pt;}
.yd0{bottom:295.782933pt;}
.yc0{bottom:296.124800pt;}
.y11{bottom:300.404133pt;}
.y92{bottom:300.716267pt;}
.y6b{bottom:302.756267pt;}
.y8{bottom:303.541867pt;}
.y40{bottom:309.914933pt;}
.ycf{bottom:311.049600pt;}
.y1c{bottom:316.836267pt;}
.yae{bottom:318.049600pt;}
.y6a{bottom:320.089600pt;}
.y10{bottom:321.737467pt;}
.y7{bottom:324.875200pt;}
.yce{bottom:326.316267pt;}
.y3f{bottom:327.248267pt;}
.y91{bottom:328.716267pt;}
.y1b{bottom:330.836267pt;}
.yad{bottom:335.382933pt;}
.y69{bottom:337.422933pt;}
.ybf{bottom:337.458133pt;}
.ycd{bottom:341.582933pt;}
.yf{bottom:343.070800pt;}
.y3e{bottom:344.581600pt;}
.y1a{bottom:344.836267pt;}
.y6{bottom:346.208533pt;}
.yac{bottom:352.716267pt;}
.y68{bottom:354.756267pt;}
.ybe{bottom:354.791467pt;}
.ycc{bottom:356.849600pt;}
.y19{bottom:358.836267pt;}
.y3d{bottom:361.914933pt;}
.y12{bottom:367.910000pt;}
.y90{bottom:370.049600pt;}
.y9{bottom:370.102933pt;}
.y67{bottom:372.089600pt;}
.ycb{bottom:372.116267pt;}
.ybd{bottom:372.124800pt;}
.y3c{bottom:379.248267pt;}
.y8f{bottom:387.382933pt;}
.y66{bottom:389.422933pt;}
.ybc{bottom:389.458133pt;}
.y3b{bottom:396.581600pt;}
.yca{bottom:398.049600pt;}
.y18{bottom:400.836267pt;}
.y8e{bottom:404.716267pt;}
.y3{bottom:405.786267pt;}
.y65{bottom:406.756267pt;}
.ybb{bottom:406.791467pt;}
.yd{bottom:412.085467pt;}
.y3a{bottom:413.914933pt;}
.y17{bottom:415.502933pt;}
.y4{bottom:417.048533pt;}
.y8d{bottom:422.049600pt;}
.y64{bottom:424.089600pt;}
.yba{bottom:424.124800pt;}
.y39{bottom:431.248267pt;}
.y8c{bottom:439.382933pt;}
.y63{bottom:441.422933pt;}
.yb9{bottom:441.458133pt;}
.y16{bottom:444.169600pt;}
.y38{bottom:448.581600pt;}
.y2{bottom:453.786267pt;}
.ya{bottom:455.850800pt;}
.y8b{bottom:456.716267pt;}
.y62{bottom:458.756267pt;}
.yb8{bottom:458.791467pt;}
.yc{bottom:460.085467pt;}
.y15{bottom:465.728667pt;}
.y37{bottom:465.914933pt;}
.y8a{bottom:474.049600pt;}
.y61{bottom:476.089600pt;}
.yb7{bottom:476.124800pt;}
.y14{bottom:481.728667pt;}
.y36{bottom:483.248267pt;}
.y89{bottom:491.382933pt;}
.y60{bottom:493.422933pt;}
.yb6{bottom:493.458133pt;}
.y35{bottom:500.581600pt;}
.y1{bottom:501.786267pt;}
.yb{bottom:508.085467pt;}
.y88{bottom:508.716267pt;}
.y5f{bottom:510.756267pt;}
.yb5{bottom:510.791467pt;}
.y34{bottom:517.914933pt;}
.y87{bottom:526.049600pt;}
.y5e{bottom:528.089600pt;}
.yb4{bottom:528.124800pt;}
.y33{bottom:535.248267pt;}
.y86{bottom:543.382933pt;}
.y5d{bottom:545.422933pt;}
.yb3{bottom:545.458133pt;}
.y32{bottom:552.581600pt;}
.y85{bottom:560.716267pt;}
.y5c{bottom:562.756267pt;}
.y31{bottom:569.914933pt;}
.y84{bottom:578.049600pt;}
.y5b{bottom:580.089600pt;}
.yb2{bottom:580.124800pt;}
.y30{bottom:587.248267pt;}
.yb1{bottom:594.791467pt;}
.y83{bottom:595.382933pt;}
.y5a{bottom:597.422933pt;}
.y2f{bottom:604.581600pt;}
.y82{bottom:612.716267pt;}
.y59{bottom:614.756267pt;}
.yab{bottom:623.382933pt;}
.y81{bottom:630.049600pt;}
.y2e{bottom:631.248267pt;}
.y58{bottom:632.089600pt;}
.y80{bottom:647.382933pt;}
.y57{bottom:649.422933pt;}
.y7f{bottom:664.716267pt;}
.y56{bottom:666.756267pt;}
.y7e{bottom:682.049600pt;}
.y55{bottom:684.089600pt;}
.y2d{bottom:693.788533pt;}
.ya0{bottom:699.382933pt;}
.y54{bottom:701.422933pt;}
.y7d{bottom:710.049600pt;}
.y2c{bottom:713.568000pt;}
.y9f{bottom:716.716267pt;}
.y53{bottom:718.756267pt;}
.y9e{bottom:734.049600pt;}
.y52{bottom:736.089600pt;}
.y2b{bottom:743.573333pt;}
.y7c{bottom:751.382933pt;}
.y51{bottom:753.422933pt;}
.y2a{bottom:766.240000pt;}
.y7b{bottom:768.716267pt;}
.y50{bottom:770.756267pt;}
.y7a{bottom:786.049600pt;}
.y4f{bottom:798.756267pt;}
.y79{bottom:803.382933pt;}
.y4e{bottom:818.756267pt;}
.y78{bottom:820.716267pt;}
.y77{bottom:856.575867pt;}
.y4d{bottom:861.451467pt;}
.h12{height:31.113600pt;}
.h6{height:35.367188pt;}
.h13{height:40.405333pt;}
.h9{height:42.144000pt;}
.hb{height:44.448000pt;}
.ha{height:45.120000pt;}
.hf{height:46.826667pt;}
.h8{height:50.506667pt;}
.h7{height:54.325333pt;}
.h4{height:55.458333pt;}
.h14{height:55.557333pt;}
.h11{height:57.387733pt;}
.hc{height:59.264000pt;}
.h3{height:60.500000pt;}
.he{height:60.608000pt;}
.h10{height:65.658667pt;}
.h5{height:73.203125pt;}
.hd{height:75.760000pt;}
.h2{height:115.958333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:22.376533pt;}
.x12{left:39.023600pt;}
.x6{left:52.080667pt;}
.x1{left:55.879333pt;}
.x10{left:57.026267pt;}
.x7{left:67.890800pt;}
.xf{left:69.031467pt;}
.x11{left:72.144400pt;}
.xb{left:75.590533pt;}
.x15{left:85.193333pt;}
.x14{left:90.708667pt;}
.x13{left:94.488267pt;}
.x3{left:95.734000pt;}
.xd{left:129.133867pt;}
.xc{left:131.653600pt;}
.x8{left:306.254000pt;}
.x4{left:309.152267pt;}
.xa{left:394.015733pt;}
.x9{left:510.348400pt;}
.x5{left:516.081333pt;}
.xe{left:579.496000pt;}
}

