
    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_23858b92d847e858ea213688.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_e56fe25ef071179b768b2c98.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_52df8aa264d73896f00c7dbb.woff')format("woff");}.ff3{font-family:ff3;line-height:1112.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_3596a309de5429df8cdc1e57.woff')format("woff");}.ff4{font-family:ff4;line-height:0.984000;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_4e8f3f5c32729bcf994cc9d4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.984048;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_7071ae0b12ad0df8cb419970.woff')format("woff");}.ff6{font-family:ff6;line-height:0.888184;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_1133a398b129cda837b877b2.woff')format("woff");}.ff7{font-family:ff7;line-height:895.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:ff8;src:url('chunks/assets/font_bb2bb02120d1e54d0159250c.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_61a1123f9de7debbba4cc96b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.678711;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);}
.v4{vertical-align:-151.199940px;}
.v3{vertical-align:-143.999942px;}
.v2{vertical-align:-71.999971px;}
.v1{vertical-align:-64.799974px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.600000px;}
.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:-29.999988px;}
.ws0{word-spacing:-26.999989px;}
.ws4{word-spacing:-14.999994px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:741.635703px;}
._10{margin-left:-2226.936309px;}
._e{margin-left:-2225.890978px;}
._c{margin-left:-2224.501495px;}
._5{margin-left:-2211.112972px;}
._1e{margin-left:-2124.068714px;}
._12{margin-left:-492.572731px;}
._14{margin-left:-297.872809px;}
._11{margin-left:-14.366077px;}
._18{margin-left:-12.509361px;}
._19{margin-left:-10.202174px;}
._13{margin-left:-7.857073px;}
._0{margin-left:-6.039736px;}
._8{margin-left:-4.321234px;}
._a{margin-left:-3.188141px;}
._1{margin-left:-2.007071px;}
._f{margin-left:-1.006908px;}
._9{width:1.105405px;}
._b{width:2.845771px;}
._17{width:3.959998px;}
._1a{width:5.459998px;}
._15{width:6.539997px;}
._16{width:7.605069px;}
._1c{width:8.751956px;}
._20{width:9.764196px;}
._21{width:10.826445px;}
._1b{width:13.157137px;}
._1d{width:16.065104px;}
._1f{width:19.058988px;}
._3{width:365.877378px;}
._d{width:367.055748px;}
._2{width:755.100508px;}
._6{width:772.894779px;}
._4{width:1086.158638px;}
._7{width:1359.344528px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:47.999981px;}
.fs0{font-size:53.999978px;}
.fs4{font-size:59.999976px;}
.fs3{font-size:89.999964px;}
.fs2{font-size:119.999952px;}
.y0{bottom:0.000000px;}
.y25{bottom:81.292414px;}
.y54{bottom:81.293914px;}
.y2{bottom:84.180693px;}
.y4e{bottom:84.293913px;}
.y5{bottom:110.043682px;}
.y58{bottom:111.953182px;}
.y4d{bottom:113.753181px;}
.y4{bottom:124.443677px;}
.y57{bottom:129.953174px;}
.y4c{bottom:131.753174px;}
.y24{bottom:133.920000px;}
.y1{bottom:134.033220px;}
.y56{bottom:147.953167px;}
.y53{bottom:149.753166px;}
.y52{bottom:167.753159px;}
.y23{bottom:170.073658px;}
.y4b{bottom:185.753152px;}
.y22{bottom:188.073651px;}
.y4a{bottom:203.753145px;}
.y21{bottom:206.073644px;}
.y49{bottom:221.753138px;}
.y20{bottom:224.073637px;}
.y48{bottom:239.753130px;}
.y1f{bottom:242.073630px;}
.y47{bottom:257.753123px;}
.y1e{bottom:260.073622px;}
.y46{bottom:275.753116px;}
.y1d{bottom:278.073615px;}
.y45{bottom:293.753109px;}
.y1c{bottom:296.073608px;}
.y44{bottom:311.753102px;}
.y1b{bottom:314.073601px;}
.y43{bottom:329.753094px;}
.y1a{bottom:332.073594px;}
.y51{bottom:347.753087px;}
.y19{bottom:350.073586px;}
.y42{bottom:365.753080px;}
.y18{bottom:368.073579px;}
.y41{bottom:383.753073px;}
.y17{bottom:386.073572px;}
.y40{bottom:401.753066px;}
.y16{bottom:404.073565px;}
.y3f{bottom:419.753058px;}
.y15{bottom:422.073558px;}
.y3e{bottom:437.753051px;}
.y70{bottom:455.738044px;}
.y3d{bottom:455.753044px;}
.y14{bottom:458.073543px;}
.y6f{bottom:473.738037px;}
.y50{bottom:473.753037px;}
.y13{bottom:476.073536px;}
.y6e{bottom:491.738030px;}
.y3c{bottom:491.753030px;}
.y12{bottom:494.073529px;}
.y6d{bottom:509.738022px;}
.y3b{bottom:509.753022px;}
.y11{bottom:512.073522px;}
.y6c{bottom:527.738015px;}
.y3a{bottom:527.753015px;}
.y10{bottom:530.073514px;}
.y6b{bottom:545.738008px;}
.y39{bottom:545.753008px;}
.yf{bottom:548.073507px;}
.y6a{bottom:563.738001px;}
.y38{bottom:563.753001px;}
.ye{bottom:566.073500px;}
.y69{bottom:581.737994px;}
.y37{bottom:581.752994px;}
.y68{bottom:599.737986px;}
.y36{bottom:599.752986px;}
.y67{bottom:617.737979px;}
.y35{bottom:617.752979px;}
.yd{bottom:623.673477px;}
.y66{bottom:635.737972px;}
.y34{bottom:635.752972px;}
.yc{bottom:639.873470px;}
.y65{bottom:653.737965px;}
.y33{bottom:653.752965px;}
.yb{bottom:657.873463px;}
.y64{bottom:671.737958px;}
.y32{bottom:671.752958px;}
.y63{bottom:689.737950px;}
.y31{bottom:689.752950px;}
.y62{bottom:707.737943px;}
.y30{bottom:707.752943px;}
.y61{bottom:725.737936px;}
.y2f{bottom:725.752936px;}
.ya{bottom:731.673434px;}
.y60{bottom:743.737929px;}
.y2e{bottom:743.752929px;}
.y5f{bottom:761.737922px;}
.y2d{bottom:761.752922px;}
.y9{bottom:773.073417px;}
.y5e{bottom:779.737914px;}
.y2c{bottom:779.752914px;}
.y5d{bottom:797.737907px;}
.y2b{bottom:797.752907px;}
.y8{bottom:809.073403px;}
.y5c{bottom:815.737900px;}
.y2a{bottom:815.752900px;}
.y5b{bottom:833.737893px;}
.y29{bottom:833.752893px;}
.y5a{bottom:851.737886px;}
.y28{bottom:851.752886px;}
.y59{bottom:869.737878px;}
.y27{bottom:869.752878px;}
.y7{bottom:878.466375px;}
.y26{bottom:902.050086px;}
.y3{bottom:903.360365px;}
.y4f{bottom:903.466085px;}
.y55{bottom:903.467585px;}
.y6{bottom:910.866362px;}
.h3{height:37.494126px;}
.hd{height:41.660140px;}
.h4{height:42.117171px;}
.h2{height:47.381817px;}
.h8{height:52.353495px;}
.h9{height:52.646463px;}
.h7{height:64.354260px;}
.h6{height:85.799966px;}
.h1{height:994.933980px;}
.hb{height:995.220000px;}
.h0{height:1263.000000px;}
.hc{height:40739.983704px;}
.he{height:41699.983320px;}
.h5{height:48383.980646px;}
.ha{height:53759.978496px;}
.w2{width:731.520000px;}
.w1{width:739.858320px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:75.570480px;}
.xa{left:84.060000px;}
.xb{left:85.064932px;}
.x2{left:93.554452px;}
.x3{left:95.346952px;}
.x5{left:102.824449px;}
.x9{left:119.054442px;}
.x4{left:197.383061px;}
.x7{left:436.691315px;}
.x6{left:470.418802px;}
.x8{left:523.334280px;}
@media print{
.v4{vertical-align:-134.399946pt;}
.v3{vertical-align:-127.999949pt;}
.v2{vertical-align:-63.999974pt;}
.v1{vertical-align:-57.599977pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.533333pt;}
.ws1{word-spacing:-26.666656pt;}
.ws0{word-spacing:-23.999990pt;}
.ws4{word-spacing:-13.333328pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:659.231736pt;}
._10{margin-left:-1979.498942pt;}
._e{margin-left:-1978.569758pt;}
._c{margin-left:-1977.334662pt;}
._5{margin-left:-1965.433752pt;}
._1e{margin-left:-1888.061079pt;}
._12{margin-left:-437.842428pt;}
._14{margin-left:-264.775830pt;}
._11{margin-left:-12.769846pt;}
._18{margin-left:-11.119432pt;}
._19{margin-left:-9.068599pt;}
._13{margin-left:-6.984065pt;}
._0{margin-left:-5.368654pt;}
._8{margin-left:-3.841097pt;}
._a{margin-left:-2.833903pt;}
._1{margin-left:-1.784063pt;}
._f{margin-left:-0.895029pt;}
._9{width:0.982582pt;}
._b{width:2.529574pt;}
._17{width:3.519999pt;}
._1a{width:4.853331pt;}
._15{width:5.813331pt;}
._16{width:6.760061pt;}
._1c{width:7.779517pt;}
._20{width:8.679286pt;}
._21{width:9.623507pt;}
._1b{width:11.695233pt;}
._1d{width:14.280092pt;}
._1f{width:16.941322pt;}
._3{width:325.224336pt;}
._d{width:326.271776pt;}
._2{width:671.200452pt;}
._6{width:687.017581pt;}
._4{width:965.474344pt;}
._7{width:1208.306247pt;}
.fs1{font-size:42.666650pt;}
.fs0{font-size:47.999981pt;}
.fs4{font-size:53.333312pt;}
.fs3{font-size:79.999968pt;}
.fs2{font-size:106.666624pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:72.259923pt;}
.y54{bottom:72.261257pt;}
.y2{bottom:74.827282pt;}
.y4e{bottom:74.927922pt;}
.y5{bottom:97.816607pt;}
.y58{bottom:99.513939pt;}
.y4d{bottom:101.113939pt;}
.y4{bottom:110.616601pt;}
.y57{bottom:115.513933pt;}
.y4c{bottom:117.113932pt;}
.y24{bottom:119.040000pt;}
.y1{bottom:119.140640pt;}
.y56{bottom:131.513926pt;}
.y53{bottom:133.113926pt;}
.y52{bottom:149.113919pt;}
.y23{bottom:151.176585pt;}
.y4b{bottom:165.113913pt;}
.y22{bottom:167.176579pt;}
.y4a{bottom:181.113907pt;}
.y21{bottom:183.176572pt;}
.y49{bottom:197.113900pt;}
.y20{bottom:199.176566pt;}
.y48{bottom:213.113894pt;}
.y1f{bottom:215.176560pt;}
.y47{bottom:229.113887pt;}
.y1e{bottom:231.176553pt;}
.y46{bottom:245.113881pt;}
.y1d{bottom:247.176547pt;}
.y45{bottom:261.113875pt;}
.y1c{bottom:263.176540pt;}
.y44{bottom:277.113868pt;}
.y1b{bottom:279.176534pt;}
.y43{bottom:293.113862pt;}
.y1a{bottom:295.176528pt;}
.y51{bottom:309.113855pt;}
.y19{bottom:311.176521pt;}
.y42{bottom:325.113849pt;}
.y18{bottom:327.176515pt;}
.y41{bottom:341.113843pt;}
.y17{bottom:343.176508pt;}
.y40{bottom:357.113836pt;}
.y16{bottom:359.176502pt;}
.y3f{bottom:373.113830pt;}
.y15{bottom:375.176496pt;}
.y3e{bottom:389.113823pt;}
.y70{bottom:405.100484pt;}
.y3d{bottom:405.113817pt;}
.y14{bottom:407.176483pt;}
.y6f{bottom:421.100477pt;}
.y50{bottom:421.113811pt;}
.y13{bottom:423.176476pt;}
.y6e{bottom:437.100471pt;}
.y3c{bottom:437.113804pt;}
.y12{bottom:439.176470pt;}
.y6d{bottom:453.100464pt;}
.y3b{bottom:453.113798pt;}
.y11{bottom:455.176464pt;}
.y6c{bottom:469.100458pt;}
.y3a{bottom:469.113791pt;}
.y10{bottom:471.176457pt;}
.y6b{bottom:485.100452pt;}
.y39{bottom:485.113785pt;}
.yf{bottom:487.176451pt;}
.y6a{bottom:501.100445pt;}
.y38{bottom:501.113779pt;}
.ye{bottom:503.176444pt;}
.y69{bottom:517.100439pt;}
.y37{bottom:517.113772pt;}
.y68{bottom:533.100432pt;}
.y36{bottom:533.113766pt;}
.y67{bottom:549.100426pt;}
.y35{bottom:549.113759pt;}
.yd{bottom:554.376424pt;}
.y66{bottom:565.100420pt;}
.y34{bottom:565.113753pt;}
.yc{bottom:568.776418pt;}
.y65{bottom:581.100413pt;}
.y33{bottom:581.113747pt;}
.yb{bottom:584.776412pt;}
.y64{bottom:597.100407pt;}
.y32{bottom:597.113740pt;}
.y63{bottom:613.100400pt;}
.y31{bottom:613.113734pt;}
.y62{bottom:629.100394pt;}
.y30{bottom:629.113727pt;}
.y61{bottom:645.100388pt;}
.y2f{bottom:645.113721pt;}
.ya{bottom:650.376386pt;}
.y60{bottom:661.100381pt;}
.y2e{bottom:661.113715pt;}
.y5f{bottom:677.100375pt;}
.y2d{bottom:677.113708pt;}
.y9{bottom:687.176371pt;}
.y5e{bottom:693.100368pt;}
.y2c{bottom:693.113702pt;}
.y5d{bottom:709.100362pt;}
.y2b{bottom:709.113695pt;}
.y8{bottom:719.176358pt;}
.y5c{bottom:725.100356pt;}
.y2a{bottom:725.113689pt;}
.y5b{bottom:741.100349pt;}
.y29{bottom:741.113683pt;}
.y5a{bottom:757.100343pt;}
.y28{bottom:757.113676pt;}
.y59{bottom:773.100336pt;}
.y27{bottom:773.113670pt;}
.y7{bottom:780.859000pt;}
.y26{bottom:801.822298pt;}
.y3{bottom:802.986991pt;}
.y4f{bottom:803.080964pt;}
.y55{bottom:803.082298pt;}
.y6{bottom:809.658988pt;}
.h3{height:33.328112pt;}
.hd{height:37.031235pt;}
.h4{height:37.437485pt;}
.h2{height:42.117171pt;}
.h8{height:46.536440pt;}
.h9{height:46.796856pt;}
.h7{height:57.203787pt;}
.h6{height:76.266636pt;}
.h1{height:884.385760pt;}
.hb{height:884.640000pt;}
.h0{height:1122.666667pt;}
.hc{height:36213.318848pt;}
.he{height:37066.651840pt;}
.h5{height:43007.982797pt;}
.ha{height:47786.647552pt;}
.w2{width:650.240000pt;}
.w1{width:657.651840pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:67.173760pt;}
.xa{left:74.720000pt;}
.xb{left:75.613273pt;}
.x2{left:83.159513pt;}
.x3{left:84.752846pt;}
.x5{left:91.399510pt;}
.x9{left:105.826171pt;}
.x4{left:175.451610pt;}
.x7{left:388.170058pt;}
.x6{left:418.150046pt;}
.x8{left:465.186027pt;}
}

