
    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_9741742ba62274f96c6d9df5.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_15b3280052bdae9c6c390bf9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_71d6006be2f7cd28b8d7d0f0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112793;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_85345dad6beadf2c45d5a4d6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.689941;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_c16384aaf319fd75cb783c92.woff')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_749d8588b471ad1fc045fb15.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9a8975ac980c4cb73fee8a56.woff')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_97c2688b8c920056fe406a9f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249294,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);}
.v4{vertical-align:-19.800000px;}
.v3{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.000000px;}
.v1{vertical-align:13.860000px;}
.v5{vertical-align:15.840000px;}
.v2{vertical-align:19.800000px;}
.ls1{letter-spacing:-9.114000px;}
.ls2{letter-spacing:-7.702800px;}
.ls7{letter-spacing:-1.287600px;}
.ls8{letter-spacing:-1.030080px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:7.246800px;}
.ls4{letter-spacing:30.900000px;}
.ls6{letter-spacing:34.251600px;}
.ls3{letter-spacing:37.221000px;}
.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;}
}
.ws7{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.500000px;}
.ws6{word-spacing:-12.000000px;}
.ws5{word-spacing:-8.700000px;}
.ws9{word-spacing:-7.412400px;}
.ws8{word-spacing:-6.960000px;}
.wsa{word-spacing:-5.929920px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:8.055600px;}
.ws1{word-spacing:10.877400px;}
.ws0{word-spacing:10.878000px;}
._16{margin-left:-1841.563200px;}
._19{margin-left:-1563.647400px;}
._1a{margin-left:-684.115200px;}
._1b{margin-left:-655.515600px;}
._14{margin-left:-30.869400px;}
._1e{margin-left:-14.079000px;}
._2{margin-left:-7.920000px;}
._b{margin-left:-6.708000px;}
._0{margin-left:-5.280000px;}
._1{margin-left:-3.504000px;}
._11{margin-left:-2.296200px;}
._3{margin-left:-1.296000px;}
._12{width:1.044000px;}
._5{width:2.052000px;}
._4{width:3.132000px;}
._6{width:4.293600px;}
._f{width:5.397600px;}
._8{width:6.480000px;}
._7{width:7.938000px;}
._e{width:9.126000px;}
._9{width:10.206000px;}
._a{width:11.934000px;}
._18{width:15.331200px;}
._17{width:16.348800px;}
._10{width:18.198000px;}
._c{width:23.006400px;}
._d{width:25.164000px;}
._1f{width:28.176000px;}
._1d{width:30.921000px;}
._15{width:33.231600px;}
._13{width:47.151000px;}
._1c{width:60.900000px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:24.360000px;}
.fs9{font-size:27.840000px;}
.fs3{font-size:29.400000px;}
.fs8{font-size:34.800000px;}
.fsb{font-size:41.760000px;}
.fs2{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fsa{font-size:70.582800px;}
.fs4{font-size:72.000000px;}
.y57{bottom:-1.156950px;}
.y0{bottom:0.000000px;}
.y49{bottom:115.089450px;}
.y3{bottom:115.089600px;}
.ye7{bottom:115.089900px;}
.y1f{bottom:115.113150px;}
.yba{bottom:115.113450px;}
.y1{bottom:115.410600px;}
.ye5{bottom:115.410900px;}
.y1d{bottom:116.308200px;}
.yb8{bottom:116.308650px;}
.y5f{bottom:161.574750px;}
.yf1{bottom:161.575050px;}
.ye4{bottom:161.575200px;}
.yb7{bottom:165.534600px;}
.y48{bottom:165.534750px;}
.y78{bottom:175.974750px;}
.yf0{bottom:175.975050px;}
.ye3{bottom:175.975200px;}
.y5e{bottom:179.934750px;}
.y47{bottom:180.226650px;}
.y73{bottom:184.186650px;}
.y8b{bottom:190.374750px;}
.y77{bottom:194.334750px;}
.ye2{bottom:194.335050px;}
.y46{bottom:198.586650px;}
.yb6{bottom:198.878550px;}
.y72{bottom:198.878700px;}
.y8a{bottom:204.774750px;}
.y76{bottom:209.026650px;}
.y1c{bottom:209.299500px;}
.y55{bottom:210.266850px;}
.ye1{bottom:212.987100px;}
.y71{bottom:213.278550px;}
.y45{bottom:213.278700px;}
.ya9{bottom:217.238700px;}
.y89{bottom:223.134750px;}
.y75{bottom:227.386650px;}
.yb5{bottom:227.678550px;}
.y44{bottom:227.678700px;}
.ye0{bottom:227.679000px;}
.y54{bottom:228.266850px;}
.ya8{bottom:231.930600px;}
.y88{bottom:237.826650px;}
.y43{bottom:242.078700px;}
.ydf{bottom:242.079000px;}
.y70{bottom:246.038550px;}
.y53{bottom:246.266850px;}
.y1b{bottom:248.403450px;}
.ya7{bottom:250.290600px;}
.y87{bottom:252.226800px;}
.y42{bottom:256.478700px;}
.yde{bottom:256.479000px;}
.y52{bottom:259.316850px;}
.y74{bottom:260.438700px;}
.y6f{bottom:260.730600px;}
.y1a{bottom:264.903450px;}
.y86{bottom:266.626800px;}
.y41{bottom:270.878700px;}
.ydd{bottom:274.839000px;}
.y6e{bottom:275.130600px;}
.y85{bottom:281.026800px;}
.y51{bottom:282.266850px;}
.y40{bottom:285.278700px;}
.y6d{bottom:289.530600px;}
.ydc{bottom:289.531050px;}
.y19{bottom:289.907400px;}
.y84{bottom:295.426800px;}
.ya6{bottom:296.167200px;}
.yef{bottom:297.685500px;}
.y3f{bottom:299.678700px;}
.y50{bottom:300.266850px;}
.y5d{bottom:303.638700px;}
.ydb{bottom:303.931050px;}
.y18{bottom:306.407400px;}
.y6c{bottom:307.890600px;}
.y83{bottom:313.786650px;}
.y3e{bottom:314.078700px;}
.ya5{bottom:314.167200px;}
.y4f{bottom:318.266850px;}
.y5c{bottom:318.330600px;}
.yda{bottom:322.291050px;}
.y17{bottom:322.907400px;}
.yb4{bottom:326.542650px;}
.y3d{bottom:328.478700px;}
.y4e{bottom:331.316850px;}
.ya4{bottom:332.167200px;}
.y5b{bottom:336.690600px;}
.y16{bottom:339.407400px;}
.yd9{bottom:340.942950px;}
.yb3{bottom:341.234550px;}
.y82{bottom:342.878700px;}
.y3c{bottom:346.838700px;}
.ya3{bottom:350.167200px;}
.y6b{bottom:351.301050px;}
.y5a{bottom:351.382650px;}
.y4d{bottom:354.266850px;}
.y15{bottom:355.907400px;}
.y81{bottom:357.278700px;}
.yb2{bottom:359.594550px;}
.yd8{bottom:359.595000px;}
.y3b{bottom:361.530600px;}
.y59{bottom:365.782650px;}
.y6a{bottom:369.301050px;}
.y80{bottom:371.678700px;}
.y14{bottom:372.407400px;}
.yb1{bottom:378.246600px;}
.yd7{bottom:378.246900px;}
.y3a{bottom:379.890600px;}
.y58{bottom:384.142650px;}
.y7f{bottom:386.078700px;}
.ya2{bottom:386.167200px;}
.y69{bottom:387.301050px;}
.yee{bottom:387.301500px;}
.y13{bottom:388.907400px;}
.y4c{bottom:391.694850px;}
.yd6{bottom:396.898950px;}
.y7e{bottom:400.478700px;}
.ya1{bottom:404.167200px;}
.y68{bottom:405.301050px;}
.yed{bottom:405.301500px;}
.y12{bottom:405.407400px;}
.y7d{bottom:414.878700px;}
.y4b{bottom:416.072700px;}
.y11{bottom:421.907400px;}
.ya0{bottom:422.167200px;}
.y67{bottom:423.301050px;}
.yec{bottom:423.301500px;}
.y7c{bottom:429.278700px;}
.y4a{bottom:434.072700px;}
.yd5{bottom:434.923500px;}
.y10{bottom:438.407400px;}
.y9f{bottom:440.167200px;}
.y66{bottom:441.301050px;}
.yeb{bottom:441.301500px;}
.y7b{bottom:447.638700px;}
.yd4{bottom:452.923500px;}
.yf{bottom:454.907400px;}
.y9e{bottom:458.167200px;}
.y65{bottom:459.301050px;}
.yea{bottom:459.301500px;}
.y39{bottom:465.679050px;}
.y56{bottom:467.709000px;}
.ye{bottom:471.407400px;}
.y9d{bottom:476.167200px;}
.y64{bottom:477.301050px;}
.yd3{bottom:477.301500px;}
.y38{bottom:483.679050px;}
.yd{bottom:487.907400px;}
.y9c{bottom:494.167200px;}
.y63{bottom:495.301050px;}
.yd2{bottom:495.301500px;}
.y37{bottom:501.679050px;}
.yc{bottom:504.407400px;}
.y9b{bottom:512.167200px;}
.y62{bottom:513.301050px;}
.yd1{bottom:513.301500px;}
.y36{bottom:519.679050px;}
.yb{bottom:520.907400px;}
.y9a{bottom:530.167200px;}
.y61{bottom:531.301050px;}
.yd0{bottom:531.301500px;}
.ya{bottom:537.407400px;}
.y35{bottom:537.679050px;}
.y99{bottom:548.167200px;}
.y60{bottom:549.301050px;}
.ycf{bottom:549.301500px;}
.y9{bottom:553.907400px;}
.y34{bottom:555.679050px;}
.y98{bottom:566.167200px;}
.yb0{bottom:567.301050px;}
.yce{bottom:567.301500px;}
.y8{bottom:570.407400px;}
.y33{bottom:573.679050px;}
.y97{bottom:584.167200px;}
.yaf{bottom:585.301050px;}
.ycd{bottom:585.301500px;}
.y7{bottom:586.907400px;}
.y32{bottom:591.679050px;}
.yae{bottom:603.301050px;}
.ycc{bottom:603.301500px;}
.y31{bottom:609.679050px;}
.ye9{bottom:609.679350px;}
.yad{bottom:621.301050px;}
.ycb{bottom:621.301500px;}
.y30{bottom:627.679050px;}
.ye8{bottom:627.679350px;}
.y96{bottom:632.923200px;}
.yac{bottom:639.301050px;}
.y2f{bottom:645.679050px;}
.yca{bottom:645.679350px;}
.y95{bottom:650.923200px;}
.yab{bottom:657.301050px;}
.y2e{bottom:663.679050px;}
.yc9{bottom:663.679350px;}
.y94{bottom:668.923200px;}
.yaa{bottom:675.301050px;}
.y2d{bottom:681.679050px;}
.yc8{bottom:681.679350px;}
.y6{bottom:686.769900px;}
.y93{bottom:693.301050px;}
.y2c{bottom:699.679050px;}
.yc7{bottom:699.679350px;}
.y5{bottom:702.969900px;}
.y92{bottom:711.301050px;}
.y2b{bottom:717.679050px;}
.yc6{bottom:717.679350px;}
.y91{bottom:729.301050px;}
.y2a{bottom:735.679050px;}
.yc5{bottom:735.679350px;}
.y4{bottom:744.369900px;}
.y90{bottom:747.301050px;}
.y7a{bottom:750.679050px;}
.y29{bottom:753.679050px;}
.yc4{bottom:753.679350px;}
.y8f{bottom:765.301050px;}
.y79{bottom:768.679050px;}
.y28{bottom:771.679050px;}
.yc3{bottom:771.679350px;}
.y8e{bottom:783.301050px;}
.y27{bottom:789.679050px;}
.yc2{bottom:789.679350px;}
.y8d{bottom:801.301050px;}
.y26{bottom:807.679050px;}
.yc1{bottom:807.679350px;}
.y8c{bottom:819.301050px;}
.y25{bottom:825.679050px;}
.yc0{bottom:825.679350px;}
.y24{bottom:843.679050px;}
.ybf{bottom:843.679350px;}
.y23{bottom:861.679050px;}
.ybe{bottom:861.679350px;}
.y22{bottom:879.679050px;}
.ybd{bottom:879.679350px;}
.y21{bottom:897.679050px;}
.ybc{bottom:897.679350px;}
.y20{bottom:915.679050px;}
.ybb{bottom:915.679350px;}
.y2{bottom:964.164000px;}
.ye6{bottom:964.164300px;}
.y1e{bottom:964.530000px;}
.yb9{bottom:964.530450px;}
.hf{height:23.840039px;}
.hb{height:27.074063px;}
.h13{height:32.882812px;}
.hd{height:33.842578px;}
.h14{height:36.641953px;}
.h9{height:37.494141px;}
.h4{height:37.549805px;}
.h2{height:40.546875px;}
.he{height:41.103516px;}
.h3{height:42.117188px;}
.hc{height:42.914062px;}
.h8{height:47.381836px;}
.h7{height:47.513672px;}
.ha{height:53.642578px;}
.h6{height:58.072266px;}
.h11{height:61.932271px;}
.h5{height:63.175781px;}
.h12{height:65.642578px;}
.h10{height:459.220500px;}
.h0{height:1045.984500px;}
.h1{height:1046.250000px;}
.w3{width:438.891000px;}
.w2{width:735.591000px;}
.w0{width:748.347000px;}
.w1{width:748.500000px;}
.x0{left:0.000000px;}
.xd{left:12.756000px;}
.x9{left:119.055150px;}
.x10{left:127.558950px;}
.x3{left:140.314950px;}
.xc{left:153.070950px;}
.x16{left:161.574900px;}
.x13{left:163.471500px;}
.x11{left:174.330750px;}
.x12{left:182.834700px;}
.x4{left:247.742100px;}
.x6{left:278.635650px;}
.xf{left:280.673100px;}
.xb{left:285.770250px;}
.x2{left:293.429100px;}
.xa{left:318.933000px;}
.x5{left:335.919450px;}
.x7{left:393.307050px;}
.x15{left:409.618350px;}
.x8{left:410.662650px;}
.x14{left:440.425350px;}
.xe{left:594.035400px;}
.x1{left:606.791400px;}
@media print{
.v4{vertical-align:-17.600000pt;}
.v3{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.666667pt;}
.v1{vertical-align:12.320000pt;}
.v5{vertical-align:14.080000pt;}
.v2{vertical-align:17.600000pt;}
.ls1{letter-spacing:-8.101333pt;}
.ls2{letter-spacing:-6.846933pt;}
.ls7{letter-spacing:-1.144533pt;}
.ls8{letter-spacing:-0.915627pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:6.441600pt;}
.ls4{letter-spacing:27.466667pt;}
.ls6{letter-spacing:30.445867pt;}
.ls3{letter-spacing:33.085333pt;}
.ws7{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.000000pt;}
.ws6{word-spacing:-10.666667pt;}
.ws5{word-spacing:-7.733333pt;}
.ws9{word-spacing:-6.588800pt;}
.ws8{word-spacing:-6.186667pt;}
.wsa{word-spacing:-5.271040pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:7.160533pt;}
.ws1{word-spacing:9.668800pt;}
.ws0{word-spacing:9.669333pt;}
._16{margin-left:-1636.945067pt;}
._19{margin-left:-1389.908800pt;}
._1a{margin-left:-608.102400pt;}
._1b{margin-left:-582.680533pt;}
._14{margin-left:-27.439467pt;}
._1e{margin-left:-12.514667pt;}
._2{margin-left:-7.040000pt;}
._b{margin-left:-5.962667pt;}
._0{margin-left:-4.693333pt;}
._1{margin-left:-3.114667pt;}
._11{margin-left:-2.041067pt;}
._3{margin-left:-1.152000pt;}
._12{width:0.928000pt;}
._5{width:1.824000pt;}
._4{width:2.784000pt;}
._6{width:3.816533pt;}
._f{width:4.797867pt;}
._8{width:5.760000pt;}
._7{width:7.056000pt;}
._e{width:8.112000pt;}
._9{width:9.072000pt;}
._a{width:10.608000pt;}
._18{width:13.627733pt;}
._17{width:14.532267pt;}
._10{width:16.176000pt;}
._c{width:20.450133pt;}
._d{width:22.368000pt;}
._1f{width:25.045333pt;}
._1d{width:27.485333pt;}
._15{width:29.539200pt;}
._13{width:41.912000pt;}
._1c{width:54.133333pt;}
.fs7{font-size:21.653333pt;}
.fs9{font-size:24.746667pt;}
.fs3{font-size:26.133333pt;}
.fs8{font-size:30.933333pt;}
.fsb{font-size:37.120000pt;}
.fs2{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fsa{font-size:62.740267pt;}
.fs4{font-size:64.000000pt;}
.y57{bottom:-1.028400pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:102.301733pt;}
.y3{bottom:102.301867pt;}
.ye7{bottom:102.302133pt;}
.y1f{bottom:102.322800pt;}
.yba{bottom:102.323067pt;}
.y1{bottom:102.587200pt;}
.ye5{bottom:102.587467pt;}
.y1d{bottom:103.385067pt;}
.yb8{bottom:103.385467pt;}
.y5f{bottom:143.622000pt;}
.yf1{bottom:143.622267pt;}
.ye4{bottom:143.622400pt;}
.yb7{bottom:147.141867pt;}
.y48{bottom:147.142000pt;}
.y78{bottom:156.422000pt;}
.yf0{bottom:156.422267pt;}
.ye3{bottom:156.422400pt;}
.y5e{bottom:159.942000pt;}
.y47{bottom:160.201467pt;}
.y73{bottom:163.721467pt;}
.y8b{bottom:169.222000pt;}
.y77{bottom:172.742000pt;}
.ye2{bottom:172.742267pt;}
.y46{bottom:176.521467pt;}
.yb6{bottom:176.780933pt;}
.y72{bottom:176.781067pt;}
.y8a{bottom:182.022000pt;}
.y76{bottom:185.801467pt;}
.y1c{bottom:186.044000pt;}
.y55{bottom:186.903867pt;}
.ye1{bottom:189.321867pt;}
.y71{bottom:189.580933pt;}
.y45{bottom:189.581067pt;}
.ya9{bottom:193.101067pt;}
.y89{bottom:198.342000pt;}
.y75{bottom:202.121467pt;}
.yb5{bottom:202.380933pt;}
.y44{bottom:202.381067pt;}
.ye0{bottom:202.381333pt;}
.y54{bottom:202.903867pt;}
.ya8{bottom:206.160533pt;}
.y88{bottom:211.401467pt;}
.y43{bottom:215.181067pt;}
.ydf{bottom:215.181333pt;}
.y70{bottom:218.700933pt;}
.y53{bottom:218.903867pt;}
.y1b{bottom:220.803067pt;}
.ya7{bottom:222.480533pt;}
.y87{bottom:224.201600pt;}
.y42{bottom:227.981067pt;}
.yde{bottom:227.981333pt;}
.y52{bottom:230.503867pt;}
.y74{bottom:231.501067pt;}
.y6f{bottom:231.760533pt;}
.y1a{bottom:235.469733pt;}
.y86{bottom:237.001600pt;}
.y41{bottom:240.781067pt;}
.ydd{bottom:244.301333pt;}
.y6e{bottom:244.560533pt;}
.y85{bottom:249.801600pt;}
.y51{bottom:250.903867pt;}
.y40{bottom:253.581067pt;}
.y6d{bottom:257.360533pt;}
.ydc{bottom:257.360933pt;}
.y19{bottom:257.695467pt;}
.y84{bottom:262.601600pt;}
.ya6{bottom:263.259733pt;}
.yef{bottom:264.609333pt;}
.y3f{bottom:266.381067pt;}
.y50{bottom:266.903867pt;}
.y5d{bottom:269.901067pt;}
.ydb{bottom:270.160933pt;}
.y18{bottom:272.362133pt;}
.y6c{bottom:273.680533pt;}
.y83{bottom:278.921467pt;}
.y3e{bottom:279.181067pt;}
.ya5{bottom:279.259733pt;}
.y4f{bottom:282.903867pt;}
.y5c{bottom:282.960533pt;}
.yda{bottom:286.480933pt;}
.y17{bottom:287.028800pt;}
.yb4{bottom:290.260133pt;}
.y3d{bottom:291.981067pt;}
.y4e{bottom:294.503867pt;}
.ya4{bottom:295.259733pt;}
.y5b{bottom:299.280533pt;}
.y16{bottom:301.695467pt;}
.yd9{bottom:303.060400pt;}
.yb3{bottom:303.319600pt;}
.y82{bottom:304.781067pt;}
.y3c{bottom:308.301067pt;}
.ya3{bottom:311.259733pt;}
.y6b{bottom:312.267600pt;}
.y5a{bottom:312.340133pt;}
.y4d{bottom:314.903867pt;}
.y15{bottom:316.362133pt;}
.y81{bottom:317.581067pt;}
.yb2{bottom:319.639600pt;}
.yd8{bottom:319.640000pt;}
.y3b{bottom:321.360533pt;}
.y59{bottom:325.140133pt;}
.y6a{bottom:328.267600pt;}
.y80{bottom:330.381067pt;}
.y14{bottom:331.028800pt;}
.yb1{bottom:336.219200pt;}
.yd7{bottom:336.219467pt;}
.y3a{bottom:337.680533pt;}
.y58{bottom:341.460133pt;}
.y7f{bottom:343.181067pt;}
.ya2{bottom:343.259733pt;}
.y69{bottom:344.267600pt;}
.yee{bottom:344.268000pt;}
.y13{bottom:345.695467pt;}
.y4c{bottom:348.173200pt;}
.yd6{bottom:352.799067pt;}
.y7e{bottom:355.981067pt;}
.ya1{bottom:359.259733pt;}
.y68{bottom:360.267600pt;}
.yed{bottom:360.268000pt;}
.y12{bottom:360.362133pt;}
.y7d{bottom:368.781067pt;}
.y4b{bottom:369.842400pt;}
.y11{bottom:375.028800pt;}
.ya0{bottom:375.259733pt;}
.y67{bottom:376.267600pt;}
.yec{bottom:376.268000pt;}
.y7c{bottom:381.581067pt;}
.y4a{bottom:385.842400pt;}
.yd5{bottom:386.598667pt;}
.y10{bottom:389.695467pt;}
.y9f{bottom:391.259733pt;}
.y66{bottom:392.267600pt;}
.yeb{bottom:392.268000pt;}
.y7b{bottom:397.901067pt;}
.yd4{bottom:402.598667pt;}
.yf{bottom:404.362133pt;}
.y9e{bottom:407.259733pt;}
.y65{bottom:408.267600pt;}
.yea{bottom:408.268000pt;}
.y39{bottom:413.936933pt;}
.y56{bottom:415.741333pt;}
.ye{bottom:419.028800pt;}
.y9d{bottom:423.259733pt;}
.y64{bottom:424.267600pt;}
.yd3{bottom:424.268000pt;}
.y38{bottom:429.936933pt;}
.yd{bottom:433.695467pt;}
.y9c{bottom:439.259733pt;}
.y63{bottom:440.267600pt;}
.yd2{bottom:440.268000pt;}
.y37{bottom:445.936933pt;}
.yc{bottom:448.362133pt;}
.y9b{bottom:455.259733pt;}
.y62{bottom:456.267600pt;}
.yd1{bottom:456.268000pt;}
.y36{bottom:461.936933pt;}
.yb{bottom:463.028800pt;}
.y9a{bottom:471.259733pt;}
.y61{bottom:472.267600pt;}
.yd0{bottom:472.268000pt;}
.ya{bottom:477.695467pt;}
.y35{bottom:477.936933pt;}
.y99{bottom:487.259733pt;}
.y60{bottom:488.267600pt;}
.ycf{bottom:488.268000pt;}
.y9{bottom:492.362133pt;}
.y34{bottom:493.936933pt;}
.y98{bottom:503.259733pt;}
.yb0{bottom:504.267600pt;}
.yce{bottom:504.268000pt;}
.y8{bottom:507.028800pt;}
.y33{bottom:509.936933pt;}
.y97{bottom:519.259733pt;}
.yaf{bottom:520.267600pt;}
.ycd{bottom:520.268000pt;}
.y7{bottom:521.695467pt;}
.y32{bottom:525.936933pt;}
.yae{bottom:536.267600pt;}
.ycc{bottom:536.268000pt;}
.y31{bottom:541.936933pt;}
.ye9{bottom:541.937200pt;}
.yad{bottom:552.267600pt;}
.ycb{bottom:552.268000pt;}
.y30{bottom:557.936933pt;}
.ye8{bottom:557.937200pt;}
.y96{bottom:562.598400pt;}
.yac{bottom:568.267600pt;}
.y2f{bottom:573.936933pt;}
.yca{bottom:573.937200pt;}
.y95{bottom:578.598400pt;}
.yab{bottom:584.267600pt;}
.y2e{bottom:589.936933pt;}
.yc9{bottom:589.937200pt;}
.y94{bottom:594.598400pt;}
.yaa{bottom:600.267600pt;}
.y2d{bottom:605.936933pt;}
.yc8{bottom:605.937200pt;}
.y6{bottom:610.462133pt;}
.y93{bottom:616.267600pt;}
.y2c{bottom:621.936933pt;}
.yc7{bottom:621.937200pt;}
.y5{bottom:624.862133pt;}
.y92{bottom:632.267600pt;}
.y2b{bottom:637.936933pt;}
.yc6{bottom:637.937200pt;}
.y91{bottom:648.267600pt;}
.y2a{bottom:653.936933pt;}
.yc5{bottom:653.937200pt;}
.y4{bottom:661.662133pt;}
.y90{bottom:664.267600pt;}
.y7a{bottom:667.270267pt;}
.y29{bottom:669.936933pt;}
.yc4{bottom:669.937200pt;}
.y8f{bottom:680.267600pt;}
.y79{bottom:683.270267pt;}
.y28{bottom:685.936933pt;}
.yc3{bottom:685.937200pt;}
.y8e{bottom:696.267600pt;}
.y27{bottom:701.936933pt;}
.yc2{bottom:701.937200pt;}
.y8d{bottom:712.267600pt;}
.y26{bottom:717.936933pt;}
.yc1{bottom:717.937200pt;}
.y8c{bottom:728.267600pt;}
.y25{bottom:733.936933pt;}
.yc0{bottom:733.937200pt;}
.y24{bottom:749.936933pt;}
.ybf{bottom:749.937200pt;}
.y23{bottom:765.936933pt;}
.ybe{bottom:765.937200pt;}
.y22{bottom:781.936933pt;}
.ybd{bottom:781.937200pt;}
.y21{bottom:797.936933pt;}
.ybc{bottom:797.937200pt;}
.y20{bottom:813.936933pt;}
.ybb{bottom:813.937200pt;}
.y2{bottom:857.034667pt;}
.ye6{bottom:857.034933pt;}
.y1e{bottom:857.360000pt;}
.yb9{bottom:857.360400pt;}
.hf{height:21.191146pt;}
.hb{height:24.065833pt;}
.h13{height:29.229167pt;}
.hd{height:30.082292pt;}
.h14{height:32.570625pt;}
.h9{height:33.328125pt;}
.h4{height:33.377604pt;}
.h2{height:36.041667pt;}
.he{height:36.536458pt;}
.h3{height:37.437500pt;}
.hc{height:38.145833pt;}
.h8{height:42.117188pt;}
.h7{height:42.234375pt;}
.ha{height:47.682292pt;}
.h6{height:51.619792pt;}
.h11{height:55.050908pt;}
.h5{height:56.156250pt;}
.h12{height:58.348958pt;}
.h10{height:408.196000pt;}
.h0{height:929.764000pt;}
.h1{height:930.000000pt;}
.w3{width:390.125333pt;}
.w2{width:653.858667pt;}
.w0{width:665.197333pt;}
.w1{width:665.333333pt;}
.x0{left:0.000000pt;}
.xd{left:11.338667pt;}
.x9{left:105.826800pt;}
.x10{left:113.385733pt;}
.x3{left:124.724400pt;}
.xc{left:136.063067pt;}
.x16{left:143.622133pt;}
.x13{left:145.308000pt;}
.x11{left:154.960667pt;}
.x12{left:162.519733pt;}
.x4{left:220.215200pt;}
.x6{left:247.676133pt;}
.xf{left:249.487200pt;}
.xb{left:254.018000pt;}
.x2{left:260.825867pt;}
.xa{left:283.496000pt;}
.x5{left:298.595067pt;}
.x7{left:349.606267pt;}
.x15{left:364.105200pt;}
.x8{left:365.033467pt;}
.x14{left:391.489200pt;}
.xe{left:528.031467pt;}
.x1{left:539.370133pt;}
}

