
    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_c3813e13640bc8affa755f78.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_ca55766b4727585a9753d5ec.woff')format("woff");}.ff2{font-family:ff2;line-height:1.040039;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_319d677086fd456d68060f55.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:10.259465px;}
.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:-14.940563px;}
.ws7{word-spacing:-4.780980px;}
.ws1{word-spacing:0.000000px;}
.ws6{word-spacing:17.331053px;}
.ws4{word-spacing:28.088257px;}
.ws3{word-spacing:28.685880px;}
.ws5{word-spacing:58.567005px;}
.ws2{word-spacing:59.164627px;}
._9{margin-left:-10.875874px;}
._7{margin-left:-9.283212px;}
._28{margin-left:-8.138796px;}
._a{margin-left:-7.110307px;}
._5{margin-left:-6.038096px;}
._6{margin-left:-4.841456px;}
._0{margin-left:-3.585268px;}
._8{margin-left:-2.469783px;}
._1{margin-left:-1.393207px;}
._2{width:1.364027px;}
._c{width:2.650315px;}
._e{width:3.747981px;}
._b{width:5.077924px;}
._4{width:6.914679px;}
._3{width:8.508183px;}
._d{width:9.728561px;}
._14{width:11.525716px;}
._19{width:12.821336px;}
._24{width:13.868341px;}
._1b{width:16.408939px;}
._1a{width:17.447305px;}
._f{width:19.277527px;}
._29{width:22.009549px;}
._21{width:23.177247px;}
._22{width:24.417080px;}
._23{width:25.787878px;}
._13{width:28.175331px;}
._12{width:29.445748px;}
._11{width:31.214803px;}
._15{width:32.853828px;}
._16{width:34.433326px;}
._1d{width:35.616433px;}
._1e{width:36.695889px;}
._20{width:37.805692px;}
._26{width:39.147773px;}
._2b{width:41.329797px;}
._1c{width:43.988515px;}
._2a{width:45.072874px;}
._10{width:46.940678px;}
._25{width:48.016398px;}
._2d{width:50.895492px;}
._2e{width:52.631633px;}
._18{width:53.932861px;}
._1f{width:63.708190px;}
._27{width:74.105190px;}
._17{width:98.010090px;}
._2c{width:167.841577px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.762250px;}
.fs1{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y29{bottom:194.400055px;}
.y4{bottom:195.120072px;}
.y28{bottom:212.400055px;}
.y3{bottom:213.120072px;}
.y1{bottom:238.500068px;}
.y26{bottom:269.820099px;}
.y7a{bottom:276.120072px;}
.y71{bottom:280.620072px;}
.y52{bottom:285.480079px;}
.y7e{bottom:286.020058px;}
.y25{bottom:287.820099px;}
.y70{bottom:298.620072px;}
.y51{bottom:303.480079px;}
.y7d{bottom:304.020058px;}
.y24{bottom:305.820099px;}
.y6f{bottom:316.620072px;}
.y50{bottom:321.480079px;}
.y7c{bottom:322.020058px;}
.y23{bottom:323.820099px;}
.y6e{bottom:334.620072px;}
.y4f{bottom:339.480079px;}
.y22{bottom:341.820099px;}
.y6d{bottom:352.620072px;}
.y4e{bottom:357.480079px;}
.y21{bottom:359.820099px;}
.y6c{bottom:370.620072px;}
.y4d{bottom:375.480079px;}
.y20{bottom:377.820099px;}
.y6b{bottom:388.620072px;}
.y7b{bottom:388.980079px;}
.y4c{bottom:393.480079px;}
.y79{bottom:394.200096px;}
.y1f{bottom:395.820099px;}
.y6a{bottom:406.620072px;}
.y4b{bottom:411.480079px;}
.y1e{bottom:413.820099px;}
.y69{bottom:424.620072px;}
.y4a{bottom:429.480079px;}
.y1d{bottom:431.820099px;}
.y68{bottom:442.620072px;}
.y49{bottom:447.480079px;}
.y1c{bottom:449.820099px;}
.y67{bottom:460.620072px;}
.y48{bottom:465.480079px;}
.y1b{bottom:467.820099px;}
.y66{bottom:478.620072px;}
.y47{bottom:483.480079px;}
.y1a{bottom:485.820099px;}
.y65{bottom:496.620072px;}
.y46{bottom:501.480079px;}
.y19{bottom:503.820099px;}
.y78{bottom:513.360077px;}
.y64{bottom:514.620072px;}
.y45{bottom:519.480079px;}
.y18{bottom:521.820099px;}
.y63{bottom:532.620072px;}
.y44{bottom:537.480079px;}
.y17{bottom:539.820099px;}
.y62{bottom:550.620072px;}
.y43{bottom:555.480079px;}
.y16{bottom:557.820099px;}
.y61{bottom:568.620072px;}
.y42{bottom:573.480079px;}
.y15{bottom:575.820099px;}
.y60{bottom:586.620072px;}
.y41{bottom:591.480079px;}
.y14{bottom:593.820099px;}
.y5f{bottom:604.620072px;}
.y40{bottom:609.480079px;}
.y13{bottom:611.820099px;}
.y5e{bottom:622.620072px;}
.y3f{bottom:627.480079px;}
.y12{bottom:630.000068px;}
.y77{bottom:635.400055px;}
.y5d{bottom:640.620072px;}
.y3e{bottom:645.480079px;}
.y5c{bottom:658.620072px;}
.y3d{bottom:663.480079px;}
.y72{bottom:676.620072px;}
.y3c{bottom:681.480079px;}
.y5b{bottom:694.620072px;}
.y3b{bottom:699.480079px;}
.y11{bottom:700.200061px;}
.y3a{bottom:717.480079px;}
.y10{bottom:718.200061px;}
.y5a{bottom:730.620072px;}
.y39{bottom:735.480079px;}
.yf{bottom:736.200061px;}
.y76{bottom:741.780052px;}
.y59{bottom:748.620072px;}
.y38{bottom:753.480079px;}
.y58{bottom:766.620072px;}
.y37{bottom:771.480079px;}
.y57{bottom:784.620072px;}
.y36{bottom:789.480079px;}
.ye{bottom:790.200061px;}
.y56{bottom:802.620072px;}
.y35{bottom:807.480079px;}
.yd{bottom:808.200061px;}
.y55{bottom:820.620072px;}
.y34{bottom:825.480079px;}
.yc{bottom:826.200061px;}
.y54{bottom:838.620072px;}
.y33{bottom:843.480079px;}
.yb{bottom:844.200061px;}
.y32{bottom:861.480079px;}
.ya{bottom:862.200061px;}
.y73{bottom:865.080059px;}
.y75{bottom:869.400055px;}
.y31{bottom:879.480079px;}
.y9{bottom:880.200061px;}
.y30{bottom:897.480079px;}
.y2f{bottom:915.480079px;}
.y2e{bottom:933.480079px;}
.y8{bottom:937.260064px;}
.y2d{bottom:951.480079px;}
.y74{bottom:952.200061px;}
.y7{bottom:958.500068px;}
.y2c{bottom:969.480079px;}
.y2b{bottom:987.480063px;}
.y6{bottom:1000.620072px;}
.y53{bottom:1005.480063px;}
.y5{bottom:1021.500068px;}
.y2a{bottom:1023.480063px;}
.y27{bottom:1062.900072px;}
.y2{bottom:1064.700061px;}
.h3{height:49.257167px;}
.h5{height:53.079850px;}
.h2{height:53.575923px;}
.h4{height:63.951621px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:161.460005px;}
.x15{left:174.060001px;}
.x10{left:178.560001px;}
.x2{left:180.539996px;}
.xe{left:188.099997px;}
.x18{left:191.159998px;}
.x13{left:196.560001px;}
.x14{left:215.099997px;}
.x3{left:216.539996px;}
.x4{left:235.080008px;}
.xd{left:276.479994px;}
.x5{left:289.439999px;}
.x6{left:297.360008px;}
.xf{left:298.439999px;}
.x7{left:358.019989px;}
.xb{left:370.980011px;}
.x9{left:376.560001px;}
.x8{left:379.980011px;}
.xa{left:382.319996px;}
.xc{left:385.560001px;}
.x1b{left:403.379998px;}
.x11{left:419.939999px;}
.x1{left:437.759994px;}
.x16{left:448.379998px;}
.x17{left:461.160015px;}
.x19{left:465.480011px;}
.x1c{left:476.100014px;}
.x1a{left:478.259994px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:9.119524pt;}
.ws0{word-spacing:-13.280500pt;}
.ws7{word-spacing:-4.249760pt;}
.ws1{word-spacing:0.000000pt;}
.ws6{word-spacing:15.405380pt;}
.ws4{word-spacing:24.967340pt;}
.ws3{word-spacing:25.498560pt;}
.ws5{word-spacing:52.059560pt;}
.ws2{word-spacing:52.590780pt;}
._9{margin-left:-9.667443pt;}
._7{margin-left:-8.251744pt;}
._28{margin-left:-7.234486pt;}
._a{margin-left:-6.320273pt;}
._5{margin-left:-5.367196pt;}
._6{margin-left:-4.303516pt;}
._0{margin-left:-3.186905pt;}
._8{margin-left:-2.195362pt;}
._1{margin-left:-1.238407pt;}
._2{width:1.212468pt;}
._c{width:2.355836pt;}
._e{width:3.331538pt;}
._b{width:4.513710pt;}
._4{width:6.146381pt;}
._3{width:7.562830pt;}
._d{width:8.647610pt;}
._14{width:10.245081pt;}
._19{width:11.396743pt;}
._24{width:12.327414pt;}
._1b{width:14.585723pt;}
._1a{width:15.508716pt;}
._f{width:17.135579pt;}
._29{width:19.564044pt;}
._21{width:20.601997pt;}
._22{width:21.704071pt;}
._23{width:22.922558pt;}
._13{width:25.044739pt;}
._12{width:26.173998pt;}
._11{width:27.746492pt;}
._15{width:29.203402pt;}
._16{width:30.607401pt;}
._1d{width:31.659052pt;}
._1e{width:32.618568pt;}
._20{width:33.605060pt;}
._26{width:34.798020pt;}
._2b{width:36.737597pt;}
._1c{width:39.100902pt;}
._2a{width:40.064777pt;}
._10{width:41.725047pt;}
._25{width:42.681243pt;}
._2d{width:45.240438pt;}
._2e{width:46.783674pt;}
._18{width:47.940321pt;}
._1f{width:56.629502pt;}
._27{width:65.871280pt;}
._17{width:87.120080pt;}
._2c{width:149.192513pt;}
.fs0{font-size:53.122000pt;}
.fs1{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:172.800049pt;}
.y4{bottom:173.440064pt;}
.y28{bottom:188.800049pt;}
.y3{bottom:189.440064pt;}
.y1{bottom:212.000061pt;}
.y26{bottom:239.840088pt;}
.y7a{bottom:245.440064pt;}
.y71{bottom:249.440064pt;}
.y52{bottom:253.760071pt;}
.y7e{bottom:254.240052pt;}
.y25{bottom:255.840088pt;}
.y70{bottom:265.440064pt;}
.y51{bottom:269.760071pt;}
.y7d{bottom:270.240052pt;}
.y24{bottom:271.840088pt;}
.y6f{bottom:281.440064pt;}
.y50{bottom:285.760071pt;}
.y7c{bottom:286.240052pt;}
.y23{bottom:287.840088pt;}
.y6e{bottom:297.440064pt;}
.y4f{bottom:301.760071pt;}
.y22{bottom:303.840088pt;}
.y6d{bottom:313.440064pt;}
.y4e{bottom:317.760071pt;}
.y21{bottom:319.840088pt;}
.y6c{bottom:329.440064pt;}
.y4d{bottom:333.760071pt;}
.y20{bottom:335.840088pt;}
.y6b{bottom:345.440064pt;}
.y7b{bottom:345.760071pt;}
.y4c{bottom:349.760071pt;}
.y79{bottom:350.400086pt;}
.y1f{bottom:351.840088pt;}
.y6a{bottom:361.440064pt;}
.y4b{bottom:365.760071pt;}
.y1e{bottom:367.840088pt;}
.y69{bottom:377.440064pt;}
.y4a{bottom:381.760071pt;}
.y1d{bottom:383.840088pt;}
.y68{bottom:393.440064pt;}
.y49{bottom:397.760071pt;}
.y1c{bottom:399.840088pt;}
.y67{bottom:409.440064pt;}
.y48{bottom:413.760071pt;}
.y1b{bottom:415.840088pt;}
.y66{bottom:425.440064pt;}
.y47{bottom:429.760071pt;}
.y1a{bottom:431.840088pt;}
.y65{bottom:441.440064pt;}
.y46{bottom:445.760071pt;}
.y19{bottom:447.840088pt;}
.y78{bottom:456.320069pt;}
.y64{bottom:457.440064pt;}
.y45{bottom:461.760071pt;}
.y18{bottom:463.840088pt;}
.y63{bottom:473.440064pt;}
.y44{bottom:477.760071pt;}
.y17{bottom:479.840088pt;}
.y62{bottom:489.440064pt;}
.y43{bottom:493.760071pt;}
.y16{bottom:495.840088pt;}
.y61{bottom:505.440064pt;}
.y42{bottom:509.760071pt;}
.y15{bottom:511.840088pt;}
.y60{bottom:521.440064pt;}
.y41{bottom:525.760071pt;}
.y14{bottom:527.840088pt;}
.y5f{bottom:537.440064pt;}
.y40{bottom:541.760071pt;}
.y13{bottom:543.840088pt;}
.y5e{bottom:553.440064pt;}
.y3f{bottom:557.760071pt;}
.y12{bottom:560.000061pt;}
.y77{bottom:564.800049pt;}
.y5d{bottom:569.440064pt;}
.y3e{bottom:573.760071pt;}
.y5c{bottom:585.440064pt;}
.y3d{bottom:589.760071pt;}
.y72{bottom:601.440064pt;}
.y3c{bottom:605.760071pt;}
.y5b{bottom:617.440064pt;}
.y3b{bottom:621.760071pt;}
.y11{bottom:622.400055pt;}
.y3a{bottom:637.760071pt;}
.y10{bottom:638.400055pt;}
.y5a{bottom:649.440064pt;}
.y39{bottom:653.760071pt;}
.yf{bottom:654.400055pt;}
.y76{bottom:659.360047pt;}
.y59{bottom:665.440064pt;}
.y38{bottom:669.760071pt;}
.y58{bottom:681.440064pt;}
.y37{bottom:685.760071pt;}
.y57{bottom:697.440064pt;}
.y36{bottom:701.760071pt;}
.ye{bottom:702.400055pt;}
.y56{bottom:713.440064pt;}
.y35{bottom:717.760071pt;}
.yd{bottom:718.400055pt;}
.y55{bottom:729.440064pt;}
.y34{bottom:733.760071pt;}
.yc{bottom:734.400055pt;}
.y54{bottom:745.440064pt;}
.y33{bottom:749.760071pt;}
.yb{bottom:750.400055pt;}
.y32{bottom:765.760071pt;}
.ya{bottom:766.400055pt;}
.y73{bottom:768.960053pt;}
.y75{bottom:772.800049pt;}
.y31{bottom:781.760071pt;}
.y9{bottom:782.400055pt;}
.y30{bottom:797.760071pt;}
.y2f{bottom:813.760071pt;}
.y2e{bottom:829.760071pt;}
.y8{bottom:833.120057pt;}
.y2d{bottom:845.760071pt;}
.y74{bottom:846.400055pt;}
.y7{bottom:852.000061pt;}
.y2c{bottom:861.760071pt;}
.y2b{bottom:877.760056pt;}
.y6{bottom:889.440064pt;}
.y53{bottom:893.760056pt;}
.y5{bottom:908.000061pt;}
.y2a{bottom:909.760056pt;}
.y27{bottom:944.800064pt;}
.y2{bottom:946.400055pt;}
.h3{height:43.784148pt;}
.h5{height:47.182089pt;}
.h2{height:47.623043pt;}
.h4{height:56.845885pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:143.520004pt;}
.x15{left:154.720001pt;}
.x10{left:158.720001pt;}
.x2{left:160.479996pt;}
.xe{left:167.199997pt;}
.x18{left:169.919998pt;}
.x13{left:174.720001pt;}
.x14{left:191.199997pt;}
.x3{left:192.479996pt;}
.x4{left:208.960007pt;}
.xd{left:245.759995pt;}
.x5{left:257.279999pt;}
.x6{left:264.320007pt;}
.xf{left:265.279999pt;}
.x7{left:318.239990pt;}
.xb{left:329.760010pt;}
.x9{left:334.720001pt;}
.x8{left:337.760010pt;}
.xa{left:339.839996pt;}
.xc{left:342.720001pt;}
.x1b{left:358.559998pt;}
.x11{left:373.279999pt;}
.x1{left:389.119995pt;}
.x16{left:398.559998pt;}
.x17{left:409.920013pt;}
.x19{left:413.760010pt;}
.x1c{left:423.200012pt;}
.x1a{left:425.119995pt;}
}

