
    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_b45e363525b308d006767c0f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_dc080d6b0f284eb915c5e3c8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_cffcc654b83c4dcb76e64d1a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_c25d0a5bad8e3f6bb3aa7976.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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;}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-1.453128px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.010620px;}
.ls1{letter-spacing:0.010626px;}
.ls3{letter-spacing:0.045780px;}
.ls2{letter-spacing:661.398000px;}
.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:-18.000000px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-12.060000px;}
.ws1{word-spacing:0.000000px;}
._17{margin-left:-7.783584px;}
._16{margin-left:-2.409501px;}
._0{margin-left:-1.193553px;}
._1{width:1.210521px;}
._b{width:2.246084px;}
._c{width:3.465246px;}
._15{width:4.606793px;}
._2{width:5.795271px;}
._3{width:6.844191px;}
._8{width:8.244143px;}
._6{width:9.686162px;}
._7{width:10.778716px;}
._d{width:12.424000px;}
._e{width:13.776774px;}
._5{width:15.097409px;}
._4{width:16.126845px;}
._f{width:19.277313px;}
._12{width:20.549816px;}
._11{width:21.787322px;}
._9{width:22.848439px;}
._a{width:23.982892px;}
._10{width:25.411465px;}
._13{width:26.866046px;}
._14{width:28.679511px;}
._19{width:29.843532px;}
._1a{width:31.036868px;}
._1d{width:32.090924px;}
._1c{width:33.277685px;}
._1b{width:50.443865px;}
._18{width:707.329261px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:109.564410px;}
.y4e{bottom:109.564500px;}
.y45{bottom:115.682400px;}
.y79{bottom:123.065700px;}
.y4c{bottom:123.960900px;}
.y4b{bottom:130.804650px;}
.y4a{bottom:141.240300px;}
.y23{bottom:141.604050px;}
.y44{bottom:146.824950px;}
.y80{bottom:149.701200px;}
.y78{bottom:154.026600px;}
.y22{bottom:172.564950px;}
.y43{bottom:177.785850px;}
.y77{bottom:185.163300px;}
.y21{bottom:203.701650px;}
.y42{bottom:208.922550px;}
.y76{bottom:216.124200px;}
.y20{bottom:234.662550px;}
.y41{bottom:239.883450px;}
.y75{bottom:247.266750px;}
.y1f{bottom:265.805100px;}
.y40{bottom:271.026000px;}
.y74{bottom:278.221800px;}
.y1e{bottom:296.766000px;}
.y3f{bottom:301.981050px;}
.y73{bottom:309.364350px;}
.y1d{bottom:327.902700px;}
.y3e{bottom:333.123600px;}
.y72{bottom:340.325250px;}
.y1c{bottom:358.863600px;}
.y3d{bottom:364.084500px;}
.y71{bottom:371.461950px;}
.y49{bottom:372.363000px;}
.y1b{bottom:390.006150px;}
.y3c{bottom:395.221200px;}
.y70{bottom:402.422850px;}
.y1a{bottom:420.961200px;}
.y3b{bottom:426.182100px;}
.y6f{bottom:433.565400px;}
.y19{bottom:452.103750px;}
.y3a{bottom:457.143000px;}
.y6e{bottom:464.526300px;}
.y18{bottom:483.064650px;}
.y39{bottom:488.285550px;}
.y6d{bottom:495.663000px;}
.y17{bottom:514.201350px;}
.y38{bottom:519.240600px;}
.y6c{bottom:526.623900px;}
.y16{bottom:545.162250px;}
.y37{bottom:550.383150px;}
.y6b{bottom:557.766450px;}
.y15{bottom:576.304800px;}
.y48{bottom:580.980750px;}
.y36{bottom:581.344050px;}
.y6a{bottom:588.721500px;}
.y14{bottom:607.265700px;}
.y47{bottom:612.123300px;}
.y35{bottom:612.480750px;}
.y69{bottom:619.864050px;}
.y13{bottom:638.402400px;}
.y34{bottom:643.441650px;}
.y68{bottom:650.824950px;}
.y12{bottom:669.363300px;}
.y33{bottom:674.584200px;}
.y67{bottom:681.961650px;}
.y11{bottom:700.505850px;}
.y32{bottom:705.545100px;}
.y66{bottom:712.922550px;}
.y10{bottom:731.460900px;}
.y7a{bottom:736.324350px;}
.y31{bottom:736.681800px;}
.y65{bottom:744.065100px;}
.yf{bottom:762.603450px;}
.y30{bottom:767.642700px;}
.y64{bottom:775.026000px;}
.ye{bottom:793.564350px;}
.y2f{bottom:798.785250px;}
.y60{bottom:806.882850px;}
.yd{bottom:824.701050px;}
.y2e{bottom:829.740300px;}
.y5c{bottom:837.662100px;}
.y5f{bottom:837.843750px;}
.y63{bottom:837.843900px;}
.yc{bottom:855.661950px;}
.y2d{bottom:860.882850px;}
.y5b{bottom:868.623000px;}
.y5e{bottom:868.980450px;}
.y62{bottom:868.980600px;}
.yb{bottom:886.804500px;}
.y2c{bottom:891.843750px;}
.y5d{bottom:899.941350px;}
.y61{bottom:899.941500px;}
.ya{bottom:917.765400px;}
.y2b{bottom:922.980450px;}
.y56{bottom:931.805400px;}
.y9{bottom:948.544650px;}
.y2a{bottom:953.941350px;}
.y55{bottom:962.942100px;}
.y5a{bottom:962.942250px;}
.y51{bottom:978.065100px;}
.y8{bottom:979.863000px;}
.y29{bottom:984.720600px;}
.y46{bottom:985.083900px;}
.y54{bottom:993.903000px;}
.y59{bottom:993.903150px;}
.y50{bottom:1009.026000px;}
.y7{bottom:1012.981200px;}
.y28{bottom:1016.044800px;}
.y53{bottom:1025.045550px;}
.y58{bottom:1025.045700px;}
.y6{bottom:1037.104200px;}
.y27{bottom:1047.181500px;}
.y7e{bottom:1047.181950px;}
.y7f{bottom:1055.461500px;}
.y52{bottom:1056.006450px;}
.y57{bottom:1056.006600px;}
.y5{bottom:1061.403000px;}
.y4f{bottom:1077.603300px;}
.y26{bottom:1078.142400px;}
.y7d{bottom:1078.142850px;}
.y4{bottom:1084.441500px;}
.y3{bottom:1102.083450px;}
.y25{bottom:1109.284950px;}
.y7c{bottom:1109.285400px;}
.y2{bottom:1120.980000px;}
.y7b{bottom:1139.883000px;}
.y1{bottom:1140.064500px;}
.y24{bottom:1140.240000px;}
.h8{height:27.014766px;}
.h7{height:33.518320px;}
.h3{height:41.522695px;}
.h2{height:46.025156px;}
.h6{height:49.992188px;}
.h5{height:50.027344px;}
.h1{height:63.949219px;}
.h4{height:74.820586px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:106.377000px;}
.xa{left:111.234450px;}
.xb{left:115.019550px;}
.x12{left:118.617150px;}
.xe{left:120.058650px;}
.x6{left:127.799790px;}
.xf{left:133.558645px;}
.xd{left:172.798888px;}
.x10{left:249.837950px;}
.xc{left:261.175500px;}
.x2{left:353.157000px;}
.x1{left:376.195500px;}
.x4{left:378.721500px;}
.x3{left:382.137509px;}
.x5{left:446.397000px;}
.x11{left:503.098438px;}
.x8{left:657.357000px;}
.x9{left:663.474000px;}
.x13{left:766.078500px;}
.x14{left:775.617000px;}
@media print{
.v1{vertical-align:-1.291669pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.009440pt;}
.ls1{letter-spacing:0.009446pt;}
.ls3{letter-spacing:0.040693pt;}
.ls2{letter-spacing:587.909333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws1{word-spacing:0.000000pt;}
._17{margin-left:-6.918741pt;}
._16{margin-left:-2.141778pt;}
._0{margin-left:-1.060936pt;}
._1{width:1.076019pt;}
._b{width:1.996519pt;}
._c{width:3.080219pt;}
._15{width:4.094927pt;}
._2{width:5.151352pt;}
._3{width:6.083726pt;}
._8{width:7.328127pt;}
._6{width:8.609922pt;}
._7{width:9.581081pt;}
._d{width:11.043555pt;}
._e{width:12.246022pt;}
._5{width:13.419919pt;}
._4{width:14.334974pt;}
._f{width:17.135389pt;}
._12{width:18.266503pt;}
._11{width:19.366508pt;}
._9{width:20.309723pt;}
._a{width:21.318126pt;}
._10{width:22.587969pt;}
._13{width:23.880930pt;}
._14{width:25.492899pt;}
._19{width:26.527584pt;}
._1a{width:27.588327pt;}
._1d{width:28.525266pt;}
._1c{width:29.580164pt;}
._1b{width:44.838991pt;}
._18{width:628.737121pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:97.390587pt;}
.y4e{bottom:97.390667pt;}
.y45{bottom:102.828800pt;}
.y79{bottom:109.391733pt;}
.y4c{bottom:110.187467pt;}
.y4b{bottom:116.270800pt;}
.y4a{bottom:125.546933pt;}
.y23{bottom:125.870267pt;}
.y44{bottom:130.511067pt;}
.y80{bottom:133.067733pt;}
.y78{bottom:136.912533pt;}
.y22{bottom:153.391067pt;}
.y43{bottom:158.031867pt;}
.y77{bottom:164.589600pt;}
.y21{bottom:181.068133pt;}
.y42{bottom:185.708933pt;}
.y76{bottom:192.110400pt;}
.y20{bottom:208.588933pt;}
.y41{bottom:213.229733pt;}
.y75{bottom:219.792667pt;}
.y1f{bottom:236.271200pt;}
.y40{bottom:240.912000pt;}
.y74{bottom:247.308267pt;}
.y1e{bottom:263.792000pt;}
.y3f{bottom:268.427600pt;}
.y73{bottom:274.990533pt;}
.y1d{bottom:291.469067pt;}
.y3e{bottom:296.109867pt;}
.y72{bottom:302.511333pt;}
.y1c{bottom:318.989867pt;}
.y3d{bottom:323.630667pt;}
.y71{bottom:330.188400pt;}
.y49{bottom:330.989333pt;}
.y1b{bottom:346.672133pt;}
.y3c{bottom:351.307733pt;}
.y70{bottom:357.709200pt;}
.y1a{bottom:374.187733pt;}
.y3b{bottom:378.828533pt;}
.y6f{bottom:385.391467pt;}
.y19{bottom:401.870000pt;}
.y3a{bottom:406.349333pt;}
.y6e{bottom:412.912267pt;}
.y18{bottom:429.390800pt;}
.y39{bottom:434.031600pt;}
.y6d{bottom:440.589333pt;}
.y17{bottom:457.067867pt;}
.y38{bottom:461.547200pt;}
.y6c{bottom:468.110133pt;}
.y16{bottom:484.588667pt;}
.y37{bottom:489.229467pt;}
.y6b{bottom:495.792400pt;}
.y15{bottom:512.270933pt;}
.y48{bottom:516.427333pt;}
.y36{bottom:516.750267pt;}
.y6a{bottom:523.308000pt;}
.y14{bottom:539.791733pt;}
.y47{bottom:544.109600pt;}
.y35{bottom:544.427333pt;}
.y69{bottom:550.990267pt;}
.y13{bottom:567.468800pt;}
.y34{bottom:571.948133pt;}
.y68{bottom:578.511067pt;}
.y12{bottom:594.989600pt;}
.y33{bottom:599.630400pt;}
.y67{bottom:606.188133pt;}
.y11{bottom:622.671867pt;}
.y32{bottom:627.151200pt;}
.y66{bottom:633.708933pt;}
.y10{bottom:650.187467pt;}
.y7a{bottom:654.510533pt;}
.y31{bottom:654.828267pt;}
.y65{bottom:661.391200pt;}
.yf{bottom:677.869733pt;}
.y30{bottom:682.349067pt;}
.y64{bottom:688.912000pt;}
.ye{bottom:705.390533pt;}
.y2f{bottom:710.031333pt;}
.y60{bottom:717.229200pt;}
.yd{bottom:733.067600pt;}
.y2e{bottom:737.546933pt;}
.y5c{bottom:744.588533pt;}
.y5f{bottom:744.750000pt;}
.y63{bottom:744.750133pt;}
.yc{bottom:760.588400pt;}
.y2d{bottom:765.229200pt;}
.y5b{bottom:772.109333pt;}
.y5e{bottom:772.427067pt;}
.y62{bottom:772.427200pt;}
.yb{bottom:788.270667pt;}
.y2c{bottom:792.750000pt;}
.y5d{bottom:799.947867pt;}
.y61{bottom:799.948000pt;}
.ya{bottom:815.791467pt;}
.y2b{bottom:820.427067pt;}
.y56{bottom:828.271467pt;}
.y9{bottom:843.150800pt;}
.y2a{bottom:847.947867pt;}
.y55{bottom:855.948533pt;}
.y5a{bottom:855.948667pt;}
.y51{bottom:869.391200pt;}
.y8{bottom:870.989333pt;}
.y29{bottom:875.307200pt;}
.y46{bottom:875.630133pt;}
.y54{bottom:883.469333pt;}
.y59{bottom:883.469467pt;}
.y50{bottom:896.912000pt;}
.y7{bottom:900.427733pt;}
.y28{bottom:903.150933pt;}
.y53{bottom:911.151600pt;}
.y58{bottom:911.151733pt;}
.y6{bottom:921.870400pt;}
.y27{bottom:930.828000pt;}
.y7e{bottom:930.828400pt;}
.y7f{bottom:938.188000pt;}
.y52{bottom:938.672400pt;}
.y57{bottom:938.672533pt;}
.y5{bottom:943.469333pt;}
.y4f{bottom:957.869600pt;}
.y26{bottom:958.348800pt;}
.y7d{bottom:958.349200pt;}
.y4{bottom:963.948000pt;}
.y3{bottom:979.629733pt;}
.y25{bottom:986.031067pt;}
.y7c{bottom:986.031467pt;}
.y2{bottom:996.426667pt;}
.y7b{bottom:1013.229333pt;}
.y1{bottom:1013.390667pt;}
.y24{bottom:1013.546667pt;}
.h8{height:24.013125pt;}
.h7{height:29.794062pt;}
.h3{height:36.909063pt;}
.h2{height:40.911250pt;}
.h6{height:44.437500pt;}
.h5{height:44.468750pt;}
.h1{height:56.843750pt;}
.h4{height:66.507188pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:94.557333pt;}
.xa{left:98.875067pt;}
.xb{left:102.239600pt;}
.x12{left:105.437467pt;}
.xe{left:106.718800pt;}
.x6{left:113.599814pt;}
.xf{left:118.718796pt;}
.xd{left:153.599012pt;}
.x10{left:222.078178pt;}
.xc{left:232.156000pt;}
.x2{left:313.917333pt;}
.x1{left:334.396000pt;}
.x4{left:336.641333pt;}
.x3{left:339.677786pt;}
.x5{left:396.797333pt;}
.x11{left:447.198612pt;}
.x8{left:584.317333pt;}
.x9{left:589.754667pt;}
.x13{left:680.958667pt;}
.x14{left:689.437333pt;}
}

