
    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_16afa7766003169b6845f3d2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901855;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_ee7754d001f83ce5cbeae5fc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_5fb2c134e7dfe20297b82f02.woff')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_87108bde1d1cb5e4b6049b5f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.940918;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_a0d6c1057c947fbed144b2e3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_855ec83514f794282af62474.woff')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_975a12c7adf14ba8f5669d8e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_68f05d358b0bc8cdd342761b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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;}
.m2{transform:matrix(0.176758,-0.176758,0.176777,0.176777,0,0);-ms-transform:matrix(0.176758,-0.176758,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176758,-0.176758,0.176777,0.176777,0,0);}
.m1{transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249982,0.000000,0.000000,0.250000,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);}
.v5{vertical-align:-41.749297px;}
.v3{vertical-align:-40.311150px;}
.v1{vertical-align:-35.995990px;}
.v4{vertical-align:-30.242502px;}
.v2{vertical-align:-28.803995px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.060423px;}
.ls11{letter-spacing:0.060425px;}
.ls13{letter-spacing:0.070759px;}
.ls8{letter-spacing:0.181281px;}
.ls3{letter-spacing:0.214764px;}
.ls10{letter-spacing:0.302137px;}
.lsa{letter-spacing:0.422989px;}
.lsf{letter-spacing:0.483416px;}
.lsb{letter-spacing:0.543843px;}
.lsd{letter-spacing:0.725124px;}
.ls9{letter-spacing:0.725132px;}
.lse{letter-spacing:1.208546px;}
.ls6{letter-spacing:1.268964px;}
.ls7{letter-spacing:1.268969px;}
.ls12{letter-spacing:37.007371px;}
.ls14{letter-spacing:51.335237px;}
.ls4{letter-spacing:54.935251px;}
.ls5{letter-spacing:70.242662px;}
.ls2{letter-spacing:196.127375px;}
.ls15{letter-spacing:2630.879387px;}
.ls0{letter-spacing:2666.879387px;}
.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;}
}
.ws0{word-spacing:-16.272611px;}
.ws7{word-spacing:-13.656496px;}
.ws6{word-spacing:-13.656274px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:32.731035px;}
.ws4{word-spacing:33.439123px;}
.ws3{word-spacing:33.439213px;}
.ws2{word-spacing:34.914457px;}
._1{margin-left:-1.024632px;}
._0{width:1.031101px;}
._5{width:2.947611px;}
._4{width:4.709708px;}
._a{width:6.267892px;}
._b{width:7.331620px;}
._8{width:8.361314px;}
._9{width:9.699271px;}
._11{width:11.088698px;}
._7{width:12.671914px;}
._6{width:14.036871px;}
._17{width:15.195102px;}
._22{width:17.293306px;}
._12{width:18.309500px;}
._15{width:20.008033px;}
._d{width:21.138981px;}
._18{width:22.336988px;}
._e{width:23.373034px;}
._c{width:24.466013px;}
._16{width:25.578961px;}
._2{width:27.018171px;}
._10{width:28.393817px;}
._f{width:29.917124px;}
._1f{width:31.225829px;}
._1e{width:32.311495px;}
._13{width:33.421349px;}
._14{width:35.103006px;}
._20{width:36.301457px;}
._21{width:37.439313px;}
._1c{width:39.094375px;}
._1d{width:41.458932px;}
._1a{width:42.881829px;}
._19{width:44.458857px;}
._1b{width:139.958943px;}
._3{width:196.135367px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.762250px;}
.fs1{font-size:60.425993px;}
.fs2{font-size:60.426976px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y8c{bottom:5.397319px;}
.y72{bottom:5.397897px;}
.y6c{bottom:5.398411px;}
.y68{bottom:5.398697px;}
.y6e{bottom:5.398846px;}
.y77{bottom:5.399294px;}
.y82{bottom:5.400064px;}
.y84{bottom:5.400815px;}
.y8a{bottom:5.400831px;}
.y7d{bottom:5.401490px;}
.y7b{bottom:5.402543px;}
.y86{bottom:5.402605px;}
.y75{bottom:5.402810px;}
.y66{bottom:5.403431px;}
.y7f{bottom:5.403456px;}
.y70{bottom:5.404027px;}
.y62{bottom:5.404059px;}
.y6a{bottom:5.404272px;}
.y79{bottom:5.404517px;}
.y64{bottom:5.406037px;}
.y1{bottom:57.780121px;}
.yb0{bottom:118.620072px;}
.ya1{bottom:126.720085px;}
.y30{bottom:128.700096px;}
.yd3{bottom:136.800041px;}
.yaf{bottom:140.580093px;}
.ya0{bottom:148.680039px;}
.y2f{bottom:150.660049px;}
.yae{bottom:162.540047px;}
.yd2{bottom:167.760064px;}
.y9f{bottom:170.640060px;}
.y2e{bottom:172.620072px;}
.y9e{bottom:192.600083px;}
.yad{bottom:193.500068px;}
.y2d{bottom:194.580093px;}
.yd1{bottom:198.720085px;}
.y9d{bottom:214.560036px;}
.yac{bottom:215.460091px;}
.y2c{bottom:216.540047px;}
.yd0{bottom:220.680039px;}
.y9c{bottom:236.520058px;}
.yab{bottom:237.420043px;}
.y2b{bottom:238.500068px;}
.ycf{bottom:242.640060px;}
.y9b{bottom:258.660049px;}
.y2a{bottom:260.460091px;}
.yce{bottom:264.600083px;}
.yaa{bottom:268.380066px;}
.y9a{bottom:280.620072px;}
.y29{bottom:282.420043px;}
.ycd{bottom:296.460091px;}
.ya9{bottom:299.520058px;}
.y99{bottom:302.580093px;}
.y28{bottom:304.380066px;}
.ycc{bottom:318.600083px;}
.y98{bottom:324.540047px;}
.y27{bottom:326.520058px;}
.ya8{bottom:330.480079px;}
.y97{bottom:346.500068px;}
.y26{bottom:348.480079px;}
.ycb{bottom:350.460091px;}
.ya7{bottom:352.440033px;}
.y96{bottom:368.460091px;}
.y25{bottom:370.440033px;}
.yca{bottom:372.420043px;}
.ya6{bottom:374.400055px;}
.y95{bottom:390.420043px;}
.y24{bottom:392.400055px;}
.yc9{bottom:404.280052px;}
.ya5{bottom:405.360077px;}
.y94{bottom:412.380066px;}
.y23{bottom:414.360077px;}
.yc8{bottom:426.420043px;}
.ya4{bottom:427.320099px;}
.y93{bottom:434.340088px;}
.y22{bottom:436.320099px;}
.ya3{bottom:449.280052px;}
.y92{bottom:456.300041px;}
.y21{bottom:458.280052px;}
.ya2{bottom:471.240074px;}
.y91{bottom:478.260064px;}
.y20{bottom:480.240074px;}
.y90{bottom:499.500068px;}
.y1f{bottom:502.200096px;}
.yc7{bottom:512.100083px;}
.y8f{bottom:517.860077px;}
.y1e{bottom:524.160049px;}
.yc6{bottom:534.060036px;}
.y8e{bottom:536.940033px;}
.y1d{bottom:546.120072px;}
.yc5{bottom:556.020058px;}
.y1c{bottom:568.080093px;}
.y8d{bottom:574.738663px;}
.yc4{bottom:578.160049px;}
.y1b{bottom:590.040047px;}
.yc3{bottom:610.020058px;}
.y1a{bottom:612.000068px;}
.y19{bottom:634.140060px;}
.yc2{bottom:640.980079px;}
.y83{bottom:642.946876px;}
.y18{bottom:656.100083px;}
.y63{bottom:662.031405px;}
.y80{bottom:667.428542px;}
.y71{bottom:668.151983px;}
.y61{bottom:669.952826px;}
.y6b{bottom:670.669778px;}
.y87{bottom:671.745903px;}
.y73{bottom:671.750617px;}
.yc1{bottom:671.940033px;}
.y6d{bottom:673.194251px;}
.y7e{bottom:676.785758px;}
.y65{bottom:677.153244px;}
.y81{bottom:677.506926px;}
.y17{bottom:678.060036px;}
.y78{bottom:678.227285px;}
.y67{bottom:678.234946px;}
.y85{bottom:678.587240px;}
.y76{bottom:678.589737px;}
.y7a{bottom:678.589774px;}
.y8b{bottom:679.309672px;}
.y7c{bottom:681.106631px;}
.y6f{bottom:683.627510px;}
.y69{bottom:683.989718px;}
.y88{bottom:686.145391px;}
.y74{bottom:686.867499px;}
.y89{bottom:687.585461px;}
.ye2{bottom:698.940067px;}
.y16{bottom:700.020058px;}
.yc0{bottom:702.900055px;}
.y15{bottom:721.980079px;}
.y5a{bottom:726.121757px;}
.y31{bottom:729.717664px;}
.ye1{bottom:729.900055px;}
.ybf{bottom:733.860077px;}
.y33{bottom:739.795407px;}
.y32{bottom:740.155033px;}
.y37{bottom:740.878789px;}
.y39{bottom:743.755533px;}
.y14{bottom:743.940067px;}
.y34{bottom:744.119752px;}
.y3b{bottom:745.203134px;}
.y3d{bottom:746.641461px;}
.y3f{bottom:749.153986px;}
.y35{bottom:749.877786px;}
.ye0{bottom:751.860077px;}
.y41{bottom:752.039959px;}
.y43{bottom:753.478331px;}
.y5b{bottom:754.202086px;}
.y45{bottom:754.916658px;}
.ybe{bottom:755.820065px;}
.y36{bottom:757.078830px;}
.y47{bottom:757.802631px;}
.y49{bottom:758.876784px;}
.y4b{bottom:760.315156px;}
.y38{bottom:761.038956px;}
.y4d{bottom:761.762712px;}
.y3a{bottom:765.713609px;}
.y13{bottom:765.900055px;}
.y4f{bottom:767.516200px;}
.y3c{bottom:768.599582px;}
.y51{bottom:770.037909px;}
.y3e{bottom:772.200081px;}
.y53{bottom:772.923882px;}
.ydf{bottom:773.820065px;}
.y55{bottom:775.800581px;}
.y56{bottom:777.238952px;}
.y40{bottom:778.677324px;}
.y5c{bottom:782.282461px;}
.y42{bottom:783.361206px;}
.ybd{bottom:786.780052px;}
.y44{bottom:787.321332px;}
.y12{bottom:787.860077px;}
.y46{bottom:788.035903px;}
.yde{bottom:795.780052px;}
.y58{bottom:796.679911px;}
.y4a{bottom:797.044130px;}
.y48{bottom:797.394483px;}
.y4e{bottom:803.518582px;}
.y4c{bottom:804.241437px;}
.ybc{bottom:808.740074px;}
.y11{bottom:809.820065px;}
.y5d{bottom:810.002308px;}
.y50{bottom:815.040234px;}
.ydd{bottom:817.740074px;}
.y52{bottom:817.916978px;}
.y54{bottom:828.361686px;}
.ybb{bottom:830.700061px;}
.y10{bottom:831.780052px;}
.y57{bottom:832.676801px;}
.y5e{bottom:837.899133px;}
.ydc{bottom:839.700061px;}
.yf{bottom:853.740074px;}
.yba{bottom:861.660049px;}
.y5f{bottom:865.618980px;}
.y59{bottom:870.295523px;}
.ye{bottom:875.700061px;}
.yb9{bottom:883.620072px;}
.y60{bottom:893.700255px;}
.yd{bottom:897.660049px;}
.yb8{bottom:905.760064px;}
.yc{bottom:919.620072px;}
.ydb{bottom:927.720051px;}
.yb7{bottom:936.720051px;}
.yb{bottom:941.760064px;}
.yda{bottom:949.680073px;}
.yb6{bottom:958.680073px;}
.ya{bottom:963.720051px;}
.yd9{bottom:971.640060px;}
.y9{bottom:985.680073px;}
.yb5{bottom:989.640060px;}
.yd8{bottom:993.600065px;}
.y8{bottom:1007.640060px;}
.yb4{bottom:1011.600065px;}
.yd7{bottom:1024.560070px;}
.y7{bottom:1029.600065px;}
.yb3{bottom:1042.560070px;}
.yd6{bottom:1046.520058px;}
.y6{bottom:1051.560070px;}
.yb2{bottom:1064.520058px;}
.y5{bottom:1073.520058px;}
.yd5{bottom:1077.480063px;}
.yb1{bottom:1086.480063px;}
.y4{bottom:1095.480063px;}
.yd4{bottom:1108.440067px;}
.y3{bottom:1117.440067px;}
.y2{bottom:1139.400064px;}
.h1c{height:38.339799px;}
.h11{height:39.425388px;}
.h1b{height:40.145089px;}
.hc{height:42.483787px;}
.hf{height:42.486820px;}
.h15{height:45.004061px;}
.h1d{height:46.617416px;}
.h14{height:47.342550px;}
.h12{height:47.879577px;}
.h19{height:47.882888px;}
.h13{height:47.888078px;}
.hb{height:48.056304px;}
.h1e{height:48.089936px;}
.h9{height:49.324491px;}
.h16{height:49.326566px;}
.h5{height:49.833741px;}
.ha{height:49.834552px;}
.h2{height:50.275326px;}
.h7{height:50.438821px;}
.h17{height:50.943840px;}
.he{height:53.096539px;}
.h1a{height:54.546571px;}
.h4{height:54.916125px;}
.hd{height:55.446920px;}
.h6{height:56.522373px;}
.h10{height:57.779337px;}
.h1f{height:57.939676px;}
.h3{height:59.381137px;}
.h8{height:64.084588px;}
.h18{height:83.527008px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w16{width:38.339799px;}
.wb{width:39.060317px;}
.w15{width:39.779944px;}
.w6{width:41.945055px;}
.w9{width:42.121747px;}
.wf{width:44.642166px;}
.w17{width:46.440097px;}
.wc{width:47.159861px;}
.w13{width:47.163172px;}
.we{width:47.165896px;}
.w5{width:47.524331px;}
.wd{width:47.525727px;}
.w11{width:48.244208px;}
.w4{width:48.606042px;}
.w10{width:48.961354px;}
.w8{width:52.560904px;}
.w14{width:54.001527px;}
.w7{width:55.081870px;}
.w2{width:55.805192px;}
.wa{width:57.602018px;}
.w3{width:63.724020px;}
.w12{width:82.805314px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x35{left:11.702184px;}
.x1{left:106.379998px;}
.x4d{left:119.879998px;}
.x8{left:133.379998px;}
.x7{left:159.479994px;}
.x2{left:164.340002px;}
.x36{left:181.806162px;}
.x9{left:187.379998px;}
.x34{left:191.162869px;}
.x33{left:198.722941px;}
.xb{left:213.481684px;}
.xa{left:219.242088px;}
.x37{left:222.125147px;}
.xc{left:238.684370px;}
.x38{left:248.046017px;}
.xd{left:263.525677px;}
.x39{left:278.467272px;}
.x3a{left:289.987198px;}
.xe{left:313.562287px;}
.x3b{left:317.349475px;}
.xf{left:338.219180px;}
.x3c{left:352.988287px;}
.x11{left:363.060465px;}
.x10{left:368.820869px;}
.x4c{left:377.465167px;}
.x13{left:388.263151px;}
.x12{left:390.062819px;}
.x3d{left:396.910936px;}
.x15{left:412.743035px;}
.x14{left:414.542702px;}
.x4e{left:429.300007px;}
.x3e{left:430.570155px;}
.x17{left:437.945766px;}
.x16{left:439.745434px;}
.x3f{left:447.489545px;}
.x18{left:464.584873px;}
.x19{left:468.540072px;}
.x40{left:471.966845px;}
.x1b{left:487.444844px;}
.x1a{left:489.242666px;}
.x41{left:497.166739px;}
.x1d{left:512.646629px;}
.x1c{left:514.444451px;}
.x42{left:524.530081px;}
.x1f{left:537.124667px;}
.x1e{left:538.927126px;}
.x43{left:545.049741px;}
.x3{left:550.620002px;}
.x21{left:562.321861px;}
.x20{left:564.119683px;}
.x44{left:567.007168px;}
.x46{left:585.908444px;}
.x23{left:587.164046px;}
.x22{left:588.961868px;}
.x45{left:595.625863px;}
.x25{left:612.006277px;}
.x24{left:613.804099px;}
.x4{left:626.399987px;}
.x27{left:637.023670px;}
.x26{left:638.821492px;}
.x47{left:646.390609px;}
.x29{left:661.501708px;}
.x28{left:663.304122px;}
.x48{left:664.748868px;}
.x5{left:676.799973px;}
.x2b{left:686.703449px;}
.x2a{left:688.505908px;}
.x49{left:703.811164px;}
.x2d{left:711.545679px;}
.x2c{left:713.348093px;}
.x4a{left:730.091768px;}
.x2f{left:736.387909px;}
.x2e{left:738.185731px;}
.x4b{left:746.650558px;}
.x31{left:761.585058px;}
.x30{left:763.382880px;}
.x6{left:786.600014px;}
.x32{left:788.045310px;}
@media print{
.v5{vertical-align:-37.110486pt;}
.v3{vertical-align:-35.832134pt;}
.v1{vertical-align:-31.996435pt;}
.v4{vertical-align:-26.882224pt;}
.v2{vertical-align:-25.603551pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.053710pt;}
.ls11{letter-spacing:0.053711pt;}
.ls13{letter-spacing:0.062897pt;}
.ls8{letter-spacing:0.161139pt;}
.ls3{letter-spacing:0.190901pt;}
.ls10{letter-spacing:0.268567pt;}
.lsa{letter-spacing:0.375991pt;}
.lsf{letter-spacing:0.429703pt;}
.lsb{letter-spacing:0.483416pt;}
.lsd{letter-spacing:0.644554pt;}
.ls9{letter-spacing:0.644562pt;}
.lse{letter-spacing:1.074263pt;}
.ls6{letter-spacing:1.127968pt;}
.ls7{letter-spacing:1.127973pt;}
.ls12{letter-spacing:32.895441pt;}
.ls14{letter-spacing:45.631322pt;}
.ls4{letter-spacing:48.831334pt;}
.ls5{letter-spacing:62.437922pt;}
.ls2{letter-spacing:174.335445pt;}
.ls15{letter-spacing:2338.559455pt;}
.ls0{letter-spacing:2370.559455pt;}
.ws0{word-spacing:-14.464543pt;}
.ws7{word-spacing:-12.139108pt;}
.ws6{word-spacing:-12.138911pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:29.094253pt;}
.ws4{word-spacing:29.723665pt;}
.ws3{word-spacing:29.723745pt;}
.ws2{word-spacing:31.035073pt;}
._1{margin-left:-0.910784pt;}
._0{width:0.916535pt;}
._5{width:2.620098pt;}
._4{width:4.186407pt;}
._a{width:5.571459pt;}
._b{width:6.516996pt;}
._8{width:7.432279pt;}
._9{width:8.621574pt;}
._11{width:9.856620pt;}
._7{width:11.263923pt;}
._6{width:12.477219pt;}
._17{width:13.506758pt;}
._22{width:15.371828pt;}
._12{width:16.275111pt;}
._15{width:17.784918pt;}
._d{width:18.790206pt;}
._18{width:19.855101pt;}
._e{width:20.776030pt;}
._c{width:21.747567pt;}
._16{width:22.736854pt;}
._2{width:24.016152pt;}
._10{width:25.238948pt;}
._f{width:26.592999pt;}
._1f{width:27.756292pt;}
._1e{width:28.721329pt;}
._13{width:29.707866pt;}
._14{width:31.202672pt;}
._20{width:32.267962pt;}
._21{width:33.279390pt;}
._1c{width:34.750555pt;}
._1d{width:36.852384pt;}
._1a{width:38.117182pt;}
._19{width:39.518984pt;}
._1b{width:124.407949pt;}
._3{width:174.342548pt;}
.fs3{font-size:53.122000pt;}
.fs1{font-size:53.711994pt;}
.fs2{font-size:53.712867pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:4.797617pt;}
.y72{bottom:4.798130pt;}
.y6c{bottom:4.798587pt;}
.y68{bottom:4.798842pt;}
.y6e{bottom:4.798975pt;}
.y77{bottom:4.799373pt;}
.y82{bottom:4.800057pt;}
.y84{bottom:4.800724pt;}
.y8a{bottom:4.800739pt;}
.y7d{bottom:4.801324pt;}
.y7b{bottom:4.802261pt;}
.y86{bottom:4.802316pt;}
.y75{bottom:4.802498pt;}
.y66{bottom:4.803050pt;}
.y7f{bottom:4.803072pt;}
.y70{bottom:4.803580pt;}
.y62{bottom:4.803608pt;}
.y6a{bottom:4.803798pt;}
.y79{bottom:4.804016pt;}
.y64{bottom:4.805366pt;}
.y1{bottom:51.360108pt;}
.yb0{bottom:105.440064pt;}
.ya1{bottom:112.640076pt;}
.y30{bottom:114.400086pt;}
.yd3{bottom:121.600037pt;}
.yaf{bottom:124.960083pt;}
.ya0{bottom:132.160035pt;}
.y2f{bottom:133.920044pt;}
.yae{bottom:144.480042pt;}
.yd2{bottom:149.120057pt;}
.y9f{bottom:151.680054pt;}
.y2e{bottom:153.440064pt;}
.y9e{bottom:171.200074pt;}
.yad{bottom:172.000061pt;}
.y2d{bottom:172.960083pt;}
.yd1{bottom:176.640076pt;}
.y9d{bottom:190.720032pt;}
.yac{bottom:191.520081pt;}
.y2c{bottom:192.480042pt;}
.yd0{bottom:196.160035pt;}
.y9c{bottom:210.240052pt;}
.yab{bottom:211.040039pt;}
.y2b{bottom:212.000061pt;}
.ycf{bottom:215.680054pt;}
.y9b{bottom:229.920044pt;}
.y2a{bottom:231.520081pt;}
.yce{bottom:235.200074pt;}
.yaa{bottom:238.560059pt;}
.y9a{bottom:249.440064pt;}
.y29{bottom:251.040039pt;}
.ycd{bottom:263.520081pt;}
.ya9{bottom:266.240052pt;}
.y99{bottom:268.960083pt;}
.y28{bottom:270.560059pt;}
.ycc{bottom:283.200074pt;}
.y98{bottom:288.480042pt;}
.y27{bottom:290.240052pt;}
.ya8{bottom:293.760071pt;}
.y97{bottom:308.000061pt;}
.y26{bottom:309.760071pt;}
.ycb{bottom:311.520081pt;}
.ya7{bottom:313.280030pt;}
.y96{bottom:327.520081pt;}
.y25{bottom:329.280030pt;}
.yca{bottom:331.040039pt;}
.ya6{bottom:332.800049pt;}
.y95{bottom:347.040039pt;}
.y24{bottom:348.800049pt;}
.yc9{bottom:359.360047pt;}
.ya5{bottom:360.320069pt;}
.y94{bottom:366.560059pt;}
.y23{bottom:368.320069pt;}
.yc8{bottom:379.040039pt;}
.ya4{bottom:379.840088pt;}
.y93{bottom:386.080079pt;}
.y22{bottom:387.840088pt;}
.ya3{bottom:399.360047pt;}
.y92{bottom:405.600037pt;}
.y21{bottom:407.360047pt;}
.ya2{bottom:418.880066pt;}
.y91{bottom:425.120057pt;}
.y20{bottom:426.880066pt;}
.y90{bottom:444.000061pt;}
.y1f{bottom:446.400086pt;}
.yc7{bottom:455.200074pt;}
.y8f{bottom:460.320069pt;}
.y1e{bottom:465.920044pt;}
.yc6{bottom:474.720032pt;}
.y8e{bottom:477.280030pt;}
.y1d{bottom:485.440064pt;}
.yc5{bottom:494.240052pt;}
.y1c{bottom:504.960083pt;}
.y8d{bottom:510.878811pt;}
.yc4{bottom:513.920044pt;}
.y1b{bottom:524.480042pt;}
.yc3{bottom:542.240052pt;}
.y1a{bottom:544.000061pt;}
.y19{bottom:563.680054pt;}
.yc2{bottom:569.760071pt;}
.y83{bottom:571.508334pt;}
.y18{bottom:583.200074pt;}
.y63{bottom:588.472360pt;}
.y80{bottom:593.269815pt;}
.y71{bottom:593.912874pt;}
.y61{bottom:595.513623pt;}
.y6b{bottom:596.150914pt;}
.y87{bottom:597.107469pt;}
.y73{bottom:597.111659pt;}
.yc1{bottom:597.280030pt;}
.y6d{bottom:598.394890pt;}
.y7e{bottom:601.587340pt;}
.y65{bottom:601.913994pt;}
.y81{bottom:602.228379pt;}
.y17{bottom:602.720032pt;}
.y78{bottom:602.868698pt;}
.y67{bottom:602.875507pt;}
.y85{bottom:603.188658pt;}
.y76{bottom:603.190878pt;}
.y7a{bottom:603.190910pt;}
.y8b{bottom:603.830819pt;}
.y7c{bottom:605.428117pt;}
.y6f{bottom:607.668897pt;}
.y69{bottom:607.990860pt;}
.y88{bottom:609.907014pt;}
.y74{bottom:610.548888pt;}
.y89{bottom:611.187077pt;}
.ye2{bottom:621.280060pt;}
.y16{bottom:622.240052pt;}
.yc0{bottom:624.800049pt;}
.y15{bottom:641.760071pt;}
.y5a{bottom:645.441562pt;}
.y31{bottom:648.637924pt;}
.ye1{bottom:648.800049pt;}
.ybf{bottom:652.320069pt;}
.y33{bottom:657.595917pt;}
.y32{bottom:657.915585pt;}
.y37{bottom:658.558924pt;}
.y39{bottom:661.116029pt;}
.y14{bottom:661.280060pt;}
.y34{bottom:661.439779pt;}
.y3b{bottom:662.402786pt;}
.y3d{bottom:663.681299pt;}
.y3f{bottom:665.914654pt;}
.y35{bottom:666.558032pt;}
.ye0{bottom:668.320069pt;}
.y41{bottom:668.479963pt;}
.y43{bottom:669.758516pt;}
.y5b{bottom:670.401855pt;}
.y45{bottom:671.037029pt;}
.ybe{bottom:671.840058pt;}
.y36{bottom:672.958960pt;}
.y47{bottom:673.602338pt;}
.y49{bottom:674.557141pt;}
.y4b{bottom:675.835694pt;}
.y38{bottom:676.479072pt;}
.y4d{bottom:677.122411pt;}
.y3a{bottom:680.634319pt;}
.y13{bottom:680.800049pt;}
.y4f{bottom:682.236622pt;}
.y3c{bottom:683.199628pt;}
.y51{bottom:684.478141pt;}
.y3e{bottom:686.400072pt;}
.y53{bottom:687.043450pt;}
.ydf{bottom:687.840058pt;}
.y55{bottom:689.600516pt;}
.y56{bottom:690.879069pt;}
.y40{bottom:692.157622pt;}
.y5c{bottom:695.362187pt;}
.y42{bottom:696.321072pt;}
.ybd{bottom:699.360047pt;}
.y44{bottom:699.841184pt;}
.y12{bottom:700.320069pt;}
.y46{bottom:700.476359pt;}
.yde{bottom:707.360047pt;}
.y58{bottom:708.159921pt;}
.y4a{bottom:708.483671pt;}
.y48{bottom:708.795096pt;}
.y4e{bottom:714.238740pt;}
.y4c{bottom:714.881278pt;}
.ybc{bottom:718.880066pt;}
.y11{bottom:719.840058pt;}
.y5d{bottom:720.002052pt;}
.y50{bottom:724.480208pt;}
.ydd{bottom:726.880066pt;}
.y52{bottom:727.037314pt;}
.y54{bottom:736.321498pt;}
.ybb{bottom:738.400055pt;}
.y10{bottom:739.360047pt;}
.y57{bottom:740.157157pt;}
.y5e{bottom:744.799229pt;}
.ydc{bottom:746.400055pt;}
.yf{bottom:758.880066pt;}
.yba{bottom:765.920044pt;}
.y5f{bottom:769.439093pt;}
.y59{bottom:773.596021pt;}
.ye{bottom:778.400055pt;}
.yb9{bottom:785.440064pt;}
.y60{bottom:794.400227pt;}
.yd{bottom:797.920044pt;}
.yb8{bottom:805.120057pt;}
.yc{bottom:817.440064pt;}
.ydb{bottom:824.640046pt;}
.yb7{bottom:832.640046pt;}
.yb{bottom:837.120057pt;}
.yda{bottom:844.160065pt;}
.yb6{bottom:852.160065pt;}
.ya{bottom:856.640046pt;}
.yd9{bottom:863.680054pt;}
.y9{bottom:876.160065pt;}
.yb5{bottom:879.680054pt;}
.yd8{bottom:883.200058pt;}
.y8{bottom:895.680054pt;}
.yb4{bottom:899.200058pt;}
.yd7{bottom:910.720063pt;}
.y7{bottom:915.200058pt;}
.yb3{bottom:926.720063pt;}
.yd6{bottom:930.240052pt;}
.y6{bottom:934.720063pt;}
.yb2{bottom:946.240052pt;}
.y5{bottom:954.240052pt;}
.yd5{bottom:957.760056pt;}
.yb1{bottom:965.760056pt;}
.y4{bottom:973.760056pt;}
.yd4{bottom:985.280060pt;}
.y3{bottom:993.280060pt;}
.y2{bottom:1012.800057pt;}
.h1c{height:34.079821pt;}
.h11{height:35.044789pt;}
.h1b{height:35.684524pt;}
.hc{height:37.763366pt;}
.hf{height:37.766063pt;}
.h15{height:40.003610pt;}
.h1d{height:41.437703pt;}
.h14{height:42.082267pt;}
.h12{height:42.559624pt;}
.h19{height:42.562567pt;}
.h13{height:42.567180pt;}
.hb{height:42.716714pt;}
.h1e{height:42.746609pt;}
.h9{height:43.843992pt;}
.h16{height:43.845837pt;}
.h5{height:44.296659pt;}
.ha{height:44.297379pt;}
.h2{height:44.689179pt;}
.h7{height:44.834508pt;}
.h17{height:45.283414pt;}
.he{height:47.196924pt;}
.h1a{height:48.485841pt;}
.h4{height:48.814334pt;}
.hd{height:49.286151pt;}
.h6{height:50.242109pt;}
.h10{height:51.359411pt;}
.h1f{height:51.501934pt;}
.h3{height:52.783233pt;}
.h8{height:56.964078pt;}
.h18{height:74.246229pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w16{width:34.079821pt;}
.wb{width:34.720282pt;}
.w15{width:35.359950pt;}
.w6{width:37.284494pt;}
.w9{width:37.441553pt;}
.wf{width:39.681925pt;}
.w17{width:41.280086pt;}
.wc{width:41.919876pt;}
.w13{width:41.922819pt;}
.we{width:41.925241pt;}
.w5{width:42.243850pt;}
.wd{width:42.245091pt;}
.w11{width:42.883740pt;}
.w4{width:43.205371pt;}
.w10{width:43.521204pt;}
.w8{width:46.720803pt;}
.w14{width:48.001357pt;}
.w7{width:48.961662pt;}
.w2{width:49.604615pt;}
.wa{width:51.201794pt;}
.w3{width:56.643573pt;}
.w12{width:73.604723pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x35{left:10.401942pt;}
.x1{left:94.559998pt;}
.x4d{left:106.559998pt;}
.x8{left:118.559998pt;}
.x7{left:141.759995pt;}
.x2{left:146.080002pt;}
.x36{left:161.605477pt;}
.x9{left:166.559998pt;}
.x34{left:169.922550pt;}
.x33{left:176.642614pt;}
.xb{left:189.761497pt;}
.xa{left:194.881856pt;}
.x37{left:197.444575pt;}
.xc{left:212.163884pt;}
.x38{left:220.485349pt;}
.xd{left:234.245046pt;}
.x39{left:247.526464pt;}
.x3a{left:257.766398pt;}
.xe{left:278.722033pt;}
.x3b{left:282.088422pt;}
.xf{left:300.639271pt;}
.x3c{left:313.767367pt;}
.x11{left:322.720413pt;}
.x10{left:327.840773pt;}
.x4c{left:335.524593pt;}
.x13{left:345.122801pt;}
.x12{left:346.722506pt;}
.x3d{left:352.809721pt;}
.x15{left:366.882698pt;}
.x14{left:368.482402pt;}
.x4e{left:381.600006pt;}
.x3e{left:382.729027pt;}
.x17{left:389.285125pt;}
.x16{left:390.884830pt;}
.x3f{left:397.768485pt;}
.x18{left:412.964331pt;}
.x19{left:416.480064pt;}
.x40{left:419.526084pt;}
.x1b{left:433.284306pt;}
.x1a{left:434.882370pt;}
.x41{left:441.925990pt;}
.x1d{left:455.685893pt;}
.x1c{left:457.283957pt;}
.x42{left:466.248961pt;}
.x1f{left:477.444149pt;}
.x1e{left:479.046334pt;}
.x43{left:484.488659pt;}
.x3{left:489.440002pt;}
.x21{left:499.841654pt;}
.x20{left:501.439718pt;}
.x44{left:504.006372pt;}
.x46{left:520.807505pt;}
.x23{left:521.923597pt;}
.x22{left:523.521661pt;}
.x45{left:529.445211pt;}
.x25{left:544.005579pt;}
.x24{left:545.603643pt;}
.x4{left:556.799988pt;}
.x27{left:566.243262pt;}
.x26{left:567.841326pt;}
.x47{left:574.569430pt;}
.x29{left:588.001518pt;}
.x28{left:589.603664pt;}
.x48{left:590.887883pt;}
.x5{left:601.599976pt;}
.x2b{left:610.403066pt;}
.x2a{left:612.005251pt;}
.x49{left:625.609924pt;}
.x2d{left:632.485048pt;}
.x2c{left:634.087194pt;}
.x4a{left:648.970460pt;}
.x2f{left:654.567030pt;}
.x2e{left:656.165094pt;}
.x4b{left:663.689385pt;}
.x31{left:676.964496pt;}
.x30{left:678.562560pt;}
.x6{left:699.200012pt;}
.x32{left:700.484720pt;}
}

