
    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_e8aedb4769e194321c8d97ef.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_e9e473af007b551f4d7109c6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_a27d46993c67fc02700052b7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_05b57e9c3eff1235569b4150.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m3{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-82.079967px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.189257px;}
.ls2{letter-spacing:0.277193px;}
.ls0{letter-spacing:194.525322px;}
.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;}
}
.ws3{word-spacing:-17.999993px;}
.ws2{word-spacing:-12.337188px;}
.ws1{word-spacing:-12.059995px;}
.ws0{word-spacing:0.000000px;}
._25{margin-left:-12.966075px;}
._1f{margin-left:-2.763796px;}
._7{margin-left:-1.419566px;}
._1{width:1.346707px;}
._a{width:2.369169px;}
._b{width:3.675734px;}
._4{width:4.735876px;}
._2{width:6.698766px;}
._3{width:8.043557px;}
._8{width:9.993066px;}
._16{width:11.016716px;}
._f{width:12.659361px;}
._10{width:14.203805px;}
._1a{width:15.598980px;}
._14{width:16.860341px;}
._13{width:19.452644px;}
._15{width:21.419788px;}
._5{width:22.450057px;}
._6{width:24.069053px;}
._1e{width:26.103113px;}
._c{width:27.159969px;}
._11{width:28.420111px;}
._12{width:29.518777px;}
._d{width:31.273564px;}
._e{width:32.472353px;}
._20{width:33.572336px;}
._23{width:34.605830px;}
._24{width:36.218952px;}
._1b{width:37.221141px;}
._9{width:38.686805px;}
._1c{width:48.521161px;}
._1d{width:49.675859px;}
._17{width:50.774560px;}
._18{width:52.059670px;}
._22{width:59.382237px;}
._21{width:60.436678px;}
._19{width:194.525202px;}
._0{width:1231.427507px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.879984px;}
.fs2{font-size:48.239981px;}
.fs3{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.900277px;}
.y48{bottom:115.859954px;}
.y24{bottom:123.959950px;}
.y47{bottom:146.819941px;}
.y23{bottom:154.919938px;}
.y46{bottom:177.959929px;}
.y22{bottom:186.059926px;}
.y45{bottom:208.919916px;}
.y21{bottom:217.019913px;}
.y44{bottom:240.059904px;}
.y20{bottom:248.159901px;}
.y43{bottom:271.019892px;}
.y1f{bottom:279.119888px;}
.y42{bottom:301.979879px;}
.y1e{bottom:310.259876px;}
.y41{bottom:333.119867px;}
.y1d{bottom:341.219864px;}
.y40{bottom:364.079854px;}
.y1c{bottom:372.359851px;}
.y3f{bottom:395.219842px;}
.y1b{bottom:403.319839px;}
.y3e{bottom:426.179830px;}
.y1a{bottom:434.459826px;}
.y3d{bottom:457.319817px;}
.y19{bottom:465.419814px;}
.y3c{bottom:488.279805px;}
.y18{bottom:496.559801px;}
.y3b{bottom:519.419792px;}
.y17{bottom:527.519789px;}
.y3a{bottom:550.379780px;}
.y16{bottom:558.659777px;}
.y39{bottom:581.519767px;}
.y15{bottom:589.619764px;}
.y4a{bottom:589.799764px;}
.y38{bottom:612.479755px;}
.y14{bottom:620.759752px;}
.y37{bottom:643.619743px;}
.y13{bottom:651.719739px;}
.y54{bottom:653.339739px;}
.y53{bottom:660.179736px;}
.y52{bottom:670.619732px;}
.y36{bottom:674.579730px;}
.y51{bottom:677.459729px;}
.y12{bottom:682.859727px;}
.y50{bottom:687.899725px;}
.y4f{bottom:705.179718px;}
.y35{bottom:705.719718px;}
.y4e{bottom:712.019715px;}
.y11{bottom:713.819714px;}
.y4d{bottom:722.279711px;}
.y4c{bottom:729.119708px;}
.y34{bottom:736.679705px;}
.y4b{bottom:739.559704px;}
.y10{bottom:744.959702px;}
.y33{bottom:767.819693px;}
.yf{bottom:775.919690px;}
.y32{bottom:798.779680px;}
.ye{bottom:807.059677px;}
.y31{bottom:829.919668px;}
.yd{bottom:838.019665px;}
.y30{bottom:860.879656px;}
.yc{bottom:869.159652px;}
.y2f{bottom:892.019643px;}
.yb{bottom:900.119640px;}
.y2e{bottom:922.979631px;}
.y9{bottom:931.259627px;}
.ya{bottom:939.539624px;}
.y2d{bottom:954.119618px;}
.y8{bottom:962.219615px;}
.y2c{bottom:985.079606px;}
.y7{bottom:1013.879594px;}
.y2b{bottom:1016.219594px;}
.y6{bottom:1034.579586px;}
.y2a{bottom:1047.179581px;}
.y5{bottom:1055.279578px;}
.y4{bottom:1075.979570px;}
.y29{bottom:1078.319569px;}
.y49{bottom:1086.599565px;}
.y3{bottom:1095.779862px;}
.y28{bottom:1109.279556px;}
.y2{bottom:1113.059855px;}
.y27{bottom:1140.419544px;}
.y26{bottom:1157.879537px;}
.y25{bottom:1182.899527px;}
.h7{height:38.158578px;}
.h5{height:47.344903px;}
.h6{height:56.320290px;}
.h1{height:58.651148px;}
.h2{height:60.226851px;}
.h4{height:70.664034px;}
.h3{height:72.562471px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.x12{left:130.319948px;}
.x13{left:133.019947px;}
.x14{left:135.719946px;}
.x8{left:160.199936px;}
.xb{left:180.720080px;}
.x9{left:233.820211px;}
.x3{left:267.839893px;}
.x4{left:363.599873px;}
.xd{left:437.580282px;}
.x5{left:440.639824px;}
.x7{left:442.799823px;}
.x6{left:444.059822px;}
.x2{left:446.400515px;}
.xc{left:453.599819px;}
.xa{left:467.100401px;}
.xe{left:562.499775px;}
.xf{left:572.759771px;}
.x10{left:576.359769px;}
.x11{left:585.719766px;}
@media print{
.v1{vertical-align:-72.959971pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.168228pt;}
.ls2{letter-spacing:0.246394pt;}
.ls0{letter-spacing:172.911398pt;}
.ws3{word-spacing:-15.999994pt;}
.ws2{word-spacing:-10.966389pt;}
.ws1{word-spacing:-10.719996pt;}
.ws0{word-spacing:0.000000pt;}
._25{margin-left:-11.525400pt;}
._1f{margin-left:-2.456708pt;}
._7{margin-left:-1.261836pt;}
._1{width:1.197073pt;}
._a{width:2.105928pt;}
._b{width:3.267319pt;}
._4{width:4.209668pt;}
._2{width:5.954458pt;}
._3{width:7.149828pt;}
._8{width:8.882725pt;}
._16{width:9.792636pt;}
._f{width:11.252765pt;}
._10{width:12.625605pt;}
._1a{width:13.865760pt;}
._14{width:14.986969pt;}
._13{width:17.291239pt;}
._15{width:19.039812pt;}
._5{width:19.955606pt;}
._6{width:21.394714pt;}
._1e{width:23.202767pt;}
._c{width:24.142195pt;}
._11{width:25.262321pt;}
._12{width:26.238913pt;}
._d{width:27.798724pt;}
._e{width:28.864314pt;}
._20{width:29.842076pt;}
._23{width:30.760737pt;}
._24{width:32.194624pt;}
._1b{width:33.085459pt;}
._9{width:34.388271pt;}
._1c{width:43.129921pt;}
._1d{width:44.156319pt;}
._17{width:45.132942pt;}
._18{width:46.275262pt;}
._22{width:52.784210pt;}
._21{width:53.721492pt;}
._19{width:172.911291pt;}
._0{width:1094.602229pt;}
.fs4{font-size:34.559986pt;}
.fs2{font-size:42.879983pt;}
.fs3{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.466913pt;}
.y48{bottom:102.986625pt;}
.y24{bottom:110.186623pt;}
.y47{bottom:130.506614pt;}
.y23{bottom:137.706612pt;}
.y46{bottom:158.186603pt;}
.y22{bottom:165.386601pt;}
.y45{bottom:185.706592pt;}
.y21{bottom:192.906590pt;}
.y44{bottom:213.386581pt;}
.y20{bottom:220.586578pt;}
.y43{bottom:240.906570pt;}
.y1f{bottom:248.106567pt;}
.y42{bottom:268.426559pt;}
.y1e{bottom:275.786556pt;}
.y41{bottom:296.106548pt;}
.y1d{bottom:303.306545pt;}
.y40{bottom:323.626537pt;}
.y1c{bottom:330.986534pt;}
.y3f{bottom:351.306526pt;}
.y1b{bottom:358.506523pt;}
.y3e{bottom:378.826515pt;}
.y1a{bottom:386.186512pt;}
.y3d{bottom:406.506504pt;}
.y19{bottom:413.706501pt;}
.y3c{bottom:434.026493pt;}
.y18{bottom:441.386490pt;}
.y3b{bottom:461.706482pt;}
.y17{bottom:468.906479pt;}
.y3a{bottom:489.226471pt;}
.y16{bottom:496.586468pt;}
.y39{bottom:516.906460pt;}
.y15{bottom:524.106457pt;}
.y4a{bottom:524.266457pt;}
.y38{bottom:544.426449pt;}
.y14{bottom:551.786446pt;}
.y37{bottom:572.106438pt;}
.y13{bottom:579.306435pt;}
.y54{bottom:580.746434pt;}
.y53{bottom:586.826432pt;}
.y52{bottom:596.106428pt;}
.y36{bottom:599.626427pt;}
.y51{bottom:602.186426pt;}
.y12{bottom:606.986424pt;}
.y50{bottom:611.466422pt;}
.y4f{bottom:626.826416pt;}
.y35{bottom:627.306416pt;}
.y4e{bottom:632.906414pt;}
.y11{bottom:634.506413pt;}
.y4d{bottom:642.026410pt;}
.y4c{bottom:648.106407pt;}
.y34{bottom:654.826405pt;}
.y4b{bottom:657.386404pt;}
.y10{bottom:662.186402pt;}
.y33{bottom:682.506394pt;}
.yf{bottom:689.706391pt;}
.y32{bottom:710.026383pt;}
.ye{bottom:717.386380pt;}
.y31{bottom:737.706372pt;}
.yd{bottom:744.906369pt;}
.y30{bottom:765.226361pt;}
.yc{bottom:772.586358pt;}
.y2f{bottom:792.906350pt;}
.yb{bottom:800.106347pt;}
.y2e{bottom:820.426338pt;}
.y9{bottom:827.786336pt;}
.ya{bottom:835.146333pt;}
.y2d{bottom:848.106327pt;}
.y8{bottom:855.306325pt;}
.y2c{bottom:875.626316pt;}
.y7{bottom:901.226306pt;}
.y2b{bottom:903.306305pt;}
.y6{bottom:919.626299pt;}
.y2a{bottom:930.826294pt;}
.y5{bottom:938.026291pt;}
.y4{bottom:956.426284pt;}
.y29{bottom:958.506283pt;}
.y49{bottom:965.866280pt;}
.y3{bottom:974.026544pt;}
.y28{bottom:986.026272pt;}
.y2{bottom:989.386538pt;}
.y27{bottom:1013.706261pt;}
.y26{bottom:1029.226255pt;}
.y25{bottom:1051.466246pt;}
.h7{height:33.918736pt;}
.h5{height:42.084358pt;}
.h6{height:50.062480pt;}
.h1{height:52.134354pt;}
.h2{height:53.534979pt;}
.h4{height:62.812475pt;}
.h3{height:64.499974pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.x12{left:115.839954pt;}
.x13{left:118.239953pt;}
.x14{left:120.639952pt;}
.x8{left:142.399943pt;}
.xb{left:160.640071pt;}
.x9{left:207.840188pt;}
.x3{left:238.079905pt;}
.x4{left:323.199887pt;}
.xd{left:388.960251pt;}
.x5{left:391.679843pt;}
.x7{left:393.599843pt;}
.x6{left:394.719842pt;}
.x2{left:396.800458pt;}
.xc{left:403.199839pt;}
.xa{left:415.200357pt;}
.xe{left:499.999800pt;}
.xf{left:509.119796pt;}
.x10{left:512.319795pt;}
.x11{left:520.639792pt;}
}

