
    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_cc1f0bd5977825d2a01ff0c7.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_370bc7ce1280060570a9b62a.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4c9f95f451aeedc5eb0a144f.woff')format("woff");}.ff3{font-family:ff3;line-height:911.000000;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_bc5187b4b9f121c0a096cff2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.960762;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_6611db9548c8e5306a2f8686.woff')format("woff");}.ff5{font-family:ff5;line-height:0.692383;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_482629b55a50030c7f1793c5.woff')format("woff");}.ff6{font-family:ff6;line-height:916.000000;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_1a36d5b298b94617068dfd2a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.691406;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);}
.v5{vertical-align:-158.399937px;}
.v4{vertical-align:-143.999942px;}
.v2{vertical-align:-71.999971px;}
.v1{vertical-align:-64.799974px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3023.998790px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001860px;}
.ls2{letter-spacing:14.999994px;}
.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:-46.619981px;}
.ws2{word-spacing:-29.999988px;}
.ws1{word-spacing:-26.999989px;}
.ws5{word-spacing:-14.999994px;}
.ws0{word-spacing:-0.039000px;}
.ws3{word-spacing:0.000000px;}
.ws7{word-spacing:14.800194px;}
.ws4{word-spacing:741.635703px;}
._7{margin-left:-2211.112972px;}
._c{margin-left:-1883.891073px;}
._1a{margin-left:-1061.937265px;}
._15{margin-left:-1060.351377px;}
._18{margin-left:-1059.209901px;}
._1d{margin-left:-958.511329px;}
._21{margin-left:-851.738443px;}
._16{margin-left:-836.577647px;}
._13{margin-left:-785.975686px;}
._23{margin-left:-700.538504px;}
._1f{margin-left:-259.232824px;}
._1b{margin-left:-191.409782px;}
._a{margin-left:-15.034242px;}
._5{margin-left:-11.106933px;}
._1c{margin-left:-8.474614px;}
._17{margin-left:-7.299811px;}
._0{margin-left:-6.039736px;}
._3{margin-left:-4.041736px;}
._1{margin-left:-2.007071px;}
._14{margin-left:-1.001646px;}
._b{width:1.026263px;}
._e{width:2.267489px;}
._11{width:3.347999px;}
._12{width:4.427998px;}
._d{width:5.841050px;}
._f{width:7.837380px;}
._20{width:9.359996px;}
._22{width:10.560236px;}
._10{width:11.950795px;}
._1e{width:13.739995px;}
._24{width:14.760054px;}
._25{width:16.431704px;}
._19{width:103.899677px;}
._2{width:755.100508px;}
._8{width:772.894779px;}
._6{width:1086.158638px;}
._4{width:1087.497303px;}
._9{width:1359.344528px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:47.999981px;}
.fs0{font-size:53.999978px;}
.fs3{font-size:59.999976px;}
.fs2{font-size:119.999952px;}
.y0{bottom:0.000000px;}
.y25{bottom:81.292414px;}
.y74{bottom:81.293914px;}
.y6{bottom:82.412193px;}
.y2{bottom:84.180693px;}
.y50{bottom:84.293913px;}
.y5{bottom:111.212182px;}
.y73{bottom:113.738181px;}
.y53{bottom:113.753181px;}
.y4{bottom:125.612176px;}
.y72{bottom:131.738174px;}
.y49{bottom:131.753174px;}
.y24{bottom:133.920000px;}
.y1{bottom:134.033220px;}
.y71{bottom:149.738166px;}
.y4f{bottom:149.753166px;}
.y7d{bottom:167.738159px;}
.y48{bottom:167.753159px;}
.y23{bottom:175.713656px;}
.y70{bottom:185.738152px;}
.y47{bottom:185.753152px;}
.y22{bottom:193.713649px;}
.y6f{bottom:203.738145px;}
.y46{bottom:203.753145px;}
.y21{bottom:211.713642px;}
.y7c{bottom:221.738138px;}
.y45{bottom:221.753138px;}
.y20{bottom:229.713635px;}
.y6e{bottom:239.738130px;}
.y44{bottom:239.753130px;}
.y1f{bottom:247.713627px;}
.y6d{bottom:257.738123px;}
.y43{bottom:257.753123px;}
.y1e{bottom:265.713620px;}
.y6c{bottom:275.738116px;}
.y42{bottom:275.753116px;}
.y1d{bottom:283.713613px;}
.y6b{bottom:293.738109px;}
.y41{bottom:293.753109px;}
.y1c{bottom:301.713606px;}
.y6a{bottom:311.738102px;}
.y40{bottom:311.753102px;}
.y69{bottom:329.738094px;}
.y3f{bottom:329.753094px;}
.y1b{bottom:331.152594px;}
.y68{bottom:347.738087px;}
.y3e{bottom:347.753087px;}
.y1a{bottom:363.552581px;}
.y7f{bottom:365.738080px;}
.y52{bottom:365.753080px;}
.y19{bottom:379.752574px;}
.y67{bottom:383.738073px;}
.y3d{bottom:383.753073px;}
.y18{bottom:395.952568px;}
.y7b{bottom:401.738066px;}
.y3c{bottom:401.753066px;}
.y17{bottom:412.152562px;}
.y84{bottom:416.153060px;}
.y66{bottom:419.738058px;}
.y3b{bottom:419.753058px;}
.y65{bottom:437.738051px;}
.y3a{bottom:437.753051px;}
.y16{bottom:444.552549px;}
.y83{bottom:452.153046px;}
.y7a{bottom:455.738044px;}
.y39{bottom:455.753044px;}
.y15{bottom:460.752542px;}
.y82{bottom:470.153038px;}
.y64{bottom:473.738037px;}
.y38{bottom:473.753037px;}
.y14{bottom:476.952536px;}
.y81{bottom:488.153031px;}
.y79{bottom:491.738030px;}
.y37{bottom:491.753030px;}
.y13{bottom:509.352523px;}
.y63{bottom:509.738022px;}
.y4e{bottom:509.753022px;}
.y12{bottom:525.552516px;}
.y62{bottom:527.738015px;}
.y36{bottom:527.753015px;}
.y61{bottom:545.738008px;}
.y35{bottom:545.753008px;}
.y11{bottom:557.952503px;}
.y60{bottom:563.738001px;}
.y4d{bottom:563.753001px;}
.y10{bottom:574.152497px;}
.y5f{bottom:581.737994px;}
.y34{bottom:581.752994px;}
.yf{bottom:590.352490px;}
.y78{bottom:599.737986px;}
.y33{bottom:599.752986px;}
.y5e{bottom:617.737979px;}
.y4c{bottom:617.752979px;}
.ye{bottom:622.752477px;}
.y77{bottom:635.737972px;}
.y4b{bottom:635.752972px;}
.y5d{bottom:653.737965px;}
.y32{bottom:653.752965px;}
.yd{bottom:655.152464px;}
.yc{bottom:671.352458px;}
.y76{bottom:671.737958px;}
.y31{bottom:671.752958px;}
.y75{bottom:689.737950px;}
.y30{bottom:689.752950px;}
.y5c{bottom:707.737943px;}
.y2f{bottom:707.752943px;}
.yb{bottom:725.352436px;}
.y5b{bottom:725.737936px;}
.y4a{bottom:725.752936px;}
.ya{bottom:741.552430px;}
.y5a{bottom:743.737929px;}
.y2e{bottom:743.752929px;}
.y59{bottom:761.737922px;}
.y2d{bottom:761.752922px;}
.y58{bottom:779.737914px;}
.y2c{bottom:779.752914px;}
.y7e{bottom:797.737907px;}
.y2b{bottom:797.752907px;}
.y9{bottom:799.152407px;}
.y57{bottom:815.737900px;}
.y2a{bottom:815.752900px;}
.y56{bottom:833.737893px;}
.y29{bottom:833.752893px;}
.y55{bottom:851.737886px;}
.y28{bottom:851.752886px;}
.y54{bottom:869.737878px;}
.y27{bottom:869.752878px;}
.y8{bottom:878.466375px;}
.y26{bottom:902.050086px;}
.y3{bottom:903.360365px;}
.y51{bottom:903.466085px;}
.y80{bottom:903.467585px;}
.y7{bottom:910.866362px;}
.h3{height:33.328112px;}
.h2{height:37.494126px;}
.h6{height:40.634749px;}
.h8{height:41.660140px;}
.h5{height:83.011395px;}
.h1{height:994.933980px;}
.h9{height:995.220000px;}
.h0{height:1263.000000px;}
.h4{height:37529.984988px;}
.h7{height:41699.983320px;}
.ha{height:41999.983200px;}
.w2{width:731.520000px;}
.w1{width:739.858320px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:75.570480px;}
.xb{left:84.060000px;}
.xc{left:85.064932px;}
.x2{left:93.554452px;}
.x8{left:119.054442px;}
.x7{left:136.076435px;}
.x6{left:161.577925px;}
.x3{left:182.259917px;}
.x9{left:384.811008px;}
.xa{left:410.316654px;}
.x4{left:452.496809px;}
.x5{left:510.333786px;}
@media print{
.v5{vertical-align:-140.799944pt;}
.v4{vertical-align:-127.999949pt;}
.v2{vertical-align:-63.999974pt;}
.v1{vertical-align:-57.599977pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2687.998925pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001653pt;}
.ls2{letter-spacing:13.333328pt;}
.ws6{word-spacing:-41.439983pt;}
.ws2{word-spacing:-26.666656pt;}
.ws1{word-spacing:-23.999990pt;}
.ws5{word-spacing:-13.333328pt;}
.ws0{word-spacing:-0.034667pt;}
.ws3{word-spacing:0.000000pt;}
.ws7{word-spacing:13.155728pt;}
.ws4{word-spacing:659.231736pt;}
._7{margin-left:-1965.433752pt;}
._c{margin-left:-1674.569843pt;}
._1a{margin-left:-943.944236pt;}
._15{margin-left:-942.534557pt;}
._18{margin-left:-941.519912pt;}
._1d{margin-left:-852.010070pt;}
._21{margin-left:-757.100838pt;}
._16{margin-left:-743.624576pt;}
._13{margin-left:-698.645054pt;}
._23{margin-left:-622.700892pt;}
._1f{margin-left:-230.429177pt;}
._1b{margin-left:-170.142028pt;}
._a{margin-left:-13.363771pt;}
._5{margin-left:-9.872830pt;}
._1c{margin-left:-7.532990pt;}
._17{margin-left:-6.488721pt;}
._0{margin-left:-5.368654pt;}
._3{margin-left:-3.592655pt;}
._1{margin-left:-1.784063pt;}
._14{margin-left:-0.890352pt;}
._b{width:0.912234pt;}
._e{width:2.015546pt;}
._11{width:2.975999pt;}
._12{width:3.935998pt;}
._d{width:5.192045pt;}
._f{width:6.966560pt;}
._20{width:8.319997pt;}
._22{width:9.386876pt;}
._10{width:10.622929pt;}
._1e{width:12.213328pt;}
._24{width:13.120048pt;}
._25{width:14.605959pt;}
._19{width:92.355269pt;}
._2{width:671.200452pt;}
._8{width:687.017581pt;}
._6{width:965.474344pt;}
._4{width:966.664269pt;}
._9{width:1208.306247pt;}
.fs1{font-size:42.666650pt;}
.fs0{font-size:47.999981pt;}
.fs3{font-size:53.333312pt;}
.fs2{font-size:106.666624pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:72.259923pt;}
.y74{bottom:72.261257pt;}
.y6{bottom:73.255283pt;}
.y2{bottom:74.827282pt;}
.y50{bottom:74.927922pt;}
.y5{bottom:98.855273pt;}
.y73{bottom:101.100605pt;}
.y53{bottom:101.113939pt;}
.y4{bottom:111.655268pt;}
.y72{bottom:117.100599pt;}
.y49{bottom:117.113932pt;}
.y24{bottom:119.040000pt;}
.y1{bottom:119.140640pt;}
.y71{bottom:133.100592pt;}
.y4f{bottom:133.113926pt;}
.y7d{bottom:149.100586pt;}
.y48{bottom:149.113919pt;}
.y23{bottom:156.189917pt;}
.y70{bottom:165.100580pt;}
.y47{bottom:165.113913pt;}
.y22{bottom:172.189910pt;}
.y6f{bottom:181.100573pt;}
.y46{bottom:181.113907pt;}
.y21{bottom:188.189904pt;}
.y7c{bottom:197.100567pt;}
.y45{bottom:197.113900pt;}
.y20{bottom:204.189897pt;}
.y6e{bottom:213.100560pt;}
.y44{bottom:213.113894pt;}
.y1f{bottom:220.189891pt;}
.y6d{bottom:229.100554pt;}
.y43{bottom:229.113887pt;}
.y1e{bottom:236.189885pt;}
.y6c{bottom:245.100548pt;}
.y42{bottom:245.113881pt;}
.y1d{bottom:252.189878pt;}
.y6b{bottom:261.100541pt;}
.y41{bottom:261.113875pt;}
.y1c{bottom:268.189872pt;}
.y6a{bottom:277.100535pt;}
.y40{bottom:277.113868pt;}
.y69{bottom:293.100528pt;}
.y3f{bottom:293.113862pt;}
.y1b{bottom:294.357861pt;}
.y68{bottom:309.100522pt;}
.y3e{bottom:309.113855pt;}
.y1a{bottom:323.157850pt;}
.y7f{bottom:325.100516pt;}
.y52{bottom:325.113849pt;}
.y19{bottom:337.557844pt;}
.y67{bottom:341.100509pt;}
.y3d{bottom:341.113843pt;}
.y18{bottom:351.957838pt;}
.y7b{bottom:357.100503pt;}
.y3c{bottom:357.113836pt;}
.y17{bottom:366.357832pt;}
.y84{bottom:369.913831pt;}
.y66{bottom:373.100496pt;}
.y3b{bottom:373.113830pt;}
.y65{bottom:389.100490pt;}
.y3a{bottom:389.113823pt;}
.y16{bottom:395.157821pt;}
.y83{bottom:401.913818pt;}
.y7a{bottom:405.100484pt;}
.y39{bottom:405.113817pt;}
.y15{bottom:409.557815pt;}
.y82{bottom:417.913812pt;}
.y64{bottom:421.100477pt;}
.y38{bottom:421.113811pt;}
.y14{bottom:423.957809pt;}
.y81{bottom:433.913805pt;}
.y79{bottom:437.100471pt;}
.y37{bottom:437.113804pt;}
.y13{bottom:452.757798pt;}
.y63{bottom:453.100464pt;}
.y4e{bottom:453.113798pt;}
.y12{bottom:467.157792pt;}
.y62{bottom:469.100458pt;}
.y36{bottom:469.113791pt;}
.y61{bottom:485.100452pt;}
.y35{bottom:485.113785pt;}
.y11{bottom:495.957781pt;}
.y60{bottom:501.100445pt;}
.y4d{bottom:501.113779pt;}
.y10{bottom:510.357775pt;}
.y5f{bottom:517.100439pt;}
.y34{bottom:517.113772pt;}
.yf{bottom:524.757769pt;}
.y78{bottom:533.100432pt;}
.y33{bottom:533.113766pt;}
.y5e{bottom:549.100426pt;}
.y4c{bottom:549.113759pt;}
.ye{bottom:553.557758pt;}
.y77{bottom:565.100420pt;}
.y4b{bottom:565.113753pt;}
.y5d{bottom:581.100413pt;}
.y32{bottom:581.113747pt;}
.yd{bottom:582.357746pt;}
.yc{bottom:596.757740pt;}
.y76{bottom:597.100407pt;}
.y31{bottom:597.113740pt;}
.y75{bottom:613.100400pt;}
.y30{bottom:613.113734pt;}
.y5c{bottom:629.100394pt;}
.y2f{bottom:629.113727pt;}
.yb{bottom:644.757721pt;}
.y5b{bottom:645.100388pt;}
.y4a{bottom:645.113721pt;}
.ya{bottom:659.157715pt;}
.y5a{bottom:661.100381pt;}
.y2e{bottom:661.113715pt;}
.y59{bottom:677.100375pt;}
.y2d{bottom:677.113708pt;}
.y58{bottom:693.100368pt;}
.y2c{bottom:693.113702pt;}
.y7e{bottom:709.100362pt;}
.y2b{bottom:709.113695pt;}
.y9{bottom:710.357695pt;}
.y57{bottom:725.100356pt;}
.y2a{bottom:725.113689pt;}
.y56{bottom:741.100349pt;}
.y29{bottom:741.113683pt;}
.y55{bottom:757.100343pt;}
.y28{bottom:757.113676pt;}
.y54{bottom:773.100336pt;}
.y27{bottom:773.113670pt;}
.y8{bottom:780.859000pt;}
.y26{bottom:801.822298pt;}
.y3{bottom:802.986991pt;}
.y51{bottom:803.080964pt;}
.y80{bottom:803.082298pt;}
.y7{bottom:809.658988pt;}
.h3{height:29.624988pt;}
.h2{height:33.328112pt;}
.h6{height:36.119777pt;}
.h8{height:37.031235pt;}
.h5{height:73.787907pt;}
.h1{height:884.385760pt;}
.h9{height:884.640000pt;}
.h0{height:1122.666667pt;}
.h4{height:33359.986656pt;}
.h7{height:37066.651840pt;}
.ha{height:37333.318400pt;}
.w2{width:650.240000pt;}
.w1{width:657.651840pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:67.173760pt;}
.xb{left:74.720000pt;}
.xc{left:75.613273pt;}
.x2{left:83.159513pt;}
.x8{left:105.826171pt;}
.x7{left:120.956831pt;}
.x6{left:143.624822pt;}
.x3{left:162.008815pt;}
.x9{left:342.054229pt;}
.xa{left:364.725914pt;}
.x4{left:402.219386pt;}
.x5{left:453.630032pt;}
}

