
    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_bf5fcbd2c9323bbecc8e98d0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_be62dd938957d3cd53f50489.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d75ae6c38f3aa4b4dc4ac6fd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.364746;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_da9fafba194cb528f5109862.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7894bebaa815ca39a92b43d2.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_05d96564843a1b2d039da4bd.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;}
.m4{transform:matrix(0.207865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207865,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.231928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231928,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247899,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247917,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m7{transform:matrix(0.251645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251645,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.296296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296296,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls21{letter-spacing:-7.781250px;}
.ls20{letter-spacing:-7.003125px;}
.ls22{letter-spacing:-6.752700px;}
.ls24{letter-spacing:-6.330150px;}
.lsd{letter-spacing:-6.314550px;}
.ls15{letter-spacing:-5.962200px;}
.ls26{letter-spacing:-4.636800px;}
.ls13{letter-spacing:-4.468800px;}
.ls28{letter-spacing:-3.089475px;}
.ls19{letter-spacing:-2.997225px;}
.ls11{letter-spacing:-2.975400px;}
.ls16{letter-spacing:-2.781600px;}
.ls29{letter-spacing:-2.318400px;}
.ls14{letter-spacing:-2.234400px;}
.ls1e{letter-spacing:-1.556250px;}
.ls1c{letter-spacing:-1.542150px;}
.lsb{letter-spacing:-1.521450px;}
.lsf{letter-spacing:-1.517250px;}
.ls2b{letter-spacing:-1.502850px;}
.ls10{letter-spacing:-1.493400px;}
.ls25{letter-spacing:-0.845775px;}
.ls1f{letter-spacing:-0.778125px;}
.ls2a{letter-spacing:-0.771075px;}
.ls17{letter-spacing:-0.770250px;}
.lse{letter-spacing:-0.756000px;}
.ls1a{letter-spacing:-0.749250px;}
.ls12{letter-spacing:-0.741000px;}
.lsc{letter-spacing:-0.740025px;}
.lsa{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.739500px;}
.ls27{letter-spacing:0.752250px;}
.ls1d{letter-spacing:0.770250px;}
.ls0{letter-spacing:0.771075px;}
.ls4{letter-spacing:0.778125px;}
.ls1b{letter-spacing:1.542150px;}
.ls3{letter-spacing:1.556250px;}
.ls2{letter-spacing:2.334375px;}
.ls18{letter-spacing:2.538000px;}
.ls1{letter-spacing:3.112500px;}
.ls8{letter-spacing:3.890625px;}
.ls23{letter-spacing:3.934500px;}
.ls5{letter-spacing:4.668750px;}
.ls6{letter-spacing:5.446875px;}
.ls7{letter-spacing:6.225000px;}
.ls2c{letter-spacing:6.467775px;}
.ls9{letter-spacing:7.003125px;}
.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:0.000000px;}
._15{margin-left:-73.484258px;}
._1{margin-left:-27.668874px;}
._7{margin-left:-12.882000px;}
._5{margin-left:-11.001000px;}
._16{margin-left:-9.821850px;}
._2{margin-left:-8.048400px;}
._18{margin-left:-6.852513px;}
._0{margin-left:-4.569216px;}
._3{margin-left:-3.271800px;}
._4{margin-left:-1.710000px;}
._8{width:1.185600px;}
._a{width:2.535750px;}
._c{width:4.380900px;}
._b{width:5.585100px;}
._d{width:6.841623px;}
._10{width:8.030250px;}
._e{width:9.804327px;}
._11{width:11.018250px;}
._6{width:12.152400px;}
._13{width:13.244820px;}
._9{width:14.466600px;}
._17{width:15.500250px;}
._f{width:16.700400px;}
._12{width:18.478575px;}
._14{width:20.805750px;}
._19{width:22.637427px;}
.fc0{color:transparent;}
.fs10{font-size:44.250000px;}
.fsf{font-size:47.250000px;}
.fs1{font-size:50.250000px;}
.fs0{font-size:51.750000px;}
.fsa{font-size:55.500000px;}
.fs6{font-size:57.000000px;}
.fs9{font-size:57.750000px;}
.fs7{font-size:59.250000px;}
.fs8{font-size:60.000000px;}
.fse{font-size:60.750000px;}
.fsc{font-size:61.500000px;}
.fsb{font-size:62.250000px;}
.fs11{font-size:63.750000px;}
.fsd{font-size:64.500000px;}
.fs2{font-size:66.750000px;}
.fs4{font-size:89.250000px;}
.fs3{font-size:90.000000px;}
.fs5{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:154.081725px;}
.y5c{bottom:154.427437px;}
.y30{bottom:170.462100px;}
.y5b{bottom:170.814750px;}
.y5a{bottom:186.657375px;}
.y2f{bottom:186.659850px;}
.y58{bottom:202.490813px;}
.y59{bottom:202.500000px;}
.y2e{bottom:217.078575px;}
.y57{bottom:218.878125px;}
.y2d{bottom:232.921200px;}
.y2c{bottom:232.925775px;}
.y56{bottom:234.720750px;}
.y2b{bottom:248.768400px;}
.y55{bottom:250.737825px;}
.y2a{bottom:265.140150px;}
.y54{bottom:266.580450px;}
.y53{bottom:282.420600px;}
.y52{bottom:282.426488px;}
.y29{bottom:296.461050px;}
.y51{bottom:298.440300px;}
.y50{bottom:314.643450px;}
.y4f{bottom:330.486075px;}
.y28{bottom:344.161050px;}
.y4e{bottom:346.857825px;}
.y27{bottom:360.540000px;}
.y4c{bottom:362.695463px;}
.y4d{bottom:362.700450px;}
.y4b{bottom:378.538088px;}
.y26{bottom:392.403600px;}
.y4a{bottom:394.551900px;}
.y25{bottom:408.604163px;}
.y49{bottom:410.394525px;}
.y24{bottom:424.446788px;}
.y48{bottom:426.408338px;}
.y22{bottom:440.455500px;}
.y23{bottom:440.460600px;}
.y47{bottom:442.250963px;}
.y21{bottom:456.298125px;}
.y46{bottom:458.093588px;}
.y20{bottom:472.146637px;}
.y45{bottom:474.480900px;}
.y1f{bottom:488.160450px;}
.y44{bottom:490.332788px;}
.y1e{bottom:504.009075px;}
.y43{bottom:506.533350px;}
.y1d{bottom:520.209637px;}
.y42{bottom:522.547163px;}
.y1c{bottom:536.223450px;}
.y41{bottom:538.389788px;}
.y1b{bottom:552.066075px;}
.y40{bottom:554.403600px;}
.y1a{bottom:568.079888px;}
.y3f{bottom:570.246225px;}
.y19{bottom:584.280788px;}
.y3e{bottom:586.446788px;}
.y18{bottom:600.483450px;}
.y3d{bottom:602.456813px;}
.y17{bottom:616.497263px;}
.y3c{bottom:618.657375px;}
.y16{bottom:632.339888px;}
.y3b{bottom:634.500000px;}
.y15{bottom:648.540450px;}
.y14{bottom:648.543863px;}
.y3a{bottom:650.514600px;}
.y13{bottom:664.557675px;}
.y39{bottom:665.999288px;}
.y12{bottom:680.402062px;}
.y38{bottom:682.199850px;}
.y11{bottom:696.789375px;}
.y37{bottom:698.224612px;}
.y10{bottom:712.632000px;}
.y36{bottom:714.067237px;}
.yf{bottom:728.832562px;}
.y35{bottom:730.083150px;}
.ye{bottom:744.846375px;}
.y34{bottom:746.283712px;}
.yd{bottom:761.046937px;}
.y33{bottom:762.126337px;}
.yc{bottom:777.060750px;}
.y32{bottom:778.140150px;}
.yb{bottom:844.199850px;}
.ya{bottom:863.456813px;}
.y9{bottom:882.720750px;}
.y8{bottom:901.980300px;}
.y7{bottom:940.482000px;}
.y6{bottom:974.511000px;}
.y5{bottom:1008.540000px;}
.y2{bottom:1140.481350px;}
.y4{bottom:1142.460600px;}
.y3{bottom:1168.740450px;}
.y1{bottom:1176.480900px;}
.h15{height:46.151367px;}
.h14{height:49.280273px;}
.h3{height:52.409180px;}
.h2{height:53.973633px;}
.hd{height:53.991183px;}
.hc{height:57.884766px;}
.h12{height:58.886719px;}
.h8{height:59.449219px;}
.h11{height:59.622803px;}
.hb{height:60.231445px;}
.hf{height:60.358887px;}
.he{height:61.094971px;}
.h13{height:61.104871px;}
.h18{height:61.105471px;}
.h17{height:61.110121px;}
.h16{height:61.121971px;}
.h1a{height:61.148821px;}
.h9{height:61.795898px;}
.h19{height:62.567139px;}
.ha{height:62.578125px;}
.h10{height:63.303223px;}
.h4{height:65.967773px;}
.h6{height:93.084961px;}
.h5{height:93.867188px;}
.h7{height:118.898438px;}
.h1b{height:1264.500000px;}
.h1{height:1266.000000px;}
.h0{height:1266.300000px;}
.w2{width:892.500000px;}
.w0{width:893.880000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x9{left:53.459550px;}
.x1{left:54.720150px;}
.x8{left:55.799550px;}
.x13{left:60.120450px;}
.xa{left:69.120000px;}
.x1a{left:80.100300px;}
.x1b{left:113.759550px;}
.x1d{left:127.080000px;}
.x1c{left:129.060750px;}
.x15{left:130.140150px;}
.x14{left:131.580450px;}
.xb{left:141.120450px;}
.x19{left:142.379550px;}
.x1e{left:147.420600px;}
.x16{left:150.120000px;}
.x2{left:157.140150px;}
.xc{left:158.939700px;}
.x3{left:167.759550px;}
.x1f{left:184.860300px;}
.x4{left:197.460600px;}
.x20{left:202.679550px;}
.x5{left:218.160450px;}
.xd{left:233.280450px;}
.xe{left:253.260150px;}
.xf{left:312.840150px;}
.x10{left:342.720750px;}
.x17{left:374.939700px;}
.x18{left:401.219550px;}
.x11{left:427.140150px;}
.x12{left:445.140750px;}
.x21{left:447.479250px;}
.x23{left:448.920150px;}
.x22{left:473.400000px;}
.x28{left:550.260150px;}
.x29{left:570.239850px;}
.x26{left:590.939700px;}
.x27{left:616.499400px;}
.x6{left:649.799550px;}
.x24{left:672.659850px;}
.x25{left:693.000600px;}
.x7{left:754.739400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls21{letter-spacing:-6.916667pt;}
.ls20{letter-spacing:-6.225000pt;}
.ls22{letter-spacing:-6.002400pt;}
.ls24{letter-spacing:-5.626800pt;}
.lsd{letter-spacing:-5.612933pt;}
.ls15{letter-spacing:-5.299733pt;}
.ls26{letter-spacing:-4.121600pt;}
.ls13{letter-spacing:-3.972267pt;}
.ls28{letter-spacing:-2.746200pt;}
.ls19{letter-spacing:-2.664200pt;}
.ls11{letter-spacing:-2.644800pt;}
.ls16{letter-spacing:-2.472533pt;}
.ls29{letter-spacing:-2.060800pt;}
.ls14{letter-spacing:-1.986133pt;}
.ls1e{letter-spacing:-1.383333pt;}
.ls1c{letter-spacing:-1.370800pt;}
.lsb{letter-spacing:-1.352400pt;}
.lsf{letter-spacing:-1.348667pt;}
.ls2b{letter-spacing:-1.335867pt;}
.ls10{letter-spacing:-1.327467pt;}
.ls25{letter-spacing:-0.751800pt;}
.ls1f{letter-spacing:-0.691667pt;}
.ls2a{letter-spacing:-0.685400pt;}
.ls17{letter-spacing:-0.684667pt;}
.lse{letter-spacing:-0.672000pt;}
.ls1a{letter-spacing:-0.666000pt;}
.ls12{letter-spacing:-0.658667pt;}
.lsc{letter-spacing:-0.657800pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.657333pt;}
.ls27{letter-spacing:0.668667pt;}
.ls1d{letter-spacing:0.684667pt;}
.ls0{letter-spacing:0.685400pt;}
.ls4{letter-spacing:0.691667pt;}
.ls1b{letter-spacing:1.370800pt;}
.ls3{letter-spacing:1.383333pt;}
.ls2{letter-spacing:2.075000pt;}
.ls18{letter-spacing:2.256000pt;}
.ls1{letter-spacing:2.766667pt;}
.ls8{letter-spacing:3.458333pt;}
.ls23{letter-spacing:3.497333pt;}
.ls5{letter-spacing:4.150000pt;}
.ls6{letter-spacing:4.841667pt;}
.ls7{letter-spacing:5.533333pt;}
.ls2c{letter-spacing:5.749133pt;}
.ls9{letter-spacing:6.225000pt;}
.ws0{word-spacing:0.000000pt;}
._15{margin-left:-65.319340pt;}
._1{margin-left:-24.594555pt;}
._7{margin-left:-11.450667pt;}
._5{margin-left:-9.778667pt;}
._16{margin-left:-8.730533pt;}
._2{margin-left:-7.154133pt;}
._18{margin-left:-6.091123pt;}
._0{margin-left:-4.061525pt;}
._3{margin-left:-2.908267pt;}
._4{margin-left:-1.520000pt;}
._8{width:1.053867pt;}
._a{width:2.254000pt;}
._c{width:3.894133pt;}
._b{width:4.964533pt;}
._d{width:6.081443pt;}
._10{width:7.138000pt;}
._e{width:8.714957pt;}
._11{width:9.794000pt;}
._6{width:10.802133pt;}
._13{width:11.773173pt;}
._9{width:12.859200pt;}
._17{width:13.778000pt;}
._f{width:14.844800pt;}
._12{width:16.425400pt;}
._14{width:18.494000pt;}
._19{width:20.122157pt;}
.fs10{font-size:39.333333pt;}
.fsf{font-size:42.000000pt;}
.fs1{font-size:44.666667pt;}
.fs0{font-size:46.000000pt;}
.fsa{font-size:49.333333pt;}
.fs6{font-size:50.666667pt;}
.fs9{font-size:51.333333pt;}
.fs7{font-size:52.666667pt;}
.fs8{font-size:53.333333pt;}
.fse{font-size:54.000000pt;}
.fsc{font-size:54.666667pt;}
.fsb{font-size:55.333333pt;}
.fs11{font-size:56.666667pt;}
.fsd{font-size:57.333333pt;}
.fs2{font-size:59.333333pt;}
.fs4{font-size:79.333333pt;}
.fs3{font-size:80.000000pt;}
.fs5{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:136.961533pt;}
.y5c{bottom:137.268833pt;}
.y30{bottom:151.521867pt;}
.y5b{bottom:151.835333pt;}
.y5a{bottom:165.917667pt;}
.y2f{bottom:165.919867pt;}
.y58{bottom:179.991833pt;}
.y59{bottom:180.000000pt;}
.y2e{bottom:192.958733pt;}
.y57{bottom:194.558333pt;}
.y2d{bottom:207.041067pt;}
.y2c{bottom:207.045133pt;}
.y56{bottom:208.640667pt;}
.y2b{bottom:221.127467pt;}
.y55{bottom:222.878067pt;}
.y2a{bottom:235.680133pt;}
.y54{bottom:236.960400pt;}
.y53{bottom:251.040533pt;}
.y52{bottom:251.045767pt;}
.y29{bottom:263.520933pt;}
.y51{bottom:265.280267pt;}
.y50{bottom:279.683067pt;}
.y4f{bottom:293.765400pt;}
.y28{bottom:305.920933pt;}
.y4e{bottom:308.318067pt;}
.y27{bottom:320.480000pt;}
.y4c{bottom:322.395967pt;}
.y4d{bottom:322.400400pt;}
.y4b{bottom:336.478300pt;}
.y26{bottom:348.803200pt;}
.y4a{bottom:350.712800pt;}
.y25{bottom:363.203700pt;}
.y49{bottom:364.795133pt;}
.y24{bottom:377.286033pt;}
.y48{bottom:379.029633pt;}
.y22{bottom:391.516000pt;}
.y23{bottom:391.520533pt;}
.y47{bottom:393.111967pt;}
.y21{bottom:405.598333pt;}
.y46{bottom:407.194300pt;}
.y20{bottom:419.685900pt;}
.y45{bottom:421.760800pt;}
.y1f{bottom:433.920400pt;}
.y44{bottom:435.851367pt;}
.y1e{bottom:448.008067pt;}
.y43{bottom:450.251867pt;}
.y1d{bottom:462.408567pt;}
.y42{bottom:464.486367pt;}
.y1c{bottom:476.643067pt;}
.y41{bottom:478.568700pt;}
.y1b{bottom:490.725400pt;}
.y40{bottom:492.803200pt;}
.y1a{bottom:504.959900pt;}
.y3f{bottom:506.885533pt;}
.y19{bottom:519.360700pt;}
.y3e{bottom:521.286033pt;}
.y18{bottom:533.763067pt;}
.y3d{bottom:535.517167pt;}
.y17{bottom:547.997567pt;}
.y3c{bottom:549.917667pt;}
.y16{bottom:562.079900pt;}
.y3b{bottom:564.000000pt;}
.y15{bottom:576.480400pt;}
.y14{bottom:576.483433pt;}
.y3a{bottom:578.235200pt;}
.y13{bottom:590.717933pt;}
.y39{bottom:591.999367pt;}
.y12{bottom:604.801833pt;}
.y38{bottom:606.399867pt;}
.y11{bottom:619.368333pt;}
.y37{bottom:620.644100pt;}
.y10{bottom:633.450667pt;}
.y36{bottom:634.726433pt;}
.yf{bottom:647.851167pt;}
.y35{bottom:648.962800pt;}
.ye{bottom:662.085667pt;}
.y34{bottom:663.363300pt;}
.yd{bottom:676.486167pt;}
.y33{bottom:677.445633pt;}
.yc{bottom:690.720667pt;}
.y32{bottom:691.680133pt;}
.yb{bottom:750.399867pt;}
.ya{bottom:767.517167pt;}
.y9{bottom:784.640667pt;}
.y8{bottom:801.760267pt;}
.y7{bottom:835.984000pt;}
.y6{bottom:866.232000pt;}
.y5{bottom:896.480000pt;}
.y2{bottom:1013.761200pt;}
.y4{bottom:1015.520533pt;}
.y3{bottom:1038.880400pt;}
.y1{bottom:1045.760800pt;}
.h15{height:41.023438pt;}
.h14{height:43.804688pt;}
.h3{height:46.585938pt;}
.h2{height:47.976562pt;}
.hd{height:47.992163pt;}
.hc{height:51.453125pt;}
.h12{height:52.343750pt;}
.h8{height:52.843750pt;}
.h11{height:52.998047pt;}
.hb{height:53.539062pt;}
.hf{height:53.652344pt;}
.he{height:54.306641pt;}
.h13{height:54.315441pt;}
.h18{height:54.315974pt;}
.h17{height:54.320107pt;}
.h16{height:54.330641pt;}
.h1a{height:54.354507pt;}
.h9{height:54.929688pt;}
.h19{height:55.615234pt;}
.ha{height:55.625000pt;}
.h10{height:56.269531pt;}
.h4{height:58.638021pt;}
.h6{height:82.742188pt;}
.h5{height:83.437500pt;}
.h7{height:105.687500pt;}
.h1b{height:1124.000000pt;}
.h1{height:1125.333333pt;}
.h0{height:1125.600000pt;}
.w2{width:793.333333pt;}
.w0{width:794.560000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x9{left:47.519600pt;}
.x1{left:48.640133pt;}
.x8{left:49.599600pt;}
.x13{left:53.440400pt;}
.xa{left:61.440000pt;}
.x1a{left:71.200267pt;}
.x1b{left:101.119600pt;}
.x1d{left:112.960000pt;}
.x1c{left:114.720667pt;}
.x15{left:115.680133pt;}
.x14{left:116.960400pt;}
.xb{left:125.440400pt;}
.x19{left:126.559600pt;}
.x1e{left:131.040533pt;}
.x16{left:133.440000pt;}
.x2{left:139.680133pt;}
.xc{left:141.279733pt;}
.x3{left:149.119600pt;}
.x1f{left:164.320267pt;}
.x4{left:175.520533pt;}
.x20{left:180.159600pt;}
.x5{left:193.920400pt;}
.xd{left:207.360400pt;}
.xe{left:225.120133pt;}
.xf{left:278.080133pt;}
.x10{left:304.640667pt;}
.x17{left:333.279733pt;}
.x18{left:356.639600pt;}
.x11{left:379.680133pt;}
.x12{left:395.680667pt;}
.x21{left:397.759333pt;}
.x23{left:399.040133pt;}
.x22{left:420.800000pt;}
.x28{left:489.120133pt;}
.x29{left:506.879867pt;}
.x26{left:525.279733pt;}
.x27{left:547.999467pt;}
.x6{left:577.599600pt;}
.x24{left:597.919867pt;}
.x25{left:616.000533pt;}
.x7{left:670.879467pt;}
}

