
    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_afa888e14a8d74b862eebac5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.959473;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_a552a0e6344e7d34f2bc82b6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_1623bd630a57b8729bd39cc0.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0626ba2d050266965beb56a1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.927734;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_464839daf93aaeea652695cd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.683105;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_3b13e14774f44e2a717027c3.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_14f4f24adf0419f5150c0bf4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.717285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls2f{letter-spacing:-2.088000px;}
.ls2b{letter-spacing:-2.044224px;}
.ls28{letter-spacing:-1.944000px;}
.ls21{letter-spacing:-1.800000px;}
.ls2a{letter-spacing:-1.728000px;}
.ls30{letter-spacing:-1.656000px;}
.lsf{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-1.368000px;}
.lse{letter-spacing:-1.224000px;}
.ls2e{letter-spacing:-1.080000px;}
.ls20{letter-spacing:-1.008000px;}
.ls5{letter-spacing:-1.003968px;}
.ls1d{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.864000px;}
.ls29{letter-spacing:-0.792000px;}
.ls1f{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.648000px;}
.ls19{letter-spacing:-0.622944px;}
.ls10{letter-spacing:-0.576000px;}
.ls2c{letter-spacing:-0.550368px;}
.ls1c{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.432000px;}
.ls1b{letter-spacing:-0.381024px;}
.ls26{letter-spacing:-0.362880px;}
.ls11{letter-spacing:-0.360000px;}
.ls34{letter-spacing:-0.359136px;}
.ls1a{letter-spacing:-0.284256px;}
.ls1e{letter-spacing:-0.216000px;}
.ls27{letter-spacing:-0.144000px;}
.ls25{letter-spacing:-0.072576px;}
.ls6{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.115200px;}
.ls31{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.187488px;}
.ls9{letter-spacing:0.216000px;}
.ls24{letter-spacing:0.288000px;}
.ls36{letter-spacing:0.300672px;}
.lsc{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.435456px;}
.ls1{letter-spacing:0.504000px;}
.ls2d{letter-spacing:0.550368px;}
.ls13{letter-spacing:0.576000px;}
.ls22{letter-spacing:0.624960px;}
.ls14{letter-spacing:0.648000px;}
.ls3{letter-spacing:0.701568px;}
.ls0{letter-spacing:0.720000px;}
.ls33{letter-spacing:0.792000px;}
.ls35{letter-spacing:1.512000px;}
.ls32{letter-spacing:1.944000px;}
.ls17{letter-spacing:103.824000px;}
.ls16{letter-spacing:121.104000px;}
.ls15{letter-spacing:136.944000px;}
.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;}
}
.ws23{word-spacing:-19.512000px;}
.ws21{word-spacing:-18.792000px;}
.wsc{word-spacing:-18.720000px;}
.ws1b{word-spacing:-18.648000px;}
.ws12{word-spacing:-18.576000px;}
.ws9{word-spacing:-18.504000px;}
.ws8{word-spacing:-18.432000px;}
.wsa{word-spacing:-18.360000px;}
.ws6{word-spacing:-18.216000px;}
.ws20{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws13{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws1c{word-spacing:-17.784000px;}
.ws10{word-spacing:-17.640000px;}
.ws7{word-spacing:-17.568000px;}
.ws16{word-spacing:-17.496000px;}
.wsf{word-spacing:-17.424000px;}
.ws11{word-spacing:-17.352000px;}
.ws17{word-spacing:-17.280000px;}
.ws1f{word-spacing:-17.208000px;}
.ws4{word-spacing:-17.136000px;}
.ws18{word-spacing:-17.064000px;}
.wsd{word-spacing:-16.776000px;}
.wsb{word-spacing:-16.632000px;}
.wse{word-spacing:-16.560000px;}
.ws1e{word-spacing:-16.344000px;}
.ws1d{word-spacing:-15.912000px;}
.ws1{word-spacing:-15.821568px;}
.ws15{word-spacing:-15.555456px;}
.ws0{word-spacing:-15.120000px;}
.ws19{word-spacing:-15.047424px;}
.ws1a{word-spacing:-14.757120px;}
.ws2{word-spacing:-14.116032px;}
.ws24{word-spacing:-10.740672px;}
.ws14{word-spacing:0.000000px;}
.ws22{word-spacing:0.317376px;}
._2{margin-left:-2.738304px;}
._0{margin-left:-1.366848px;}
._1{width:1.123776px;}
._3{width:2.146176px;}
._5{width:3.149568px;}
._6{width:4.173696px;}
._7{width:5.544288px;}
._4{width:845.039808px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y15{bottom:4.200000px;}
.y4{bottom:10.080000px;}
.y3{bottom:27.000000px;}
.y14{bottom:57.000000px;}
.y13{bottom:58.680000px;}
.y18{bottom:68.160000px;}
.y17{bottom:85.080000px;}
.y96{bottom:111.960000px;}
.y44{bottom:112.680000px;}
.yc2{bottom:113.400000px;}
.y70{bottom:126.000000px;}
.y95{bottom:128.880000px;}
.y98{bottom:132.480000px;}
.y43{bottom:133.200000px;}
.yc1{bottom:133.920000px;}
.y90{bottom:139.680000px;}
.y94{bottom:145.800000px;}
.y9e{bottom:146.160000px;}
.y6f{bottom:146.520000px;}
.y93{bottom:149.400000px;}
.y42{bottom:153.360000px;}
.yde{bottom:153.720000px;}
.y8f{bottom:159.840000px;}
.y92{bottom:163.440000px;}
.yc0{bottom:165.600000px;}
.y6e{bottom:166.680000px;}
.y41{bottom:173.520000px;}
.ydd{bottom:174.240000px;}
.y8e{bottom:180.360000px;}
.ybf{bottom:186.120000px;}
.y6d{bottom:186.840000px;}
.y40{bottom:193.680000px;}
.y8d{bottom:200.520000px;}
.ydc{bottom:206.280000px;}
.ybe{bottom:206.640000px;}
.y6c{bottom:207.000000px;}
.y3f{bottom:214.200000px;}
.y8c{bottom:220.680000px;}
.ybd{bottom:226.800000px;}
.y6b{bottom:227.520000px;}
.y3e{bottom:234.360000px;}
.y8b{bottom:240.840000px;}
.y6a{bottom:247.680000px;}
.y3d{bottom:254.520000px;}
.ybc{bottom:258.480000px;}
.y8a{bottom:261.360000px;}
.y69{bottom:267.840000px;}
.ybb{bottom:279.360000px;}
.y89{bottom:281.520000px;}
.y68{bottom:288.000000px;}
.y3c{bottom:288.360000px;}
.yba{bottom:299.520000px;}
.y88{bottom:301.680000px;}
.y67{bottom:308.520000px;}
.y3b{bottom:309.960000px;}
.ydb{bottom:311.040000px;}
.yb9{bottom:319.680000px;}
.y87{bottom:321.840000px;}
.y66{bottom:328.680000px;}
.y3a{bottom:331.920000px;}
.y86{bottom:342.360000px;}
.y65{bottom:348.840000px;}
.yb8{bottom:351.720000px;}
.y39{bottom:352.440000px;}
.y85{bottom:362.520000px;}
.yda{bottom:363.600000px;}
.y64{bottom:369.000000px;}
.yb7{bottom:372.240000px;}
.y38{bottom:372.600000px;}
.y84{bottom:382.680000px;}
.yd9{bottom:384.120000px;}
.y63{bottom:389.520000px;}
.y37{bottom:392.760000px;}
.y83{bottom:402.840000px;}
.yb6{bottom:404.280000px;}
.y62{bottom:409.680000px;}
.y36{bottom:413.280000px;}
.yd8{bottom:416.160000px;}
.y82{bottom:423.360000px;}
.y61{bottom:429.840000px;}
.y35{bottom:433.440000px;}
.yb5{bottom:436.320000px;}
.yd7{bottom:436.680000px;}
.y81{bottom:443.520000px;}
.y60{bottom:450.000000px;}
.y34{bottom:453.600000px;}
.yb4{bottom:456.840000px;}
.y80{bottom:463.680000px;}
.yd6{bottom:468.720000px;}
.y5f{bottom:470.520000px;}
.y33{bottom:473.760000px;}
.yb3{bottom:477.360000px;}
.y7f{bottom:483.840000px;}
.yd5{bottom:489.240000px;}
.y5e{bottom:490.680000px;}
.y32{bottom:494.280000px;}
.y7e{bottom:504.360000px;}
.yb2{bottom:509.040000px;}
.y5d{bottom:510.840000px;}
.y31{bottom:514.440000px;}
.yd4{bottom:521.280000px;}
.y7d{bottom:524.520000px;}
.yb1{bottom:529.920000px;}
.y5c{bottom:531.000000px;}
.y30{bottom:534.600000px;}
.yd3{bottom:541.800000px;}
.y7c{bottom:544.680000px;}
.y5b{bottom:551.520000px;}
.y2f{bottom:554.760000px;}
.yb0{bottom:561.600000px;}
.y7b{bottom:564.840000px;}
.y5a{bottom:571.680000px;}
.yd2{bottom:573.480000px;}
.y2e{bottom:575.280000px;}
.y7a{bottom:585.360000px;}
.y59{bottom:591.840000px;}
.yaf{bottom:594.000000px;}
.yd1{bottom:594.360000px;}
.y2d{bottom:595.440000px;}
.y79{bottom:605.520000px;}
.y58{bottom:612.000000px;}
.yae{bottom:614.520000px;}
.y2c{bottom:615.600000px;}
.y78{bottom:625.680000px;}
.y57{bottom:632.520000px;}
.yad{bottom:634.680000px;}
.y2b{bottom:635.760000px;}
.y91{bottom:639.360000px;}
.y77{bottom:645.840000px;}
.yd0{bottom:646.560000px;}
.y56{bottom:652.680000px;}
.y2a{bottom:656.280000px;}
.y76{bottom:666.360000px;}
.yac{bottom:666.720000px;}
.ycf{bottom:667.080000px;}
.y55{bottom:672.840000px;}
.y29{bottom:676.440000px;}
.y75{bottom:686.520000px;}
.yab{bottom:687.240000px;}
.y54{bottom:693.000000px;}
.y28{bottom:696.600000px;}
.yce{bottom:698.760000px;}
.y74{bottom:706.680000px;}
.yaa{bottom:707.400000px;}
.y53{bottom:713.520000px;}
.y27{bottom:716.760000px;}
.y73{bottom:726.840000px;}
.ycd{bottom:731.160000px;}
.y52{bottom:733.680000px;}
.y26{bottom:737.280000px;}
.ya9{bottom:739.440000px;}
.y72{bottom:747.360000px;}
.ycc{bottom:751.680000px;}
.y51{bottom:753.840000px;}
.y25{bottom:757.440000px;}
.ya8{bottom:759.960000px;}
.y71{bottom:767.520000px;}
.ycb{bottom:771.840000px;}
.y50{bottom:774.000000px;}
.y97{bottom:774.360000px;}
.y24{bottom:777.600000px;}
.ya7{bottom:780.120000px;}
.y10{bottom:787.680000px;}
.y4f{bottom:794.520000px;}
.y23{bottom:797.760000px;}
.ye0{bottom:800.280000px;}
.yca{bottom:803.880000px;}
.yf{bottom:807.840000px;}
.ya6{bottom:812.160000px;}
.y4e{bottom:814.680000px;}
.y22{bottom:818.280000px;}
.yc9{bottom:824.400000px;}
.ye{bottom:828.360000px;}
.ydf{bottom:832.320000px;}
.ya5{bottom:832.680000px;}
.y4d{bottom:834.840000px;}
.y21{bottom:838.440000px;}
.yc8{bottom:844.920000px;}
.yd{bottom:848.520000px;}
.ya4{bottom:852.840000px;}
.y4c{bottom:855.000000px;}
.y20{bottom:858.600000px;}
.yc{bottom:868.680000px;}
.y4b{bottom:875.520000px;}
.yc7{bottom:876.600000px;}
.y1f{bottom:878.760000px;}
.ya3{bottom:884.880000px;}
.yb{bottom:888.840000px;}
.y9d{bottom:895.680000px;}
.yc6{bottom:897.120000px;}
.y1e{bottom:899.280000px;}
.ya2{bottom:905.400000px;}
.ya{bottom:909.360000px;}
.y9c{bottom:915.840000px;}
.yc5{bottom:917.640000px;}
.y1d{bottom:919.440000px;}
.y9{bottom:929.520000px;}
.y9b{bottom:936.000000px;}
.ya1{bottom:937.440000px;}
.yc4{bottom:937.800000px;}
.y1c{bottom:939.600000px;}
.y8{bottom:949.680000px;}
.y9a{bottom:956.520000px;}
.ya0{bottom:957.960000px;}
.y1b{bottom:959.760000px;}
.y16{bottom:969.000000px;}
.yc3{bottom:969.480000px;}
.y7{bottom:969.840000px;}
.y99{bottom:976.680000px;}
.y1a{bottom:980.280000px;}
.y9f{bottom:990.000000px;}
.y6{bottom:990.360000px;}
.y19{bottom:1002.960000px;}
.y2{bottom:1008.000000px;}
.y5{bottom:1010.520000px;}
.y1{bottom:1049.400000px;}
.y4a{bottom:1052.280000px;}
.y12{bottom:1068.480000px;}
.y49{bottom:1069.200000px;}
.y48{bottom:1086.120000px;}
.y47{bottom:1103.040000px;}
.y46{bottom:1119.600000px;}
.y45{bottom:1136.520000px;}
.y11{bottom:1153.440000px;}
.h4{height:18.000000px;}
.hb{height:27.071719px;}
.ha{height:29.077031px;}
.h7{height:40.310156px;}
.h2{height:40.500000px;}
.h3{height:42.111563px;}
.he{height:47.512969px;}
.h8{height:48.761719px;}
.h1{height:50.132813px;}
.hc{height:55.193203px;}
.hd{height:56.437031px;}
.h6{height:75.199219px;}
.h5{height:99.000000px;}
.h9{height:1170.000000px;}
.h0{height:1188.000000px;}
.w2{width:15.000000px;}
.w3{width:187.500000px;}
.w1{width:244.500000px;}
.w4{width:900.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:10.860000px;}
.x9{left:18.000000px;}
.xc{left:117.000000px;}
.x4{left:135.000000px;}
.xe{left:139.680000px;}
.x2{left:142.500000px;}
.x8{left:162.000000px;}
.x11{left:189.000000px;}
.xd{left:351.000000px;}
.x6{left:451.500000px;}
.x1{left:459.000000px;}
.x7{left:589.500000px;}
.xf{left:640.800000px;}
.x10{left:663.840000px;}
.xa{left:692.640000px;}
.xb{left:715.680000px;}
.x5{left:783.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls2f{letter-spacing:-1.856000pt;}
.ls2b{letter-spacing:-1.817088pt;}
.ls28{letter-spacing:-1.728000pt;}
.ls21{letter-spacing:-1.600000pt;}
.ls2a{letter-spacing:-1.536000pt;}
.ls30{letter-spacing:-1.472000pt;}
.lsf{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-1.216000pt;}
.lse{letter-spacing:-1.088000pt;}
.ls2e{letter-spacing:-0.960000pt;}
.ls20{letter-spacing:-0.896000pt;}
.ls5{letter-spacing:-0.892416pt;}
.ls1d{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.768000pt;}
.ls29{letter-spacing:-0.704000pt;}
.ls1f{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.576000pt;}
.ls19{letter-spacing:-0.553728pt;}
.ls10{letter-spacing:-0.512000pt;}
.ls2c{letter-spacing:-0.489216pt;}
.ls1c{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls1b{letter-spacing:-0.338688pt;}
.ls26{letter-spacing:-0.322560pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls34{letter-spacing:-0.319232pt;}
.ls1a{letter-spacing:-0.252672pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls27{letter-spacing:-0.128000pt;}
.ls25{letter-spacing:-0.064512pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.102400pt;}
.ls31{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.166656pt;}
.ls9{letter-spacing:0.192000pt;}
.ls24{letter-spacing:0.256000pt;}
.ls36{letter-spacing:0.267264pt;}
.lsc{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.387072pt;}
.ls1{letter-spacing:0.448000pt;}
.ls2d{letter-spacing:0.489216pt;}
.ls13{letter-spacing:0.512000pt;}
.ls22{letter-spacing:0.555520pt;}
.ls14{letter-spacing:0.576000pt;}
.ls3{letter-spacing:0.623616pt;}
.ls0{letter-spacing:0.640000pt;}
.ls33{letter-spacing:0.704000pt;}
.ls35{letter-spacing:1.344000pt;}
.ls32{letter-spacing:1.728000pt;}
.ls17{letter-spacing:92.288000pt;}
.ls16{letter-spacing:107.648000pt;}
.ls15{letter-spacing:121.728000pt;}
.ws23{word-spacing:-17.344000pt;}
.ws21{word-spacing:-16.704000pt;}
.wsc{word-spacing:-16.640000pt;}
.ws1b{word-spacing:-16.576000pt;}
.ws12{word-spacing:-16.512000pt;}
.ws9{word-spacing:-16.448000pt;}
.ws8{word-spacing:-16.384000pt;}
.wsa{word-spacing:-16.320000pt;}
.ws6{word-spacing:-16.192000pt;}
.ws20{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws13{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws1c{word-spacing:-15.808000pt;}
.ws10{word-spacing:-15.680000pt;}
.ws7{word-spacing:-15.616000pt;}
.ws16{word-spacing:-15.552000pt;}
.wsf{word-spacing:-15.488000pt;}
.ws11{word-spacing:-15.424000pt;}
.ws17{word-spacing:-15.360000pt;}
.ws1f{word-spacing:-15.296000pt;}
.ws4{word-spacing:-15.232000pt;}
.ws18{word-spacing:-15.168000pt;}
.wsd{word-spacing:-14.912000pt;}
.wsb{word-spacing:-14.784000pt;}
.wse{word-spacing:-14.720000pt;}
.ws1e{word-spacing:-14.528000pt;}
.ws1d{word-spacing:-14.144000pt;}
.ws1{word-spacing:-14.063616pt;}
.ws15{word-spacing:-13.827072pt;}
.ws0{word-spacing:-13.440000pt;}
.ws19{word-spacing:-13.375488pt;}
.ws1a{word-spacing:-13.117440pt;}
.ws2{word-spacing:-12.547584pt;}
.ws24{word-spacing:-9.547264pt;}
.ws14{word-spacing:0.000000pt;}
.ws22{word-spacing:0.282112pt;}
._2{margin-left:-2.434048pt;}
._0{margin-left:-1.214976pt;}
._1{width:0.998912pt;}
._3{width:1.907712pt;}
._5{width:2.799616pt;}
._6{width:3.709952pt;}
._7{width:4.928256pt;}
._4{width:751.146496pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:3.733333pt;}
.y4{bottom:8.960000pt;}
.y3{bottom:24.000000pt;}
.y14{bottom:50.666667pt;}
.y13{bottom:52.160000pt;}
.y18{bottom:60.586667pt;}
.y17{bottom:75.626667pt;}
.y96{bottom:99.520000pt;}
.y44{bottom:100.160000pt;}
.yc2{bottom:100.800000pt;}
.y70{bottom:112.000000pt;}
.y95{bottom:114.560000pt;}
.y98{bottom:117.760000pt;}
.y43{bottom:118.400000pt;}
.yc1{bottom:119.040000pt;}
.y90{bottom:124.160000pt;}
.y94{bottom:129.600000pt;}
.y9e{bottom:129.920000pt;}
.y6f{bottom:130.240000pt;}
.y93{bottom:132.800000pt;}
.y42{bottom:136.320000pt;}
.yde{bottom:136.640000pt;}
.y8f{bottom:142.080000pt;}
.y92{bottom:145.280000pt;}
.yc0{bottom:147.200000pt;}
.y6e{bottom:148.160000pt;}
.y41{bottom:154.240000pt;}
.ydd{bottom:154.880000pt;}
.y8e{bottom:160.320000pt;}
.ybf{bottom:165.440000pt;}
.y6d{bottom:166.080000pt;}
.y40{bottom:172.160000pt;}
.y8d{bottom:178.240000pt;}
.ydc{bottom:183.360000pt;}
.ybe{bottom:183.680000pt;}
.y6c{bottom:184.000000pt;}
.y3f{bottom:190.400000pt;}
.y8c{bottom:196.160000pt;}
.ybd{bottom:201.600000pt;}
.y6b{bottom:202.240000pt;}
.y3e{bottom:208.320000pt;}
.y8b{bottom:214.080000pt;}
.y6a{bottom:220.160000pt;}
.y3d{bottom:226.240000pt;}
.ybc{bottom:229.760000pt;}
.y8a{bottom:232.320000pt;}
.y69{bottom:238.080000pt;}
.ybb{bottom:248.320000pt;}
.y89{bottom:250.240000pt;}
.y68{bottom:256.000000pt;}
.y3c{bottom:256.320000pt;}
.yba{bottom:266.240000pt;}
.y88{bottom:268.160000pt;}
.y67{bottom:274.240000pt;}
.y3b{bottom:275.520000pt;}
.ydb{bottom:276.480000pt;}
.yb9{bottom:284.160000pt;}
.y87{bottom:286.080000pt;}
.y66{bottom:292.160000pt;}
.y3a{bottom:295.040000pt;}
.y86{bottom:304.320000pt;}
.y65{bottom:310.080000pt;}
.yb8{bottom:312.640000pt;}
.y39{bottom:313.280000pt;}
.y85{bottom:322.240000pt;}
.yda{bottom:323.200000pt;}
.y64{bottom:328.000000pt;}
.yb7{bottom:330.880000pt;}
.y38{bottom:331.200000pt;}
.y84{bottom:340.160000pt;}
.yd9{bottom:341.440000pt;}
.y63{bottom:346.240000pt;}
.y37{bottom:349.120000pt;}
.y83{bottom:358.080000pt;}
.yb6{bottom:359.360000pt;}
.y62{bottom:364.160000pt;}
.y36{bottom:367.360000pt;}
.yd8{bottom:369.920000pt;}
.y82{bottom:376.320000pt;}
.y61{bottom:382.080000pt;}
.y35{bottom:385.280000pt;}
.yb5{bottom:387.840000pt;}
.yd7{bottom:388.160000pt;}
.y81{bottom:394.240000pt;}
.y60{bottom:400.000000pt;}
.y34{bottom:403.200000pt;}
.yb4{bottom:406.080000pt;}
.y80{bottom:412.160000pt;}
.yd6{bottom:416.640000pt;}
.y5f{bottom:418.240000pt;}
.y33{bottom:421.120000pt;}
.yb3{bottom:424.320000pt;}
.y7f{bottom:430.080000pt;}
.yd5{bottom:434.880000pt;}
.y5e{bottom:436.160000pt;}
.y32{bottom:439.360000pt;}
.y7e{bottom:448.320000pt;}
.yb2{bottom:452.480000pt;}
.y5d{bottom:454.080000pt;}
.y31{bottom:457.280000pt;}
.yd4{bottom:463.360000pt;}
.y7d{bottom:466.240000pt;}
.yb1{bottom:471.040000pt;}
.y5c{bottom:472.000000pt;}
.y30{bottom:475.200000pt;}
.yd3{bottom:481.600000pt;}
.y7c{bottom:484.160000pt;}
.y5b{bottom:490.240000pt;}
.y2f{bottom:493.120000pt;}
.yb0{bottom:499.200000pt;}
.y7b{bottom:502.080000pt;}
.y5a{bottom:508.160000pt;}
.yd2{bottom:509.760000pt;}
.y2e{bottom:511.360000pt;}
.y7a{bottom:520.320000pt;}
.y59{bottom:526.080000pt;}
.yaf{bottom:528.000000pt;}
.yd1{bottom:528.320000pt;}
.y2d{bottom:529.280000pt;}
.y79{bottom:538.240000pt;}
.y58{bottom:544.000000pt;}
.yae{bottom:546.240000pt;}
.y2c{bottom:547.200000pt;}
.y78{bottom:556.160000pt;}
.y57{bottom:562.240000pt;}
.yad{bottom:564.160000pt;}
.y2b{bottom:565.120000pt;}
.y91{bottom:568.320000pt;}
.y77{bottom:574.080000pt;}
.yd0{bottom:574.720000pt;}
.y56{bottom:580.160000pt;}
.y2a{bottom:583.360000pt;}
.y76{bottom:592.320000pt;}
.yac{bottom:592.640000pt;}
.ycf{bottom:592.960000pt;}
.y55{bottom:598.080000pt;}
.y29{bottom:601.280000pt;}
.y75{bottom:610.240000pt;}
.yab{bottom:610.880000pt;}
.y54{bottom:616.000000pt;}
.y28{bottom:619.200000pt;}
.yce{bottom:621.120000pt;}
.y74{bottom:628.160000pt;}
.yaa{bottom:628.800000pt;}
.y53{bottom:634.240000pt;}
.y27{bottom:637.120000pt;}
.y73{bottom:646.080000pt;}
.ycd{bottom:649.920000pt;}
.y52{bottom:652.160000pt;}
.y26{bottom:655.360000pt;}
.ya9{bottom:657.280000pt;}
.y72{bottom:664.320000pt;}
.ycc{bottom:668.160000pt;}
.y51{bottom:670.080000pt;}
.y25{bottom:673.280000pt;}
.ya8{bottom:675.520000pt;}
.y71{bottom:682.240000pt;}
.ycb{bottom:686.080000pt;}
.y50{bottom:688.000000pt;}
.y97{bottom:688.320000pt;}
.y24{bottom:691.200000pt;}
.ya7{bottom:693.440000pt;}
.y10{bottom:700.160000pt;}
.y4f{bottom:706.240000pt;}
.y23{bottom:709.120000pt;}
.ye0{bottom:711.360000pt;}
.yca{bottom:714.560000pt;}
.yf{bottom:718.080000pt;}
.ya6{bottom:721.920000pt;}
.y4e{bottom:724.160000pt;}
.y22{bottom:727.360000pt;}
.yc9{bottom:732.800000pt;}
.ye{bottom:736.320000pt;}
.ydf{bottom:739.840000pt;}
.ya5{bottom:740.160000pt;}
.y4d{bottom:742.080000pt;}
.y21{bottom:745.280000pt;}
.yc8{bottom:751.040000pt;}
.yd{bottom:754.240000pt;}
.ya4{bottom:758.080000pt;}
.y4c{bottom:760.000000pt;}
.y20{bottom:763.200000pt;}
.yc{bottom:772.160000pt;}
.y4b{bottom:778.240000pt;}
.yc7{bottom:779.200000pt;}
.y1f{bottom:781.120000pt;}
.ya3{bottom:786.560000pt;}
.yb{bottom:790.080000pt;}
.y9d{bottom:796.160000pt;}
.yc6{bottom:797.440000pt;}
.y1e{bottom:799.360000pt;}
.ya2{bottom:804.800000pt;}
.ya{bottom:808.320000pt;}
.y9c{bottom:814.080000pt;}
.yc5{bottom:815.680000pt;}
.y1d{bottom:817.280000pt;}
.y9{bottom:826.240000pt;}
.y9b{bottom:832.000000pt;}
.ya1{bottom:833.280000pt;}
.yc4{bottom:833.600000pt;}
.y1c{bottom:835.200000pt;}
.y8{bottom:844.160000pt;}
.y9a{bottom:850.240000pt;}
.ya0{bottom:851.520000pt;}
.y1b{bottom:853.120000pt;}
.y16{bottom:861.333333pt;}
.yc3{bottom:861.760000pt;}
.y7{bottom:862.080000pt;}
.y99{bottom:868.160000pt;}
.y1a{bottom:871.360000pt;}
.y9f{bottom:880.000000pt;}
.y6{bottom:880.320000pt;}
.y19{bottom:891.520000pt;}
.y2{bottom:896.000000pt;}
.y5{bottom:898.240000pt;}
.y1{bottom:932.800000pt;}
.y4a{bottom:935.360000pt;}
.y12{bottom:949.760000pt;}
.y49{bottom:950.400000pt;}
.y48{bottom:965.440000pt;}
.y47{bottom:980.480000pt;}
.y46{bottom:995.200000pt;}
.y45{bottom:1010.240000pt;}
.y11{bottom:1025.280000pt;}
.h4{height:16.000000pt;}
.hb{height:24.063750pt;}
.ha{height:25.846250pt;}
.h7{height:35.831250pt;}
.h2{height:36.000000pt;}
.h3{height:37.432500pt;}
.he{height:42.233750pt;}
.h8{height:43.343750pt;}
.h1{height:44.562500pt;}
.hc{height:49.060625pt;}
.hd{height:50.166250pt;}
.h6{height:66.843750pt;}
.h5{height:88.000000pt;}
.h9{height:1040.000000pt;}
.h0{height:1056.000000pt;}
.w2{width:13.333333pt;}
.w3{width:166.666667pt;}
.w1{width:217.333333pt;}
.w4{width:800.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:9.653333pt;}
.x9{left:16.000000pt;}
.xc{left:104.000000pt;}
.x4{left:120.000000pt;}
.xe{left:124.160000pt;}
.x2{left:126.666667pt;}
.x8{left:144.000000pt;}
.x11{left:168.000000pt;}
.xd{left:312.000000pt;}
.x6{left:401.333333pt;}
.x1{left:408.000000pt;}
.x7{left:524.000000pt;}
.xf{left:569.600000pt;}
.x10{left:590.080000pt;}
.xa{left:615.680000pt;}
.xb{left:636.160000pt;}
.x5{left:696.000000pt;}
}

