
    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_651c28c2e22717ddbe68f850.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_d30cdbae9d8d04d6ecbbb711.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_18467a5bbfd3c0deaf094a94.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1c287831d3faf8d0d48f20c8.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_77a8fdcd1bddc6314d2cad98.woff')format("woff");}.ff5{font-family:ff5;line-height:0.896973;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_58f80deee8b330e234b9b39e.woff')format("woff");}.ff6{font-family:ff6;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);}
.v1{vertical-align:-76.535559px;}
.v2{vertical-align:-63.029284px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.012550px;}
.v4{vertical-align:40.518825px;}
.v5{vertical-align:81.037651px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1{word-spacing:-18.008367px;}
.ws2{word-spacing:-15.003220px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:13.506274px;}
.ws6{word-spacing:24.726331px;}
.ws5{word-spacing:34.117413px;}
.ws4{word-spacing:49.558181px;}
.ws7{word-spacing:100.066022px;}
.ws0{word-spacing:2150.484201px;}
._5{margin-left:-7.984178px;}
._4{margin-left:-6.266004px;}
._3{margin-left:-4.647785px;}
._1{margin-left:-2.648438px;}
._2{margin-left:-1.522483px;}
._0{width:1180.617092px;}
.fc1{color:rgb(170,51,0);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:47.999996px;}
.fs5{font-size:58.527192px;}
.fs4{font-size:60.012882px;}
.fs1{font-size:72.033467px;}
.fs2{font-size:81.037651px;}
.fs3{font-size:84.234131px;}
.y0{bottom:0.000000px;}
.y2f{bottom:12.380743px;}
.y64{bottom:15.757322px;}
.y97{bottom:20.259421px;}
.y2{bottom:25.380071px;}
.y2e{bottom:32.640156px;}
.y63{bottom:36.016735px;}
.y96{bottom:40.518834px;}
.y65{bottom:42.082942px;}
.y3{bottom:42.083005px;}
.y30{bottom:42.083030px;}
.y98{bottom:42.083118px;}
.y2d{bottom:52.899569px;}
.y62{bottom:56.276148px;}
.y95{bottom:60.778246px;}
.y61{bottom:76.535560px;}
.y94{bottom:81.037659px;}
.y2c{bottom:91.167348px;}
.y60{bottom:96.794973px;}
.y93{bottom:101.297072px;}
.y2b{bottom:111.426761px;}
.y5f{bottom:117.054386px;}
.y2a{bottom:131.686174px;}
.y5e{bottom:137.313798px;}
.y92{bottom:139.564851px;}
.y29{bottom:151.945586px;}
.y91{bottom:159.824264px;}
.y28{bottom:172.204999px;}
.y5d{bottom:175.581578px;}
.y90{bottom:180.083676px;}
.y27{bottom:192.464411px;}
.y5c{bottom:195.840990px;}
.y8f{bottom:200.343089px;}
.y5b{bottom:216.100403px;}
.y26{bottom:217.225916px;}
.y8e{bottom:220.602502px;}
.y5a{bottom:240.861907px;}
.y8d{bottom:240.861914px;}
.y25{bottom:255.493695px;}
.y59{bottom:261.121320px;}
.y24{bottom:275.753108px;}
.y8c{bottom:279.129694px;}
.y58{bottom:281.380733px;}
.y23{bottom:296.012521px;}
.y8b{bottom:299.389107px;}
.y57{bottom:301.640145px;}
.y22{bottom:316.271933px;}
.y8a{bottom:319.648519px;}
.y21{bottom:336.531346px;}
.y56{bottom:339.907925px;}
.y89{bottom:339.907932px;}
.y20{bottom:356.790759px;}
.ybb{bottom:359.041817px;}
.y55{bottom:360.167337px;}
.y88{bottom:360.167344px;}
.y1f{bottom:377.050171px;}
.yba{bottom:377.050184px;}
.y54{bottom:380.426750px;}
.y87{bottom:380.426757px;}
.y1e{bottom:397.309584px;}
.y53{bottom:400.686163px;}
.yb8{bottom:400.686165px;}
.y86{bottom:400.686170px;}
.yb7{bottom:410.815872px;}
.y52{bottom:420.945575px;}
.yb9{bottom:420.945578px;}
.y85{bottom:420.945582px;}
.y1d{bottom:422.071088px;}
.y51{bottom:441.204988px;}
.y84{bottom:459.213362px;}
.y1c{bottom:460.338868px;}
.y50{bottom:461.464401px;}
.yb6{bottom:465.966495px;}
.y83{bottom:479.472775px;}
.y1b{bottom:480.598280px;}
.yb5{bottom:492.979045px;}
.y4f{bottom:499.732180px;}
.y82{bottom:499.732187px;}
.y1a{bottom:500.857693px;}
.yb4{bottom:513.238458px;}
.y4e{bottom:519.991593px;}
.y81{bottom:519.991600px;}
.y19{bottom:521.117106px;}
.yb3{bottom:533.497871px;}
.y4d{bottom:540.251005px;}
.y80{bottom:540.251012px;}
.y18{bottom:541.376518px;}
.yb2{bottom:553.757283px;}
.y4c{bottom:560.510418px;}
.y7f{bottom:560.510425px;}
.y17{bottom:561.635931px;}
.yb1{bottom:574.016696px;}
.y4b{bottom:580.769831px;}
.y16{bottom:581.895344px;}
.yb0{bottom:594.276108px;}
.y7e{bottom:598.778205px;}
.y4a{bottom:601.029243px;}
.y15{bottom:602.154756px;}
.y7d{bottom:619.037617px;}
.y14{bottom:622.414169px;}
.yaf{bottom:632.543888px;}
.y49{bottom:639.297023px;}
.y7c{bottom:639.297030px;}
.y13{bottom:642.673582px;}
.y48{bottom:659.556435px;}
.y7b{bottom:659.556443px;}
.y12{bottom:662.932994px;}
.y47{bottom:679.815848px;}
.yae{bottom:682.066897px;}
.y11{bottom:683.192407px;}
.y7a{bottom:697.824222px;}
.y46{bottom:700.075261px;}
.yad{bottom:702.326309px;}
.y10{bottom:703.451819px;}
.y79{bottom:718.083635px;}
.y45{bottom:720.334673px;}
.yac{bottom:722.585722px;}
.yf{bottom:723.711232px;}
.y78{bottom:738.343047px;}
.y44{bottom:740.594086px;}
.yab{bottom:742.845135px;}
.ye{bottom:743.970645px;}
.y77{bottom:758.602460px;}
.y43{bottom:760.853499px;}
.yaa{bottom:763.104547px;}
.y76{bottom:778.861873px;}
.y42{bottom:781.112911px;}
.yd{bottom:782.238424px;}
.ya9{bottom:783.363960px;}
.y75{bottom:799.121285px;}
.y41{bottom:801.372324px;}
.ya8{bottom:803.623373px;}
.y74{bottom:819.380698px;}
.yc{bottom:820.506204px;}
.y40{bottom:839.640103px;}
.yb{bottom:840.765616px;}
.ya7{bottom:841.891152px;}
.y73{bottom:857.648477px;}
.y3f{bottom:859.899516px;}
.ya6{bottom:862.150565px;}
.y72{bottom:877.907890px;}
.y3e{bottom:880.158929px;}
.ya{bottom:882.409965px;}
.ya5{bottom:882.409977px;}
.y71{bottom:898.167303px;}
.y3d{bottom:900.418341px;}
.ya4{bottom:902.669390px;}
.y9{bottom:907.171469px;}
.y70{bottom:918.426715px;}
.y3c{bottom:920.677754px;}
.ya3{bottom:922.928803px;}
.y8{bottom:931.932973px;}
.y6f{bottom:938.686128px;}
.y3b{bottom:940.937167px;}
.ya2{bottom:943.188215px;}
.y7{bottom:956.694478px;}
.y3a{bottom:961.196579px;}
.y6e{bottom:976.953907px;}
.y39{bottom:981.455992px;}
.ya1{bottom:981.455995px;}
.y6d{bottom:997.213320px;}
.y38{bottom:1001.715405px;}
.ya0{bottom:1001.715407px;}
.y6{bottom:1012.970624px;}
.y6c{bottom:1017.472733px;}
.y37{bottom:1021.974817px;}
.y9f{bottom:1021.974820px;}
.y6b{bottom:1037.732145px;}
.y5{bottom:1039.983174px;}
.y9e{bottom:1042.234233px;}
.y6a{bottom:1057.991558px;}
.y36{bottom:1060.242597px;}
.y9d{bottom:1062.493645px;}
.y4{bottom:1063.619156px;}
.y69{bottom:1078.250971px;}
.y35{bottom:1080.502009px;}
.y9c{bottom:1082.753058px;}
.y68{bottom:1098.510383px;}
.y34{bottom:1100.761422px;}
.y33{bottom:1121.020835px;}
.y9b{bottom:1121.020837px;}
.y32{bottom:1141.280247px;}
.y9a{bottom:1141.280250px;}
.y67{bottom:1141.280254px;}
.y31{bottom:1161.539660px;}
.y99{bottom:1161.539663px;}
.y66{bottom:1161.539667px;}
.y1{bottom:1229.879973px;}
.h2{height:34.945310px;}
.hc{height:40.666111px;}
.h4{height:50.050598px;}
.h7{height:57.376276px;}
.h5{height:59.749440px;}
.h8{height:63.978944px;}
.h9{height:68.710954px;}
.h6{height:74.815373px;}
.ha{height:90.569423px;}
.hb{height:131.088248px;}
.h3{height:1177.296971px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w2{width:806.999906px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:9.004183px;}
.x1{left:39.679684px;}
.x2{left:43.499994px;}
.x3{left:91.730118px;}
.x5{left:149.641790px;}
.xd{left:188.190950px;}
.x6{left:290.877331px;}
.x8{left:360.026646px;}
.x7{left:363.543905px;}
.xc{left:403.499969px;}
.x9{left:442.031548px;}
.xa{left:456.258856px;}
.xb{left:653.225368px;}
@media print{
.v1{vertical-align:-68.031608pt;}
.v2{vertical-align:-56.026030pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.011156pt;}
.v4{vertical-align:36.016734pt;}
.v5{vertical-align:72.033467pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-16.007437pt;}
.ws2{word-spacing:-13.336196pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:12.005577pt;}
.ws6{word-spacing:21.978961pt;}
.ws5{word-spacing:30.326590pt;}
.ws4{word-spacing:44.051716pt;}
.ws7{word-spacing:88.947575pt;}
.ws0{word-spacing:1911.541512pt;}
._5{margin-left:-7.097047pt;}
._4{margin-left:-5.569782pt;}
._3{margin-left:-4.131365pt;}
._1{margin-left:-2.354167pt;}
._2{margin-left:-1.353318pt;}
._0{width:1049.437416pt;}
.fs0{font-size:42.666663pt;}
.fs5{font-size:52.024171pt;}
.fs4{font-size:53.344784pt;}
.fs1{font-size:64.029749pt;}
.fs2{font-size:72.033467pt;}
.fs3{font-size:74.874783pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:11.005105pt;}
.y64{bottom:14.006509pt;}
.y97{bottom:18.008374pt;}
.y2{bottom:22.560063pt;}
.y2e{bottom:29.013472pt;}
.y63{bottom:32.014875pt;}
.y96{bottom:36.016741pt;}
.y65{bottom:37.407060pt;}
.y3{bottom:37.407116pt;}
.y30{bottom:37.407138pt;}
.y98{bottom:37.407216pt;}
.y2d{bottom:47.021839pt;}
.y62{bottom:50.023242pt;}
.y95{bottom:54.025108pt;}
.y61{bottom:68.031609pt;}
.y94{bottom:72.033475pt;}
.y2c{bottom:81.037643pt;}
.y60{bottom:86.039976pt;}
.y93{bottom:90.041841pt;}
.y2b{bottom:99.046010pt;}
.y5f{bottom:104.048343pt;}
.y2a{bottom:117.054376pt;}
.y5e{bottom:122.056709pt;}
.y92{bottom:124.057645pt;}
.y29{bottom:135.062743pt;}
.y91{bottom:142.066012pt;}
.y28{bottom:153.071110pt;}
.y5d{bottom:156.072513pt;}
.y90{bottom:160.074379pt;}
.y27{bottom:171.079477pt;}
.y5c{bottom:174.080880pt;}
.y8f{bottom:178.082746pt;}
.y5b{bottom:192.089247pt;}
.y26{bottom:193.089703pt;}
.y8e{bottom:196.091113pt;}
.y5a{bottom:214.099473pt;}
.y8d{bottom:214.099479pt;}
.y25{bottom:227.105507pt;}
.y59{bottom:232.107840pt;}
.y24{bottom:245.113874pt;}
.y8c{bottom:248.115283pt;}
.y58{bottom:250.116207pt;}
.y23{bottom:263.122241pt;}
.y8b{bottom:266.123650pt;}
.y57{bottom:268.124574pt;}
.y22{bottom:281.130607pt;}
.y8a{bottom:284.132017pt;}
.y21{bottom:299.138974pt;}
.y56{bottom:302.140377pt;}
.y89{bottom:302.140384pt;}
.y20{bottom:317.147341pt;}
.ybb{bottom:319.148282pt;}
.y55{bottom:320.148744pt;}
.y88{bottom:320.148751pt;}
.y1f{bottom:335.155708pt;}
.yba{bottom:335.155719pt;}
.y54{bottom:338.157111pt;}
.y87{bottom:338.157117pt;}
.y1e{bottom:353.164075pt;}
.y53{bottom:356.165478pt;}
.yb8{bottom:356.165480pt;}
.y86{bottom:356.165484pt;}
.yb7{bottom:365.169664pt;}
.y52{bottom:374.173845pt;}
.yb9{bottom:374.173847pt;}
.y85{bottom:374.173851pt;}
.y1d{bottom:375.174301pt;}
.y51{bottom:392.182211pt;}
.y84{bottom:408.189655pt;}
.y1c{bottom:409.190105pt;}
.y50{bottom:410.190578pt;}
.yb6{bottom:414.192440pt;}
.y83{bottom:426.198022pt;}
.y1b{bottom:427.198471pt;}
.yb5{bottom:438.203596pt;}
.y4f{bottom:444.206382pt;}
.y82{bottom:444.206389pt;}
.y1a{bottom:445.206838pt;}
.yb4{bottom:456.211963pt;}
.y4e{bottom:462.214749pt;}
.y81{bottom:462.214755pt;}
.y19{bottom:463.215205pt;}
.yb3{bottom:474.220329pt;}
.y4d{bottom:480.223116pt;}
.y80{bottom:480.223122pt;}
.y18{bottom:481.223572pt;}
.yb2{bottom:492.228696pt;}
.y4c{bottom:498.231483pt;}
.y7f{bottom:498.231489pt;}
.y17{bottom:499.231939pt;}
.yb1{bottom:510.237063pt;}
.y4b{bottom:516.239849pt;}
.y16{bottom:517.240305pt;}
.yb0{bottom:528.245430pt;}
.y7e{bottom:532.247293pt;}
.y4a{bottom:534.248216pt;}
.y15{bottom:535.248672pt;}
.y7d{bottom:550.255660pt;}
.y14{bottom:553.257039pt;}
.yaf{bottom:562.261234pt;}
.y49{bottom:568.264020pt;}
.y7c{bottom:568.264027pt;}
.y13{bottom:571.265406pt;}
.y48{bottom:586.272387pt;}
.y7b{bottom:586.272393pt;}
.y12{bottom:589.273773pt;}
.y47{bottom:604.280754pt;}
.yae{bottom:606.281686pt;}
.y11{bottom:607.282139pt;}
.y7a{bottom:620.288197pt;}
.y46{bottom:622.289121pt;}
.yad{bottom:624.290053pt;}
.y10{bottom:625.290506pt;}
.y79{bottom:638.296564pt;}
.y45{bottom:640.297487pt;}
.yac{bottom:642.298420pt;}
.yf{bottom:643.298873pt;}
.y78{bottom:656.304931pt;}
.y44{bottom:658.305854pt;}
.yab{bottom:660.306786pt;}
.ye{bottom:661.307240pt;}
.y77{bottom:674.313298pt;}
.y43{bottom:676.314221pt;}
.yaa{bottom:678.315153pt;}
.y76{bottom:692.321665pt;}
.y42{bottom:694.322588pt;}
.yd{bottom:695.323044pt;}
.ya9{bottom:696.323520pt;}
.y75{bottom:710.330031pt;}
.y41{bottom:712.330955pt;}
.ya8{bottom:714.331887pt;}
.y74{bottom:728.338398pt;}
.yc{bottom:729.338848pt;}
.y40{bottom:746.346759pt;}
.yb{bottom:747.347215pt;}
.ya7{bottom:748.347691pt;}
.y73{bottom:762.354202pt;}
.y3f{bottom:764.355125pt;}
.ya6{bottom:766.356057pt;}
.y72{bottom:780.362569pt;}
.y3e{bottom:782.363492pt;}
.ya{bottom:784.364413pt;}
.ya5{bottom:784.364424pt;}
.y71{bottom:798.370936pt;}
.y3d{bottom:800.371859pt;}
.ya4{bottom:802.372791pt;}
.y9{bottom:806.374639pt;}
.y70{bottom:816.379302pt;}
.y3c{bottom:818.380226pt;}
.ya3{bottom:820.381158pt;}
.y8{bottom:828.384865pt;}
.y6f{bottom:834.387669pt;}
.y3b{bottom:836.388593pt;}
.ya2{bottom:838.389525pt;}
.y7{bottom:850.395091pt;}
.y3a{bottom:854.396959pt;}
.y6e{bottom:868.403473pt;}
.y39{bottom:872.405326pt;}
.ya1{bottom:872.405329pt;}
.y6d{bottom:886.411840pt;}
.y38{bottom:890.413693pt;}
.ya0{bottom:890.413695pt;}
.y6{bottom:900.418332pt;}
.y6c{bottom:904.420207pt;}
.y37{bottom:908.422060pt;}
.y9f{bottom:908.422062pt;}
.y6b{bottom:922.428574pt;}
.y5{bottom:924.429488pt;}
.y9e{bottom:926.430429pt;}
.y6a{bottom:940.436940pt;}
.y36{bottom:942.437864pt;}
.y9d{bottom:944.438796pt;}
.y4{bottom:945.439249pt;}
.y69{bottom:958.445307pt;}
.y35{bottom:960.446231pt;}
.y9c{bottom:962.447163pt;}
.y68{bottom:976.453674pt;}
.y34{bottom:978.454597pt;}
.y33{bottom:996.462964pt;}
.y9b{bottom:996.462967pt;}
.y32{bottom:1014.471331pt;}
.y9a{bottom:1014.471333pt;}
.y67{bottom:1014.471337pt;}
.y31{bottom:1032.479698pt;}
.y99{bottom:1032.479700pt;}
.y66{bottom:1032.479704pt;}
.y1{bottom:1093.226642pt;}
.h2{height:31.062497pt;}
.hc{height:36.147654pt;}
.h4{height:44.489420pt;}
.h7{height:51.001134pt;}
.h5{height:53.110613pt;}
.h8{height:56.870172pt;}
.h9{height:61.076404pt;}
.h6{height:66.502554pt;}
.ha{height:80.506154pt;}
.hb{height:116.522887pt;}
.h3{height:1046.486196pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w2{width:717.333250pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:8.003719pt;}
.x1{left:35.270830pt;}
.x2{left:38.666661pt;}
.x3{left:81.537883pt;}
.x5{left:133.014925pt;}
.xd{left:167.280845pt;}
.x6{left:258.557628pt;}
.x8{left:320.023685pt;}
.x7{left:323.150138pt;}
.xc{left:358.666639pt;}
.x9{left:392.916932pt;}
.xa{left:405.563427pt;}
.xb{left:580.644771pt;}
}

