
    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_d951cfc048b3a698dc296961.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031000;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_1844add2d21d21479934a15f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.108398;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_bd16ffed971fb6e263ef9b1f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.108398;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;}
.m2{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m3{transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);}
.m4{transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064703,0.241482,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.980000px;}
.v4{vertical-align:-13.986000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.616314px;}
.v1{vertical-align:19.979400px;}
.ls8{letter-spacing:0.000000px;}
.lse{letter-spacing:0.489720px;}
.ls2{letter-spacing:0.594600px;}
.ls9{letter-spacing:0.595200px;}
.lsa{letter-spacing:0.704520px;}
.ls4{letter-spacing:0.705120px;}
.ls1{letter-spacing:0.833400px;}
.lsd{letter-spacing:0.840000px;}
.ls0{letter-spacing:0.960000px;}
.lsc{letter-spacing:1.118097px;}
.ls3{letter-spacing:1.200000px;}
.lsb{letter-spacing:1.242332px;}
.ls7{letter-spacing:1.320000px;}
.ls6{letter-spacing:1.680000px;}
.ls5{letter-spacing:1.920000px;}
.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;}
}
.ws2{word-spacing:-18.282000px;}
.ws1{word-spacing:-17.160000px;}
.ws0{word-spacing:-13.296000px;}
.ws5{word-spacing:-9.304680px;}
.ws4{word-spacing:-8.669610px;}
.ws3{word-spacing:0.000000px;}
._a{margin-left:-4.926643px;}
._3{margin-left:-3.900000px;}
._2{margin-left:-2.700000px;}
._1{margin-left:-1.440000px;}
._0{width:1.560000px;}
._5{width:3.480000px;}
._9{width:4.920000px;}
._8{width:6.180000px;}
._4{width:7.260000px;}
._6{width:8.280000px;}
._b{width:9.528965px;}
._7{width:29.598000px;}
.fc3{color:transparent;}
.fc2{color:rgb(75,81,88);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(83,67,84);}
.fsd{font-size:24.486000px;}
.fs3{font-size:30.000000px;}
.fsb{font-size:32.592519px;}
.fs5{font-size:34.980000px;}
.fsc{font-size:36.213893px;}
.fs2{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:55.904847px;}
.fs4{font-size:60.000000px;}
.fs9{font-size:62.116583px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fs6{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:40.992900px;}
.y23{bottom:58.665450px;}
.y7f{bottom:90.525300px;}
.y59{bottom:92.533050px;}
.y1c{bottom:97.068450px;}
.y9c{bottom:104.982300px;}
.y7e{bottom:108.525300px;}
.y58{bottom:110.533050px;}
.y1b{bottom:115.068450px;}
.y7d{bottom:126.525300px;}
.y7c{bottom:144.525300px;}
.y57{bottom:145.540950px;}
.y9b{bottom:147.501600px;}
.y1a{bottom:150.076350px;}
.y7b{bottom:162.525300px;}
.y56{bottom:163.540950px;}
.y19{bottom:168.076350px;}
.y7a{bottom:180.525300px;}
.y55{bottom:181.540950px;}
.y18{bottom:186.076350px;}
.y54{bottom:199.540950px;}
.y3{bottom:212.799450px;}
.y79{bottom:215.533050px;}
.y17{bottom:221.084250px;}
.y78{bottom:233.533050px;}
.y53{bottom:234.548850px;}
.y16{bottom:239.084250px;}
.y77{bottom:251.533050px;}
.y52{bottom:252.548850px;}
.y15{bottom:257.084250px;}
.y76{bottom:269.533050px;}
.y50{bottom:270.548850px;}
.y14{bottom:275.084250px;}
.y51{bottom:275.543850px;}
.y75{bottom:287.533050px;}
.y4e{bottom:288.548850px;}
.y9a{bottom:290.533050px;}
.y4f{bottom:293.543850px;}
.y74{bottom:305.533050px;}
.y99{bottom:308.533050px;}
.y13{bottom:310.092000px;}
.y4d{bottom:323.556750px;}
.y98{bottom:326.533050px;}
.y12{bottom:328.092000px;}
.y73{bottom:340.540950px;}
.y4c{bottom:341.556750px;}
.y97{bottom:344.533050px;}
.y11{bottom:346.092000px;}
.y72{bottom:357.040950px;}
.y4b{bottom:359.556750px;}
.y10{bottom:364.092000px;}
.y4a{bottom:377.556750px;}
.y96{bottom:379.540950px;}
.yf{bottom:382.092000px;}
.y71{bottom:390.548850px;}
.y49{bottom:395.556750px;}
.y95{bottom:397.540950px;}
.y70{bottom:408.548850px;}
.y48{bottom:413.556750px;}
.y94{bottom:415.540950px;}
.ye{bottom:417.100050px;}
.y6f{bottom:426.548850px;}
.y93{bottom:433.540950px;}
.yd{bottom:435.100050px;}
.y6e{bottom:444.548850px;}
.y47{bottom:448.564650px;}
.y92{bottom:451.540950px;}
.yc{bottom:453.100050px;}
.y46{bottom:466.564650px;}
.y91{bottom:469.540950px;}
.yb{bottom:471.100050px;}
.y6c{bottom:479.556750px;}
.y6d{bottom:484.551750px;}
.y45{bottom:484.564650px;}
.ya{bottom:489.100050px;}
.y6b{bottom:497.556750px;}
.y44{bottom:502.564650px;}
.y90{bottom:504.548850px;}
.y6a{bottom:515.556750px;}
.y8f{bottom:522.548850px;}
.y9{bottom:524.107800px;}
.y69{bottom:533.556750px;}
.y43{bottom:537.572400px;}
.y8{bottom:542.107800px;}
.y68{bottom:551.556750px;}
.y42{bottom:555.572400px;}
.y8e{bottom:557.556750px;}
.y7{bottom:560.107800px;}
.y41{bottom:573.572400px;}
.y8d{bottom:575.556750px;}
.y6{bottom:578.107800px;}
.y67{bottom:586.564650px;}
.y40{bottom:591.572400px;}
.y8c{bottom:593.556750px;}
.y5{bottom:596.107800px;}
.y66{bottom:604.564650px;}
.y4{bottom:614.107800px;}
.y3f{bottom:626.580300px;}
.y8b{bottom:628.564650px;}
.y65{bottom:639.572400px;}
.y3e{bottom:644.580300px;}
.y8a{bottom:646.564650px;}
.y64{bottom:656.072400px;}
.y3d{bottom:662.580300px;}
.y63{bottom:672.572400px;}
.y3c{bottom:680.580300px;}
.y89{bottom:681.572400px;}
.y62{bottom:689.072400px;}
.y3b{bottom:698.580300px;}
.y88{bottom:699.572400px;}
.y61{bottom:705.572400px;}
.y3a{bottom:716.580300px;}
.y87{bottom:717.572400px;}
.y60{bottom:722.072400px;}
.y39{bottom:734.580300px;}
.y86{bottom:735.572400px;}
.y5f{bottom:738.572400px;}
.y38{bottom:752.580300px;}
.y85{bottom:753.572400px;}
.y5e{bottom:755.072400px;}
.y37{bottom:770.580300px;}
.y84{bottom:771.572400px;}
.y22{bottom:776.574300px;}
.y36{bottom:788.580300px;}
.y83{bottom:789.572550px;}
.y21{bottom:794.574300px;}
.y35{bottom:806.580300px;}
.y82{bottom:807.572550px;}
.y20{bottom:819.826350px;}
.y34{bottom:824.580300px;}
.yaa{bottom:830.549850px;}
.y33{bottom:842.580300px;}
.y1f{bottom:846.578250px;}
.ya9{bottom:855.305700px;}
.y32{bottom:860.580300px;}
.y31{bottom:878.580300px;}
.y1e{bottom:879.082200px;}
.ya8{bottom:880.061550px;}
.y5d{bottom:896.580300px;}
.ya7{bottom:904.817550px;}
.y1d{bottom:906.082200px;}
.y30{bottom:913.588200px;}
.y5c{bottom:914.580300px;}
.ya6{bottom:929.573400px;}
.y2f{bottom:931.588200px;}
.y2e{bottom:949.588200px;}
.ya5{bottom:954.329250px;}
.y2d{bottom:967.588200px;}
.ya4{bottom:979.085100px;}
.y2c{bottom:985.588200px;}
.y81{bottom:1002.596100px;}
.y2b{bottom:1003.588200px;}
.ya3{bottom:1003.841100px;}
.y80{bottom:1020.596100px;}
.y2a{bottom:1021.588200px;}
.ya2{bottom:1028.597100px;}
.y5b{bottom:1038.596100px;}
.y29{bottom:1039.588200px;}
.ya1{bottom:1053.352950px;}
.y5a{bottom:1056.596100px;}
.y28{bottom:1074.596100px;}
.ya0{bottom:1078.108800px;}
.y27{bottom:1092.596100px;}
.y9f{bottom:1102.864800px;}
.y26{bottom:1110.596100px;}
.y9e{bottom:1127.620650px;}
.y25{bottom:1145.604000px;}
.y9d{bottom:1152.376500px;}
.y2{bottom:1221.047400px;}
.y24{bottom:1223.704950px;}
.hc{height:23.748375px;}
.hd{height:23.748975px;}
.hb{height:32.535919px;}
.h9{height:33.926250px;}
.h3{height:39.888000px;}
.ha{height:50.227011px;}
.h4{height:53.906250px;}
.h7{height:54.846000px;}
.h8{height:55.807868px;}
.h2{height:64.818000px;}
.h6{height:69.804000px;}
.h5{height:79.776000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:0.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x1{left:-67.606350px;}
.x0{left:0.000000px;}
.xd{left:27.725100px;}
.x4{left:39.596400px;}
.x5{left:85.039350px;}
.xc{left:140.846850px;}
.x6{left:180.839100px;}
.x14{left:197.182500px;}
.x11{left:206.536350px;}
.x15{left:233.858250px;}
.x12{left:348.196650px;}
.xf{left:402.086700px;}
.x8{left:524.064150px;}
.x17{left:547.169550px;}
.x10{left:552.062850px;}
.x7{left:579.927300px;}
.x2{left:594.905250px;}
.xa{left:648.436500px;}
.x16{left:683.687700px;}
.x9{left:687.739800px;}
.xb{left:703.439700px;}
.xe{left:825.307050px;}
.x13{left:835.863150px;}
.x3{left:836.871300px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v4{vertical-align:-12.432000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.547835pt;}
.v1{vertical-align:17.759467pt;}
.ls8{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.435307pt;}
.ls2{letter-spacing:0.528533pt;}
.ls9{letter-spacing:0.529067pt;}
.lsa{letter-spacing:0.626240pt;}
.ls4{letter-spacing:0.626773pt;}
.ls1{letter-spacing:0.740800pt;}
.lsd{letter-spacing:0.746667pt;}
.ls0{letter-spacing:0.853333pt;}
.lsc{letter-spacing:0.993864pt;}
.ls3{letter-spacing:1.066667pt;}
.lsb{letter-spacing:1.104295pt;}
.ls7{letter-spacing:1.173333pt;}
.ls6{letter-spacing:1.493333pt;}
.ls5{letter-spacing:1.706667pt;}
.ws2{word-spacing:-16.250667pt;}
.ws1{word-spacing:-15.253333pt;}
.ws0{word-spacing:-11.818667pt;}
.ws5{word-spacing:-8.270827pt;}
.ws4{word-spacing:-7.706320pt;}
.ws3{word-spacing:0.000000pt;}
._a{margin-left:-4.379238pt;}
._3{margin-left:-3.466667pt;}
._2{margin-left:-2.400000pt;}
._1{margin-left:-1.280000pt;}
._0{width:1.386667pt;}
._5{width:3.093333pt;}
._9{width:4.373333pt;}
._8{width:5.493333pt;}
._4{width:6.453333pt;}
._6{width:7.360000pt;}
._b{width:8.470191pt;}
._7{width:26.309333pt;}
.fsd{font-size:21.765333pt;}
.fs3{font-size:26.666667pt;}
.fsb{font-size:28.971128pt;}
.fs5{font-size:31.093333pt;}
.fsc{font-size:32.190127pt;}
.fs2{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:49.693198pt;}
.fs4{font-size:53.333333pt;}
.fs9{font-size:55.214741pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fs6{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:36.438133pt;}
.y23{bottom:52.147067pt;}
.y7f{bottom:80.466933pt;}
.y59{bottom:82.251600pt;}
.y1c{bottom:86.283067pt;}
.y9c{bottom:93.317600pt;}
.y7e{bottom:96.466933pt;}
.y58{bottom:98.251600pt;}
.y1b{bottom:102.283067pt;}
.y7d{bottom:112.466933pt;}
.y7c{bottom:128.466933pt;}
.y57{bottom:129.369733pt;}
.y9b{bottom:131.112533pt;}
.y1a{bottom:133.401200pt;}
.y7b{bottom:144.466933pt;}
.y56{bottom:145.369733pt;}
.y19{bottom:149.401200pt;}
.y7a{bottom:160.466933pt;}
.y55{bottom:161.369733pt;}
.y18{bottom:165.401200pt;}
.y54{bottom:177.369733pt;}
.y3{bottom:189.155067pt;}
.y79{bottom:191.584933pt;}
.y17{bottom:196.519333pt;}
.y78{bottom:207.584933pt;}
.y53{bottom:208.487867pt;}
.y16{bottom:212.519333pt;}
.y77{bottom:223.584933pt;}
.y52{bottom:224.487867pt;}
.y15{bottom:228.519333pt;}
.y76{bottom:239.584933pt;}
.y50{bottom:240.487867pt;}
.y14{bottom:244.519333pt;}
.y51{bottom:244.927867pt;}
.y75{bottom:255.584933pt;}
.y4e{bottom:256.487867pt;}
.y9a{bottom:258.251600pt;}
.y4f{bottom:260.927867pt;}
.y74{bottom:271.584933pt;}
.y99{bottom:274.251600pt;}
.y13{bottom:275.637333pt;}
.y4d{bottom:287.606000pt;}
.y98{bottom:290.251600pt;}
.y12{bottom:291.637333pt;}
.y73{bottom:302.703067pt;}
.y4c{bottom:303.606000pt;}
.y97{bottom:306.251600pt;}
.y11{bottom:307.637333pt;}
.y72{bottom:317.369733pt;}
.y4b{bottom:319.606000pt;}
.y10{bottom:323.637333pt;}
.y4a{bottom:335.606000pt;}
.y96{bottom:337.369733pt;}
.yf{bottom:339.637333pt;}
.y71{bottom:347.154533pt;}
.y49{bottom:351.606000pt;}
.y95{bottom:353.369733pt;}
.y70{bottom:363.154533pt;}
.y48{bottom:367.606000pt;}
.y94{bottom:369.369733pt;}
.ye{bottom:370.755600pt;}
.y6f{bottom:379.154533pt;}
.y93{bottom:385.369733pt;}
.yd{bottom:386.755600pt;}
.y6e{bottom:395.154533pt;}
.y47{bottom:398.724133pt;}
.y92{bottom:401.369733pt;}
.yc{bottom:402.755600pt;}
.y46{bottom:414.724133pt;}
.y91{bottom:417.369733pt;}
.yb{bottom:418.755600pt;}
.y6c{bottom:426.272667pt;}
.y6d{bottom:430.712667pt;}
.y45{bottom:430.724133pt;}
.ya{bottom:434.755600pt;}
.y6b{bottom:442.272667pt;}
.y44{bottom:446.724133pt;}
.y90{bottom:448.487867pt;}
.y6a{bottom:458.272667pt;}
.y8f{bottom:464.487867pt;}
.y9{bottom:465.873600pt;}
.y69{bottom:474.272667pt;}
.y43{bottom:477.842133pt;}
.y8{bottom:481.873600pt;}
.y68{bottom:490.272667pt;}
.y42{bottom:493.842133pt;}
.y8e{bottom:495.606000pt;}
.y7{bottom:497.873600pt;}
.y41{bottom:509.842133pt;}
.y8d{bottom:511.606000pt;}
.y6{bottom:513.873600pt;}
.y67{bottom:521.390800pt;}
.y40{bottom:525.842133pt;}
.y8c{bottom:527.606000pt;}
.y5{bottom:529.873600pt;}
.y66{bottom:537.390800pt;}
.y4{bottom:545.873600pt;}
.y3f{bottom:556.960267pt;}
.y8b{bottom:558.724133pt;}
.y65{bottom:568.508800pt;}
.y3e{bottom:572.960267pt;}
.y8a{bottom:574.724133pt;}
.y64{bottom:583.175467pt;}
.y3d{bottom:588.960267pt;}
.y63{bottom:597.842133pt;}
.y3c{bottom:604.960267pt;}
.y89{bottom:605.842133pt;}
.y62{bottom:612.508800pt;}
.y3b{bottom:620.960267pt;}
.y88{bottom:621.842133pt;}
.y61{bottom:627.175467pt;}
.y3a{bottom:636.960267pt;}
.y87{bottom:637.842133pt;}
.y60{bottom:641.842133pt;}
.y39{bottom:652.960267pt;}
.y86{bottom:653.842133pt;}
.y5f{bottom:656.508800pt;}
.y38{bottom:668.960267pt;}
.y85{bottom:669.842133pt;}
.y5e{bottom:671.175467pt;}
.y37{bottom:684.960267pt;}
.y84{bottom:685.842133pt;}
.y22{bottom:690.288267pt;}
.y36{bottom:700.960267pt;}
.y83{bottom:701.842267pt;}
.y21{bottom:706.288267pt;}
.y35{bottom:716.960267pt;}
.y82{bottom:717.842267pt;}
.y20{bottom:728.734533pt;}
.y34{bottom:732.960267pt;}
.yaa{bottom:738.266533pt;}
.y33{bottom:748.960267pt;}
.y1f{bottom:752.514000pt;}
.ya9{bottom:760.271733pt;}
.y32{bottom:764.960267pt;}
.y31{bottom:780.960267pt;}
.y1e{bottom:781.406400pt;}
.ya8{bottom:782.276933pt;}
.y5d{bottom:796.960267pt;}
.ya7{bottom:804.282267pt;}
.y1d{bottom:805.406400pt;}
.y30{bottom:812.078400pt;}
.y5c{bottom:812.960267pt;}
.ya6{bottom:826.287467pt;}
.y2f{bottom:828.078400pt;}
.y2e{bottom:844.078400pt;}
.ya5{bottom:848.292667pt;}
.y2d{bottom:860.078400pt;}
.ya4{bottom:870.297867pt;}
.y2c{bottom:876.078400pt;}
.y81{bottom:891.196533pt;}
.y2b{bottom:892.078400pt;}
.ya3{bottom:892.303200pt;}
.y80{bottom:907.196533pt;}
.y2a{bottom:908.078400pt;}
.ya2{bottom:914.308533pt;}
.y5b{bottom:923.196533pt;}
.y29{bottom:924.078400pt;}
.ya1{bottom:936.313733pt;}
.y5a{bottom:939.196533pt;}
.y28{bottom:955.196533pt;}
.ya0{bottom:958.318933pt;}
.y27{bottom:971.196533pt;}
.y9f{bottom:980.324267pt;}
.y26{bottom:987.196533pt;}
.y9e{bottom:1002.329467pt;}
.y25{bottom:1018.314667pt;}
.y9d{bottom:1024.334667pt;}
.y2{bottom:1085.375467pt;}
.y24{bottom:1087.737733pt;}
.hc{height:21.109667pt;}
.hd{height:21.110200pt;}
.hb{height:28.920817pt;}
.h9{height:30.156667pt;}
.h3{height:35.456000pt;}
.ha{height:44.646232pt;}
.h4{height:47.916667pt;}
.h7{height:48.752000pt;}
.h8{height:49.606994pt;}
.h2{height:57.616000pt;}
.h6{height:62.048000pt;}
.h5{height:70.912000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:0.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x1{left:-60.094533pt;}
.x0{left:0.000000pt;}
.xd{left:24.644533pt;}
.x4{left:35.196800pt;}
.x5{left:75.590533pt;}
.xc{left:125.197200pt;}
.x6{left:160.745867pt;}
.x14{left:175.273333pt;}
.x11{left:183.587867pt;}
.x15{left:207.874000pt;}
.x12{left:309.508133pt;}
.xf{left:357.410400pt;}
.x8{left:465.834800pt;}
.x17{left:486.372933pt;}
.x10{left:490.722533pt;}
.x7{left:515.490933pt;}
.x2{left:528.804667pt;}
.xa{left:576.388000pt;}
.x16{left:607.722400pt;}
.x9{left:611.324267pt;}
.xb{left:625.279733pt;}
.xe{left:733.606267pt;}
.x13{left:742.989467pt;}
.x3{left:743.885600pt;}
}

