
    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_bfc51cbd2b004bcdf66a2b07.woff')format("woff");}.ff1{font-family:ff1;line-height:0.995117;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_d7b3f86c40390bf0a2ab33a4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.740234;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_8f855d7f6ea9a43bb9f0548f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_baeb74b59e43654f071bccb2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.166504;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_b7df080514fa4fae7908a201.woff')format("woff");}.ff5{font-family:ff5;line-height:1.166504;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_23133b47bbd3a08fd81ad640.woff')format("woff");}.ff6{font-family:ff6;line-height:0.973145;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);}
.v3{vertical-align:-15.078000px;}
.v2{vertical-align:-3.990000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:7.980000px;}
.lsf{letter-spacing:-0.295200px;}
.ls13{letter-spacing:-0.229800px;}
.ls1c{letter-spacing:-0.094800px;}
.ls8{letter-spacing:-0.090000px;}
.ls4{letter-spacing:-0.078000px;}
.ls5{letter-spacing:-0.064200px;}
.ls19{letter-spacing:-0.021600px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.015000px;}
.ls16{letter-spacing:0.042480px;}
.ls1f{letter-spacing:0.103800px;}
.ls0{letter-spacing:0.113280px;}
.ls26{letter-spacing:0.118200px;}
.ls11{letter-spacing:0.121200px;}
.ls2{letter-spacing:0.132600px;}
.lse{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.188400px;}
.ls1d{letter-spacing:0.189600px;}
.ls27{letter-spacing:0.198000px;}
.ls14{letter-spacing:0.229200px;}
.ls1b{letter-spacing:0.258000px;}
.ls21{letter-spacing:0.314400px;}
.ls1a{letter-spacing:0.630000px;}
.ls7{letter-spacing:0.696000px;}
.lsb{letter-spacing:0.698400px;}
.ls20{letter-spacing:0.822000px;}
.ls9{letter-spacing:0.840000px;}
.ls10{letter-spacing:0.942000px;}
.ls18{letter-spacing:2.157840px;}
.lsd{letter-spacing:2.841469px;}
.ls25{letter-spacing:4.317840px;}
.ls23{letter-spacing:5.757840px;}
.lsc{letter-spacing:7.197840px;}
.ls24{letter-spacing:23.157840px;}
.ls17{letter-spacing:31.677840px;}
.ls15{letter-spacing:546.437760px;}
.ls22{letter-spacing:546.443760px;}
.ls28{letter-spacing:547.043760px;}
.ls1{letter-spacing:547.240800px;}
.ls1e{letter-spacing:547.937760px;}
.lsa{letter-spacing:551.927760px;}
.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:-25.277760px;}
.ws16{word-spacing:-15.224160px;}
.ws3{word-spacing:-15.098160px;}
.ws10{word-spacing:-15.032160px;}
.ws17{word-spacing:-14.716560px;}
.ws11{word-spacing:-14.660160px;}
.wsf{word-spacing:-14.631360px;}
.ws18{word-spacing:-14.600160px;}
.ws15{word-spacing:-14.591760px;}
.wsc{word-spacing:-14.590560px;}
.ws6{word-spacing:-14.534760px;}
.ws0{word-spacing:-14.520240px;}
.ws1{word-spacing:-14.442240px;}
.ws4{word-spacing:-14.402160px;}
.ws14{word-spacing:-14.380560px;}
.wse{word-spacing:-14.337960px;}
.ws5{word-spacing:-14.312160px;}
.ws13{word-spacing:-14.307360px;}
.wsd{word-spacing:-14.172360px;}
.ws12{word-spacing:-14.106960px;}
.wsa{word-spacing:-0.870000px;}
.ws7{word-spacing:-0.240000px;}
.wsb{word-spacing:-0.078000px;}
.ws8{word-spacing:0.000000px;}
.ws9{word-spacing:0.240000px;}
._0{margin-left:-1.088130px;}
._1{width:1.195200px;}
._3{width:2.505020px;}
._2{width:4.243199px;}
._f{width:5.433618px;}
._e{width:6.693000px;}
._15{width:7.829397px;}
._10{width:8.904001px;}
._11{width:10.559413px;}
._d{width:11.832002px;}
._c{width:12.908399px;}
._4{width:15.418200px;}
._13{width:16.672801px;}
._7{width:18.645000px;}
._b{width:20.199000px;}
._5{width:21.204581px;}
._6{width:22.318209px;}
._9{width:23.471995px;}
._8{width:24.517795px;}
._a{width:25.794567px;}
._12{width:26.845865px;}
._14{width:28.744799px;}
._18{width:31.553400px;}
._16{width:34.959600px;}
._17{width:36.112191px;}
.fc3{color:transparent;}
.fc2{color:rgb(46,135,153);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(70,70,70);}
.fs0{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y59{bottom:3.240000px;}
.y2a{bottom:25.755000px;}
.y29{bottom:76.875000px;}
.y1{bottom:81.000000px;}
.y58{bottom:84.420000px;}
.y57{bottom:87.660000px;}
.y8d{bottom:88.657500px;}
.y28{bottom:93.975000px;}
.y27{bottom:110.895000px;}
.y26{bottom:127.995000px;}
.y73{bottom:144.216000px;}
.y20{bottom:146.196000px;}
.y96{bottom:154.650000px;}
.y72{bottom:165.090000px;}
.y1f{bottom:167.250000px;}
.y24{bottom:175.140000px;}
.y95{bottom:175.710000px;}
.y8c{bottom:186.150000px;}
.y1e{bottom:188.130000px;}
.y23{bottom:196.200000px;}
.y71{bottom:196.410000px;}
.y94{bottom:196.590000px;}
.y8b{bottom:207.210000px;}
.y1d{bottom:209.190000px;}
.y22{bottom:217.080000px;}
.y56{bottom:217.470000px;}
.y70{bottom:217.650000px;}
.y8a{bottom:228.090000px;}
.y1c{bottom:230.250000px;}
.y55{bottom:238.710000px;}
.y89{bottom:249.150000px;}
.y54{bottom:259.590000px;}
.y1b{bottom:261.570000px;}
.y88{bottom:270.210000px;}
.y53{bottom:280.650000px;}
.y1a{bottom:282.630000px;}
.y87{bottom:291.090000px;}
.y52{bottom:301.710000px;}
.y19{bottom:303.690000px;}
.y86{bottom:312.150000px;}
.y51{bottom:322.590000px;}
.y18{bottom:324.750000px;}
.y93{bottom:333.030000px;}
.y85{bottom:333.210000px;}
.y50{bottom:343.650000px;}
.y17{bottom:345.630000px;}
.y84{bottom:354.090000px;}
.y4f{bottom:364.755000px;}
.y16{bottom:366.735000px;}
.y83{bottom:375.195000px;}
.y92{bottom:385.455000px;}
.y4e{bottom:385.635000px;}
.y15{bottom:387.795000px;}
.y82{bottom:396.255000px;}
.y4d{bottom:406.695000px;}
.y14{bottom:408.675000px;}
.y81{bottom:417.135000px;}
.y4c{bottom:427.755000px;}
.y80{bottom:438.195000px;}
.y13{bottom:439.995000px;}
.y4b{bottom:448.635000px;}
.y7f{bottom:459.255000px;}
.y12{bottom:461.235000px;}
.y4a{bottom:469.695000px;}
.y11{bottom:482.295000px;}
.y7e{bottom:490.575000px;}
.y49{bottom:490.755000px;}
.y10{bottom:503.175000px;}
.y6f{bottom:511.635000px;}
.y48{bottom:522.075000px;}
.y6e{bottom:532.695000px;}
.yf{bottom:534.495000px;}
.y91{bottom:542.955000px;}
.y47{bottom:543.135000px;}
.y6d{bottom:553.755000px;}
.ye{bottom:555.735000px;}
.y46{bottom:564.195000px;}
.y6c{bottom:574.635000px;}
.yd{bottom:576.795000px;}
.y45{bottom:585.255000px;}
.y6b{bottom:595.695000px;}
.yc{bottom:597.675000px;}
.y44{bottom:606.135000px;}
.y7d{bottom:616.785000px;}
.yb{bottom:618.765000px;}
.y6a{bottom:627.045000px;}
.y43{bottom:627.225000px;}
.y7c{bottom:637.665000px;}
.ya{bottom:639.825000px;}
.y42{bottom:648.285000px;}
.y7b{bottom:658.725000px;}
.y9{bottom:660.705000px;}
.y41{bottom:669.165000px;}
.y7a{bottom:679.785000px;}
.y8{bottom:681.765000px;}
.y40{bottom:690.225000px;}
.y79{bottom:700.665000px;}
.y7{bottom:702.825000px;}
.y3f{bottom:711.285000px;}
.y78{bottom:721.725000px;}
.y6{bottom:723.705000px;}
.y3e{bottom:732.165000px;}
.y77{bottom:742.785000px;}
.y5{bottom:744.765000px;}
.y3d{bottom:753.225000px;}
.y76{bottom:763.665000px;}
.y4{bottom:765.825000px;}
.y69{bottom:774.285000px;}
.y3c{bottom:784.545000px;}
.y75{bottom:784.725000px;}
.y3{bottom:786.705000px;}
.y68{bottom:795.165000px;}
.y3b{bottom:805.785000px;}
.y2{bottom:807.765000px;}
.y67{bottom:816.225000px;}
.y3a{bottom:826.665000px;}
.y66{bottom:837.285000px;}
.y39{bottom:847.725000px;}
.y65{bottom:858.165000px;}
.y90{bottom:868.605000px;}
.y38{bottom:868.785000px;}
.y64{bottom:879.270000px;}
.y37{bottom:889.710000px;}
.y25{bottom:897.975000px;}
.y21{bottom:897.990000px;}
.y63{bottom:900.330000px;}
.y36{bottom:910.770000px;}
.y62{bottom:921.210000px;}
.y35{bottom:931.830000px;}
.y61{bottom:942.270000px;}
.y34{bottom:952.710000px;}
.y60{bottom:963.330000px;}
.y33{bottom:973.770000px;}
.y5f{bottom:984.210000px;}
.y32{bottom:994.830000px;}
.y5e{bottom:1005.270000px;}
.y31{bottom:1015.710000px;}
.y5d{bottom:1026.330000px;}
.y30{bottom:1036.770000px;}
.y5c{bottom:1047.210000px;}
.y2f{bottom:1057.830000px;}
.y74{bottom:1068.090000px;}
.y5b{bottom:1068.270000px;}
.y8f{bottom:1078.710000px;}
.y2e{bottom:1089.150000px;}
.y5a{bottom:1089.330000px;}
.y8e{bottom:1110.030000px;}
.y2d{bottom:1110.210000px;}
.y2c{bottom:1131.270000px;}
.y2b{bottom:1188.360000px;}
.h9{height:13.896000px;}
.h8{height:38.111484px;}
.h3{height:45.199336px;}
.h2{height:46.091484px;}
.h6{height:54.457031px;}
.h4{height:56.754492px;}
.h5{height:242.850000px;}
.h7{height:242.865000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:-351.435000px;}
.w2{width:372.120000px;}
.w3{width:372.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x5{left:41.400000px;}
.x1{left:191.488500px;}
.x2{left:379.515000px;}
.x4{left:1244.415000px;}
@media print{
.v3{vertical-align:-13.402667pt;}
.v2{vertical-align:-3.546667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:7.093333pt;}
.lsf{letter-spacing:-0.262400pt;}
.ls13{letter-spacing:-0.204267pt;}
.ls1c{letter-spacing:-0.084267pt;}
.ls8{letter-spacing:-0.080000pt;}
.ls4{letter-spacing:-0.069333pt;}
.ls5{letter-spacing:-0.057067pt;}
.ls19{letter-spacing:-0.019200pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.013333pt;}
.ls16{letter-spacing:0.037760pt;}
.ls1f{letter-spacing:0.092267pt;}
.ls0{letter-spacing:0.100693pt;}
.ls26{letter-spacing:0.105067pt;}
.ls11{letter-spacing:0.107733pt;}
.ls2{letter-spacing:0.117867pt;}
.lse{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.167467pt;}
.ls1d{letter-spacing:0.168533pt;}
.ls27{letter-spacing:0.176000pt;}
.ls14{letter-spacing:0.203733pt;}
.ls1b{letter-spacing:0.229333pt;}
.ls21{letter-spacing:0.279467pt;}
.ls1a{letter-spacing:0.560000pt;}
.ls7{letter-spacing:0.618667pt;}
.lsb{letter-spacing:0.620800pt;}
.ls20{letter-spacing:0.730667pt;}
.ls9{letter-spacing:0.746667pt;}
.ls10{letter-spacing:0.837333pt;}
.ls18{letter-spacing:1.918080pt;}
.lsd{letter-spacing:2.525750pt;}
.ls25{letter-spacing:3.838080pt;}
.ls23{letter-spacing:5.118080pt;}
.lsc{letter-spacing:6.398080pt;}
.ls24{letter-spacing:20.584747pt;}
.ls17{letter-spacing:28.158080pt;}
.ls15{letter-spacing:485.722453pt;}
.ls22{letter-spacing:485.727787pt;}
.ls28{letter-spacing:486.261120pt;}
.ls1{letter-spacing:486.436267pt;}
.ls1e{letter-spacing:487.055787pt;}
.lsa{letter-spacing:490.602453pt;}
.ws2{word-spacing:-22.469120pt;}
.ws16{word-spacing:-13.532587pt;}
.ws3{word-spacing:-13.420587pt;}
.ws10{word-spacing:-13.361920pt;}
.ws17{word-spacing:-13.081387pt;}
.ws11{word-spacing:-13.031253pt;}
.wsf{word-spacing:-13.005653pt;}
.ws18{word-spacing:-12.977920pt;}
.ws15{word-spacing:-12.970453pt;}
.wsc{word-spacing:-12.969387pt;}
.ws6{word-spacing:-12.919787pt;}
.ws0{word-spacing:-12.906880pt;}
.ws1{word-spacing:-12.837547pt;}
.ws4{word-spacing:-12.801920pt;}
.ws14{word-spacing:-12.782720pt;}
.wse{word-spacing:-12.744853pt;}
.ws5{word-spacing:-12.721920pt;}
.ws13{word-spacing:-12.717653pt;}
.wsd{word-spacing:-12.597653pt;}
.ws12{word-spacing:-12.539520pt;}
.wsa{word-spacing:-0.773333pt;}
.ws7{word-spacing:-0.213333pt;}
.wsb{word-spacing:-0.069333pt;}
.ws8{word-spacing:0.000000pt;}
.ws9{word-spacing:0.213333pt;}
._0{margin-left:-0.967227pt;}
._1{width:1.062400pt;}
._3{width:2.226684pt;}
._2{width:3.771732pt;}
._f{width:4.829883pt;}
._e{width:5.949334pt;}
._15{width:6.959464pt;}
._10{width:7.914668pt;}
._11{width:9.386145pt;}
._d{width:10.517335pt;}
._c{width:11.474132pt;}
._4{width:13.705066pt;}
._13{width:14.820268pt;}
._7{width:16.573334pt;}
._b{width:17.954666pt;}
._5{width:18.848516pt;}
._6{width:19.838408pt;}
._9{width:20.863996pt;}
._8{width:21.793596pt;}
._a{width:22.928504pt;}
._12{width:23.862991pt;}
._14{width:25.550932pt;}
._18{width:28.047466pt;}
._16{width:31.075200pt;}
._17{width:32.099725pt;}
.fs0{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:2.880000pt;}
.y2a{bottom:22.893333pt;}
.y29{bottom:68.333333pt;}
.y1{bottom:72.000000pt;}
.y58{bottom:75.040000pt;}
.y57{bottom:77.920000pt;}
.y8d{bottom:78.806667pt;}
.y28{bottom:83.533333pt;}
.y27{bottom:98.573333pt;}
.y26{bottom:113.773333pt;}
.y73{bottom:128.192000pt;}
.y20{bottom:129.952000pt;}
.y96{bottom:137.466667pt;}
.y72{bottom:146.746667pt;}
.y1f{bottom:148.666667pt;}
.y24{bottom:155.680000pt;}
.y95{bottom:156.186667pt;}
.y8c{bottom:165.466667pt;}
.y1e{bottom:167.226667pt;}
.y23{bottom:174.400000pt;}
.y71{bottom:174.586667pt;}
.y94{bottom:174.746667pt;}
.y8b{bottom:184.186667pt;}
.y1d{bottom:185.946667pt;}
.y22{bottom:192.960000pt;}
.y56{bottom:193.306667pt;}
.y70{bottom:193.466667pt;}
.y8a{bottom:202.746667pt;}
.y1c{bottom:204.666667pt;}
.y55{bottom:212.186667pt;}
.y89{bottom:221.466667pt;}
.y54{bottom:230.746667pt;}
.y1b{bottom:232.506667pt;}
.y88{bottom:240.186667pt;}
.y53{bottom:249.466667pt;}
.y1a{bottom:251.226667pt;}
.y87{bottom:258.746667pt;}
.y52{bottom:268.186667pt;}
.y19{bottom:269.946667pt;}
.y86{bottom:277.466667pt;}
.y51{bottom:286.746667pt;}
.y18{bottom:288.666667pt;}
.y93{bottom:296.026667pt;}
.y85{bottom:296.186667pt;}
.y50{bottom:305.466667pt;}
.y17{bottom:307.226667pt;}
.y84{bottom:314.746667pt;}
.y4f{bottom:324.226667pt;}
.y16{bottom:325.986667pt;}
.y83{bottom:333.506667pt;}
.y92{bottom:342.626667pt;}
.y4e{bottom:342.786667pt;}
.y15{bottom:344.706667pt;}
.y82{bottom:352.226667pt;}
.y4d{bottom:361.506667pt;}
.y14{bottom:363.266667pt;}
.y81{bottom:370.786667pt;}
.y4c{bottom:380.226667pt;}
.y80{bottom:389.506667pt;}
.y13{bottom:391.106667pt;}
.y4b{bottom:398.786667pt;}
.y7f{bottom:408.226667pt;}
.y12{bottom:409.986667pt;}
.y4a{bottom:417.506667pt;}
.y11{bottom:428.706667pt;}
.y7e{bottom:436.066667pt;}
.y49{bottom:436.226667pt;}
.y10{bottom:447.266667pt;}
.y6f{bottom:454.786667pt;}
.y48{bottom:464.066667pt;}
.y6e{bottom:473.506667pt;}
.yf{bottom:475.106667pt;}
.y91{bottom:482.626667pt;}
.y47{bottom:482.786667pt;}
.y6d{bottom:492.226667pt;}
.ye{bottom:493.986667pt;}
.y46{bottom:501.506667pt;}
.y6c{bottom:510.786667pt;}
.yd{bottom:512.706667pt;}
.y45{bottom:520.226667pt;}
.y6b{bottom:529.506667pt;}
.yc{bottom:531.266667pt;}
.y44{bottom:538.786667pt;}
.y7d{bottom:548.253333pt;}
.yb{bottom:550.013333pt;}
.y6a{bottom:557.373333pt;}
.y43{bottom:557.533333pt;}
.y7c{bottom:566.813333pt;}
.ya{bottom:568.733333pt;}
.y42{bottom:576.253333pt;}
.y7b{bottom:585.533333pt;}
.y9{bottom:587.293333pt;}
.y41{bottom:594.813333pt;}
.y7a{bottom:604.253333pt;}
.y8{bottom:606.013333pt;}
.y40{bottom:613.533333pt;}
.y79{bottom:622.813333pt;}
.y7{bottom:624.733333pt;}
.y3f{bottom:632.253333pt;}
.y78{bottom:641.533333pt;}
.y6{bottom:643.293333pt;}
.y3e{bottom:650.813333pt;}
.y77{bottom:660.253333pt;}
.y5{bottom:662.013333pt;}
.y3d{bottom:669.533333pt;}
.y76{bottom:678.813333pt;}
.y4{bottom:680.733333pt;}
.y69{bottom:688.253333pt;}
.y3c{bottom:697.373333pt;}
.y75{bottom:697.533333pt;}
.y3{bottom:699.293333pt;}
.y68{bottom:706.813333pt;}
.y3b{bottom:716.253333pt;}
.y2{bottom:718.013333pt;}
.y67{bottom:725.533333pt;}
.y3a{bottom:734.813333pt;}
.y66{bottom:744.253333pt;}
.y39{bottom:753.533333pt;}
.y65{bottom:762.813333pt;}
.y90{bottom:772.093333pt;}
.y38{bottom:772.253333pt;}
.y64{bottom:781.573333pt;}
.y37{bottom:790.853333pt;}
.y25{bottom:798.200000pt;}
.y21{bottom:798.213333pt;}
.y63{bottom:800.293333pt;}
.y36{bottom:809.573333pt;}
.y62{bottom:818.853333pt;}
.y35{bottom:828.293333pt;}
.y61{bottom:837.573333pt;}
.y34{bottom:846.853333pt;}
.y60{bottom:856.293333pt;}
.y33{bottom:865.573333pt;}
.y5f{bottom:874.853333pt;}
.y32{bottom:884.293333pt;}
.y5e{bottom:893.573333pt;}
.y31{bottom:902.853333pt;}
.y5d{bottom:912.293333pt;}
.y30{bottom:921.573333pt;}
.y5c{bottom:930.853333pt;}
.y2f{bottom:940.293333pt;}
.y74{bottom:949.413333pt;}
.y5b{bottom:949.573333pt;}
.y8f{bottom:958.853333pt;}
.y2e{bottom:968.133333pt;}
.y5a{bottom:968.293333pt;}
.y8e{bottom:986.693333pt;}
.y2d{bottom:986.853333pt;}
.y2c{bottom:1005.573333pt;}
.y2b{bottom:1056.320000pt;}
.h9{height:12.352000pt;}
.h8{height:33.876875pt;}
.h3{height:40.177188pt;}
.h2{height:40.970208pt;}
.h6{height:48.406250pt;}
.h4{height:50.448438pt;}
.h5{height:215.866667pt;}
.h7{height:215.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:-312.386667pt;}
.w2{width:330.773333pt;}
.w3{width:330.786667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x5{left:36.800000pt;}
.x1{left:170.212000pt;}
.x2{left:337.346667pt;}
.x4{left:1106.146667pt;}
}

