
    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_36da249363f7f7c5408a4d07.woff')format("woff");}.ff1{font-family:ff1;line-height:1.007000;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_96394d78aa3b18b0d3d9a224.woff')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_82a69ec4a04bf0d8ab5e3b18.woff')format("woff");}.ff3{font-family:ff3;line-height:0.736000;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_8246f95bd81f32b8b137ce42.woff')format("woff");}.ff4{font-family:ff4;line-height:0.775000;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_f4aa4a7befc6ece1a9ff9d3d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.006000;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_70b200a13d245bbfa4778a35.woff')format("woff");}.ff6{font-family:ff6;line-height:0.880859;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_79d9a982e2ba2ff6622fda61.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_0fdc2ba3b6964f62ab4f4bb4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.732000;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;}
.ls2{letter-spacing:-0.765000px;}
.ls3{letter-spacing:-0.675000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:5.700000px;}
.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;}
}
.ws2{word-spacing:-20.520000px;}
.wsa{word-spacing:-15.600000px;}
.ws3{word-spacing:-14.040000px;}
.ws4{word-spacing:-13.260000px;}
.ws0{word-spacing:-12.480000px;}
.ws1{word-spacing:-0.090948px;}
.ws5{word-spacing:0.000000px;}
.ws15{word-spacing:0.120000px;}
.wsb{word-spacing:0.765000px;}
.wsc{word-spacing:0.780000px;}
.wsd{word-spacing:0.840000px;}
.ws14{word-spacing:2.280000px;}
.wsf{word-spacing:3.780000px;}
.ws8{word-spacing:4.200000px;}
.ws9{word-spacing:4.743000px;}
.ws7{word-spacing:4.920000px;}
.ws6{word-spacing:5.400000px;}
.ws11{word-spacing:5.640000px;}
.ws12{word-spacing:6.300000px;}
.wse{word-spacing:6.780000px;}
.ws10{word-spacing:7.500000px;}
.ws13{word-spacing:9.000000px;}
._b{margin-left:-14.940000px;}
._2{margin-left:-3.785400px;}
._0{margin-left:-1.934400px;}
._3{width:1.020000px;}
._5{width:2.817600px;}
._4{width:4.286400px;}
._8{width:5.673600px;}
._6{width:7.080000px;}
._a{width:8.292000px;}
._7{width:10.956000px;}
._9{width:42.000000px;}
._1{width:49.670400px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:0.349800px;}
.fs8{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:21.259800px;}
.y2f{bottom:31.728900px;}
.y2e{bottom:47.028900px;}
.y2d{bottom:62.328900px;}
.y2c{bottom:77.628900px;}
.y2b{bottom:92.928900px;}
.y29{bottom:182.305050px;}
.y59{bottom:195.240750px;}
.y28{bottom:203.305050px;}
.y58{bottom:216.240750px;}
.y27{bottom:224.305050px;}
.y57{bottom:237.240750px;}
.y26{bottom:245.305050px;}
.y56{bottom:258.240750px;}
.y25{bottom:266.305050px;}
.y55{bottom:279.240750px;}
.y24{bottom:287.305050px;}
.y54{bottom:300.240750px;}
.y23{bottom:308.305050px;}
.y53{bottom:321.240750px;}
.y22{bottom:329.305050px;}
.y52{bottom:342.240750px;}
.y51{bottom:363.240750px;}
.y21{bottom:371.305050px;}
.y50{bottom:384.240750px;}
.y4f{bottom:405.240750px;}
.y4e{bottom:426.240750px;}
.y20{bottom:434.305050px;}
.y4d{bottom:447.240750px;}
.y1f{bottom:455.305050px;}
.y4c{bottom:468.240750px;}
.y1e{bottom:476.305050px;}
.y4b{bottom:489.240750px;}
.y1d{bottom:497.305050px;}
.y4a{bottom:510.240750px;}
.y1c{bottom:518.305050px;}
.y49{bottom:531.240750px;}
.y1b{bottom:539.305050px;}
.y6{bottom:548.466450px;}
.y48{bottom:552.240750px;}
.y1a{bottom:560.305050px;}
.y47{bottom:573.240750px;}
.y31{bottom:576.635700px;}
.y19{bottom:581.305050px;}
.y18{bottom:602.305050px;}
.y46{bottom:615.240750px;}
.y17{bottom:644.305050px;}
.y45{bottom:678.240750px;}
.y44{bottom:699.240750px;}
.y16{bottom:707.305050px;}
.y43{bottom:720.240750px;}
.y15{bottom:724.555050px;}
.y42{bottom:741.240750px;}
.y14{bottom:741.805050px;}
.y13{bottom:759.055050px;}
.y41{bottom:762.240750px;}
.y40{bottom:783.240750px;}
.y12{bottom:793.405200px;}
.y3f{bottom:804.240750px;}
.y3e{bottom:825.240750px;}
.y11{bottom:830.355150px;}
.y3d{bottom:846.240750px;}
.y10{bottom:847.314450px;}
.y3c{bottom:867.240750px;}
.yf{bottom:873.818550px;}
.y3b{bottom:888.240750px;}
.ye{bottom:891.818550px;}
.y3a{bottom:909.240750px;}
.yd{bottom:929.826300px;}
.y39{bottom:930.240750px;}
.y5c{bottom:951.240750px;}
.yc{bottom:956.330250px;}
.y38{bottom:972.240750px;}
.yb{bottom:974.330250px;}
.y5b{bottom:993.240750px;}
.y5a{bottom:1014.240750px;}
.ya{bottom:1017.334200px;}
.y37{bottom:1035.240750px;}
.y9{bottom:1044.334200px;}
.y36{bottom:1056.240750px;}
.y8{bottom:1071.384150px;}
.y7{bottom:1071.385650px;}
.y35{bottom:1077.240750px;}
.y2a{bottom:1082.613600px;}
.y34{bottom:1098.240750px;}
.y33{bottom:1119.240750px;}
.y5{bottom:1130.570850px;}
.y4{bottom:1148.570850px;}
.y3{bottom:1166.570850px;}
.y2{bottom:1184.570850px;}
.y1{bottom:1202.570850px;}
.y30{bottom:1204.595550px;}
.h5{height:0.267947px;}
.h3{height:36.720000px;}
.h2{height:36.768000px;}
.hf{height:36.873000px;}
.he{height:39.066000px;}
.h8{height:41.364000px;}
.h9{height:43.306641px;}
.h4{height:43.440000px;}
.hd{height:45.585938px;}
.ha{height:45.600000px;}
.hc{height:45.900000px;}
.hb{height:45.960000px;}
.h7{height:50.490000px;}
.h6{height:68.940000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:29.763750px;}
.x12{left:34.015800px;}
.x7{left:63.779550px;}
.x8{left:65.132400px;}
.x9{left:75.334950px;}
.x14{left:77.053800px;}
.x11{left:85.039350px;}
.x15{left:112.039350px;}
.xc{left:135.523050px;}
.xf{left:140.531550px;}
.x1{left:195.954000px;}
.x2{left:198.738300px;}
.x3{left:248.891400px;}
.xe{left:267.941700px;}
.xb{left:275.508150px;}
.x4{left:297.682650px;}
.xa{left:370.870650px;}
.xd{left:375.573150px;}
.x5{left:409.547400px;}
.x10{left:439.330650px;}
.x6{left:846.162300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.680000pt;}
.ls3{letter-spacing:-0.600000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:5.066667pt;}
.ws2{word-spacing:-18.240000pt;}
.wsa{word-spacing:-13.866667pt;}
.ws3{word-spacing:-12.480000pt;}
.ws4{word-spacing:-11.786667pt;}
.ws0{word-spacing:-11.093333pt;}
.ws1{word-spacing:-0.080843pt;}
.ws5{word-spacing:0.000000pt;}
.ws15{word-spacing:0.106667pt;}
.wsb{word-spacing:0.680000pt;}
.wsc{word-spacing:0.693333pt;}
.wsd{word-spacing:0.746667pt;}
.ws14{word-spacing:2.026667pt;}
.wsf{word-spacing:3.360000pt;}
.ws8{word-spacing:3.733333pt;}
.ws9{word-spacing:4.216000pt;}
.ws7{word-spacing:4.373333pt;}
.ws6{word-spacing:4.800000pt;}
.ws11{word-spacing:5.013333pt;}
.ws12{word-spacing:5.600000pt;}
.wse{word-spacing:6.026667pt;}
.ws10{word-spacing:6.666667pt;}
.ws13{word-spacing:8.000000pt;}
._b{margin-left:-13.280000pt;}
._2{margin-left:-3.364800pt;}
._0{margin-left:-1.719467pt;}
._3{width:0.906667pt;}
._5{width:2.504533pt;}
._4{width:3.810133pt;}
._8{width:5.043200pt;}
._6{width:6.293333pt;}
._a{width:7.370667pt;}
._7{width:9.738667pt;}
._9{width:37.333333pt;}
._1{width:44.151467pt;}
.fs2{font-size:0.310933pt;}
.fs8{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:18.897600pt;}
.y2f{bottom:28.203467pt;}
.y2e{bottom:41.803467pt;}
.y2d{bottom:55.403467pt;}
.y2c{bottom:69.003467pt;}
.y2b{bottom:82.603467pt;}
.y29{bottom:162.048933pt;}
.y59{bottom:173.547333pt;}
.y28{bottom:180.715600pt;}
.y58{bottom:192.214000pt;}
.y27{bottom:199.382267pt;}
.y57{bottom:210.880667pt;}
.y26{bottom:218.048933pt;}
.y56{bottom:229.547333pt;}
.y25{bottom:236.715600pt;}
.y55{bottom:248.214000pt;}
.y24{bottom:255.382267pt;}
.y54{bottom:266.880667pt;}
.y23{bottom:274.048933pt;}
.y53{bottom:285.547333pt;}
.y22{bottom:292.715600pt;}
.y52{bottom:304.214000pt;}
.y51{bottom:322.880667pt;}
.y21{bottom:330.048933pt;}
.y50{bottom:341.547333pt;}
.y4f{bottom:360.214000pt;}
.y4e{bottom:378.880667pt;}
.y20{bottom:386.048933pt;}
.y4d{bottom:397.547333pt;}
.y1f{bottom:404.715600pt;}
.y4c{bottom:416.214000pt;}
.y1e{bottom:423.382267pt;}
.y4b{bottom:434.880667pt;}
.y1d{bottom:442.048933pt;}
.y4a{bottom:453.547333pt;}
.y1c{bottom:460.715600pt;}
.y49{bottom:472.214000pt;}
.y1b{bottom:479.382267pt;}
.y6{bottom:487.525733pt;}
.y48{bottom:490.880667pt;}
.y1a{bottom:498.048933pt;}
.y47{bottom:509.547333pt;}
.y31{bottom:512.565067pt;}
.y19{bottom:516.715600pt;}
.y18{bottom:535.382267pt;}
.y46{bottom:546.880667pt;}
.y17{bottom:572.715600pt;}
.y45{bottom:602.880667pt;}
.y44{bottom:621.547333pt;}
.y16{bottom:628.715600pt;}
.y43{bottom:640.214000pt;}
.y15{bottom:644.048933pt;}
.y42{bottom:658.880667pt;}
.y14{bottom:659.382267pt;}
.y13{bottom:674.715600pt;}
.y41{bottom:677.547333pt;}
.y40{bottom:696.214000pt;}
.y12{bottom:705.249067pt;}
.y3f{bottom:714.880667pt;}
.y3e{bottom:733.547333pt;}
.y11{bottom:738.093467pt;}
.y3d{bottom:752.214000pt;}
.y10{bottom:753.168400pt;}
.y3c{bottom:770.880667pt;}
.yf{bottom:776.727600pt;}
.y3b{bottom:789.547333pt;}
.ye{bottom:792.727600pt;}
.y3a{bottom:808.214000pt;}
.yd{bottom:826.512267pt;}
.y39{bottom:826.880667pt;}
.y5c{bottom:845.547333pt;}
.yc{bottom:850.071333pt;}
.y38{bottom:864.214000pt;}
.yb{bottom:866.071333pt;}
.y5b{bottom:882.880667pt;}
.y5a{bottom:901.547333pt;}
.ya{bottom:904.297067pt;}
.y37{bottom:920.214000pt;}
.y9{bottom:928.297067pt;}
.y36{bottom:938.880667pt;}
.y8{bottom:952.341467pt;}
.y7{bottom:952.342800pt;}
.y35{bottom:957.547333pt;}
.y2a{bottom:962.323200pt;}
.y34{bottom:976.214000pt;}
.y33{bottom:994.880667pt;}
.y5{bottom:1004.951867pt;}
.y4{bottom:1020.951867pt;}
.y3{bottom:1036.951867pt;}
.y2{bottom:1052.951867pt;}
.y1{bottom:1068.951867pt;}
.y30{bottom:1070.751600pt;}
.h5{height:0.238175pt;}
.h3{height:32.640000pt;}
.h2{height:32.682667pt;}
.hf{height:32.776000pt;}
.he{height:34.725333pt;}
.h8{height:36.768000pt;}
.h9{height:38.494792pt;}
.h4{height:38.613333pt;}
.hd{height:40.520833pt;}
.ha{height:40.533333pt;}
.hc{height:40.800000pt;}
.hb{height:40.853333pt;}
.h7{height:44.880000pt;}
.h6{height:61.280000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:26.456667pt;}
.x12{left:30.236267pt;}
.x7{left:56.692933pt;}
.x8{left:57.895467pt;}
.x9{left:66.964400pt;}
.x14{left:68.492267pt;}
.x11{left:75.590533pt;}
.x15{left:99.590533pt;}
.xc{left:120.464933pt;}
.xf{left:124.916933pt;}
.x1{left:174.181333pt;}
.x2{left:176.656267pt;}
.x3{left:221.236800pt;}
.xe{left:238.170400pt;}
.xb{left:244.896133pt;}
.x4{left:264.606800pt;}
.xa{left:329.662800pt;}
.xd{left:333.842800pt;}
.x5{left:364.042133pt;}
.x10{left:390.516133pt;}
.x6{left:752.144267pt;}
}

