
    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_ac8b73f10a9e786488c8d341.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b848029a9980f8ac748060d3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_5a2a19556e30a61abac8d5bb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.689453;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_99d6208f3fe1a48ad4b39c8c.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_56b8cacce508e4855588c354.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c95690d7d188207fabcba01f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c461122cf908b7deadca535b.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_05ad44f30a27bb995ed3ce98.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_da40ffc11c50828dec9a82f5.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cae8c1af7cd795dc4dc4ed57.woff')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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_d95fb5f0892551c79b271d88.woff')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_6403022e1d8e0e4f4364d400.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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:-3.096000px;}
.ls12{letter-spacing:-0.936000px;}
.ls14{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.648000px;}
.ls13{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.414600px;}
.lsb{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.262080px;}
.ls2{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.305400px;}
.ls8{letter-spacing:0.504000px;}
.lse{letter-spacing:0.720000px;}
.ls7{letter-spacing:846.156000px;}
.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:-72.000000px;}
.ws0{word-spacing:-20.160000px;}
.ws15{word-spacing:-18.720000px;}
.ws12{word-spacing:-18.504000px;}
.ws19{word-spacing:-18.216000px;}
.wsd{word-spacing:-18.144000px;}
.ws11{word-spacing:-18.072000px;}
.ws9{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.928000px;}
.ws13{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.712000px;}
.ws17{word-spacing:-17.568000px;}
.ws18{word-spacing:-17.280000px;}
.ws16{word-spacing:-17.064000px;}
.wsa{word-spacing:-16.865400px;}
.wsb{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.488000px;}
.wsc{word-spacing:-16.145400px;}
.ws3{word-spacing:-0.144000px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:0.144000px;}
.ws8{word-spacing:0.216000px;}
.ws7{word-spacing:0.648000px;}
.ws5{word-spacing:13.176000px;}
.ws6{word-spacing:13.464000px;}
._0{margin-left:-1.152000px;}
._1{width:1.015200px;}
._3{width:2.880000px;}
._2{width:4.048800px;}
.fc9{color:rgb(0,106,204);}
.fc6{color:rgb(28,29,30);}
.fc5{color:rgb(192,0,0);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc8{color:rgb(34,34,34);}
.fc7{color:rgb(33,33,33);}
.fc4{color:rgb(33,29,30);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y69{bottom:3.960000px;}
.y76{bottom:10.440000px;}
.y94{bottom:13.320000px;}
.y68{bottom:24.660000px;}
.y8b{bottom:24.705000px;}
.y91{bottom:30.060000px;}
.y75{bottom:31.185000px;}
.y93{bottom:34.020000px;}
.y70{bottom:45.360000px;}
.y8a{bottom:45.405000px;}
.y90{bottom:50.760000px;}
.y7{bottom:57.060000px;}
.y6f{bottom:65.910000px;}
.y73{bottom:66.060000px;}
.y89{bottom:66.105000px;}
.y8f{bottom:71.460000px;}
.y6{bottom:77.760000px;}
.y72{bottom:86.760000px;}
.y88{bottom:86.805000px;}
.y8d{bottom:97.560000px;}
.yb0{bottom:122.040000px;}
.y61{bottom:125.100000px;}
.ye5{bottom:125.460000px;}
.ya5{bottom:126.900000px;}
.y77{bottom:129.780000px;}
.y4f{bottom:146.376000px;}
.y7a{bottom:151.230000px;}
.ye4{bottom:153.930000px;}
.yc1{bottom:155.190000px;}
.y66{bottom:159.330000px;}
.yaf{bottom:163.470000px;}
.y60{bottom:166.530000px;}
.ya4{bottom:168.330000px;}
.y36{bottom:171.750000px;}
.yfc{bottom:177.330000px;}
.ye3{bottom:182.370000px;}
.ycb{bottom:185.070000px;}
.y4e{bottom:187.770000px;}
.ye2{bottom:188.310000px;}
.ya6{bottom:191.550000px;}
.yc0{bottom:196.590000px;}
.y65{bottom:200.730000px;}
.yae{bottom:204.870000px;}
.y5f{bottom:207.930000px;}
.yfb{bottom:208.470000px;}
.ya3{bottom:209.730000px;}
.y78{bottom:212.430000px;}
.y35{bottom:213.150000px;}
.ye1{bottom:222.510000px;}
.yca{bottom:226.470000px;}
.y4d{bottom:229.170000px;}
.ybf{bottom:237.990000px;}
.yfa{bottom:239.430000px;}
.y64{bottom:242.130000px;}
.yad{bottom:246.270000px;}
.y5e{bottom:249.330000px;}
.ya2{bottom:251.130000px;}
.y34{bottom:254.550000px;}
.y85{bottom:254.565000px;}
.y6c{bottom:254.730000px;}
.y79{bottom:255.450000px;}
.yc9{bottom:267.870000px;}
.y4c{bottom:270.570000px;}
.ybe{bottom:279.390000px;}
.y63{bottom:283.530000px;}
.yac{bottom:287.670000px;}
.y5d{bottom:290.730000px;}
.ya1{bottom:292.530000px;}
.y33{bottom:295.950000px;}
.yf9{bottom:301.530000px;}
.yc8{bottom:309.270000px;}
.y4b{bottom:311.970000px;}
.ybd{bottom:320.790000px;}
.y62{bottom:324.930000px;}
.yab{bottom:326.910000px;}
.y5c{bottom:332.130000px;}
.yf8{bottom:332.670000px;}
.ya0{bottom:333.930000px;}
.y32{bottom:337.350000px;}
.ye0{bottom:344.370000px;}
.yc7{bottom:350.490000px;}
.y4a{bottom:353.370000px;}
.y74{bottom:359.670000px;}
.ybc{bottom:362.190000px;}
.yf7{bottom:363.630000px;}
.yaa{bottom:364.890000px;}
.y5b{bottom:373.530000px;}
.y9f{bottom:375.330000px;}
.y31{bottom:380.010000px;}
.yc6{bottom:391.935000px;}
.y49{bottom:394.815000px;}
.ya9{bottom:402.915000px;}
.ybb{bottom:403.635000px;}
.ydf{bottom:406.515000px;}
.y6b{bottom:407.595000px;}
.y5a{bottom:414.975000px;}
.y9e{bottom:416.775000px;}
.y83{bottom:420.735000px;}
.y30{bottom:422.895000px;}
.yf6{bottom:425.775000px;}
.yc5{bottom:433.335000px;}
.y48{bottom:436.035000px;}
.yde{bottom:437.475000px;}
.ya8{bottom:440.895000px;}
.yba{bottom:445.035000px;}
.y59{bottom:456.375000px;}
.yf5{bottom:456.735000px;}
.y9d{bottom:458.175000px;}
.y82{bottom:462.135000px;}
.y2f{bottom:464.295000px;}
.ydd{bottom:468.435000px;}
.yc4{bottom:474.735000px;}
.y47{bottom:477.435000px;}
.ya7{bottom:478.695000px;}
.y106{bottom:484.275000px;}
.yb9{bottom:486.435000px;}
.yf4{bottom:487.875000px;}
.y58{bottom:497.775000px;}
.y9c{bottom:499.575000px;}
.y81{bottom:503.535000px;}
.y1e{bottom:504.975000px;}
.y2e{bottom:505.695000px;}
.y71{bottom:511.815000px;}
.yc3{bottom:516.135000px;}
.y46{bottom:518.835000px;}
.yb8{bottom:527.835000px;}
.y1d{bottom:528.555000px;}
.ydc{bottom:530.535000px;}
.y105{bottom:534.675000px;}
.y57{bottom:539.175000px;}
.y9b{bottom:540.975000px;}
.y80{bottom:544.935000px;}
.y2d{bottom:547.095000px;}
.y1c{bottom:549.255000px;}
.yf3{bottom:549.975000px;}
.yc2{bottom:558.795000px;}
.y45{bottom:560.235000px;}
.ydb{bottom:561.675000px;}
.yb7{bottom:569.235000px;}
.y1b{bottom:569.955000px;}
.y6e{bottom:574.815000px;}
.y104{bottom:576.075000px;}
.y56{bottom:580.575000px;}
.yf2{bottom:580.935000px;}
.y9a{bottom:582.375000px;}
.y7f{bottom:586.335000px;}
.y2c{bottom:588.495000px;}
.y1a{bottom:590.655000px;}
.yda{bottom:592.635000px;}
.y44{bottom:601.635000px;}
.yb6{bottom:610.635000px;}
.y19{bottom:611.355000px;}
.yf1{bottom:612.075000px;}
.y103{bottom:617.475000px;}
.y55{bottom:621.975000px;}
.y99{bottom:623.775000px;}
.y7e{bottom:627.735000px;}
.y2b{bottom:629.895000px;}
.y18{bottom:632.055000px;}
.y43{bottom:643.065000px;}
.yb5{bottom:652.065000px;}
.y17{bottom:652.785000px;}
.yd9{bottom:654.765000px;}
.y6d{bottom:658.365000px;}
.y102{bottom:658.905000px;}
.y54{bottom:663.405000px;}
.y98{bottom:665.205000px;}
.y7d{bottom:669.165000px;}
.y16{bottom:673.485000px;}
.yf0{bottom:674.205000px;}
.y2a{bottom:677.625000px;}
.y6a{bottom:679.785000px;}
.y4{bottom:681.300000px;}
.y42{bottom:684.465000px;}
.yd8{bottom:685.905000px;}
.yb4{bottom:693.465000px;}
.y15{bottom:694.185000px;}
.y101{bottom:700.305000px;}
.y67{bottom:701.205000px;}
.y53{bottom:704.805000px;}
.yef{bottom:705.165000px;}
.y29{bottom:706.065000px;}
.y97{bottom:706.605000px;}
.y7c{bottom:710.565000px;}
.y3{bottom:714.420000px;}
.y14{bottom:715.425000px;}
.yd7{bottom:716.865000px;}
.y41{bottom:725.865000px;}
.yb3{bottom:734.865000px;}
.yee{bottom:736.305000px;}
.y100{bottom:741.705000px;}
.y52{bottom:746.205000px;}
.y96{bottom:748.005000px;}
.y13{bottom:749.265000px;}
.y7b{bottom:751.965000px;}
.y28{bottom:757.185000px;}
.y40{bottom:767.265000px;}
.y8c{bottom:769.425000px;}
.yb2{bottom:776.265000px;}
.yd6{bottom:778.965000px;}
.y12{bottom:780.405000px;}
.yff{bottom:783.105000px;}
.y95{bottom:785.265000px;}
.y27{bottom:785.625000px;}
.y51{bottom:787.605000px;}
.yed{bottom:798.405000px;}
.y3f{bottom:808.665000px;}
.yd5{bottom:810.105000px;}
.y11{bottom:811.365000px;}
.y26{bottom:814.065000px;}
.y2{bottom:817.560000px;}
.yb1{bottom:817.665000px;}
.y92{bottom:820.905000px;}
.yfe{bottom:824.505000px;}
.y50{bottom:829.005000px;}
.yec{bottom:829.365000px;}
.yd4{bottom:841.065000px;}
.y8e{bottom:842.325000px;}
.y10{bottom:842.505000px;}
.y3e{bottom:850.065000px;}
.yeb{bottom:860.505000px;}
.yfd{bottom:865.905000px;}
.y25{bottom:870.945000px;}
.yd3{bottom:872.205000px;}
.yf{bottom:873.465000px;}
.y84{bottom:884.625000px;}
.y1{bottom:886.140000px;}
.y3d{bottom:891.465000px;}
.y24{bottom:899.430000px;}
.yd2{bottom:903.210000px;}
.ye{bottom:904.650000px;}
.yea{bottom:922.650000px;}
.y23{bottom:927.870000px;}
.y3c{bottom:932.910000px;}
.yd1{bottom:934.350000px;}
.yd{bottom:937.950000px;}
.ye9{bottom:953.610000px;}
.y22{bottom:956.310000px;}
.yd0{bottom:965.310000px;}
.yc{bottom:974.130000px;}
.y3b{bottom:974.310000px;}
.y21{bottom:984.750000px;}
.y87{bottom:988.890000px;}
.ycf{bottom:996.450000px;}
.yb{bottom:1010.310000px;}
.y20{bottom:1013.370000px;}
.y3a{bottom:1015.710000px;}
.yce{bottom:1027.410000px;}
.y1f{bottom:1041.810000px;}
.ya{bottom:1046.670000px;}
.ye8{bottom:1046.850000px;}
.y39{bottom:1057.110000px;}
.ycd{bottom:1058.550000px;}
.ye7{bottom:1077.810000px;}
.ycc{bottom:1089.510000px;}
.y38{bottom:1098.510000px;}
.y9{bottom:1100.850000px;}
.ye6{bottom:1108.950000px;}
.y86{bottom:1114.530000px;}
.y8{bottom:1137.030000px;}
.y37{bottom:1139.910000px;}
.y5{bottom:1193.220000px;}
.hc{height:20.700000px;}
.h19{height:40.985156px;}
.hb{height:41.400000px;}
.h14{height:41.436000px;}
.h11{height:47.916000px;}
.h17{height:50.760000px;}
.h3{height:51.679688px;}
.hf{height:62.100000px;}
.h18{height:64.546875px;}
.ha{height:65.010937px;}
.h8{height:70.628906px;}
.h5{height:70.664062px;}
.h9{height:72.562500px;}
.h2{height:75.093750px;}
.he{height:82.656000px;}
.h7{height:82.676953px;}
.h6{height:84.898125px;}
.h10{height:103.500000px;}
.h15{height:103.536000px;}
.h16{height:114.300000px;}
.h12{height:229.170000px;}
.h13{height:271.335000px;}
.hd{height:271.470000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.h4{height:1263.060000px;}
.w7{width:142.740000px;}
.w6{width:144.216000px;}
.w8{width:353.445000px;}
.w5{width:638.970000px;}
.w3{width:892.500000px;}
.w9{width:892.619973px;}
.w4{width:892.619987px;}
.w2{width:892.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x3{left:127.620000px;}
.xf{left:132.875987px;}
.x1{left:157.680000px;}
.x5{left:181.649987px;}
.xc{left:211.529973px;}
.xd{left:220.529987px;}
.x8{left:271.875000px;}
.x2{left:277.740000px;}
.xe{left:343.694987px;}
.x9{left:414.615000px;}
.x6{left:437.324987px;}
.x4{left:441.824987px;}
.xb{left:728.429987px;}
.xa{left:785.699987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-2.752000pt;}
.ls12{letter-spacing:-0.832000pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls13{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.368533pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.232960pt;}
.ls2{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.271467pt;}
.ls8{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.640000pt;}
.ls7{letter-spacing:752.138667pt;}
.wse{word-spacing:-64.000000pt;}
.ws0{word-spacing:-17.920000pt;}
.ws15{word-spacing:-16.640000pt;}
.ws12{word-spacing:-16.448000pt;}
.ws19{word-spacing:-16.192000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws11{word-spacing:-16.064000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.936000pt;}
.ws13{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.744000pt;}
.ws17{word-spacing:-15.616000pt;}
.ws18{word-spacing:-15.360000pt;}
.ws16{word-spacing:-15.168000pt;}
.wsa{word-spacing:-14.991467pt;}
.wsb{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.656000pt;}
.wsc{word-spacing:-14.351467pt;}
.ws3{word-spacing:-0.128000pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:0.128000pt;}
.ws8{word-spacing:0.192000pt;}
.ws7{word-spacing:0.576000pt;}
.ws5{word-spacing:11.712000pt;}
.ws6{word-spacing:11.968000pt;}
._0{margin-left:-1.024000pt;}
._1{width:0.902400pt;}
._3{width:2.560000pt;}
._2{width:3.598933pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:3.520000pt;}
.y76{bottom:9.280000pt;}
.y94{bottom:11.840000pt;}
.y68{bottom:21.920000pt;}
.y8b{bottom:21.960000pt;}
.y91{bottom:26.720000pt;}
.y75{bottom:27.720000pt;}
.y93{bottom:30.240000pt;}
.y70{bottom:40.320000pt;}
.y8a{bottom:40.360000pt;}
.y90{bottom:45.120000pt;}
.y7{bottom:50.720000pt;}
.y6f{bottom:58.586667pt;}
.y73{bottom:58.720000pt;}
.y89{bottom:58.760000pt;}
.y8f{bottom:63.520000pt;}
.y6{bottom:69.120000pt;}
.y72{bottom:77.120000pt;}
.y88{bottom:77.160000pt;}
.y8d{bottom:86.720000pt;}
.yb0{bottom:108.480000pt;}
.y61{bottom:111.200000pt;}
.ye5{bottom:111.520000pt;}
.ya5{bottom:112.800000pt;}
.y77{bottom:115.360000pt;}
.y4f{bottom:130.112000pt;}
.y7a{bottom:134.426667pt;}
.ye4{bottom:136.826667pt;}
.yc1{bottom:137.946667pt;}
.y66{bottom:141.626667pt;}
.yaf{bottom:145.306667pt;}
.y60{bottom:148.026667pt;}
.ya4{bottom:149.626667pt;}
.y36{bottom:152.666667pt;}
.yfc{bottom:157.626667pt;}
.ye3{bottom:162.106667pt;}
.ycb{bottom:164.506667pt;}
.y4e{bottom:166.906667pt;}
.ye2{bottom:167.386667pt;}
.ya6{bottom:170.266667pt;}
.yc0{bottom:174.746667pt;}
.y65{bottom:178.426667pt;}
.yae{bottom:182.106667pt;}
.y5f{bottom:184.826667pt;}
.yfb{bottom:185.306667pt;}
.ya3{bottom:186.426667pt;}
.y78{bottom:188.826667pt;}
.y35{bottom:189.466667pt;}
.ye1{bottom:197.786667pt;}
.yca{bottom:201.306667pt;}
.y4d{bottom:203.706667pt;}
.ybf{bottom:211.546667pt;}
.yfa{bottom:212.826667pt;}
.y64{bottom:215.226667pt;}
.yad{bottom:218.906667pt;}
.y5e{bottom:221.626667pt;}
.ya2{bottom:223.226667pt;}
.y34{bottom:226.266667pt;}
.y85{bottom:226.280000pt;}
.y6c{bottom:226.426667pt;}
.y79{bottom:227.066667pt;}
.yc9{bottom:238.106667pt;}
.y4c{bottom:240.506667pt;}
.ybe{bottom:248.346667pt;}
.y63{bottom:252.026667pt;}
.yac{bottom:255.706667pt;}
.y5d{bottom:258.426667pt;}
.ya1{bottom:260.026667pt;}
.y33{bottom:263.066667pt;}
.yf9{bottom:268.026667pt;}
.yc8{bottom:274.906667pt;}
.y4b{bottom:277.306667pt;}
.ybd{bottom:285.146667pt;}
.y62{bottom:288.826667pt;}
.yab{bottom:290.586667pt;}
.y5c{bottom:295.226667pt;}
.yf8{bottom:295.706667pt;}
.ya0{bottom:296.826667pt;}
.y32{bottom:299.866667pt;}
.ye0{bottom:306.106667pt;}
.yc7{bottom:311.546667pt;}
.y4a{bottom:314.106667pt;}
.y74{bottom:319.706667pt;}
.ybc{bottom:321.946667pt;}
.yf7{bottom:323.226667pt;}
.yaa{bottom:324.346667pt;}
.y5b{bottom:332.026667pt;}
.y9f{bottom:333.626667pt;}
.y31{bottom:337.786667pt;}
.yc6{bottom:348.386667pt;}
.y49{bottom:350.946667pt;}
.ya9{bottom:358.146667pt;}
.ybb{bottom:358.786667pt;}
.ydf{bottom:361.346667pt;}
.y6b{bottom:362.306667pt;}
.y5a{bottom:368.866667pt;}
.y9e{bottom:370.466667pt;}
.y83{bottom:373.986667pt;}
.y30{bottom:375.906667pt;}
.yf6{bottom:378.466667pt;}
.yc5{bottom:385.186667pt;}
.y48{bottom:387.586667pt;}
.yde{bottom:388.866667pt;}
.ya8{bottom:391.906667pt;}
.yba{bottom:395.586667pt;}
.y59{bottom:405.666667pt;}
.yf5{bottom:405.986667pt;}
.y9d{bottom:407.266667pt;}
.y82{bottom:410.786667pt;}
.y2f{bottom:412.706667pt;}
.ydd{bottom:416.386667pt;}
.yc4{bottom:421.986667pt;}
.y47{bottom:424.386667pt;}
.ya7{bottom:425.506667pt;}
.y106{bottom:430.466667pt;}
.yb9{bottom:432.386667pt;}
.yf4{bottom:433.666667pt;}
.y58{bottom:442.466667pt;}
.y9c{bottom:444.066667pt;}
.y81{bottom:447.586667pt;}
.y1e{bottom:448.866667pt;}
.y2e{bottom:449.506667pt;}
.y71{bottom:454.946667pt;}
.yc3{bottom:458.786667pt;}
.y46{bottom:461.186667pt;}
.yb8{bottom:469.186667pt;}
.y1d{bottom:469.826667pt;}
.ydc{bottom:471.586667pt;}
.y105{bottom:475.266667pt;}
.y57{bottom:479.266667pt;}
.y9b{bottom:480.866667pt;}
.y80{bottom:484.386667pt;}
.y2d{bottom:486.306667pt;}
.y1c{bottom:488.226667pt;}
.yf3{bottom:488.866667pt;}
.yc2{bottom:496.706667pt;}
.y45{bottom:497.986667pt;}
.ydb{bottom:499.266667pt;}
.yb7{bottom:505.986667pt;}
.y1b{bottom:506.626667pt;}
.y6e{bottom:510.946667pt;}
.y104{bottom:512.066667pt;}
.y56{bottom:516.066667pt;}
.yf2{bottom:516.386667pt;}
.y9a{bottom:517.666667pt;}
.y7f{bottom:521.186667pt;}
.y2c{bottom:523.106667pt;}
.y1a{bottom:525.026667pt;}
.yda{bottom:526.786667pt;}
.y44{bottom:534.786667pt;}
.yb6{bottom:542.786667pt;}
.y19{bottom:543.426667pt;}
.yf1{bottom:544.066667pt;}
.y103{bottom:548.866667pt;}
.y55{bottom:552.866667pt;}
.y99{bottom:554.466667pt;}
.y7e{bottom:557.986667pt;}
.y2b{bottom:559.906667pt;}
.y18{bottom:561.826667pt;}
.y43{bottom:571.613333pt;}
.yb5{bottom:579.613333pt;}
.y17{bottom:580.253333pt;}
.yd9{bottom:582.013333pt;}
.y6d{bottom:585.213333pt;}
.y102{bottom:585.693333pt;}
.y54{bottom:589.693333pt;}
.y98{bottom:591.293333pt;}
.y7d{bottom:594.813333pt;}
.y16{bottom:598.653333pt;}
.yf0{bottom:599.293333pt;}
.y2a{bottom:602.333333pt;}
.y6a{bottom:604.253333pt;}
.y4{bottom:605.600000pt;}
.y42{bottom:608.413333pt;}
.yd8{bottom:609.693333pt;}
.yb4{bottom:616.413333pt;}
.y15{bottom:617.053333pt;}
.y101{bottom:622.493333pt;}
.y67{bottom:623.293333pt;}
.y53{bottom:626.493333pt;}
.yef{bottom:626.813333pt;}
.y29{bottom:627.613333pt;}
.y97{bottom:628.093333pt;}
.y7c{bottom:631.613333pt;}
.y3{bottom:635.040000pt;}
.y14{bottom:635.933333pt;}
.yd7{bottom:637.213333pt;}
.y41{bottom:645.213333pt;}
.yb3{bottom:653.213333pt;}
.yee{bottom:654.493333pt;}
.y100{bottom:659.293333pt;}
.y52{bottom:663.293333pt;}
.y96{bottom:664.893333pt;}
.y13{bottom:666.013333pt;}
.y7b{bottom:668.413333pt;}
.y28{bottom:673.053333pt;}
.y40{bottom:682.013333pt;}
.y8c{bottom:683.933333pt;}
.yb2{bottom:690.013333pt;}
.yd6{bottom:692.413333pt;}
.y12{bottom:693.693333pt;}
.yff{bottom:696.093333pt;}
.y95{bottom:698.013333pt;}
.y27{bottom:698.333333pt;}
.y51{bottom:700.093333pt;}
.yed{bottom:709.693333pt;}
.y3f{bottom:718.813333pt;}
.yd5{bottom:720.093333pt;}
.y11{bottom:721.213333pt;}
.y26{bottom:723.613333pt;}
.y2{bottom:726.720000pt;}
.yb1{bottom:726.813333pt;}
.y92{bottom:729.693333pt;}
.yfe{bottom:732.893333pt;}
.y50{bottom:736.893333pt;}
.yec{bottom:737.213333pt;}
.yd4{bottom:747.613333pt;}
.y8e{bottom:748.733333pt;}
.y10{bottom:748.893333pt;}
.y3e{bottom:755.613333pt;}
.yeb{bottom:764.893333pt;}
.yfd{bottom:769.693333pt;}
.y25{bottom:774.173333pt;}
.yd3{bottom:775.293333pt;}
.yf{bottom:776.413333pt;}
.y84{bottom:786.333333pt;}
.y1{bottom:787.680000pt;}
.y3d{bottom:792.413333pt;}
.y24{bottom:799.493333pt;}
.yd2{bottom:802.853333pt;}
.ye{bottom:804.133333pt;}
.yea{bottom:820.133333pt;}
.y23{bottom:824.773333pt;}
.y3c{bottom:829.253333pt;}
.yd1{bottom:830.533333pt;}
.yd{bottom:833.733333pt;}
.ye9{bottom:847.653333pt;}
.y22{bottom:850.053333pt;}
.yd0{bottom:858.053333pt;}
.yc{bottom:865.893333pt;}
.y3b{bottom:866.053333pt;}
.y21{bottom:875.333333pt;}
.y87{bottom:879.013333pt;}
.ycf{bottom:885.733333pt;}
.yb{bottom:898.053333pt;}
.y20{bottom:900.773333pt;}
.y3a{bottom:902.853333pt;}
.yce{bottom:913.253333pt;}
.y1f{bottom:926.053333pt;}
.ya{bottom:930.373333pt;}
.ye8{bottom:930.533333pt;}
.y39{bottom:939.653333pt;}
.ycd{bottom:940.933333pt;}
.ye7{bottom:958.053333pt;}
.ycc{bottom:968.453333pt;}
.y38{bottom:976.453333pt;}
.y9{bottom:978.533333pt;}
.ye6{bottom:985.733333pt;}
.y86{bottom:990.693333pt;}
.y8{bottom:1010.693333pt;}
.y37{bottom:1013.253333pt;}
.y5{bottom:1060.640000pt;}
.hc{height:18.400000pt;}
.h19{height:36.431250pt;}
.hb{height:36.800000pt;}
.h14{height:36.832000pt;}
.h11{height:42.592000pt;}
.h17{height:45.120000pt;}
.h3{height:45.937500pt;}
.hf{height:55.200000pt;}
.h18{height:57.375000pt;}
.ha{height:57.787500pt;}
.h8{height:62.781250pt;}
.h5{height:62.812500pt;}
.h9{height:64.500000pt;}
.h2{height:66.750000pt;}
.he{height:73.472000pt;}
.h7{height:73.490625pt;}
.h6{height:75.465000pt;}
.h10{height:92.000000pt;}
.h15{height:92.032000pt;}
.h16{height:101.600000pt;}
.h12{height:203.706667pt;}
.h13{height:241.186667pt;}
.hd{height:241.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h4{height:1122.720000pt;}
.w7{width:126.880000pt;}
.w6{width:128.192000pt;}
.w8{width:314.173333pt;}
.w5{width:567.973333pt;}
.w3{width:793.333333pt;}
.w9{width:793.439976pt;}
.w4{width:793.439988pt;}
.w2{width:793.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x3{left:113.440000pt;}
.xf{left:118.111988pt;}
.x1{left:140.160000pt;}
.x5{left:161.466655pt;}
.xc{left:188.026643pt;}
.xd{left:196.026655pt;}
.x8{left:241.666667pt;}
.x2{left:246.880000pt;}
.xe{left:305.506655pt;}
.x9{left:368.546667pt;}
.x6{left:388.733322pt;}
.x4{left:392.733322pt;}
.xb{left:647.493322pt;}
.xa{left:698.399988pt;}
}

