
    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_6986e057112ef4a7ad8e06ec.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_2da5766e2bf7ad3f7c3ac08c.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_e0b218a737d08b7cf0f5b297.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_4393254eea77f550cdb9fb33.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_86613e02f5ea80b13c8464bf.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9ebc1389b49b77239dc10b32.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_da2d3e1cd33abda72406e2aa.woff')format("woff");}.ff7{font-family:ff7;line-height:1.110352;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);}
.v4{vertical-align:-97.920000px;}
.v2{vertical-align:-96.480000px;}
.v7{vertical-align:-91.440000px;}
.v6{vertical-align:-79.200000px;}
.v5{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:38.880000px;}
.v1{vertical-align:54.000000px;}
.ls6{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.369600px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.009360px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.252720px;}
.ls1{letter-spacing:0.900000px;}
.lse{letter-spacing:74.700000px;}
.ls9{letter-spacing:191.316000px;}
.lsd{letter-spacing:194.916000px;}
.lsf{letter-spacing:201.036000px;}
.ls0{letter-spacing:288.516000px;}
.ls8{letter-spacing:1282.776000px;}
.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;}
}
.ws7{word-spacing:-21.312720px;}
.ws3{word-spacing:-21.060000px;}
.ws8{word-spacing:-21.050640px;}
.ws0{word-spacing:-19.440000px;}
.ws1{word-spacing:-13.140000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.700000px;}
.ws6{word-spacing:0.000000px;}
._12{margin-left:-12.804000px;}
._f{margin-left:-2.179680px;}
._0{margin-left:-1.080000px;}
._1{width:1.248000px;}
._1b{width:2.288400px;}
._9{width:3.316080px;}
._d{width:4.939440px;}
._15{width:6.076080px;}
._a{width:7.160400px;}
._b{width:9.121680px;}
._1c{width:10.216320px;}
._e{width:11.269920px;}
._10{width:13.129920px;}
._11{width:14.320800px;}
._13{width:15.494400px;}
._14{width:16.877280px;}
._1a{width:18.078720px;}
._1d{width:19.492320px;}
._16{width:22.155120px;}
._17{width:23.590320px;}
._23{width:24.850800px;}
._8{width:25.945920px;}
._6{width:27.025920px;}
._7{width:28.122240px;}
._20{width:29.978880px;}
._26{width:31.168800px;}
._1f{width:32.263920px;}
._22{width:33.313440px;}
._18{width:38.497680px;}
._19{width:39.552000px;}
._24{width:40.812960px;}
._21{width:42.878160px;}
._1e{width:50.628240px;}
._4{width:68.940000px;}
._27{width:87.304320px;}
._2{width:142.176000px;}
._3{width:182.340000px;}
._5{width:188.460000px;}
._25{width:191.316000px;}
._c{width:1087.128720px;}
.fc4{color:rgb(128,0,128);}
.fc5{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);}
.fs8{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fsa{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.fs9{font-size:378.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:6.300000px;}
.y5e{bottom:67.140000px;}
.y2{bottom:68.040000px;}
.y2e{bottom:87.840000px;}
.y1{bottom:88.740000px;}
.y57{bottom:131.040000px;}
.y2b{bottom:131.760000px;}
.y5c{bottom:147.060000px;}
.y56{bottom:149.040000px;}
.y2a{bottom:152.460000px;}
.y5b{bottom:171.180000px;}
.y29{bottom:173.160000px;}
.y55{bottom:178.020000px;}
.y54{bottom:189.720000px;}
.y5a{bottom:195.300000px;}
.y28{bottom:202.140000px;}
.y27{bottom:214.590000px;}
.y59{bottom:219.450000px;}
.y26{bottom:235.290000px;}
.y53{bottom:243.570000px;}
.y25{bottom:255.990000px;}
.y52{bottom:267.870000px;}
.y24{bottom:276.690000px;}
.y51{bottom:291.990000px;}
.y23{bottom:305.670000px;}
.y50{bottom:316.110000px;}
.y22{bottom:317.370000px;}
.y21{bottom:336.810000px;}
.y4f{bottom:340.230000px;}
.y63{bottom:352.290000px;}
.y20{bottom:360.930000px;}
.y4e{bottom:364.350000px;}
.y62{bottom:376.410000px;}
.y1f{bottom:385.050000px;}
.y4d{bottom:388.470000px;}
.y1e{bottom:409.350000px;}
.y4c{bottom:412.770000px;}
.y61{bottom:423.390000px;}
.y1d{bottom:433.470000px;}
.y4b{bottom:436.890000px;}
.y60{bottom:441.975000px;}
.y1c{bottom:457.635000px;}
.y4a{bottom:461.055000px;}
.y5f{bottom:465.195000px;}
.y1b{bottom:481.755000px;}
.y49{bottom:485.175000px;}
.y1a{bottom:505.875000px;}
.y48{bottom:509.295000px;}
.y19{bottom:529.995000px;}
.y47{bottom:533.415000px;}
.y18{bottom:554.295000px;}
.y46{bottom:557.535000px;}
.y17{bottom:578.415000px;}
.y45{bottom:581.835000px;}
.y16{bottom:602.535000px;}
.y44{bottom:605.955000px;}
.y43{bottom:630.075000px;}
.y15{bottom:650.775000px;}
.y42{bottom:654.195000px;}
.y14{bottom:674.895000px;}
.y41{bottom:678.345000px;}
.y13{bottom:699.225000px;}
.y40{bottom:702.465000px;}
.y12{bottom:723.345000px;}
.y3f{bottom:726.765000px;}
.y11{bottom:747.465000px;}
.y3e{bottom:750.885000px;}
.y2c{bottom:766.545000px;}
.y10{bottom:771.585000px;}
.y3d{bottom:775.005000px;}
.yf{bottom:795.705000px;}
.y3c{bottom:799.125000px;}
.ye{bottom:819.825000px;}
.y3b{bottom:823.245000px;}
.yd{bottom:843.585000px;}
.y3a{bottom:847.365000px;}
.yc{bottom:867.885000px;}
.y39{bottom:871.485000px;}
.yb{bottom:892.005000px;}
.y38{bottom:895.785000px;}
.ya{bottom:916.530000px;}
.y37{bottom:919.950000px;}
.y36{bottom:944.070000px;}
.y9{bottom:964.770000px;}
.y35{bottom:968.190000px;}
.y8{bottom:983.850000px;}
.y58{bottom:992.310000px;}
.y7{bottom:1014.630000px;}
.y34{bottom:1016.430000px;}
.y33{bottom:1040.730000px;}
.y6{bottom:1049.010000px;}
.y32{bottom:1064.850000px;}
.y5{bottom:1077.090000px;}
.y31{bottom:1088.970000px;}
.y4{bottom:1107.690000px;}
.y30{bottom:1113.090000px;}
.y3{bottom:1132.170000px;}
.y2f{bottom:1137.210000px;}
.y5d{bottom:1249.200000px;}
.hb{height:47.344922px;}
.h10{height:58.490859px;}
.ha{height:58.651172px;}
.he{height:70.628906px;}
.h3{height:70.664062px;}
.hc{height:72.360000px;}
.h2{height:72.562500px;}
.hf{height:75.519844px;}
.h6{height:82.312734px;}
.h11{height:82.635820px;}
.h4{height:82.676953px;}
.h9{height:84.898125px;}
.h8{height:91.878047px;}
.h5{height:105.996094px;}
.h7{height:107.232188px;}
.hd{height:370.986328px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:57.780000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:128.556000px;}
.x4{left:141.156000px;}
.x8{left:180.750000px;}
.x7{left:185.430000px;}
.x5{left:476.385000px;}
.x6{left:594.330000px;}
.x3{left:690.450000px;}
.x2{left:802.800000px;}
@media print{
.v4{vertical-align:-87.040000pt;}
.v2{vertical-align:-85.760000pt;}
.v7{vertical-align:-81.280000pt;}
.v6{vertical-align:-70.400000pt;}
.v5{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:34.560000pt;}
.v1{vertical-align:48.000000pt;}
.ls6{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.328533pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.008320pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.224640pt;}
.ls1{letter-spacing:0.800000pt;}
.lse{letter-spacing:66.400000pt;}
.ls9{letter-spacing:170.058667pt;}
.lsd{letter-spacing:173.258667pt;}
.lsf{letter-spacing:178.698667pt;}
.ls0{letter-spacing:256.458667pt;}
.ls8{letter-spacing:1140.245333pt;}
.ws7{word-spacing:-18.944640pt;}
.ws3{word-spacing:-18.720000pt;}
.ws8{word-spacing:-18.711680pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-11.680000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.400000pt;}
.ws6{word-spacing:0.000000pt;}
._12{margin-left:-11.381333pt;}
._f{margin-left:-1.937493pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.109333pt;}
._1b{width:2.034133pt;}
._9{width:2.947627pt;}
._d{width:4.390613pt;}
._15{width:5.400960pt;}
._a{width:6.364800pt;}
._b{width:8.108160pt;}
._1c{width:9.081173pt;}
._e{width:10.017707pt;}
._10{width:11.671040pt;}
._11{width:12.729600pt;}
._13{width:13.772800pt;}
._14{width:15.002027pt;}
._1a{width:16.069973pt;}
._1d{width:17.326507pt;}
._16{width:19.693440pt;}
._17{width:20.969173pt;}
._23{width:22.089600pt;}
._8{width:23.063040pt;}
._6{width:24.023040pt;}
._7{width:24.997547pt;}
._20{width:26.647893pt;}
._26{width:27.705600pt;}
._1f{width:28.679040pt;}
._22{width:29.611947pt;}
._18{width:34.220160pt;}
._19{width:35.157333pt;}
._24{width:36.278187pt;}
._21{width:38.113920pt;}
._1e{width:45.002880pt;}
._4{width:61.280000pt;}
._27{width:77.603840pt;}
._2{width:126.378667pt;}
._3{width:162.080000pt;}
._5{width:167.520000pt;}
._25{width:170.058667pt;}
._c{width:966.336640pt;}
.fs8{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fsa{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.fs9{font-size:336.000000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:5.600000pt;}
.y5e{bottom:59.680000pt;}
.y2{bottom:60.480000pt;}
.y2e{bottom:78.080000pt;}
.y1{bottom:78.880000pt;}
.y57{bottom:116.480000pt;}
.y2b{bottom:117.120000pt;}
.y5c{bottom:130.720000pt;}
.y56{bottom:132.480000pt;}
.y2a{bottom:135.520000pt;}
.y5b{bottom:152.160000pt;}
.y29{bottom:153.920000pt;}
.y55{bottom:158.240000pt;}
.y54{bottom:168.640000pt;}
.y5a{bottom:173.600000pt;}
.y28{bottom:179.680000pt;}
.y27{bottom:190.746667pt;}
.y59{bottom:195.066667pt;}
.y26{bottom:209.146667pt;}
.y53{bottom:216.506667pt;}
.y25{bottom:227.546667pt;}
.y52{bottom:238.106667pt;}
.y24{bottom:245.946667pt;}
.y51{bottom:259.546667pt;}
.y23{bottom:271.706667pt;}
.y50{bottom:280.986667pt;}
.y22{bottom:282.106667pt;}
.y21{bottom:299.386667pt;}
.y4f{bottom:302.426667pt;}
.y63{bottom:313.146667pt;}
.y20{bottom:320.826667pt;}
.y4e{bottom:323.866667pt;}
.y62{bottom:334.586667pt;}
.y1f{bottom:342.266667pt;}
.y4d{bottom:345.306667pt;}
.y1e{bottom:363.866667pt;}
.y4c{bottom:366.906667pt;}
.y61{bottom:376.346667pt;}
.y1d{bottom:385.306667pt;}
.y4b{bottom:388.346667pt;}
.y60{bottom:392.866667pt;}
.y1c{bottom:406.786667pt;}
.y4a{bottom:409.826667pt;}
.y5f{bottom:413.506667pt;}
.y1b{bottom:428.226667pt;}
.y49{bottom:431.266667pt;}
.y1a{bottom:449.666667pt;}
.y48{bottom:452.706667pt;}
.y19{bottom:471.106667pt;}
.y47{bottom:474.146667pt;}
.y18{bottom:492.706667pt;}
.y46{bottom:495.586667pt;}
.y17{bottom:514.146667pt;}
.y45{bottom:517.186667pt;}
.y16{bottom:535.586667pt;}
.y44{bottom:538.626667pt;}
.y43{bottom:560.066667pt;}
.y15{bottom:578.466667pt;}
.y42{bottom:581.506667pt;}
.y14{bottom:599.906667pt;}
.y41{bottom:602.973333pt;}
.y13{bottom:621.533333pt;}
.y40{bottom:624.413333pt;}
.y12{bottom:642.973333pt;}
.y3f{bottom:646.013333pt;}
.y11{bottom:664.413333pt;}
.y3e{bottom:667.453333pt;}
.y2c{bottom:681.373333pt;}
.y10{bottom:685.853333pt;}
.y3d{bottom:688.893333pt;}
.yf{bottom:707.293333pt;}
.y3c{bottom:710.333333pt;}
.ye{bottom:728.733333pt;}
.y3b{bottom:731.773333pt;}
.yd{bottom:749.853333pt;}
.y3a{bottom:753.213333pt;}
.yc{bottom:771.453333pt;}
.y39{bottom:774.653333pt;}
.yb{bottom:792.893333pt;}
.y38{bottom:796.253333pt;}
.ya{bottom:814.693333pt;}
.y37{bottom:817.733333pt;}
.y36{bottom:839.173333pt;}
.y9{bottom:857.573333pt;}
.y35{bottom:860.613333pt;}
.y8{bottom:874.533333pt;}
.y58{bottom:882.053333pt;}
.y7{bottom:901.893333pt;}
.y34{bottom:903.493333pt;}
.y33{bottom:925.093333pt;}
.y6{bottom:932.453333pt;}
.y32{bottom:946.533333pt;}
.y5{bottom:957.413333pt;}
.y31{bottom:967.973333pt;}
.y4{bottom:984.613333pt;}
.y30{bottom:989.413333pt;}
.y3{bottom:1006.373333pt;}
.y2f{bottom:1010.853333pt;}
.y5d{bottom:1110.400000pt;}
.hb{height:42.084375pt;}
.h10{height:51.991875pt;}
.ha{height:52.134375pt;}
.he{height:62.781250pt;}
.h3{height:62.812500pt;}
.hc{height:64.320000pt;}
.h2{height:64.500000pt;}
.hf{height:67.128750pt;}
.h6{height:73.166875pt;}
.h11{height:73.454062pt;}
.h4{height:73.490625pt;}
.h9{height:75.465000pt;}
.h8{height:81.669375pt;}
.h5{height:94.218750pt;}
.h7{height:95.317500pt;}
.hd{height:329.765625pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:51.360000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:114.272000pt;}
.x4{left:125.472000pt;}
.x8{left:160.666667pt;}
.x7{left:164.826667pt;}
.x5{left:423.453333pt;}
.x6{left:528.293333pt;}
.x3{left:613.733333pt;}
.x2{left:713.600000pt;}
}

