
    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_e222e0c3650e8db8b2c9a8b5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.020020;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_24c8042b3b268a9f0d1139aa.woff')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_f4aaa62c2fe830bda3944a7c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.096680;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_cd4ff26180630d6d0f73d5c8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_b8c7c4035eceedc2d2a74471.woff')format("woff");}.ff5{font-family:ff5;line-height:1.001953;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_a4c3ea27d41a4ceff64211c5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_f256ef0f8f19f34e8c16cb27.woff')format("woff");}.ff7{font-family:ff7;line-height:0.891602;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_f11f05c85b144cee8e2d633b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.002930;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:ff9;src:url('chunks/assets/font_cc74d3260b752ed6e0a8d3bf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.891602;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:ffa;src:url('chunks/assets/font_9c47e12f6aa76822a4f051f1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.096680;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);}
.v2{vertical-align:-21.980130px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls2{letter-spacing:-7.062000px;}
.ls1{letter-spacing:-0.330000px;}
.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;}
}
.ws1{word-spacing:-14.916000px;}
.ws2{word-spacing:-14.520000px;}
.ws8{word-spacing:-13.560000px;}
.ws0{word-spacing:-8.696028px;}
.ws9{word-spacing:-7.854000px;}
.wsa{word-spacing:-3.498000px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:0.330000px;}
.wsb{word-spacing:3.828000px;}
.ws4{word-spacing:5.610000px;}
.ws6{word-spacing:15.378000px;}
.ws7{word-spacing:20.130000px;}
._6{margin-left:-8.177400px;}
._16{margin-left:-7.108200px;}
._3{margin-left:-6.046956px;}
._7{margin-left:-4.871286px;}
._1{margin-left:-3.429000px;}
._2{margin-left:-2.296314px;}
._0{margin-left:-1.026000px;}
._b{width:1.003200px;}
._9{width:2.844600px;}
._a{width:4.147314px;}
._5{width:5.293200px;}
._4{width:6.507600px;}
._c{width:7.912428px;}
._e{width:9.398400px;}
._d{width:10.559514px;}
._8{width:11.728200px;}
._19{width:12.949200px;}
._10{width:16.321314px;}
._15{width:17.925000px;}
._14{width:18.994314px;}
._f{width:20.915400px;}
._17{width:22.426800px;}
._13{width:26.023314px;}
._18{width:29.144514px;}
._12{width:31.376886px;}
._11{width:33.349314px;}
.fc2{color:rgb(104,125,159);}
.fc1{color:rgb(32,66,118);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.478000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.457100px;}
.y4e{bottom:91.960800px;}
.y4d{bottom:109.960800px;}
.y21{bottom:111.004200px;}
.y66{bottom:127.098150px;}
.y20{bottom:133.510200px;}
.y39{bottom:138.832050px;}
.y65{bottom:149.604150px;}
.y1f{bottom:156.016200px;}
.y38{bottom:156.832050px;}
.y64{bottom:172.110150px;}
.y1e{bottom:178.522200px;}
.y63{bottom:207.370650px;}
.y1d{bottom:213.782700px;}
.y62{bottom:229.876650px;}
.y1c{bottom:236.288700px;}
.y61{bottom:252.382650px;}
.y1b{bottom:258.794700px;}
.y4c{bottom:272.086200px;}
.y60{bottom:274.888650px;}
.y1a{bottom:281.300700px;}
.y4b{bottom:294.592200px;}
.y5f{bottom:310.149150px;}
.y19{bottom:316.561200px;}
.y4a{bottom:317.098200px;}
.y5e{bottom:332.655150px;}
.y49{bottom:352.358700px;}
.y5d{bottom:355.161150px;}
.y18{bottom:360.319200px;}
.y37{bottom:365.407650px;}
.y48{bottom:374.864700px;}
.y5c{bottom:377.667150px;}
.y17{bottom:382.825200px;}
.y36{bottom:387.913650px;}
.y47{bottom:397.370700px;}
.y16{bottom:405.331200px;}
.y35{bottom:410.419650px;}
.y5b{bottom:412.927650px;}
.y46{bottom:419.876700px;}
.y15{bottom:427.837200px;}
.y34{bottom:432.925650px;}
.y45{bottom:442.382700px;}
.y14{bottom:450.343200px;}
.y33{bottom:455.431650px;}
.y5a{bottom:456.685650px;}
.y44{bottom:464.888700px;}
.y13{bottom:472.849200px;}
.y59{bottom:479.191650px;}
.y32{bottom:490.692150px;}
.y12{bottom:495.355200px;}
.y43{bottom:500.144550px;}
.y31{bottom:513.198150px;}
.y58{bottom:514.452150px;}
.y11{bottom:517.861200px;}
.y42{bottom:518.144550px;}
.y30{bottom:535.704150px;}
.y57{bottom:536.958150px;}
.y10{bottom:540.367200px;}
.yf{bottom:562.873200px;}
.y2f{bottom:570.964650px;}
.y56{bottom:572.218650px;}
.ye{bottom:585.379200px;}
.y2e{bottom:593.470650px;}
.y2d{bottom:615.976650px;}
.yd{bottom:620.639700px;}
.y55{bottom:638.482650px;}
.y2c{bottom:651.237150px;}
.yc{bottom:664.397700px;}
.y2b{bottom:673.743150px;}
.y2a{bottom:696.249150px;}
.yb{bottom:699.658200px;}
.y54{bottom:718.755150px;}
.y41{bottom:726.793350px;}
.ya{bottom:727.658700px;}
.y29{bottom:731.509650px;}
.y53{bottom:741.261150px;}
.y40{bottom:749.299350px;}
.y9{bottom:757.414050px;}
.y28{bottom:775.267650px;}
.y52{bottom:776.521650px;}
.y3f{bottom:784.559850px;}
.y8{bottom:785.415083px;}
.y27{bottom:797.773650px;}
.y51{bottom:799.027650px;}
.y3e{bottom:807.065850px;}
.y7{bottom:815.170050px;}
.y68{bottom:820.279650px;}
.y50{bottom:821.533650px;}
.y26{bottom:833.034150px;}
.y6{bottom:837.676050px;}
.y3d{bottom:842.326350px;}
.y67{bottom:842.785650px;}
.y25{bottom:855.540150px;}
.y4f{bottom:856.794150px;}
.y3c{bottom:864.832350px;}
.y5{bottom:872.931900px;}
.y24{bottom:878.046150px;}
.y3b{bottom:887.338350px;}
.y4{bottom:895.431900px;}
.y23{bottom:900.552150px;}
.y3{bottom:917.931900px;}
.y3a{bottom:922.598850px;}
.y22{bottom:923.058150px;}
.y2{bottom:967.686000px;}
.h6{height:26.303320px;}
.h8{height:27.449394px;}
.h3{height:36.914062px;}
.hb{height:38.522461px;}
.h2{height:45.457031px;}
.h7{height:47.083008px;}
.hd{height:49.482422px;}
.hc{height:50.507812px;}
.h5{height:54.430664px;}
.h9{height:55.558594px;}
.ha{height:57.943359px;}
.h4{height:79.013672px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xd{left:85.037400px;}
.x6{left:91.218000px;}
.x9{left:95.176950px;}
.xc{left:102.048900px;}
.xe{left:109.511850px;}
.x13{left:110.548350px;}
.x10{left:115.001400px;}
.x14{left:127.559850px;}
.x11{left:139.361400px;}
.x4{left:149.291250px;}
.x2{left:151.788750px;}
.x3{left:182.658750px;}
.xb{left:193.458900px;}
.x5{left:196.203750px;}
.xf{left:210.896850px;}
.x12{left:236.882400px;}
.xa{left:245.763900px;}
.x7{left:285.886050px;}
.x8{left:328.748550px;}
.x1{left:351.153900px;}
@media print{
.v2{vertical-align:-19.537893pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls2{letter-spacing:-6.277333pt;}
.ls1{letter-spacing:-0.293333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-13.258667pt;}
.ws2{word-spacing:-12.906667pt;}
.ws8{word-spacing:-12.053333pt;}
.ws0{word-spacing:-7.729803pt;}
.ws9{word-spacing:-6.981333pt;}
.wsa{word-spacing:-3.109333pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:0.293333pt;}
.wsb{word-spacing:3.402667pt;}
.ws4{word-spacing:4.986667pt;}
.ws6{word-spacing:13.669333pt;}
.ws7{word-spacing:17.893333pt;}
._6{margin-left:-7.268800pt;}
._16{margin-left:-6.318400pt;}
._3{margin-left:-5.375072pt;}
._7{margin-left:-4.330032pt;}
._1{margin-left:-3.048000pt;}
._2{margin-left:-2.041168pt;}
._0{margin-left:-0.912000pt;}
._b{width:0.891733pt;}
._9{width:2.528533pt;}
._a{width:3.686501pt;}
._5{width:4.705067pt;}
._4{width:5.784533pt;}
._c{width:7.033269pt;}
._e{width:8.354133pt;}
._d{width:9.386235pt;}
._8{width:10.425067pt;}
._19{width:11.510400pt;}
._10{width:14.507835pt;}
._15{width:15.933333pt;}
._14{width:16.883835pt;}
._f{width:18.591467pt;}
._17{width:19.934933pt;}
._13{width:23.131835pt;}
._18{width:25.906235pt;}
._12{width:27.890565pt;}
._11{width:29.643835pt;}
.fs3{font-size:34.202667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.295200pt;}
.y4e{bottom:81.742933pt;}
.y4d{bottom:97.742933pt;}
.y21{bottom:98.670400pt;}
.y66{bottom:112.976133pt;}
.y20{bottom:118.675733pt;}
.y39{bottom:123.406267pt;}
.y65{bottom:132.981467pt;}
.y1f{bottom:138.681067pt;}
.y38{bottom:139.406267pt;}
.y64{bottom:152.986800pt;}
.y1e{bottom:158.686400pt;}
.y63{bottom:184.329467pt;}
.y1d{bottom:190.029067pt;}
.y62{bottom:204.334800pt;}
.y1c{bottom:210.034400pt;}
.y61{bottom:224.340133pt;}
.y1b{bottom:230.039733pt;}
.y4c{bottom:241.854400pt;}
.y60{bottom:244.345467pt;}
.y1a{bottom:250.045067pt;}
.y4b{bottom:261.859733pt;}
.y5f{bottom:275.688133pt;}
.y19{bottom:281.387733pt;}
.y4a{bottom:281.865067pt;}
.y5e{bottom:295.693467pt;}
.y49{bottom:313.207733pt;}
.y5d{bottom:315.698800pt;}
.y18{bottom:320.283733pt;}
.y37{bottom:324.806800pt;}
.y48{bottom:333.213067pt;}
.y5c{bottom:335.704133pt;}
.y17{bottom:340.289067pt;}
.y36{bottom:344.812133pt;}
.y47{bottom:353.218400pt;}
.y16{bottom:360.294400pt;}
.y35{bottom:364.817467pt;}
.y5b{bottom:367.046800pt;}
.y46{bottom:373.223733pt;}
.y15{bottom:380.299733pt;}
.y34{bottom:384.822800pt;}
.y45{bottom:393.229067pt;}
.y14{bottom:400.305067pt;}
.y33{bottom:404.828133pt;}
.y5a{bottom:405.942800pt;}
.y44{bottom:413.234400pt;}
.y13{bottom:420.310400pt;}
.y59{bottom:425.948133pt;}
.y32{bottom:436.170800pt;}
.y12{bottom:440.315733pt;}
.y43{bottom:444.572933pt;}
.y31{bottom:456.176133pt;}
.y58{bottom:457.290800pt;}
.y11{bottom:460.321067pt;}
.y42{bottom:460.572933pt;}
.y30{bottom:476.181467pt;}
.y57{bottom:477.296133pt;}
.y10{bottom:480.326400pt;}
.yf{bottom:500.331733pt;}
.y2f{bottom:507.524133pt;}
.y56{bottom:508.638800pt;}
.ye{bottom:520.337067pt;}
.y2e{bottom:527.529467pt;}
.y2d{bottom:547.534800pt;}
.yd{bottom:551.679733pt;}
.y55{bottom:567.540133pt;}
.y2c{bottom:578.877467pt;}
.yc{bottom:590.575733pt;}
.y2b{bottom:598.882800pt;}
.y2a{bottom:618.888133pt;}
.yb{bottom:621.918400pt;}
.y54{bottom:638.893467pt;}
.y41{bottom:646.038533pt;}
.ya{bottom:646.807733pt;}
.y29{bottom:650.230800pt;}
.y53{bottom:658.898800pt;}
.y40{bottom:666.043867pt;}
.y9{bottom:673.256933pt;}
.y28{bottom:689.126800pt;}
.y52{bottom:690.241467pt;}
.y3f{bottom:697.386533pt;}
.y8{bottom:698.146740pt;}
.y27{bottom:709.132133pt;}
.y51{bottom:710.246800pt;}
.y3e{bottom:717.391867pt;}
.y7{bottom:724.595600pt;}
.y68{bottom:729.137467pt;}
.y50{bottom:730.252133pt;}
.y26{bottom:740.474800pt;}
.y6{bottom:744.600933pt;}
.y3d{bottom:748.734533pt;}
.y67{bottom:749.142800pt;}
.y25{bottom:760.480133pt;}
.y4f{bottom:761.594800pt;}
.y3c{bottom:768.739867pt;}
.y5{bottom:775.939467pt;}
.y24{bottom:780.485467pt;}
.y3b{bottom:788.745200pt;}
.y4{bottom:795.939467pt;}
.y23{bottom:800.490800pt;}
.y3{bottom:815.939467pt;}
.y3a{bottom:820.087867pt;}
.y22{bottom:820.496133pt;}
.y2{bottom:860.165333pt;}
.h6{height:23.380729pt;}
.h8{height:24.399461pt;}
.h3{height:32.812500pt;}
.hb{height:34.242188pt;}
.h2{height:40.406250pt;}
.h7{height:41.851562pt;}
.hd{height:43.984375pt;}
.hc{height:44.895833pt;}
.h5{height:48.382813pt;}
.h9{height:49.385417pt;}
.ha{height:51.505208pt;}
.h4{height:70.234375pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xd{left:75.588800pt;}
.x6{left:81.082667pt;}
.x9{left:84.601733pt;}
.xc{left:90.710133pt;}
.xe{left:97.343867pt;}
.x13{left:98.265200pt;}
.x10{left:102.223467pt;}
.x14{left:113.386533pt;}
.x11{left:123.876800pt;}
.x4{left:132.703333pt;}
.x2{left:134.923333pt;}
.x3{left:162.363333pt;}
.xb{left:171.963467pt;}
.x5{left:174.403333pt;}
.xf{left:187.463867pt;}
.x12{left:210.562133pt;}
.xa{left:218.456800pt;}
.x7{left:254.120933pt;}
.x8{left:292.220933pt;}
.x1{left:312.136800pt;}
}

