
    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_aba208629dc8619ff4ac6079.woff')format("woff");}.ff1{font-family:ff1;line-height:0.711000;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_86eb953a7e88d87ee88fe5db.woff')format("woff");}.ff2{font-family:ff2;line-height:1.079102;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_7985fccea5375fa33f9c8888.woff')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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_9f96c54c4a281d3ae2e7619b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_75162b3a17199e1bd1567be8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.079102;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_59caba187e42b8a9ec38ad91.woff')format("woff");}.ff6{font-family:ff6;line-height:1.079102;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_c58d87fe5ec6cf2e2e9ac261.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_70e44b7c109ea0384f5ba512.woff')format("woff");}.ff8{font-family:ff8;line-height:1.088867;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_d806d4872ca04f4dacc357ba.woff')format("woff");}.ff9{font-family:ff9;line-height:0.943848;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;}
.ls2{letter-spacing:-11.272530px;}
.ls3{letter-spacing:-0.528000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.240000px;}
.ls4{letter-spacing:2.970000px;}
.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;}
}
.ws21{word-spacing:-15.012000px;}
.ws29{word-spacing:-5.040000px;}
.ws28{word-spacing:-3.510000px;}
.ws26{word-spacing:-2.970000px;}
.ws1c{word-spacing:-2.820000px;}
.ws2{word-spacing:-1.665000px;}
.ws4{word-spacing:-0.858000px;}
.ws20{word-spacing:-0.720000px;}
.ws6{word-spacing:-0.540000px;}
.ws1e{word-spacing:-0.300000px;}
.ws10{word-spacing:-0.240000px;}
.ws0{word-spacing:0.000000px;}
.ws1b{word-spacing:0.240000px;}
.ws3{word-spacing:0.528000px;}
.ws8{word-spacing:0.600000px;}
.wsb{word-spacing:1.020000px;}
.ws19{word-spacing:1.200000px;}
.ws2a{word-spacing:1.320000px;}
.ws22{word-spacing:1.350000px;}
.wsf{word-spacing:1.860000px;}
.ws2b{word-spacing:1.920000px;}
.ws2d{word-spacing:2.280000px;}
.ws5{word-spacing:2.640000px;}
.ws15{word-spacing:2.700000px;}
.ws1a{word-spacing:3.540000px;}
.ws16{word-spacing:5.100000px;}
.ws2c{word-spacing:5.940000px;}
.wsc{word-spacing:6.420000px;}
.wsa{word-spacing:6.900000px;}
.ws18{word-spacing:6.960000px;}
.ws32{word-spacing:7.398000px;}
.ws1f{word-spacing:7.500000px;}
.ws7{word-spacing:7.860000px;}
.ws25{word-spacing:8.262000px;}
.wse{word-spacing:8.340000px;}
.ws2e{word-spacing:8.940000px;}
.ws23{word-spacing:9.072000px;}
.ws11{word-spacing:9.480000px;}
.wsd{word-spacing:9.720000px;}
.ws1d{word-spacing:9.780000px;}
.ws14{word-spacing:10.440000px;}
.ws1{word-spacing:11.272530px;}
.ws12{word-spacing:11.820000px;}
.ws2f{word-spacing:11.940000px;}
.ws31{word-spacing:13.554000px;}
.ws24{word-spacing:15.822000px;}
.ws13{word-spacing:16.080000px;}
.ws9{word-spacing:18.600000px;}
.ws17{word-spacing:18.780000px;}
.ws30{word-spacing:22.842000px;}
.ws27{word-spacing:30.888000px;}
._1{margin-left:-6462.837600px;}
._4{margin-left:-7.161000px;}
._2{margin-left:-5.626800px;}
._6{margin-left:-4.092000px;}
._0{margin-left:-2.493000px;}
._5{margin-left:-1.443600px;}
._3{width:1.285200px;}
._7{width:2.700000px;}
._d{width:4.314000px;}
._b{width:5.400000px;}
._c{width:6.612000px;}
._a{width:7.806000px;}
._8{width:8.940000px;}
._9{width:10.560000px;}
._f{width:11.877600px;}
._10{width:13.004400px;}
._11{width:14.718000px;}
._14{width:16.632000px;}
._e{width:19.482000px;}
._17{width:20.644200px;}
._16{width:21.789000px;}
._13{width:22.852800px;}
._15{width:24.856200px;}
._12{width:34.128000px;}
.fc4{color:rgb(128,130,133);}
.fc3{color:rgb(88,89,91);}
.fc1{color:rgb(180,200,94);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs6{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.fs1{font-size:225.450600px;}
.y0{bottom:0.000000px;}
.y4{bottom:38.424600px;}
.y1{bottom:91.040100px;}
.y29{bottom:130.216500px;}
.y46{bottom:131.462700px;}
.y45{bottom:146.461200px;}
.y28{bottom:149.716500px;}
.y44{bottom:161.459700px;}
.y27{bottom:169.216500px;}
.y43{bottom:176.458200px;}
.y2b{bottom:188.716500px;}
.y42{bottom:191.456700px;}
.y26{bottom:208.216500px;}
.y25{bottom:227.716500px;}
.y24{bottom:247.216500px;}
.y23{bottom:266.716500px;}
.y22{bottom:286.216500px;}
.y21{bottom:305.716500px;}
.y41{bottom:308.894700px;}
.y40{bottom:323.893200px;}
.y20{bottom:325.216500px;}
.y3f{bottom:338.891700px;}
.y1f{bottom:344.716500px;}
.y3e{bottom:353.890200px;}
.y1e{bottom:364.216500px;}
.y3d{bottom:377.393700px;}
.y1d{bottom:383.716500px;}
.y3c{bottom:392.392200px;}
.y1c{bottom:403.216500px;}
.y3b{bottom:407.390700px;}
.y3a{bottom:422.389200px;}
.y2a{bottom:422.716500px;}
.y1b{bottom:442.216500px;}
.y39{bottom:445.892700px;}
.y38{bottom:460.891200px;}
.y1a{bottom:461.716500px;}
.y37{bottom:475.889700px;}
.y19{bottom:481.216500px;}
.y36{bottom:490.888200px;}
.y18{bottom:500.716500px;}
.y35{bottom:505.886700px;}
.y17{bottom:520.216500px;}
.y34{bottom:529.390200px;}
.y16{bottom:539.716500px;}
.y33{bottom:544.388700px;}
.y15{bottom:559.216500px;}
.y32{bottom:559.387200px;}
.y31{bottom:574.385700px;}
.y14{bottom:578.716500px;}
.y30{bottom:597.889200px;}
.y13{bottom:598.216500px;}
.y2f{bottom:612.887700px;}
.y12{bottom:617.716500px;}
.y2e{bottom:627.886200px;}
.y11{bottom:637.216500px;}
.y2d{bottom:642.884700px;}
.y10{bottom:656.716500px;}
.y2c{bottom:666.388200px;}
.y49{bottom:709.516500px;}
.y48{bottom:722.116500px;}
.yf{bottom:729.736200px;}
.y47{bottom:734.716500px;}
.ye{bottom:757.746150px;}
.yd{bottom:777.240150px;}
.yc{bottom:805.243950px;}
.yb{bottom:825.043950px;}
.ya{bottom:844.843950px;}
.y9{bottom:864.643950px;}
.y8{bottom:884.443950px;}
.y7{bottom:904.243950px;}
.y6{bottom:958.062750px;}
.y5{bottom:988.059750px;}
.y3{bottom:1096.944750px;}
.y2{bottom:1098.845100px;}
.hc{height:36.421875px;}
.h5{height:40.056152px;}
.h9{height:44.226562px;}
.h8{height:46.828125px;}
.h2{height:50.400000px;}
.ha{height:52.031250px;}
.hb{height:53.408203px;}
.h7{height:57.234375px;}
.h3{height:62.437500px;}
.h6{height:93.656250px;}
.h4{height:157.815420px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:26.908050px;}
.x5{left:42.519750px;}
.x8{left:85.039350px;}
.x3{left:119.990550px;}
.x2{left:192.048600px;}
.x4{left:305.194500px;}
.x6{left:434.769750px;}
.x9{left:477.283350px;}
.x1{left:847.537950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-10.020027pt;}
.ls3{letter-spacing:-0.469333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.213333pt;}
.ls4{letter-spacing:2.640000pt;}
.ws21{word-spacing:-13.344000pt;}
.ws29{word-spacing:-4.480000pt;}
.ws28{word-spacing:-3.120000pt;}
.ws26{word-spacing:-2.640000pt;}
.ws1c{word-spacing:-2.506667pt;}
.ws2{word-spacing:-1.480000pt;}
.ws4{word-spacing:-0.762667pt;}
.ws20{word-spacing:-0.640000pt;}
.ws6{word-spacing:-0.480000pt;}
.ws1e{word-spacing:-0.266667pt;}
.ws10{word-spacing:-0.213333pt;}
.ws0{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.213333pt;}
.ws3{word-spacing:0.469333pt;}
.ws8{word-spacing:0.533333pt;}
.wsb{word-spacing:0.906667pt;}
.ws19{word-spacing:1.066667pt;}
.ws2a{word-spacing:1.173333pt;}
.ws22{word-spacing:1.200000pt;}
.wsf{word-spacing:1.653333pt;}
.ws2b{word-spacing:1.706667pt;}
.ws2d{word-spacing:2.026667pt;}
.ws5{word-spacing:2.346667pt;}
.ws15{word-spacing:2.400000pt;}
.ws1a{word-spacing:3.146667pt;}
.ws16{word-spacing:4.533333pt;}
.ws2c{word-spacing:5.280000pt;}
.wsc{word-spacing:5.706667pt;}
.wsa{word-spacing:6.133333pt;}
.ws18{word-spacing:6.186667pt;}
.ws32{word-spacing:6.576000pt;}
.ws1f{word-spacing:6.666667pt;}
.ws7{word-spacing:6.986667pt;}
.ws25{word-spacing:7.344000pt;}
.wse{word-spacing:7.413333pt;}
.ws2e{word-spacing:7.946667pt;}
.ws23{word-spacing:8.064000pt;}
.ws11{word-spacing:8.426667pt;}
.wsd{word-spacing:8.640000pt;}
.ws1d{word-spacing:8.693333pt;}
.ws14{word-spacing:9.280000pt;}
.ws1{word-spacing:10.020027pt;}
.ws12{word-spacing:10.506667pt;}
.ws2f{word-spacing:10.613333pt;}
.ws31{word-spacing:12.048000pt;}
.ws24{word-spacing:14.064000pt;}
.ws13{word-spacing:14.293333pt;}
.ws9{word-spacing:16.533333pt;}
.ws17{word-spacing:16.693333pt;}
.ws30{word-spacing:20.304000pt;}
.ws27{word-spacing:27.456000pt;}
._1{margin-left:-5744.744533pt;}
._4{margin-left:-6.365333pt;}
._2{margin-left:-5.001600pt;}
._6{margin-left:-3.637333pt;}
._0{margin-left:-2.216000pt;}
._5{margin-left:-1.283200pt;}
._3{width:1.142400pt;}
._7{width:2.400000pt;}
._d{width:3.834667pt;}
._b{width:4.800000pt;}
._c{width:5.877333pt;}
._a{width:6.938667pt;}
._8{width:7.946667pt;}
._9{width:9.386667pt;}
._f{width:10.557867pt;}
._10{width:11.559467pt;}
._11{width:13.082667pt;}
._14{width:14.784000pt;}
._e{width:17.317333pt;}
._17{width:18.350400pt;}
._16{width:19.368000pt;}
._13{width:20.313600pt;}
._15{width:22.094400pt;}
._12{width:30.336000pt;}
.fs8{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs6{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.fs1{font-size:200.400533pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:34.155200pt;}
.y1{bottom:80.924533pt;}
.y29{bottom:115.748000pt;}
.y46{bottom:116.855733pt;}
.y45{bottom:130.187733pt;}
.y28{bottom:133.081333pt;}
.y44{bottom:143.519733pt;}
.y27{bottom:150.414667pt;}
.y43{bottom:156.851733pt;}
.y2b{bottom:167.748000pt;}
.y42{bottom:170.183733pt;}
.y26{bottom:185.081333pt;}
.y25{bottom:202.414667pt;}
.y24{bottom:219.748000pt;}
.y23{bottom:237.081333pt;}
.y22{bottom:254.414667pt;}
.y21{bottom:271.748000pt;}
.y41{bottom:274.573067pt;}
.y40{bottom:287.905067pt;}
.y20{bottom:289.081333pt;}
.y3f{bottom:301.237067pt;}
.y1f{bottom:306.414667pt;}
.y3e{bottom:314.569067pt;}
.y1e{bottom:323.748000pt;}
.y3d{bottom:335.461067pt;}
.y1d{bottom:341.081333pt;}
.y3c{bottom:348.793067pt;}
.y1c{bottom:358.414667pt;}
.y3b{bottom:362.125067pt;}
.y3a{bottom:375.457067pt;}
.y2a{bottom:375.748000pt;}
.y1b{bottom:393.081333pt;}
.y39{bottom:396.349067pt;}
.y38{bottom:409.681067pt;}
.y1a{bottom:410.414667pt;}
.y37{bottom:423.013067pt;}
.y19{bottom:427.748000pt;}
.y36{bottom:436.345067pt;}
.y18{bottom:445.081333pt;}
.y35{bottom:449.677067pt;}
.y17{bottom:462.414667pt;}
.y34{bottom:470.569067pt;}
.y16{bottom:479.748000pt;}
.y33{bottom:483.901067pt;}
.y15{bottom:497.081333pt;}
.y32{bottom:497.233067pt;}
.y31{bottom:510.565067pt;}
.y14{bottom:514.414667pt;}
.y30{bottom:531.457067pt;}
.y13{bottom:531.748000pt;}
.y2f{bottom:544.789067pt;}
.y12{bottom:549.081333pt;}
.y2e{bottom:558.121067pt;}
.y11{bottom:566.414667pt;}
.y2d{bottom:571.453067pt;}
.y10{bottom:583.748000pt;}
.y2c{bottom:592.345067pt;}
.y49{bottom:630.681333pt;}
.y48{bottom:641.881333pt;}
.yf{bottom:648.654400pt;}
.y47{bottom:653.081333pt;}
.ye{bottom:673.552133pt;}
.yd{bottom:690.880133pt;}
.yc{bottom:715.772400pt;}
.yb{bottom:733.372400pt;}
.ya{bottom:750.972400pt;}
.y9{bottom:768.572400pt;}
.y8{bottom:786.172400pt;}
.y7{bottom:803.772400pt;}
.y6{bottom:851.611333pt;}
.y5{bottom:878.275333pt;}
.y3{bottom:975.062000pt;}
.y2{bottom:976.751200pt;}
.hc{height:32.375000pt;}
.h5{height:35.605469pt;}
.h9{height:39.312500pt;}
.h8{height:41.625000pt;}
.h2{height:44.800000pt;}
.ha{height:46.250000pt;}
.hb{height:47.473958pt;}
.h7{height:50.875000pt;}
.h3{height:55.500000pt;}
.h6{height:83.250000pt;}
.h4{height:140.280373pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:23.918267pt;}
.x5{left:37.795333pt;}
.x8{left:75.590533pt;}
.x3{left:106.658267pt;}
.x2{left:170.709867pt;}
.x4{left:271.284000pt;}
.x6{left:386.462000pt;}
.x9{left:424.251867pt;}
.x1{left:753.367067pt;}
}

