
    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_e531218a69c7d10b5da9aeb9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_64c8d34ea972507c63609d59.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eb3c409d74b0bc6def7bf056.woff')format("woff");}.ff3{font-family:ff3;line-height:1.073242;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_9a6220fe589ce201e28b7a35.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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);}
.v5{vertical-align:-19.800000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.840000px;}
.v4{vertical-align:19.800000px;}
.v2{vertical-align:23.759400px;}
.v1{vertical-align:31.680000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012000px;}
.ls6{letter-spacing:0.052200px;}
.ls9{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.096000px;}
.lsc{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.240000px;}
.lsf{letter-spacing:0.300000px;}
.lsd{letter-spacing:0.348000px;}
.lsb{letter-spacing:0.360000px;}
.lse{letter-spacing:0.420000px;}
.ls8{letter-spacing:0.469800px;}
.lsa{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.522000px;}
.ls10{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-15.750000px;}
.ws5{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.650000px;}
.ws8{word-spacing:-13.050000px;}
.ws0{word-spacing:-10.440000px;}
.ws6{word-spacing:-8.700000px;}
.ws3{word-spacing:-6.960000px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-12.741000px;}
._5{margin-left:-8.736000px;}
._d{margin-left:-7.560000px;}
._3{margin-left:-5.661000px;}
._c{margin-left:-4.584000px;}
._1{margin-left:-3.570000px;}
._6{margin-left:-2.559000px;}
._0{margin-left:-1.275000px;}
._7{width:1.008000px;}
._a{width:2.196000px;}
._8{width:3.600000px;}
._9{width:5.400000px;}
._e{width:7.048200px;}
._12{width:8.287800px;}
._11{width:27.091800px;}
._f{width:28.657800px;}
._10{width:31.216800px;}
._b{width:54.757800px;}
._2{width:459.601800px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:27.840000px;}
.fse{font-size:34.800000px;}
.fs5{font-size:41.760000px;}
.fs9{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fsc{font-size:52.200000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:54.600000px;}
.fs3{font-size:55.680000px;}
.fs8{font-size:57.000000px;}
.fsb{font-size:60.000000px;}
.fsd{font-size:63.000000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:63.444300px;}
.yba{bottom:119.056050px;}
.y22{bottom:119.056200px;}
.yc0{bottom:119.797200px;}
.ybe{bottom:119.797350px;}
.yc2{bottom:122.620050px;}
.y72{bottom:123.254250px;}
.yc5{bottom:124.550700px;}
.yc9{bottom:127.441350px;}
.ybc{bottom:128.819850px;}
.ycb{bottom:134.253000px;}
.yb9{bottom:134.716050px;}
.y21{bottom:134.716200px;}
.ybf{bottom:136.294200px;}
.ybd{bottom:136.294350px;}
.yc6{bottom:137.085900px;}
.yc1{bottom:139.117050px;}
.y71{bottom:141.254250px;}
.yc7{bottom:141.393150px;}
.yc8{bottom:143.938350px;}
.ybb{bottom:145.316850px;}
.yb8{bottom:150.376050px;}
.y20{bottom:150.376200px;}
.yca{bottom:150.750000px;}
.yc4{bottom:152.988150px;}
.y70{bottom:159.254250px;}
.yb7{bottom:166.036050px;}
.y1f{bottom:166.036200px;}
.yc3{bottom:169.485150px;}
.y6f{bottom:177.254250px;}
.yb6{bottom:181.696050px;}
.y1e{bottom:181.696200px;}
.y6e{bottom:195.254250px;}
.yb5{bottom:197.356050px;}
.y1d{bottom:197.356200px;}
.yb4{bottom:213.016050px;}
.y59{bottom:213.016200px;}
.y6d{bottom:213.254250px;}
.y46{bottom:213.346350px;}
.yb3{bottom:228.676050px;}
.y58{bottom:228.676200px;}
.y6c{bottom:231.254250px;}
.y1c{bottom:231.313950px;}
.y45{bottom:231.346350px;}
.yb2{bottom:244.336050px;}
.y57{bottom:244.336200px;}
.y67{bottom:249.254250px;}
.y1b{bottom:249.313950px;}
.y44{bottom:249.346350px;}
.yb1{bottom:259.996050px;}
.y56{bottom:259.996200px;}
.y66{bottom:267.254250px;}
.y1a{bottom:267.313950px;}
.y43{bottom:267.346350px;}
.yb0{bottom:275.656050px;}
.y55{bottom:275.656200px;}
.y65{bottom:285.254250px;}
.y19{bottom:285.313950px;}
.y42{bottom:285.346350px;}
.yaf{bottom:291.316050px;}
.y54{bottom:291.316200px;}
.y64{bottom:303.254250px;}
.y18{bottom:303.313950px;}
.y41{bottom:303.346350px;}
.yae{bottom:306.976050px;}
.y53{bottom:306.976200px;}
.y63{bottom:321.254250px;}
.y40{bottom:321.346350px;}
.yad{bottom:322.636050px;}
.y8e{bottom:322.636200px;}
.yac{bottom:338.296050px;}
.y8d{bottom:338.296200px;}
.y62{bottom:339.254250px;}
.y3f{bottom:339.346350px;}
.yab{bottom:353.956050px;}
.y52{bottom:356.446350px;}
.y61{bottom:357.254250px;}
.y17{bottom:357.313950px;}
.y3e{bottom:357.346350px;}
.yaa{bottom:369.616050px;}
.y16{bottom:371.713950px;}
.y51{bottom:374.446350px;}
.y60{bottom:375.254250px;}
.y3d{bottom:375.346350px;}
.ya9{bottom:385.276050px;}
.y15{bottom:386.113950px;}
.y50{bottom:392.446350px;}
.y5f{bottom:393.254250px;}
.y3c{bottom:393.346350px;}
.y14{bottom:400.513950px;}
.ya8{bottom:400.936050px;}
.y4f{bottom:410.446350px;}
.y8c{bottom:411.239550px;}
.y5e{bottom:411.254250px;}
.y3b{bottom:411.346350px;}
.y13{bottom:414.913950px;}
.ya7{bottom:416.596050px;}
.y8b{bottom:429.239550px;}
.y5d{bottom:429.254250px;}
.y12{bottom:429.313950px;}
.y3a{bottom:429.346350px;}
.ya6{bottom:432.256050px;}
.y11{bottom:443.713950px;}
.y4e{bottom:445.454250px;}
.y8a{bottom:447.239550px;}
.y5c{bottom:447.254250px;}
.y39{bottom:447.346350px;}
.ya5{bottom:447.916050px;}
.ya4{bottom:463.576050px;}
.y4d{bottom:464.354250px;}
.y89{bottom:465.239550px;}
.y5b{bottom:465.254250px;}
.y38{bottom:465.346350px;}
.ya3{bottom:479.236050px;}
.y88{bottom:483.239550px;}
.y5a{bottom:483.254250px;}
.y37{bottom:483.346350px;}
.y10{bottom:486.913950px;}
.y87{bottom:501.239550px;}
.y4c{bottom:501.254250px;}
.yf{bottom:501.313950px;}
.y36{bottom:501.346350px;}
.ya2{bottom:510.254100px;}
.ye{bottom:515.713950px;}
.y86{bottom:519.239550px;}
.y4b{bottom:519.254250px;}
.y35{bottom:519.346350px;}
.ya1{bottom:527.804100px;}
.yd{bottom:530.113950px;}
.y85{bottom:537.239550px;}
.y4a{bottom:537.254250px;}
.y34{bottom:537.346350px;}
.yc{bottom:544.513950px;}
.ya0{bottom:545.354100px;}
.y84{bottom:555.239550px;}
.y49{bottom:555.254250px;}
.y6b{bottom:555.346350px;}
.yb{bottom:558.913950px;}
.y9f{bottom:562.904100px;}
.y33{bottom:572.354250px;}
.y83{bottom:573.239550px;}
.y48{bottom:573.254250px;}
.ya{bottom:573.313950px;}
.y6a{bottom:573.346350px;}
.y9e{bottom:580.454100px;}
.y82{bottom:591.239550px;}
.y47{bottom:591.254250px;}
.y69{bottom:591.346350px;}
.y9d{bottom:598.004250px;}
.y81{bottom:609.239550px;}
.y32{bottom:609.254250px;}
.y9c{bottom:615.554250px;}
.y68{bottom:626.354250px;}
.y80{bottom:627.239550px;}
.y31{bottom:627.254250px;}
.y9b{bottom:633.104250px;}
.y9{bottom:641.713950px;}
.y7f{bottom:645.239550px;}
.y30{bottom:645.254250px;}
.y9a{bottom:650.654250px;}
.y8{bottom:658.813950px;}
.y7e{bottom:663.239550px;}
.y2f{bottom:663.254250px;}
.y99{bottom:668.204250px;}
.y7d{bottom:681.239550px;}
.y2e{bottom:681.254250px;}
.y98{bottom:685.754250px;}
.y7c{bottom:699.239550px;}
.y2d{bottom:699.254250px;}
.y97{bottom:703.304250px;}
.y7b{bottom:717.239550px;}
.y2c{bottom:717.254250px;}
.y7{bottom:718.214100px;}
.y96{bottom:720.854250px;}
.y7a{bottom:735.239550px;}
.y2b{bottom:735.254250px;}
.y95{bottom:738.404250px;}
.y6{bottom:739.814100px;}
.y79{bottom:753.239550px;}
.y2a{bottom:753.254250px;}
.y94{bottom:755.954250px;}
.y78{bottom:771.239550px;}
.y29{bottom:771.254250px;}
.y93{bottom:773.504250px;}
.y77{bottom:789.239550px;}
.y28{bottom:789.254250px;}
.y92{bottom:791.054250px;}
.y5{bottom:797.413950px;}
.y76{bottom:807.239550px;}
.y27{bottom:807.254250px;}
.y91{bottom:808.604250px;}
.y75{bottom:825.239550px;}
.y26{bottom:825.254250px;}
.y90{bottom:826.154250px;}
.y4{bottom:826.213950px;}
.y74{bottom:843.239550px;}
.y25{bottom:843.254250px;}
.y8f{bottom:843.704250px;}
.y3{bottom:855.013950px;}
.y73{bottom:861.239550px;}
.y24{bottom:861.254250px;}
.y1{bottom:917.227050px;}
.y23{bottom:917.357250px;}
.h8{height:42.117188px;}
.h9{height:42.632812px;}
.h3{height:44.749512px;}
.hd{height:44.874023px;}
.hc{height:45.802441px;}
.hb{height:45.929883px;}
.he{height:47.381836px;}
.h11{height:47.513672px;}
.h2{height:47.902636px;}
.h7{height:50.014160px;}
.ha{height:52.646484px;}
.h10{height:52.792969px;}
.hf{height:55.278809px;}
.h5{height:63.175781px;}
.h6{height:68.440430px;}
.h4{height:84.234375px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:104.598450px;}
.xa{left:106.299150px;}
.xd{left:108.850350px;}
.x6{left:119.151300px;}
.xb{left:123.324300px;}
.x3{left:125.513100px;}
.x15{left:127.738200px;}
.x9{left:131.811150px;}
.xe{left:145.042200px;}
.x14{left:153.502200px;}
.x4{left:175.169100px;}
.x8{left:209.344950px;}
.x10{left:218.432250px;}
.x7{left:227.493300px;}
.x13{left:268.636650px;}
.x2{left:271.283100px;}
.x16{left:280.771650px;}
.xf{left:283.835700px;}
.x5{left:289.049100px;}
.x11{left:295.638750px;}
.x12{left:304.560150px;}
.xc{left:449.240250px;}
@media print{
.v5{vertical-align:-17.600000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.080000pt;}
.v4{vertical-align:17.600000pt;}
.v2{vertical-align:21.119467pt;}
.v1{vertical-align:28.160000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.010667pt;}
.ls6{letter-spacing:0.046400pt;}
.ls9{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.085333pt;}
.lsc{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.213333pt;}
.lsf{letter-spacing:0.266667pt;}
.lsd{letter-spacing:0.309333pt;}
.lsb{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.373333pt;}
.ls8{letter-spacing:0.417600pt;}
.lsa{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.464000pt;}
.ls10{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.533333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-14.000000pt;}
.ws5{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.133333pt;}
.ws8{word-spacing:-11.600000pt;}
.ws0{word-spacing:-9.280000pt;}
.ws6{word-spacing:-7.733333pt;}
.ws3{word-spacing:-6.186667pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-11.325333pt;}
._5{margin-left:-7.765333pt;}
._d{margin-left:-6.720000pt;}
._3{margin-left:-5.032000pt;}
._c{margin-left:-4.074667pt;}
._1{margin-left:-3.173333pt;}
._6{margin-left:-2.274667pt;}
._0{margin-left:-1.133333pt;}
._7{width:0.896000pt;}
._a{width:1.952000pt;}
._8{width:3.200000pt;}
._9{width:4.800000pt;}
._e{width:6.265067pt;}
._12{width:7.366933pt;}
._11{width:24.081600pt;}
._f{width:25.473600pt;}
._10{width:27.748267pt;}
._b{width:48.673600pt;}
._2{width:408.534933pt;}
.fsa{font-size:24.746667pt;}
.fse{font-size:30.933333pt;}
.fs5{font-size:37.120000pt;}
.fs9{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fsc{font-size:46.400000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:48.533333pt;}
.fs3{font-size:49.493333pt;}
.fs8{font-size:50.666667pt;}
.fsb{font-size:53.333333pt;}
.fsd{font-size:56.000000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:56.394933pt;}
.yba{bottom:105.827600pt;}
.y22{bottom:105.827733pt;}
.yc0{bottom:106.486400pt;}
.ybe{bottom:106.486533pt;}
.yc2{bottom:108.995600pt;}
.y72{bottom:109.559333pt;}
.yc5{bottom:110.711733pt;}
.yc9{bottom:113.281200pt;}
.ybc{bottom:114.506533pt;}
.ycb{bottom:119.336000pt;}
.yb9{bottom:119.747600pt;}
.y21{bottom:119.747733pt;}
.ybf{bottom:121.150400pt;}
.ybd{bottom:121.150533pt;}
.yc6{bottom:121.854133pt;}
.yc1{bottom:123.659600pt;}
.y71{bottom:125.559333pt;}
.yc7{bottom:125.682800pt;}
.yc8{bottom:127.945200pt;}
.ybb{bottom:129.170533pt;}
.yb8{bottom:133.667600pt;}
.y20{bottom:133.667733pt;}
.yca{bottom:134.000000pt;}
.yc4{bottom:135.989467pt;}
.y70{bottom:141.559333pt;}
.yb7{bottom:147.587600pt;}
.y1f{bottom:147.587733pt;}
.yc3{bottom:150.653467pt;}
.y6f{bottom:157.559333pt;}
.yb6{bottom:161.507600pt;}
.y1e{bottom:161.507733pt;}
.y6e{bottom:173.559333pt;}
.yb5{bottom:175.427600pt;}
.y1d{bottom:175.427733pt;}
.yb4{bottom:189.347600pt;}
.y59{bottom:189.347733pt;}
.y6d{bottom:189.559333pt;}
.y46{bottom:189.641200pt;}
.yb3{bottom:203.267600pt;}
.y58{bottom:203.267733pt;}
.y6c{bottom:205.559333pt;}
.y1c{bottom:205.612400pt;}
.y45{bottom:205.641200pt;}
.yb2{bottom:217.187600pt;}
.y57{bottom:217.187733pt;}
.y67{bottom:221.559333pt;}
.y1b{bottom:221.612400pt;}
.y44{bottom:221.641200pt;}
.yb1{bottom:231.107600pt;}
.y56{bottom:231.107733pt;}
.y66{bottom:237.559333pt;}
.y1a{bottom:237.612400pt;}
.y43{bottom:237.641200pt;}
.yb0{bottom:245.027600pt;}
.y55{bottom:245.027733pt;}
.y65{bottom:253.559333pt;}
.y19{bottom:253.612400pt;}
.y42{bottom:253.641200pt;}
.yaf{bottom:258.947600pt;}
.y54{bottom:258.947733pt;}
.y64{bottom:269.559333pt;}
.y18{bottom:269.612400pt;}
.y41{bottom:269.641200pt;}
.yae{bottom:272.867600pt;}
.y53{bottom:272.867733pt;}
.y63{bottom:285.559333pt;}
.y40{bottom:285.641200pt;}
.yad{bottom:286.787600pt;}
.y8e{bottom:286.787733pt;}
.yac{bottom:300.707600pt;}
.y8d{bottom:300.707733pt;}
.y62{bottom:301.559333pt;}
.y3f{bottom:301.641200pt;}
.yab{bottom:314.627600pt;}
.y52{bottom:316.841200pt;}
.y61{bottom:317.559333pt;}
.y17{bottom:317.612400pt;}
.y3e{bottom:317.641200pt;}
.yaa{bottom:328.547600pt;}
.y16{bottom:330.412400pt;}
.y51{bottom:332.841200pt;}
.y60{bottom:333.559333pt;}
.y3d{bottom:333.641200pt;}
.ya9{bottom:342.467600pt;}
.y15{bottom:343.212400pt;}
.y50{bottom:348.841200pt;}
.y5f{bottom:349.559333pt;}
.y3c{bottom:349.641200pt;}
.y14{bottom:356.012400pt;}
.ya8{bottom:356.387600pt;}
.y4f{bottom:364.841200pt;}
.y8c{bottom:365.546267pt;}
.y5e{bottom:365.559333pt;}
.y3b{bottom:365.641200pt;}
.y13{bottom:368.812400pt;}
.ya7{bottom:370.307600pt;}
.y8b{bottom:381.546267pt;}
.y5d{bottom:381.559333pt;}
.y12{bottom:381.612400pt;}
.y3a{bottom:381.641200pt;}
.ya6{bottom:384.227600pt;}
.y11{bottom:394.412400pt;}
.y4e{bottom:395.959333pt;}
.y8a{bottom:397.546267pt;}
.y5c{bottom:397.559333pt;}
.y39{bottom:397.641200pt;}
.ya5{bottom:398.147600pt;}
.ya4{bottom:412.067600pt;}
.y4d{bottom:412.759333pt;}
.y89{bottom:413.546267pt;}
.y5b{bottom:413.559333pt;}
.y38{bottom:413.641200pt;}
.ya3{bottom:425.987600pt;}
.y88{bottom:429.546267pt;}
.y5a{bottom:429.559333pt;}
.y37{bottom:429.641200pt;}
.y10{bottom:432.812400pt;}
.y87{bottom:445.546267pt;}
.y4c{bottom:445.559333pt;}
.yf{bottom:445.612400pt;}
.y36{bottom:445.641200pt;}
.ya2{bottom:453.559200pt;}
.ye{bottom:458.412400pt;}
.y86{bottom:461.546267pt;}
.y4b{bottom:461.559333pt;}
.y35{bottom:461.641200pt;}
.ya1{bottom:469.159200pt;}
.yd{bottom:471.212400pt;}
.y85{bottom:477.546267pt;}
.y4a{bottom:477.559333pt;}
.y34{bottom:477.641200pt;}
.yc{bottom:484.012400pt;}
.ya0{bottom:484.759200pt;}
.y84{bottom:493.546267pt;}
.y49{bottom:493.559333pt;}
.y6b{bottom:493.641200pt;}
.yb{bottom:496.812400pt;}
.y9f{bottom:500.359200pt;}
.y33{bottom:508.759333pt;}
.y83{bottom:509.546267pt;}
.y48{bottom:509.559333pt;}
.ya{bottom:509.612400pt;}
.y6a{bottom:509.641200pt;}
.y9e{bottom:515.959200pt;}
.y82{bottom:525.546267pt;}
.y47{bottom:525.559333pt;}
.y69{bottom:525.641200pt;}
.y9d{bottom:531.559333pt;}
.y81{bottom:541.546267pt;}
.y32{bottom:541.559333pt;}
.y9c{bottom:547.159333pt;}
.y68{bottom:556.759333pt;}
.y80{bottom:557.546267pt;}
.y31{bottom:557.559333pt;}
.y9b{bottom:562.759333pt;}
.y9{bottom:570.412400pt;}
.y7f{bottom:573.546267pt;}
.y30{bottom:573.559333pt;}
.y9a{bottom:578.359333pt;}
.y8{bottom:585.612400pt;}
.y7e{bottom:589.546267pt;}
.y2f{bottom:589.559333pt;}
.y99{bottom:593.959333pt;}
.y7d{bottom:605.546267pt;}
.y2e{bottom:605.559333pt;}
.y98{bottom:609.559333pt;}
.y7c{bottom:621.546267pt;}
.y2d{bottom:621.559333pt;}
.y97{bottom:625.159333pt;}
.y7b{bottom:637.546267pt;}
.y2c{bottom:637.559333pt;}
.y7{bottom:638.412533pt;}
.y96{bottom:640.759333pt;}
.y7a{bottom:653.546267pt;}
.y2b{bottom:653.559333pt;}
.y95{bottom:656.359333pt;}
.y6{bottom:657.612533pt;}
.y79{bottom:669.546267pt;}
.y2a{bottom:669.559333pt;}
.y94{bottom:671.959333pt;}
.y78{bottom:685.546267pt;}
.y29{bottom:685.559333pt;}
.y93{bottom:687.559333pt;}
.y77{bottom:701.546267pt;}
.y28{bottom:701.559333pt;}
.y92{bottom:703.159333pt;}
.y5{bottom:708.812400pt;}
.y76{bottom:717.546267pt;}
.y27{bottom:717.559333pt;}
.y91{bottom:718.759333pt;}
.y75{bottom:733.546267pt;}
.y26{bottom:733.559333pt;}
.y90{bottom:734.359333pt;}
.y4{bottom:734.412400pt;}
.y74{bottom:749.546267pt;}
.y25{bottom:749.559333pt;}
.y8f{bottom:749.959333pt;}
.y3{bottom:760.012400pt;}
.y73{bottom:765.546267pt;}
.y24{bottom:765.559333pt;}
.y1{bottom:815.312933pt;}
.y23{bottom:815.428667pt;}
.h8{height:37.437500pt;}
.h9{height:37.895833pt;}
.h3{height:39.777344pt;}
.hd{height:39.888021pt;}
.hc{height:40.713281pt;}
.hb{height:40.826562pt;}
.he{height:42.117188pt;}
.h11{height:42.234375pt;}
.h2{height:42.580121pt;}
.h7{height:44.457031pt;}
.ha{height:46.796875pt;}
.h10{height:46.927083pt;}
.hf{height:49.136719pt;}
.h5{height:56.156250pt;}
.h6{height:60.835938pt;}
.h4{height:74.875000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:92.976400pt;}
.xa{left:94.488133pt;}
.xd{left:96.755867pt;}
.x6{left:105.912267pt;}
.xb{left:109.621600pt;}
.x3{left:111.567200pt;}
.x15{left:113.545067pt;}
.x9{left:117.165467pt;}
.xe{left:128.926400pt;}
.x14{left:136.446400pt;}
.x4{left:155.705867pt;}
.x8{left:186.084400pt;}
.x10{left:194.162000pt;}
.x7{left:202.216267pt;}
.x13{left:238.788133pt;}
.x2{left:241.140533pt;}
.x16{left:249.574800pt;}
.xf{left:252.298400pt;}
.x5{left:256.932533pt;}
.x11{left:262.790000pt;}
.x12{left:270.720133pt;}
.xc{left:399.324667pt;}
}

