
    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_480495902c33424acd7a8fa2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.035645;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_98e696e685ad8e89228fcbed.woff')format("woff");}.ff2{font-family:ff2;line-height:1.035645;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_af42025ad811a279f195d7a9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws49{word-spacing:-4.409246px;}
.ws36{word-spacing:-3.454426px;}
.ws27{word-spacing:-3.036019px;}
.ws3e{word-spacing:-2.711352px;}
.ws5{word-spacing:-2.083464px;}
.ws50{word-spacing:-1.817890px;}
.ws16{word-spacing:-0.919800px;}
.ws4b{word-spacing:-0.832800px;}
.ws26{word-spacing:-0.759055px;}
.ws33{word-spacing:-0.253728px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:0.042374px;}
.ws43{word-spacing:0.070934px;}
.ws48{word-spacing:0.071174px;}
.ws46{word-spacing:0.174528px;}
.ws2a{word-spacing:0.787838px;}
.ws42{word-spacing:1.641562px;}
.ws11{word-spacing:1.965000px;}
.ws3b{word-spacing:2.052600px;}
.ws9{word-spacing:2.270174px;}
.ws3f{word-spacing:2.950349px;}
.wsa{word-spacing:3.312854px;}
.ws4e{word-spacing:3.418800px;}
.ws13{word-spacing:4.442885px;}
.ws2{word-spacing:4.850160px;}
.ws25{word-spacing:4.956864px;}
.ws1e{word-spacing:5.105702px;}
.ws3{word-spacing:5.865264px;}
.ws45{word-spacing:5.923685px;}
.ws1c{word-spacing:6.127464px;}
.wsf{word-spacing:6.292800px;}
.ws2c{word-spacing:6.305400px;}
.ws34{word-spacing:6.614136px;}
.ws4d{word-spacing:7.176000px;}
.ws1a{word-spacing:7.234349px;}
.ws7{word-spacing:7.735200px;}
.ws1f{word-spacing:7.735440px;}
.ws37{word-spacing:7.747800px;}
.ws18{word-spacing:8.256350px;}
.ws20{word-spacing:8.545757px;}
.ws17{word-spacing:8.676749px;}
.wsc{word-spacing:9.177600px;}
.ws15{word-spacing:9.178200px;}
.ws47{word-spacing:9.190800px;}
.ws14{word-spacing:9.284664px;}
.ws4f{word-spacing:9.306000px;}
.ws4{word-spacing:10.002974px;}
.ws29{word-spacing:10.634220px;}
.ws2f{word-spacing:10.910021px;}
.ws22{word-spacing:11.305162px;}
.ws10{word-spacing:12.062400px;}
.ws1b{word-spacing:12.063000px;}
.ws31{word-spacing:12.332438px;}
.wse{word-spacing:13.080672px;}
.ws23{word-spacing:13.505400px;}
.ws32{word-spacing:13.520400px;}
.ws24{word-spacing:14.134464px;}
.ws21{word-spacing:14.569471px;}
.ws3c{word-spacing:14.887310px;}
.ws4c{word-spacing:15.573600px;}
.wsd{word-spacing:16.335826px;}
.ws12{word-spacing:17.833200px;}
.ws4a{word-spacing:17.849400px;}
.ws3a{word-spacing:17.850000px;}
.ws1d{word-spacing:18.111696px;}
.ws3d{word-spacing:18.489384px;}
.ws44{word-spacing:19.236192px;}
.ws1{word-spacing:19.283566px;}
.ws38{word-spacing:19.583928px;}
.ws19{word-spacing:19.860600px;}
.wsb{word-spacing:21.303000px;}
.ws8{word-spacing:22.745400px;}
.ws41{word-spacing:23.397936px;}
.ws2e{word-spacing:23.955122px;}
.ws40{word-spacing:26.046374px;}
.ws35{word-spacing:26.508000px;}
.ws30{word-spacing:27.951000px;}
.ws2d{word-spacing:29.170536px;}
.ws28{word-spacing:35.016821px;}
.ws39{word-spacing:42.382200px;}
.ws2b{word-spacing:42.991800px;}
._30{margin-left:-1.173314px;}
._11{width:1.965000px;}
._3e{width:3.321818px;}
._3{width:5.372880px;}
._26{width:7.164876px;}
._41{width:8.314870px;}
._42{width:10.249632px;}
._31{width:11.572224px;}
._2b{width:13.628971px;}
._28{width:14.986452px;}
._1e{width:16.383607px;}
._7{width:18.292800px;}
._19{width:19.934986px;}
._1a{width:21.177600px;}
._35{width:22.222920px;}
._17{width:23.339270px;}
._24{width:24.654221px;}
._2{width:26.187034px;}
._27{width:27.229956px;}
._1b{width:28.263350px;}
._6{width:29.507021px;}
._18{width:30.591415px;}
._9{width:31.860600px;}
._29{width:32.913725px;}
._f{width:33.916536px;}
._5{width:35.548421px;}
._a{width:36.854141px;}
._b{width:38.530154px;}
._10{width:39.811951px;}
._1d{width:41.723366px;}
._d{width:43.693879px;}
._15{width:45.481877px;}
._14{width:46.583851px;}
._2a{width:47.805290px;}
._1{width:48.812962px;}
._e{width:50.712557px;}
._3c{width:51.850272px;}
._1f{width:52.878850px;}
._21{width:54.544286px;}
._c{width:55.789361px;}
._16{width:57.291600px;}
._4{width:59.140181px;}
._3a{width:60.250493px;}
._1c{width:61.648958px;}
._2f{width:62.813858px;}
._39{width:64.028974px;}
._12{width:65.100403px;}
._0{width:66.479347px;}
._2e{width:67.877542px;}
._2d{width:68.927549px;}
._23{width:70.935962px;}
._13{width:72.812642px;}
._20{width:73.904916px;}
._32{width:75.372756px;}
._36{width:76.401902px;}
._8{width:78.424042px;}
._34{width:80.771177px;}
._3b{width:82.046443px;}
._22{width:83.317906px;}
._33{width:85.305190px;}
._25{width:86.316665px;}
._3d{width:87.888302px;}
._47{width:89.058350px;}
._4a{width:91.618406px;}
._37{width:94.081286px;}
._43{width:96.372365px;}
._44{width:99.138250px;}
._4b{width:100.386154px;}
._3f{width:102.318166px;}
._46{width:103.787695px;}
._48{width:110.115742px;}
._49{width:112.698269px;}
._38{width:116.310307px;}
._2c{width:127.723490px;}
._45{width:131.923814px;}
._40{width:132.949891px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:184.594500px;}
.y63{bottom:483.948435px;}
.y62{bottom:494.774655px;}
.y35{bottom:497.828550px;}
.y34{bottom:511.886310px;}
.y33{bottom:524.862750px;}
.y61{bottom:535.553400px;}
.y32{bottom:539.280900px;}
.y60{bottom:548.544900px;}
.y5f{bottom:562.618950px;}
.y31{bottom:569.198700px;}
.y5e{bottom:575.971350px;}
.y30{bottom:583.977300px;}
.y2f{bottom:597.674700px;}
.y5d{bottom:608.089050px;}
.y2e{bottom:609.569700px;}
.y5c{bottom:620.719650px;}
.y2d{bottom:624.708750px;}
.y5b{bottom:635.515500px;}
.y2c{bottom:636.964200px;}
.y5a{bottom:648.867900px;}
.y2b{bottom:651.742950px;}
.y59{bottom:663.302850px;}
.y2a{bottom:664.719300px;}
.y58{bottom:675.211650px;}
.y29{bottom:676.974750px;}
.y57{bottom:689.646600px;}
.y28{bottom:691.753500px;}
.y56{bottom:702.998850px;}
.y27{bottom:704.729850px;}
.y55{bottom:715.990350px;}
.y26{bottom:718.066650px;}
.y54{bottom:730.786200px;}
.y25{bottom:733.205850px;}
.y53{bottom:743.416800px;}
.y24{bottom:745.821750px;}
.y6{bottom:754.960650px;}
.y52{bottom:756.408300px;}
.y23{bottom:760.960800px;}
.y51{bottom:770.482350px;}
.y22{bottom:772.495500px;}
.y50{bottom:783.473850px;}
.y21{bottom:786.913650px;}
.y4f{bottom:796.826100px;}
.y20{bottom:799.890000px;}
.y5{bottom:799.960650px;}
.y4e{bottom:810.178500px;}
.y1f{bottom:815.029200px;}
.y4d{bottom:823.891650px;}
.y1e{bottom:826.563750px;}
.y4c{bottom:837.604950px;}
.y1d{bottom:840.981900px;}
.y4b{bottom:851.679000px;}
.y1c{bottom:855.039750px;}
.y4{bottom:862.464600px;}
.y4a{bottom:864.670500px;}
.y1b{bottom:868.376550px;}
.y49{bottom:878.383650px;}
.y1a{bottom:881.352900px;}
.y3{bottom:889.464600px;}
.y48{bottom:892.457700px;}
.y19{bottom:895.050150px;}
.y47{bottom:905.810100px;}
.y18{bottom:909.468450px;}
.y46{bottom:919.523250px;}
.y17{bottom:922.444800px;}
.y2{bottom:931.464600px;}
.y45{bottom:932.875650px;}
.y16{bottom:936.502500px;}
.y44{bottom:946.588800px;}
.y15{bottom:950.199900px;}
.y43{bottom:959.941200px;}
.y14{bottom:963.176250px;}
.y42{bottom:974.015250px;}
.y41{bottom:987.728400px;}
.y13{bottom:995.617200px;}
.y40{bottom:1001.080800px;}
.y12{bottom:1009.674900px;}
.y3f{bottom:1014.793950px;}
.y11{bottom:1023.011850px;}
.y1{bottom:1026.992100px;}
.y3e{bottom:1028.507250px;}
.y10{bottom:1036.709100px;}
.y3d{bottom:1041.859500px;}
.yf{bottom:1050.045900px;}
.y3c{bottom:1055.572800px;}
.ye{bottom:1063.743300px;}
.y3b{bottom:1069.285950px;}
.yd{bottom:1077.440550px;}
.yc{bottom:1091.137800px;}
.y3a{bottom:1103.208150px;}
.yb{bottom:1104.835200px;}
.y39{bottom:1114.395150px;}
.ya{bottom:1118.532450px;}
.y38{bottom:1128.108450px;}
.y37{bottom:1142.904300px;}
.y9{bottom:1150.252500px;}
.y36{bottom:1155.534900px;}
.y8{bottom:1168.035000px;}
.h7{height:40.031250px;}
.h5{height:57.585938px;}
.h6{height:60.046875px;}
.h4{height:67.183594px;}
.h3{height:76.781250px;}
.h2{height:86.378906px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:61.331430px;}
.xb{left:62.413740px;}
.x9{left:65.634180px;}
.x8{left:66.716070px;}
.x3{left:126.565590px;}
.x1{left:192.857085px;}
.x4{left:237.379545px;}
.x2{left:264.095340px;}
.x7{left:316.892790px;}
.x5{left:347.368140px;}
.x6{left:417.233040px;}
.xc{left:659.132400px;}
.xd{left:724.071600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws49{word-spacing:-3.919330pt;}
.ws36{word-spacing:-3.070601pt;}
.ws27{word-spacing:-2.698684pt;}
.ws3e{word-spacing:-2.410091pt;}
.ws5{word-spacing:-1.851968pt;}
.ws50{word-spacing:-1.615902pt;}
.ws16{word-spacing:-0.817600pt;}
.ws4b{word-spacing:-0.740267pt;}
.ws26{word-spacing:-0.674716pt;}
.ws33{word-spacing:-0.225536pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:0.037666pt;}
.ws43{word-spacing:0.063053pt;}
.ws48{word-spacing:0.063266pt;}
.ws46{word-spacing:0.155136pt;}
.ws2a{word-spacing:0.700301pt;}
.ws42{word-spacing:1.459166pt;}
.ws11{word-spacing:1.746667pt;}
.ws3b{word-spacing:1.824533pt;}
.ws9{word-spacing:2.017933pt;}
.ws3f{word-spacing:2.622532pt;}
.wsa{word-spacing:2.944759pt;}
.ws4e{word-spacing:3.038933pt;}
.ws13{word-spacing:3.949231pt;}
.ws2{word-spacing:4.311253pt;}
.ws25{word-spacing:4.406101pt;}
.ws1e{word-spacing:4.538402pt;}
.ws3{word-spacing:5.213568pt;}
.ws45{word-spacing:5.265498pt;}
.ws1c{word-spacing:5.446635pt;}
.wsf{word-spacing:5.593600pt;}
.ws2c{word-spacing:5.604800pt;}
.ws34{word-spacing:5.879232pt;}
.ws4d{word-spacing:6.378667pt;}
.ws1a{word-spacing:6.430532pt;}
.ws7{word-spacing:6.875733pt;}
.ws1f{word-spacing:6.875947pt;}
.ws37{word-spacing:6.886933pt;}
.ws18{word-spacing:7.338978pt;}
.ws20{word-spacing:7.596228pt;}
.ws17{word-spacing:7.712666pt;}
.wsc{word-spacing:8.157867pt;}
.ws15{word-spacing:8.158400pt;}
.ws47{word-spacing:8.169600pt;}
.ws14{word-spacing:8.253035pt;}
.ws4f{word-spacing:8.272000pt;}
.ws4{word-spacing:8.891533pt;}
.ws29{word-spacing:9.452640pt;}
.ws2f{word-spacing:9.697796pt;}
.ws22{word-spacing:10.049033pt;}
.ws10{word-spacing:10.722133pt;}
.ws1b{word-spacing:10.722667pt;}
.ws31{word-spacing:10.962167pt;}
.wse{word-spacing:11.627264pt;}
.ws23{word-spacing:12.004800pt;}
.ws32{word-spacing:12.018133pt;}
.ws24{word-spacing:12.563968pt;}
.ws21{word-spacing:12.950641pt;}
.ws3c{word-spacing:13.233165pt;}
.ws4c{word-spacing:13.843200pt;}
.wsd{word-spacing:14.520734pt;}
.ws12{word-spacing:15.851733pt;}
.ws4a{word-spacing:15.866133pt;}
.ws3a{word-spacing:15.866667pt;}
.ws1d{word-spacing:16.099285pt;}
.ws3d{word-spacing:16.435008pt;}
.ws44{word-spacing:17.098837pt;}
.ws1{word-spacing:17.140947pt;}
.ws38{word-spacing:17.407936pt;}
.ws19{word-spacing:17.653867pt;}
.wsb{word-spacing:18.936000pt;}
.ws8{word-spacing:20.218133pt;}
.ws41{word-spacing:20.798165pt;}
.ws2e{word-spacing:21.293442pt;}
.ws40{word-spacing:23.152333pt;}
.ws35{word-spacing:23.562667pt;}
.ws30{word-spacing:24.845333pt;}
.ws2d{word-spacing:25.929365pt;}
.ws28{word-spacing:31.126063pt;}
.ws39{word-spacing:37.673067pt;}
.ws2b{word-spacing:38.214933pt;}
._30{margin-left:-1.042946pt;}
._11{width:1.746667pt;}
._3e{width:2.952727pt;}
._3{width:4.775893pt;}
._26{width:6.368779pt;}
._41{width:7.390995pt;}
._42{width:9.110784pt;}
._31{width:10.286421pt;}
._2b{width:12.114641pt;}
._28{width:13.321291pt;}
._1e{width:14.563206pt;}
._7{width:16.260267pt;}
._19{width:17.719987pt;}
._1a{width:18.824533pt;}
._35{width:19.753707pt;}
._17{width:20.746018pt;}
._24{width:21.914863pt;}
._2{width:23.277363pt;}
._27{width:24.204405pt;}
._1b{width:25.122978pt;}
._6{width:26.228463pt;}
._18{width:27.192369pt;}
._9{width:28.320533pt;}
._29{width:29.256644pt;}
._f{width:30.148032pt;}
._5{width:31.598596pt;}
._a{width:32.759236pt;}
._b{width:34.249026pt;}
._10{width:35.388401pt;}
._1d{width:37.087437pt;}
._d{width:38.839004pt;}
._15{width:40.428335pt;}
._14{width:41.407868pt;}
._2a{width:42.493591pt;}
._1{width:43.389299pt;}
._e{width:45.077828pt;}
._3c{width:46.089131pt;}
._1f{width:47.003422pt;}
._21{width:48.483810pt;}
._c{width:49.590543pt;}
._16{width:50.925867pt;}
._4{width:52.569050pt;}
._3a{width:53.555994pt;}
._1c{width:54.799074pt;}
._2f{width:55.834541pt;}
._39{width:56.914643pt;}
._12{width:57.867025pt;}
._0{width:59.092753pt;}
._2e{width:60.335593pt;}
._2d{width:61.268932pt;}
._23{width:63.054189pt;}
._13{width:64.722349pt;}
._20{width:65.693259pt;}
._32{width:66.998005pt;}
._36{width:67.912802pt;}
._8{width:69.710259pt;}
._34{width:71.796602pt;}
._3b{width:72.930172pt;}
._22{width:74.060361pt;}
._33{width:75.826835pt;}
._25{width:76.725924pt;}
._3d{width:78.122935pt;}
._47{width:79.162978pt;}
._4a{width:81.438583pt;}
._37{width:83.627810pt;}
._43{width:85.664324pt;}
._44{width:88.122889pt;}
._4b{width:89.232137pt;}
._3f{width:90.949481pt;}
._46{width:92.255729pt;}
._48{width:97.880659pt;}
._49{width:100.176239pt;}
._38{width:103.386940pt;}
._2c{width:113.531991pt;}
._45{width:117.265613pt;}
._40{width:118.177681pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:164.084000pt;}
.y63{bottom:430.176387pt;}
.y62{bottom:439.799693pt;}
.y35{bottom:442.514267pt;}
.y34{bottom:455.010053pt;}
.y33{bottom:466.544667pt;}
.y61{bottom:476.047467pt;}
.y32{bottom:479.360800pt;}
.y60{bottom:487.595467pt;}
.y5f{bottom:500.105733pt;}
.y31{bottom:505.954400pt;}
.y5e{bottom:511.974533pt;}
.y30{bottom:519.090933pt;}
.y2f{bottom:531.266400pt;}
.y5d{bottom:540.523600pt;}
.y2e{bottom:541.839733pt;}
.y5c{bottom:551.750800pt;}
.y2d{bottom:555.296667pt;}
.y5b{bottom:564.902667pt;}
.y2c{bottom:566.190400pt;}
.y5a{bottom:576.771467pt;}
.y2b{bottom:579.327067pt;}
.y59{bottom:589.602533pt;}
.y2a{bottom:590.861600pt;}
.y58{bottom:600.188133pt;}
.y29{bottom:601.755333pt;}
.y57{bottom:613.019200pt;}
.y28{bottom:614.892000pt;}
.y56{bottom:624.887867pt;}
.y27{bottom:626.426533pt;}
.y55{bottom:636.435867pt;}
.y26{bottom:638.281467pt;}
.y54{bottom:649.587733pt;}
.y25{bottom:651.738533pt;}
.y53{bottom:660.814933pt;}
.y24{bottom:662.952667pt;}
.y6{bottom:671.076133pt;}
.y52{bottom:672.362933pt;}
.y23{bottom:676.409600pt;}
.y51{bottom:684.873200pt;}
.y22{bottom:686.662667pt;}
.y50{bottom:696.421200pt;}
.y21{bottom:699.478800pt;}
.y4f{bottom:708.289867pt;}
.y20{bottom:711.013333pt;}
.y5{bottom:711.076133pt;}
.y4e{bottom:720.158667pt;}
.y1f{bottom:724.470400pt;}
.y4d{bottom:732.348133pt;}
.y1e{bottom:734.723333pt;}
.y4c{bottom:744.537733pt;}
.y1d{bottom:747.539467pt;}
.y4b{bottom:757.048000pt;}
.y1c{bottom:760.035333pt;}
.y4{bottom:766.635200pt;}
.y4a{bottom:768.596000pt;}
.y1b{bottom:771.890267pt;}
.y49{bottom:780.785467pt;}
.y1a{bottom:783.424800pt;}
.y3{bottom:790.635200pt;}
.y48{bottom:793.295733pt;}
.y19{bottom:795.600133pt;}
.y47{bottom:805.164533pt;}
.y18{bottom:808.416400pt;}
.y46{bottom:817.354000pt;}
.y17{bottom:819.950933pt;}
.y2{bottom:827.968533pt;}
.y45{bottom:829.222800pt;}
.y16{bottom:832.446667pt;}
.y44{bottom:841.412267pt;}
.y15{bottom:844.622133pt;}
.y43{bottom:853.281067pt;}
.y14{bottom:856.156667pt;}
.y42{bottom:865.791333pt;}
.y41{bottom:877.980800pt;}
.y13{bottom:884.993067pt;}
.y40{bottom:889.849600pt;}
.y12{bottom:897.488800pt;}
.y3f{bottom:902.039067pt;}
.y11{bottom:909.343867pt;}
.y1{bottom:912.881867pt;}
.y3e{bottom:914.228667pt;}
.y10{bottom:921.519200pt;}
.y3d{bottom:926.097333pt;}
.yf{bottom:933.374133pt;}
.y3c{bottom:938.286933pt;}
.ye{bottom:945.549600pt;}
.y3b{bottom:950.476400pt;}
.yd{bottom:957.724933pt;}
.yc{bottom:969.900267pt;}
.y3a{bottom:980.629467pt;}
.yb{bottom:982.075733pt;}
.y39{bottom:990.573467pt;}
.ya{bottom:994.251067pt;}
.y38{bottom:1002.763067pt;}
.y37{bottom:1015.914933pt;}
.y9{bottom:1022.446667pt;}
.y36{bottom:1027.142133pt;}
.y8{bottom:1038.253333pt;}
.h7{height:35.583333pt;}
.h5{height:51.187500pt;}
.h6{height:53.375000pt;}
.h4{height:59.718750pt;}
.h3{height:68.250000pt;}
.h2{height:76.781250pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:54.516827pt;}
.xb{left:55.478880pt;}
.x9{left:58.341493pt;}
.x8{left:59.303173pt;}
.x3{left:112.502747pt;}
.x1{left:171.428520pt;}
.x4{left:211.004040pt;}
.x2{left:234.751413pt;}
.x7{left:281.682480pt;}
.x5{left:308.771680pt;}
.x6{left:370.873813pt;}
.xc{left:585.895467pt;}
.xd{left:643.619200pt;}
}

