
    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_61af5b945d0c6618c64fe13d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_2e6c8d94a6177cfecfdd9f14.woff')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_da276629f689a4791e03c259.woff')format("woff");}.ff3{font-family:ff3;line-height:0.776855;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_9c4c9ca5c46c29c82576e3f5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_d2c34e53aaf924ac98e37b19.woff')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_815ab67efbba7059317c25d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.714000px;}
.lsf{letter-spacing:-0.558000px;}
.lsa{letter-spacing:-0.498000px;}
.lse{letter-spacing:-0.462000px;}
.ls11{letter-spacing:-0.306000px;}
.ls13{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.150000px;}
.ls9{letter-spacing:-0.132000px;}
.lsb{letter-spacing:-0.114000px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.024000px;}
.lsd{letter-spacing:0.030000px;}
.ls12{letter-spacing:0.084000px;}
.ls18{letter-spacing:0.096000px;}
.ls14{letter-spacing:0.102000px;}
.ls2{letter-spacing:0.132000px;}
.ls6{letter-spacing:0.312000px;}
.ls1{letter-spacing:0.390000px;}
.ls8{letter-spacing:0.414000px;}
.ls10{letter-spacing:0.570000px;}
.ls16{letter-spacing:0.780000px;}
.ls3{letter-spacing:1.368000px;}
.lsc{letter-spacing:1.584000px;}
.ls0{letter-spacing:34.152000px;}
.ls17{letter-spacing:37.152000px;}
.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;}
}
.ws6{word-spacing:-15.486000px;}
.ws3{word-spacing:-15.330000px;}
.ws9{word-spacing:-15.306000px;}
.wsa{word-spacing:-15.048000px;}
.ws8{word-spacing:-15.018000px;}
.wsb{word-spacing:-15.012000px;}
.ws1{word-spacing:-14.916000px;}
.ws4{word-spacing:-14.784000px;}
.ws2{word-spacing:-14.766000px;}
.ws7{word-spacing:-14.736000px;}
.ws0{word-spacing:-14.202000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.188000px;}
._1{width:1.194000px;}
._2{width:2.196000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y67{bottom:112.162500px;}
.y64{bottom:113.662500px;}
.y31{bottom:119.662500px;}
.y63{bottom:133.537500px;}
.y30{bottom:139.537500px;}
.y62{bottom:153.795000px;}
.y2f{bottom:159.795000px;}
.y61{bottom:174.075000px;}
.y2e{bottom:180.075000px;}
.y60{bottom:193.950000px;}
.y2d{bottom:200.325000px;}
.y5f{bottom:214.200000px;}
.y2c{bottom:220.200000px;}
.y5e{bottom:234.450000px;}
.y2b{bottom:240.450000px;}
.y5d{bottom:254.700000px;}
.y2a{bottom:260.700000px;}
.y5c{bottom:274.575000px;}
.y29{bottom:280.575000px;}
.y5b{bottom:294.825000px;}
.y28{bottom:300.825000px;}
.y5a{bottom:315.120000px;}
.y27{bottom:321.105000px;}
.y59{bottom:334.980000px;}
.y26{bottom:341.355000px;}
.y58{bottom:355.230000px;}
.y25{bottom:361.230000px;}
.y57{bottom:375.480000px;}
.y24{bottom:381.480000px;}
.y56{bottom:395.730000px;}
.y23{bottom:401.745000px;}
.y55{bottom:415.620000px;}
.y22{bottom:421.620000px;}
.y54{bottom:435.900000px;}
.y21{bottom:441.900000px;}
.y53{bottom:456.150000px;}
.y20{bottom:462.150000px;}
.y52{bottom:476.025000px;}
.y1f{bottom:482.400000px;}
.y66{bottom:489.150000px;}
.y51{bottom:496.275000px;}
.y1e{bottom:502.275000px;}
.y50{bottom:516.525000px;}
.y1d{bottom:522.525000px;}
.y65{bottom:522.900000px;}
.y4f{bottom:536.775000px;}
.y1c{bottom:542.775000px;}
.y4e{bottom:556.650000px;}
.y1b{bottom:562.695000px;}
.y4d{bottom:576.945000px;}
.y1a{bottom:582.945000px;}
.y4c{bottom:597.195000px;}
.y19{bottom:603.195000px;}
.y4b{bottom:617.070000px;}
.y18{bottom:623.445000px;}
.y4a{bottom:637.320000px;}
.y17{bottom:643.320000px;}
.y49{bottom:657.570000px;}
.y16{bottom:663.570000px;}
.y48{bottom:677.820000px;}
.y15{bottom:683.820000px;}
.y47{bottom:697.725000px;}
.y14{bottom:703.725000px;}
.y46{bottom:717.975000px;}
.y13{bottom:723.975000px;}
.y45{bottom:738.225000px;}
.y12{bottom:744.225000px;}
.y44{bottom:758.100000px;}
.y11{bottom:764.475000px;}
.y43{bottom:778.350000px;}
.y10{bottom:784.350000px;}
.y42{bottom:798.600000px;}
.yf{bottom:804.600000px;}
.y41{bottom:818.895000px;}
.ye{bottom:824.880000px;}
.y40{bottom:838.770000px;}
.yd{bottom:844.755000px;}
.y3f{bottom:859.020000px;}
.yc{bottom:865.005000px;}
.y3e{bottom:879.255000px;}
.yb{bottom:885.255000px;}
.y3d{bottom:899.130000px;}
.ya{bottom:905.130000px;}
.y3c{bottom:919.380000px;}
.y9{bottom:925.380000px;}
.y3b{bottom:939.630000px;}
.y8{bottom:945.675000px;}
.y3a{bottom:959.550000px;}
.y7{bottom:965.925000px;}
.y39{bottom:979.800000px;}
.y6{bottom:985.800000px;}
.y38{bottom:1000.050000px;}
.y5{bottom:1006.050000px;}
.y37{bottom:1020.300000px;}
.y4{bottom:1039.800000px;}
.y36{bottom:1040.175000px;}
.y35{bottom:1060.425000px;}
.y3{bottom:1073.550000px;}
.y34{bottom:1080.705000px;}
.y33{bottom:1100.580000px;}
.y2{bottom:1107.330000px;}
.y32{bottom:1120.830000px;}
.y1{bottom:1141.080000px;}
.h1{height:65.645508px;}
.h2{height:67.837600px;}
.h0{height:1263.000000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.537487px;}
.x2{left:154.574987px;}
.x3{left:765.719987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.634667pt;}
.lsf{letter-spacing:-0.496000pt;}
.lsa{letter-spacing:-0.442667pt;}
.lse{letter-spacing:-0.410667pt;}
.ls11{letter-spacing:-0.272000pt;}
.ls13{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.133333pt;}
.ls9{letter-spacing:-0.117333pt;}
.lsb{letter-spacing:-0.101333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.021333pt;}
.lsd{letter-spacing:0.026667pt;}
.ls12{letter-spacing:0.074667pt;}
.ls18{letter-spacing:0.085333pt;}
.ls14{letter-spacing:0.090667pt;}
.ls2{letter-spacing:0.117333pt;}
.ls6{letter-spacing:0.277333pt;}
.ls1{letter-spacing:0.346667pt;}
.ls8{letter-spacing:0.368000pt;}
.ls10{letter-spacing:0.506667pt;}
.ls16{letter-spacing:0.693333pt;}
.ls3{letter-spacing:1.216000pt;}
.lsc{letter-spacing:1.408000pt;}
.ls0{letter-spacing:30.357333pt;}
.ls17{letter-spacing:33.024000pt;}
.ws6{word-spacing:-13.765333pt;}
.ws3{word-spacing:-13.626667pt;}
.ws9{word-spacing:-13.605333pt;}
.wsa{word-spacing:-13.376000pt;}
.ws8{word-spacing:-13.349333pt;}
.wsb{word-spacing:-13.344000pt;}
.ws1{word-spacing:-13.258667pt;}
.ws4{word-spacing:-13.141333pt;}
.ws2{word-spacing:-13.125333pt;}
.ws7{word-spacing:-13.098667pt;}
.ws0{word-spacing:-12.624000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.056000pt;}
._1{width:1.061333pt;}
._2{width:1.952000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:99.700000pt;}
.y64{bottom:101.033333pt;}
.y31{bottom:106.366667pt;}
.y63{bottom:118.700000pt;}
.y30{bottom:124.033333pt;}
.y62{bottom:136.706667pt;}
.y2f{bottom:142.040000pt;}
.y61{bottom:154.733333pt;}
.y2e{bottom:160.066667pt;}
.y60{bottom:172.400000pt;}
.y2d{bottom:178.066667pt;}
.y5f{bottom:190.400000pt;}
.y2c{bottom:195.733333pt;}
.y5e{bottom:208.400000pt;}
.y2b{bottom:213.733333pt;}
.y5d{bottom:226.400000pt;}
.y2a{bottom:231.733333pt;}
.y5c{bottom:244.066667pt;}
.y29{bottom:249.400000pt;}
.y5b{bottom:262.066667pt;}
.y28{bottom:267.400000pt;}
.y5a{bottom:280.106667pt;}
.y27{bottom:285.426667pt;}
.y59{bottom:297.760000pt;}
.y26{bottom:303.426667pt;}
.y58{bottom:315.760000pt;}
.y25{bottom:321.093333pt;}
.y57{bottom:333.760000pt;}
.y24{bottom:339.093333pt;}
.y56{bottom:351.760000pt;}
.y23{bottom:357.106667pt;}
.y55{bottom:369.440000pt;}
.y22{bottom:374.773333pt;}
.y54{bottom:387.466667pt;}
.y21{bottom:392.800000pt;}
.y53{bottom:405.466667pt;}
.y20{bottom:410.800000pt;}
.y52{bottom:423.133333pt;}
.y1f{bottom:428.800000pt;}
.y66{bottom:434.800000pt;}
.y51{bottom:441.133333pt;}
.y1e{bottom:446.466667pt;}
.y50{bottom:459.133333pt;}
.y1d{bottom:464.466667pt;}
.y65{bottom:464.800000pt;}
.y4f{bottom:477.133333pt;}
.y1c{bottom:482.466667pt;}
.y4e{bottom:494.800000pt;}
.y1b{bottom:500.173333pt;}
.y4d{bottom:512.840000pt;}
.y1a{bottom:518.173333pt;}
.y4c{bottom:530.840000pt;}
.y19{bottom:536.173333pt;}
.y4b{bottom:548.506667pt;}
.y18{bottom:554.173333pt;}
.y4a{bottom:566.506667pt;}
.y17{bottom:571.840000pt;}
.y49{bottom:584.506667pt;}
.y16{bottom:589.840000pt;}
.y48{bottom:602.506667pt;}
.y15{bottom:607.840000pt;}
.y47{bottom:620.200000pt;}
.y14{bottom:625.533333pt;}
.y46{bottom:638.200000pt;}
.y13{bottom:643.533333pt;}
.y45{bottom:656.200000pt;}
.y12{bottom:661.533333pt;}
.y44{bottom:673.866667pt;}
.y11{bottom:679.533333pt;}
.y43{bottom:691.866667pt;}
.y10{bottom:697.200000pt;}
.y42{bottom:709.866667pt;}
.yf{bottom:715.200000pt;}
.y41{bottom:727.906667pt;}
.ye{bottom:733.226667pt;}
.y40{bottom:745.573333pt;}
.yd{bottom:750.893333pt;}
.y3f{bottom:763.573333pt;}
.yc{bottom:768.893333pt;}
.y3e{bottom:781.560000pt;}
.yb{bottom:786.893333pt;}
.y3d{bottom:799.226667pt;}
.ya{bottom:804.560000pt;}
.y3c{bottom:817.226667pt;}
.y9{bottom:822.560000pt;}
.y3b{bottom:835.226667pt;}
.y8{bottom:840.600000pt;}
.y3a{bottom:852.933333pt;}
.y7{bottom:858.600000pt;}
.y39{bottom:870.933333pt;}
.y6{bottom:876.266667pt;}
.y38{bottom:888.933333pt;}
.y5{bottom:894.266667pt;}
.y37{bottom:906.933333pt;}
.y4{bottom:924.266667pt;}
.y36{bottom:924.600000pt;}
.y35{bottom:942.600000pt;}
.y3{bottom:954.266667pt;}
.y34{bottom:960.626667pt;}
.y33{bottom:978.293333pt;}
.y2{bottom:984.293333pt;}
.y32{bottom:996.293333pt;}
.y1{bottom:1014.293333pt;}
.h1{height:58.351562pt;}
.h2{height:60.300089pt;}
.h0{height:1122.666667pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.366655pt;}
.x2{left:137.399988pt;}
.x3{left:680.639988pt;}
}

