
    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_3c83963ed94e40e55e817d27.woff')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_139343a539274d341932f71f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.136230;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_ac5484d3ff12300b4abde278.woff')format("woff");}.ff3{font-family:ff3;line-height:0.920410;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_0214e66098193b6d04ef63e8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.171000;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_daca184940517865f0b4be93.woff')format("woff");}.ff5{font-family:ff5;line-height:1.171000;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_b206ca17b09ca2dd2eba2d4f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.143000;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_7bb3829a33f5a2344d97302b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.171000;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);}
.v2{vertical-align:-21.780060px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.569480px;}
.v1{vertical-align:21.780960px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.660000px;}
.ls0{letter-spacing:0.810000px;}
.ls3{letter-spacing:0.990000px;}
.ls4{letter-spacing:6.602640px;}
.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;}
}
.ws1{word-spacing:-18.348000px;}
.ws2{word-spacing:-15.822000px;}
.ws0{word-spacing:-10.641840px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:1954.948380px;}
._3{margin-left:-13.332000px;}
._2{margin-left:-7.260000px;}
._0{margin-left:-6.072000px;}
._b{margin-left:-4.928100px;}
._1{margin-left:-3.696000px;}
._6{margin-left:-2.244000px;}
._4{margin-left:-1.188000px;}
._8{width:1.188000px;}
._9{width:2.376000px;}
._a{width:3.498000px;}
._5{width:5.082000px;}
._7{width:6.336000px;}
._e{width:8.262000px;}
._10{width:9.378000px;}
._11{width:10.542000px;}
._12{width:49.842000px;}
._d{width:77.436000px;}
._f{width:79.866000px;}
._c{width:94.878000px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:38.280000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:115.069155px;}
.y96{bottom:118.187220px;}
.y4e{bottom:123.147795px;}
.yb6{bottom:125.687460px;}
.y72{bottom:126.017910px;}
.yd5{bottom:128.457525px;}
.y21{bottom:134.569095px;}
.y95{bottom:137.687160px;}
.y4d{bottom:142.647855px;}
.yb5{bottom:145.187400px;}
.y71{bottom:145.517850px;}
.yd4{bottom:150.957300px;}
.y20{bottom:154.069215px;}
.y94{bottom:157.187160px;}
.y4c{bottom:162.147795px;}
.yb4{bottom:164.687340px;}
.y70{bottom:165.017970px;}
.yd3{bottom:173.457300px;}
.y1f{bottom:173.569155px;}
.y93{bottom:176.687220px;}
.y4b{bottom:181.647915px;}
.yb3{bottom:184.187280px;}
.y6f{bottom:184.517910px;}
.y1e{bottom:193.069095px;}
.yd2{bottom:195.957300px;}
.y92{bottom:196.187220px;}
.y4a{bottom:201.147855px;}
.yb2{bottom:203.687220px;}
.y6e{bottom:204.017850px;}
.y1d{bottom:212.569035px;}
.y91{bottom:215.687160px;}
.yd1{bottom:218.457525px;}
.y49{bottom:220.647795px;}
.yb1{bottom:223.187220px;}
.y1c{bottom:232.069335px;}
.y90{bottom:235.187340px;}
.y48{bottom:240.147915px;}
.yd0{bottom:240.957300px;}
.yb0{bottom:242.687160px;}
.y1b{bottom:251.569275px;}
.y8f{bottom:254.687280px;}
.y47{bottom:259.647855px;}
.yaf{bottom:262.187220px;}
.ycf{bottom:263.457300px;}
.y6d{bottom:263.457405px;}
.y1a{bottom:271.069215px;}
.y8e{bottom:274.187220px;}
.y46{bottom:279.147795px;}
.yae{bottom:281.687160px;}
.y6c{bottom:285.957300px;}
.yce{bottom:285.957525px;}
.y19{bottom:290.569155px;}
.y8d{bottom:293.687160px;}
.y45{bottom:298.648035px;}
.y6b{bottom:308.456835px;}
.ycd{bottom:308.457735px;}
.y18{bottom:310.069095px;}
.y8c{bottom:313.187340px;}
.y44{bottom:318.147975px;}
.y17{bottom:329.569035px;}
.y6a{bottom:330.957060px;}
.y8b{bottom:332.687280px;}
.y43{bottom:337.647915px;}
.y16{bottom:349.069275px;}
.y8a{bottom:352.187220px;}
.y69{bottom:353.456955px;}
.yad{bottom:353.457405px;}
.ycc{bottom:353.457525px;}
.y42{bottom:357.147855px;}
.y15{bottom:368.569215px;}
.y89{bottom:371.687160px;}
.y68{bottom:375.957180px;}
.yac{bottom:375.957300px;}
.y41{bottom:376.647795px;}
.y14{bottom:388.069155px;}
.ycb{bottom:398.456490px;}
.yab{bottom:398.456715px;}
.y67{bottom:398.457405px;}
.y13{bottom:407.569095px;}
.yca{bottom:420.956715px;}
.yaa{bottom:420.956940px;}
.y66{bottom:420.957300px;}
.y12{bottom:427.069095px;}
.ya9{bottom:443.456835px;}
.yc9{bottom:443.456940px;}
.y40{bottom:443.457060px;}
.y65{bottom:443.457180px;}
.y11{bottom:446.569035px;}
.yc8{bottom:465.956835px;}
.y3f{bottom:465.956955px;}
.ya8{bottom:465.957060px;}
.y64{bottom:465.957405px;}
.y10{bottom:466.069035px;}
.yf{bottom:485.569155px;}
.ya7{bottom:488.456955px;}
.yc7{bottom:488.457060px;}
.y3e{bottom:488.457180px;}
.y63{bottom:488.457300px;}
.ye{bottom:505.069095px;}
.yc6{bottom:510.956955px;}
.ya6{bottom:510.957180px;}
.y3d{bottom:510.957405px;}
.y62{bottom:510.957525px;}
.yd{bottom:524.569035px;}
.yc5{bottom:533.457180px;}
.y3c{bottom:533.457300px;}
.ya5{bottom:533.457405px;}
.y61{bottom:555.957165px;}
.y3b{bottom:555.957300px;}
.yc4{bottom:555.957405px;}
.y88{bottom:578.456145px;}
.ya4{bottom:578.456715px;}
.yc3{bottom:578.457300px;}
.y60{bottom:578.457390px;}
.y3a{bottom:578.457405px;}
.yc{bottom:599.440080px;}
.y87{bottom:600.956370px;}
.ya3{bottom:600.956940px;}
.y5f{bottom:600.957285px;}
.y39{bottom:600.957300px;}
.yc2{bottom:600.957510px;}
.yb{bottom:621.939975px;}
.y86{bottom:623.456595px;}
.ya2{bottom:623.456835px;}
.y38{bottom:623.457060px;}
.y5e{bottom:623.457510px;}
.ya{bottom:644.439975px;}
.y85{bottom:645.956490px;}
.y37{bottom:645.956955px;}
.ya1{bottom:645.957060px;}
.yc1{bottom:645.957300px;}
.y5d{bottom:645.957735px;}
.y9{bottom:666.939885px;}
.y84{bottom:668.456715px;}
.ya0{bottom:668.456955px;}
.y36{bottom:668.457180px;}
.yc0{bottom:668.457405px;}
.ye0{bottom:668.457525px;}
.y8{bottom:689.440110px;}
.y83{bottom:690.956940px;}
.y9f{bottom:690.957180px;}
.ybf{bottom:690.957300px;}
.y35{bottom:690.957405px;}
.y5c{bottom:690.957525px;}
.y7{bottom:711.940005px;}
.y82{bottom:713.456835px;}
.y34{bottom:713.457300px;}
.y9e{bottom:713.457405px;}
.ybe{bottom:713.457525px;}
.y6{bottom:734.440230px;}
.ybd{bottom:735.956925px;}
.y33{bottom:735.956955px;}
.y81{bottom:735.957060px;}
.y9d{bottom:735.957300px;}
.ydf{bottom:735.957405px;}
.ybc{bottom:758.456820px;}
.y80{bottom:758.456955px;}
.y32{bottom:758.457180px;}
.yde{bottom:758.457300px;}
.ybb{bottom:780.957045px;}
.y7f{bottom:780.957180px;}
.y31{bottom:780.957405px;}
.ydd{bottom:780.957525px;}
.yba{bottom:803.457270px;}
.y30{bottom:803.457300px;}
.y7e{bottom:803.457405px;}
.y2f{bottom:825.957045px;}
.y7d{bottom:825.957300px;}
.y5b{bottom:825.957390px;}
.ydc{bottom:825.957525px;}
.y5{bottom:846.940200px;}
.y9c{bottom:848.457060px;}
.y2e{bottom:848.457270px;}
.y5a{bottom:848.457285px;}
.y7c{bottom:848.457300px;}
.y4{bottom:869.440200px;}
.y9b{bottom:870.956955px;}
.y2d{bottom:870.957165px;}
.y7b{bottom:870.957405px;}
.ydb{bottom:870.957525px;}
.y9a{bottom:893.457180px;}
.y7a{bottom:893.457300px;}
.y59{bottom:893.457405px;}
.y3{bottom:914.440020px;}
.y2c{bottom:915.956955px;}
.y58{bottom:915.957300px;}
.y99{bottom:915.957405px;}
.yda{bottom:915.957525px;}
.y79{bottom:938.456940px;}
.y2b{bottom:938.457180px;}
.y98{bottom:938.457300px;}
.y57{bottom:938.457525px;}
.y2{bottom:956.439780px;}
.y78{bottom:960.956835px;}
.y56{bottom:960.956940px;}
.y97{bottom:960.957300px;}
.y2a{bottom:960.957405px;}
.yb9{bottom:960.957525px;}
.y55{bottom:983.456835px;}
.y77{bottom:983.457060px;}
.y29{bottom:983.457300px;}
.yb8{bottom:983.457405px;}
.y1{bottom:998.440200px;}
.y76{bottom:1005.956955px;}
.y54{bottom:1005.957060px;}
.yb7{bottom:1005.957300px;}
.y28{bottom:1005.957405px;}
.yd9{bottom:1005.957525px;}
.y53{bottom:1028.456955px;}
.y75{bottom:1028.457180px;}
.y27{bottom:1028.457300px;}
.yd8{bottom:1028.457405px;}
.y52{bottom:1050.957180px;}
.yd7{bottom:1050.957300px;}
.y74{bottom:1050.957405px;}
.y26{bottom:1050.957735px;}
.y73{bottom:1073.457300px;}
.y51{bottom:1073.457405px;}
.yd6{bottom:1073.457525px;}
.y25{bottom:1095.957300px;}
.y24{bottom:1118.457525px;}
.y4f{bottom:1182.237060px;}
.y23{bottom:1182.343350px;}
.y50{bottom:1183.379430px;}
.h6{height:44.504883px;}
.hb{height:47.682000px;}
.hf{height:52.980000px;}
.h7{height:58.278000px;}
.ha{height:58.278480px;}
.h11{height:58.278540px;}
.h9{height:58.278900px;}
.h8{height:58.279260px;}
.h13{height:58.279380px;}
.h12{height:58.279440px;}
.he{height:58.279860px;}
.hc{height:58.279920px;}
.hd{height:58.280280px;}
.h10{height:58.280340px;}
.h14{height:58.280760px;}
.h16{height:58.281240px;}
.h15{height:58.283520px;}
.h17{height:59.598000px;}
.h5{height:74.853516px;}
.h3{height:116.789062px;}
.h4{height:117.626953px;}
.h2{height:1288.346460px;}
.h0{height:1288.347000px;}
.h1{height:1288.500000px;}
.w3{width:905.668590px;}
.w2{width:905.669295px;}
.w0{width:918.424500px;}
.w1{width:918.750000px;}
.x0{left:0.000000px;}
.x9{left:12.755910px;}
.xb{left:106.299195px;}
.x7{left:119.055255px;}
.x6{left:153.070830px;}
.x8{left:187.086675px;}
.x3{left:208.721640px;}
.x1{left:336.129360px;}
.x2{left:389.287080px;}
.x4{left:560.115690px;}
.x5{left:651.160125px;}
.xa{left:768.266190px;}
@media print{
.v2{vertical-align:-19.360053pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.061760pt;}
.v1{vertical-align:19.360853pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.586667pt;}
.ls0{letter-spacing:0.720000pt;}
.ls3{letter-spacing:0.880000pt;}
.ls4{letter-spacing:5.869013pt;}
.ws1{word-spacing:-16.309333pt;}
.ws2{word-spacing:-14.064000pt;}
.ws0{word-spacing:-9.459413pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:1737.731893pt;}
._3{margin-left:-11.850667pt;}
._2{margin-left:-6.453333pt;}
._0{margin-left:-5.397333pt;}
._b{margin-left:-4.380533pt;}
._1{margin-left:-3.285333pt;}
._6{margin-left:-1.994667pt;}
._4{margin-left:-1.056000pt;}
._8{width:1.056000pt;}
._9{width:2.112000pt;}
._a{width:3.109333pt;}
._5{width:4.517333pt;}
._7{width:5.632000pt;}
._e{width:7.344000pt;}
._10{width:8.336000pt;}
._11{width:9.370667pt;}
._12{width:44.304000pt;}
._d{width:68.832000pt;}
._f{width:70.992000pt;}
._c{width:84.336000pt;}
.fs3{font-size:34.026667pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:102.283693pt;}
.y96{bottom:105.055307pt;}
.y4e{bottom:109.464707pt;}
.yb6{bottom:111.722187pt;}
.y72{bottom:112.015920pt;}
.yd5{bottom:114.184467pt;}
.y21{bottom:119.616973pt;}
.y95{bottom:122.388587pt;}
.y4d{bottom:126.798093pt;}
.yb5{bottom:129.055467pt;}
.y71{bottom:129.349200pt;}
.yd4{bottom:134.184267pt;}
.y20{bottom:136.950413pt;}
.y94{bottom:139.721920pt;}
.y4c{bottom:144.131373pt;}
.yb4{bottom:146.388747pt;}
.y70{bottom:146.682640pt;}
.yd3{bottom:154.184267pt;}
.y1f{bottom:154.283693pt;}
.y93{bottom:157.055307pt;}
.y4b{bottom:161.464813pt;}
.yb3{bottom:163.722027pt;}
.y6f{bottom:164.015920pt;}
.y1e{bottom:171.616973pt;}
.yd2{bottom:174.184267pt;}
.y92{bottom:174.388640pt;}
.y4a{bottom:178.798093pt;}
.yb2{bottom:181.055307pt;}
.y6e{bottom:181.349200pt;}
.y1d{bottom:188.950253pt;}
.y91{bottom:191.721920pt;}
.yd1{bottom:194.184467pt;}
.y49{bottom:196.131373pt;}
.yb1{bottom:198.388640pt;}
.y1c{bottom:206.283853pt;}
.y90{bottom:209.055413pt;}
.y48{bottom:213.464813pt;}
.yd0{bottom:214.184267pt;}
.yb0{bottom:215.721920pt;}
.y1b{bottom:223.617133pt;}
.y8f{bottom:226.388693pt;}
.y47{bottom:230.798093pt;}
.yaf{bottom:233.055307pt;}
.ycf{bottom:234.184267pt;}
.y6d{bottom:234.184360pt;}
.y1a{bottom:240.950413pt;}
.y8e{bottom:243.721973pt;}
.y46{bottom:248.131373pt;}
.yae{bottom:250.388587pt;}
.y6c{bottom:254.184267pt;}
.yce{bottom:254.184467pt;}
.y19{bottom:258.283693pt;}
.y8d{bottom:261.055253pt;}
.y45{bottom:265.464920pt;}
.y6b{bottom:274.183853pt;}
.ycd{bottom:274.184653pt;}
.y18{bottom:275.616973pt;}
.y8c{bottom:278.388747pt;}
.y44{bottom:282.798200pt;}
.y17{bottom:292.950253pt;}
.y6a{bottom:294.184053pt;}
.y8b{bottom:295.722027pt;}
.y43{bottom:300.131480pt;}
.y16{bottom:310.283800pt;}
.y8a{bottom:313.055307pt;}
.y69{bottom:314.183960pt;}
.yad{bottom:314.184360pt;}
.ycc{bottom:314.184467pt;}
.y42{bottom:317.464760pt;}
.y15{bottom:327.617080pt;}
.y89{bottom:330.388587pt;}
.y68{bottom:334.184160pt;}
.yac{bottom:334.184267pt;}
.y41{bottom:334.798040pt;}
.y14{bottom:344.950360pt;}
.ycb{bottom:354.183547pt;}
.yab{bottom:354.183747pt;}
.y67{bottom:354.184360pt;}
.y13{bottom:362.283640pt;}
.yca{bottom:374.183747pt;}
.yaa{bottom:374.183947pt;}
.y66{bottom:374.184267pt;}
.y12{bottom:379.616973pt;}
.ya9{bottom:394.183853pt;}
.yc9{bottom:394.183947pt;}
.y40{bottom:394.184053pt;}
.y65{bottom:394.184160pt;}
.y11{bottom:396.950253pt;}
.yc8{bottom:414.183853pt;}
.y3f{bottom:414.183960pt;}
.ya8{bottom:414.184053pt;}
.y64{bottom:414.184360pt;}
.y10{bottom:414.283587pt;}
.yf{bottom:431.617027pt;}
.ya7{bottom:434.183960pt;}
.yc7{bottom:434.184053pt;}
.y3e{bottom:434.184160pt;}
.y63{bottom:434.184267pt;}
.ye{bottom:448.950307pt;}
.yc6{bottom:454.183960pt;}
.ya6{bottom:454.184160pt;}
.y3d{bottom:454.184360pt;}
.y62{bottom:454.184467pt;}
.yd{bottom:466.283587pt;}
.yc5{bottom:474.184160pt;}
.y3c{bottom:474.184267pt;}
.ya5{bottom:474.184360pt;}
.y61{bottom:494.184147pt;}
.y3b{bottom:494.184267pt;}
.yc4{bottom:494.184360pt;}
.y88{bottom:514.183240pt;}
.ya4{bottom:514.183747pt;}
.yc3{bottom:514.184267pt;}
.y60{bottom:514.184347pt;}
.y3a{bottom:514.184360pt;}
.yc{bottom:532.835627pt;}
.y87{bottom:534.183440pt;}
.ya3{bottom:534.183947pt;}
.y5f{bottom:534.184253pt;}
.y39{bottom:534.184267pt;}
.yc2{bottom:534.184453pt;}
.yb{bottom:552.835533pt;}
.y86{bottom:554.183640pt;}
.ya2{bottom:554.183853pt;}
.y38{bottom:554.184053pt;}
.y5e{bottom:554.184453pt;}
.ya{bottom:572.835533pt;}
.y85{bottom:574.183547pt;}
.y37{bottom:574.183960pt;}
.ya1{bottom:574.184053pt;}
.yc1{bottom:574.184267pt;}
.y5d{bottom:574.184653pt;}
.y9{bottom:592.835453pt;}
.y84{bottom:594.183747pt;}
.ya0{bottom:594.183960pt;}
.y36{bottom:594.184160pt;}
.yc0{bottom:594.184360pt;}
.ye0{bottom:594.184467pt;}
.y8{bottom:612.835653pt;}
.y83{bottom:614.183947pt;}
.y9f{bottom:614.184160pt;}
.ybf{bottom:614.184267pt;}
.y35{bottom:614.184360pt;}
.y5c{bottom:614.184467pt;}
.y7{bottom:632.835560pt;}
.y82{bottom:634.183853pt;}
.y34{bottom:634.184267pt;}
.y9e{bottom:634.184360pt;}
.ybe{bottom:634.184467pt;}
.y6{bottom:652.835760pt;}
.ybd{bottom:654.183933pt;}
.y33{bottom:654.183960pt;}
.y81{bottom:654.184053pt;}
.y9d{bottom:654.184267pt;}
.ydf{bottom:654.184360pt;}
.ybc{bottom:674.183840pt;}
.y80{bottom:674.183960pt;}
.y32{bottom:674.184160pt;}
.yde{bottom:674.184267pt;}
.ybb{bottom:694.184040pt;}
.y7f{bottom:694.184160pt;}
.y31{bottom:694.184360pt;}
.ydd{bottom:694.184467pt;}
.yba{bottom:714.184240pt;}
.y30{bottom:714.184267pt;}
.y7e{bottom:714.184360pt;}
.y2f{bottom:734.184040pt;}
.y7d{bottom:734.184267pt;}
.y5b{bottom:734.184347pt;}
.ydc{bottom:734.184467pt;}
.y5{bottom:752.835733pt;}
.y9c{bottom:754.184053pt;}
.y2e{bottom:754.184240pt;}
.y5a{bottom:754.184253pt;}
.y7c{bottom:754.184267pt;}
.y4{bottom:772.835733pt;}
.y9b{bottom:774.183960pt;}
.y2d{bottom:774.184147pt;}
.y7b{bottom:774.184360pt;}
.ydb{bottom:774.184467pt;}
.y9a{bottom:794.184160pt;}
.y7a{bottom:794.184267pt;}
.y59{bottom:794.184360pt;}
.y3{bottom:812.835573pt;}
.y2c{bottom:814.183960pt;}
.y58{bottom:814.184267pt;}
.y99{bottom:814.184360pt;}
.yda{bottom:814.184467pt;}
.y79{bottom:834.183947pt;}
.y2b{bottom:834.184160pt;}
.y98{bottom:834.184267pt;}
.y57{bottom:834.184467pt;}
.y2{bottom:850.168693pt;}
.y78{bottom:854.183853pt;}
.y56{bottom:854.183947pt;}
.y97{bottom:854.184267pt;}
.y2a{bottom:854.184360pt;}
.yb9{bottom:854.184467pt;}
.y55{bottom:874.183853pt;}
.y77{bottom:874.184053pt;}
.y29{bottom:874.184267pt;}
.yb8{bottom:874.184360pt;}
.y1{bottom:887.502400pt;}
.y76{bottom:894.183960pt;}
.y54{bottom:894.184053pt;}
.yb7{bottom:894.184267pt;}
.y28{bottom:894.184360pt;}
.yd9{bottom:894.184467pt;}
.y53{bottom:914.183960pt;}
.y75{bottom:914.184160pt;}
.y27{bottom:914.184267pt;}
.yd8{bottom:914.184360pt;}
.y52{bottom:934.184160pt;}
.yd7{bottom:934.184267pt;}
.y74{bottom:934.184360pt;}
.y26{bottom:934.184653pt;}
.y73{bottom:954.184267pt;}
.y51{bottom:954.184360pt;}
.yd6{bottom:954.184467pt;}
.y25{bottom:974.184267pt;}
.y24{bottom:994.184467pt;}
.y4f{bottom:1050.877387pt;}
.y23{bottom:1050.971867pt;}
.y50{bottom:1051.892827pt;}
.h6{height:39.559896pt;}
.hb{height:42.384000pt;}
.hf{height:47.093333pt;}
.h7{height:51.802667pt;}
.ha{height:51.803093pt;}
.h11{height:51.803147pt;}
.h9{height:51.803467pt;}
.h8{height:51.803787pt;}
.h13{height:51.803893pt;}
.h12{height:51.803947pt;}
.he{height:51.804320pt;}
.hc{height:51.804373pt;}
.hd{height:51.804693pt;}
.h10{height:51.804747pt;}
.h14{height:51.805120pt;}
.h16{height:51.805547pt;}
.h15{height:51.807573pt;}
.h17{height:52.976000pt;}
.h5{height:66.536458pt;}
.h3{height:103.812500pt;}
.h4{height:104.557292pt;}
.h2{height:1145.196853pt;}
.h0{height:1145.197333pt;}
.h1{height:1145.333333pt;}
.w3{width:805.038747pt;}
.w2{width:805.039373pt;}
.w0{width:816.377333pt;}
.w1{width:816.666667pt;}
.x0{left:0.000000pt;}
.x9{left:11.338587pt;}
.xb{left:94.488173pt;}
.x7{left:105.826893pt;}
.x6{left:136.062960pt;}
.x8{left:166.299267pt;}
.x3{left:185.530347pt;}
.x1{left:298.781653pt;}
.x2{left:346.032960pt;}
.x4{left:497.880613pt;}
.x5{left:578.809000pt;}
.xa{left:682.903280pt;}
}

