
    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_a634843bbde5bb42f4d1a70a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.970000;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_64692a63c0ef182da216aa79.woff')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_9acf1d59aafddb272e82253b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_75b4f77d90ec87a32f54a5b2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104980;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_d081905d55538c1a4795c6e2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.728027;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;}
}
.ws2{word-spacing:-15.012000px;}
.ws0{word-spacing:-13.344000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-7.992000px;}
._17{margin-left:-6.897000px;}
._5{margin-left:-5.328000px;}
._6{margin-left:-3.888000px;}
._2{margin-left:-1.944000px;}
._7{width:1.608000px;}
._d{width:2.784000px;}
._10{width:3.816000px;}
._16{width:4.824000px;}
._e{width:5.838000px;}
._4{width:6.912000px;}
._b{width:8.271000px;}
._8{width:9.543000px;}
._14{width:11.514000px;}
._15{width:12.636000px;}
._c{width:13.995000px;}
._a{width:17.739000px;}
._f{width:18.774000px;}
._11{width:21.294000px;}
._9{width:22.299000px;}
._12{width:24.282000px;}
._3{width:88.884000px;}
._1{width:92.772000px;}
._13{width:1007.272200px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:25.395300px;}
.y1{bottom:44.878950px;}
.y39{bottom:90.003600px;}
.y69{bottom:92.374500px;}
.y95{bottom:93.430200px;}
.y38{bottom:106.505100px;}
.y68{bottom:108.876000px;}
.y94{bottom:109.931700px;}
.y37{bottom:123.006600px;}
.y67{bottom:125.377500px;}
.y93{bottom:126.433200px;}
.y36{bottom:139.508100px;}
.y66{bottom:141.879000px;}
.y92{bottom:151.437150px;}
.y65{bottom:158.380500px;}
.y35{bottom:164.512050px;}
.y64{bottom:183.389250px;}
.y91{bottom:189.970650px;}
.y63{bottom:199.890750px;}
.y34{bottom:203.098650px;}
.y90{bottom:206.472150px;}
.y62{bottom:216.392250px;}
.y33{bottom:219.600150px;}
.y8f{bottom:222.973650px;}
.y61{bottom:232.893750px;}
.y32{bottom:236.101650px;}
.y8e{bottom:239.475150px;}
.y60{bottom:249.395250px;}
.y31{bottom:252.603150px;}
.y8d{bottom:255.976650px;}
.y5f{bottom:265.896750px;}
.y30{bottom:269.104650px;}
.y8c{bottom:272.478150px;}
.y5e{bottom:282.398250px;}
.y2f{bottom:285.606150px;}
.y8b{bottom:288.979650px;}
.y5d{bottom:298.899750px;}
.y2e{bottom:302.107650px;}
.y8a{bottom:305.481150px;}
.y5c{bottom:315.401250px;}
.y89{bottom:321.982650px;}
.y2d{bottom:327.116400px;}
.y5b{bottom:331.902750px;}
.y88{bottom:338.484150px;}
.y2c{bottom:343.617900px;}
.y87{bottom:354.985650px;}
.y5a{bottom:356.911500px;}
.y2b{bottom:360.119400px;}
.y86{bottom:371.487150px;}
.y59{bottom:373.413000px;}
.y2a{bottom:376.620900px;}
.y85{bottom:387.988650px;}
.y58{bottom:389.914500px;}
.y29{bottom:393.122400px;}
.y84{bottom:404.490150px;}
.y57{bottom:406.416000px;}
.y28{bottom:409.623900px;}
.y83{bottom:429.498900px;}
.y56{bottom:431.424750px;}
.y27{bottom:434.627850px;}
.y82{bottom:446.000400px;}
.y55{bottom:447.926250px;}
.y9d{bottom:453.994650px;}
.y19{bottom:461.588250px;}
.y81{bottom:462.501900px;}
.y54{bottom:464.427750px;}
.y18{bottom:478.089750px;}
.y80{bottom:479.003400px;}
.y53{bottom:480.929250px;}
.y26{bottom:493.964250px;}
.y7f{bottom:495.504900px;}
.y17{bottom:503.098500px;}
.y52{bottom:505.933200px;}
.y25{bottom:511.064250px;}
.y7e{bottom:512.006400px;}
.y16{bottom:519.600000px;}
.y9c{bottom:528.507900px;}
.y24{bottom:536.073000px;}
.y15{bottom:536.101500px;}
.y7d{bottom:537.015150px;}
.y51{bottom:544.496400px;}
.y9b{bottom:545.009400px;}
.y23{bottom:552.574500px;}
.y14{bottom:552.603000px;}
.y7c{bottom:553.516650px;}
.y50{bottom:560.997900px;}
.y9a{bottom:561.510900px;}
.y22{bottom:569.076000px;}
.y13{bottom:569.104500px;}
.y7b{bottom:570.018150px;}
.y4f{bottom:577.499400px;}
.y21{bottom:585.577500px;}
.y12{bottom:585.606000px;}
.y7a{bottom:586.519650px;}
.y4e{bottom:594.000900px;}
.y20{bottom:602.079000px;}
.y11{bottom:602.107500px;}
.y79{bottom:603.021150px;}
.y1f{bottom:618.580500px;}
.y10{bottom:618.609000px;}
.y4d{bottom:619.009650px;}
.y78{bottom:619.522650px;}
.y1e{bottom:635.082000px;}
.yf{bottom:635.110500px;}
.y4c{bottom:635.511150px;}
.y77{bottom:636.024150px;}
.y1d{bottom:651.583500px;}
.ye{bottom:651.612000px;}
.y4b{bottom:652.012650px;}
.y76{bottom:652.525650px;}
.y1c{bottom:668.085000px;}
.yd{bottom:668.113500px;}
.y4a{bottom:668.514150px;}
.y75{bottom:669.027150px;}
.y1b{bottom:684.586500px;}
.yc{bottom:684.615000px;}
.y49{bottom:685.015650px;}
.y74{bottom:685.528650px;}
.y73{bottom:702.030150px;}
.y1a{bottom:709.595250px;}
.yb{bottom:709.623750px;}
.y48{bottom:710.024400px;}
.y99{bottom:718.531650px;}
.y47{bottom:726.525900px;}
.y72{bottom:727.038900px;}
.ya{bottom:729.258750px;}
.y98{bottom:735.033150px;}
.ya7{bottom:739.851450px;}
.y9{bottom:742.758750px;}
.y46{bottom:743.027400px;}
.y71{bottom:743.540400px;}
.y97{bottom:751.534650px;}
.ya6{bottom:754.849950px;}
.y45{bottom:759.528900px;}
.y70{bottom:760.041900px;}
.y8{bottom:760.506750px;}
.y96{bottom:768.036150px;}
.y7{bottom:774.006750px;}
.ya5{bottom:774.100950px;}
.y44{bottom:776.030400px;}
.y6f{bottom:776.543400px;}
.y43{bottom:792.531900px;}
.y6e{bottom:793.044900px;}
.ya4{bottom:793.351950px;}
.y6{bottom:804.514650px;}
.ya3{bottom:808.350450px;}
.y6d{bottom:809.546400px;}
.y42{bottom:817.540650px;}
.y5{bottom:822.514650px;}
.y6c{bottom:826.047900px;}
.ya2{bottom:827.601450px;}
.y41{bottom:834.042150px;}
.y6b{bottom:842.549400px;}
.ya1{bottom:846.852450px;}
.y40{bottom:850.543650px;}
.y6a{bottom:859.050900px;}
.y4{bottom:861.774600px;}
.ya0{bottom:866.103450px;}
.y3f{bottom:875.552400px;}
.y9f{bottom:881.101950px;}
.y3{bottom:888.774600px;}
.y3e{bottom:892.053900px;}
.y9e{bottom:900.352950px;}
.y3d{bottom:908.555400px;}
.y2{bottom:915.774600px;}
.y3c{bottom:925.056900px;}
.y3b{bottom:968.711100px;}
.h7{height:40.801758px;}
.h2{height:41.580000px;}
.h6{height:43.031250px;}
.hd{height:48.304688px;}
.hc{height:48.410156px;}
.h8{height:50.988281px;}
.ha{height:51.099609px;}
.hb{height:51.461426px;}
.h5{height:53.671875px;}
.h4{height:64.546875px;}
.h9{height:65.003906px;}
.h3{height:97.505859px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:85.039350px;}
.x2{left:106.299150px;}
.x5{left:111.060900px;}
.x7{left:117.852900px;}
.xe{left:127.548150px;}
.x6{left:136.836900px;}
.xd{left:281.914950px;}
.xa{left:292.387800px;}
.xc{left:329.781600px;}
.x1{left:351.041400px;}
.x4{left:381.030150px;}
.x9{left:382.677900px;}
.x3{left:447.028650px;}
.x8{left:554.736900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-13.344000pt;}
.ws0{word-spacing:-11.861333pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-7.104000pt;}
._17{margin-left:-6.130667pt;}
._5{margin-left:-4.736000pt;}
._6{margin-left:-3.456000pt;}
._2{margin-left:-1.728000pt;}
._7{width:1.429333pt;}
._d{width:2.474667pt;}
._10{width:3.392000pt;}
._16{width:4.288000pt;}
._e{width:5.189333pt;}
._4{width:6.144000pt;}
._b{width:7.352000pt;}
._8{width:8.482667pt;}
._14{width:10.234667pt;}
._15{width:11.232000pt;}
._c{width:12.440000pt;}
._a{width:15.768000pt;}
._f{width:16.688000pt;}
._11{width:18.928000pt;}
._9{width:19.821333pt;}
._12{width:21.584000pt;}
._3{width:79.008000pt;}
._1{width:82.464000pt;}
._13{width:895.353067pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:22.573600pt;}
.y1{bottom:39.892400pt;}
.y39{bottom:80.003200pt;}
.y69{bottom:82.110667pt;}
.y95{bottom:83.049067pt;}
.y38{bottom:94.671200pt;}
.y68{bottom:96.778667pt;}
.y94{bottom:97.717067pt;}
.y37{bottom:109.339200pt;}
.y67{bottom:111.446667pt;}
.y93{bottom:112.385067pt;}
.y36{bottom:124.007200pt;}
.y66{bottom:126.114667pt;}
.y92{bottom:134.610800pt;}
.y65{bottom:140.782667pt;}
.y35{bottom:146.232933pt;}
.y64{bottom:163.012667pt;}
.y91{bottom:168.862800pt;}
.y63{bottom:177.680667pt;}
.y34{bottom:180.532133pt;}
.y90{bottom:183.530800pt;}
.y62{bottom:192.348667pt;}
.y33{bottom:195.200133pt;}
.y8f{bottom:198.198800pt;}
.y61{bottom:207.016667pt;}
.y32{bottom:209.868133pt;}
.y8e{bottom:212.866800pt;}
.y60{bottom:221.684667pt;}
.y31{bottom:224.536133pt;}
.y8d{bottom:227.534800pt;}
.y5f{bottom:236.352667pt;}
.y30{bottom:239.204133pt;}
.y8c{bottom:242.202800pt;}
.y5e{bottom:251.020667pt;}
.y2f{bottom:253.872133pt;}
.y8b{bottom:256.870800pt;}
.y5d{bottom:265.688667pt;}
.y2e{bottom:268.540133pt;}
.y8a{bottom:271.538800pt;}
.y5c{bottom:280.356667pt;}
.y89{bottom:286.206800pt;}
.y2d{bottom:290.770133pt;}
.y5b{bottom:295.024667pt;}
.y88{bottom:300.874800pt;}
.y2c{bottom:305.438133pt;}
.y87{bottom:315.542800pt;}
.y5a{bottom:317.254667pt;}
.y2b{bottom:320.106133pt;}
.y86{bottom:330.210800pt;}
.y59{bottom:331.922667pt;}
.y2a{bottom:334.774133pt;}
.y85{bottom:344.878800pt;}
.y58{bottom:346.590667pt;}
.y29{bottom:349.442133pt;}
.y84{bottom:359.546800pt;}
.y57{bottom:361.258667pt;}
.y28{bottom:364.110133pt;}
.y83{bottom:381.776800pt;}
.y56{bottom:383.488667pt;}
.y27{bottom:386.335867pt;}
.y82{bottom:396.444800pt;}
.y55{bottom:398.156667pt;}
.y9d{bottom:403.550800pt;}
.y19{bottom:410.300667pt;}
.y81{bottom:411.112800pt;}
.y54{bottom:412.824667pt;}
.y18{bottom:424.968667pt;}
.y80{bottom:425.780800pt;}
.y53{bottom:427.492667pt;}
.y26{bottom:439.079333pt;}
.y7f{bottom:440.448800pt;}
.y17{bottom:447.198667pt;}
.y52{bottom:449.718400pt;}
.y25{bottom:454.279333pt;}
.y7e{bottom:455.116800pt;}
.y16{bottom:461.866667pt;}
.y9c{bottom:469.784800pt;}
.y24{bottom:476.509333pt;}
.y15{bottom:476.534667pt;}
.y7d{bottom:477.346800pt;}
.y51{bottom:483.996800pt;}
.y9b{bottom:484.452800pt;}
.y23{bottom:491.177333pt;}
.y14{bottom:491.202667pt;}
.y7c{bottom:492.014800pt;}
.y50{bottom:498.664800pt;}
.y9a{bottom:499.120800pt;}
.y22{bottom:505.845333pt;}
.y13{bottom:505.870667pt;}
.y7b{bottom:506.682800pt;}
.y4f{bottom:513.332800pt;}
.y21{bottom:520.513333pt;}
.y12{bottom:520.538667pt;}
.y7a{bottom:521.350800pt;}
.y4e{bottom:528.000800pt;}
.y20{bottom:535.181333pt;}
.y11{bottom:535.206667pt;}
.y79{bottom:536.018800pt;}
.y1f{bottom:549.849333pt;}
.y10{bottom:549.874667pt;}
.y4d{bottom:550.230800pt;}
.y78{bottom:550.686800pt;}
.y1e{bottom:564.517333pt;}
.yf{bottom:564.542667pt;}
.y4c{bottom:564.898800pt;}
.y77{bottom:565.354800pt;}
.y1d{bottom:579.185333pt;}
.ye{bottom:579.210667pt;}
.y4b{bottom:579.566800pt;}
.y76{bottom:580.022800pt;}
.y1c{bottom:593.853333pt;}
.yd{bottom:593.878667pt;}
.y4a{bottom:594.234800pt;}
.y75{bottom:594.690800pt;}
.y1b{bottom:608.521333pt;}
.yc{bottom:608.546667pt;}
.y49{bottom:608.902800pt;}
.y74{bottom:609.358800pt;}
.y73{bottom:624.026800pt;}
.y1a{bottom:630.751333pt;}
.yb{bottom:630.776667pt;}
.y48{bottom:631.132800pt;}
.y99{bottom:638.694800pt;}
.y47{bottom:645.800800pt;}
.y72{bottom:646.256800pt;}
.ya{bottom:648.230000pt;}
.y98{bottom:653.362800pt;}
.ya7{bottom:657.645733pt;}
.y9{bottom:660.230000pt;}
.y46{bottom:660.468800pt;}
.y71{bottom:660.924800pt;}
.y97{bottom:668.030800pt;}
.ya6{bottom:670.977733pt;}
.y45{bottom:675.136800pt;}
.y70{bottom:675.592800pt;}
.y8{bottom:676.006000pt;}
.y96{bottom:682.698800pt;}
.y7{bottom:688.006000pt;}
.ya5{bottom:688.089733pt;}
.y44{bottom:689.804800pt;}
.y6f{bottom:690.260800pt;}
.y43{bottom:704.472800pt;}
.y6e{bottom:704.928800pt;}
.ya4{bottom:705.201733pt;}
.y6{bottom:715.124133pt;}
.ya3{bottom:718.533733pt;}
.y6d{bottom:719.596800pt;}
.y42{bottom:726.702800pt;}
.y5{bottom:731.124133pt;}
.y6c{bottom:734.264800pt;}
.ya2{bottom:735.645733pt;}
.y41{bottom:741.370800pt;}
.y6b{bottom:748.932800pt;}
.ya1{bottom:752.757733pt;}
.y40{bottom:756.038800pt;}
.y6a{bottom:763.600800pt;}
.y4{bottom:766.021867pt;}
.ya0{bottom:769.869733pt;}
.y3f{bottom:778.268800pt;}
.y9f{bottom:783.201733pt;}
.y3{bottom:790.021867pt;}
.y3e{bottom:792.936800pt;}
.y9e{bottom:800.313733pt;}
.y3d{bottom:807.604800pt;}
.y2{bottom:814.021867pt;}
.y3c{bottom:822.272800pt;}
.y3b{bottom:861.076533pt;}
.h7{height:36.268229pt;}
.h2{height:36.960000pt;}
.h6{height:38.250000pt;}
.hd{height:42.937500pt;}
.hc{height:43.031250pt;}
.h8{height:45.322917pt;}
.ha{height:45.421875pt;}
.hb{height:45.743490pt;}
.h5{height:47.708333pt;}
.h4{height:57.375000pt;}
.h9{height:57.781250pt;}
.h3{height:86.671875pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:75.590533pt;}
.x2{left:94.488133pt;}
.x5{left:98.720800pt;}
.x7{left:104.758133pt;}
.xe{left:113.376133pt;}
.x6{left:121.632800pt;}
.xd{left:250.591067pt;}
.xa{left:259.900267pt;}
.xc{left:293.139200pt;}
.x1{left:312.036800pt;}
.x4{left:338.693467pt;}
.x9{left:340.158133pt;}
.x3{left:397.358800pt;}
.x8{left:493.099467pt;}
}

