
    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_89c1a891b3476c6c9c167342.woff')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_4e637ab64d818c05aa29b55a.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a06555e968ce6e007094a092.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_1739d068b68a793baa42ca38.woff')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_62413f51dd34d3bc93343a3a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_b4308cdd734d3477bffad4d5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.379800px;}
.lsc{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.247200px;}
.ls8{letter-spacing:-0.091800px;}
.ls4{letter-spacing:-0.006480px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012240px;}
.lsf{letter-spacing:0.041904px;}
.ls9{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.288000px;}
.ls12{letter-spacing:57.282720px;}
.ls10{letter-spacing:70.624320px;}
.ls11{letter-spacing:70.702800px;}
.ls1{letter-spacing:83.441520px;}
.ls2{letter-spacing:83.520000px;}
.ls6{letter-spacing:83.573520px;}
.ls7{letter-spacing:83.652000px;}
.lse{letter-spacing:103.061520px;}
.lsd{letter-spacing:103.140000px;}
.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:-67.668480px;}
.ws10{word-spacing:-50.738688px;}
.ws1{word-spacing:-50.688000px;}
.ws8{word-spacing:-38.066688px;}
.ws9{word-spacing:-38.016000px;}
.ws7{word-spacing:-36.936000px;}
.wsa{word-spacing:-0.466560px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.576000px;}
.wsc{word-spacing:0.864000px;}
.wsb{word-spacing:1.128000px;}
.wsd{word-spacing:1.620000px;}
.wsf{word-spacing:1.704000px;}
.ws6{word-spacing:2.529360px;}
.ws4{word-spacing:39.568800px;}
.ws3{word-spacing:42.411360px;}
.ws5{word-spacing:53.730480px;}
._3{margin-left:-3.590160px;}
._2{margin-left:-2.499120px;}
._1{margin-left:-1.247376px;}
._4{width:1.422000px;}
._0{width:2.424000px;}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(50,93,61);}
.fc7{color:rgb(46,46,46);}
.fc5{color:rgb(248,248,248);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(110,110,110);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(55,55,55);}
.fs5{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs4{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fs6{font-size:131.760000px;}
.fs0{font-size:144.000000px;}
.fs1{font-size:144.144000px;}
.fsa{font-size:167.760000px;}
.fs9{font-size:167.904000px;}
.fs2{font-size:192.240000px;}
.fsb{font-size:192.384000px;}
.fs8{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y63{bottom:28.620000px;}
.y59{bottom:28.650000px;}
.y7f{bottom:33.588000px;}
.y9{bottom:33.768000px;}
.y73{bottom:37.185000px;}
.y6b{bottom:37.230000px;}
.y61{bottom:37.260000px;}
.y57{bottom:37.290000px;}
.y71{bottom:39.708000px;}
.y69{bottom:39.750000px;}
.y5f{bottom:39.780000px;}
.y55{bottom:39.810000px;}
.y91{bottom:41.400000px;}
.y4f{bottom:41.550000px;}
.y4b{bottom:45.150000px;}
.y40{bottom:46.050000px;}
.y43{bottom:57.210000px;}
.y6e{bottom:63.108000px;}
.y66{bottom:63.150000px;}
.y7e{bottom:65.988000px;}
.y5c{bottom:67.320000px;}
.y52{bottom:67.350000px;}
.y70{bottom:72.105000px;}
.y68{bottom:72.150000px;}
.y5e{bottom:72.180000px;}
.y54{bottom:72.210000px;}
.y2e{bottom:72.720000px;}
.y6c{bottom:73.800000px;}
.y4e{bottom:73.950000px;}
.y4a{bottom:77.550000px;}
.y47{bottom:77.730000px;}
.y3f{bottom:78.450000px;}
.y8c{bottom:84.636000px;}
.y42{bottom:89.610000px;}
.y6d{bottom:95.505000px;}
.y65{bottom:95.550000px;}
.y6f{bottom:97.200000px;}
.y5b{bottom:99.720000px;}
.y51{bottom:99.750000px;}
.y4d{bottom:106.350000px;}
.y49{bottom:109.950000px;}
.y46{bottom:110.130000px;}
.y2d{bottom:115.956000px;}
.y8b{bottom:127.836000px;}
.y72{bottom:132.120000px;}
.y11{bottom:132.156000px;}
.y45{bottom:142.530000px;}
.y7d{bottom:143.748000px;}
.y3b{bottom:145.116000px;}
.y2c{bottom:159.150000px;}
.y8a{bottom:171.030000px;}
.y1b{bottom:175.575000px;}
.y7c{bottom:176.145000px;}
.y3a{bottom:188.310000px;}
.y64{bottom:193.680000px;}
.y2b{bottom:210.990000px;}
.y67{bottom:217.080000px;}
.y21{bottom:218.595000px;}
.y1a{bottom:218.775000px;}
.y90{bottom:231.510000px;}
.y87{bottom:232.770000px;}
.y10{bottom:235.875000px;}
.y8e{bottom:248.790000px;}
.y6a{bottom:252.000000px;}
.y2a{bottom:254.190000px;}
.y7b{bottom:255.750000px;}
.y20{bottom:261.795000px;}
.y19{bottom:261.975000px;}
.y3d{bottom:274.755000px;}
.y4{bottom:278.895000px;}
.y86{bottom:283.215000px;}
.y39{bottom:291.495000px;}
.y8d{bottom:292.035000px;}
.y29{bottom:297.435000px;}
.y5a{bottom:309.420000px;}
.y3c{bottom:317.955000px;}
.y3{bottom:326.415000px;}
.y85{bottom:333.615000px;}
.y34{bottom:335.235000px;}
.y5d{bottom:336.960000px;}
.y38{bottom:339.015000px;}
.yf{bottom:339.585000px;}
.y7a{bottom:344.670000px;}
.y28{bottom:349.275000px;}
.y1f{bottom:365.505000px;}
.y18{bottom:365.685000px;}
.y60{bottom:371.880000px;}
.y33{bottom:378.435000px;}
.y62{bottom:380.520000px;}
.y79{bottom:383.580000px;}
.y84{bottom:384.015000px;}
.y37{bottom:386.535000px;}
.ye{bottom:391.425000px;}
.y27{bottom:392.475000px;}
.y1e{bottom:408.705000px;}
.y17{bottom:408.885000px;}
.y2{bottom:421.455000px;}
.y32{bottom:421.635000px;}
.y50{bottom:429.300000px;}
.y36{bottom:434.085000px;}
.y26{bottom:435.675000px;}
.yd{bottom:443.265000px;}
.y1d{bottom:451.905000px;}
.y16{bottom:452.085000px;}
.y53{bottom:456.840000px;}
.y78{bottom:461.340000px;}
.y89{bottom:464.865000px;}
.y1{bottom:469.005000px;}
.y25{bottom:478.905000px;}
.y35{bottom:482.145000px;}
.y56{bottom:491.760000px;}
.y77{bottom:493.740000px;}
.yc{bottom:495.105000px;}
.y58{bottom:500.400000px;}
.y83{bottom:505.005000px;}
.y88{bottom:508.065000px;}
.y31{bottom:525.345000px;}
.y8f{bottom:527.295000px;}
.y24{bottom:530.745000px;}
.y44{bottom:544.860000px;}
.y82{bottom:555.405000px;}
.y1c{bottom:555.630000px;}
.y15{bottom:555.810000px;}
.y6{bottom:564.375000px;}
.y30{bottom:568.545000px;}
.y76{bottom:573.330000px;}
.y48{bottom:577.440000px;}
.y80{bottom:579.960000px;}
.y4c{bottom:581.040000px;}
.y41{bottom:597.780000px;}
.yb{bottom:598.830000px;}
.y14{bottom:599.010000px;}
.y81{bottom:605.805000px;}
.y3e{bottom:608.940000px;}
.y2f{bottom:611.745000px;}
.y5{bottom:621.975000px;}
.y75{bottom:624.960000px;}
.y23{bottom:635.940000px;}
.ya{bottom:678.495000px;}
.y74{bottom:690.510000px;}
.y22{bottom:693.540000px;}
.y13{bottom:695.550000px;}
.y8{bottom:754.770000px;}
.y7{bottom:772.770000px;}
.y12{bottom:789.225000px;}
.h4{height:50.675625px;}
.h7{height:62.327813px;}
.h13{height:78.660000px;}
.ha{height:82.582031px;}
.h10{height:82.692141px;}
.h5{height:86.378906px;}
.h12{height:95.940000px;}
.h8{height:100.750078px;}
.h1{height:110.109375px;}
.h2{height:110.219484px;}
.h17{height:128.277422px;}
.h16{height:128.387531px;}
.h11{height:133.380000px;}
.h9{height:145.620000px;}
.h6{height:146.996016px;}
.h18{height:147.106125px;}
.hb{height:167.940000px;}
.he{height:169.200000px;}
.hd{height:176.400000px;}
.h14{height:180.180000px;}
.hf{height:188.460000px;}
.h3{height:200.500313px;}
.h15{height:225.281250px;}
.hc{height:241.380000px;}
.h0{height:810.000000px;}
.w1{width:139.140000px;}
.w2{width:144.360000px;}
.w4{width:170.100000px;}
.w5{width:175.320000px;}
.w3{width:178.560000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x14{left:10.800000px;}
.x1{left:33.768000px;}
.x2{left:38.268000px;}
.xa{left:46.692000px;}
.x6{left:55.332000px;}
.x8{left:63.756000px;}
.xd{left:72.216000px;}
.x19{left:78.768000px;}
.xc{left:80.820000px;}
.x12{left:89.280000px;}
.xb{left:95.832000px;}
.x9{left:104.256000px;}
.xe{left:112.716000px;}
.xf{left:123.192000px;}
.x10{left:126.216000px;}
.x11{left:163.725000px;}
.x13{left:230.760000px;}
.x5{left:266.040000px;}
.x1b{left:304.275000px;}
.x15{left:369.900000px;}
.x1a{left:389.235000px;}
.x16{left:514.440000px;}
.x3{left:656.790000px;}
.x4{left:674.790000px;}
.x17{left:693.180000px;}
.x18{left:837.720000px;}
.x7{left:954.180000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.337600pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.219733pt;}
.ls8{letter-spacing:-0.081600pt;}
.ls4{letter-spacing:-0.005760pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010880pt;}
.lsf{letter-spacing:0.037248pt;}
.ls9{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.256000pt;}
.ls12{letter-spacing:50.917973pt;}
.ls10{letter-spacing:62.777173pt;}
.ls11{letter-spacing:62.846933pt;}
.ls1{letter-spacing:74.170240pt;}
.ls2{letter-spacing:74.240000pt;}
.ls6{letter-spacing:74.287573pt;}
.ls7{letter-spacing:74.357333pt;}
.lse{letter-spacing:91.610240pt;}
.lsd{letter-spacing:91.680000pt;}
.ws2{word-spacing:-60.149760pt;}
.ws10{word-spacing:-45.101056pt;}
.ws1{word-spacing:-45.056000pt;}
.ws8{word-spacing:-33.837056pt;}
.ws9{word-spacing:-33.792000pt;}
.ws7{word-spacing:-32.832000pt;}
.wsa{word-spacing:-0.414720pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.512000pt;}
.wsc{word-spacing:0.768000pt;}
.wsb{word-spacing:1.002667pt;}
.wsd{word-spacing:1.440000pt;}
.wsf{word-spacing:1.514667pt;}
.ws6{word-spacing:2.248320pt;}
.ws4{word-spacing:35.172267pt;}
.ws3{word-spacing:37.698987pt;}
.ws5{word-spacing:47.760427pt;}
._3{margin-left:-3.191253pt;}
._2{margin-left:-2.221440pt;}
._1{margin-left:-1.108779pt;}
._4{width:1.264000pt;}
._0{width:2.154667pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs4{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fs6{font-size:117.120000pt;}
.fs0{font-size:128.000000pt;}
.fs1{font-size:128.128000pt;}
.fsa{font-size:149.120000pt;}
.fs9{font-size:149.248000pt;}
.fs2{font-size:170.880000pt;}
.fsb{font-size:171.008000pt;}
.fs8{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:25.440000pt;}
.y59{bottom:25.466667pt;}
.y7f{bottom:29.856000pt;}
.y9{bottom:30.016000pt;}
.y73{bottom:33.053333pt;}
.y6b{bottom:33.093333pt;}
.y61{bottom:33.120000pt;}
.y57{bottom:33.146667pt;}
.y71{bottom:35.296000pt;}
.y69{bottom:35.333333pt;}
.y5f{bottom:35.360000pt;}
.y55{bottom:35.386667pt;}
.y91{bottom:36.800000pt;}
.y4f{bottom:36.933333pt;}
.y4b{bottom:40.133333pt;}
.y40{bottom:40.933333pt;}
.y43{bottom:50.853333pt;}
.y6e{bottom:56.096000pt;}
.y66{bottom:56.133333pt;}
.y7e{bottom:58.656000pt;}
.y5c{bottom:59.840000pt;}
.y52{bottom:59.866667pt;}
.y70{bottom:64.093333pt;}
.y68{bottom:64.133333pt;}
.y5e{bottom:64.160000pt;}
.y54{bottom:64.186667pt;}
.y2e{bottom:64.640000pt;}
.y6c{bottom:65.600000pt;}
.y4e{bottom:65.733333pt;}
.y4a{bottom:68.933333pt;}
.y47{bottom:69.093333pt;}
.y3f{bottom:69.733333pt;}
.y8c{bottom:75.232000pt;}
.y42{bottom:79.653333pt;}
.y6d{bottom:84.893333pt;}
.y65{bottom:84.933333pt;}
.y6f{bottom:86.400000pt;}
.y5b{bottom:88.640000pt;}
.y51{bottom:88.666667pt;}
.y4d{bottom:94.533333pt;}
.y49{bottom:97.733333pt;}
.y46{bottom:97.893333pt;}
.y2d{bottom:103.072000pt;}
.y8b{bottom:113.632000pt;}
.y72{bottom:117.440000pt;}
.y11{bottom:117.472000pt;}
.y45{bottom:126.693333pt;}
.y7d{bottom:127.776000pt;}
.y3b{bottom:128.992000pt;}
.y2c{bottom:141.466667pt;}
.y8a{bottom:152.026667pt;}
.y1b{bottom:156.066667pt;}
.y7c{bottom:156.573333pt;}
.y3a{bottom:167.386667pt;}
.y64{bottom:172.160000pt;}
.y2b{bottom:187.546667pt;}
.y67{bottom:192.960000pt;}
.y21{bottom:194.306667pt;}
.y1a{bottom:194.466667pt;}
.y90{bottom:205.786667pt;}
.y87{bottom:206.906667pt;}
.y10{bottom:209.666667pt;}
.y8e{bottom:221.146667pt;}
.y6a{bottom:224.000000pt;}
.y2a{bottom:225.946667pt;}
.y7b{bottom:227.333333pt;}
.y20{bottom:232.706667pt;}
.y19{bottom:232.866667pt;}
.y3d{bottom:244.226667pt;}
.y4{bottom:247.906667pt;}
.y86{bottom:251.746667pt;}
.y39{bottom:259.106667pt;}
.y8d{bottom:259.586667pt;}
.y29{bottom:264.386667pt;}
.y5a{bottom:275.040000pt;}
.y3c{bottom:282.626667pt;}
.y3{bottom:290.146667pt;}
.y85{bottom:296.546667pt;}
.y34{bottom:297.986667pt;}
.y5d{bottom:299.520000pt;}
.y38{bottom:301.346667pt;}
.yf{bottom:301.853333pt;}
.y7a{bottom:306.373333pt;}
.y28{bottom:310.466667pt;}
.y1f{bottom:324.893333pt;}
.y18{bottom:325.053333pt;}
.y60{bottom:330.560000pt;}
.y33{bottom:336.386667pt;}
.y62{bottom:338.240000pt;}
.y79{bottom:340.960000pt;}
.y84{bottom:341.346667pt;}
.y37{bottom:343.586667pt;}
.ye{bottom:347.933333pt;}
.y27{bottom:348.866667pt;}
.y1e{bottom:363.293333pt;}
.y17{bottom:363.453333pt;}
.y2{bottom:374.626667pt;}
.y32{bottom:374.786667pt;}
.y50{bottom:381.600000pt;}
.y36{bottom:385.853333pt;}
.y26{bottom:387.266667pt;}
.yd{bottom:394.013333pt;}
.y1d{bottom:401.693333pt;}
.y16{bottom:401.853333pt;}
.y53{bottom:406.080000pt;}
.y78{bottom:410.080000pt;}
.y89{bottom:413.213333pt;}
.y1{bottom:416.893333pt;}
.y25{bottom:425.693333pt;}
.y35{bottom:428.573333pt;}
.y56{bottom:437.120000pt;}
.y77{bottom:438.880000pt;}
.yc{bottom:440.093333pt;}
.y58{bottom:444.800000pt;}
.y83{bottom:448.893333pt;}
.y88{bottom:451.613333pt;}
.y31{bottom:466.973333pt;}
.y8f{bottom:468.706667pt;}
.y24{bottom:471.773333pt;}
.y44{bottom:484.320000pt;}
.y82{bottom:493.693333pt;}
.y1c{bottom:493.893333pt;}
.y15{bottom:494.053333pt;}
.y6{bottom:501.666667pt;}
.y30{bottom:505.373333pt;}
.y76{bottom:509.626667pt;}
.y48{bottom:513.280000pt;}
.y80{bottom:515.520000pt;}
.y4c{bottom:516.480000pt;}
.y41{bottom:531.360000pt;}
.yb{bottom:532.293333pt;}
.y14{bottom:532.453333pt;}
.y81{bottom:538.493333pt;}
.y3e{bottom:541.280000pt;}
.y2f{bottom:543.773333pt;}
.y5{bottom:552.866667pt;}
.y75{bottom:555.520000pt;}
.y23{bottom:565.280000pt;}
.ya{bottom:603.106667pt;}
.y74{bottom:613.786667pt;}
.y22{bottom:616.480000pt;}
.y13{bottom:618.266667pt;}
.y8{bottom:670.906667pt;}
.y7{bottom:686.906667pt;}
.y12{bottom:701.533333pt;}
.h4{height:45.045000pt;}
.h7{height:55.402500pt;}
.h13{height:69.920000pt;}
.ha{height:73.406250pt;}
.h10{height:73.504125pt;}
.h5{height:76.781250pt;}
.h12{height:85.280000pt;}
.h8{height:89.555625pt;}
.h1{height:97.875000pt;}
.h2{height:97.972875pt;}
.h17{height:114.024375pt;}
.h16{height:114.122250pt;}
.h11{height:118.560000pt;}
.h9{height:129.440000pt;}
.h6{height:130.663125pt;}
.h18{height:130.761000pt;}
.hb{height:149.280000pt;}
.he{height:150.400000pt;}
.hd{height:156.800000pt;}
.h14{height:160.160000pt;}
.hf{height:167.520000pt;}
.h3{height:178.222500pt;}
.h15{height:200.250000pt;}
.hc{height:214.560000pt;}
.h0{height:720.000000pt;}
.w1{width:123.680000pt;}
.w2{width:128.320000pt;}
.w4{width:151.200000pt;}
.w5{width:155.840000pt;}
.w3{width:158.720000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x14{left:9.600000pt;}
.x1{left:30.016000pt;}
.x2{left:34.016000pt;}
.xa{left:41.504000pt;}
.x6{left:49.184000pt;}
.x8{left:56.672000pt;}
.xd{left:64.192000pt;}
.x19{left:70.016000pt;}
.xc{left:71.840000pt;}
.x12{left:79.360000pt;}
.xb{left:85.184000pt;}
.x9{left:92.672000pt;}
.xe{left:100.192000pt;}
.xf{left:109.504000pt;}
.x10{left:112.192000pt;}
.x11{left:145.533333pt;}
.x13{left:205.120000pt;}
.x5{left:236.480000pt;}
.x1b{left:270.466667pt;}
.x15{left:328.800000pt;}
.x1a{left:345.986667pt;}
.x16{left:457.280000pt;}
.x3{left:583.813333pt;}
.x4{left:599.813333pt;}
.x17{left:616.160000pt;}
.x18{left:744.640000pt;}
.x7{left:848.160000pt;}
}

