
    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_786f2e2ae01187b410226cf3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.402354;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_8538d517d51be333c09a142a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.995117;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_1dfb042b2d6738380f5e1004.woff')format("woff");}.ff3{font-family:ff3;line-height:1.166504;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_72b1c6fd4381a45f29f2ec0f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.128906;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_2b2646efa177c05032e26fff.woff')format("woff");}.ff5{font-family:ff5;line-height:0.973145;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_0870e636123ce83d87bf2160.woff')format("woff");}.ff6{font-family:ff6;line-height:0.968750;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_03e8c84fbac4cf9fb84b97e1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_2c5cd88151700a68fa4b3f3a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.166504;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;}
.ls1{letter-spacing:-0.798000px;}
.ls4{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.078000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.295800px;}
.ls5{letter-spacing:0.738000px;}
.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:-14.816040px;}
.ws2{word-spacing:-14.442240px;}
.ws4{word-spacing:-14.402160px;}
.ws0{word-spacing:-13.722240px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.206000px;}
._2{width:1.314720px;}
._7{width:2.910720px;}
._5{width:4.482000px;}
._b{width:5.562000px;}
._e{width:6.588000px;}
._12{width:8.306640px;}
._a{width:9.561600px;}
._8{width:10.697040px;}
._9{width:11.712960px;}
._c{width:14.129280px;}
._d{width:15.284160px;}
._f{width:16.553520px;}
._19{width:18.167040px;}
._4{width:19.182960px;}
._1{width:20.258640px;}
._3{width:21.334320px;}
._15{width:24.462000px;}
._16{width:25.631280px;}
._13{width:27.000000px;}
._14{width:28.080000px;}
._10{width:29.605680px;}
._17{width:31.672800px;}
._18{width:33.107040px;}
._6{width:34.959600px;}
._11{width:41.174640px;}
.fc5{color:transparent;}
.fc4{color:rgb(24,21,18);}
.fc3{color:rgb(46,135,153);}
.fc2{color:rgb(46,136,154);}
.fc1{color:rgb(70,70,70);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y33{bottom:-9.540000px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.420000px;}
.y3{bottom:17.280000px;}
.y5{bottom:22.320000px;}
.y2{bottom:38.520000px;}
.y31{bottom:57.420000px;}
.y30{bottom:74.340000px;}
.y2f{bottom:91.440000px;}
.y2e{bottom:108.540000px;}
.y2d{bottom:125.460000px;}
.y62{bottom:137.556000px;}
.y27{bottom:139.176000px;}
.y2c{bottom:142.560000px;}
.y26{bottom:156.810000px;}
.y61{bottom:158.610000px;}
.y2b{bottom:160.200000px;}
.y25{bottom:174.450000px;}
.y60{bottom:179.670000px;}
.y2a{bottom:189.720000px;}
.y24{bottom:192.090000px;}
.y23{bottom:209.730000px;}
.y29{bottom:210.780000px;}
.y5f{bottom:210.990000px;}
.y5e{bottom:232.050000px;}
.y22{bottom:243.930000px;}
.y5d{bottom:253.110000px;}
.y21{bottom:265.170000px;}
.y5c{bottom:274.170000px;}
.y20{bottom:286.230000px;}
.y5b{bottom:305.490000px;}
.y1f{bottom:307.110000px;}
.y5a{bottom:326.550000px;}
.y1e{bottom:328.170000px;}
.y59{bottom:347.655000px;}
.y1d{bottom:349.275000px;}
.y58{bottom:368.715000px;}
.y1c{bottom:380.595000px;}
.y57{bottom:400.035000px;}
.y1b{bottom:401.655000px;}
.y56{bottom:421.095000px;}
.y1a{bottom:422.715000px;}
.y55{bottom:442.155000px;}
.y19{bottom:443.775000px;}
.y54{bottom:463.215000px;}
.y18{bottom:483.915000px;}
.y53{bottom:484.095000px;}
.y17{bottom:501.555000px;}
.y52{bottom:515.415000px;}
.y16{bottom:519.195000px;}
.y51{bottom:536.655000px;}
.y15{bottom:541.335000px;}
.y50{bottom:557.715000px;}
.y14{bottom:558.975000px;}
.y13{bottom:576.615000px;}
.y4f{bottom:589.035000px;}
.y4e{bottom:610.125000px;}
.y12{bottom:610.845000px;}
.y4d{bottom:631.185000px;}
.y11{bottom:632.085000px;}
.y4c{bottom:652.245000px;}
.y10{bottom:653.145000px;}
.y4b{bottom:673.125000px;}
.yf{bottom:674.025000px;}
.y4a{bottom:694.185000px;}
.ye{bottom:695.085000px;}
.y49{bottom:715.245000px;}
.yd{bottom:716.145000px;}
.y48{bottom:736.125000px;}
.yc{bottom:747.465000px;}
.y47{bottom:757.185000px;}
.y6d{bottom:760.605000px;}
.yb{bottom:768.525000px;}
.y46{bottom:778.245000px;}
.ya{bottom:789.585000px;}
.y6c{bottom:792.105000px;}
.y45{bottom:809.565000px;}
.y9{bottom:810.645000px;}
.y6b{bottom:823.605000px;}
.y44{bottom:830.625000px;}
.y8{bottom:831.525000px;}
.y43{bottom:851.685000px;}
.y7{bottom:863.025000px;}
.y42{bottom:872.790000px;}
.y6{bottom:890.430000px;}
.y41{bottom:893.670000px;}
.y6a{bottom:897.090000px;}
.y32{bottom:897.630000px;}
.y28{bottom:904.290000px;}
.y40{bottom:914.730000px;}
.y69{bottom:928.590000px;}
.y3f{bottom:954.870000px;}
.y68{bottom:960.090000px;}
.y3e{bottom:972.510000px;}
.y3d{bottom:990.150000px;}
.y67{bottom:991.590000px;}
.y3c{bottom:1007.790000px;}
.y66{bottom:1012.830000px;}
.y3b{bottom:1025.430000px;}
.y3a{bottom:1043.070000px;}
.y65{bottom:1044.150000px;}
.y39{bottom:1065.210000px;}
.y38{bottom:1082.850000px;}
.y37{bottom:1100.490000px;}
.y64{bottom:1110.030000px;}
.y36{bottom:1118.130000px;}
.y63{bottom:1131.270000px;}
.y35{bottom:1135.770000px;}
.y34{bottom:1188.540000px;}
.y1{bottom:1246.680000px;}
.h3{height:27.900000px;}
.h4{height:38.111484px;}
.hd{height:45.199336px;}
.h7{height:51.284180px;}
.h9{height:54.457031px;}
.h6{height:56.754492px;}
.ha{height:68.378906px;}
.hc{height:71.824219px;}
.h2{height:74.004654px;}
.h5{height:80.003320px;}
.h8{height:236.550000px;}
.hb{height:243.210000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:55.800000px;}
.w5{width:183.630000px;}
.w6{width:372.135000px;}
.w3{width:526.425000px;}
.w7{width:591.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.xb{left:19.980000px;}
.x4{left:35.100000px;}
.x8{left:160.965000px;}
.xa{left:184.170000px;}
.x1{left:191.369987px;}
.x7{left:196.050000px;}
.xc{left:231.869987px;}
.x6{left:244.469987px;}
.x9{left:379.695000px;}
.x3{left:717.810000px;}
.x5{left:767.489987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.709333pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.069333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.262933pt;}
.ls5{letter-spacing:0.656000pt;}
.ws1{word-spacing:-13.169813pt;}
.ws2{word-spacing:-12.837547pt;}
.ws4{word-spacing:-12.801920pt;}
.ws0{word-spacing:-12.197547pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.072000pt;}
._2{width:1.168640pt;}
._7{width:2.587307pt;}
._5{width:3.984000pt;}
._b{width:4.944000pt;}
._e{width:5.856000pt;}
._12{width:7.383680pt;}
._a{width:8.499200pt;}
._8{width:9.508480pt;}
._9{width:10.411520pt;}
._c{width:12.559360pt;}
._d{width:13.585920pt;}
._f{width:14.714240pt;}
._19{width:16.148480pt;}
._4{width:17.051520pt;}
._1{width:18.007680pt;}
._3{width:18.963840pt;}
._15{width:21.744000pt;}
._16{width:22.783360pt;}
._13{width:24.000000pt;}
._14{width:24.960000pt;}
._10{width:26.316160pt;}
._17{width:28.153600pt;}
._18{width:29.428480pt;}
._6{width:31.075200pt;}
._11{width:36.599680pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y33{bottom:-8.480000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.040000pt;}
.y3{bottom:15.360000pt;}
.y5{bottom:19.840000pt;}
.y2{bottom:34.240000pt;}
.y31{bottom:51.040000pt;}
.y30{bottom:66.080000pt;}
.y2f{bottom:81.280000pt;}
.y2e{bottom:96.480000pt;}
.y2d{bottom:111.520000pt;}
.y62{bottom:122.272000pt;}
.y27{bottom:123.712000pt;}
.y2c{bottom:126.720000pt;}
.y26{bottom:139.386667pt;}
.y61{bottom:140.986667pt;}
.y2b{bottom:142.400000pt;}
.y25{bottom:155.066667pt;}
.y60{bottom:159.706667pt;}
.y2a{bottom:168.640000pt;}
.y24{bottom:170.746667pt;}
.y23{bottom:186.426667pt;}
.y29{bottom:187.360000pt;}
.y5f{bottom:187.546667pt;}
.y5e{bottom:206.266667pt;}
.y22{bottom:216.826667pt;}
.y5d{bottom:224.986667pt;}
.y21{bottom:235.706667pt;}
.y5c{bottom:243.706667pt;}
.y20{bottom:254.426667pt;}
.y5b{bottom:271.546667pt;}
.y1f{bottom:272.986667pt;}
.y5a{bottom:290.266667pt;}
.y1e{bottom:291.706667pt;}
.y59{bottom:309.026667pt;}
.y1d{bottom:310.466667pt;}
.y58{bottom:327.746667pt;}
.y1c{bottom:338.306667pt;}
.y57{bottom:355.586667pt;}
.y1b{bottom:357.026667pt;}
.y56{bottom:374.306667pt;}
.y1a{bottom:375.746667pt;}
.y55{bottom:393.026667pt;}
.y19{bottom:394.466667pt;}
.y54{bottom:411.746667pt;}
.y18{bottom:430.146667pt;}
.y53{bottom:430.306667pt;}
.y17{bottom:445.826667pt;}
.y52{bottom:458.146667pt;}
.y16{bottom:461.506667pt;}
.y51{bottom:477.026667pt;}
.y15{bottom:481.186667pt;}
.y50{bottom:495.746667pt;}
.y14{bottom:496.866667pt;}
.y13{bottom:512.546667pt;}
.y4f{bottom:523.586667pt;}
.y4e{bottom:542.333333pt;}
.y12{bottom:542.973333pt;}
.y4d{bottom:561.053333pt;}
.y11{bottom:561.853333pt;}
.y4c{bottom:579.773333pt;}
.y10{bottom:580.573333pt;}
.y4b{bottom:598.333333pt;}
.yf{bottom:599.133333pt;}
.y4a{bottom:617.053333pt;}
.ye{bottom:617.853333pt;}
.y49{bottom:635.773333pt;}
.yd{bottom:636.573333pt;}
.y48{bottom:654.333333pt;}
.yc{bottom:664.413333pt;}
.y47{bottom:673.053333pt;}
.y6d{bottom:676.093333pt;}
.yb{bottom:683.133333pt;}
.y46{bottom:691.773333pt;}
.ya{bottom:701.853333pt;}
.y6c{bottom:704.093333pt;}
.y45{bottom:719.613333pt;}
.y9{bottom:720.573333pt;}
.y6b{bottom:732.093333pt;}
.y44{bottom:738.333333pt;}
.y8{bottom:739.133333pt;}
.y43{bottom:757.053333pt;}
.y7{bottom:767.133333pt;}
.y42{bottom:775.813333pt;}
.y6{bottom:791.493333pt;}
.y41{bottom:794.373333pt;}
.y6a{bottom:797.413333pt;}
.y32{bottom:797.893333pt;}
.y28{bottom:803.813333pt;}
.y40{bottom:813.093333pt;}
.y69{bottom:825.413333pt;}
.y3f{bottom:848.773333pt;}
.y68{bottom:853.413333pt;}
.y3e{bottom:864.453333pt;}
.y3d{bottom:880.133333pt;}
.y67{bottom:881.413333pt;}
.y3c{bottom:895.813333pt;}
.y66{bottom:900.293333pt;}
.y3b{bottom:911.493333pt;}
.y3a{bottom:927.173333pt;}
.y65{bottom:928.133333pt;}
.y39{bottom:946.853333pt;}
.y38{bottom:962.533333pt;}
.y37{bottom:978.213333pt;}
.y64{bottom:986.693333pt;}
.y36{bottom:993.893333pt;}
.y63{bottom:1005.573333pt;}
.y35{bottom:1009.573333pt;}
.y34{bottom:1056.480000pt;}
.y1{bottom:1108.160000pt;}
.h3{height:24.800000pt;}
.h4{height:33.876875pt;}
.hd{height:40.177188pt;}
.h7{height:45.585938pt;}
.h9{height:48.406250pt;}
.h6{height:50.448438pt;}
.ha{height:60.781250pt;}
.hc{height:63.843750pt;}
.h2{height:65.781915pt;}
.h5{height:71.114062pt;}
.h8{height:210.266667pt;}
.hb{height:216.186667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:49.600000pt;}
.w5{width:163.226667pt;}
.w6{width:330.786667pt;}
.w3{width:467.933333pt;}
.w7{width:525.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.xb{left:17.760000pt;}
.x4{left:31.200000pt;}
.x8{left:143.080000pt;}
.xa{left:163.706667pt;}
.x1{left:170.106655pt;}
.x7{left:174.266667pt;}
.xc{left:206.106655pt;}
.x6{left:217.306655pt;}
.x9{left:337.506667pt;}
.x3{left:638.053333pt;}
.x5{left:682.213322pt;}
}

