
    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_d15896b55e9886ce2f901582.woff')format("woff");}.ff1{font-family:ff1;line-height:1.041992;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_74fa1787805f0e41ce9d18bf.woff')format("woff");}.ff2{font-family:ff2;line-height:1.041992;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_62bd6f942e2ad87fcad5cdf8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.051758;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_852973507b3c1af61e4cdbf2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.114746;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_9a6fb3cd0e830f968aed1751.woff')format("woff");}.ff5{font-family:ff5;line-height:1.068000;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_fe8bcaa7cc35d7527d8eea50.woff')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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:ff7;src:url('chunks/assets/font_9d679257630671a1a88e3106.woff')format("woff");}.ff7{font-family:ff7;line-height:0.882000;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;}
.m3{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m1{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;}
.ls8{letter-spacing:-3.300000px;}
.ls7{letter-spacing:-1.980000px;}
.ls6{letter-spacing:-1.320000px;}
.ls9{letter-spacing:-1.122000px;}
.ls4{letter-spacing:-1.112400px;}
.ls3{letter-spacing:-0.988800px;}
.ls5{letter-spacing:-0.660000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.840000px;}
.ls1{letter-spacing:0.960000px;}
.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:-10.800000px;}
.ws0{word-spacing:-10.400940px;}
.wsf{word-spacing:-6.666000px;}
.ws25{word-spacing:-5.808000px;}
.ws1b{word-spacing:-4.950000px;}
.wsc{word-spacing:-4.686000px;}
.ws2c{word-spacing:-4.092000px;}
.ws26{word-spacing:-3.234000px;}
.wsd{word-spacing:-2.376000px;}
.ws2a{word-spacing:-2.046000px;}
.ws19{word-spacing:-1.782000px;}
.ws1c{word-spacing:-1.122000px;}
.ws15{word-spacing:-0.990000px;}
.wsa{word-spacing:-0.924000px;}
.ws4{word-spacing:-0.840000px;}
.ws29{word-spacing:-0.330000px;}
.ws2{word-spacing:0.000000px;}
.ws12{word-spacing:0.792000px;}
.ws1d{word-spacing:0.924000px;}
.ws3{word-spacing:0.988800px;}
.ws5{word-spacing:1.112400px;}
.ws2d{word-spacing:1.254000px;}
.ws10{word-spacing:1.452000px;}
.ws21{word-spacing:2.508000px;}
.ws16{word-spacing:3.168000px;}
.ws13{word-spacing:3.300000px;}
.ws14{word-spacing:3.960000px;}
.ws2b{word-spacing:4.092000px;}
.ws23{word-spacing:4.224000px;}
.ws20{word-spacing:5.214000px;}
.ws22{word-spacing:5.346000px;}
.ws2f{word-spacing:6.006000px;}
.ws1a{word-spacing:6.270000px;}
.ws18{word-spacing:6.336000px;}
.ws2e{word-spacing:6.468000px;}
.ws24{word-spacing:7.722000px;}
.ws7{word-spacing:7.788000px;}
.wse{word-spacing:7.920000px;}
.ws1e{word-spacing:7.986000px;}
.ws17{word-spacing:8.580000px;}
.ws6{word-spacing:8.910000px;}
.ws11{word-spacing:9.636000px;}
.wsb{word-spacing:9.702000px;}
.ws28{word-spacing:11.946000px;}
.ws27{word-spacing:13.002000px;}
.ws9{word-spacing:15.246000px;}
.ws1f{word-spacing:18.678000px;}
.ws8{word-spacing:22.638000px;}
._6{margin-left:-8.473806px;}
._3{margin-left:-6.404040px;}
._4{margin-left:-4.940880px;}
._2{margin-left:-2.782074px;}
._0{margin-left:-1.013520px;}
._1{width:1.318194px;}
._5{width:3.299148px;}
.fc1{color:rgb(229,25,55);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs2{font-size:49.440000px;}
.fs4{font-size:55.620000px;}
.fs1{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:67.500000px;}
.fs8{font-size:90.000000px;}
.fs7{font-size:1500.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:35.603400px;}
.y1{bottom:36.847800px;}
.y6a{bottom:81.153900px;}
.y44{bottom:98.025600px;}
.y69{bottom:102.158400px;}
.y43{bottom:112.421100px;}
.y68{bottom:123.162900px;}
.y42{bottom:125.021100px;}
.y41{bottom:143.673000px;}
.y67{bottom:144.167400px;}
.y66{bottom:165.171900px;}
.y40{bottom:168.426000px;}
.y3f{bottom:181.929000px;}
.y65{bottom:184.674900px;}
.y3e{bottom:194.529000px;}
.y64{bottom:204.177900px;}
.y3d{bottom:213.181050px;}
.y63{bottom:223.680900px;}
.y3c{bottom:237.933900px;}
.y62{bottom:243.183900px;}
.y3b{bottom:251.436900px;}
.y61{bottom:262.686900px;}
.y3a{bottom:264.036900px;}
.y60{bottom:282.189900px;}
.y39{bottom:282.688800px;}
.y5f{bottom:301.692900px;}
.y38{bottom:307.441800px;}
.y37{bottom:320.944800px;}
.y5e{bottom:321.195900px;}
.y36{bottom:333.544800px;}
.y5d{bottom:340.698900px;}
.y35{bottom:352.196700px;}
.y5c{bottom:360.201900px;}
.y34{bottom:376.949700px;}
.y5b{bottom:379.704900px;}
.y33{bottom:390.452700px;}
.y5a{bottom:399.207900px;}
.y32{bottom:403.052550px;}
.y59{bottom:418.710900px;}
.y31{bottom:421.704600px;}
.y58{bottom:438.213900px;}
.y30{bottom:446.464950px;}
.y57{bottom:457.716900px;}
.y2f{bottom:460.860450px;}
.y2e{bottom:473.460450px;}
.y56{bottom:477.219900px;}
.y2d{bottom:496.364400px;}
.y55{bottom:496.722900px;}
.y2c{bottom:508.964400px;}
.y54{bottom:516.225900px;}
.y2b{bottom:521.564400px;}
.y53{bottom:535.728900px;}
.y2a{bottom:540.216450px;}
.y52{bottom:555.231900px;}
.y29{bottom:564.969300px;}
.y51{bottom:574.734900px;}
.y28{bottom:578.472300px;}
.y27{bottom:591.072300px;}
.y50{bottom:594.237900px;}
.y4f{bottom:613.740900px;}
.y26{bottom:613.976250px;}
.y25{bottom:626.576250px;}
.y4e{bottom:633.243900px;}
.y24{bottom:639.176250px;}
.y4d{bottom:652.746900px;}
.y23{bottom:657.828300px;}
.y4c{bottom:672.249900px;}
.y22{bottom:674.080200px;}
.y4b{bottom:691.752900px;}
.y21{bottom:703.092600px;}
.y4a{bottom:711.255900px;}
.y20{bottom:717.488100px;}
.y1f{bottom:730.088100px;}
.y49{bottom:730.758900px;}
.y1e{bottom:748.740000px;}
.y48{bottom:750.261900px;}
.y47{bottom:769.764900px;}
.y1d{bottom:777.752400px;}
.y46{bottom:789.267900px;}
.y1c{bottom:792.147900px;}
.y1b{bottom:804.747900px;}
.y45{bottom:808.770900px;}
.y1a{bottom:823.399800px;}
.y7a{bottom:830.333700px;}
.y79{bottom:849.836700px;}
.y19{bottom:852.407700px;}
.y18{bottom:865.007700px;}
.y78{bottom:869.339700px;}
.y6b{bottom:872.398500px;}
.y17{bottom:877.607700px;}
.y77{bottom:888.842700px;}
.y16{bottom:896.259750px;}
.y76{bottom:908.345700px;}
.y15{bottom:923.415600px;}
.y75{bottom:927.848700px;}
.y14{bottom:936.015600px;}
.y74{bottom:947.351700px;}
.y13{bottom:948.615600px;}
.y73{bottom:966.854700px;}
.y12{bottom:967.267650px;}
.y11{bottom:985.919700px;}
.y72{bottom:986.357700px;}
.y71{bottom:1005.860700px;}
.y10{bottom:1014.927600px;}
.y70{bottom:1025.363700px;}
.yf{bottom:1027.527600px;}
.ye{bottom:1040.127450px;}
.y6f{bottom:1044.866700px;}
.yd{bottom:1054.527600px;}
.y6e{bottom:1064.369700px;}
.yc{bottom:1080.032100px;}
.y6d{bottom:1083.872700px;}
.yb{bottom:1094.427600px;}
.y6c{bottom:1103.375700px;}
.ya{bottom:1107.027600px;}
.y9{bottom:1119.627600px;}
.y8{bottom:1132.227600px;}
.y7{bottom:1144.827600px;}
.y6{bottom:1157.427600px;}
.y5{bottom:1170.027600px;}
.y4{bottom:1186.877940px;}
.y7b{bottom:1194.936000px;}
.y3{bottom:1198.879500px;}
.h6{height:37.672852px;}
.h4{height:41.014922px;}
.h5{height:41.497734px;}
.h8{height:43.054688px;}
.h7{height:46.141787px;}
.h9{height:46.684951px;}
.h3{height:49.775391px;}
.ha{height:53.526000px;}
.h2{height:55.997314px;}
.hc{height:67.500000px;}
.hb{height:1216.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:61.027650px;}
.x21{left:69.531600px;}
.x22{left:90.833100px;}
.x27{left:245.728350px;}
.x28{left:267.029850px;}
.x24{left:427.598100px;}
.x25{left:453.833100px;}
.x23{left:460.400100px;}
.x1{left:538.511850px;}
.x29{left:605.673600px;}
.x2{left:628.795350px;}
.x1b{left:683.505600px;}
.x7{left:692.524500px;}
.x19{left:695.784750px;}
.x11{left:698.635500px;}
.xa{left:700.431000px;}
.x13{left:702.913350px;}
.x4{left:704.798550px;}
.x8{left:709.135500px;}
.x15{left:719.805000px;}
.xc{left:723.090000px;}
.x1d{left:726.626700px;}
.x6{left:727.825500px;}
.x1a{left:729.775950px;}
.x5{left:732.109500px;}
.x1c{left:733.642950px;}
.x12{left:735.618000px;}
.xe{left:737.319600px;}
.xf{left:738.943800px;}
.x1f{left:742.320300px;}
.x14{left:743.662050px;}
.x10{left:745.175550px;}
.x1e{left:746.530050px;}
.xb{left:747.723000px;}
.x20{left:749.787900px;}
.x3{left:751.874550px;}
.xd{left:754.833300px;}
.x16{left:755.963550px;}
.x17{left:759.029100px;}
.x18{left:760.034250px;}
.x9{left:763.210500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-2.933333pt;}
.ls7{letter-spacing:-1.760000pt;}
.ls6{letter-spacing:-1.173333pt;}
.ls9{letter-spacing:-0.997333pt;}
.ls4{letter-spacing:-0.988800pt;}
.ls3{letter-spacing:-0.878933pt;}
.ls5{letter-spacing:-0.586667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.746667pt;}
.ls1{letter-spacing:0.853333pt;}
.ws1{word-spacing:-9.600000pt;}
.ws0{word-spacing:-9.245280pt;}
.wsf{word-spacing:-5.925333pt;}
.ws25{word-spacing:-5.162667pt;}
.ws1b{word-spacing:-4.400000pt;}
.wsc{word-spacing:-4.165333pt;}
.ws2c{word-spacing:-3.637333pt;}
.ws26{word-spacing:-2.874667pt;}
.wsd{word-spacing:-2.112000pt;}
.ws2a{word-spacing:-1.818667pt;}
.ws19{word-spacing:-1.584000pt;}
.ws1c{word-spacing:-0.997333pt;}
.ws15{word-spacing:-0.880000pt;}
.wsa{word-spacing:-0.821333pt;}
.ws4{word-spacing:-0.746667pt;}
.ws29{word-spacing:-0.293333pt;}
.ws2{word-spacing:0.000000pt;}
.ws12{word-spacing:0.704000pt;}
.ws1d{word-spacing:0.821333pt;}
.ws3{word-spacing:0.878933pt;}
.ws5{word-spacing:0.988800pt;}
.ws2d{word-spacing:1.114667pt;}
.ws10{word-spacing:1.290667pt;}
.ws21{word-spacing:2.229333pt;}
.ws16{word-spacing:2.816000pt;}
.ws13{word-spacing:2.933333pt;}
.ws14{word-spacing:3.520000pt;}
.ws2b{word-spacing:3.637333pt;}
.ws23{word-spacing:3.754667pt;}
.ws20{word-spacing:4.634667pt;}
.ws22{word-spacing:4.752000pt;}
.ws2f{word-spacing:5.338667pt;}
.ws1a{word-spacing:5.573333pt;}
.ws18{word-spacing:5.632000pt;}
.ws2e{word-spacing:5.749333pt;}
.ws24{word-spacing:6.864000pt;}
.ws7{word-spacing:6.922667pt;}
.wse{word-spacing:7.040000pt;}
.ws1e{word-spacing:7.098667pt;}
.ws17{word-spacing:7.626667pt;}
.ws6{word-spacing:7.920000pt;}
.ws11{word-spacing:8.565333pt;}
.wsb{word-spacing:8.624000pt;}
.ws28{word-spacing:10.618667pt;}
.ws27{word-spacing:11.557333pt;}
.ws9{word-spacing:13.552000pt;}
.ws1f{word-spacing:16.602667pt;}
.ws8{word-spacing:20.122667pt;}
._6{margin-left:-7.532272pt;}
._3{margin-left:-5.692480pt;}
._4{margin-left:-4.391893pt;}
._2{margin-left:-2.472955pt;}
._0{margin-left:-0.900907pt;}
._1{width:1.171728pt;}
._5{width:2.932576pt;}
.fs3{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs2{font-size:43.946667pt;}
.fs4{font-size:49.440000pt;}
.fs1{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:60.000000pt;}
.fs8{font-size:80.000000pt;}
.fs7{font-size:1333.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:31.647467pt;}
.y1{bottom:32.753600pt;}
.y6a{bottom:72.136800pt;}
.y44{bottom:87.133867pt;}
.y69{bottom:90.807467pt;}
.y43{bottom:99.929867pt;}
.y68{bottom:109.478133pt;}
.y42{bottom:111.129867pt;}
.y41{bottom:127.709333pt;}
.y67{bottom:128.148800pt;}
.y66{bottom:146.819467pt;}
.y40{bottom:149.712000pt;}
.y3f{bottom:161.714667pt;}
.y65{bottom:164.155467pt;}
.y3e{bottom:172.914667pt;}
.y64{bottom:181.491467pt;}
.y3d{bottom:189.494267pt;}
.y63{bottom:198.827467pt;}
.y3c{bottom:211.496800pt;}
.y62{bottom:216.163467pt;}
.y3b{bottom:223.499467pt;}
.y61{bottom:233.499467pt;}
.y3a{bottom:234.699467pt;}
.y60{bottom:250.835467pt;}
.y39{bottom:251.278933pt;}
.y5f{bottom:268.171467pt;}
.y38{bottom:273.281600pt;}
.y37{bottom:285.284267pt;}
.y5e{bottom:285.507467pt;}
.y36{bottom:296.484267pt;}
.y5d{bottom:302.843467pt;}
.y35{bottom:313.063733pt;}
.y5c{bottom:320.179467pt;}
.y34{bottom:335.066400pt;}
.y5b{bottom:337.515467pt;}
.y33{bottom:347.069067pt;}
.y5a{bottom:354.851467pt;}
.y32{bottom:358.268933pt;}
.y59{bottom:372.187467pt;}
.y31{bottom:374.848533pt;}
.y58{bottom:389.523467pt;}
.y30{bottom:396.857733pt;}
.y57{bottom:406.859467pt;}
.y2f{bottom:409.653733pt;}
.y2e{bottom:420.853733pt;}
.y56{bottom:424.195467pt;}
.y2d{bottom:441.212800pt;}
.y55{bottom:441.531467pt;}
.y2c{bottom:452.412800pt;}
.y54{bottom:458.867467pt;}
.y2b{bottom:463.612800pt;}
.y53{bottom:476.203467pt;}
.y2a{bottom:480.192400pt;}
.y52{bottom:493.539467pt;}
.y29{bottom:502.194933pt;}
.y51{bottom:510.875467pt;}
.y28{bottom:514.197600pt;}
.y27{bottom:525.397600pt;}
.y50{bottom:528.211467pt;}
.y4f{bottom:545.547467pt;}
.y26{bottom:545.756667pt;}
.y25{bottom:556.956667pt;}
.y4e{bottom:562.883467pt;}
.y24{bottom:568.156667pt;}
.y4d{bottom:580.219467pt;}
.y23{bottom:584.736267pt;}
.y4c{bottom:597.555467pt;}
.y22{bottom:599.182400pt;}
.y4b{bottom:614.891467pt;}
.y21{bottom:624.971200pt;}
.y4a{bottom:632.227467pt;}
.y20{bottom:637.767200pt;}
.y1f{bottom:648.967200pt;}
.y49{bottom:649.563467pt;}
.y1e{bottom:665.546667pt;}
.y48{bottom:666.899467pt;}
.y47{bottom:684.235467pt;}
.y1d{bottom:691.335467pt;}
.y46{bottom:701.571467pt;}
.y1c{bottom:704.131467pt;}
.y1b{bottom:715.331467pt;}
.y45{bottom:718.907467pt;}
.y1a{bottom:731.910933pt;}
.y7a{bottom:738.074400pt;}
.y79{bottom:755.410400pt;}
.y19{bottom:757.695733pt;}
.y18{bottom:768.895733pt;}
.y78{bottom:772.746400pt;}
.y6b{bottom:775.465333pt;}
.y17{bottom:780.095733pt;}
.y77{bottom:790.082400pt;}
.y16{bottom:796.675333pt;}
.y76{bottom:807.418400pt;}
.y15{bottom:820.813867pt;}
.y75{bottom:824.754400pt;}
.y14{bottom:832.013867pt;}
.y74{bottom:842.090400pt;}
.y13{bottom:843.213867pt;}
.y73{bottom:859.426400pt;}
.y12{bottom:859.793467pt;}
.y11{bottom:876.373067pt;}
.y72{bottom:876.762400pt;}
.y71{bottom:894.098400pt;}
.y10{bottom:902.157867pt;}
.y70{bottom:911.434400pt;}
.yf{bottom:913.357867pt;}
.ye{bottom:924.557733pt;}
.y6f{bottom:928.770400pt;}
.yd{bottom:937.357867pt;}
.y6e{bottom:946.106400pt;}
.yc{bottom:960.028533pt;}
.y6d{bottom:963.442400pt;}
.yb{bottom:972.824533pt;}
.y6c{bottom:980.778400pt;}
.ya{bottom:984.024533pt;}
.y9{bottom:995.224533pt;}
.y8{bottom:1006.424533pt;}
.y7{bottom:1017.624533pt;}
.y6{bottom:1028.824533pt;}
.y5{bottom:1040.024533pt;}
.y4{bottom:1055.002613pt;}
.y7b{bottom:1062.165333pt;}
.y3{bottom:1065.670667pt;}
.h6{height:33.486979pt;}
.h4{height:36.457708pt;}
.h5{height:36.886875pt;}
.h8{height:38.270833pt;}
.h7{height:41.014922pt;}
.h9{height:41.497734pt;}
.h3{height:44.244792pt;}
.ha{height:47.578667pt;}
.h2{height:49.775391pt;}
.hc{height:60.000000pt;}
.hb{height:1081.333333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:54.246800pt;}
.x21{left:61.805867pt;}
.x22{left:80.740533pt;}
.x27{left:218.425200pt;}
.x28{left:237.359867pt;}
.x24{left:380.087200pt;}
.x25{left:403.407200pt;}
.x23{left:409.244533pt;}
.x1{left:478.677200pt;}
.x29{left:538.376533pt;}
.x2{left:558.929200pt;}
.x1b{left:607.560533pt;}
.x7{left:615.577333pt;}
.x19{left:618.475333pt;}
.x11{left:621.009333pt;}
.xa{left:622.605333pt;}
.x13{left:624.811867pt;}
.x4{left:626.487600pt;}
.x8{left:630.342667pt;}
.x15{left:639.826667pt;}
.xc{left:642.746667pt;}
.x1d{left:645.890400pt;}
.x6{left:646.956000pt;}
.x1a{left:648.689733pt;}
.x5{left:650.764000pt;}
.x1c{left:652.127067pt;}
.x12{left:653.882667pt;}
.xe{left:655.395200pt;}
.xf{left:656.838933pt;}
.x1f{left:659.840267pt;}
.x14{left:661.032933pt;}
.x10{left:662.378267pt;}
.x1e{left:663.582267pt;}
.xb{left:664.642667pt;}
.x20{left:666.478133pt;}
.x3{left:668.332933pt;}
.xd{left:670.962933pt;}
.x16{left:671.967600pt;}
.x17{left:674.692533pt;}
.x18{left:675.586000pt;}
.x9{left:678.409333pt;}
}

