
    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_57cd87093781e06061248d1b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082000;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_3614c97aaac0cae6b2c0ce9f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.075000;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_d65482fbfc08292e23be73db.woff')format("woff");}.ff3{font-family:ff3;line-height:1.076000;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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:79.200000px;}
.ls3{letter-spacing:-1.254000px;}
.ls2{letter-spacing:-0.240000px;}
.ls5{letter-spacing:-0.066000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.420000px;}
.ls0{letter-spacing:0.900000px;}
.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:-42.641087px;}
.ws0{word-spacing:-20.790000px;}
.ws2{word-spacing:-13.860000px;}
.ws4a{word-spacing:-5.082000px;}
.ws2b{word-spacing:-3.432000px;}
.ws16{word-spacing:-2.970000px;}
.wsd{word-spacing:-2.640000px;}
.ws29{word-spacing:-2.574000px;}
.ws36{word-spacing:-2.442000px;}
.ws31{word-spacing:-2.376000px;}
.ws26{word-spacing:-1.980000px;}
.ws2a{word-spacing:-1.452000px;}
.ws27{word-spacing:-1.386000px;}
.ws43{word-spacing:-1.320000px;}
.ws45{word-spacing:-1.254000px;}
.wsc{word-spacing:-1.056000px;}
.ws23{word-spacing:-0.924000px;}
.ws46{word-spacing:-0.858000px;}
.ws2e{word-spacing:-0.726000px;}
.ws4d{word-spacing:-0.660000px;}
.ws33{word-spacing:-0.528000px;}
.ws1b{word-spacing:-0.210000px;}
.ws14{word-spacing:-0.198000px;}
.ws1d{word-spacing:-0.132000px;}
.ws3{word-spacing:0.000000px;}
.ws4b{word-spacing:0.198000px;}
.ws4{word-spacing:0.240000px;}
.ws21{word-spacing:0.264000px;}
.ws3b{word-spacing:0.330000px;}
.wsa{word-spacing:0.660000px;}
.ws12{word-spacing:0.792000px;}
.ws3e{word-spacing:0.858000px;}
.ws25{word-spacing:1.056000px;}
.ws1a{word-spacing:1.122000px;}
.ws20{word-spacing:1.254000px;}
.ws6{word-spacing:1.386000px;}
.ws9{word-spacing:1.782000px;}
.ws24{word-spacing:1.848000px;}
.ws4c{word-spacing:1.914000px;}
.ws22{word-spacing:1.980000px;}
.ws47{word-spacing:2.046000px;}
.ws1c{word-spacing:2.112000px;}
.ws42{word-spacing:2.376000px;}
.ws34{word-spacing:2.706000px;}
.wse{word-spacing:2.772000px;}
.ws11{word-spacing:2.838000px;}
.ws40{word-spacing:2.904000px;}
.ws28{word-spacing:3.036000px;}
.ws2c{word-spacing:3.300000px;}
.ws38{word-spacing:3.432000px;}
.ws15{word-spacing:3.894000px;}
.ws37{word-spacing:3.960000px;}
.ws1f{word-spacing:4.092000px;}
.ws1e{word-spacing:4.422000px;}
.ws3f{word-spacing:4.554000px;}
.ws35{word-spacing:4.686000px;}
.ws17{word-spacing:4.818000px;}
.ws7{word-spacing:4.950000px;}
.ws49{word-spacing:5.016000px;}
.ws41{word-spacing:5.148000px;}
.wsf{word-spacing:5.214000px;}
.ws10{word-spacing:5.874000px;}
.ws32{word-spacing:6.072000px;}
.ws3a{word-spacing:6.732000px;}
.ws5{word-spacing:6.798000px;}
.ws39{word-spacing:6.930000px;}
.ws3c{word-spacing:7.194000px;}
.ws2d{word-spacing:7.260000px;}
.ws8{word-spacing:7.392000px;}
.ws13{word-spacing:8.184000px;}
.ws48{word-spacing:8.382000px;}
.ws18{word-spacing:8.448000px;}
.ws2f{word-spacing:8.514000px;}
.ws30{word-spacing:8.712000px;}
.ws19{word-spacing:8.844000px;}
.ws44{word-spacing:11.022000px;}
.wsb{word-spacing:17.952000px;}
.ws3d{word-spacing:74.874600px;}
._6{margin-left:-1382.681400px;}
._5{margin-left:-10.302600px;}
._8{margin-left:-7.434000px;}
._7{margin-left:-6.276600px;}
._1{margin-left:-5.016000px;}
._4{margin-left:-3.696000px;}
._3{margin-left:-2.112000px;}
._0{margin-left:-1.080000px;}
._2{width:1.402800px;}
.fc2{color:rgb(88,88,90);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,130,162);}
.fs4{font-size:42.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:90.000000px;}
.fs3{font-size:187.846200px;}
.y0{bottom:0.000000px;}
.y49{bottom:89.998200px;}
.y1e{bottom:96.532050px;}
.y48{bottom:109.798200px;}
.y1d{bottom:116.332050px;}
.y47{bottom:129.598200px;}
.y1c{bottom:136.132050px;}
.y46{bottom:149.398200px;}
.y1b{bottom:155.932050px;}
.y45{bottom:169.198200px;}
.y1a{bottom:175.732050px;}
.y44{bottom:188.998200px;}
.y19{bottom:195.532050px;}
.y43{bottom:208.798200px;}
.y18{bottom:215.332050px;}
.y42{bottom:228.598200px;}
.y17{bottom:235.132050px;}
.y41{bottom:248.398200px;}
.y16{bottom:254.932050px;}
.y40{bottom:268.198200px;}
.y15{bottom:274.732050px;}
.y3f{bottom:287.998200px;}
.y14{bottom:294.532050px;}
.y3e{bottom:307.798200px;}
.y13{bottom:314.332050px;}
.y3d{bottom:327.598200px;}
.y12{bottom:334.132050px;}
.y3c{bottom:347.398200px;}
.y11{bottom:353.932050px;}
.y3b{bottom:367.198200px;}
.y10{bottom:373.732050px;}
.y3a{bottom:386.998200px;}
.yf{bottom:393.532050px;}
.y39{bottom:406.798200px;}
.ye{bottom:413.332050px;}
.y38{bottom:426.598200px;}
.y62{bottom:426.977850px;}
.yd{bottom:433.132050px;}
.y37{bottom:446.398200px;}
.y61{bottom:446.777850px;}
.yc{bottom:452.932050px;}
.y36{bottom:466.198200px;}
.y60{bottom:466.577850px;}
.yb{bottom:472.732050px;}
.y35{bottom:485.998200px;}
.y5f{bottom:486.377850px;}
.ya{bottom:492.532050px;}
.y34{bottom:505.798200px;}
.y5e{bottom:506.177850px;}
.y9{bottom:512.332050px;}
.y33{bottom:525.598200px;}
.y5d{bottom:525.977850px;}
.y8{bottom:532.132050px;}
.y32{bottom:545.398200px;}
.y5c{bottom:545.777850px;}
.y7{bottom:551.932050px;}
.y31{bottom:565.198200px;}
.y5b{bottom:565.577850px;}
.y6{bottom:571.732050px;}
.y30{bottom:584.998200px;}
.y5a{bottom:585.377850px;}
.y2f{bottom:604.798200px;}
.y59{bottom:605.177850px;}
.y2e{bottom:624.598200px;}
.y58{bottom:624.977850px;}
.y2d{bottom:644.398200px;}
.y57{bottom:644.777850px;}
.y5{bottom:658.419000px;}
.y2c{bottom:664.198200px;}
.y56{bottom:664.577850px;}
.y4{bottom:676.419000px;}
.y2b{bottom:683.998200px;}
.y55{bottom:684.377850px;}
.y3{bottom:696.219000px;}
.y2a{bottom:703.798200px;}
.y54{bottom:704.177850px;}
.y2{bottom:714.219000px;}
.y29{bottom:723.598200px;}
.y53{bottom:723.977850px;}
.y28{bottom:743.398200px;}
.y52{bottom:743.777850px;}
.y27{bottom:763.198200px;}
.y51{bottom:763.577850px;}
.y1{bottom:773.619000px;}
.y26{bottom:782.998200px;}
.y50{bottom:783.377850px;}
.y25{bottom:802.798200px;}
.y4f{bottom:803.177850px;}
.y24{bottom:822.598200px;}
.y4e{bottom:822.977850px;}
.y23{bottom:842.398200px;}
.y4d{bottom:842.777850px;}
.y22{bottom:862.198200px;}
.y4c{bottom:862.577850px;}
.y21{bottom:881.998200px;}
.y4b{bottom:882.377850px;}
.y20{bottom:901.798200px;}
.y4a{bottom:902.177850px;}
.y1f{bottom:943.936950px;}
.h7{height:49.080000px;}
.h4{height:49.140000px;}
.h3{height:53.988000px;}
.h6{height:54.054000px;}
.h2{height:74.880000px;}
.h5{height:153.658192px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:106.299150px;}
.x6{left:132.357000px;}
.x7{left:136.069500px;}
.x2{left:242.643600px;}
.x1{left:272.588250px;}
.x4{left:285.642300px;}
.x3{left:296.280750px;}
.x8{left:534.899250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:70.400000pt;}
.ls3{letter-spacing:-1.114667pt;}
.ls2{letter-spacing:-0.213333pt;}
.ls5{letter-spacing:-0.058667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.373333pt;}
.ls0{letter-spacing:0.800000pt;}
.ws1{word-spacing:-37.903189pt;}
.ws0{word-spacing:-18.480000pt;}
.ws2{word-spacing:-12.320000pt;}
.ws4a{word-spacing:-4.517333pt;}
.ws2b{word-spacing:-3.050667pt;}
.ws16{word-spacing:-2.640000pt;}
.wsd{word-spacing:-2.346667pt;}
.ws29{word-spacing:-2.288000pt;}
.ws36{word-spacing:-2.170667pt;}
.ws31{word-spacing:-2.112000pt;}
.ws26{word-spacing:-1.760000pt;}
.ws2a{word-spacing:-1.290667pt;}
.ws27{word-spacing:-1.232000pt;}
.ws43{word-spacing:-1.173333pt;}
.ws45{word-spacing:-1.114667pt;}
.wsc{word-spacing:-0.938667pt;}
.ws23{word-spacing:-0.821333pt;}
.ws46{word-spacing:-0.762667pt;}
.ws2e{word-spacing:-0.645333pt;}
.ws4d{word-spacing:-0.586667pt;}
.ws33{word-spacing:-0.469333pt;}
.ws1b{word-spacing:-0.186667pt;}
.ws14{word-spacing:-0.176000pt;}
.ws1d{word-spacing:-0.117333pt;}
.ws3{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.176000pt;}
.ws4{word-spacing:0.213333pt;}
.ws21{word-spacing:0.234667pt;}
.ws3b{word-spacing:0.293333pt;}
.wsa{word-spacing:0.586667pt;}
.ws12{word-spacing:0.704000pt;}
.ws3e{word-spacing:0.762667pt;}
.ws25{word-spacing:0.938667pt;}
.ws1a{word-spacing:0.997333pt;}
.ws20{word-spacing:1.114667pt;}
.ws6{word-spacing:1.232000pt;}
.ws9{word-spacing:1.584000pt;}
.ws24{word-spacing:1.642667pt;}
.ws4c{word-spacing:1.701333pt;}
.ws22{word-spacing:1.760000pt;}
.ws47{word-spacing:1.818667pt;}
.ws1c{word-spacing:1.877333pt;}
.ws42{word-spacing:2.112000pt;}
.ws34{word-spacing:2.405333pt;}
.wse{word-spacing:2.464000pt;}
.ws11{word-spacing:2.522667pt;}
.ws40{word-spacing:2.581333pt;}
.ws28{word-spacing:2.698667pt;}
.ws2c{word-spacing:2.933333pt;}
.ws38{word-spacing:3.050667pt;}
.ws15{word-spacing:3.461333pt;}
.ws37{word-spacing:3.520000pt;}
.ws1f{word-spacing:3.637333pt;}
.ws1e{word-spacing:3.930667pt;}
.ws3f{word-spacing:4.048000pt;}
.ws35{word-spacing:4.165333pt;}
.ws17{word-spacing:4.282667pt;}
.ws7{word-spacing:4.400000pt;}
.ws49{word-spacing:4.458667pt;}
.ws41{word-spacing:4.576000pt;}
.wsf{word-spacing:4.634667pt;}
.ws10{word-spacing:5.221333pt;}
.ws32{word-spacing:5.397333pt;}
.ws3a{word-spacing:5.984000pt;}
.ws5{word-spacing:6.042667pt;}
.ws39{word-spacing:6.160000pt;}
.ws3c{word-spacing:6.394667pt;}
.ws2d{word-spacing:6.453333pt;}
.ws8{word-spacing:6.570667pt;}
.ws13{word-spacing:7.274667pt;}
.ws48{word-spacing:7.450667pt;}
.ws18{word-spacing:7.509333pt;}
.ws2f{word-spacing:7.568000pt;}
.ws30{word-spacing:7.744000pt;}
.ws19{word-spacing:7.861333pt;}
.ws44{word-spacing:9.797333pt;}
.wsb{word-spacing:15.957333pt;}
.ws3d{word-spacing:66.555200pt;}
._6{margin-left:-1229.050133pt;}
._5{margin-left:-9.157867pt;}
._8{margin-left:-6.608000pt;}
._7{margin-left:-5.579200pt;}
._1{margin-left:-4.458667pt;}
._4{margin-left:-3.285333pt;}
._3{margin-left:-1.877333pt;}
._0{margin-left:-0.960000pt;}
._2{width:1.246933pt;}
.fs4{font-size:37.333333pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:80.000000pt;}
.fs3{font-size:166.974400pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:79.998400pt;}
.y1e{bottom:85.806267pt;}
.y48{bottom:97.598400pt;}
.y1d{bottom:103.406267pt;}
.y47{bottom:115.198400pt;}
.y1c{bottom:121.006267pt;}
.y46{bottom:132.798400pt;}
.y1b{bottom:138.606267pt;}
.y45{bottom:150.398400pt;}
.y1a{bottom:156.206267pt;}
.y44{bottom:167.998400pt;}
.y19{bottom:173.806267pt;}
.y43{bottom:185.598400pt;}
.y18{bottom:191.406267pt;}
.y42{bottom:203.198400pt;}
.y17{bottom:209.006267pt;}
.y41{bottom:220.798400pt;}
.y16{bottom:226.606267pt;}
.y40{bottom:238.398400pt;}
.y15{bottom:244.206267pt;}
.y3f{bottom:255.998400pt;}
.y14{bottom:261.806267pt;}
.y3e{bottom:273.598400pt;}
.y13{bottom:279.406267pt;}
.y3d{bottom:291.198400pt;}
.y12{bottom:297.006267pt;}
.y3c{bottom:308.798400pt;}
.y11{bottom:314.606267pt;}
.y3b{bottom:326.398400pt;}
.y10{bottom:332.206267pt;}
.y3a{bottom:343.998400pt;}
.yf{bottom:349.806267pt;}
.y39{bottom:361.598400pt;}
.ye{bottom:367.406267pt;}
.y38{bottom:379.198400pt;}
.y62{bottom:379.535867pt;}
.yd{bottom:385.006267pt;}
.y37{bottom:396.798400pt;}
.y61{bottom:397.135867pt;}
.yc{bottom:402.606267pt;}
.y36{bottom:414.398400pt;}
.y60{bottom:414.735867pt;}
.yb{bottom:420.206267pt;}
.y35{bottom:431.998400pt;}
.y5f{bottom:432.335867pt;}
.ya{bottom:437.806267pt;}
.y34{bottom:449.598400pt;}
.y5e{bottom:449.935867pt;}
.y9{bottom:455.406267pt;}
.y33{bottom:467.198400pt;}
.y5d{bottom:467.535867pt;}
.y8{bottom:473.006267pt;}
.y32{bottom:484.798400pt;}
.y5c{bottom:485.135867pt;}
.y7{bottom:490.606267pt;}
.y31{bottom:502.398400pt;}
.y5b{bottom:502.735867pt;}
.y6{bottom:508.206267pt;}
.y30{bottom:519.998400pt;}
.y5a{bottom:520.335867pt;}
.y2f{bottom:537.598400pt;}
.y59{bottom:537.935867pt;}
.y2e{bottom:555.198400pt;}
.y58{bottom:555.535867pt;}
.y2d{bottom:572.798400pt;}
.y57{bottom:573.135867pt;}
.y5{bottom:585.261333pt;}
.y2c{bottom:590.398400pt;}
.y56{bottom:590.735867pt;}
.y4{bottom:601.261333pt;}
.y2b{bottom:607.998400pt;}
.y55{bottom:608.335867pt;}
.y3{bottom:618.861333pt;}
.y2a{bottom:625.598400pt;}
.y54{bottom:625.935867pt;}
.y2{bottom:634.861333pt;}
.y29{bottom:643.198400pt;}
.y53{bottom:643.535867pt;}
.y28{bottom:660.798400pt;}
.y52{bottom:661.135867pt;}
.y27{bottom:678.398400pt;}
.y51{bottom:678.735867pt;}
.y1{bottom:687.661333pt;}
.y26{bottom:695.998400pt;}
.y50{bottom:696.335867pt;}
.y25{bottom:713.598400pt;}
.y4f{bottom:713.935867pt;}
.y24{bottom:731.198400pt;}
.y4e{bottom:731.535867pt;}
.y23{bottom:748.798400pt;}
.y4d{bottom:749.135867pt;}
.y22{bottom:766.398400pt;}
.y4c{bottom:766.735867pt;}
.y21{bottom:783.998400pt;}
.y4b{bottom:784.335867pt;}
.y20{bottom:801.598400pt;}
.y4a{bottom:801.935867pt;}
.y1f{bottom:839.055067pt;}
.h7{height:43.626667pt;}
.h4{height:43.680000pt;}
.h3{height:47.989333pt;}
.h6{height:48.048000pt;}
.h2{height:66.560000pt;}
.h5{height:136.585059pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:94.488133pt;}
.x6{left:117.650667pt;}
.x7{left:120.950667pt;}
.x2{left:215.683200pt;}
.x1{left:242.300667pt;}
.x4{left:253.904267pt;}
.x3{left:263.360667pt;}
.x8{left:475.466000pt;}
}

