
    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_d34806da11ffbfb05eb19eea.woff')format("woff");}.ff1{font-family:ff1;line-height:0.766602;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_55a1703b7598cadb32eef90e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_37f94b5f9b24eecee5ee6046.woff')format("woff");}.ff3{font-family:ff3;line-height:0.966797;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_d60c5088f2cfd7a49f759584.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933594;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_5d558af5bfb55de762e3a170.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_db79510c852cc7b99a7ce520.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922363;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.wse{word-spacing:-18.810000px;}
.ws0{word-spacing:-14.850000px;}
.ws2{word-spacing:-1.575000px;}
.ws3{word-spacing:-1.350000px;}
.wsa{word-spacing:-0.855000px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:3.676500px;}
.ws4{word-spacing:7.627500px;}
.ws9{word-spacing:8.208000px;}
.ws5{word-spacing:12.150000px;}
.wsd{word-spacing:12.654000px;}
.ws6{word-spacing:16.672500px;}
.ws7{word-spacing:17.185500px;}
.wsf{word-spacing:21.717000px;}
.ws13{word-spacing:26.163000px;}
.wsc{word-spacing:30.694500px;}
.wsb{word-spacing:35.140500px;}
.ws10{word-spacing:39.672000px;}
.ws12{word-spacing:44.203500px;}
.ws11{word-spacing:48.649500px;}
._d{margin-left:-44.761500px;}
._c{margin-left:-30.721500px;}
._a{margin-left:-26.257500px;}
._b{margin-left:-23.440500px;}
._9{margin-left:-22.239000px;}
._5{margin-left:-17.887500px;}
._4{margin-left:-13.050000px;}
._3{margin-left:-8.865000px;}
._7{margin-left:-5.125500px;}
._6{margin-left:-3.982500px;}
._2{width:1.417500px;}
._0{width:2.587500px;}
._1{width:4.275000px;}
._8{width:5.377500px;}
.fc3{color:rgb(67,63,61);}
.fc2{color:rgb(174,106,4);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(98,88,67);}
.fs2{font-size:67.500000px;}
.fs3{font-size:85.500000px;}
.fs1{font-size:112.500000px;}
.fs0{font-size:220.500000px;}
.y0{bottom:0.000000px;}
.y54{bottom:6.743250px;}
.y73{bottom:12.375000px;}
.y41{bottom:15.750000px;}
.y84{bottom:24.750000px;}
.y21{bottom:28.125000px;}
.y53{bottom:38.250000px;}
.y20{bottom:54.000000px;}
.y22{bottom:82.125000px;}
.y83{bottom:110.142000px;}
.y1f{bottom:113.550750px;}
.y72{bottom:120.226500px;}
.y40{bottom:123.608250px;}
.y52{bottom:123.662250px;}
.y82{bottom:141.648750px;}
.y1e{bottom:145.057500px;}
.y71{bottom:151.733250px;}
.y3f{bottom:155.115000px;}
.y51{bottom:155.169000px;}
.y81{bottom:173.155500px;}
.y1d{bottom:176.564250px;}
.y70{bottom:183.240000px;}
.y3e{bottom:186.621750px;}
.y50{bottom:186.675750px;}
.y1c{bottom:208.071000px;}
.y6f{bottom:214.746750px;}
.y3d{bottom:218.128500px;}
.y4f{bottom:218.182500px;}
.y80{bottom:227.148750px;}
.y1b{bottom:239.577750px;}
.y6e{bottom:246.253500px;}
.y3c{bottom:249.635250px;}
.y4e{bottom:249.689250px;}
.y1a{bottom:271.084500px;}
.y6d{bottom:277.760250px;}
.y3b{bottom:281.142000px;}
.y4d{bottom:281.196000px;}
.y19{bottom:302.591250px;}
.y6c{bottom:309.267000px;}
.y3a{bottom:312.648750px;}
.y4c{bottom:312.702750px;}
.y6b{bottom:340.773750px;}
.y39{bottom:344.155500px;}
.y4b{bottom:344.209500px;}
.y18{bottom:356.584500px;}
.y7f{bottom:375.662250px;}
.y4a{bottom:375.716250px;}
.y17{bottom:388.091250px;}
.y6a{bottom:394.767000px;}
.y38{bottom:398.148750px;}
.y7e{bottom:407.169000px;}
.y49{bottom:407.223000px;}
.y16{bottom:419.598000px;}
.y69{bottom:426.273750px;}
.y37{bottom:429.655500px;}
.y7d{bottom:438.675750px;}
.y48{bottom:438.729750px;}
.y15{bottom:451.104750px;}
.y68{bottom:457.780500px;}
.y36{bottom:461.162250px;}
.y7c{bottom:470.182500px;}
.y14{bottom:482.611500px;}
.y67{bottom:489.287250px;}
.y35{bottom:492.669000px;}
.y47{bottom:492.723000px;}
.y7b{bottom:501.689250px;}
.y13{bottom:514.118250px;}
.y66{bottom:520.794000px;}
.y34{bottom:524.175750px;}
.y46{bottom:524.229750px;}
.y7a{bottom:533.196000px;}
.y12{bottom:545.625000px;}
.y65{bottom:552.300750px;}
.y1{bottom:554.625000px;}
.y33{bottom:555.682500px;}
.y45{bottom:555.736500px;}
.y11{bottom:577.131750px;}
.y64{bottom:583.807500px;}
.y32{bottom:587.189250px;}
.y44{bottom:587.243250px;}
.y63{bottom:615.314250px;}
.y31{bottom:618.696000px;}
.y10{bottom:631.125000px;}
.y62{bottom:646.821000px;}
.y30{bottom:650.202750px;}
.y61{bottom:678.327750px;}
.y79{bottom:681.709500px;}
.yf{bottom:682.852500px;}
.y2f{bottom:704.196000px;}
.ye{bottom:707.608125px;}
.y60{bottom:709.834500px;}
.y78{bottom:713.216250px;}
.yd{bottom:732.363750px;}
.y2e{bottom:735.702750px;}
.y5f{bottom:741.341250px;}
.y77{bottom:744.723000px;}
.yc{bottom:757.119375px;}
.y2d{bottom:767.209500px;}
.y76{bottom:776.229750px;}
.yb{bottom:781.875000px;}
.y5e{bottom:795.334500px;}
.y2c{bottom:798.716250px;}
.ya{bottom:812.250000px;}
.y5d{bottom:826.841250px;}
.y2b{bottom:830.223000px;}
.y9{bottom:857.227500px;}
.y5c{bottom:858.348000px;}
.y43{bottom:861.729750px;}
.y8{bottom:881.983125px;}
.y2a{bottom:884.216250px;}
.y5b{bottom:889.854750px;}
.y42{bottom:893.236500px;}
.y7{bottom:906.738750px;}
.y29{bottom:915.723000px;}
.y5a{bottom:921.361500px;}
.y75{bottom:924.743250px;}
.y6{bottom:931.494375px;}
.y28{bottom:947.229750px;}
.y5{bottom:956.250000px;}
.y59{bottom:975.354750px;}
.y27{bottom:978.736500px;}
.y4{bottom:986.625000px;}
.y58{bottom:1006.861500px;}
.y85{bottom:1010.236500px;}
.y26{bottom:1010.243250px;}
.y57{bottom:1038.368250px;}
.y3{bottom:1039.500000px;}
.y24{bottom:1041.743250px;}
.y25{bottom:1041.750000px;}
.y55{bottom:1047.375000px;}
.y56{bottom:1069.875000px;}
.y23{bottom:1073.250000px;}
.y2{bottom:1078.875000px;}
.y74{bottom:1095.750000px;}
.h3{height:48.614502px;}
.h5{height:58.732910px;}
.h8{height:60.200684px;}
.h4{height:61.578369px;}
.h6{height:74.395020px;}
.h9{height:74.611020px;}
.h2{height:85.034180px;}
.h1{height:165.375000px;}
.h7{height:1095.000000px;}
.h0{height:1188.000000px;}
.w1{width:888.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:15.000000px;}
.x5{left:45.000000px;}
.x1{left:60.000000px;}
.x2{left:69.000000px;}
.x3{left:112.881750px;}
.x6{left:115.125000px;}
.x7{left:198.000000px;}
.x8{left:247.875000px;}
.x9{left:315.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wse{word-spacing:-16.720000pt;}
.ws0{word-spacing:-13.200000pt;}
.ws2{word-spacing:-1.400000pt;}
.ws3{word-spacing:-1.200000pt;}
.wsa{word-spacing:-0.760000pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:3.268000pt;}
.ws4{word-spacing:6.780000pt;}
.ws9{word-spacing:7.296000pt;}
.ws5{word-spacing:10.800000pt;}
.wsd{word-spacing:11.248000pt;}
.ws6{word-spacing:14.820000pt;}
.ws7{word-spacing:15.276000pt;}
.wsf{word-spacing:19.304000pt;}
.ws13{word-spacing:23.256000pt;}
.wsc{word-spacing:27.284000pt;}
.wsb{word-spacing:31.236000pt;}
.ws10{word-spacing:35.264000pt;}
.ws12{word-spacing:39.292000pt;}
.ws11{word-spacing:43.244000pt;}
._d{margin-left:-39.788000pt;}
._c{margin-left:-27.308000pt;}
._a{margin-left:-23.340000pt;}
._b{margin-left:-20.836000pt;}
._9{margin-left:-19.768000pt;}
._5{margin-left:-15.900000pt;}
._4{margin-left:-11.600000pt;}
._3{margin-left:-7.880000pt;}
._7{margin-left:-4.556000pt;}
._6{margin-left:-3.540000pt;}
._2{width:1.260000pt;}
._0{width:2.300000pt;}
._1{width:3.800000pt;}
._8{width:4.780000pt;}
.fs2{font-size:60.000000pt;}
.fs3{font-size:76.000000pt;}
.fs1{font-size:100.000000pt;}
.fs0{font-size:196.000000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:5.994000pt;}
.y73{bottom:11.000000pt;}
.y41{bottom:14.000000pt;}
.y84{bottom:22.000000pt;}
.y21{bottom:25.000000pt;}
.y53{bottom:34.000000pt;}
.y20{bottom:48.000000pt;}
.y22{bottom:73.000000pt;}
.y83{bottom:97.904000pt;}
.y1f{bottom:100.934000pt;}
.y72{bottom:106.868000pt;}
.y40{bottom:109.874000pt;}
.y52{bottom:109.922000pt;}
.y82{bottom:125.910000pt;}
.y1e{bottom:128.940000pt;}
.y71{bottom:134.874000pt;}
.y3f{bottom:137.880000pt;}
.y51{bottom:137.928000pt;}
.y81{bottom:153.916000pt;}
.y1d{bottom:156.946000pt;}
.y70{bottom:162.880000pt;}
.y3e{bottom:165.886000pt;}
.y50{bottom:165.934000pt;}
.y1c{bottom:184.952000pt;}
.y6f{bottom:190.886000pt;}
.y3d{bottom:193.892000pt;}
.y4f{bottom:193.940000pt;}
.y80{bottom:201.910000pt;}
.y1b{bottom:212.958000pt;}
.y6e{bottom:218.892000pt;}
.y3c{bottom:221.898000pt;}
.y4e{bottom:221.946000pt;}
.y1a{bottom:240.964000pt;}
.y6d{bottom:246.898000pt;}
.y3b{bottom:249.904000pt;}
.y4d{bottom:249.952000pt;}
.y19{bottom:268.970000pt;}
.y6c{bottom:274.904000pt;}
.y3a{bottom:277.910000pt;}
.y4c{bottom:277.958000pt;}
.y6b{bottom:302.910000pt;}
.y39{bottom:305.916000pt;}
.y4b{bottom:305.964000pt;}
.y18{bottom:316.964000pt;}
.y7f{bottom:333.922000pt;}
.y4a{bottom:333.970000pt;}
.y17{bottom:344.970000pt;}
.y6a{bottom:350.904000pt;}
.y38{bottom:353.910000pt;}
.y7e{bottom:361.928000pt;}
.y49{bottom:361.976000pt;}
.y16{bottom:372.976000pt;}
.y69{bottom:378.910000pt;}
.y37{bottom:381.916000pt;}
.y7d{bottom:389.934000pt;}
.y48{bottom:389.982000pt;}
.y15{bottom:400.982000pt;}
.y68{bottom:406.916000pt;}
.y36{bottom:409.922000pt;}
.y7c{bottom:417.940000pt;}
.y14{bottom:428.988000pt;}
.y67{bottom:434.922000pt;}
.y35{bottom:437.928000pt;}
.y47{bottom:437.976000pt;}
.y7b{bottom:445.946000pt;}
.y13{bottom:456.994000pt;}
.y66{bottom:462.928000pt;}
.y34{bottom:465.934000pt;}
.y46{bottom:465.982000pt;}
.y7a{bottom:473.952000pt;}
.y12{bottom:485.000000pt;}
.y65{bottom:490.934000pt;}
.y1{bottom:493.000000pt;}
.y33{bottom:493.940000pt;}
.y45{bottom:493.988000pt;}
.y11{bottom:513.006000pt;}
.y64{bottom:518.940000pt;}
.y32{bottom:521.946000pt;}
.y44{bottom:521.994000pt;}
.y63{bottom:546.946000pt;}
.y31{bottom:549.952000pt;}
.y10{bottom:561.000000pt;}
.y62{bottom:574.952000pt;}
.y30{bottom:577.958000pt;}
.y61{bottom:602.958000pt;}
.y79{bottom:605.964000pt;}
.yf{bottom:606.980000pt;}
.y2f{bottom:625.952000pt;}
.ye{bottom:628.985000pt;}
.y60{bottom:630.964000pt;}
.y78{bottom:633.970000pt;}
.yd{bottom:650.990000pt;}
.y2e{bottom:653.958000pt;}
.y5f{bottom:658.970000pt;}
.y77{bottom:661.976000pt;}
.yc{bottom:672.995000pt;}
.y2d{bottom:681.964000pt;}
.y76{bottom:689.982000pt;}
.yb{bottom:695.000000pt;}
.y5e{bottom:706.964000pt;}
.y2c{bottom:709.970000pt;}
.ya{bottom:722.000000pt;}
.y5d{bottom:734.970000pt;}
.y2b{bottom:737.976000pt;}
.y9{bottom:761.980000pt;}
.y5c{bottom:762.976000pt;}
.y43{bottom:765.982000pt;}
.y8{bottom:783.985000pt;}
.y2a{bottom:785.970000pt;}
.y5b{bottom:790.982000pt;}
.y42{bottom:793.988000pt;}
.y7{bottom:805.990000pt;}
.y29{bottom:813.976000pt;}
.y5a{bottom:818.988000pt;}
.y75{bottom:821.994000pt;}
.y6{bottom:827.995000pt;}
.y28{bottom:841.982000pt;}
.y5{bottom:850.000000pt;}
.y59{bottom:866.982000pt;}
.y27{bottom:869.988000pt;}
.y4{bottom:877.000000pt;}
.y58{bottom:894.988000pt;}
.y85{bottom:897.988000pt;}
.y26{bottom:897.994000pt;}
.y57{bottom:922.994000pt;}
.y3{bottom:924.000000pt;}
.y24{bottom:925.994000pt;}
.y25{bottom:926.000000pt;}
.y55{bottom:931.000000pt;}
.y56{bottom:951.000000pt;}
.y23{bottom:954.000000pt;}
.y2{bottom:959.000000pt;}
.y74{bottom:974.000000pt;}
.h3{height:43.212891pt;}
.h5{height:52.207031pt;}
.h8{height:53.511719pt;}
.h4{height:54.736328pt;}
.h6{height:66.128906pt;}
.h9{height:66.320906pt;}
.h2{height:75.585938pt;}
.h1{height:147.000000pt;}
.h7{height:973.333333pt;}
.h0{height:1056.000000pt;}
.w1{width:789.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:13.333333pt;}
.x5{left:40.000000pt;}
.x1{left:53.333333pt;}
.x2{left:61.333333pt;}
.x3{left:100.339333pt;}
.x6{left:102.333333pt;}
.x7{left:176.000000pt;}
.x8{left:220.333333pt;}
.x9{left:280.000000pt;}
}

