
    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_adabae78719cab6647f7d753.woff')format("woff");}.ff1{font-family:ff1;line-height:1.125000;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_5c1f49f4bc62377bd41d2ea3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.139000;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_5cf619341e4ba94209133996.woff')format("woff");}.ff3{font-family:ff3;line-height:1.158000;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_d772e9a410f2e05f78f654d6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.086110;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_7ecabfeccdf19e5bdeb6c684.woff')format("woff");}.ff5{font-family:ff5;line-height:1.156000;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.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);}
.m2{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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.010620px;}
.ls3{letter-spacing:0.021106px;}
.ls1{letter-spacing:0.021238px;}
.ls4{letter-spacing:0.021240px;}
.ls0{letter-spacing:0.021282px;}
.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:-23.418711px;}
.ws1{word-spacing:-18.021275px;}
.ws2{word-spacing:-18.021231px;}
.ws5{word-spacing:-18.021099px;}
.ws3{word-spacing:-17.999993px;}
.ws4{word-spacing:0.000000px;}
._12{margin-left:-4.596444px;}
._3{margin-left:-3.570243px;}
._8{margin-left:-2.149489px;}
._0{margin-left:-1.009467px;}
._2{width:1.030722px;}
._7{width:2.494385px;}
._5{width:4.508061px;}
._6{width:5.895457px;}
._f{width:7.062819px;}
._16{width:9.388871px;}
._a{width:10.767344px;}
._b{width:11.780339px;}
._d{width:13.364446px;}
._10{width:14.400584px;}
._9{width:15.405296px;}
._14{width:16.468388px;}
._15{width:19.202307px;}
._13{width:22.245426px;}
._e{width:23.289748px;}
._11{width:24.344364px;}
._4{width:25.376398px;}
._1{width:26.439537px;}
._18{width:28.109801px;}
._1d{width:29.355730px;}
._c{width:31.593630px;}
._1b{width:34.964340px;}
._1c{width:35.993688px;}
._1e{width:37.377151px;}
._1f{width:38.455622px;}
._19{width:41.238983px;}
._1a{width:42.313997px;}
._17{width:273.386958px;}
._20{width:846.510861px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(46,116,181);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.239981px;}
.fs0{font-size:71.999971px;}
.fs1{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.359977px;}
.y4{bottom:74.099970px;}
.y6{bottom:97.679961px;}
.y58{bottom:145.199942px;}
.y26{bottom:149.339940px;}
.y57{bottom:176.159930px;}
.y25{bottom:180.299928px;}
.y56{bottom:207.299917px;}
.y24{bottom:211.439915px;}
.y55{bottom:238.259905px;}
.y3f{bottom:253.559899px;}
.y23{bottom:260.399896px;}
.y54{bottom:269.219892px;}
.y3e{bottom:284.519886px;}
.y22{bottom:291.539883px;}
.y53{bottom:300.359880px;}
.y3d{bottom:315.659874px;}
.y21{bottom:322.499871px;}
.y52{bottom:331.319867px;}
.y3c{bottom:346.619861px;}
.y20{bottom:353.639859px;}
.y51{bottom:362.459855px;}
.y1f{bottom:384.599846px;}
.y3b{bottom:385.139846px;}
.y50{bottom:393.419843px;}
.y1e{bottom:415.739834px;}
.y4f{bottom:424.559830px;}
.y3a{bottom:438.959824px;}
.y1d{bottom:446.699821px;}
.y4e{bottom:455.519818px;}
.y39{bottom:469.919812px;}
.y4d{bottom:486.659805px;}
.y1c{bottom:495.659802px;}
.y38{bottom:501.059800px;}
.y4c{bottom:526.439789px;}
.y37{bottom:532.019787px;}
.y1b{bottom:534.539786px;}
.y36{bottom:563.159775px;}
.y1a{bottom:573.059771px;}
.y4b{bottom:580.259768px;}
.y35{bottom:594.119762px;}
.y67{bottom:603.119759px;}
.y4a{bottom:611.219756px;}
.y34{bottom:625.079750px;}
.y19{bottom:626.699749px;}
.y66{bottom:634.259746px;}
.y49{bottom:642.359743px;}
.y18{bottom:657.839737px;}
.y33{bottom:663.779734px;}
.y65{bottom:665.219734px;}
.y48{bottom:673.319731px;}
.y17{bottom:688.799724px;}
.y64{bottom:696.359721px;}
.y47{bottom:704.459718px;}
.y32{bottom:717.419713px;}
.y16{bottom:719.939712px;}
.y63{bottom:727.319709px;}
.y46{bottom:735.419706px;}
.y31{bottom:748.559701px;}
.y15{bottom:750.899700px;}
.y62{bottom:758.459697px;}
.y45{bottom:766.559693px;}
.y14{bottom:782.039687px;}
.y61{bottom:789.419684px;}
.y30{bottom:797.519681px;}
.y13{bottom:812.999675px;}
.y60{bottom:820.559672px;}
.y2f{bottom:828.659669px;}
.y12{bottom:844.139662px;}
.y5f{bottom:851.519659px;}
.y2e{bottom:859.619656px;}
.y11{bottom:875.099650px;}
.y44{bottom:877.439649px;}
.y5e{bottom:882.659647px;}
.y10{bottom:906.239638px;}
.y2d{bottom:908.579637px;}
.y5d{bottom:913.619635px;}
.y43{bottom:926.759629px;}
.yf{bottom:937.199625px;}
.y5c{bottom:944.759622px;}
.y2c{bottom:957.719617px;}
.y5b{bottom:975.719610px;}
.ye{bottom:985.979606px;}
.y2b{bottom:988.859604px;}
.y5a{bottom:1006.859597px;}
.y2a{bottom:1019.819592px;}
.yd{bottom:1029.359588px;}
.yc{bottom:1036.199586px;}
.y59{bottom:1037.819585px;}
.yb{bottom:1050.059580px;}
.y42{bottom:1050.959580px;}
.ya{bottom:1056.899577px;}
.y29{bottom:1068.959572px;}
.y41{bottom:1081.919567px;}
.y8{bottom:1088.759564px;}
.y9{bottom:1095.599562px;}
.y28{bottom:1099.919560px;}
.y7{bottom:1128.179549px;}
.y40{bottom:1130.879548px;}
.y27{bottom:1131.059548px;}
.y3{bottom:1151.759539px;}
.y2{bottom:1172.459531px;}
.y1{bottom:1193.159523px;}
.h5{height:42.258223px;}
.h4{height:42.933583px;}
.h1{height:63.071975px;}
.h2{height:64.079974px;}
.h6{height:67.391973px;}
.h3{height:79.185568px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.619965px;}
.x5{left:134.819946px;}
.x12{left:180.720080px;}
.xa{left:214.379344px;}
.xb{left:220.499912px;}
.xc{left:265.139894px;}
.x1{left:268.919892px;}
.xd{left:274.319890px;}
.x6{left:279.179888px;}
.xf{left:285.298900px;}
.x11{left:335.880871px;}
.xe{left:391.860149px;}
.x10{left:397.979841px;}
.x4{left:432.899622px;}
.x7{left:446.039822px;}
.x8{left:452.159819px;}
.x3{left:476.819176px;}
.x9{left:607.499757px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.009440pt;}
.ls3{letter-spacing:0.018761pt;}
.ls1{letter-spacing:0.018878pt;}
.ls4{letter-spacing:0.018880pt;}
.ls0{letter-spacing:0.018917pt;}
.ws0{word-spacing:-20.816632pt;}
.ws1{word-spacing:-16.018911pt;}
.ws2{word-spacing:-16.018872pt;}
.ws5{word-spacing:-16.018755pt;}
.ws3{word-spacing:-15.999994pt;}
.ws4{word-spacing:0.000000pt;}
._12{margin-left:-4.085728pt;}
._3{margin-left:-3.173549pt;}
._8{margin-left:-1.910657pt;}
._0{margin-left:-0.897304pt;}
._2{width:0.916198pt;}
._7{width:2.217231pt;}
._5{width:4.007165pt;}
._6{width:5.240406pt;}
._f{width:6.278061pt;}
._16{width:8.345663pt;}
._a{width:9.570973pt;}
._b{width:10.471413pt;}
._d{width:11.879507pt;}
._10{width:12.800519pt;}
._9{width:13.693596pt;}
._14{width:14.638567pt;}
._15{width:17.068717pt;}
._13{width:19.773712pt;}
._e{width:20.701998pt;}
._11{width:21.639435pt;}
._4{width:22.556798pt;}
._1{width:23.501811pt;}
._18{width:24.986490pt;}
._1d{width:26.093982pt;}
._c{width:28.083227pt;}
._1b{width:31.079413pt;}
._1c{width:31.994390pt;}
._1e{width:33.224134pt;}
._1f{width:34.182776pt;}
._19{width:36.656873pt;}
._1a{width:37.612442pt;}
._17{width:243.010629pt;}
._20{width:752.454099pt;}
.fs2{font-size:42.879983pt;}
.fs0{font-size:63.999974pt;}
.fs1{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:50.986646pt;}
.y4{bottom:65.866640pt;}
.y6{bottom:86.826632pt;}
.y58{bottom:129.066615pt;}
.y26{bottom:132.746614pt;}
.y57{bottom:156.586604pt;}
.y25{bottom:160.266603pt;}
.y56{bottom:184.266593pt;}
.y24{bottom:187.946591pt;}
.y55{bottom:211.786582pt;}
.y3f{bottom:225.386577pt;}
.y23{bottom:231.466574pt;}
.y54{bottom:239.306571pt;}
.y3e{bottom:252.906566pt;}
.y22{bottom:259.146563pt;}
.y53{bottom:266.986560pt;}
.y3d{bottom:280.586554pt;}
.y21{bottom:286.666552pt;}
.y52{bottom:294.506549pt;}
.y3c{bottom:308.106543pt;}
.y20{bottom:314.346541pt;}
.y51{bottom:322.186538pt;}
.y1f{bottom:341.866530pt;}
.y3b{bottom:342.346530pt;}
.y50{bottom:349.706527pt;}
.y1e{bottom:369.546519pt;}
.y4f{bottom:377.386516pt;}
.y3a{bottom:390.186511pt;}
.y1d{bottom:397.066508pt;}
.y4e{bottom:404.906505pt;}
.y39{bottom:417.706500pt;}
.y4d{bottom:432.586494pt;}
.y1c{bottom:440.586490pt;}
.y38{bottom:445.386489pt;}
.y4c{bottom:467.946479pt;}
.y37{bottom:472.906478pt;}
.y1b{bottom:475.146477pt;}
.y36{bottom:500.586466pt;}
.y1a{bottom:509.386463pt;}
.y4b{bottom:515.786460pt;}
.y35{bottom:528.106455pt;}
.y67{bottom:536.106452pt;}
.y4a{bottom:543.306449pt;}
.y34{bottom:555.626444pt;}
.y19{bottom:557.066444pt;}
.y66{bottom:563.786441pt;}
.y49{bottom:570.986438pt;}
.y18{bottom:584.746433pt;}
.y33{bottom:590.026431pt;}
.y65{bottom:591.306430pt;}
.y48{bottom:598.506427pt;}
.y17{bottom:612.266422pt;}
.y64{bottom:618.986419pt;}
.y47{bottom:626.186416pt;}
.y32{bottom:637.706412pt;}
.y16{bottom:639.946411pt;}
.y63{bottom:646.506408pt;}
.y46{bottom:653.706405pt;}
.y31{bottom:665.386401pt;}
.y15{bottom:667.466400pt;}
.y62{bottom:674.186397pt;}
.y45{bottom:681.386394pt;}
.y14{bottom:695.146389pt;}
.y61{bottom:701.706386pt;}
.y30{bottom:708.906383pt;}
.y13{bottom:722.666378pt;}
.y60{bottom:729.386375pt;}
.y2f{bottom:736.586372pt;}
.y12{bottom:750.346367pt;}
.y5f{bottom:756.906364pt;}
.y2e{bottom:764.106361pt;}
.y11{bottom:777.866356pt;}
.y44{bottom:779.946355pt;}
.y5e{bottom:784.586353pt;}
.y10{bottom:805.546344pt;}
.y2d{bottom:807.626344pt;}
.y5d{bottom:812.106342pt;}
.y43{bottom:823.786337pt;}
.yf{bottom:833.066333pt;}
.y5c{bottom:839.786331pt;}
.y2c{bottom:851.306326pt;}
.y5b{bottom:867.306320pt;}
.ye{bottom:876.426316pt;}
.y2b{bottom:878.986315pt;}
.y5a{bottom:894.986309pt;}
.y2a{bottom:906.506304pt;}
.yd{bottom:914.986301pt;}
.yc{bottom:921.066298pt;}
.y59{bottom:922.506298pt;}
.yb{bottom:933.386293pt;}
.y42{bottom:934.186293pt;}
.ya{bottom:939.466291pt;}
.y29{bottom:950.186287pt;}
.y41{bottom:961.706282pt;}
.y8{bottom:967.786280pt;}
.y9{bottom:973.866277pt;}
.y28{bottom:977.706276pt;}
.y7{bottom:1002.826266pt;}
.y40{bottom:1005.226265pt;}
.y27{bottom:1005.386265pt;}
.y3{bottom:1023.786257pt;}
.y2{bottom:1042.186250pt;}
.y1{bottom:1060.586242pt;}
.h5{height:37.562865pt;}
.h4{height:38.163185pt;}
.h1{height:56.063978pt;}
.h2{height:56.959977pt;}
.h6{height:59.903976pt;}
.h3{height:70.387172pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.439969pt;}
.x5{left:119.839952pt;}
.x12{left:160.640071pt;}
.xa{left:190.559417pt;}
.xb{left:195.999922pt;}
.xc{left:235.679906pt;}
.x1{left:239.039904pt;}
.xd{left:243.839902pt;}
.x6{left:248.159901pt;}
.xf{left:253.599023pt;}
.x11{left:298.560774pt;}
.xe{left:348.320133pt;}
.x10{left:353.759858pt;}
.x4{left:384.799664pt;}
.x7{left:396.479841pt;}
.x8{left:401.919839pt;}
.x3{left:423.839268pt;}
.x9{left:539.999784pt;}
}

