
    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_0195a7309a52919a8719db5e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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);}
.ve{vertical-align:-21.600000px;}
.vf{vertical-align:-18.720000px;}
.vc{vertical-align:-17.280000px;}
.vd{vertical-align:-15.840000px;}
.vb{vertical-align:-14.400000px;}
.v6{vertical-align:-12.960000px;}
.v5{vertical-align:-11.520000px;}
.v9{vertical-align:-10.080000px;}
.va{vertical-align:-8.640000px;}
.v3{vertical-align:-7.200000px;}
.v2{vertical-align:-5.760000px;}
.v1{vertical-align:-4.320000px;}
.v8{vertical-align:-2.880000px;}
.v4{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.440000px;}
.v11{vertical-align:2.880000px;}
.v10{vertical-align:4.320000px;}
.v12{vertical-align:5.760000px;}
.v13{vertical-align:7.200000px;}
.v1a{vertical-align:8.640000px;}
.v15{vertical-align:10.080000px;}
.v14{vertical-align:11.520000px;}
.v18{vertical-align:12.960000px;}
.v16{vertical-align:14.400000px;}
.v17{vertical-align:15.840000px;}
.v19{vertical-align:17.280000px;}
.v1c{vertical-align:18.720000px;}
.v1b{vertical-align:21.600000px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._5{width:1.632000px;}
._0{width:2.880000px;}
._6{width:4.035000px;}
._2{width:5.472000px;}
._a{width:6.948000px;}
._8{width:7.968000px;}
._4{width:9.186000px;}
._3{width:10.305000px;}
._9{width:11.853000px;}
._10{width:13.965000px;}
._b{width:15.021000px;}
._c{width:16.452000px;}
._7{width:17.904000px;}
._e{width:19.320000px;}
._f{width:20.682000px;}
._1{width:26.304000px;}
._d{width:27.594000px;}
.fc0{color:transparent;}
.fs6{font-size:39.000000px;}
.fs3{font-size:42.000000px;}
.fs0{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:96.840000px;}
.y10{bottom:106.200000px;}
.y3e{bottom:139.320000px;}
.yf{bottom:145.440000px;}
.y3d{bottom:156.600000px;}
.ye{bottom:162.000000px;}
.y3c{bottom:173.520000px;}
.yd{bottom:178.920000px;}
.y3b{bottom:190.800000px;}
.yc{bottom:195.840000px;}
.y3a{bottom:208.080000px;}
.yb{bottom:212.760000px;}
.y39{bottom:225.000000px;}
.ya{bottom:229.320000px;}
.y38{bottom:242.280000px;}
.y9{bottom:246.600000px;}
.y37{bottom:259.920000px;}
.y8{bottom:263.520000px;}
.y36{bottom:276.840000px;}
.y7{bottom:280.440000px;}
.y35{bottom:294.120000px;}
.y6{bottom:297.360000px;}
.y34{bottom:311.400000px;}
.y5{bottom:314.280000px;}
.y33{bottom:329.040000px;}
.y4{bottom:331.560000px;}
.y32{bottom:345.960000px;}
.y3{bottom:348.480000px;}
.y31{bottom:362.880000px;}
.y2{bottom:365.760000px;}
.y30{bottom:380.880000px;}
.y2f{bottom:397.800000px;}
.y1{bottom:399.960000px;}
.y2e{bottom:415.080000px;}
.y2d{bottom:432.360000px;}
.y2c{bottom:449.640000px;}
.y2b{bottom:466.920000px;}
.y2a{bottom:484.200000px;}
.y29{bottom:501.480000px;}
.y28{bottom:519.120000px;}
.y27{bottom:536.040000px;}
.y26{bottom:553.320000px;}
.y25{bottom:570.600000px;}
.y52{bottom:575.280000px;}
.y24{bottom:587.520000px;}
.y23{bottom:605.160000px;}
.y51{bottom:605.520000px;}
.y22{bottom:622.080000px;}
.y50{bottom:622.800000px;}
.y21{bottom:639.360000px;}
.y4f{bottom:640.080000px;}
.y20{bottom:657.000000px;}
.y4e{bottom:657.360000px;}
.y1f{bottom:674.280000px;}
.y4d{bottom:675.000000px;}
.y1e{bottom:691.200000px;}
.y4c{bottom:692.280000px;}
.y1d{bottom:708.840000px;}
.y4b{bottom:709.560000px;}
.y1c{bottom:726.480000px;}
.y4a{bottom:726.840000px;}
.y1b{bottom:743.400000px;}
.y49{bottom:744.120000px;}
.y1a{bottom:760.680000px;}
.y48{bottom:761.760000px;}
.y19{bottom:778.680000px;}
.y18{bottom:795.240000px;}
.y47{bottom:795.960000px;}
.y17{bottom:812.520000px;}
.y46{bottom:813.240000px;}
.y16{bottom:829.800000px;}
.y45{bottom:830.520000px;}
.y15{bottom:847.080000px;}
.y44{bottom:848.520000px;}
.y14{bottom:864.360000px;}
.y43{bottom:865.440000px;}
.y13{bottom:882.000000px;}
.y42{bottom:882.360000px;}
.y12{bottom:898.920000px;}
.y41{bottom:900.000000px;}
.y11{bottom:937.800000px;}
.y40{bottom:941.760000px;}
.h5{height:46.933594px;}
.h6{height:47.182500px;}
.h4{height:48.622500px;}
.h3{height:50.062500px;}
.hb{height:50.311406px;}
.h21{height:51.502500px;}
.hd{height:51.751406px;}
.hf{height:52.000313px;}
.h2{height:53.191406px;}
.hc{height:54.382500px;}
.h7{height:55.129219px;}
.h8{height:56.320312px;}
.he{height:57.760313px;}
.h10{height:58.951406px;}
.h11{height:59.449219px;}
.h20{height:61.582500px;}
.h1c{height:63.271406px;}
.h1b{height:67.093594px;}
.h16{height:67.342500px;}
.h18{height:68.533594px;}
.h14{height:68.782500px;}
.h1f{height:69.973594px;}
.h15{height:70.222500px;}
.h19{height:70.471406px;}
.h1a{height:71.662500px;}
.h17{height:71.911406px;}
.h1d{height:73.351406px;}
.h1e{height:77.920313px;}
.h9{height:1015.920000px;}
.ha{height:1016.250000px;}
.h13{height:1017.750000px;}
.h12{height:1018.080000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w1{width:690.000000px;}
.w0{width:690.120000px;}
.w3{width:694.500000px;}
.w2{width:694.800000px;}
.x0{left:0.000000px;}
.x11{left:87.120000px;}
.x10{left:88.200000px;}
.xe{left:89.280000px;}
.xd{left:90.360000px;}
.xc{left:91.440000px;}
.xa{left:92.520000px;}
.x9{left:93.600000px;}
.x7{left:94.680000px;}
.x5{left:105.480000px;}
.x4{left:106.560000px;}
.x3{left:107.640000px;}
.x1{left:108.720000px;}
.x15{left:113.040000px;}
.xf{left:114.120000px;}
.x17{left:115.200000px;}
.xb{left:117.720000px;}
.x8{left:119.520000px;}
.x2{left:134.280000px;}
.x14{left:138.600000px;}
.x16{left:140.400000px;}
.x6{left:309.600000px;}
.x13{left:327.600000px;}
.x18{left:451.800000px;}
.x12{left:555.840000px;}
@media print{
.ve{vertical-align:-19.200000pt;}
.vf{vertical-align:-16.640000pt;}
.vc{vertical-align:-15.360000pt;}
.vd{vertical-align:-14.080000pt;}
.vb{vertical-align:-12.800000pt;}
.v6{vertical-align:-11.520000pt;}
.v5{vertical-align:-10.240000pt;}
.v9{vertical-align:-8.960000pt;}
.va{vertical-align:-7.680000pt;}
.v3{vertical-align:-6.400000pt;}
.v2{vertical-align:-5.120000pt;}
.v1{vertical-align:-3.840000pt;}
.v8{vertical-align:-2.560000pt;}
.v4{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.280000pt;}
.v11{vertical-align:2.560000pt;}
.v10{vertical-align:3.840000pt;}
.v12{vertical-align:5.120000pt;}
.v13{vertical-align:6.400000pt;}
.v1a{vertical-align:7.680000pt;}
.v15{vertical-align:8.960000pt;}
.v14{vertical-align:10.240000pt;}
.v18{vertical-align:11.520000pt;}
.v16{vertical-align:12.800000pt;}
.v17{vertical-align:14.080000pt;}
.v19{vertical-align:15.360000pt;}
.v1c{vertical-align:16.640000pt;}
.v1b{vertical-align:19.200000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._5{width:1.450667pt;}
._0{width:2.560000pt;}
._6{width:3.586667pt;}
._2{width:4.864000pt;}
._a{width:6.176000pt;}
._8{width:7.082667pt;}
._4{width:8.165333pt;}
._3{width:9.160000pt;}
._9{width:10.536000pt;}
._10{width:12.413333pt;}
._b{width:13.352000pt;}
._c{width:14.624000pt;}
._7{width:15.914667pt;}
._e{width:17.173333pt;}
._f{width:18.384000pt;}
._1{width:23.381333pt;}
._d{width:24.528000pt;}
.fs6{font-size:34.666667pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:86.080000pt;}
.y10{bottom:94.400000pt;}
.y3e{bottom:123.840000pt;}
.yf{bottom:129.280000pt;}
.y3d{bottom:139.200000pt;}
.ye{bottom:144.000000pt;}
.y3c{bottom:154.240000pt;}
.yd{bottom:159.040000pt;}
.y3b{bottom:169.600000pt;}
.yc{bottom:174.080000pt;}
.y3a{bottom:184.960000pt;}
.yb{bottom:189.120000pt;}
.y39{bottom:200.000000pt;}
.ya{bottom:203.840000pt;}
.y38{bottom:215.360000pt;}
.y9{bottom:219.200000pt;}
.y37{bottom:231.040000pt;}
.y8{bottom:234.240000pt;}
.y36{bottom:246.080000pt;}
.y7{bottom:249.280000pt;}
.y35{bottom:261.440000pt;}
.y6{bottom:264.320000pt;}
.y34{bottom:276.800000pt;}
.y5{bottom:279.360000pt;}
.y33{bottom:292.480000pt;}
.y4{bottom:294.720000pt;}
.y32{bottom:307.520000pt;}
.y3{bottom:309.760000pt;}
.y31{bottom:322.560000pt;}
.y2{bottom:325.120000pt;}
.y30{bottom:338.560000pt;}
.y2f{bottom:353.600000pt;}
.y1{bottom:355.520000pt;}
.y2e{bottom:368.960000pt;}
.y2d{bottom:384.320000pt;}
.y2c{bottom:399.680000pt;}
.y2b{bottom:415.040000pt;}
.y2a{bottom:430.400000pt;}
.y29{bottom:445.760000pt;}
.y28{bottom:461.440000pt;}
.y27{bottom:476.480000pt;}
.y26{bottom:491.840000pt;}
.y25{bottom:507.200000pt;}
.y52{bottom:511.360000pt;}
.y24{bottom:522.240000pt;}
.y23{bottom:537.920000pt;}
.y51{bottom:538.240000pt;}
.y22{bottom:552.960000pt;}
.y50{bottom:553.600000pt;}
.y21{bottom:568.320000pt;}
.y4f{bottom:568.960000pt;}
.y20{bottom:584.000000pt;}
.y4e{bottom:584.320000pt;}
.y1f{bottom:599.360000pt;}
.y4d{bottom:600.000000pt;}
.y1e{bottom:614.400000pt;}
.y4c{bottom:615.360000pt;}
.y1d{bottom:630.080000pt;}
.y4b{bottom:630.720000pt;}
.y1c{bottom:645.760000pt;}
.y4a{bottom:646.080000pt;}
.y1b{bottom:660.800000pt;}
.y49{bottom:661.440000pt;}
.y1a{bottom:676.160000pt;}
.y48{bottom:677.120000pt;}
.y19{bottom:692.160000pt;}
.y18{bottom:706.880000pt;}
.y47{bottom:707.520000pt;}
.y17{bottom:722.240000pt;}
.y46{bottom:722.880000pt;}
.y16{bottom:737.600000pt;}
.y45{bottom:738.240000pt;}
.y15{bottom:752.960000pt;}
.y44{bottom:754.240000pt;}
.y14{bottom:768.320000pt;}
.y43{bottom:769.280000pt;}
.y13{bottom:784.000000pt;}
.y42{bottom:784.320000pt;}
.y12{bottom:799.040000pt;}
.y41{bottom:800.000000pt;}
.y11{bottom:833.600000pt;}
.y40{bottom:837.120000pt;}
.h5{height:41.718750pt;}
.h6{height:41.940000pt;}
.h4{height:43.220000pt;}
.h3{height:44.500000pt;}
.hb{height:44.721250pt;}
.h21{height:45.780000pt;}
.hd{height:46.001250pt;}
.hf{height:46.222500pt;}
.h2{height:47.281250pt;}
.hc{height:48.340000pt;}
.h7{height:49.003750pt;}
.h8{height:50.062500pt;}
.he{height:51.342500pt;}
.h10{height:52.401250pt;}
.h11{height:52.843750pt;}
.h20{height:54.740000pt;}
.h1c{height:56.241250pt;}
.h1b{height:59.638750pt;}
.h16{height:59.860000pt;}
.h18{height:60.918750pt;}
.h14{height:61.140000pt;}
.h1f{height:62.198750pt;}
.h15{height:62.420000pt;}
.h19{height:62.641250pt;}
.h1a{height:63.700000pt;}
.h17{height:63.921250pt;}
.h1d{height:65.201250pt;}
.h1e{height:69.262500pt;}
.h9{height:903.040000pt;}
.ha{height:903.333333pt;}
.h13{height:904.666667pt;}
.h12{height:904.960000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w1{width:613.333333pt;}
.w0{width:613.440000pt;}
.w3{width:617.333333pt;}
.w2{width:617.600000pt;}
.x0{left:0.000000pt;}
.x11{left:77.440000pt;}
.x10{left:78.400000pt;}
.xe{left:79.360000pt;}
.xd{left:80.320000pt;}
.xc{left:81.280000pt;}
.xa{left:82.240000pt;}
.x9{left:83.200000pt;}
.x7{left:84.160000pt;}
.x5{left:93.760000pt;}
.x4{left:94.720000pt;}
.x3{left:95.680000pt;}
.x1{left:96.640000pt;}
.x15{left:100.480000pt;}
.xf{left:101.440000pt;}
.x17{left:102.400000pt;}
.xb{left:104.640000pt;}
.x8{left:106.240000pt;}
.x2{left:119.360000pt;}
.x14{left:123.200000pt;}
.x16{left:124.800000pt;}
.x6{left:275.200000pt;}
.x13{left:291.200000pt;}
.x18{left:401.600000pt;}
.x12{left:494.080000pt;}
}

