
    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_9793cd953c6e3ecb616cfe31.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_92e9cc84b1bc4a43cd94c0b9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_3c06f940071d826ae20b671f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.690430;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_00c066ca3ef9c5f544b9bca9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_f69c02a37bf3d4812701b5a4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_fea5e1b792eabff0c1567a58.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_20312ebcc4980e3f1d46b571.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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:ff8;src:url('chunks/assets/font_f8f0cff3c7b0bb2f479ef319.woff')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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:ff9;src:url('chunks/assets/font_90d6a0902e8ee45f7a697657.woff')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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);}
.v1{vertical-align:-96.480000px;}
.v3{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:38.880000px;}
.ls11{letter-spacing:-0.990000px;}
.ls6{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.452400px;}
.ls8{letter-spacing:-0.178800px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.178800px;}
.lsb{letter-spacing:0.357000px;}
.lsc{letter-spacing:0.357120px;}
.ls0{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.720000px;}
.ls3{letter-spacing:1.440000px;}
.ls9{letter-spacing:1.797120px;}
.lse{letter-spacing:1.800000px;}
.lsd{letter-spacing:2.160000px;}
.ls7{letter-spacing:36.720000px;}
.lsf{letter-spacing:38.160000px;}
.ls4{letter-spacing:261.516000px;}
.ls2{letter-spacing:1483.176000px;}
.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:-119.520000px;}
.ws0{word-spacing:-26.280000px;}
.wsa{word-spacing:-22.680000px;}
.wsb{word-spacing:-21.237000px;}
.wsc{word-spacing:-21.058800px;}
.ws3{word-spacing:-20.880000px;}
.ws8{word-spacing:-20.701200px;}
.ws9{word-spacing:-20.427600px;}
.wsd{word-spacing:-19.890000px;}
.ws5{word-spacing:-18.000000px;}
.ws2{word-spacing:-13.680000px;}
.ws4{word-spacing:-11.880000px;}
.ws6{word-spacing:-11.160000px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-2.829600px;}
._0{margin-left:-1.368000px;}
._2{width:1.116000px;}
._4{width:2.522880px;}
._1{width:3.648000px;}
._b{width:4.927680px;}
._5{width:5.983200px;}
._7{width:6.996480px;}
._6{width:8.101440px;}
._f{width:9.847200px;}
._20{width:11.108160px;}
._1d{width:12.445920px;}
._12{width:13.864320px;}
._13{width:15.086880px;}
._15{width:16.128000px;}
._14{width:17.452800px;}
._21{width:19.127520px;}
._17{width:22.844160px;}
._8{width:23.888160px;}
._a{width:25.232160px;}
._9{width:26.821440px;}
._1a{width:28.617120px;}
._18{width:30.098880px;}
._19{width:31.152960px;}
._23{width:32.191200px;}
._1f{width:33.439680px;}
._1e{width:35.134560px;}
._1c{width:37.046880px;}
._1b{width:38.450880px;}
._24{width:39.746880px;}
._16{width:41.847840px;}
._11{width:43.053120px;}
._10{width:44.683200px;}
._25{width:45.970560px;}
._28{width:47.292480px;}
._26{width:48.441600px;}
._27{width:50.302080px;}
._c{width:60.023520px;}
._d{width:61.499520px;}
._e{width:62.599680px;}
._29{width:68.918400px;}
._2a{width:70.574400px;}
._2b{width:71.664480px;}
._2e{width:77.026080px;}
._2d{width:78.064320px;}
._2c{width:125.186400px;}
._22{width:190.920000px;}
.fc4{color:rgb(0,0,128);}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs6{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs5{font-size:60.480000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:119.520000px;}
.fs7{font-size:390.384000px;}
.y0{bottom:0.000000px;}
.y59{bottom:3.960000px;}
.y2a{bottom:4.680000px;}
.y56{bottom:25.200000px;}
.y55{bottom:46.080000px;}
.y1{bottom:68.076000px;}
.y28{bottom:131.796000px;}
.y69{bottom:146.556000px;}
.y4e{bottom:146.916000px;}
.y68{bottom:150.870000px;}
.y27{bottom:152.670000px;}
.y4d{bottom:171.075000px;}
.y67{bottom:175.035000px;}
.y26{bottom:181.515000px;}
.y25{bottom:194.115000px;}
.y52{bottom:195.195000px;}
.y4c{bottom:195.555000px;}
.y66{bottom:199.155000px;}
.y4b{bottom:219.675000px;}
.y24{bottom:222.915000px;}
.y65{bottom:223.275000px;}
.y23{bottom:235.515000px;}
.y4a{bottom:243.795000px;}
.y64{bottom:247.395000px;}
.y22{bottom:256.035000px;}
.y49{bottom:267.915000px;}
.y63{bottom:271.515000px;}
.y21{bottom:285.195000px;}
.y48{bottom:291.675000px;}
.y51{bottom:292.035000px;}
.y62{bottom:295.665000px;}
.y20{bottom:297.105000px;}
.y47{bottom:316.185000px;}
.y61{bottom:319.785000px;}
.y1f{bottom:333.105000px;}
.y46{bottom:340.305000px;}
.y60{bottom:343.905000px;}
.y1e{bottom:357.225000px;}
.y45{bottom:364.065000px;}
.y50{bottom:364.425000px;}
.y5f{bottom:368.025000px;}
.y1d{bottom:381.345000px;}
.y44{bottom:388.185000px;}
.y4f{bottom:388.545000px;}
.y5e{bottom:392.145000px;}
.y1c{bottom:405.465000px;}
.y43{bottom:412.665000px;}
.y5d{bottom:416.265000px;}
.y1b{bottom:429.630000px;}
.y42{bottom:436.830000px;}
.y5c{bottom:440.790000px;}
.y1a{bottom:453.750000px;}
.y41{bottom:460.950000px;}
.y5b{bottom:464.910000px;}
.y19{bottom:478.230000px;}
.y40{bottom:485.070000px;}
.y5a{bottom:489.030000px;}
.y18{bottom:502.350000px;}
.y58{bottom:508.830000px;}
.y3f{bottom:509.550000px;}
.y17{bottom:526.470000px;}
.y57{bottom:526.830000px;}
.y3e{bottom:533.670000px;}
.y16{bottom:550.590000px;}
.y53{bottom:557.460000px;}
.y3d{bottom:557.820000px;}
.y15{bottom:574.740000px;}
.y3c{bottom:581.940000px;}
.y14{bottom:598.860000px;}
.y3b{bottom:606.060000px;}
.y29{bottom:617.940000px;}
.y13{bottom:622.980000px;}
.y3a{bottom:630.180000px;}
.y12{bottom:647.100000px;}
.y39{bottom:654.300000px;}
.y38{bottom:678.420000px;}
.y11{bottom:695.370000px;}
.y37{bottom:702.570000px;}
.y10{bottom:719.490000px;}
.y36{bottom:726.690000px;}
.yf{bottom:750.810000px;}
.ye{bottom:774.930000px;}
.y35{bottom:799.050000px;}
.yd{bottom:799.410000px;}
.yc{bottom:823.575000px;}
.yb{bottom:847.695000px;}
.ya{bottom:871.815000px;}
.y34{bottom:895.935000px;}
.y9{bottom:920.055000px;}
.y6b{bottom:926.895000px;}
.y8{bottom:939.135000px;}
.y33{bottom:944.205000px;}
.y6a{bottom:949.965000px;}
.y32{bottom:968.325000px;}
.y7{bottom:970.125000px;}
.y31{bottom:992.445000px;}
.y6{bottom:1004.685000px;}
.y30{bottom:1016.565000px;}
.y5{bottom:1039.245000px;}
.y2f{bottom:1040.685000px;}
.y2e{bottom:1064.805000px;}
.y4{bottom:1066.965000px;}
.y2d{bottom:1088.970000px;}
.y54{bottom:1093.650000px;}
.y3{bottom:1108.050000px;}
.y2c{bottom:1113.450000px;}
.y2{bottom:1132.530000px;}
.y2b{bottom:1137.570000px;}
.h12{height:17.280000px;}
.ha{height:46.638281px;}
.h13{height:56.563594px;}
.h9{height:59.357813px;}
.h10{height:62.280000px;}
.hb{height:70.664062px;}
.hc{height:72.396000px;}
.h2{height:72.562500px;}
.he{height:73.283906px;}
.h5{height:80.944453px;}
.h3{height:81.970312px;}
.hf{height:84.172500px;}
.h7{height:92.584688px;}
.h4{height:105.996094px;}
.h6{height:120.453750px;}
.hd{height:383.140547px;}
.h11{height:566.100000px;}
.h8{height:1262.879925px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:70.596000px;}
.w3{width:414.180000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x13{left:24.840000px;}
.x12{left:56.205000px;}
.x15{left:96.525000px;}
.x8{left:127.476000px;}
.x1{left:129.996000px;}
.x11{left:162.795000px;}
.x17{left:169.995000px;}
.xc{left:180.795000px;}
.xb{left:198.075000px;}
.x6{left:220.755000px;}
.x10{left:266.145000px;}
.xe{left:297.465000px;}
.xd{left:343.590000px;}
.x16{left:350.790000px;}
.x7{left:352.230000px;}
.x5{left:389.670000px;}
.xf{left:393.270000px;}
.x14{left:404.790000px;}
.xa{left:609.015000px;}
.x9{left:666.615000px;}
.x3{left:677.085000px;}
.x2{left:802.770000px;}
.x4{left:803.850000px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v3{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:34.560000pt;}
.ls11{letter-spacing:-0.880000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.402133pt;}
.ls8{letter-spacing:-0.158933pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.158933pt;}
.lsb{letter-spacing:0.317333pt;}
.lsc{letter-spacing:0.317440pt;}
.ls0{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls3{letter-spacing:1.280000pt;}
.ls9{letter-spacing:1.597440pt;}
.lse{letter-spacing:1.600000pt;}
.lsd{letter-spacing:1.920000pt;}
.ls7{letter-spacing:32.640000pt;}
.lsf{letter-spacing:33.920000pt;}
.ls4{letter-spacing:232.458667pt;}
.ls2{letter-spacing:1318.378667pt;}
.ws1{word-spacing:-106.240000pt;}
.ws0{word-spacing:-23.360000pt;}
.wsa{word-spacing:-20.160000pt;}
.wsb{word-spacing:-18.877333pt;}
.wsc{word-spacing:-18.718933pt;}
.ws3{word-spacing:-18.560000pt;}
.ws8{word-spacing:-18.401067pt;}
.ws9{word-spacing:-18.157867pt;}
.wsd{word-spacing:-17.680000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws2{word-spacing:-12.160000pt;}
.ws4{word-spacing:-10.560000pt;}
.ws6{word-spacing:-9.920000pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-2.515200pt;}
._0{margin-left:-1.216000pt;}
._2{width:0.992000pt;}
._4{width:2.242560pt;}
._1{width:3.242667pt;}
._b{width:4.380160pt;}
._5{width:5.318400pt;}
._7{width:6.219093pt;}
._6{width:7.201280pt;}
._f{width:8.753067pt;}
._20{width:9.873920pt;}
._1d{width:11.063040pt;}
._12{width:12.323840pt;}
._13{width:13.410560pt;}
._15{width:14.336000pt;}
._14{width:15.513600pt;}
._21{width:17.002240pt;}
._17{width:20.305920pt;}
._8{width:21.233920pt;}
._a{width:22.428587pt;}
._9{width:23.841280pt;}
._1a{width:25.437440pt;}
._18{width:26.754560pt;}
._19{width:27.691520pt;}
._23{width:28.614400pt;}
._1f{width:29.724160pt;}
._1e{width:31.230720pt;}
._1c{width:32.930560pt;}
._1b{width:34.178560pt;}
._24{width:35.330560pt;}
._16{width:37.198080pt;}
._11{width:38.269440pt;}
._10{width:39.718400pt;}
._25{width:40.862720pt;}
._28{width:42.037760pt;}
._26{width:43.059200pt;}
._27{width:44.712960pt;}
._c{width:53.354240pt;}
._d{width:54.666240pt;}
._e{width:55.644160pt;}
._29{width:61.260800pt;}
._2a{width:62.732800pt;}
._2b{width:63.701760pt;}
._2e{width:68.467627pt;}
._2d{width:69.390507pt;}
._2c{width:111.276800pt;}
._22{width:169.706667pt;}
.fs6{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs5{font-size:53.760000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:106.240000pt;}
.fs7{font-size:347.008000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:3.520000pt;}
.y2a{bottom:4.160000pt;}
.y56{bottom:22.400000pt;}
.y55{bottom:40.960000pt;}
.y1{bottom:60.512000pt;}
.y28{bottom:117.152000pt;}
.y69{bottom:130.272000pt;}
.y4e{bottom:130.592000pt;}
.y68{bottom:134.106667pt;}
.y27{bottom:135.706667pt;}
.y4d{bottom:152.066667pt;}
.y67{bottom:155.586667pt;}
.y26{bottom:161.346667pt;}
.y25{bottom:172.546667pt;}
.y52{bottom:173.506667pt;}
.y4c{bottom:173.826667pt;}
.y66{bottom:177.026667pt;}
.y4b{bottom:195.266667pt;}
.y24{bottom:198.146667pt;}
.y65{bottom:198.466667pt;}
.y23{bottom:209.346667pt;}
.y4a{bottom:216.706667pt;}
.y64{bottom:219.906667pt;}
.y22{bottom:227.586667pt;}
.y49{bottom:238.146667pt;}
.y63{bottom:241.346667pt;}
.y21{bottom:253.506667pt;}
.y48{bottom:259.266667pt;}
.y51{bottom:259.586667pt;}
.y62{bottom:262.813333pt;}
.y20{bottom:264.093333pt;}
.y47{bottom:281.053333pt;}
.y61{bottom:284.253333pt;}
.y1f{bottom:296.093333pt;}
.y46{bottom:302.493333pt;}
.y60{bottom:305.693333pt;}
.y1e{bottom:317.533333pt;}
.y45{bottom:323.613333pt;}
.y50{bottom:323.933333pt;}
.y5f{bottom:327.133333pt;}
.y1d{bottom:338.973333pt;}
.y44{bottom:345.053333pt;}
.y4f{bottom:345.373333pt;}
.y5e{bottom:348.573333pt;}
.y1c{bottom:360.413333pt;}
.y43{bottom:366.813333pt;}
.y5d{bottom:370.013333pt;}
.y1b{bottom:381.893333pt;}
.y42{bottom:388.293333pt;}
.y5c{bottom:391.813333pt;}
.y1a{bottom:403.333333pt;}
.y41{bottom:409.733333pt;}
.y5b{bottom:413.253333pt;}
.y19{bottom:425.093333pt;}
.y40{bottom:431.173333pt;}
.y5a{bottom:434.693333pt;}
.y18{bottom:446.533333pt;}
.y58{bottom:452.293333pt;}
.y3f{bottom:452.933333pt;}
.y17{bottom:467.973333pt;}
.y57{bottom:468.293333pt;}
.y3e{bottom:474.373333pt;}
.y16{bottom:489.413333pt;}
.y53{bottom:495.520000pt;}
.y3d{bottom:495.840000pt;}
.y15{bottom:510.880000pt;}
.y3c{bottom:517.280000pt;}
.y14{bottom:532.320000pt;}
.y3b{bottom:538.720000pt;}
.y29{bottom:549.280000pt;}
.y13{bottom:553.760000pt;}
.y3a{bottom:560.160000pt;}
.y12{bottom:575.200000pt;}
.y39{bottom:581.600000pt;}
.y38{bottom:603.040000pt;}
.y11{bottom:618.106667pt;}
.y37{bottom:624.506667pt;}
.y10{bottom:639.546667pt;}
.y36{bottom:645.946667pt;}
.yf{bottom:667.386667pt;}
.ye{bottom:688.826667pt;}
.y35{bottom:710.266667pt;}
.yd{bottom:710.586667pt;}
.yc{bottom:732.066667pt;}
.yb{bottom:753.506667pt;}
.ya{bottom:774.946667pt;}
.y34{bottom:796.386667pt;}
.y9{bottom:817.826667pt;}
.y6b{bottom:823.906667pt;}
.y8{bottom:834.786667pt;}
.y33{bottom:839.293333pt;}
.y6a{bottom:844.413333pt;}
.y32{bottom:860.733333pt;}
.y7{bottom:862.333333pt;}
.y31{bottom:882.173333pt;}
.y6{bottom:893.053333pt;}
.y30{bottom:903.613333pt;}
.y5{bottom:923.773333pt;}
.y2f{bottom:925.053333pt;}
.y2e{bottom:946.493333pt;}
.y4{bottom:948.413333pt;}
.y2d{bottom:967.973333pt;}
.y54{bottom:972.133333pt;}
.y3{bottom:984.933333pt;}
.y2c{bottom:989.733333pt;}
.y2{bottom:1006.693333pt;}
.y2b{bottom:1011.173333pt;}
.h12{height:15.360000pt;}
.ha{height:41.456250pt;}
.h13{height:50.278750pt;}
.h9{height:52.762500pt;}
.h10{height:55.360000pt;}
.hb{height:62.812500pt;}
.hc{height:64.352000pt;}
.h2{height:64.500000pt;}
.he{height:65.141250pt;}
.h5{height:71.950625pt;}
.h3{height:72.862500pt;}
.hf{height:74.820000pt;}
.h7{height:82.297500pt;}
.h4{height:94.218750pt;}
.h6{height:107.070000pt;}
.hd{height:340.569375pt;}
.h11{height:503.200000pt;}
.h8{height:1122.559933pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:62.752000pt;}
.w3{width:368.160000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x13{left:22.080000pt;}
.x12{left:49.960000pt;}
.x15{left:85.800000pt;}
.x8{left:113.312000pt;}
.x1{left:115.552000pt;}
.x11{left:144.706667pt;}
.x17{left:151.106667pt;}
.xc{left:160.706667pt;}
.xb{left:176.066667pt;}
.x6{left:196.226667pt;}
.x10{left:236.573333pt;}
.xe{left:264.413333pt;}
.xd{left:305.413333pt;}
.x16{left:311.813333pt;}
.x7{left:313.093333pt;}
.x5{left:346.373333pt;}
.xf{left:349.573333pt;}
.x14{left:359.813333pt;}
.xa{left:541.346667pt;}
.x9{left:592.546667pt;}
.x3{left:601.853333pt;}
.x2{left:713.573333pt;}
.x4{left:714.533333pt;}
}

