
    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_d48671e0b709ced871b0635f.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3ac198f31a5bf43addd6836a.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_482363b0d26a79d3f96e142b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.091309;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_92ba27f5c22c5bdaebc0cec0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_20023f636a56fe468207fea0.woff')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.v7{vertical-align:-17.820000px;}
.v4{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.840000px;}
.v6{vertical-align:17.802000px;}
.v2{vertical-align:19.800000px;}
.v1{vertical-align:21.780000px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.007200px;}
.ls5{letter-spacing:0.007800px;}
.lsa{letter-spacing:0.008400px;}
.ls0{letter-spacing:0.009600px;}
.ls8{letter-spacing:0.168600px;}
.ls7{letter-spacing:0.169200px;}
.ls9{letter-spacing:0.174000px;}
.ls6{letter-spacing:0.300000px;}
.ls3{letter-spacing:0.342600px;}
.ls2{letter-spacing:0.348000px;}
.ls1{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;}
}
.ws7{word-spacing:-15.000000px;}
.ws2{word-spacing:-12.000000px;}
.ws1{word-spacing:-10.500000px;}
.ws0{word-spacing:-9.570000px;}
.ws5{word-spacing:-8.700000px;}
.ws3{word-spacing:-8.400000px;}
.ws8{word-spacing:-7.830000px;}
.ws6{word-spacing:-6.960000px;}
.ws4{word-spacing:0.000000px;}
._e{margin-left:-1703.568000px;}
._c{margin-left:-15.000000px;}
._12{margin-left:-12.672000px;}
._14{margin-left:-7.723800px;}
._13{margin-left:-6.660000px;}
._9{margin-left:-5.184000px;}
._1{margin-left:-3.894000px;}
._2{margin-left:-2.886000px;}
._0{margin-left:-1.188000px;}
._4{width:1.440000px;}
._6{width:3.420000px;}
._7{width:4.860000px;}
._5{width:6.840000px;}
._d{width:8.400000px;}
._11{width:9.540000px;}
._16{width:10.548000px;}
._15{width:13.594800px;}
._f{width:59.808000px;}
._10{width:61.584000px;}
._b{width:67.560000px;}
._a{width:83.808000px;}
._8{width:95.808000px;}
._3{width:111.960000px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.840000px;}
.fs9{font-size:31.320000px;}
.fs7{font-size:33.600000px;}
.fs5{font-size:34.800000px;}
.fs2{font-size:38.280000px;}
.fs4{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y81{bottom:63.777600px;}
.y1{bottom:63.780600px;}
.ya6{bottom:106.297350px;}
.y51{bottom:106.300200px;}
.y24{bottom:106.300350px;}
.y7e{bottom:106.568100px;}
.yaa{bottom:107.802450px;}
.yad{bottom:118.461750px;}
.ya5{bottom:120.697350px;}
.y68{bottom:120.700200px;}
.y23{bottom:120.700350px;}
.y7d{bottom:124.568100px;}
.ya9{bottom:125.802450px;}
.ya4{bottom:135.097350px;}
.y72{bottom:135.100200px;}
.y22{bottom:135.100350px;}
.y7c{bottom:142.568100px;}
.ya8{bottom:143.802450px;}
.ya3{bottom:149.497350px;}
.y71{bottom:149.500200px;}
.y21{bottom:149.500350px;}
.y53{bottom:153.424800px;}
.y7b{bottom:160.568100px;}
.yba{bottom:160.740000px;}
.ya7{bottom:161.802450px;}
.ya2{bottom:163.897350px;}
.y20{bottom:163.900350px;}
.y6c{bottom:171.414900px;}
.y52{bottom:171.420300px;}
.ya1{bottom:178.297350px;}
.y1f{bottom:178.300350px;}
.y7a{bottom:178.568100px;}
.yb9{bottom:178.735500px;}
.yb8{bottom:186.531150px;}
.y6b{bottom:189.414900px;}
.ya0{bottom:192.697350px;}
.y1e{bottom:192.700350px;}
.y79{bottom:196.568100px;}
.y70{bottom:198.514050px;}
.y50{bottom:198.516900px;}
.yac{bottom:203.007450px;}
.yb7{bottom:204.526650px;}
.y9f{bottom:207.097350px;}
.y1d{bottom:207.100350px;}
.y6a{bottom:207.414900px;}
.y73{bottom:211.813950px;}
.y67{bottom:212.619300px;}
.y78{bottom:214.568100px;}
.y6f{bottom:216.514050px;}
.y4f{bottom:216.516900px;}
.yab{bottom:221.002950px;}
.y9e{bottom:221.497350px;}
.y1c{bottom:221.500350px;}
.y66{bottom:230.619300px;}
.y49{bottom:234.514050px;}
.y4e{bottom:234.516900px;}
.y9d{bottom:235.897350px;}
.y1b{bottom:235.900350px;}
.y6e{bottom:245.834250px;}
.y65{bottom:248.619300px;}
.y9c{bottom:250.297350px;}
.y1a{bottom:250.300350px;}
.y48{bottom:252.514050px;}
.y4d{bottom:252.516900px;}
.y6d{bottom:263.829750px;}
.y9b{bottom:264.697350px;}
.y4c{bottom:264.700350px;}
.y64{bottom:266.619300px;}
.y7f{bottom:268.778550px;}
.y47{bottom:270.514050px;}
.y5c{bottom:270.516900px;}
.y4b{bottom:279.100350px;}
.y63{bottom:284.619300px;}
.yb6{bottom:288.511200px;}
.y46{bottom:288.514050px;}
.y5b{bottom:288.516900px;}
.y77{bottom:293.500350px;}
.y62{bottom:302.619300px;}
.yb5{bottom:306.511200px;}
.y45{bottom:306.514050px;}
.y5a{bottom:306.516900px;}
.y76{bottom:307.900350px;}
.y61{bottom:320.619300px;}
.y75{bottom:322.300350px;}
.yb4{bottom:324.511200px;}
.y44{bottom:324.514050px;}
.y59{bottom:324.516900px;}
.y19{bottom:325.324350px;}
.y74{bottom:336.700350px;}
.y60{bottom:338.619300px;}
.yb3{bottom:342.511200px;}
.y43{bottom:342.514050px;}
.y58{bottom:342.516900px;}
.y18{bottom:343.774350px;}
.y5f{bottom:356.619300px;}
.yb2{bottom:360.511200px;}
.y42{bottom:360.514050px;}
.y57{bottom:360.516900px;}
.y17{bottom:362.224350px;}
.y5e{bottom:374.619300px;}
.yb1{bottom:378.511200px;}
.y41{bottom:378.514050px;}
.y56{bottom:378.516900px;}
.y16{bottom:380.674350px;}
.y5d{bottom:392.619300px;}
.y9a{bottom:396.511200px;}
.y40{bottom:396.514050px;}
.y55{bottom:396.516900px;}
.y15{bottom:399.124350px;}
.y99{bottom:414.511200px;}
.y3f{bottom:414.514050px;}
.y54{bottom:414.516900px;}
.y14{bottom:417.574350px;}
.yb0{bottom:432.511200px;}
.y3e{bottom:432.514050px;}
.y13{bottom:436.024350px;}
.y69{bottom:442.582650px;}
.y98{bottom:450.511200px;}
.y3d{bottom:450.514050px;}
.y12{bottom:454.474350px;}
.yaf{bottom:468.511200px;}
.y3c{bottom:468.514050px;}
.y11{bottom:472.924350px;}
.yae{bottom:486.511200px;}
.y3b{bottom:486.514050px;}
.y10{bottom:491.374350px;}
.y97{bottom:504.511200px;}
.y3a{bottom:504.514050px;}
.yf{bottom:509.824350px;}
.y96{bottom:522.511200px;}
.y39{bottom:522.514050px;}
.ye{bottom:528.274350px;}
.y95{bottom:540.511200px;}
.y38{bottom:540.514050px;}
.yd{bottom:546.724350px;}
.y94{bottom:558.511200px;}
.y37{bottom:558.514050px;}
.yc{bottom:565.174350px;}
.y93{bottom:576.511200px;}
.y36{bottom:576.514050px;}
.yb{bottom:583.624350px;}
.y92{bottom:594.511200px;}
.y35{bottom:594.514050px;}
.ya{bottom:602.074350px;}
.y91{bottom:612.511200px;}
.y34{bottom:612.514050px;}
.y9{bottom:620.524350px;}
.y90{bottom:630.511200px;}
.y33{bottom:630.514050px;}
.y8f{bottom:648.511200px;}
.y32{bottom:648.514050px;}
.y8e{bottom:666.511200px;}
.y31{bottom:666.514050px;}
.y8d{bottom:684.511200px;}
.y30{bottom:684.514050px;}
.y8{bottom:692.974350px;}
.y8c{bottom:702.511200px;}
.y2f{bottom:702.514050px;}
.y7{bottom:710.974350px;}
.y8b{bottom:720.511200px;}
.y2e{bottom:720.514050px;}
.y6{bottom:728.974350px;}
.y8a{bottom:738.511200px;}
.y2d{bottom:738.514050px;}
.y5{bottom:746.974350px;}
.y89{bottom:756.511200px;}
.y2c{bottom:756.514050px;}
.y88{bottom:774.511200px;}
.y2b{bottom:774.514050px;}
.y87{bottom:792.511200px;}
.y2a{bottom:792.514050px;}
.y86{bottom:810.511200px;}
.y29{bottom:810.514050px;}
.y4{bottom:819.154350px;}
.y85{bottom:828.511200px;}
.y28{bottom:828.514050px;}
.y3{bottom:838.954350px;}
.y84{bottom:846.511200px;}
.y4a{bottom:846.514050px;}
.y83{bottom:864.511200px;}
.y27{bottom:864.514050px;}
.y82{bottom:882.511200px;}
.y26{bottom:882.514050px;}
.y80{bottom:914.171400px;}
.y2{bottom:914.172600px;}
.y25{bottom:914.174250px;}
.h6{height:42.117188px;}
.h9{height:42.233775px;}
.h5{height:42.234375px;}
.ha{height:42.234975px;}
.h2{height:47.381836px;}
.h4{height:52.646484px;}
.h8{height:52.657884px;}
.h7{height:52.792969px;}
.h3{height:57.911133px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:106.299150px;}
.x2{left:127.560450px;}
.x7{left:138.189150px;}
.xf{left:150.812100px;}
.x9{left:175.193100px;}
.x12{left:176.464050px;}
.x10{left:187.162200px;}
.xc{left:195.100350px;}
.x4{left:198.619650px;}
.x13{left:200.264550px;}
.xd{left:204.952800px;}
.x3{left:206.539650px;}
.x11{left:209.504700px;}
.xa{left:220.761450px;}
.xb{left:243.184950px;}
.xe{left:250.879800px;}
.x6{left:297.505200px;}
.x1{left:498.054450px;}
.x8{left:604.535400px;}
@media print{
.v5{vertical-align:-17.600000pt;}
.v7{vertical-align:-15.840000pt;}
.v4{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.080000pt;}
.v6{vertical-align:15.824000pt;}
.v2{vertical-align:17.600000pt;}
.v1{vertical-align:19.360000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.006400pt;}
.ls5{letter-spacing:0.006933pt;}
.lsa{letter-spacing:0.007467pt;}
.ls0{letter-spacing:0.008533pt;}
.ls8{letter-spacing:0.149867pt;}
.ls7{letter-spacing:0.150400pt;}
.ls9{letter-spacing:0.154667pt;}
.ls6{letter-spacing:0.266667pt;}
.ls3{letter-spacing:0.304533pt;}
.ls2{letter-spacing:0.309333pt;}
.ls1{letter-spacing:0.533333pt;}
.ws7{word-spacing:-13.333333pt;}
.ws2{word-spacing:-10.666667pt;}
.ws1{word-spacing:-9.333333pt;}
.ws0{word-spacing:-8.506667pt;}
.ws5{word-spacing:-7.733333pt;}
.ws3{word-spacing:-7.466667pt;}
.ws8{word-spacing:-6.960000pt;}
.ws6{word-spacing:-6.186667pt;}
.ws4{word-spacing:0.000000pt;}
._e{margin-left:-1514.282667pt;}
._c{margin-left:-13.333333pt;}
._12{margin-left:-11.264000pt;}
._14{margin-left:-6.865600pt;}
._13{margin-left:-5.920000pt;}
._9{margin-left:-4.608000pt;}
._1{margin-left:-3.461333pt;}
._2{margin-left:-2.565333pt;}
._0{margin-left:-1.056000pt;}
._4{width:1.280000pt;}
._6{width:3.040000pt;}
._7{width:4.320000pt;}
._5{width:6.080000pt;}
._d{width:7.466667pt;}
._11{width:8.480000pt;}
._16{width:9.376000pt;}
._15{width:12.084267pt;}
._f{width:53.162667pt;}
._10{width:54.741333pt;}
._b{width:60.053333pt;}
._a{width:74.496000pt;}
._8{width:85.162667pt;}
._3{width:99.520000pt;}
.fs8{font-size:24.746667pt;}
.fs9{font-size:27.840000pt;}
.fs7{font-size:29.866667pt;}
.fs5{font-size:30.933333pt;}
.fs2{font-size:34.026667pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:56.691200pt;}
.y1{bottom:56.693867pt;}
.ya6{bottom:94.486533pt;}
.y51{bottom:94.489067pt;}
.y24{bottom:94.489200pt;}
.y7e{bottom:94.727200pt;}
.yaa{bottom:95.824400pt;}
.yad{bottom:105.299333pt;}
.ya5{bottom:107.286533pt;}
.y68{bottom:107.289067pt;}
.y23{bottom:107.289200pt;}
.y7d{bottom:110.727200pt;}
.ya9{bottom:111.824400pt;}
.ya4{bottom:120.086533pt;}
.y72{bottom:120.089067pt;}
.y22{bottom:120.089200pt;}
.y7c{bottom:126.727200pt;}
.ya8{bottom:127.824400pt;}
.ya3{bottom:132.886533pt;}
.y71{bottom:132.889067pt;}
.y21{bottom:132.889200pt;}
.y53{bottom:136.377600pt;}
.y7b{bottom:142.727200pt;}
.yba{bottom:142.880000pt;}
.ya7{bottom:143.824400pt;}
.ya2{bottom:145.686533pt;}
.y20{bottom:145.689200pt;}
.y6c{bottom:152.368800pt;}
.y52{bottom:152.373600pt;}
.ya1{bottom:158.486533pt;}
.y1f{bottom:158.489200pt;}
.y7a{bottom:158.727200pt;}
.yb9{bottom:158.876000pt;}
.yb8{bottom:165.805467pt;}
.y6b{bottom:168.368800pt;}
.ya0{bottom:171.286533pt;}
.y1e{bottom:171.289200pt;}
.y79{bottom:174.727200pt;}
.y70{bottom:176.456933pt;}
.y50{bottom:176.459467pt;}
.yac{bottom:180.451067pt;}
.yb7{bottom:181.801467pt;}
.y9f{bottom:184.086533pt;}
.y1d{bottom:184.089200pt;}
.y6a{bottom:184.368800pt;}
.y73{bottom:188.279067pt;}
.y67{bottom:188.994933pt;}
.y78{bottom:190.727200pt;}
.y6f{bottom:192.456933pt;}
.y4f{bottom:192.459467pt;}
.yab{bottom:196.447067pt;}
.y9e{bottom:196.886533pt;}
.y1c{bottom:196.889200pt;}
.y66{bottom:204.994933pt;}
.y49{bottom:208.456933pt;}
.y4e{bottom:208.459467pt;}
.y9d{bottom:209.686533pt;}
.y1b{bottom:209.689200pt;}
.y6e{bottom:218.519333pt;}
.y65{bottom:220.994933pt;}
.y9c{bottom:222.486533pt;}
.y1a{bottom:222.489200pt;}
.y48{bottom:224.456933pt;}
.y4d{bottom:224.459467pt;}
.y6d{bottom:234.515333pt;}
.y9b{bottom:235.286533pt;}
.y4c{bottom:235.289200pt;}
.y64{bottom:236.994933pt;}
.y7f{bottom:238.914267pt;}
.y47{bottom:240.456933pt;}
.y5c{bottom:240.459467pt;}
.y4b{bottom:248.089200pt;}
.y63{bottom:252.994933pt;}
.yb6{bottom:256.454400pt;}
.y46{bottom:256.456933pt;}
.y5b{bottom:256.459467pt;}
.y77{bottom:260.889200pt;}
.y62{bottom:268.994933pt;}
.yb5{bottom:272.454400pt;}
.y45{bottom:272.456933pt;}
.y5a{bottom:272.459467pt;}
.y76{bottom:273.689200pt;}
.y61{bottom:284.994933pt;}
.y75{bottom:286.489200pt;}
.yb4{bottom:288.454400pt;}
.y44{bottom:288.456933pt;}
.y59{bottom:288.459467pt;}
.y19{bottom:289.177200pt;}
.y74{bottom:299.289200pt;}
.y60{bottom:300.994933pt;}
.yb3{bottom:304.454400pt;}
.y43{bottom:304.456933pt;}
.y58{bottom:304.459467pt;}
.y18{bottom:305.577200pt;}
.y5f{bottom:316.994933pt;}
.yb2{bottom:320.454400pt;}
.y42{bottom:320.456933pt;}
.y57{bottom:320.459467pt;}
.y17{bottom:321.977200pt;}
.y5e{bottom:332.994933pt;}
.yb1{bottom:336.454400pt;}
.y41{bottom:336.456933pt;}
.y56{bottom:336.459467pt;}
.y16{bottom:338.377200pt;}
.y5d{bottom:348.994933pt;}
.y9a{bottom:352.454400pt;}
.y40{bottom:352.456933pt;}
.y55{bottom:352.459467pt;}
.y15{bottom:354.777200pt;}
.y99{bottom:368.454400pt;}
.y3f{bottom:368.456933pt;}
.y54{bottom:368.459467pt;}
.y14{bottom:371.177200pt;}
.yb0{bottom:384.454400pt;}
.y3e{bottom:384.456933pt;}
.y13{bottom:387.577200pt;}
.y69{bottom:393.406800pt;}
.y98{bottom:400.454400pt;}
.y3d{bottom:400.456933pt;}
.y12{bottom:403.977200pt;}
.yaf{bottom:416.454400pt;}
.y3c{bottom:416.456933pt;}
.y11{bottom:420.377200pt;}
.yae{bottom:432.454400pt;}
.y3b{bottom:432.456933pt;}
.y10{bottom:436.777200pt;}
.y97{bottom:448.454400pt;}
.y3a{bottom:448.456933pt;}
.yf{bottom:453.177200pt;}
.y96{bottom:464.454400pt;}
.y39{bottom:464.456933pt;}
.ye{bottom:469.577200pt;}
.y95{bottom:480.454400pt;}
.y38{bottom:480.456933pt;}
.yd{bottom:485.977200pt;}
.y94{bottom:496.454400pt;}
.y37{bottom:496.456933pt;}
.yc{bottom:502.377200pt;}
.y93{bottom:512.454400pt;}
.y36{bottom:512.456933pt;}
.yb{bottom:518.777200pt;}
.y92{bottom:528.454400pt;}
.y35{bottom:528.456933pt;}
.ya{bottom:535.177200pt;}
.y91{bottom:544.454400pt;}
.y34{bottom:544.456933pt;}
.y9{bottom:551.577200pt;}
.y90{bottom:560.454400pt;}
.y33{bottom:560.456933pt;}
.y8f{bottom:576.454400pt;}
.y32{bottom:576.456933pt;}
.y8e{bottom:592.454400pt;}
.y31{bottom:592.456933pt;}
.y8d{bottom:608.454400pt;}
.y30{bottom:608.456933pt;}
.y8{bottom:615.977200pt;}
.y8c{bottom:624.454400pt;}
.y2f{bottom:624.456933pt;}
.y7{bottom:631.977200pt;}
.y8b{bottom:640.454400pt;}
.y2e{bottom:640.456933pt;}
.y6{bottom:647.977200pt;}
.y8a{bottom:656.454400pt;}
.y2d{bottom:656.456933pt;}
.y5{bottom:663.977200pt;}
.y89{bottom:672.454400pt;}
.y2c{bottom:672.456933pt;}
.y88{bottom:688.454400pt;}
.y2b{bottom:688.456933pt;}
.y87{bottom:704.454400pt;}
.y2a{bottom:704.456933pt;}
.y86{bottom:720.454400pt;}
.y29{bottom:720.456933pt;}
.y4{bottom:728.137200pt;}
.y85{bottom:736.454400pt;}
.y28{bottom:736.456933pt;}
.y3{bottom:745.737200pt;}
.y84{bottom:752.454400pt;}
.y4a{bottom:752.456933pt;}
.y83{bottom:768.454400pt;}
.y27{bottom:768.456933pt;}
.y82{bottom:784.454400pt;}
.y26{bottom:784.456933pt;}
.y80{bottom:812.596800pt;}
.y2{bottom:812.597867pt;}
.y25{bottom:812.599333pt;}
.h6{height:37.437500pt;}
.h9{height:37.541133pt;}
.h5{height:37.541667pt;}
.ha{height:37.542200pt;}
.h2{height:42.117188pt;}
.h4{height:46.796875pt;}
.h8{height:46.807008pt;}
.h7{height:46.927083pt;}
.h3{height:51.476562pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:94.488133pt;}
.x2{left:113.387067pt;}
.x7{left:122.834800pt;}
.xf{left:134.055200pt;}
.x9{left:155.727200pt;}
.x12{left:156.856933pt;}
.x10{left:166.366400pt;}
.xc{left:173.422533pt;}
.x4{left:176.550800pt;}
.x13{left:178.012933pt;}
.xd{left:182.180267pt;}
.x3{left:183.590800pt;}
.x11{left:186.226400pt;}
.xa{left:196.232400pt;}
.xb{left:216.164400pt;}
.xe{left:223.004267pt;}
.x6{left:264.449067pt;}
.x1{left:442.715067pt;}
.x8{left:537.364800pt;}
}

