
    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_8eedafb7eaec293803559173.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_a41fc7be8f84c0468ca73584.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_503d3c764a260dbbc57e2de2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.937988;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_be62a4511fb350b6d1743947.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_cc82d8db4a29e2e24b090ff3.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f5af7d7b61f02d89f828187c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_37c91d4b7b7516848ddce0be.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c1bcd2c8bedf5c29c581cb52.woff')format("woff");}.ff8{font-family:ff8;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);}
.v2{vertical-align:-109.620000px;}
.v1{vertical-align:-96.480000px;}
.v3{vertical-align:-95.040000px;}
.v4{vertical-align:-90.720000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.900000px;}
.ls7{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.180000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.180000px;}
.ls9{letter-spacing:18.000000px;}
.lsc{letter-spacing:74.700000px;}
.ls0{letter-spacing:161.796000px;}
.ls1{letter-spacing:188.436000px;}
.ls4{letter-spacing:191.316000px;}
.lsb{letter-spacing:194.916000px;}
.lsd{letter-spacing:201.036000px;}
.ls3{letter-spacing:211.476000px;}
.ls2{letter-spacing:1890.996000px;}
.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:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.560000px;}
.ws3{word-spacing:0.000000px;}
._19{margin-left:-2.100000px;}
._0{margin-left:-1.080000px;}
._1{width:1.248000px;}
._4{width:2.611440px;}
._10{width:3.959280px;}
._6{width:5.122800px;}
._5{width:6.739200px;}
._a{width:7.750080px;}
._b{width:8.945040px;}
._8{width:10.277280px;}
._12{width:11.962080px;}
._11{width:12.972960px;}
._13{width:14.489280px;}
._14{width:15.584400px;}
._9{width:17.100000px;}
._7{width:18.817920px;}
._1d{width:19.974480px;}
._15{width:22.070880px;}
._16{width:23.319360px;}
._1b{width:24.324000px;}
._18{width:25.848000px;}
._17{width:26.928000px;}
._1a{width:28.810080px;}
._c{width:29.905200px;}
._d{width:31.268640px;}
._1c{width:32.351760px;}
._f{width:33.527520px;}
._23{width:38.497680px;}
._1e{width:40.182480px;}
._e{width:42.104880px;}
._21{width:45.910800px;}
._22{width:47.005920px;}
._1f{width:56.356560px;}
._20{width:57.460320px;}
._2{width:68.760000px;}
._24{width:87.144960px;}
._3{width:188.640000px;}
._25{width:191.460000px;}
.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:38.880000px;}
.fsa{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.fs9{font-size:380.880000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:6.300000px;}
.y2e{bottom:67.140000px;}
.y2{bottom:67.860000px;}
.y1{bottom:88.560000px;}
.y2a{bottom:131.616000px;}
.y68{bottom:138.456000px;}
.y6d{bottom:147.096000px;}
.y6e{bottom:151.590000px;}
.y29{bottom:152.310000px;}
.y28{bottom:157.530000px;}
.y61{bottom:159.150000px;}
.y6c{bottom:171.210000px;}
.y27{bottom:172.290000px;}
.y56{bottom:173.010000px;}
.y55{bottom:179.850000px;}
.y26{bottom:190.290000px;}
.y54{bottom:193.710000px;}
.y60{bottom:195.330000px;}
.y67{bottom:200.550000px;}
.y25{bottom:210.990000px;}
.y66{bottom:213.690000px;}
.y53{bottom:214.410000px;}
.y5f{bottom:219.450000px;}
.y24{bottom:231.690000px;}
.y52{bottom:235.110000px;}
.y51{bottom:241.950000px;}
.y5e{bottom:243.570000px;}
.y23{bottom:252.390000px;}
.y50{bottom:255.090000px;}
.y65{bottom:267.870000px;}
.y22{bottom:273.090000px;}
.y5d{bottom:291.630000px;}
.y4f{bottom:291.990000px;}
.y21{bottom:293.070000px;}
.y6b{bottom:299.550000px;}
.y20{bottom:315.390000px;}
.y5c{bottom:316.110000px;}
.y1f{bottom:339.510000px;}
.y4e{bottom:340.230000px;}
.y1e{bottom:363.675000px;}
.y4d{bottom:364.395000px;}
.y1d{bottom:387.795000px;}
.y4c{bottom:388.515000px;}
.y1c{bottom:412.095000px;}
.y4b{bottom:412.815000px;}
.y1b{bottom:436.215000px;}
.y4a{bottom:436.935000px;}
.y1a{bottom:460.335000px;}
.y49{bottom:461.055000px;}
.y64{bottom:468.615000px;}
.y63{bottom:484.815000px;}
.y6a{bottom:485.175000px;}
.y19{bottom:508.575000px;}
.y48{bottom:509.295000px;}
.y18{bottom:532.695000px;}
.y46{bottom:533.415000px;}
.y47{bottom:540.975000px;}
.y17{bottom:556.995000px;}
.y45{bottom:557.535000px;}
.y16{bottom:581.115000px;}
.y44{bottom:581.835000px;}
.y62{bottom:589.395000px;}
.y15{bottom:605.235000px;}
.y43{bottom:605.955000px;}
.y14{bottom:629.385000px;}
.y42{bottom:630.105000px;}
.y69{bottom:637.665000px;}
.y13{bottom:653.505000px;}
.y41{bottom:654.225000px;}
.y12{bottom:677.625000px;}
.y5b{bottom:678.345000px;}
.y10{bottom:701.745000px;}
.y40{bottom:702.105000px;}
.y5a{bottom:702.465000px;}
.y11{bottom:709.305000px;}
.yf{bottom:726.045000px;}
.y3f{bottom:726.765000px;}
.y2b{bottom:745.125000px;}
.ye{bottom:750.165000px;}
.y3e{bottom:750.885000px;}
.yd{bottom:774.285000px;}
.y3d{bottom:775.005000px;}
.y73{bottom:787.065000px;}
.y3b{bottom:799.125000px;}
.y3c{bottom:806.685000px;}
.y72{bottom:811.185000px;}
.yc{bottom:822.525000px;}
.y3a{bottom:823.245000px;}
.yb{bottom:846.645000px;}
.y39{bottom:847.365000px;}
.y71{bottom:857.985000px;}
.y38{bottom:871.485000px;}
.y70{bottom:876.705000px;}
.y59{bottom:895.830000px;}
.ya{bottom:898.530000px;}
.y6f{bottom:899.970000px;}
.y37{bottom:919.950000px;}
.y9{bottom:922.650000px;}
.y36{bottom:944.070000px;}
.y35{bottom:968.190000px;}
.y8{bottom:970.890000px;}
.y7{bottom:990.150000px;}
.y34{bottom:992.310000px;}
.y33{bottom:1016.430000px;}
.y6{bottom:1020.750000px;}
.y32{bottom:1040.730000px;}
.y58{bottom:1048.290000px;}
.y5{bottom:1055.310000px;}
.y57{bottom:1064.850000px;}
.y31{bottom:1088.970000px;}
.y4{bottom:1107.690000px;}
.y30{bottom:1113.090000px;}
.y3{bottom:1132.170000px;}
.y2f{bottom:1137.210000px;}
.y2d{bottom:1249.020000px;}
.hc{height:38.158594px;}
.h11{height:47.344922px;}
.ha{height:52.998047px;}
.hb{height:58.651172px;}
.h9{height:64.208320px;}
.h2{height:70.664062px;}
.hd{height:72.360000px;}
.h3{height:72.562500px;}
.h10{height:75.519844px;}
.h8{height:82.635820px;}
.h4{height:82.676953px;}
.hf{height:84.898125px;}
.h6{height:87.068320px;}
.h7{height:93.936445px;}
.h5{height:105.996094px;}
.he{height:373.812891px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:58.140000px;}
.w1{width:892.500000px;}
.w3{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x7{left:127.655987px;}
.x2{left:129.275987px;}
.xc{left:132.515987px;}
.x11{left:133.775987px;}
.x1e{left:180.749987px;}
.x8{left:185.789987px;}
.xd{left:209.369973px;}
.xe{left:216.209987px;}
.x9{left:236.234973px;}
.xa{left:243.074987px;}
.x6{left:304.814987px;}
.xb{left:343.694987px;}
.xf{left:362.054973px;}
.x10{left:368.894987px;}
.x12{left:380.594973px;}
.x13{left:387.434987px;}
.x5{left:426.884987px;}
.x1{left:452.084987px;}
.x1c{left:496.364973px;}
.x1d{left:503.204987px;}
.x4{left:676.949987px;}
.x1a{left:739.619973px;}
.x1b{left:746.459987px;}
.x18{left:769.319973px;}
.x19{left:776.159987px;}
.x14{left:790.199973px;}
.x16{left:791.819973px;}
.x15{left:797.039987px;}
.x17{left:798.659987px;}
.x3{left:802.799987px;}
@media print{
.v2{vertical-align:-97.440000pt;}
.v1{vertical-align:-85.760000pt;}
.v3{vertical-align:-84.480000pt;}
.v4{vertical-align:-80.640000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.800000pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls9{letter-spacing:16.000000pt;}
.lsc{letter-spacing:66.400000pt;}
.ls0{letter-spacing:143.818667pt;}
.ls1{letter-spacing:167.498667pt;}
.ls4{letter-spacing:170.058667pt;}
.lsb{letter-spacing:173.258667pt;}
.lsd{letter-spacing:178.698667pt;}
.ls3{letter-spacing:187.978667pt;}
.ls2{letter-spacing:1680.885333pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws3{word-spacing:0.000000pt;}
._19{margin-left:-1.866667pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.109333pt;}
._4{width:2.321280pt;}
._10{width:3.519360pt;}
._6{width:4.553600pt;}
._5{width:5.990400pt;}
._a{width:6.888960pt;}
._b{width:7.951147pt;}
._8{width:9.135360pt;}
._12{width:10.632960pt;}
._11{width:11.531520pt;}
._13{width:12.879360pt;}
._14{width:13.852800pt;}
._9{width:15.200000pt;}
._7{width:16.727040pt;}
._1d{width:17.755093pt;}
._15{width:19.618560pt;}
._16{width:20.728320pt;}
._1b{width:21.621333pt;}
._18{width:22.976000pt;}
._17{width:23.936000pt;}
._1a{width:25.608960pt;}
._c{width:26.582400pt;}
._d{width:27.794347pt;}
._1c{width:28.757120pt;}
._f{width:29.802240pt;}
._23{width:34.220160pt;}
._1e{width:35.717760pt;}
._e{width:37.426560pt;}
._21{width:40.809600pt;}
._22{width:41.783040pt;}
._1f{width:50.094720pt;}
._20{width:51.075840pt;}
._2{width:61.120000pt;}
._24{width:77.462187pt;}
._3{width:167.680000pt;}
._25{width:170.186667pt;}
.fs8{font-size:34.560000pt;}
.fsa{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.fs9{font-size:338.560000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:5.600000pt;}
.y2e{bottom:59.680000pt;}
.y2{bottom:60.320000pt;}
.y1{bottom:78.720000pt;}
.y2a{bottom:116.992000pt;}
.y68{bottom:123.072000pt;}
.y6d{bottom:130.752000pt;}
.y6e{bottom:134.746667pt;}
.y29{bottom:135.386667pt;}
.y28{bottom:140.026667pt;}
.y61{bottom:141.466667pt;}
.y6c{bottom:152.186667pt;}
.y27{bottom:153.146667pt;}
.y56{bottom:153.786667pt;}
.y55{bottom:159.866667pt;}
.y26{bottom:169.146667pt;}
.y54{bottom:172.186667pt;}
.y60{bottom:173.626667pt;}
.y67{bottom:178.266667pt;}
.y25{bottom:187.546667pt;}
.y66{bottom:189.946667pt;}
.y53{bottom:190.586667pt;}
.y5f{bottom:195.066667pt;}
.y24{bottom:205.946667pt;}
.y52{bottom:208.986667pt;}
.y51{bottom:215.066667pt;}
.y5e{bottom:216.506667pt;}
.y23{bottom:224.346667pt;}
.y50{bottom:226.746667pt;}
.y65{bottom:238.106667pt;}
.y22{bottom:242.746667pt;}
.y5d{bottom:259.226667pt;}
.y4f{bottom:259.546667pt;}
.y21{bottom:260.506667pt;}
.y6b{bottom:266.266667pt;}
.y20{bottom:280.346667pt;}
.y5c{bottom:280.986667pt;}
.y1f{bottom:301.786667pt;}
.y4e{bottom:302.426667pt;}
.y1e{bottom:323.266667pt;}
.y4d{bottom:323.906667pt;}
.y1d{bottom:344.706667pt;}
.y4c{bottom:345.346667pt;}
.y1c{bottom:366.306667pt;}
.y4b{bottom:366.946667pt;}
.y1b{bottom:387.746667pt;}
.y4a{bottom:388.386667pt;}
.y1a{bottom:409.186667pt;}
.y49{bottom:409.826667pt;}
.y64{bottom:416.546667pt;}
.y63{bottom:430.946667pt;}
.y6a{bottom:431.266667pt;}
.y19{bottom:452.066667pt;}
.y48{bottom:452.706667pt;}
.y18{bottom:473.506667pt;}
.y46{bottom:474.146667pt;}
.y47{bottom:480.866667pt;}
.y17{bottom:495.106667pt;}
.y45{bottom:495.586667pt;}
.y16{bottom:516.546667pt;}
.y44{bottom:517.186667pt;}
.y62{bottom:523.906667pt;}
.y15{bottom:537.986667pt;}
.y43{bottom:538.626667pt;}
.y14{bottom:559.453333pt;}
.y42{bottom:560.093333pt;}
.y69{bottom:566.813333pt;}
.y13{bottom:580.893333pt;}
.y41{bottom:581.533333pt;}
.y12{bottom:602.333333pt;}
.y5b{bottom:602.973333pt;}
.y10{bottom:623.773333pt;}
.y40{bottom:624.093333pt;}
.y5a{bottom:624.413333pt;}
.y11{bottom:630.493333pt;}
.yf{bottom:645.373333pt;}
.y3f{bottom:646.013333pt;}
.y2b{bottom:662.333333pt;}
.ye{bottom:666.813333pt;}
.y3e{bottom:667.453333pt;}
.yd{bottom:688.253333pt;}
.y3d{bottom:688.893333pt;}
.y73{bottom:699.613333pt;}
.y3b{bottom:710.333333pt;}
.y3c{bottom:717.053333pt;}
.y72{bottom:721.053333pt;}
.yc{bottom:731.133333pt;}
.y3a{bottom:731.773333pt;}
.yb{bottom:752.573333pt;}
.y39{bottom:753.213333pt;}
.y71{bottom:762.653333pt;}
.y38{bottom:774.653333pt;}
.y70{bottom:779.293333pt;}
.y59{bottom:796.293333pt;}
.ya{bottom:798.693333pt;}
.y6f{bottom:799.973333pt;}
.y37{bottom:817.733333pt;}
.y9{bottom:820.133333pt;}
.y36{bottom:839.173333pt;}
.y35{bottom:860.613333pt;}
.y8{bottom:863.013333pt;}
.y7{bottom:880.133333pt;}
.y34{bottom:882.053333pt;}
.y33{bottom:903.493333pt;}
.y6{bottom:907.333333pt;}
.y32{bottom:925.093333pt;}
.y58{bottom:931.813333pt;}
.y5{bottom:938.053333pt;}
.y57{bottom:946.533333pt;}
.y31{bottom:967.973333pt;}
.y4{bottom:984.613333pt;}
.y30{bottom:989.413333pt;}
.y3{bottom:1006.373333pt;}
.y2f{bottom:1010.853333pt;}
.y2d{bottom:1110.240000pt;}
.hc{height:33.918750pt;}
.h11{height:42.084375pt;}
.ha{height:47.109375pt;}
.hb{height:52.134375pt;}
.h9{height:57.074062pt;}
.h2{height:62.812500pt;}
.hd{height:64.320000pt;}
.h3{height:64.500000pt;}
.h10{height:67.128750pt;}
.h8{height:73.454062pt;}
.h4{height:73.490625pt;}
.hf{height:75.465000pt;}
.h6{height:77.394062pt;}
.h7{height:83.499062pt;}
.h5{height:94.218750pt;}
.he{height:332.278125pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:51.680000pt;}
.w1{width:793.333333pt;}
.w3{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x7{left:113.471988pt;}
.x2{left:114.911988pt;}
.xc{left:117.791988pt;}
.x11{left:118.911988pt;}
.x1e{left:160.666655pt;}
.x8{left:165.146655pt;}
.xd{left:186.106643pt;}
.xe{left:192.186655pt;}
.x9{left:209.986643pt;}
.xa{left:216.066655pt;}
.x6{left:270.946655pt;}
.xb{left:305.506655pt;}
.xf{left:321.826643pt;}
.x10{left:327.906655pt;}
.x12{left:338.306643pt;}
.x13{left:344.386655pt;}
.x5{left:379.453322pt;}
.x1{left:401.853322pt;}
.x1c{left:441.213310pt;}
.x1d{left:447.293322pt;}
.x4{left:601.733322pt;}
.x1a{left:657.439976pt;}
.x1b{left:663.519988pt;}
.x18{left:683.839976pt;}
.x19{left:689.919988pt;}
.x14{left:702.399976pt;}
.x16{left:703.839976pt;}
.x15{left:708.479988pt;}
.x17{left:709.919988pt;}
.x3{left:713.599988pt;}
}

