
    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_cb3cedd676abd52b3cbd3082.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_65f31201037a5358d641159c.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0a3cc93fe835e174cbe9b94c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.330078;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_3b828d35f7e53568f12a93ff.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_edcf8d3ba116031f97868b94.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fde45d5acddba21ee076628d.woff')format("woff");}.ff6{font-family:ff6;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;}
.m0{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v4{vertical-align:-69.120000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v5{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012000px;}
.lsa{letter-spacing:0.118560px;}
.lsc{letter-spacing:0.163162px;}
.ls7{letter-spacing:0.192000px;}
.lsb{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.295920px;}
.ls1{letter-spacing:0.297204px;}
.ls3{letter-spacing:0.358464px;}
.ls4{letter-spacing:0.358560px;}
.ls8{letter-spacing:0.360000px;}
.ls5{letter-spacing:6.438720px;}
.ls6{letter-spacing:53.502000px;}
.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:-15.298560px;}
.ws2{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.500000px;}
.ws4{word-spacing:-9.000000px;}
.ws1{word-spacing:0.000000px;}
._19{margin-left:-230.760000px;}
._18{margin-left:-12.582000px;}
._0{margin-left:-1.347840px;}
._1{width:1.314720px;}
._3{width:2.573280px;}
._4{width:3.599280px;}
._8{width:5.076000px;}
._7{width:6.750000px;}
._2{width:8.592000px;}
._10{width:9.740880px;}
._9{width:10.800000px;}
._a{width:11.958480px;}
._d{width:13.326480px;}
._6{width:15.312960px;}
._5{width:16.848000px;}
._14{width:18.295200px;}
._12{width:20.019600px;}
._11{width:21.573360px;}
._c{width:22.768560px;}
._b{width:24.023520px;}
._13{width:25.637040px;}
._15{width:26.652960px;}
._17{width:37.681920px;}
._16{width:38.724480px;}
._e{width:40.098960px;}
._f{width:41.174640px;}
.fc1{color:rgb(180,180,180);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:24.000000px;}
.fs5{font-size:33.120000px;}
.fs2{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs7{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs6{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y28{bottom:2.590500px;}
.ye1{bottom:7.500000px;}
.y29{bottom:42.000000px;}
.y26{bottom:229.619850px;}
.y54{bottom:240.059850px;}
.y25{bottom:246.899850px;}
.y69{bottom:251.759550px;}
.ya4{bottom:257.159850px;}
.y8b{bottom:257.339700px;}
.y53{bottom:257.339850px;}
.yd2{bottom:259.859850px;}
.y24{bottom:264.179850px;}
.y68{bottom:269.039550px;}
.ya3{bottom:274.439850px;}
.y8a{bottom:274.619700px;}
.y52{bottom:274.619850px;}
.yd1{bottom:275.519850px;}
.y23{bottom:281.459850px;}
.yd0{bottom:290.999850px;}
.ya2{bottom:291.719850px;}
.y89{bottom:291.899700px;}
.y51{bottom:291.899850px;}
.ya8{bottom:294.599850px;}
.y22{bottom:298.739850px;}
.y67{bottom:303.599550px;}
.ycf{bottom:306.479850px;}
.y88{bottom:308.999700px;}
.y8f{bottom:308.999850px;}
.y50{bottom:309.179850px;}
.ya7{bottom:310.619850px;}
.y21{bottom:315.839850px;}
.y66{bottom:320.879550px;}
.yce{bottom:321.959850px;}
.ya6{bottom:324.479850px;}
.ya1{bottom:326.099850px;}
.y87{bottom:326.279700px;}
.y4f{bottom:326.279850px;}
.y20{bottom:333.119850px;}
.ycd{bottom:337.619850px;}
.y65{bottom:337.979550px;}
.ya0{bottom:343.379850px;}
.y86{bottom:343.559700px;}
.y4e{bottom:343.559850px;}
.y1f{bottom:350.399850px;}
.y6b{bottom:351.299850px;}
.ycc{bottom:353.099850px;}
.y64{bottom:355.259550px;}
.y9f{bottom:360.659850px;}
.y85{bottom:360.839700px;}
.y4d{bottom:360.839850px;}
.y6a{bottom:364.079850px;}
.y1e{bottom:367.679850px;}
.ycb{bottom:368.579850px;}
.y63{bottom:372.539550px;}
.y9e{bottom:377.939850px;}
.y84{bottom:378.119700px;}
.y4c{bottom:378.119850px;}
.yca{bottom:384.059700px;}
.y1d{bottom:384.959850px;}
.y62{bottom:389.819550px;}
.y9d{bottom:395.219850px;}
.y83{bottom:395.399700px;}
.y4b{bottom:395.399850px;}
.yc9{bottom:399.719700px;}
.y1c{bottom:402.059850px;}
.y61{bottom:407.099550px;}
.y9c{bottom:412.319550px;}
.y8e{bottom:412.499550px;}
.y82{bottom:412.499700px;}
.y4a{bottom:412.499850px;}
.yc8{bottom:415.199700px;}
.y1b{bottom:419.339850px;}
.y60{bottom:424.199550px;}
.y9b{bottom:429.599550px;}
.y8d{bottom:429.779550px;}
.y81{bottom:429.779700px;}
.y49{bottom:429.779850px;}
.yc7{bottom:430.679700px;}
.y1a{bottom:436.619850px;}
.y5f{bottom:441.479550px;}
.yc6{bottom:446.159700px;}
.y80{bottom:447.059700px;}
.y48{bottom:447.059850px;}
.y19{bottom:453.899850px;}
.y5e{bottom:458.759550px;}
.yc5{bottom:461.639700px;}
.y7f{bottom:464.339700px;}
.y47{bottom:464.339850px;}
.y9a{bottom:468.659550px;}
.y8c{bottom:468.839550px;}
.y18{bottom:471.179850px;}
.y5d{bottom:476.039550px;}
.yc4{bottom:477.299700px;}
.y7e{bottom:481.619700px;}
.y46{bottom:481.619850px;}
.y17{bottom:488.459850px;}
.yc3{bottom:492.779700px;}
.y5c{bottom:493.319550px;}
.y45{bottom:498.899550px;}
.y7d{bottom:498.899700px;}
.y16{bottom:505.559700px;}
.yc2{bottom:508.259700px;}
.y5b{bottom:510.599550px;}
.y44{bottom:515.999550px;}
.y7c{bottom:515.999700px;}
.y15{bottom:522.839700px;}
.yc1{bottom:523.739700px;}
.y99{bottom:527.699550px;}
.y5a{bottom:527.879550px;}
.y7b{bottom:533.279700px;}
.yc0{bottom:539.399700px;}
.y59{bottom:544.979550px;}
.ya5{bottom:545.159550px;}
.y7a{bottom:550.559700px;}
.ybf{bottom:554.879700px;}
.y43{bottom:555.059550px;}
.y14{bottom:561.899700px;}
.y98{bottom:562.079550px;}
.y58{bottom:562.259550px;}
.y79{bottom:567.839700px;}
.ybe{bottom:570.359700px;}
.y97{bottom:579.179550px;}
.y57{bottom:579.539550px;}
.y78{bottom:585.119700px;}
.ybd{bottom:585.839700px;}
.y96{bottom:596.639550px;}
.y56{bottom:596.819550px;}
.ybc{bottom:601.499700px;}
.y77{bottom:602.219700px;}
.y95{bottom:613.919550px;}
.y42{bottom:614.099550px;}
.ybb{bottom:616.979700px;}
.y76{bottom:619.499700px;}
.y13{bottom:629.399700px;}
.y94{bottom:631.199550px;}
.y41{bottom:631.379550px;}
.yba{bottom:632.459550px;}
.y75{bottom:636.779700px;}
.yb9{bottom:647.939550px;}
.y93{bottom:648.299550px;}
.y55{bottom:648.479550px;}
.y40{bottom:648.659550px;}
.y74{bottom:654.059700px;}
.y12{bottom:663.059700px;}
.y3f{bottom:665.759550px;}
.y73{bottom:671.339700px;}
.y11{bottom:678.539700px;}
.y3e{bottom:683.039550px;}
.yb8{bottom:685.739550px;}
.y72{bottom:688.619700px;}
.y10{bottom:694.019700px;}
.y92{bottom:700.139550px;}
.y3d{bottom:700.319550px;}
.y71{bottom:705.719700px;}
.yf{bottom:709.499700px;}
.y3c{bottom:717.599550px;}
.y70{bottom:722.999700px;}
.ye{bottom:725.159700px;}
.y91{bottom:734.699550px;}
.y3b{bottom:734.879550px;}
.y6f{bottom:740.279550px;}
.yd{bottom:740.639700px;}
.yb7{bottom:744.779550px;}
.y3a{bottom:751.979550px;}
.yc{bottom:756.119700px;}
.y6e{bottom:757.559550px;}
.yb6{bottom:762.059550px;}
.y39{bottom:769.259550px;}
.yb{bottom:771.599700px;}
.yb5{bottom:779.159550px;}
.y38{bottom:786.539550px;}
.ya{bottom:787.259700px;}
.y6d{bottom:796.619550px;}
.y90{bottom:803.639550px;}
.y37{bottom:803.819550px;}
.yb4{bottom:813.719550px;}
.y36{bottom:821.099550px;}
.ye0{bottom:827.579700px;}
.yb3{bottom:830.999550px;}
.y35{bottom:838.379550px;}
.ydf{bottom:843.059700px;}
.y9{bottom:847.739700px;}
.yb2{bottom:848.279550px;}
.y34{bottom:855.479550px;}
.yde{bottom:858.539700px;}
.y8{bottom:863.219700px;}
.yb1{bottom:865.559550px;}
.y33{bottom:872.759550px;}
.ydd{bottom:874.019700px;}
.y7{bottom:878.699550px;}
.yb0{bottom:882.839550px;}
.ydc{bottom:889.499700px;}
.y32{bottom:890.039550px;}
.y6{bottom:898.859550px;}
.yaf{bottom:900.119550px;}
.ydb{bottom:905.159700px;}
.y31{bottom:907.319550px;}
.y5{bottom:909.839550px;}
.yae{bottom:917.219550px;}
.yda{bottom:920.639550px;}
.y30{bottom:924.599550px;}
.y4{bottom:925.319550px;}
.yad{bottom:934.499550px;}
.yd9{bottom:936.119550px;}
.y3{bottom:941.339550px;}
.y6c{bottom:941.699550px;}
.y2f{bottom:941.879550px;}
.yd8{bottom:951.599550px;}
.yac{bottom:951.779550px;}
.y2e{bottom:958.979550px;}
.yd7{bottom:967.259550px;}
.yab{bottom:969.059550px;}
.y2d{bottom:976.259550px;}
.yd6{bottom:982.739550px;}
.yaa{bottom:986.339550px;}
.y2c{bottom:993.539550px;}
.y2{bottom:995.159550px;}
.yd5{bottom:998.219550px;}
.y2b{bottom:1010.819550px;}
.yd4{bottom:1013.699550px;}
.y1{bottom:1021.259550px;}
.ya9{bottom:1025.219550px;}
.y2a{bottom:1028.099550px;}
.yd3{bottom:1029.359550px;}
.y27{bottom:1209.000000px;}
.ha{height:12.000000px;}
.h10{height:25.031250px;}
.h4{height:34.998047px;}
.hb{height:49.125000px;}
.h3{height:52.998047px;}
.h5{height:52.998647px;}
.h6{height:54.421875px;}
.h8{height:58.651172px;}
.h9{height:58.651772px;}
.hc{height:58.652372px;}
.hf{height:59.092031px;}
.he{height:60.226875px;}
.hd{height:62.327813px;}
.h2{height:65.518594px;}
.h7{height:72.562500px;}
.h1{height:84.898125px;}
.h0{height:1263.000000px;}
.w4{width:20.400000px;}
.w2{width:83.400000px;}
.w3{width:84.397500px;}
.w1{width:494.347500px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x10{left:75.000000px;}
.xb{left:108.000000px;}
.x8{left:187.199296px;}
.xa{left:199.076271px;}
.x9{left:204.299529px;}
.x2{left:230.044599px;}
.x4{left:242.101860px;}
.x5{left:316.620622px;}
.x6{left:347.937295px;}
.x7{left:361.796474px;}
.x1{left:362.879850px;}
.xc{left:404.051239px;}
.x3{left:455.041520px;}
.xe{left:626.219700px;}
.xf{left:723.059700px;}
.xd{left:764.100037px;}
@media print{
.v4{vertical-align:-61.440000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v5{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.010667pt;}
.lsa{letter-spacing:0.105387pt;}
.lsc{letter-spacing:0.145033pt;}
.ls7{letter-spacing:0.170667pt;}
.lsb{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.263040pt;}
.ls1{letter-spacing:0.264181pt;}
.ls3{letter-spacing:0.318635pt;}
.ls4{letter-spacing:0.318720pt;}
.ls8{letter-spacing:0.320000pt;}
.ls5{letter-spacing:5.723307pt;}
.ls6{letter-spacing:47.557333pt;}
.ws3{word-spacing:-13.598720pt;}
.ws2{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws4{word-spacing:-8.000000pt;}
.ws1{word-spacing:0.000000pt;}
._19{margin-left:-205.120000pt;}
._18{margin-left:-11.184000pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.168640pt;}
._3{width:2.287360pt;}
._4{width:3.199360pt;}
._8{width:4.512000pt;}
._7{width:6.000000pt;}
._2{width:7.637333pt;}
._10{width:8.658560pt;}
._9{width:9.600000pt;}
._a{width:10.629760pt;}
._d{width:11.845760pt;}
._6{width:13.611520pt;}
._5{width:14.976000pt;}
._14{width:16.262400pt;}
._12{width:17.795200pt;}
._11{width:19.176320pt;}
._c{width:20.238720pt;}
._b{width:21.354240pt;}
._13{width:22.788480pt;}
._15{width:23.691520pt;}
._17{width:33.495040pt;}
._16{width:34.421760pt;}
._e{width:35.643520pt;}
._f{width:36.599680pt;}
.fs8{font-size:21.333333pt;}
.fs5{font-size:29.440000pt;}
.fs2{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs7{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs6{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:2.302667pt;}
.ye1{bottom:6.666667pt;}
.y29{bottom:37.333333pt;}
.y26{bottom:204.106533pt;}
.y54{bottom:213.386533pt;}
.y25{bottom:219.466533pt;}
.y69{bottom:223.786267pt;}
.ya4{bottom:228.586533pt;}
.y8b{bottom:228.746400pt;}
.y53{bottom:228.746533pt;}
.yd2{bottom:230.986533pt;}
.y24{bottom:234.826533pt;}
.y68{bottom:239.146267pt;}
.ya3{bottom:243.946533pt;}
.y8a{bottom:244.106400pt;}
.y52{bottom:244.106533pt;}
.yd1{bottom:244.906533pt;}
.y23{bottom:250.186533pt;}
.yd0{bottom:258.666533pt;}
.ya2{bottom:259.306533pt;}
.y89{bottom:259.466400pt;}
.y51{bottom:259.466533pt;}
.ya8{bottom:261.866533pt;}
.y22{bottom:265.546533pt;}
.y67{bottom:269.866267pt;}
.ycf{bottom:272.426533pt;}
.y88{bottom:274.666400pt;}
.y8f{bottom:274.666533pt;}
.y50{bottom:274.826533pt;}
.ya7{bottom:276.106533pt;}
.y21{bottom:280.746533pt;}
.y66{bottom:285.226267pt;}
.yce{bottom:286.186533pt;}
.ya6{bottom:288.426533pt;}
.ya1{bottom:289.866533pt;}
.y87{bottom:290.026400pt;}
.y4f{bottom:290.026533pt;}
.y20{bottom:296.106533pt;}
.ycd{bottom:300.106533pt;}
.y65{bottom:300.426267pt;}
.ya0{bottom:305.226533pt;}
.y86{bottom:305.386400pt;}
.y4e{bottom:305.386533pt;}
.y1f{bottom:311.466533pt;}
.y6b{bottom:312.266533pt;}
.ycc{bottom:313.866533pt;}
.y64{bottom:315.786267pt;}
.y9f{bottom:320.586533pt;}
.y85{bottom:320.746400pt;}
.y4d{bottom:320.746533pt;}
.y6a{bottom:323.626533pt;}
.y1e{bottom:326.826533pt;}
.ycb{bottom:327.626533pt;}
.y63{bottom:331.146267pt;}
.y9e{bottom:335.946533pt;}
.y84{bottom:336.106400pt;}
.y4c{bottom:336.106533pt;}
.yca{bottom:341.386400pt;}
.y1d{bottom:342.186533pt;}
.y62{bottom:346.506267pt;}
.y9d{bottom:351.306533pt;}
.y83{bottom:351.466400pt;}
.y4b{bottom:351.466533pt;}
.yc9{bottom:355.306400pt;}
.y1c{bottom:357.386533pt;}
.y61{bottom:361.866267pt;}
.y9c{bottom:366.506267pt;}
.y8e{bottom:366.666267pt;}
.y82{bottom:366.666400pt;}
.y4a{bottom:366.666533pt;}
.yc8{bottom:369.066400pt;}
.y1b{bottom:372.746533pt;}
.y60{bottom:377.066267pt;}
.y9b{bottom:381.866267pt;}
.y8d{bottom:382.026267pt;}
.y81{bottom:382.026400pt;}
.y49{bottom:382.026533pt;}
.yc7{bottom:382.826400pt;}
.y1a{bottom:388.106533pt;}
.y5f{bottom:392.426267pt;}
.yc6{bottom:396.586400pt;}
.y80{bottom:397.386400pt;}
.y48{bottom:397.386533pt;}
.y19{bottom:403.466533pt;}
.y5e{bottom:407.786267pt;}
.yc5{bottom:410.346400pt;}
.y7f{bottom:412.746400pt;}
.y47{bottom:412.746533pt;}
.y9a{bottom:416.586267pt;}
.y8c{bottom:416.746267pt;}
.y18{bottom:418.826533pt;}
.y5d{bottom:423.146267pt;}
.yc4{bottom:424.266400pt;}
.y7e{bottom:428.106400pt;}
.y46{bottom:428.106533pt;}
.y17{bottom:434.186533pt;}
.yc3{bottom:438.026400pt;}
.y5c{bottom:438.506267pt;}
.y45{bottom:443.466267pt;}
.y7d{bottom:443.466400pt;}
.y16{bottom:449.386400pt;}
.yc2{bottom:451.786400pt;}
.y5b{bottom:453.866267pt;}
.y44{bottom:458.666267pt;}
.y7c{bottom:458.666400pt;}
.y15{bottom:464.746400pt;}
.yc1{bottom:465.546400pt;}
.y99{bottom:469.066267pt;}
.y5a{bottom:469.226267pt;}
.y7b{bottom:474.026400pt;}
.yc0{bottom:479.466400pt;}
.y59{bottom:484.426267pt;}
.ya5{bottom:484.586267pt;}
.y7a{bottom:489.386400pt;}
.ybf{bottom:493.226400pt;}
.y43{bottom:493.386267pt;}
.y14{bottom:499.466400pt;}
.y98{bottom:499.626267pt;}
.y58{bottom:499.786267pt;}
.y79{bottom:504.746400pt;}
.ybe{bottom:506.986400pt;}
.y97{bottom:514.826267pt;}
.y57{bottom:515.146267pt;}
.y78{bottom:520.106400pt;}
.ybd{bottom:520.746400pt;}
.y96{bottom:530.346267pt;}
.y56{bottom:530.506267pt;}
.ybc{bottom:534.666400pt;}
.y77{bottom:535.306400pt;}
.y95{bottom:545.706267pt;}
.y42{bottom:545.866267pt;}
.ybb{bottom:548.426400pt;}
.y76{bottom:550.666400pt;}
.y13{bottom:559.466400pt;}
.y94{bottom:561.066267pt;}
.y41{bottom:561.226267pt;}
.yba{bottom:562.186267pt;}
.y75{bottom:566.026400pt;}
.yb9{bottom:575.946267pt;}
.y93{bottom:576.266267pt;}
.y55{bottom:576.426267pt;}
.y40{bottom:576.586267pt;}
.y74{bottom:581.386400pt;}
.y12{bottom:589.386400pt;}
.y3f{bottom:591.786267pt;}
.y73{bottom:596.746400pt;}
.y11{bottom:603.146400pt;}
.y3e{bottom:607.146267pt;}
.yb8{bottom:609.546267pt;}
.y72{bottom:612.106400pt;}
.y10{bottom:616.906400pt;}
.y92{bottom:622.346267pt;}
.y3d{bottom:622.506267pt;}
.y71{bottom:627.306400pt;}
.yf{bottom:630.666400pt;}
.y3c{bottom:637.866267pt;}
.y70{bottom:642.666400pt;}
.ye{bottom:644.586400pt;}
.y91{bottom:653.066267pt;}
.y3b{bottom:653.226267pt;}
.y6f{bottom:658.026267pt;}
.yd{bottom:658.346400pt;}
.yb7{bottom:662.026267pt;}
.y3a{bottom:668.426267pt;}
.yc{bottom:672.106400pt;}
.y6e{bottom:673.386267pt;}
.yb6{bottom:677.386267pt;}
.y39{bottom:683.786267pt;}
.yb{bottom:685.866400pt;}
.yb5{bottom:692.586267pt;}
.y38{bottom:699.146267pt;}
.ya{bottom:699.786400pt;}
.y6d{bottom:708.106267pt;}
.y90{bottom:714.346267pt;}
.y37{bottom:714.506267pt;}
.yb4{bottom:723.306267pt;}
.y36{bottom:729.866267pt;}
.ye0{bottom:735.626400pt;}
.yb3{bottom:738.666267pt;}
.y35{bottom:745.226267pt;}
.ydf{bottom:749.386400pt;}
.y9{bottom:753.546400pt;}
.yb2{bottom:754.026267pt;}
.y34{bottom:760.426267pt;}
.yde{bottom:763.146400pt;}
.y8{bottom:767.306400pt;}
.yb1{bottom:769.386267pt;}
.y33{bottom:775.786267pt;}
.ydd{bottom:776.906400pt;}
.y7{bottom:781.066267pt;}
.yb0{bottom:784.746267pt;}
.ydc{bottom:790.666400pt;}
.y32{bottom:791.146267pt;}
.y6{bottom:798.986267pt;}
.yaf{bottom:800.106267pt;}
.ydb{bottom:804.586400pt;}
.y31{bottom:806.506267pt;}
.y5{bottom:808.746267pt;}
.yae{bottom:815.306267pt;}
.yda{bottom:818.346267pt;}
.y30{bottom:821.866267pt;}
.y4{bottom:822.506267pt;}
.yad{bottom:830.666267pt;}
.yd9{bottom:832.106267pt;}
.y3{bottom:836.746267pt;}
.y6c{bottom:837.066267pt;}
.y2f{bottom:837.226267pt;}
.yd8{bottom:845.866267pt;}
.yac{bottom:846.026267pt;}
.y2e{bottom:852.426267pt;}
.yd7{bottom:859.786267pt;}
.yab{bottom:861.386267pt;}
.y2d{bottom:867.786267pt;}
.yd6{bottom:873.546267pt;}
.yaa{bottom:876.746267pt;}
.y2c{bottom:883.146267pt;}
.y2{bottom:884.586267pt;}
.yd5{bottom:887.306267pt;}
.y2b{bottom:898.506267pt;}
.yd4{bottom:901.066267pt;}
.y1{bottom:907.786267pt;}
.ya9{bottom:911.306267pt;}
.y2a{bottom:913.866267pt;}
.yd3{bottom:914.986267pt;}
.y27{bottom:1074.666667pt;}
.ha{height:10.666667pt;}
.h10{height:22.250000pt;}
.h4{height:31.109375pt;}
.hb{height:43.666667pt;}
.h3{height:47.109375pt;}
.h5{height:47.109908pt;}
.h6{height:48.375000pt;}
.h8{height:52.134375pt;}
.h9{height:52.134908pt;}
.hc{height:52.135442pt;}
.hf{height:52.526250pt;}
.he{height:53.535000pt;}
.hd{height:55.402500pt;}
.h2{height:58.238750pt;}
.h7{height:64.500000pt;}
.h1{height:75.465000pt;}
.h0{height:1122.666667pt;}
.w4{width:18.133333pt;}
.w2{width:74.133333pt;}
.w3{width:75.020000pt;}
.w1{width:439.420000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x10{left:66.666667pt;}
.xb{left:96.000000pt;}
.x8{left:166.399374pt;}
.xa{left:176.956685pt;}
.x9{left:181.599582pt;}
.x2{left:204.484088pt;}
.x4{left:215.201654pt;}
.x5{left:281.440553pt;}
.x6{left:309.277595pt;}
.x7{left:321.596866pt;}
.x1{left:322.559867pt;}
.xc{left:359.156657pt;}
.x3{left:404.481351pt;}
.xe{left:556.639733pt;}
.xf{left:642.719733pt;}
.xd{left:679.200033pt;}
}

