
    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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_d177f935c1865a8dccf16af1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_bb8b72d194e053fb354a1feb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_4f1528ee26e273f5bc122d82.woff')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_4b50c5cca75d8381fff5d725.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_72291b13463432d08fee2404.woff')format("woff");}.ff6{font-family:ff6;line-height:0.940000;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_219afbf1c80e86be0bbe6876.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_904b8411350e25b7f1c7e318.woff')format("woff");}.ff8{font-family:ff8;line-height:0.731445;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_c9a554e09be39d2cb68d0291.woff')format("woff");}.ff9{font-family:ff9;line-height:0.929199;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:ffa;src:url('chunks/assets/font_327f72773c9e6665f084fa92.woff')format("woff");}.ffa{font-family:ffa;line-height:0.718750;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:ffb;src:url('chunks/assets/font_6de297c8c81c8f10303a267f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.939453;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:ffc;src:url('chunks/assets/font_1c893e6b34df4a3b9f5d8b94.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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:ffd;src:url('chunks/assets/font_5dcc8ee22b685bf237763dac.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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);}
.v2{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls4{letter-spacing:-0.037440px;}
.lsc{letter-spacing:-0.014400px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.001440px;}
.lsf{letter-spacing:0.002880px;}
.ls11{letter-spacing:0.010080px;}
.ls10{letter-spacing:0.011088px;}
.lsa{letter-spacing:0.014400px;}
.ls6{letter-spacing:0.132192px;}
.ls5{letter-spacing:0.139968px;}
.ls0{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.208080px;}
.ls8{letter-spacing:0.273600px;}
.ls9{letter-spacing:0.274176px;}
.lsb{letter-spacing:0.274320px;}
.ls7{letter-spacing:0.275040px;}
.ls2{letter-spacing:0.648000px;}
.lsd{letter-spacing:7.204320px;}
.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:-23.381280px;}
.ws3{word-spacing:-21.749472px;}
.ws4{word-spacing:-20.030400px;}
.ws0{word-spacing:-20.016000px;}
.ws5{word-spacing:-20.001600px;}
.ws2{word-spacing:0.000000px;}
._20{margin-left:-9.286704px;}
._1c{margin-left:-8.021520px;}
._15{margin-left:-5.291424px;}
._8{margin-left:-4.246080px;}
._3{margin-left:-3.043680px;}
._0{margin-left:-1.126080px;}
._2{width:1.606080px;}
._10{width:2.971680px;}
._14{width:4.510080px;}
._12{width:5.832000px;}
._13{width:7.236000px;}
._e{width:8.676000px;}
._f{width:9.924000px;}
._11{width:11.334240px;}
._6{width:12.888000px;}
._7{width:14.893920px;}
._16{width:16.300800px;}
._17{width:17.445600px;}
._18{width:18.993600px;}
._1b{width:21.218400px;}
._1d{width:22.665600px;}
._5{width:23.866080px;}
._4{width:25.200000px;}
._19{width:32.486400px;}
._1a{width:40.291200px;}
._1e{width:42.357600px;}
._9{width:65.016000px;}
._a{width:66.384000px;}
._b{width:72.349920px;}
._c{width:73.810080px;}
._d{width:74.868000px;}
._1f{width:843.984000px;}
._1{width:990.627360px;}
.fc4{color:rgb(28,29,30);}
.fc2{color:rgb(77,81,86);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(33,33,33);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.520000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y44{bottom:112.680000px;}
.y61{bottom:115.200000px;}
.y21{bottom:121.500000px;}
.y20{bottom:143.640000px;}
.y60{bottom:146.160000px;}
.y1f{bottom:165.960000px;}
.y43{bottom:174.600000px;}
.y5f{bottom:177.120000px;}
.y1e{bottom:188.310000px;}
.y42{bottom:205.920000px;}
.y5e{bottom:208.440000px;}
.y1d{bottom:210.630000px;}
.y1c{bottom:232.950000px;}
.y41{bottom:236.880000px;}
.y5d{bottom:239.400000px;}
.y1b{bottom:255.270000px;}
.y40{bottom:267.840000px;}
.y5c{bottom:270.360000px;}
.y1a{bottom:277.590000px;}
.y3f{bottom:298.800000px;}
.y19{bottom:300.090000px;}
.y5b{bottom:301.320000px;}
.y18{bottom:322.590000px;}
.y3e{bottom:330.120000px;}
.y5a{bottom:332.280000px;}
.y17{bottom:344.910000px;}
.y3d{bottom:361.080000px;}
.y59{bottom:363.600000px;}
.y16{bottom:367.230000px;}
.y7b{bottom:372.600000px;}
.y15{bottom:389.550000px;}
.y3c{bottom:392.040000px;}
.y58{bottom:394.560000px;}
.y7a{bottom:403.560000px;}
.y14{bottom:421.995000px;}
.y3b{bottom:423.000000px;}
.y57{bottom:425.520000px;}
.y79{bottom:434.880000px;}
.y13{bottom:450.795000px;}
.y3a{bottom:454.320000px;}
.y56{bottom:456.480000px;}
.y78{bottom:465.840000px;}
.y12{bottom:485.175000px;}
.y39{bottom:485.280000px;}
.y55{bottom:487.800000px;}
.y77{bottom:496.800000px;}
.y11{bottom:507.315000px;}
.y38{bottom:516.240000px;}
.y54{bottom:518.760000px;}
.y76{bottom:527.760000px;}
.y10{bottom:541.875000px;}
.y37{bottom:547.200000px;}
.y53{bottom:549.720000px;}
.y75{bottom:559.080000px;}
.yf{bottom:576.075000px;}
.y36{bottom:578.520000px;}
.y52{bottom:580.680000px;}
.y74{bottom:590.040000px;}
.y7d{bottom:595.080000px;}
.ye{bottom:598.215000px;}
.y35{bottom:609.480000px;}
.y51{bottom:612.000000px;}
.y7c{bottom:615.960000px;}
.yd{bottom:620.715000px;}
.y73{bottom:621.000000px;}
.y34{bottom:640.440000px;}
.y50{bottom:642.960000px;}
.y72{bottom:651.960000px;}
.yc{bottom:655.095000px;}
.y33{bottom:671.400000px;}
.y4f{bottom:673.920000px;}
.y71{bottom:683.280000px;}
.yb{bottom:687.885000px;}
.y32{bottom:702.720000px;}
.y4e{bottom:704.880000px;}
.y70{bottom:714.240000px;}
.ya{bottom:717.405000px;}
.y31{bottom:733.680000px;}
.y4d{bottom:736.200000px;}
.y6f{bottom:745.200000px;}
.y9{bottom:754.485000px;}
.y30{bottom:764.640000px;}
.y4c{bottom:767.160000px;}
.y6e{bottom:776.160000px;}
.y8{bottom:788.865000px;}
.y2f{bottom:795.600000px;}
.y4b{bottom:798.120000px;}
.y6d{bottom:807.480000px;}
.y2e{bottom:816.480000px;}
.y63{bottom:819.000000px;}
.y7{bottom:823.065000px;}
.y4a{bottom:829.080000px;}
.y2d{bottom:838.440000px;}
.y62{bottom:839.520000px;}
.y6{bottom:857.445000px;}
.y2c{bottom:860.400000px;}
.y6c{bottom:869.760000px;}
.y2b{bottom:891.360000px;}
.y5{bottom:891.825000px;}
.y6b{bottom:901.080000px;}
.y2a{bottom:922.320000px;}
.y4{bottom:926.250000px;}
.y6a{bottom:932.400000px;}
.y49{bottom:953.280000px;}
.y29{bottom:953.640000px;}
.y3{bottom:956.490000px;}
.y69{bottom:963.720000px;}
.y48{bottom:984.600000px;}
.y28{bottom:990.720000px;}
.y68{bottom:994.680000px;}
.y27{bottom:1015.560000px;}
.y67{bottom:1026.000000px;}
.y26{bottom:1046.520000px;}
.y66{bottom:1056.960000px;}
.y25{bottom:1067.760000px;}
.y47{bottom:1077.480000px;}
.y65{bottom:1087.920000px;}
.y24{bottom:1091.160000px;}
.y2{bottom:1107.330000px;}
.y46{bottom:1108.800000px;}
.y23{bottom:1114.560000px;}
.y64{bottom:1118.880000px;}
.y22{bottom:1137.600000px;}
.y45{bottom:1139.760000px;}
.y1{bottom:1141.170000px;}
.ha{height:34.155000px;}
.hc{height:47.988281px;}
.h5{height:50.312812px;}
.h9{height:51.750000px;}
.hd{height:52.453125px;}
.hb{height:52.488281px;}
.h7{height:56.842560px;}
.h8{height:58.635000px;}
.h6{height:64.546875px;}
.h2{height:65.884219px;}
.h3{height:75.093750px;}
.h4{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:892.500000px;}
.w3{width:892.800000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x7{left:177.670512px;}
.x2{left:230.429987px;}
.x4{left:232.949987px;}
.x3{left:376.454987px;}
.x5{left:408.714480px;}
.xa{left:565.912800px;}
.x9{left:620.150040px;}
.x8{left:719.202600px;}
.x6{left:765.239760px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls4{letter-spacing:-0.033280pt;}
.lsc{letter-spacing:-0.012800pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.001280pt;}
.lsf{letter-spacing:0.002560pt;}
.ls11{letter-spacing:0.008960pt;}
.ls10{letter-spacing:0.009856pt;}
.lsa{letter-spacing:0.012800pt;}
.ls6{letter-spacing:0.117504pt;}
.ls5{letter-spacing:0.124416pt;}
.ls0{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.184960pt;}
.ls8{letter-spacing:0.243200pt;}
.ls9{letter-spacing:0.243712pt;}
.lsb{letter-spacing:0.243840pt;}
.ls7{letter-spacing:0.244480pt;}
.ls2{letter-spacing:0.576000pt;}
.lsd{letter-spacing:6.403840pt;}
.ws1{word-spacing:-20.783360pt;}
.ws3{word-spacing:-19.332864pt;}
.ws4{word-spacing:-17.804800pt;}
.ws0{word-spacing:-17.792000pt;}
.ws5{word-spacing:-17.779200pt;}
.ws2{word-spacing:0.000000pt;}
._20{margin-left:-8.254848pt;}
._1c{margin-left:-7.130240pt;}
._15{margin-left:-4.703488pt;}
._8{margin-left:-3.774293pt;}
._3{margin-left:-2.705493pt;}
._0{margin-left:-1.000960pt;}
._2{width:1.427627pt;}
._10{width:2.641493pt;}
._14{width:4.008960pt;}
._12{width:5.184000pt;}
._13{width:6.432000pt;}
._e{width:7.712000pt;}
._f{width:8.821333pt;}
._11{width:10.074880pt;}
._6{width:11.456000pt;}
._7{width:13.239040pt;}
._16{width:14.489600pt;}
._17{width:15.507200pt;}
._18{width:16.883200pt;}
._1b{width:18.860800pt;}
._1d{width:20.147200pt;}
._5{width:21.214293pt;}
._4{width:22.400000pt;}
._19{width:28.876800pt;}
._1a{width:35.814400pt;}
._1e{width:37.651200pt;}
._9{width:57.792000pt;}
._a{width:59.008000pt;}
._b{width:64.311040pt;}
._c{width:65.608960pt;}
._d{width:66.549333pt;}
._1f{width:750.208000pt;}
._1{width:880.557653pt;}
.fs5{font-size:42.240000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:100.160000pt;}
.y61{bottom:102.400000pt;}
.y21{bottom:108.000000pt;}
.y20{bottom:127.680000pt;}
.y60{bottom:129.920000pt;}
.y1f{bottom:147.520000pt;}
.y43{bottom:155.200000pt;}
.y5f{bottom:157.440000pt;}
.y1e{bottom:167.386667pt;}
.y42{bottom:183.040000pt;}
.y5e{bottom:185.280000pt;}
.y1d{bottom:187.226667pt;}
.y1c{bottom:207.066667pt;}
.y41{bottom:210.560000pt;}
.y5d{bottom:212.800000pt;}
.y1b{bottom:226.906667pt;}
.y40{bottom:238.080000pt;}
.y5c{bottom:240.320000pt;}
.y1a{bottom:246.746667pt;}
.y3f{bottom:265.600000pt;}
.y19{bottom:266.746667pt;}
.y5b{bottom:267.840000pt;}
.y18{bottom:286.746667pt;}
.y3e{bottom:293.440000pt;}
.y5a{bottom:295.360000pt;}
.y17{bottom:306.586667pt;}
.y3d{bottom:320.960000pt;}
.y59{bottom:323.200000pt;}
.y16{bottom:326.426667pt;}
.y7b{bottom:331.200000pt;}
.y15{bottom:346.266667pt;}
.y3c{bottom:348.480000pt;}
.y58{bottom:350.720000pt;}
.y7a{bottom:358.720000pt;}
.y14{bottom:375.106667pt;}
.y3b{bottom:376.000000pt;}
.y57{bottom:378.240000pt;}
.y79{bottom:386.560000pt;}
.y13{bottom:400.706667pt;}
.y3a{bottom:403.840000pt;}
.y56{bottom:405.760000pt;}
.y78{bottom:414.080000pt;}
.y12{bottom:431.266667pt;}
.y39{bottom:431.360000pt;}
.y55{bottom:433.600000pt;}
.y77{bottom:441.600000pt;}
.y11{bottom:450.946667pt;}
.y38{bottom:458.880000pt;}
.y54{bottom:461.120000pt;}
.y76{bottom:469.120000pt;}
.y10{bottom:481.666667pt;}
.y37{bottom:486.400000pt;}
.y53{bottom:488.640000pt;}
.y75{bottom:496.960000pt;}
.yf{bottom:512.066667pt;}
.y36{bottom:514.240000pt;}
.y52{bottom:516.160000pt;}
.y74{bottom:524.480000pt;}
.y7d{bottom:528.960000pt;}
.ye{bottom:531.746667pt;}
.y35{bottom:541.760000pt;}
.y51{bottom:544.000000pt;}
.y7c{bottom:547.520000pt;}
.yd{bottom:551.746667pt;}
.y73{bottom:552.000000pt;}
.y34{bottom:569.280000pt;}
.y50{bottom:571.520000pt;}
.y72{bottom:579.520000pt;}
.yc{bottom:582.306667pt;}
.y33{bottom:596.800000pt;}
.y4f{bottom:599.040000pt;}
.y71{bottom:607.360000pt;}
.yb{bottom:611.453333pt;}
.y32{bottom:624.640000pt;}
.y4e{bottom:626.560000pt;}
.y70{bottom:634.880000pt;}
.ya{bottom:637.693333pt;}
.y31{bottom:652.160000pt;}
.y4d{bottom:654.400000pt;}
.y6f{bottom:662.400000pt;}
.y9{bottom:670.653333pt;}
.y30{bottom:679.680000pt;}
.y4c{bottom:681.920000pt;}
.y6e{bottom:689.920000pt;}
.y8{bottom:701.213333pt;}
.y2f{bottom:707.200000pt;}
.y4b{bottom:709.440000pt;}
.y6d{bottom:717.760000pt;}
.y2e{bottom:725.760000pt;}
.y63{bottom:728.000000pt;}
.y7{bottom:731.613333pt;}
.y4a{bottom:736.960000pt;}
.y2d{bottom:745.280000pt;}
.y62{bottom:746.240000pt;}
.y6{bottom:762.173333pt;}
.y2c{bottom:764.800000pt;}
.y6c{bottom:773.120000pt;}
.y2b{bottom:792.320000pt;}
.y5{bottom:792.733333pt;}
.y6b{bottom:800.960000pt;}
.y2a{bottom:819.840000pt;}
.y4{bottom:823.333333pt;}
.y6a{bottom:828.800000pt;}
.y49{bottom:847.360000pt;}
.y29{bottom:847.680000pt;}
.y3{bottom:850.213333pt;}
.y69{bottom:856.640000pt;}
.y48{bottom:875.200000pt;}
.y28{bottom:880.640000pt;}
.y68{bottom:884.160000pt;}
.y27{bottom:902.720000pt;}
.y67{bottom:912.000000pt;}
.y26{bottom:930.240000pt;}
.y66{bottom:939.520000pt;}
.y25{bottom:949.120000pt;}
.y47{bottom:957.760000pt;}
.y65{bottom:967.040000pt;}
.y24{bottom:969.920000pt;}
.y2{bottom:984.293333pt;}
.y46{bottom:985.600000pt;}
.y23{bottom:990.720000pt;}
.y64{bottom:994.560000pt;}
.y22{bottom:1011.200000pt;}
.y45{bottom:1013.120000pt;}
.y1{bottom:1014.373333pt;}
.ha{height:30.360000pt;}
.hc{height:42.656250pt;}
.h5{height:44.722500pt;}
.h9{height:46.000000pt;}
.hd{height:46.625000pt;}
.hb{height:46.656250pt;}
.h7{height:50.526720pt;}
.h8{height:52.120000pt;}
.h6{height:57.375000pt;}
.h2{height:58.563750pt;}
.h3{height:66.750000pt;}
.h4{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:793.333333pt;}
.w3{width:793.600000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x7{left:157.929344pt;}
.x2{left:204.826655pt;}
.x4{left:207.066655pt;}
.x3{left:334.626655pt;}
.x5{left:363.301760pt;}
.xa{left:503.033600pt;}
.x9{left:551.244480pt;}
.x8{left:639.291200pt;}
.x6{left:680.213120pt;}
}

