
    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_e6f0708552efe89a65852fea.woff')format("woff");}.ff1{font-family:ff1;line-height:0.854004;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_28b1b9025614da614d570e07.woff')format("woff");}.ff2{font-family:ff2;line-height:1.157715;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_6c0ee866c832401e9b979ef0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.157715;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_61523b714f661234e041eabf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.919922;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_b5bee9881af20a15763af716.woff')format("woff");}.ff5{font-family:ff5;line-height:0.853516;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_20a9ad415f703f5136da03e9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.709473;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_9fd1e18cea2a4d1f3315e674.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_2a88b0316ddbc36db3129a5d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_ca60d54a0ec3c047413db641.woff')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6bcdd4ee617e8475fbc1ac4c.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000576px;}
.ls7{letter-spacing:0.000720px;}
.ls5{letter-spacing:0.001440px;}
.ls2{letter-spacing:0.014400px;}
.ls0{letter-spacing:0.018720px;}
.ls8{letter-spacing:6.121440px;}
.ls4{letter-spacing:11.268000px;}
.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;}
}
.ws2{word-spacing:-18.014400px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.985600px;}
.ws0{word-spacing:0.000000px;}
._b{margin-left:-18.119808px;}
._7{margin-left:-16.190208px;}
._a{margin-left:-13.727808px;}
._9{margin-left:-10.127808px;}
._1{margin-left:-8.424000px;}
._0{margin-left:-6.264000px;}
._1a{margin-left:-4.315680px;}
._4{margin-left:-3.141360px;}
._8{margin-left:-2.040480px;}
._3{margin-left:-1.010880px;}
._2{width:1.296000px;}
._13{width:2.612736px;}
._14{width:3.668256px;}
._f{width:5.306400px;}
._18{width:6.313104px;}
._16{width:7.531200px;}
._11{width:8.978400px;}
._1b{width:10.361088px;}
._12{width:11.541312px;}
._10{width:12.686400px;}
._17{width:13.935312px;}
._e{width:15.552000px;}
._d{width:16.804656px;}
._19{width:19.180800px;}
._1d{width:20.484000px;}
._1c{width:21.621600px;}
._22{width:23.832000px;}
._23{width:25.099200px;}
._26{width:26.629632px;}
._20{width:28.000800px;}
._1e{width:29.116800px;}
._15{width:30.254400px;}
._21{width:31.276800px;}
._1f{width:32.558400px;}
._25{width:34.671456px;}
._6{width:44.057520px;}
._5{width:46.397280px;}
._24{width:194.399568px;}
._c{width:846.000000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:57.600000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y16{bottom:4.440000px;}
.y15{bottom:51.000000px;}
.y14{bottom:56.880000px;}
.y5b{bottom:111.960000px;}
.y46{bottom:115.200000px;}
.y5a{bottom:143.280000px;}
.y45{bottom:146.160000px;}
.y59{bottom:174.240000px;}
.y44{bottom:177.120000px;}
.y12{bottom:181.290000px;}
.y58{bottom:205.200000px;}
.y43{bottom:208.440000px;}
.y11{bottom:216.570000px;}
.y57{bottom:236.160000px;}
.y5c{bottom:236.520000px;}
.y42{bottom:239.400000px;}
.y10{bottom:250.230000px;}
.y56{bottom:267.480000px;}
.y41{bottom:270.360000px;}
.yf{bottom:284.070000px;}
.y55{bottom:298.440000px;}
.y40{bottom:301.320000px;}
.ye{bottom:318.810000px;}
.y54{bottom:329.400000px;}
.y3f{bottom:332.280000px;}
.y53{bottom:360.360000px;}
.yd{bottom:360.615000px;}
.y3e{bottom:363.600000px;}
.y52{bottom:391.680000px;}
.y3d{bottom:394.560000px;}
.yc{bottom:402.375000px;}
.y51{bottom:422.640000px;}
.y3c{bottom:425.520000px;}
.yb{bottom:444.135000px;}
.y50{bottom:453.600000px;}
.y3b{bottom:456.480000px;}
.y4f{bottom:484.560000px;}
.ya{bottom:485.175000px;}
.y3a{bottom:487.800000px;}
.y9{bottom:511.995000px;}
.y4e{bottom:515.880000px;}
.y39{bottom:518.760000px;}
.y4d{bottom:546.840000px;}
.y38{bottom:549.720000px;}
.y8{bottom:553.755000px;}
.y25{bottom:567.360000px;}
.y4c{bottom:577.800000px;}
.y37{bottom:580.680000px;}
.y7{bottom:595.515000px;}
.y24{bottom:608.760000px;}
.y36{bottom:612.000000px;}
.y6{bottom:637.305000px;}
.y4b{bottom:640.080000px;}
.y35{bottom:642.960000px;}
.y23{bottom:650.160000px;}
.y4a{bottom:671.040000px;}
.y34{bottom:673.920000px;}
.y5{bottom:679.965000px;}
.y22{bottom:691.560000px;}
.y49{bottom:702.000000px;}
.y33{bottom:704.880000px;}
.y4{bottom:723.885000px;}
.y21{bottom:732.960000px;}
.y32{bottom:736.200000px;}
.y3{bottom:763.485000px;}
.y48{bottom:764.280000px;}
.y31{bottom:767.160000px;}
.y20{bottom:774.360000px;}
.y47{bottom:795.240000px;}
.y30{bottom:798.120000px;}
.y2{bottom:807.225000px;}
.y1f{bottom:815.760000px;}
.y64{bottom:826.200000px;}
.y2f{bottom:829.080000px;}
.y1{bottom:836.385000px;}
.y1e{bottom:857.160000px;}
.y2e{bottom:860.400000px;}
.y63{bottom:888.480000px;}
.y2d{bottom:891.360000px;}
.y1d{bottom:898.560000px;}
.y62{bottom:919.440000px;}
.y2c{bottom:922.320000px;}
.y1c{bottom:939.960000px;}
.y61{bottom:950.400000px;}
.y2b{bottom:953.280000px;}
.y1b{bottom:981.360000px;}
.y2a{bottom:984.600000px;}
.y60{bottom:1012.320000px;}
.y29{bottom:1015.560000px;}
.y1a{bottom:1022.760000px;}
.y19{bottom:1043.280000px;}
.y5f{bottom:1043.640000px;}
.y28{bottom:1046.520000px;}
.y18{bottom:1072.800000px;}
.y5e{bottom:1074.600000px;}
.y27{bottom:1077.480000px;}
.y5d{bottom:1105.920000px;}
.y26{bottom:1108.800000px;}
.y17{bottom:1139.760000px;}
.y13{bottom:1194.480000px;}
.h8{height:21.000000px;}
.h7{height:45.992813px;}
.ha{height:48.796875px;}
.h9{height:50.027344px;}
.h2{height:55.987031px;}
.h6{height:68.203125px;}
.h4{height:79.797656px;}
.h5{height:90.710156px;}
.h3{height:102.304688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:10.500000px;}
.w6{width:19.500000px;}
.w4{width:892.500000px;}
.w3{width:892.800000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:1.080000px;}
.x7{left:127.655987px;}
.xc{left:143.939952px;}
.xe{left:159.390036px;}
.xd{left:160.439940px;}
.x10{left:169.965072px;}
.x11{left:180.614844px;}
.x9{left:223.409987px;}
.x5{left:225.209987px;}
.x8{left:240.149987px;}
.x6{left:258.869987px;}
.x3{left:275.969987px;}
.x4{left:298.874987px;}
.xf{left:436.500000px;}
.xa{left:441.000000px;}
.x2{left:446.474987px;}
.x1{left:629.924987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000512pt;}
.ls7{letter-spacing:0.000640pt;}
.ls5{letter-spacing:0.001280pt;}
.ls2{letter-spacing:0.012800pt;}
.ls0{letter-spacing:0.016640pt;}
.ls8{letter-spacing:5.441280pt;}
.ls4{letter-spacing:10.016000pt;}
.ws2{word-spacing:-16.012800pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.987200pt;}
.ws0{word-spacing:0.000000pt;}
._b{margin-left:-16.106496pt;}
._7{margin-left:-14.391296pt;}
._a{margin-left:-12.202496pt;}
._9{margin-left:-9.002496pt;}
._1{margin-left:-7.488000pt;}
._0{margin-left:-5.568000pt;}
._1a{margin-left:-3.836160pt;}
._4{margin-left:-2.792320pt;}
._8{margin-left:-1.813760pt;}
._3{margin-left:-0.898560pt;}
._2{width:1.152000pt;}
._13{width:2.322432pt;}
._14{width:3.260672pt;}
._f{width:4.716800pt;}
._18{width:5.611648pt;}
._16{width:6.694400pt;}
._11{width:7.980800pt;}
._1b{width:9.209856pt;}
._12{width:10.258944pt;}
._10{width:11.276800pt;}
._17{width:12.386944pt;}
._e{width:13.824000pt;}
._d{width:14.937472pt;}
._19{width:17.049600pt;}
._1d{width:18.208000pt;}
._1c{width:19.219200pt;}
._22{width:21.184000pt;}
._23{width:22.310400pt;}
._26{width:23.670784pt;}
._20{width:24.889600pt;}
._1e{width:25.881600pt;}
._15{width:26.892800pt;}
._21{width:27.801600pt;}
._1f{width:28.940800pt;}
._25{width:30.819072pt;}
._6{width:39.162240pt;}
._5{width:41.242027pt;}
._24{width:172.799616pt;}
._c{width:752.000000pt;}
.fs5{font-size:51.200000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:3.946667pt;}
.y15{bottom:45.333333pt;}
.y14{bottom:50.560000pt;}
.y5b{bottom:99.520000pt;}
.y46{bottom:102.400000pt;}
.y5a{bottom:127.360000pt;}
.y45{bottom:129.920000pt;}
.y59{bottom:154.880000pt;}
.y44{bottom:157.440000pt;}
.y12{bottom:161.146667pt;}
.y58{bottom:182.400000pt;}
.y43{bottom:185.280000pt;}
.y11{bottom:192.506667pt;}
.y57{bottom:209.920000pt;}
.y5c{bottom:210.240000pt;}
.y42{bottom:212.800000pt;}
.y10{bottom:222.426667pt;}
.y56{bottom:237.760000pt;}
.y41{bottom:240.320000pt;}
.yf{bottom:252.506667pt;}
.y55{bottom:265.280000pt;}
.y40{bottom:267.840000pt;}
.ye{bottom:283.386667pt;}
.y54{bottom:292.800000pt;}
.y3f{bottom:295.360000pt;}
.y53{bottom:320.320000pt;}
.yd{bottom:320.546667pt;}
.y3e{bottom:323.200000pt;}
.y52{bottom:348.160000pt;}
.y3d{bottom:350.720000pt;}
.yc{bottom:357.666667pt;}
.y51{bottom:375.680000pt;}
.y3c{bottom:378.240000pt;}
.yb{bottom:394.786667pt;}
.y50{bottom:403.200000pt;}
.y3b{bottom:405.760000pt;}
.y4f{bottom:430.720000pt;}
.ya{bottom:431.266667pt;}
.y3a{bottom:433.600000pt;}
.y9{bottom:455.106667pt;}
.y4e{bottom:458.560000pt;}
.y39{bottom:461.120000pt;}
.y4d{bottom:486.080000pt;}
.y38{bottom:488.640000pt;}
.y8{bottom:492.226667pt;}
.y25{bottom:504.320000pt;}
.y4c{bottom:513.600000pt;}
.y37{bottom:516.160000pt;}
.y7{bottom:529.346667pt;}
.y24{bottom:541.120000pt;}
.y36{bottom:544.000000pt;}
.y6{bottom:566.493333pt;}
.y4b{bottom:568.960000pt;}
.y35{bottom:571.520000pt;}
.y23{bottom:577.920000pt;}
.y4a{bottom:596.480000pt;}
.y34{bottom:599.040000pt;}
.y5{bottom:604.413333pt;}
.y22{bottom:614.720000pt;}
.y49{bottom:624.000000pt;}
.y33{bottom:626.560000pt;}
.y4{bottom:643.453333pt;}
.y21{bottom:651.520000pt;}
.y32{bottom:654.400000pt;}
.y3{bottom:678.653333pt;}
.y48{bottom:679.360000pt;}
.y31{bottom:681.920000pt;}
.y20{bottom:688.320000pt;}
.y47{bottom:706.880000pt;}
.y30{bottom:709.440000pt;}
.y2{bottom:717.533333pt;}
.y1f{bottom:725.120000pt;}
.y64{bottom:734.400000pt;}
.y2f{bottom:736.960000pt;}
.y1{bottom:743.453333pt;}
.y1e{bottom:761.920000pt;}
.y2e{bottom:764.800000pt;}
.y63{bottom:789.760000pt;}
.y2d{bottom:792.320000pt;}
.y1d{bottom:798.720000pt;}
.y62{bottom:817.280000pt;}
.y2c{bottom:819.840000pt;}
.y1c{bottom:835.520000pt;}
.y61{bottom:844.800000pt;}
.y2b{bottom:847.360000pt;}
.y1b{bottom:872.320000pt;}
.y2a{bottom:875.200000pt;}
.y60{bottom:899.840000pt;}
.y29{bottom:902.720000pt;}
.y1a{bottom:909.120000pt;}
.y19{bottom:927.360000pt;}
.y5f{bottom:927.680000pt;}
.y28{bottom:930.240000pt;}
.y18{bottom:953.600000pt;}
.y5e{bottom:955.200000pt;}
.y27{bottom:957.760000pt;}
.y5d{bottom:983.040000pt;}
.y26{bottom:985.600000pt;}
.y17{bottom:1013.120000pt;}
.y13{bottom:1061.760000pt;}
.h8{height:18.666667pt;}
.h7{height:40.882500pt;}
.ha{height:43.375000pt;}
.h9{height:44.468750pt;}
.h2{height:49.766250pt;}
.h6{height:60.625000pt;}
.h4{height:70.931250pt;}
.h5{height:80.631250pt;}
.h3{height:90.937500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:9.333333pt;}
.w6{width:17.333333pt;}
.w4{width:793.333333pt;}
.w3{width:793.600000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:0.960000pt;}
.x7{left:113.471988pt;}
.xc{left:127.946624pt;}
.xe{left:141.680032pt;}
.xd{left:142.613280pt;}
.x10{left:151.080064pt;}
.x11{left:160.546528pt;}
.x9{left:198.586655pt;}
.x5{left:200.186655pt;}
.x8{left:213.466655pt;}
.x6{left:230.106655pt;}
.x3{left:245.306655pt;}
.x4{left:265.666655pt;}
.xf{left:388.000000pt;}
.xa{left:392.000000pt;}
.x2{left:396.866655pt;}
.x1{left:559.933322pt;}
}

