
    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_bf73c3f9a51443de14567e73.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_c9f4bdebbceeba0766c51ef7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.063477;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_0919210e78650366e9042095.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_391ad6fbcf8d680b4e00f9c7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls6{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.014400px;}
.ls11{letter-spacing:0.060000px;}
.ls2{letter-spacing:0.060540px;}
.ls12{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.239940px;}
.ls18{letter-spacing:0.240000px;}
.lse{letter-spacing:0.242064px;}
.lsb{letter-spacing:0.253872px;}
.ls15{letter-spacing:0.318816px;}
.lsa{letter-spacing:0.320280px;}
.ls1d{letter-spacing:0.348336px;}
.ls16{letter-spacing:0.383760px;}
.lsd{letter-spacing:0.419184px;}
.ls5{letter-spacing:0.478224px;}
.ls1a{letter-spacing:0.480000px;}
.ls9{letter-spacing:0.537264px;}
.ls4{letter-spacing:0.539340px;}
.ls7{letter-spacing:0.543168px;}
.lsc{letter-spacing:0.578592px;}
.ls1b{letter-spacing:0.602640px;}
.ls1c{letter-spacing:0.637632px;}
.ls17{letter-spacing:0.702576px;}
.lsf{letter-spacing:0.738000px;}
.ls8{letter-spacing:0.802944px;}
.ls10{letter-spacing:0.897408px;}
.ls14{letter-spacing:4.623000px;}
.ls13{letter-spacing:5.176500px;}
.ls19{letter-spacing:5.334600px;}
.ls1e{letter-spacing:12.810000px;}
.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:-18.014400px;}
.ws5{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.985600px;}
.wsb{word-spacing:-16.802640px;}
.ws6{word-spacing:-15.657408px;}
.ws9{word-spacing:-15.462576px;}
.wsa{word-spacing:-15.338592px;}
.wsc{word-spacing:-15.240000px;}
.ws4{word-spacing:-15.238224px;}
.ws8{word-spacing:-15.179184px;}
.wsd{word-spacing:-15.143760px;}
.ws7{word-spacing:-15.013872px;}
.ws2{word-spacing:-11.880000px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-14.400000px;}
._13{margin-left:-7.199400px;}
._f{margin-left:-1.003140px;}
._4{width:1.423860px;}
._1{width:2.484000px;}
._5{width:3.819060px;}
._8{width:5.497740px;}
._6{width:7.060260px;}
._10{width:8.451480px;}
._11{width:10.123200px;}
._9{width:11.520000px;}
._16{width:12.722400px;}
._3{width:14.529600px;}
._a{width:16.394400px;}
._14{width:19.180800px;}
._2{width:20.815860px;}
._1d{width:22.161600px;}
._d{width:23.227200px;}
._e{width:25.117260px;}
._15{width:26.409480px;}
._1f{width:27.417960px;}
._c{width:28.576800px;}
._0{width:30.586260px;}
._7{width:32.384940px;}
._1c{width:33.650820px;}
._17{width:34.768800px;}
._1a{width:35.862840px;}
._b{width:36.917220px;}
._18{width:38.010540px;}
._1b{width:39.664800px;}
._19{width:41.601600px;}
._20{width:45.907200px;}
._21{width:46.958220px;}
._1e{width:53.373600px;}
.fc1{color:rgb(95,73,122);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:47.520000px;}
.fs1{font-size:59.040000px;}
.fs0{font-size:64.800000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs6{font-size:95.040000px;}
.y0{bottom:0.000000px;}
.y1{bottom:61.515015px;}
.y3{bottom:154.439985px;}
.y2{bottom:171.719985px;}
.y22{bottom:190.439985px;}
.y1f{bottom:197.279985px;}
.y39{bottom:207.719985px;}
.y21{bottom:214.559985px;}
.y57{bottom:219.599985px;}
.y20{bottom:224.999985px;}
.y1e{bottom:228.239985px;}
.y38{bottom:242.279985px;}
.y34{bottom:245.519985px;}
.y56{bottom:250.559985px;}
.y1d{bottom:259.199985px;}
.y37{bottom:259.559985px;}
.y33{bottom:276.479985px;}
.y55{bottom:281.879985px;}
.y36{bottom:283.679985px;}
.y1c{bottom:290.519985px;}
.y35{bottom:294.119985px;}
.y32{bottom:307.799985px;}
.y54{bottom:312.839985px;}
.y1b{bottom:321.479985px;}
.y31{bottom:338.759985px;}
.y53{bottom:343.799985px;}
.y1a{bottom:352.439985px;}
.y52{bottom:364.679985px;}
.y30{bottom:369.719985px;}
.y19{bottom:383.399985px;}
.y51{bottom:384.839985px;}
.y2f{bottom:400.679985px;}
.y50{bottom:401.759985px;}
.y18{bottom:414.719985px;}
.y4f{bottom:419.039985px;}
.y2e{bottom:431.999985px;}
.y4e{bottom:436.319985px;}
.y17{bottom:445.679985px;}
.y4d{bottom:453.599985px;}
.y2d{bottom:462.959985px;}
.y4c{bottom:470.879985px;}
.y16{bottom:476.639985px;}
.y4b{bottom:488.159985px;}
.y2c{bottom:493.919985px;}
.y4a{bottom:505.439985px;}
.y15{bottom:507.599985px;}
.y49{bottom:522.719985px;}
.y2b{bottom:524.879985px;}
.y14{bottom:538.919985px;}
.y48{bottom:539.999985px;}
.y2a{bottom:555.839985px;}
.y47{bottom:557.279985px;}
.y13{bottom:569.879985px;}
.y46{bottom:574.559985px;}
.y29{bottom:587.159985px;}
.y45{bottom:591.839985px;}
.y12{bottom:600.839985px;}
.y44{bottom:608.759985px;}
.y28{bottom:618.119985px;}
.y43{bottom:626.039985px;}
.y11{bottom:631.799985px;}
.y27{bottom:638.279985px;}
.y42{bottom:643.319985px;}
.y26{bottom:655.559985px;}
.y41{bottom:660.599985px;}
.y10{bottom:663.119985px;}
.y25{bottom:672.839985px;}
.y40{bottom:677.879985px;}
.y24{bottom:690.119985px;}
.yf{bottom:694.079985px;}
.y3f{bottom:695.159985px;}
.y23{bottom:707.399985px;}
.y3e{bottom:712.439985px;}
.ye{bottom:725.039985px;}
.y3d{bottom:729.719985px;}
.y3c{bottom:746.999985px;}
.yd{bottom:755.999985px;}
.y3b{bottom:764.279985px;}
.yc{bottom:787.319985px;}
.y3a{bottom:790.199985px;}
.yb{bottom:818.279985px;}
.ya{bottom:849.239985px;}
.y9{bottom:880.199985px;}
.y8{bottom:911.159985px;}
.y7{bottom:942.479985px;}
.y6{bottom:973.439985px;}
.y5{bottom:1004.399985px;}
.y4{bottom:1035.359985px;}
.h9{height:34.114922px;}
.h6{height:49.992188px;}
.h4{height:51.804141px;}
.h3{height:56.858203px;}
.h7{height:63.175781px;}
.ha{height:63.344531px;}
.h5{height:63.949219px;}
.h8{height:74.816016px;}
.h2{height:1194.840000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:865.935000px;}
.w0{width:892.935000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:13.500000px;}
.x3{left:113.760135px;}
.xa{left:135.060045px;}
.x5{left:152.841000px;}
.xb{left:177.585150px;}
.x4{left:187.606200px;}
.x6{left:191.117400px;}
.xd{left:198.885150px;}
.x7{left:560.060700px;}
.x8{left:562.038150px;}
.xc{left:692.535300px;}
.x2{left:700.785300px;}
.x9{left:709.035300px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls6{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.012800pt;}
.ls11{letter-spacing:0.053333pt;}
.ls2{letter-spacing:0.053813pt;}
.ls12{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.213280pt;}
.ls18{letter-spacing:0.213333pt;}
.lse{letter-spacing:0.215168pt;}
.lsb{letter-spacing:0.225664pt;}
.ls15{letter-spacing:0.283392pt;}
.lsa{letter-spacing:0.284693pt;}
.ls1d{letter-spacing:0.309632pt;}
.ls16{letter-spacing:0.341120pt;}
.lsd{letter-spacing:0.372608pt;}
.ls5{letter-spacing:0.425088pt;}
.ls1a{letter-spacing:0.426667pt;}
.ls9{letter-spacing:0.477568pt;}
.ls4{letter-spacing:0.479413pt;}
.ls7{letter-spacing:0.482816pt;}
.lsc{letter-spacing:0.514304pt;}
.ls1b{letter-spacing:0.535680pt;}
.ls1c{letter-spacing:0.566784pt;}
.ls17{letter-spacing:0.624512pt;}
.lsf{letter-spacing:0.656000pt;}
.ls8{letter-spacing:0.713728pt;}
.ls10{letter-spacing:0.797696pt;}
.ls14{letter-spacing:4.109333pt;}
.ls13{letter-spacing:4.601333pt;}
.ls19{letter-spacing:4.741867pt;}
.ls1e{letter-spacing:11.386667pt;}
.ws0{word-spacing:-16.012800pt;}
.ws5{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.987200pt;}
.wsb{word-spacing:-14.935680pt;}
.ws6{word-spacing:-13.917696pt;}
.ws9{word-spacing:-13.744512pt;}
.wsa{word-spacing:-13.634304pt;}
.wsc{word-spacing:-13.546667pt;}
.ws4{word-spacing:-13.545088pt;}
.ws8{word-spacing:-13.492608pt;}
.wsd{word-spacing:-13.461120pt;}
.ws7{word-spacing:-13.345664pt;}
.ws2{word-spacing:-10.560000pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-12.800000pt;}
._13{margin-left:-6.399467pt;}
._f{margin-left:-0.891680pt;}
._4{width:1.265653pt;}
._1{width:2.208000pt;}
._5{width:3.394720pt;}
._8{width:4.886880pt;}
._6{width:6.275787pt;}
._10{width:7.512427pt;}
._11{width:8.998400pt;}
._9{width:10.240000pt;}
._16{width:11.308800pt;}
._3{width:12.915200pt;}
._a{width:14.572800pt;}
._14{width:17.049600pt;}
._2{width:18.502987pt;}
._1d{width:19.699200pt;}
._d{width:20.646400pt;}
._e{width:22.326453pt;}
._15{width:23.475093pt;}
._1f{width:24.371520pt;}
._c{width:25.401600pt;}
._0{width:27.187787pt;}
._7{width:28.786613pt;}
._1c{width:29.911840pt;}
._17{width:30.905600pt;}
._1a{width:31.878080pt;}
._b{width:32.815307pt;}
._18{width:33.787147pt;}
._1b{width:35.257600pt;}
._19{width:36.979200pt;}
._20{width:40.806400pt;}
._21{width:41.740640pt;}
._1e{width:47.443200pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.240000pt;}
.fs1{font-size:52.480000pt;}
.fs0{font-size:57.600000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs6{font-size:84.480000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:54.680013pt;}
.y3{bottom:137.279987pt;}
.y2{bottom:152.639987pt;}
.y22{bottom:169.279987pt;}
.y1f{bottom:175.359987pt;}
.y39{bottom:184.639987pt;}
.y21{bottom:190.719987pt;}
.y57{bottom:195.199987pt;}
.y20{bottom:199.999987pt;}
.y1e{bottom:202.879987pt;}
.y38{bottom:215.359987pt;}
.y34{bottom:218.239987pt;}
.y56{bottom:222.719987pt;}
.y1d{bottom:230.399987pt;}
.y37{bottom:230.719987pt;}
.y33{bottom:245.759987pt;}
.y55{bottom:250.559987pt;}
.y36{bottom:252.159987pt;}
.y1c{bottom:258.239987pt;}
.y35{bottom:261.439987pt;}
.y32{bottom:273.599987pt;}
.y54{bottom:278.079987pt;}
.y1b{bottom:285.759987pt;}
.y31{bottom:301.119987pt;}
.y53{bottom:305.599987pt;}
.y1a{bottom:313.279987pt;}
.y52{bottom:324.159987pt;}
.y30{bottom:328.639987pt;}
.y19{bottom:340.799987pt;}
.y51{bottom:342.079987pt;}
.y2f{bottom:356.159987pt;}
.y50{bottom:357.119987pt;}
.y18{bottom:368.639987pt;}
.y4f{bottom:372.479987pt;}
.y2e{bottom:383.999987pt;}
.y4e{bottom:387.839987pt;}
.y17{bottom:396.159987pt;}
.y4d{bottom:403.199987pt;}
.y2d{bottom:411.519987pt;}
.y4c{bottom:418.559987pt;}
.y16{bottom:423.679987pt;}
.y4b{bottom:433.919987pt;}
.y2c{bottom:439.039987pt;}
.y4a{bottom:449.279987pt;}
.y15{bottom:451.199987pt;}
.y49{bottom:464.639987pt;}
.y2b{bottom:466.559987pt;}
.y14{bottom:479.039987pt;}
.y48{bottom:479.999987pt;}
.y2a{bottom:494.079987pt;}
.y47{bottom:495.359987pt;}
.y13{bottom:506.559987pt;}
.y46{bottom:510.719987pt;}
.y29{bottom:521.919987pt;}
.y45{bottom:526.079987pt;}
.y12{bottom:534.079987pt;}
.y44{bottom:541.119987pt;}
.y28{bottom:549.439987pt;}
.y43{bottom:556.479987pt;}
.y11{bottom:561.599987pt;}
.y27{bottom:567.359987pt;}
.y42{bottom:571.839987pt;}
.y26{bottom:582.719987pt;}
.y41{bottom:587.199987pt;}
.y10{bottom:589.439987pt;}
.y25{bottom:598.079987pt;}
.y40{bottom:602.559987pt;}
.y24{bottom:613.439987pt;}
.yf{bottom:616.959987pt;}
.y3f{bottom:617.919987pt;}
.y23{bottom:628.799987pt;}
.y3e{bottom:633.279987pt;}
.ye{bottom:644.479987pt;}
.y3d{bottom:648.639987pt;}
.y3c{bottom:663.999987pt;}
.yd{bottom:671.999987pt;}
.y3b{bottom:679.359987pt;}
.yc{bottom:699.839987pt;}
.y3a{bottom:702.399987pt;}
.yb{bottom:727.359987pt;}
.ya{bottom:754.879987pt;}
.y9{bottom:782.399987pt;}
.y8{bottom:809.919987pt;}
.y7{bottom:837.759987pt;}
.y6{bottom:865.279987pt;}
.y5{bottom:892.799987pt;}
.y4{bottom:920.319987pt;}
.h9{height:30.324375pt;}
.h6{height:44.437500pt;}
.h4{height:46.048125pt;}
.h3{height:50.540625pt;}
.h7{height:56.156250pt;}
.ha{height:56.306250pt;}
.h5{height:56.843750pt;}
.h8{height:66.503125pt;}
.h2{height:1062.080000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:769.720000pt;}
.w0{width:793.720000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:12.000000pt;}
.x3{left:101.120120pt;}
.xa{left:120.053373pt;}
.x5{left:135.858667pt;}
.xb{left:157.853467pt;}
.x4{left:166.761067pt;}
.x6{left:169.882133pt;}
.xd{left:176.786800pt;}
.x7{left:497.831733pt;}
.x8{left:499.589467pt;}
.xc{left:615.586933pt;}
.x2{left:622.920267pt;}
.x9{left:630.253600pt;}
}

