
    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_8aa9f7473ad8a51b9c22ec4e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3969e3507d318a76da0b6137.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_87d79e3d90b774a4e29f042b.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b1f72af568f29b7f50db3332.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8ddfe2f3a89a4a352154f340.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_c7674e93f67250b25636c4a0.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_6b3a23a9c9279ae2c647111c.woff')format("woff");}.ff7{font-family:ff7;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);}
.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;}
.v1{vertical-align:27.360000px;}
.lsd{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.360000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.194400px;}
.ls0{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.439920px;}
.lsc{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.900000px;}
.lsb{letter-spacing:11.700000px;}
.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;}
}
.ws9{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws8{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.220000px;}
.ws0{word-spacing:-13.680000px;}
.ws2{word-spacing:-13.500000px;}
.ws1{word-spacing:-13.140000px;}
.ws6{word-spacing:0.000000px;}
._1c{margin-left:-4.575120px;}
._18{margin-left:-3.548400px;}
._b{margin-left:-2.362800px;}
._1{margin-left:-1.008000px;}
._0{width:1.164000px;}
._a{width:2.479200px;}
._17{width:3.498480px;}
._13{width:4.601520px;}
._5{width:5.947440px;}
._6{width:7.290720px;}
._7{width:8.654640px;}
._4{width:9.831840px;}
._16{width:10.924560px;}
._e{width:12.310560px;}
._d{width:13.685040px;}
._21{width:14.754960px;}
._c{width:15.958560px;}
._f{width:17.301840px;}
._10{width:18.429360px;}
._1a{width:19.959840px;}
._2a{width:21.106080px;}
._19{width:22.111200px;}
._1b{width:23.158320px;}
._1e{width:24.217680px;}
._1d{width:25.344000px;}
._11{width:26.385360px;}
._12{width:27.455760px;}
._8{width:29.433120px;}
._9{width:30.623040px;}
._14{width:32.265600px;}
._15{width:33.308160px;}
._1f{width:34.366080px;}
._24{width:35.928000px;}
._2c{width:36.948000px;}
._2b{width:38.076000px;}
._26{width:39.489120px;}
._3{width:40.879440px;}
._2{width:41.947920px;}
._23{width:43.049760px;}
._25{width:44.646240px;}
._29{width:50.616000px;}
._22{width:51.840000px;}
._36{width:57.024000px;}
._37{width:58.176000px;}
._2f{width:63.144000px;}
._27{width:67.320000px;}
._28{width:68.472000px;}
._39{width:72.720000px;}
._31{width:74.952000px;}
._32{width:75.972000px;}
._2d{width:78.624000px;}
._2e{width:79.680000px;}
._33{width:120.288000px;}
._34{width:121.536000px;}
._35{width:123.132000px;}
._38{width:143.640000px;}
._20{width:170.100000px;}
._30{width:211.608000px;}
._3a{width:369.576000px;}
._3b{width:849.216000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs5{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:3.240000px;}
.y99{bottom:24.690000px;}
.y9b{bottom:24.876000px;}
.y9a{bottom:38.880000px;}
.y3{bottom:55.836000px;}
.y2b{bottom:56.196000px;}
.y28{bottom:109.476000px;}
.y52{bottom:117.036000px;}
.y63{bottom:118.836000px;}
.y27{bottom:126.576000px;}
.y5e{bottom:128.016000px;}
.y60{bottom:131.796000px;}
.y51{bottom:134.316000px;}
.y8d{bottom:136.296000px;}
.y62{bottom:142.596000px;}
.y26{bottom:143.856000px;}
.y7c{bottom:145.656000px;}
.y5d{bottom:148.716000px;}
.y25{bottom:149.076000px;}
.y95{bottom:150.870000px;}
.y50{bottom:151.590000px;}
.y8c{bottom:160.230000px;}
.y24{bottom:161.130000px;}
.y61{bottom:166.350000px;}
.y4f{bottom:168.690000px;}
.y5c{bottom:169.410000px;}
.y94{bottom:174.630000px;}
.y23{bottom:182.550000px;}
.y8b{bottom:183.990000px;}
.y4e{bottom:185.970000px;}
.y5b{bottom:190.110000px;}
.y7b{bottom:193.350000px;}
.y93{bottom:198.390000px;}
.y22{bottom:199.830000px;}
.y4d{bottom:203.250000px;}
.y8a{bottom:207.750000px;}
.y5a{bottom:210.810000px;}
.y21{bottom:217.110000px;}
.y4c{bottom:220.530000px;}
.y92{bottom:222.330000px;}
.y59{bottom:231.510000px;}
.y20{bottom:234.435000px;}
.y4b{bottom:237.855000px;}
.y7a{bottom:240.915000px;}
.y91{bottom:246.135000px;}
.y1f{bottom:251.535000px;}
.y58{bottom:252.255000px;}
.y4a{bottom:255.135000px;}
.y89{bottom:255.495000px;}
.y79{bottom:264.675000px;}
.y1e{bottom:268.815000px;}
.y90{bottom:269.895000px;}
.y49{bottom:272.235000px;}
.y57{bottom:272.955000px;}
.y88{bottom:279.255000px;}
.y78{bottom:285.375000px;}
.y1d{bottom:286.095000px;}
.y48{bottom:289.515000px;}
.y56{bottom:293.655000px;}
.y87{bottom:303.015000px;}
.y1c{bottom:303.375000px;}
.y77{bottom:306.075000px;}
.y47{bottom:306.795000px;}
.y55{bottom:314.355000px;}
.y8f{bottom:317.595000px;}
.y1b{bottom:321.375000px;}
.y46{bottom:324.075000px;}
.y76{bottom:326.775000px;}
.y54{bottom:335.055000px;}
.y1a{bottom:341.355000px;}
.y75{bottom:347.475000px;}
.y86{bottom:350.715000px;}
.y53{bottom:355.755000px;}
.y19{bottom:358.635000px;}
.y8e{bottom:365.115000px;}
.y74{bottom:368.175000px;}
.y85{bottom:374.475000px;}
.y45{bottom:375.735000px;}
.y18{bottom:376.455000px;}
.y73{bottom:388.875000px;}
.y44{bottom:393.015000px;}
.y17{bottom:397.155000px;}
.y84{bottom:398.235000px;}
.y43{bottom:410.295000px;}
.y72{bottom:412.815000px;}
.y16{bottom:417.855000px;}
.y83{bottom:422.025000px;}
.y42{bottom:427.605000px;}
.y71{bottom:436.605000px;}
.y15{bottom:438.585000px;}
.y41{bottom:444.885000px;}
.y82{bottom:445.965000px;}
.y14{bottom:459.285000px;}
.y70{bottom:460.365000px;}
.y40{bottom:461.985000px;}
.y81{bottom:469.725000px;}
.y3f{bottom:479.265000px;}
.y13{bottom:479.985000px;}
.y6f{bottom:484.125000px;}
.y97{bottom:490.065000px;}
.y80{bottom:493.485000px;}
.y3e{bottom:496.545000px;}
.y12{bottom:500.685000px;}
.y96{bottom:507.885000px;}
.y6e{bottom:508.065000px;}
.y3d{bottom:513.825000px;}
.y7f{bottom:517.245000px;}
.y11{bottom:521.385000px;}
.y3c{bottom:531.105000px;}
.y6d{bottom:531.825000px;}
.y7e{bottom:537.945000px;}
.y10{bottom:542.085000px;}
.y3b{bottom:548.385000px;}
.y6c{bottom:555.585000px;}
.y7d{bottom:558.645000px;}
.yf{bottom:562.785000px;}
.y3a{bottom:565.485000px;}
.y6b{bottom:579.345000px;}
.y39{bottom:582.765000px;}
.ye{bottom:583.485000px;}
.y38{bottom:600.045000px;}
.y6a{bottom:603.105000px;}
.yd{bottom:604.185000px;}
.y37{bottom:617.370000px;}
.yc{bottom:624.930000px;}
.y69{bottom:627.090000px;}
.y36{bottom:634.650000px;}
.yb{bottom:645.630000px;}
.y68{bottom:650.850000px;}
.y35{bottom:651.930000px;}
.ya{bottom:666.330000px;}
.y34{bottom:669.030000px;}
.y67{bottom:674.610000px;}
.y33{bottom:686.310000px;}
.y9{bottom:687.030000px;}
.y66{bottom:698.370000px;}
.y32{bottom:703.590000px;}
.y8{bottom:707.730000px;}
.y31{bottom:720.870000px;}
.y65{bottom:722.310000px;}
.y7{bottom:728.430000px;}
.y30{bottom:738.150000px;}
.y64{bottom:746.070000px;}
.y6{bottom:749.130000px;}
.y5f{bottom:754.350000px;}
.y2f{bottom:755.430000px;}
.y4{bottom:769.830000px;}
.y2e{bottom:772.530000px;}
.y5{bottom:775.050000px;}
.y98{bottom:794.310000px;}
.y2a{bottom:805.140000px;}
.y2{bottom:810.360000px;}
.y2c{bottom:822.420000px;}
.y29{bottom:823.140000px;}
.y1{bottom:827.280000px;}
.hc{height:17.280000px;}
.ha{height:38.158594px;}
.h11{height:38.736000px;}
.h12{height:38.916000px;}
.h6{height:39.183750px;}
.hf{height:50.800781px;}
.h2{height:52.998047px;}
.hd{height:53.573906px;}
.h3{height:58.651172px;}
.h9{height:60.226875px;}
.he{height:64.546875px;}
.h4{height:65.010937px;}
.h7{height:70.628906px;}
.h8{height:70.664062px;}
.h5{height:72.562500px;}
.h10{height:74.004654px;}
.hb{height:74.704922px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w4{width:22.500000px;}
.w6{width:526.680000px;}
.w5{width:526.860000px;}
.w1{width:629.250000px;}
.w3{width:629.459981px;}
.w2{width:629.459991px;}
.w0{width:629.460000px;}
.x0{left:0.000000px;}
.x1a{left:10.836000px;}
.x19{left:52.920000px;}
.x2{left:72.395991px;}
.x13{left:77.255991px;}
.x7{left:151.769991px;}
.x3{left:165.809991px;}
.x17{left:178.949981px;}
.x18{left:183.809991px;}
.xc{left:186.329991px;}
.x9{left:192.134991px;}
.x14{left:206.534991px;}
.x10{left:217.334991px;}
.xd{left:223.454991px;}
.xb{left:233.534991px;}
.xf{left:239.294991px;}
.xa{left:244.334991px;}
.x8{left:252.794991px;}
.xe{left:258.194991px;}
.x1{left:266.474991px;}
.x12{left:288.434991px;}
.x6{left:316.904991px;}
.x11{left:343.904991px;}
.x4{left:463.109981px;}
.x5{left:467.969991px;}
.x16{left:539.070000px;}
.x15{left:561.569991px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.172800pt;}
.ls0{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.391040pt;}
.lsc{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.800000pt;}
.lsb{letter-spacing:10.400000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.640000pt;}
.ws0{word-spacing:-12.160000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.680000pt;}
.ws6{word-spacing:0.000000pt;}
._1c{margin-left:-4.066773pt;}
._18{margin-left:-3.154133pt;}
._b{margin-left:-2.100267pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.034667pt;}
._a{width:2.203733pt;}
._17{width:3.109760pt;}
._13{width:4.090240pt;}
._5{width:5.286613pt;}
._6{width:6.480640pt;}
._7{width:7.693013pt;}
._4{width:8.739413pt;}
._16{width:9.710720pt;}
._e{width:10.942720pt;}
._d{width:12.164480pt;}
._21{width:13.115520pt;}
._c{width:14.185387pt;}
._f{width:15.379413pt;}
._10{width:16.381653pt;}
._1a{width:17.742080pt;}
._2a{width:18.760960pt;}
._19{width:19.654400pt;}
._1b{width:20.585173pt;}
._1e{width:21.526827pt;}
._1d{width:22.528000pt;}
._11{width:23.453653pt;}
._12{width:24.405120pt;}
._8{width:26.162773pt;}
._9{width:27.220480pt;}
._14{width:28.680533pt;}
._15{width:29.607253pt;}
._1f{width:30.547627pt;}
._24{width:31.936000pt;}
._2c{width:32.842667pt;}
._2b{width:33.845333pt;}
._26{width:35.101440pt;}
._3{width:36.337280pt;}
._2{width:37.287040pt;}
._23{width:38.266453pt;}
._25{width:39.685547pt;}
._29{width:44.992000pt;}
._22{width:46.080000pt;}
._36{width:50.688000pt;}
._37{width:51.712000pt;}
._2f{width:56.128000pt;}
._27{width:59.840000pt;}
._28{width:60.864000pt;}
._39{width:64.640000pt;}
._31{width:66.624000pt;}
._32{width:67.530667pt;}
._2d{width:69.888000pt;}
._2e{width:70.826667pt;}
._33{width:106.922667pt;}
._34{width:108.032000pt;}
._35{width:109.450667pt;}
._38{width:127.680000pt;}
._20{width:151.200000pt;}
._30{width:188.096000pt;}
._3a{width:328.512000pt;}
._3b{width:754.858667pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:2.880000pt;}
.y99{bottom:21.946667pt;}
.y9b{bottom:22.112000pt;}
.y9a{bottom:34.560000pt;}
.y3{bottom:49.632000pt;}
.y2b{bottom:49.952000pt;}
.y28{bottom:97.312000pt;}
.y52{bottom:104.032000pt;}
.y63{bottom:105.632000pt;}
.y27{bottom:112.512000pt;}
.y5e{bottom:113.792000pt;}
.y60{bottom:117.152000pt;}
.y51{bottom:119.392000pt;}
.y8d{bottom:121.152000pt;}
.y62{bottom:126.752000pt;}
.y26{bottom:127.872000pt;}
.y7c{bottom:129.472000pt;}
.y5d{bottom:132.192000pt;}
.y25{bottom:132.512000pt;}
.y95{bottom:134.106667pt;}
.y50{bottom:134.746667pt;}
.y8c{bottom:142.426667pt;}
.y24{bottom:143.226667pt;}
.y61{bottom:147.866667pt;}
.y4f{bottom:149.946667pt;}
.y5c{bottom:150.586667pt;}
.y94{bottom:155.226667pt;}
.y23{bottom:162.266667pt;}
.y8b{bottom:163.546667pt;}
.y4e{bottom:165.306667pt;}
.y5b{bottom:168.986667pt;}
.y7b{bottom:171.866667pt;}
.y93{bottom:176.346667pt;}
.y22{bottom:177.626667pt;}
.y4d{bottom:180.666667pt;}
.y8a{bottom:184.666667pt;}
.y5a{bottom:187.386667pt;}
.y21{bottom:192.986667pt;}
.y4c{bottom:196.026667pt;}
.y92{bottom:197.626667pt;}
.y59{bottom:205.786667pt;}
.y20{bottom:208.386667pt;}
.y4b{bottom:211.426667pt;}
.y7a{bottom:214.146667pt;}
.y91{bottom:218.786667pt;}
.y1f{bottom:223.586667pt;}
.y58{bottom:224.226667pt;}
.y4a{bottom:226.786667pt;}
.y89{bottom:227.106667pt;}
.y79{bottom:235.266667pt;}
.y1e{bottom:238.946667pt;}
.y90{bottom:239.906667pt;}
.y49{bottom:241.986667pt;}
.y57{bottom:242.626667pt;}
.y88{bottom:248.226667pt;}
.y78{bottom:253.666667pt;}
.y1d{bottom:254.306667pt;}
.y48{bottom:257.346667pt;}
.y56{bottom:261.026667pt;}
.y87{bottom:269.346667pt;}
.y1c{bottom:269.666667pt;}
.y77{bottom:272.066667pt;}
.y47{bottom:272.706667pt;}
.y55{bottom:279.426667pt;}
.y8f{bottom:282.306667pt;}
.y1b{bottom:285.666667pt;}
.y46{bottom:288.066667pt;}
.y76{bottom:290.466667pt;}
.y54{bottom:297.826667pt;}
.y1a{bottom:303.426667pt;}
.y75{bottom:308.866667pt;}
.y86{bottom:311.746667pt;}
.y53{bottom:316.226667pt;}
.y19{bottom:318.786667pt;}
.y8e{bottom:324.546667pt;}
.y74{bottom:327.266667pt;}
.y85{bottom:332.866667pt;}
.y45{bottom:333.986667pt;}
.y18{bottom:334.626667pt;}
.y73{bottom:345.666667pt;}
.y44{bottom:349.346667pt;}
.y17{bottom:353.026667pt;}
.y84{bottom:353.986667pt;}
.y43{bottom:364.706667pt;}
.y72{bottom:366.946667pt;}
.y16{bottom:371.426667pt;}
.y83{bottom:375.133333pt;}
.y42{bottom:380.093333pt;}
.y71{bottom:388.093333pt;}
.y15{bottom:389.853333pt;}
.y41{bottom:395.453333pt;}
.y82{bottom:396.413333pt;}
.y14{bottom:408.253333pt;}
.y70{bottom:409.213333pt;}
.y40{bottom:410.653333pt;}
.y81{bottom:417.533333pt;}
.y3f{bottom:426.013333pt;}
.y13{bottom:426.653333pt;}
.y6f{bottom:430.333333pt;}
.y97{bottom:435.613333pt;}
.y80{bottom:438.653333pt;}
.y3e{bottom:441.373333pt;}
.y12{bottom:445.053333pt;}
.y96{bottom:451.453333pt;}
.y6e{bottom:451.613333pt;}
.y3d{bottom:456.733333pt;}
.y7f{bottom:459.773333pt;}
.y11{bottom:463.453333pt;}
.y3c{bottom:472.093333pt;}
.y6d{bottom:472.733333pt;}
.y7e{bottom:478.173333pt;}
.y10{bottom:481.853333pt;}
.y3b{bottom:487.453333pt;}
.y6c{bottom:493.853333pt;}
.y7d{bottom:496.573333pt;}
.yf{bottom:500.253333pt;}
.y3a{bottom:502.653333pt;}
.y6b{bottom:514.973333pt;}
.y39{bottom:518.013333pt;}
.ye{bottom:518.653333pt;}
.y38{bottom:533.373333pt;}
.y6a{bottom:536.093333pt;}
.yd{bottom:537.053333pt;}
.y37{bottom:548.773333pt;}
.yc{bottom:555.493333pt;}
.y69{bottom:557.413333pt;}
.y36{bottom:564.133333pt;}
.yb{bottom:573.893333pt;}
.y68{bottom:578.533333pt;}
.y35{bottom:579.493333pt;}
.ya{bottom:592.293333pt;}
.y34{bottom:594.693333pt;}
.y67{bottom:599.653333pt;}
.y33{bottom:610.053333pt;}
.y9{bottom:610.693333pt;}
.y66{bottom:620.773333pt;}
.y32{bottom:625.413333pt;}
.y8{bottom:629.093333pt;}
.y31{bottom:640.773333pt;}
.y65{bottom:642.053333pt;}
.y7{bottom:647.493333pt;}
.y30{bottom:656.133333pt;}
.y64{bottom:663.173333pt;}
.y6{bottom:665.893333pt;}
.y5f{bottom:670.533333pt;}
.y2f{bottom:671.493333pt;}
.y4{bottom:684.293333pt;}
.y2e{bottom:686.693333pt;}
.y5{bottom:688.933333pt;}
.y98{bottom:706.053333pt;}
.y2a{bottom:715.680000pt;}
.y2{bottom:720.320000pt;}
.y2c{bottom:731.040000pt;}
.y29{bottom:731.680000pt;}
.y1{bottom:735.360000pt;}
.hc{height:15.360000pt;}
.ha{height:33.918750pt;}
.h11{height:34.432000pt;}
.h12{height:34.592000pt;}
.h6{height:34.830000pt;}
.hf{height:45.156250pt;}
.h2{height:47.109375pt;}
.hd{height:47.621250pt;}
.h3{height:52.134375pt;}
.h9{height:53.535000pt;}
.he{height:57.375000pt;}
.h4{height:57.787500pt;}
.h7{height:62.781250pt;}
.h8{height:62.812500pt;}
.h5{height:64.500000pt;}
.h10{height:65.781915pt;}
.hb{height:66.404375pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w4{width:20.000000pt;}
.w6{width:468.160000pt;}
.w5{width:468.320000pt;}
.w1{width:559.333333pt;}
.w3{width:559.519983pt;}
.w2{width:559.519992pt;}
.w0{width:559.520000pt;}
.x0{left:0.000000pt;}
.x1a{left:9.632000pt;}
.x19{left:47.040000pt;}
.x2{left:64.351992pt;}
.x13{left:68.671992pt;}
.x7{left:134.906658pt;}
.x3{left:147.386658pt;}
.x17{left:159.066650pt;}
.x18{left:163.386658pt;}
.xc{left:165.626658pt;}
.x9{left:170.786658pt;}
.x14{left:183.586658pt;}
.x10{left:193.186658pt;}
.xd{left:198.626658pt;}
.xb{left:207.586658pt;}
.xf{left:212.706658pt;}
.xa{left:217.186658pt;}
.x8{left:224.706658pt;}
.xe{left:229.506658pt;}
.x1{left:236.866658pt;}
.x12{left:256.386658pt;}
.x6{left:281.693325pt;}
.x11{left:305.693325pt;}
.x4{left:411.653317pt;}
.x5{left:415.973325pt;}
.x16{left:479.173333pt;}
.x15{left:499.173325pt;}
}

