
    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_c2f51dda0d693de52606c5ba.woff')format("woff");}.ff1{font-family:ff1;line-height:1.057129;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_e36ca54e3e4144219f73ef52.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172000;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_189525e4960e6ce4d39c30b4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.181000;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_63b826f371b8c25219184928.woff')format("woff");}.ff4{font-family:ff4;line-height:1.004395;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_8ec9bf59640d8794e25620e0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.179688;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_586607fecd26949d2a817b59.woff')format("woff");}.ff6{font-family:ff6;line-height:0.964000;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_21bf47cfe0e5220a2caec4ed.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c46e7517f3a3120b3fa886d9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.047852;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;}
.m3{transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249270,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);}
.v1{vertical-align:-33.660000px;}
.v3{vertical-align:-17.970000px;}
.v5{vertical-align:-13.872000px;}
.v4{vertical-align:-9.900000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.820600px;}
.lsc{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000207px;}
.ls3{letter-spacing:0.000373px;}
.ls13{letter-spacing:0.002400px;}
.lsa{letter-spacing:0.003000px;}
.ls10{letter-spacing:0.005400px;}
.ls11{letter-spacing:0.006000px;}
.lsb{letter-spacing:0.007200px;}
.ls5{letter-spacing:0.117600px;}
.ls7{letter-spacing:0.162000px;}
.ls4{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.216600px;}
.ls9{letter-spacing:0.270000px;}
.lsd{letter-spacing:0.324000px;}
.lse{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.462000px;}
.lsf{letter-spacing:0.864000px;}
.ls8{letter-spacing:1.458000px;}
.ls0{letter-spacing:6.000000px;}
.ls1{letter-spacing:81.600000px;}
.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:-94.944000px;}
.ws1{word-spacing:-28.356000px;}
.ws2{word-spacing:-13.716000px;}
.ws8{word-spacing:-10.500000px;}
.ws6{word-spacing:-8.340000px;}
.ws3{word-spacing:-7.425000px;}
.ws7{word-spacing:-5.775000px;}
.ws5{word-spacing:-4.587000px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-82.464000px;}
._5{margin-left:-8.064000px;}
._12{margin-left:-6.516000px;}
._2{margin-left:-5.160000px;}
._6{margin-left:-3.624000px;}
._1{margin-left:-1.620000px;}
._0{width:1.680000px;}
._4{width:3.528000px;}
._d{width:4.626000px;}
._c{width:5.724000px;}
._a{width:6.858000px;}
._b{width:8.694000px;}
._7{width:9.774000px;}
._8{width:11.664000px;}
._15{width:12.810000px;}
._16{width:14.058000px;}
._9{width:15.072000px;}
._11{width:16.254000px;}
._10{width:17.928000px;}
._13{width:19.224000px;}
._e{width:20.250000px;}
._14{width:30.726000px;}
._f{width:52.380000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:16.500000px;}
.fsa{font-size:23.100000px;}
.fs6{font-size:29.700000px;}
.fs1{font-size:30.000000px;}
.fs7{font-size:36.000000px;}
.fs9{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:56.100000px;}
.fs3{font-size:102.000000px;}
.fs2{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y58{bottom:2.526000px;}
.y53{bottom:3.477383px;}
.y56{bottom:16.926000px;}
.y55{bottom:31.326000px;}
.y57{bottom:32.277383px;}
.y54{bottom:45.726000px;}
.y1{bottom:53.049150px;}
.y59{bottom:53.086350px;}
.y9c{bottom:53.086500px;}
.y52{bottom:55.718550px;}
.y96{bottom:85.563600px;}
.y51{bottom:91.064550px;}
.y37{bottom:91.324050px;}
.y9a{bottom:93.444600px;}
.yac{bottom:99.469950px;}
.yb3{bottom:99.483450px;}
.y95{bottom:102.060600px;}
.y50{bottom:107.561550px;}
.y36{bottom:107.821050px;}
.y99{bottom:108.444600px;}
.yab{bottom:115.966950px;}
.yb2{bottom:115.980450px;}
.y94{bottom:118.557600px;}
.y4f{bottom:124.058550px;}
.y35{bottom:124.318050px;}
.yaa{bottom:132.463950px;}
.yb1{bottom:132.477450px;}
.y93{bottom:135.054600px;}
.y4e{bottom:140.555550px;}
.y34{bottom:140.815050px;}
.yb0{bottom:148.974450px;}
.y92{bottom:151.551600px;}
.y4d{bottom:157.052550px;}
.y33{bottom:157.312050px;}
.ya9{bottom:165.457950px;}
.yaf{bottom:165.471450px;}
.y91{bottom:168.048600px;}
.y4c{bottom:173.549550px;}
.y32{bottom:173.809050px;}
.yae{bottom:181.968450px;}
.y90{bottom:184.545600px;}
.y4b{bottom:190.046550px;}
.y31{bottom:190.306050px;}
.yad{bottom:198.465450px;}
.y8f{bottom:201.042600px;}
.y4a{bottom:206.546550px;}
.y30{bottom:206.803050px;}
.ya8{bottom:214.962450px;}
.y8e{bottom:217.539600px;}
.y49{bottom:223.049550px;}
.y2f{bottom:223.300050px;}
.ya7{bottom:231.459450px;}
.y8d{bottom:234.036600px;}
.y48{bottom:239.546550px;}
.y2e{bottom:239.797050px;}
.ya6{bottom:247.956450px;}
.y8c{bottom:250.533600px;}
.y47{bottom:256.058550px;}
.y2d{bottom:256.294050px;}
.ya5{bottom:264.453450px;}
.y8b{bottom:267.030600px;}
.y46{bottom:272.555550px;}
.y2c{bottom:272.791050px;}
.ya4{bottom:280.950450px;}
.y8a{bottom:283.527600px;}
.y45{bottom:289.052550px;}
.y2b{bottom:289.288050px;}
.ya3{bottom:297.447450px;}
.y89{bottom:300.024600px;}
.y44{bottom:305.549550px;}
.y2a{bottom:305.785050px;}
.ya2{bottom:313.944450px;}
.y88{bottom:316.521600px;}
.y43{bottom:322.046550px;}
.y29{bottom:322.319550px;}
.ya1{bottom:330.441450px;}
.y87{bottom:333.018600px;}
.y42{bottom:338.617050px;}
.y28{bottom:338.816550px;}
.ya0{bottom:346.938450px;}
.y86{bottom:349.515600px;}
.y41{bottom:355.114050px;}
.y27{bottom:355.313550px;}
.y9f{bottom:363.435450px;}
.y85{bottom:366.012600px;}
.y40{bottom:371.611050px;}
.y26{bottom:371.810550px;}
.y9e{bottom:379.932450px;}
.y84{bottom:382.509600px;}
.y25{bottom:388.307550px;}
.y9d{bottom:396.429450px;}
.y83{bottom:399.006600px;}
.y3f{bottom:404.605050px;}
.y24{bottom:404.804550px;}
.y82{bottom:415.503600px;}
.y23{bottom:421.301550px;}
.y81{bottom:432.000600px;}
.y22{bottom:437.798550px;}
.y80{bottom:448.497600px;}
.y3e{bottom:454.109550px;}
.y21{bottom:454.295550px;}
.yb5{bottom:458.877750px;}
.y7f{bottom:464.994600px;}
.y3d{bottom:470.606550px;}
.y20{bottom:470.792550px;}
.yb4{bottom:473.877750px;}
.y7e{bottom:481.491600px;}
.y3c{bottom:487.103550px;}
.y1f{bottom:487.289550px;}
.y98{bottom:488.877750px;}
.y7d{bottom:497.988600px;}
.y3b{bottom:503.600550px;}
.y1e{bottom:503.786550px;}
.y97{bottom:503.877750px;}
.y7c{bottom:514.485600px;}
.y3a{bottom:520.097550px;}
.y1d{bottom:520.283550px;}
.y7b{bottom:530.982600px;}
.y39{bottom:536.594550px;}
.y1c{bottom:536.780550px;}
.y7a{bottom:547.479600px;}
.y38{bottom:553.091550px;}
.y1b{bottom:553.277550px;}
.y79{bottom:563.976600px;}
.y78{bottom:580.473600px;}
.y1a{bottom:582.532050px;}
.y77{bottom:596.970600px;}
.y76{bottom:613.467600px;}
.y75{bottom:629.964600px;}
.ydc{bottom:630.574800px;}
.y19{bottom:644.153700px;}
.y74{bottom:646.461600px;}
.ydb{bottom:647.578800px;}
.yf7{bottom:649.436400px;}
.yf6{bottom:662.216400px;}
.y73{bottom:662.958600px;}
.yda{bottom:664.582800px;}
.y18{bottom:671.909700px;}
.yf5{bottom:674.963400px;}
.y72{bottom:679.455600px;}
.y17{bottom:686.908200px;}
.yf4{bottom:687.710400px;}
.yd9{bottom:693.830700px;}
.y71{bottom:695.952600px;}
.yf3{bottom:700.457400px;}
.y16{bottom:701.906700px;}
.yd8{bottom:706.577700px;}
.y70{bottom:712.449600px;}
.yf2{bottom:713.204400px;}
.y15{bottom:716.905200px;}
.yd7{bottom:719.324700px;}
.yf1{bottom:725.951400px;}
.y6f{bottom:728.946600px;}
.y14{bottom:731.903700px;}
.yd6{bottom:732.071700px;}
.yf0{bottom:738.698400px;}
.yd5{bottom:744.818700px;}
.yef{bottom:751.445400px;}
.y12{bottom:755.204700px;}
.yd4{bottom:757.565700px;}
.y13{bottom:759.659700px;}
.y11{bottom:759.664200px;}
.y6e{bottom:761.940600px;}
.yee{bottom:764.192400px;}
.yd3{bottom:770.312700px;}
.yed{bottom:776.939400px;}
.yd2{bottom:783.059700px;}
.y10{bottom:787.420200px;}
.yec{bottom:789.686400px;}
.yd1{bottom:795.806700px;}
.yeb{bottom:802.433400px;}
.yd0{bottom:808.553700px;}
.y6d{bottom:811.445100px;}
.yf{bottom:817.417200px;}
.ycf{bottom:821.300700px;}
.y6c{bottom:827.942100px;}
.yea{bottom:827.960400px;}
.ye{bottom:832.415700px;}
.yce{bottom:834.047700px;}
.y6b{bottom:844.439100px;}
.ycd{bottom:846.794700px;}
.yd{bottom:847.414200px;}
.ycc{bottom:859.541700px;}
.y6a{bottom:860.936100px;}
.yc{bottom:862.412700px;}
.ycb{bottom:872.288700px;}
.yb{bottom:877.411200px;}
.ye9{bottom:877.464900px;}
.y69{bottom:877.478250px;}
.yca{bottom:885.035700px;}
.ya{bottom:892.409700px;}
.ye8{bottom:893.961900px;}
.y68{bottom:893.975250px;}
.yc9{bottom:897.782700px;}
.ye7{bottom:910.458900px;}
.y67{bottom:910.472250px;}
.yc8{bottom:910.529700px;}
.yc7{bottom:923.276700px;}
.ye6{bottom:926.955900px;}
.y66{bottom:926.969250px;}
.y9{bottom:928.615050px;}
.yc6{bottom:936.023700px;}
.ye5{bottom:943.452900px;}
.y65{bottom:943.466250px;}
.y8{bottom:943.615050px;}
.yc5{bottom:948.770700px;}
.y7{bottom:958.618050px;}
.ye4{bottom:959.949900px;}
.y64{bottom:959.963250px;}
.yc4{bottom:961.517700px;}
.yc3{bottom:974.264700px;}
.y6{bottom:975.115050px;}
.ye3{bottom:976.446900px;}
.y63{bottom:976.460250px;}
.yc2{bottom:987.011700px;}
.y62{bottom:992.957250px;}
.yc1{bottom:999.758700px;}
.ye2{bottom:1009.440900px;}
.y61{bottom:1009.454250px;}
.yc0{bottom:1012.505700px;}
.y5{bottom:1014.902850px;}
.ybf{bottom:1025.252700px;}
.y60{bottom:1025.951250px;}
.ybe{bottom:1037.999700px;}
.y5f{bottom:1042.448250px;}
.ybd{bottom:1050.746700px;}
.y5e{bottom:1058.945250px;}
.ye1{bottom:1058.945400px;}
.ybc{bottom:1063.493700px;}
.y5d{bottom:1075.442250px;}
.ye0{bottom:1075.442400px;}
.ybb{bottom:1076.240700px;}
.y3{bottom:1078.637400px;}
.yba{bottom:1088.987700px;}
.y5c{bottom:1091.939250px;}
.ydf{bottom:1091.939400px;}
.y4{bottom:1101.161400px;}
.yb9{bottom:1101.734700px;}
.y5b{bottom:1108.436250px;}
.yde{bottom:1108.436400px;}
.yb8{bottom:1114.484700px;}
.y5a{bottom:1124.933250px;}
.ydd{bottom:1124.933400px;}
.yb7{bottom:1127.231700px;}
.y2{bottom:1128.308100px;}
.yb6{bottom:1182.733350px;}
.y9b{bottom:1183.583700px;}
.hf{height:26.400000px;}
.h3{height:27.120000px;}
.hb{height:27.234668px;}
.h11{height:32.750977px;}
.hc{height:32.868000px;}
.h10{height:36.984375px;}
.h2{height:37.429688px;}
.h9{height:39.287109px;}
.h8{height:42.108398px;}
.h4{height:43.392000px;}
.h7{height:49.302000px;}
.ha{height:49.517578px;}
.he{height:50.062500px;}
.hd{height:55.200000px;}
.h6{height:93.126000px;}
.h5{height:115.038000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:198.060000px;}
.w2{width:258.141000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:62.362200px;}
.xf{left:63.781050px;}
.x1{left:65.279550px;}
.x1c{left:71.280000px;}
.xa{left:78.476100px;}
.x1d{left:83.281500px;}
.xe{left:85.043550px;}
.x5{left:141.978900px;}
.x8{left:253.186800px;}
.xb{left:257.785200px;}
.xc{left:261.486750px;}
.xd{left:272.699400px;}
.x7{left:275.753543px;}
.x6{left:295.775400px;}
.x9{left:315.403500px;}
.x13{left:317.386505px;}
.x3{left:348.129750px;}
.x4{left:349.222200px;}
.x2{left:350.873400px;}
.x10{left:459.207600px;}
.x1a{left:460.712550px;}
.x1b{left:463.676070px;}
.x18{left:466.713000px;}
.x17{left:471.508650px;}
.x19{left:478.714500px;}
.x11{left:480.470100px;}
.x14{left:598.334015px;}
.x12{left:642.156450px;}
.x15{left:809.633850px;}
@media print{
.v1{vertical-align:-29.920000pt;}
.v3{vertical-align:-15.973333pt;}
.v5{vertical-align:-12.330667pt;}
.v4{vertical-align:-8.800000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.840533pt;}
.lsc{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000184pt;}
.ls3{letter-spacing:0.000332pt;}
.ls13{letter-spacing:0.002133pt;}
.lsa{letter-spacing:0.002667pt;}
.ls10{letter-spacing:0.004800pt;}
.ls11{letter-spacing:0.005333pt;}
.lsb{letter-spacing:0.006400pt;}
.ls5{letter-spacing:0.104533pt;}
.ls7{letter-spacing:0.144000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.192533pt;}
.ls9{letter-spacing:0.240000pt;}
.lsd{letter-spacing:0.288000pt;}
.lse{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.410667pt;}
.lsf{letter-spacing:0.768000pt;}
.ls8{letter-spacing:1.296000pt;}
.ls0{letter-spacing:5.333333pt;}
.ls1{letter-spacing:72.533333pt;}
.ws0{word-spacing:-84.394667pt;}
.ws1{word-spacing:-25.205333pt;}
.ws2{word-spacing:-12.192000pt;}
.ws8{word-spacing:-9.333333pt;}
.ws6{word-spacing:-7.413333pt;}
.ws3{word-spacing:-6.600000pt;}
.ws7{word-spacing:-5.133333pt;}
.ws5{word-spacing:-4.077333pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-73.301333pt;}
._5{margin-left:-7.168000pt;}
._12{margin-left:-5.792000pt;}
._2{margin-left:-4.586667pt;}
._6{margin-left:-3.221333pt;}
._1{margin-left:-1.440000pt;}
._0{width:1.493333pt;}
._4{width:3.136000pt;}
._d{width:4.112000pt;}
._c{width:5.088000pt;}
._a{width:6.096000pt;}
._b{width:7.728000pt;}
._7{width:8.688000pt;}
._8{width:10.368000pt;}
._15{width:11.386667pt;}
._16{width:12.496000pt;}
._9{width:13.397333pt;}
._11{width:14.448000pt;}
._10{width:15.936000pt;}
._13{width:17.088000pt;}
._e{width:18.000000pt;}
._14{width:27.312000pt;}
._f{width:46.560000pt;}
.fs8{font-size:14.666667pt;}
.fsa{font-size:20.533333pt;}
.fs6{font-size:26.400000pt;}
.fs1{font-size:26.666667pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:49.866667pt;}
.fs3{font-size:90.666667pt;}
.fs2{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:2.245333pt;}
.y53{bottom:3.091007pt;}
.y56{bottom:15.045333pt;}
.y55{bottom:27.845333pt;}
.y57{bottom:28.691007pt;}
.y54{bottom:40.645333pt;}
.y1{bottom:47.154800pt;}
.y59{bottom:47.187867pt;}
.y9c{bottom:47.188000pt;}
.y52{bottom:49.527600pt;}
.y96{bottom:76.056533pt;}
.y51{bottom:80.946267pt;}
.y37{bottom:81.176933pt;}
.y9a{bottom:83.061867pt;}
.yac{bottom:88.417733pt;}
.yb3{bottom:88.429733pt;}
.y95{bottom:90.720533pt;}
.y50{bottom:95.610267pt;}
.y36{bottom:95.840933pt;}
.y99{bottom:96.395200pt;}
.yab{bottom:103.081733pt;}
.yb2{bottom:103.093733pt;}
.y94{bottom:105.384533pt;}
.y4f{bottom:110.274267pt;}
.y35{bottom:110.504933pt;}
.yaa{bottom:117.745733pt;}
.yb1{bottom:117.757733pt;}
.y93{bottom:120.048533pt;}
.y4e{bottom:124.938267pt;}
.y34{bottom:125.168933pt;}
.yb0{bottom:132.421733pt;}
.y92{bottom:134.712533pt;}
.y4d{bottom:139.602267pt;}
.y33{bottom:139.832933pt;}
.ya9{bottom:147.073733pt;}
.yaf{bottom:147.085733pt;}
.y91{bottom:149.376533pt;}
.y4c{bottom:154.266267pt;}
.y32{bottom:154.496933pt;}
.yae{bottom:161.749733pt;}
.y90{bottom:164.040533pt;}
.y4b{bottom:168.930267pt;}
.y31{bottom:169.160933pt;}
.yad{bottom:176.413733pt;}
.y8f{bottom:178.704533pt;}
.y4a{bottom:183.596933pt;}
.y30{bottom:183.824933pt;}
.ya8{bottom:191.077733pt;}
.y8e{bottom:193.368533pt;}
.y49{bottom:198.266267pt;}
.y2f{bottom:198.488933pt;}
.ya7{bottom:205.741733pt;}
.y8d{bottom:208.032533pt;}
.y48{bottom:212.930267pt;}
.y2e{bottom:213.152933pt;}
.ya6{bottom:220.405733pt;}
.y8c{bottom:222.696533pt;}
.y47{bottom:227.607600pt;}
.y2d{bottom:227.816933pt;}
.ya5{bottom:235.069733pt;}
.y8b{bottom:237.360533pt;}
.y46{bottom:242.271600pt;}
.y2c{bottom:242.480933pt;}
.ya4{bottom:249.733733pt;}
.y8a{bottom:252.024533pt;}
.y45{bottom:256.935600pt;}
.y2b{bottom:257.144933pt;}
.ya3{bottom:264.397733pt;}
.y89{bottom:266.688533pt;}
.y44{bottom:271.599600pt;}
.y2a{bottom:271.808933pt;}
.ya2{bottom:279.061733pt;}
.y88{bottom:281.352533pt;}
.y43{bottom:286.263600pt;}
.y29{bottom:286.506267pt;}
.ya1{bottom:293.725733pt;}
.y87{bottom:296.016533pt;}
.y42{bottom:300.992933pt;}
.y28{bottom:301.170267pt;}
.ya0{bottom:308.389733pt;}
.y86{bottom:310.680533pt;}
.y41{bottom:315.656933pt;}
.y27{bottom:315.834267pt;}
.y9f{bottom:323.053733pt;}
.y85{bottom:325.344533pt;}
.y40{bottom:330.320933pt;}
.y26{bottom:330.498267pt;}
.y9e{bottom:337.717733pt;}
.y84{bottom:340.008533pt;}
.y25{bottom:345.162267pt;}
.y9d{bottom:352.381733pt;}
.y83{bottom:354.672533pt;}
.y3f{bottom:359.648933pt;}
.y24{bottom:359.826267pt;}
.y82{bottom:369.336533pt;}
.y23{bottom:374.490267pt;}
.y81{bottom:384.000533pt;}
.y22{bottom:389.154267pt;}
.y80{bottom:398.664533pt;}
.y3e{bottom:403.652933pt;}
.y21{bottom:403.818267pt;}
.yb5{bottom:407.891333pt;}
.y7f{bottom:413.328533pt;}
.y3d{bottom:418.316933pt;}
.y20{bottom:418.482267pt;}
.yb4{bottom:421.224667pt;}
.y7e{bottom:427.992533pt;}
.y3c{bottom:432.980933pt;}
.y1f{bottom:433.146267pt;}
.y98{bottom:434.558000pt;}
.y7d{bottom:442.656533pt;}
.y3b{bottom:447.644933pt;}
.y1e{bottom:447.810267pt;}
.y97{bottom:447.891333pt;}
.y7c{bottom:457.320533pt;}
.y3a{bottom:462.308933pt;}
.y1d{bottom:462.474267pt;}
.y7b{bottom:471.984533pt;}
.y39{bottom:476.972933pt;}
.y1c{bottom:477.138267pt;}
.y7a{bottom:486.648533pt;}
.y38{bottom:491.636933pt;}
.y1b{bottom:491.802267pt;}
.y79{bottom:501.312533pt;}
.y78{bottom:515.976533pt;}
.y1a{bottom:517.806267pt;}
.y77{bottom:530.640533pt;}
.y76{bottom:545.304533pt;}
.y75{bottom:559.968533pt;}
.ydc{bottom:560.510933pt;}
.y19{bottom:572.581067pt;}
.y74{bottom:574.632533pt;}
.ydb{bottom:575.625600pt;}
.yf7{bottom:577.276800pt;}
.yf6{bottom:588.636800pt;}
.y73{bottom:589.296533pt;}
.yda{bottom:590.740267pt;}
.y18{bottom:597.253067pt;}
.yf5{bottom:599.967467pt;}
.y72{bottom:603.960533pt;}
.y17{bottom:610.585067pt;}
.yf4{bottom:611.298133pt;}
.yd9{bottom:616.738400pt;}
.y71{bottom:618.624533pt;}
.yf3{bottom:622.628800pt;}
.y16{bottom:623.917067pt;}
.yd8{bottom:628.069067pt;}
.y70{bottom:633.288533pt;}
.yf2{bottom:633.959467pt;}
.y15{bottom:637.249067pt;}
.yd7{bottom:639.399733pt;}
.yf1{bottom:645.290133pt;}
.y6f{bottom:647.952533pt;}
.y14{bottom:650.581067pt;}
.yd6{bottom:650.730400pt;}
.yf0{bottom:656.620800pt;}
.yd5{bottom:662.061067pt;}
.yef{bottom:667.951467pt;}
.y12{bottom:671.293067pt;}
.yd4{bottom:673.391733pt;}
.y13{bottom:675.253067pt;}
.y11{bottom:675.257067pt;}
.y6e{bottom:677.280533pt;}
.yee{bottom:679.282133pt;}
.yd3{bottom:684.722400pt;}
.yed{bottom:690.612800pt;}
.yd2{bottom:696.053067pt;}
.y10{bottom:699.929067pt;}
.yec{bottom:701.943467pt;}
.yd1{bottom:707.383733pt;}
.yeb{bottom:713.274133pt;}
.yd0{bottom:718.714400pt;}
.y6d{bottom:721.284533pt;}
.yf{bottom:726.593067pt;}
.ycf{bottom:730.045067pt;}
.y6c{bottom:735.948533pt;}
.yea{bottom:735.964800pt;}
.ye{bottom:739.925067pt;}
.yce{bottom:741.375733pt;}
.y6b{bottom:750.612533pt;}
.ycd{bottom:752.706400pt;}
.yd{bottom:753.257067pt;}
.ycc{bottom:764.037067pt;}
.y6a{bottom:765.276533pt;}
.yc{bottom:766.589067pt;}
.ycb{bottom:775.367733pt;}
.yb{bottom:779.921067pt;}
.ye9{bottom:779.968800pt;}
.y69{bottom:779.980667pt;}
.yca{bottom:786.698400pt;}
.ya{bottom:793.253067pt;}
.ye8{bottom:794.632800pt;}
.y68{bottom:794.644667pt;}
.yc9{bottom:798.029067pt;}
.ye7{bottom:809.296800pt;}
.y67{bottom:809.308667pt;}
.yc8{bottom:809.359733pt;}
.yc7{bottom:820.690400pt;}
.ye6{bottom:823.960800pt;}
.y66{bottom:823.972667pt;}
.y9{bottom:825.435600pt;}
.yc6{bottom:832.021067pt;}
.ye5{bottom:838.624800pt;}
.y65{bottom:838.636667pt;}
.y8{bottom:838.768933pt;}
.yc5{bottom:843.351733pt;}
.y7{bottom:852.104933pt;}
.ye4{bottom:853.288800pt;}
.y64{bottom:853.300667pt;}
.yc4{bottom:854.682400pt;}
.yc3{bottom:866.013067pt;}
.y6{bottom:866.768933pt;}
.ye3{bottom:867.952800pt;}
.y63{bottom:867.964667pt;}
.yc2{bottom:877.343733pt;}
.y62{bottom:882.628667pt;}
.yc1{bottom:888.674400pt;}
.ye2{bottom:897.280800pt;}
.y61{bottom:897.292667pt;}
.yc0{bottom:900.005067pt;}
.y5{bottom:902.135867pt;}
.ybf{bottom:911.335733pt;}
.y60{bottom:911.956667pt;}
.ybe{bottom:922.666400pt;}
.y5f{bottom:926.620667pt;}
.ybd{bottom:933.997067pt;}
.y5e{bottom:941.284667pt;}
.ye1{bottom:941.284800pt;}
.ybc{bottom:945.327733pt;}
.y5d{bottom:955.948667pt;}
.ye0{bottom:955.948800pt;}
.ybb{bottom:956.658400pt;}
.y3{bottom:958.788800pt;}
.yba{bottom:967.989067pt;}
.y5c{bottom:970.612667pt;}
.ydf{bottom:970.612800pt;}
.y4{bottom:978.810133pt;}
.yb9{bottom:979.319733pt;}
.y5b{bottom:985.276667pt;}
.yde{bottom:985.276800pt;}
.yb8{bottom:990.653067pt;}
.y5a{bottom:999.940667pt;}
.ydd{bottom:999.940800pt;}
.yb7{bottom:1001.983733pt;}
.y2{bottom:1002.940533pt;}
.yb6{bottom:1051.318533pt;}
.y9b{bottom:1052.074400pt;}
.hf{height:23.466667pt;}
.h3{height:24.106667pt;}
.hb{height:24.208594pt;}
.h11{height:29.111979pt;}
.hc{height:29.216000pt;}
.h10{height:32.875000pt;}
.h2{height:33.270833pt;}
.h9{height:34.921875pt;}
.h8{height:37.429688pt;}
.h4{height:38.570667pt;}
.h7{height:43.824000pt;}
.ha{height:44.015625pt;}
.he{height:44.500000pt;}
.hd{height:49.066667pt;}
.h6{height:82.778667pt;}
.h5{height:102.256000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:176.053333pt;}
.w2{width:229.458667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:55.433067pt;}
.xf{left:56.694267pt;}
.x1{left:58.026267pt;}
.x1c{left:63.360000pt;}
.xa{left:69.756533pt;}
.x1d{left:74.028000pt;}
.xe{left:75.594267pt;}
.x5{left:126.203467pt;}
.x8{left:225.054933pt;}
.xb{left:229.142400pt;}
.xc{left:232.432667pt;}
.xd{left:242.399467pt;}
.x7{left:245.114260pt;}
.x6{left:262.911467pt;}
.x9{left:280.358667pt;}
.x13{left:282.121338pt;}
.x3{left:309.448667pt;}
.x4{left:310.419733pt;}
.x2{left:311.887467pt;}
.x10{left:408.184533pt;}
.x1a{left:409.522267pt;}
.x1b{left:412.156507pt;}
.x18{left:414.856000pt;}
.x17{left:419.118800pt;}
.x19{left:425.524000pt;}
.x11{left:427.084533pt;}
.x14{left:531.852458pt;}
.x12{left:570.805733pt;}
.x15{left:719.674533pt;}
}

