
    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_531ce2e759606a9791046cb3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_291cc65839bd79cbcafd8dea.woff')format("woff");}.ff2{font-family:ff2;line-height:0.973145;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_5912449f373ccae140886370.woff')format("woff");}.ff3{font-family:ff3;line-height:0.750000;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_dd0d5e1420aa3050a54689d1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_2b1fffd43edc5a36c8f60adb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.716309;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_2506aa4b9844e4d57cc4522c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.128906;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v3{vertical-align:-18.810600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.781800px;}
.v1{vertical-align:27.721200px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003000px;}
.ls1{letter-spacing:0.021000px;}
.ls6{letter-spacing:12.349200px;}
.ls7{letter-spacing:12.529200px;}
.lsa{letter-spacing:13.124400px;}
.ls8{letter-spacing:13.371600px;}
.lsb{letter-spacing:13.642800px;}
.ls4{letter-spacing:13.654080px;}
.ls9{letter-spacing:13.747200px;}
.ls3{letter-spacing:15.927600px;}
.ls5{letter-spacing:18.038400px;}
.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;}
}
.ws11{word-spacing:-36.822000px;}
.ws0{word-spacing:-34.704000px;}
.ws1{word-spacing:-20.244000px;}
.wsc{word-spacing:-15.906000px;}
.ws3{word-spacing:-15.183000px;}
.ws12{word-spacing:-13.737000px;}
.ws5{word-spacing:-9.543600px;}
.ws7{word-spacing:-2.824800px;}
.wsd{word-spacing:-2.823480px;}
.ws6{word-spacing:-2.696760px;}
.wse{word-spacing:-2.555520px;}
.ws8{word-spacing:-2.534400px;}
.wsa{word-spacing:-0.175368px;}
.ws9{word-spacing:-0.087684px;}
.wsf{word-spacing:-0.068640px;}
.wsb{word-spacing:0.000000px;}
.ws10{word-spacing:3.479520px;}
.ws4{word-spacing:5.071590px;}
.ws2{word-spacing:5.073960px;}
._c{margin-left:-13.272000px;}
._9{margin-left:-11.172000px;}
._b{margin-left:-10.080000px;}
._a{margin-left:-8.400000px;}
._d{margin-left:-6.005160px;}
._e{margin-left:-4.997160px;}
._3{margin-left:-2.647920px;}
._0{margin-left:-1.628220px;}
._4{width:1.686300px;}
._5{width:2.773980px;}
._8{width:3.999600px;}
._1{width:5.044380px;}
._11{width:6.200700px;}
._f{width:9.693420px;}
._10{width:14.640120px;}
._6{width:17.088720px;}
._7{width:18.370440px;}
._2{width:21.024300px;}
.fc4{color:rgb(181,53,34);}
.fc2{color:rgb(129,27,35);}
.fc1{color:rgb(96,25,67);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.200000px;}
.fs5{font-size:39.600000px;}
.fs3{font-size:50.400000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:63.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.fs6{font-size:87.684000px;}
.fs0{font-size:144.000000px;}
.fs7{font-size:175.368000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:88.616550px;}
.y5d{bottom:94.328700px;}
.y27{bottom:96.087645px;}
.y5c{bottom:115.328250px;}
.y26{bottom:117.087195px;}
.y5b{bottom:136.327800px;}
.y25{bottom:138.086745px;}
.y5a{bottom:157.327350px;}
.y24{bottom:159.086295px;}
.y59{bottom:178.329285px;}
.y23{bottom:190.584795px;}
.y58{bottom:199.328835px;}
.y22{bottom:211.584345px;}
.y57{bottom:220.328385px;}
.y21{bottom:232.583895px;}
.y56{bottom:241.327935px;}
.y20{bottom:253.583445px;}
.y55{bottom:272.826435px;}
.y1f{bottom:274.582995px;}
.y54{bottom:293.825985px;}
.y1e{bottom:295.582545px;}
.y53{bottom:314.825535px;}
.y1d{bottom:327.081045px;}
.y52{bottom:335.825085px;}
.y1c{bottom:348.080595px;}
.y51{bottom:356.824635px;}
.y7d{bottom:362.218800px;}
.y1b{bottom:369.080145px;}
.y50{bottom:377.824185px;}
.y7c{bottom:380.394217px;}
.y1a{bottom:390.079695px;}
.y4f{bottom:398.824230px;}
.y7b{bottom:401.596650px;}
.y19{bottom:411.079740px;}
.y4e{bottom:419.824275px;}
.y7a{bottom:424.474650px;}
.y18{bottom:432.079785px;}
.y4d{bottom:440.824320px;}
.y79{bottom:447.352500px;}
.y17{bottom:453.079830px;}
.y78{bottom:465.528068px;}
.y4c{bottom:472.322325px;}
.y16{bottom:474.079875px;}
.y77{bottom:486.730650px;}
.y4b{bottom:493.322370px;}
.y76{bottom:504.905917px;}
.y15{bottom:505.578210px;}
.y4a{bottom:514.322415px;}
.y75{bottom:526.108500px;}
.y14{bottom:526.578255px;}
.y2c{bottom:534.501600px;}
.y49{bottom:535.322460px;}
.y74{bottom:544.284150px;}
.y13{bottom:547.578300px;}
.y48{bottom:566.820630px;}
.y12{bottom:568.578345px;}
.y47{bottom:587.820675px;}
.y11{bottom:600.075900px;}
.y46{bottom:608.820720px;}
.y73{bottom:612.917992px;}
.y10{bottom:621.075945px;}
.y72{bottom:629.417925px;}
.y45{bottom:629.820765px;}
.yf{bottom:642.075990px;}
.y44{bottom:650.820810px;}
.y71{bottom:652.295872px;}
.ye{bottom:663.076035px;}
.y43{bottom:671.820855px;}
.y70{bottom:675.173820px;}
.yd{bottom:684.076080px;}
.y6f{bottom:691.673752px;}
.y42{bottom:692.820900px;}
.y41{bottom:713.820945px;}
.y6e{bottom:714.551700px;}
.yc{bottom:715.574085px;}
.y6d{bottom:731.051632px;}
.y40{bottom:734.820990px;}
.yb{bottom:736.574130px;}
.y6c{bottom:753.929723px;}
.ya{bottom:757.574175px;}
.y3f{bottom:766.318995px;}
.y6b{bottom:770.429655px;}
.y9{bottom:778.574220px;}
.y3e{bottom:787.319040px;}
.y6a{bottom:793.307602px;}
.y8{bottom:799.574265px;}
.y3d{bottom:808.319085px;}
.y69{bottom:816.185550px;}
.y7{bottom:820.574310px;}
.y3c{bottom:829.319130px;}
.y68{bottom:832.685483px;}
.y6{bottom:841.574355px;}
.y3b{bottom:850.319175px;}
.y67{bottom:855.563430px;}
.y5{bottom:862.574400px;}
.y3a{bottom:871.319220px;}
.y66{bottom:872.063363px;}
.y39{bottom:892.319265px;}
.y65{bottom:894.941310px;}
.y38{bottom:913.319310px;}
.y64{bottom:917.819400px;}
.y37{bottom:944.817315px;}
.y36{bottom:965.817360px;}
.y63{bottom:986.817165px;}
.y35{bottom:986.817405px;}
.y62{bottom:1007.817210px;}
.y34{bottom:1007.817405px;}
.y4{bottom:1009.566600px;}
.y61{bottom:1028.817255px;}
.y33{bottom:1028.817405px;}
.y60{bottom:1049.817300px;}
.y32{bottom:1049.817450px;}
.y5f{bottom:1070.817345px;}
.y3{bottom:1072.566630px;}
.y31{bottom:1081.315470px;}
.y5e{bottom:1091.817390px;}
.y30{bottom:1102.315515px;}
.y2a{bottom:1103.818950px;}
.y2{bottom:1111.566510px;}
.y2f{bottom:1123.315560px;}
.y29{bottom:1140.354351px;}
.y2e{bottom:1144.315605px;}
.y1{bottom:1150.566750px;}
.y28{bottom:1161.354450px;}
.y2d{bottom:1165.315650px;}
.hb{height:33.179634px;}
.hd{height:33.180234px;}
.hc{height:33.180834px;}
.ha{height:51.990234px;}
.h4{height:60.199219px;}
.h9{height:60.199399px;}
.h5{height:60.201019px;}
.h6{height:65.763000px;}
.h3{height:76.617188px;}
.h8{height:79.128000px;}
.h2{height:131.343750px;}
.h7{height:131.526000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:82.005117px;}
.x2{left:110.393250px;}
.x6{left:161.365500px;}
.x5{left:164.536950px;}
.x4{left:169.245000px;}
.x1{left:212.598450px;}
.x7{left:219.536243px;}
.x8{left:220.660823px;}
@media print{
.v3{vertical-align:-16.720533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.361600pt;}
.v1{vertical-align:24.641067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.002667pt;}
.ls1{letter-spacing:0.018667pt;}
.ls6{letter-spacing:10.977067pt;}
.ls7{letter-spacing:11.137067pt;}
.lsa{letter-spacing:11.666133pt;}
.ls8{letter-spacing:11.885867pt;}
.lsb{letter-spacing:12.126933pt;}
.ls4{letter-spacing:12.136960pt;}
.ls9{letter-spacing:12.219733pt;}
.ls3{letter-spacing:14.157867pt;}
.ls5{letter-spacing:16.034133pt;}
.ws11{word-spacing:-32.730667pt;}
.ws0{word-spacing:-30.848000pt;}
.ws1{word-spacing:-17.994667pt;}
.wsc{word-spacing:-14.138667pt;}
.ws3{word-spacing:-13.496000pt;}
.ws12{word-spacing:-12.210667pt;}
.ws5{word-spacing:-8.483200pt;}
.ws7{word-spacing:-2.510933pt;}
.wsd{word-spacing:-2.509760pt;}
.ws6{word-spacing:-2.397120pt;}
.wse{word-spacing:-2.271573pt;}
.ws8{word-spacing:-2.252800pt;}
.wsa{word-spacing:-0.155883pt;}
.ws9{word-spacing:-0.077941pt;}
.wsf{word-spacing:-0.061013pt;}
.wsb{word-spacing:0.000000pt;}
.ws10{word-spacing:3.092907pt;}
.ws4{word-spacing:4.508080pt;}
.ws2{word-spacing:4.510187pt;}
._c{margin-left:-11.797333pt;}
._9{margin-left:-9.930667pt;}
._b{margin-left:-8.960000pt;}
._a{margin-left:-7.466667pt;}
._d{margin-left:-5.337920pt;}
._e{margin-left:-4.441920pt;}
._3{margin-left:-2.353707pt;}
._0{margin-left:-1.447307pt;}
._4{width:1.498933pt;}
._5{width:2.465760pt;}
._8{width:3.555200pt;}
._1{width:4.483893pt;}
._11{width:5.511733pt;}
._f{width:8.616373pt;}
._10{width:13.013440pt;}
._6{width:15.189973pt;}
._7{width:16.329280pt;}
._2{width:18.688267pt;}
.fs9{font-size:30.400000pt;}
.fs5{font-size:35.200000pt;}
.fs3{font-size:44.800000pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:56.000000pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.fs6{font-size:77.941333pt;}
.fs0{font-size:128.000000pt;}
.fs7{font-size:155.882667pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:78.770267pt;}
.y5d{bottom:83.847733pt;}
.y27{bottom:85.411240pt;}
.y5c{bottom:102.514000pt;}
.y26{bottom:104.077507pt;}
.y5b{bottom:121.180267pt;}
.y25{bottom:122.743773pt;}
.y5a{bottom:139.846533pt;}
.y24{bottom:141.410040pt;}
.y59{bottom:158.514920pt;}
.y23{bottom:169.408707pt;}
.y58{bottom:177.181187pt;}
.y22{bottom:188.074973pt;}
.y57{bottom:195.847453pt;}
.y21{bottom:206.741240pt;}
.y56{bottom:214.513720pt;}
.y20{bottom:225.407507pt;}
.y55{bottom:242.512387pt;}
.y1f{bottom:244.073773pt;}
.y54{bottom:261.178653pt;}
.y1e{bottom:262.740040pt;}
.y53{bottom:279.844920pt;}
.y1d{bottom:290.738707pt;}
.y52{bottom:298.511187pt;}
.y1c{bottom:309.404973pt;}
.y51{bottom:317.177453pt;}
.y7d{bottom:321.972267pt;}
.y1b{bottom:328.071240pt;}
.y50{bottom:335.843720pt;}
.y7c{bottom:338.128193pt;}
.y1a{bottom:346.737507pt;}
.y4f{bottom:354.510427pt;}
.y7b{bottom:356.974800pt;}
.y19{bottom:365.404213pt;}
.y4e{bottom:373.177133pt;}
.y7a{bottom:377.310800pt;}
.y18{bottom:384.070920pt;}
.y4d{bottom:391.843840pt;}
.y79{bottom:397.646667pt;}
.y17{bottom:402.737627pt;}
.y78{bottom:413.802727pt;}
.y4c{bottom:419.842067pt;}
.y16{bottom:421.404333pt;}
.y77{bottom:432.649467pt;}
.y4b{bottom:438.508773pt;}
.y76{bottom:448.805260pt;}
.y15{bottom:449.402853pt;}
.y4a{bottom:457.175480pt;}
.y75{bottom:467.652000pt;}
.y14{bottom:468.069560pt;}
.y2c{bottom:475.112533pt;}
.y49{bottom:475.842187pt;}
.y74{bottom:483.808133pt;}
.y13{bottom:486.736267pt;}
.y48{bottom:503.840560pt;}
.y12{bottom:505.402973pt;}
.y47{bottom:522.507267pt;}
.y11{bottom:533.400800pt;}
.y46{bottom:541.173973pt;}
.y73{bottom:544.815993pt;}
.y10{bottom:552.067507pt;}
.y72{bottom:559.482600pt;}
.y45{bottom:559.840680pt;}
.yf{bottom:570.734213pt;}
.y44{bottom:578.507387pt;}
.y71{bottom:579.818553pt;}
.ye{bottom:589.400920pt;}
.y43{bottom:597.174093pt;}
.y70{bottom:600.154507pt;}
.yd{bottom:608.067627pt;}
.y6f{bottom:614.821113pt;}
.y42{bottom:615.840800pt;}
.y41{bottom:634.507507pt;}
.y6e{bottom:635.157067pt;}
.yc{bottom:636.065853pt;}
.y6d{bottom:649.823673pt;}
.y40{bottom:653.174213pt;}
.yb{bottom:654.732560pt;}
.y6c{bottom:670.159753pt;}
.ya{bottom:673.399267pt;}
.y3f{bottom:681.172440pt;}
.y6b{bottom:684.826360pt;}
.y9{bottom:692.065973pt;}
.y3e{bottom:699.839147pt;}
.y6a{bottom:705.162313pt;}
.y8{bottom:710.732680pt;}
.y3d{bottom:718.505853pt;}
.y69{bottom:725.498267pt;}
.y7{bottom:729.399387pt;}
.y3c{bottom:737.172560pt;}
.y68{bottom:740.164873pt;}
.y6{bottom:748.066093pt;}
.y3b{bottom:755.839267pt;}
.y67{bottom:760.500827pt;}
.y5{bottom:766.732800pt;}
.y3a{bottom:774.505973pt;}
.y66{bottom:775.167433pt;}
.y39{bottom:793.172680pt;}
.y65{bottom:795.503387pt;}
.y38{bottom:811.839387pt;}
.y64{bottom:815.839467pt;}
.y37{bottom:839.837613pt;}
.y36{bottom:858.504320pt;}
.y63{bottom:877.170813pt;}
.y35{bottom:877.171027pt;}
.y62{bottom:895.837520pt;}
.y34{bottom:895.837693pt;}
.y4{bottom:897.392533pt;}
.y61{bottom:914.504227pt;}
.y33{bottom:914.504360pt;}
.y60{bottom:933.170933pt;}
.y32{bottom:933.171067pt;}
.y5f{bottom:951.837640pt;}
.y3{bottom:953.392560pt;}
.y31{bottom:961.169307pt;}
.y5e{bottom:970.504347pt;}
.y30{bottom:979.836013pt;}
.y2a{bottom:981.172400pt;}
.y2{bottom:988.059120pt;}
.y2f{bottom:998.502720pt;}
.y29{bottom:1013.648312pt;}
.y2e{bottom:1017.169427pt;}
.y1{bottom:1022.726000pt;}
.y28{bottom:1032.315067pt;}
.y2d{bottom:1035.836133pt;}
.hb{height:29.493008pt;}
.hd{height:29.493542pt;}
.hc{height:29.494075pt;}
.ha{height:46.213542pt;}
.h4{height:53.510417pt;}
.h9{height:53.510577pt;}
.h5{height:53.512017pt;}
.h6{height:58.456000pt;}
.h3{height:68.104167pt;}
.h8{height:70.336000pt;}
.h2{height:116.750000pt;}
.h7{height:116.912000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:72.893437pt;}
.x2{left:98.127333pt;}
.x6{left:143.436000pt;}
.x5{left:146.255067pt;}
.x4{left:150.440000pt;}
.x1{left:188.976400pt;}
.x7{left:195.143327pt;}
.x8{left:196.142953pt;}
}

