
    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_e77edd18c7640a9e22641dc3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_fe65642bd9aeb77d4ef1ab43.woff')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_752bc27ba4b83f2d7ce328c7.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c17d1598b5adb666350efd25.woff')format("woff");}.ff4{font-family:ff4;line-height:0.951172;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_8c90234af0cfc90ad5cad05d.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1975e3604b43ebf19e0fd8d5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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;}
.m1{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.082200px;}
.ls3{letter-spacing:0.164437px;}
.ls1{letter-spacing:0.180060px;}
.ls2{letter-spacing:41.015924px;}
.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;}
}
.ws2{word-spacing:-15.112074px;}
.ws0{word-spacing:-13.589995px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-3.341614px;}
._2{margin-left:-1.373202px;}
._0{width:1.160988px;}
._d{width:2.344436px;}
._c{width:3.706345px;}
._b{width:5.479339px;}
._a{width:6.591535px;}
._9{width:7.681235px;}
._8{width:9.220279px;}
._7{width:10.504872px;}
._1{width:11.760102px;}
._f{width:15.009725px;}
._3{width:16.059168px;}
._e{width:17.814927px;}
._10{width:19.639860px;}
._12{width:21.087637px;}
._11{width:22.501312px;}
._4{width:24.262472px;}
._5{width:25.614803px;}
._16{width:26.801941px;}
._17{width:28.162506px;}
._13{width:30.557113px;}
._14{width:45.150903px;}
._15{width:46.185855px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.419025px;}
.fs1{font-size:45.118062px;}
.fs3{font-size:50.009020px;}
.fs0{font-size:54.359978px;}
.y0{bottom:0.000000px;}
.y9b{bottom:1.800219px;}
.y47{bottom:1.800225px;}
.ya3{bottom:1.800250px;}
.yab{bottom:1.800274px;}
.y56{bottom:1.800425px;}
.y60{bottom:1.800461px;}
.y68{bottom:1.800489px;}
.ya5{bottom:1.980250px;}
.y3{bottom:2.880521px;}
.y2{bottom:194.099400px;}
.y1{bottom:196.979921px;}
.y6d{bottom:236.219906px;}
.y6c{bottom:246.659901px;}
.y99{bottom:247.199901px;}
.y54{bottom:248.099901px;}
.y45{bottom:248.999900px;}
.y6b{bottom:257.099897px;}
.y98{bottom:262.859895px;}
.y53{bottom:263.759894px;}
.y44{bottom:264.659894px;}
.y6a{bottom:267.359893px;}
.y67{bottom:275.999400px;}
.y34{bottom:276.899889px;}
.y69{bottom:277.799889px;}
.yc2{bottom:278.159889px;}
.y97{bottom:278.519889px;}
.y52{bottom:279.239888px;}
.y43{bottom:280.319888px;}
.y33{bottom:290.039884px;}
.y96{bottom:293.999882px;}
.y66{bottom:295.079882px;}
.y42{bottom:295.979882px;}
.y32{bottom:302.999879px;}
.y65{bottom:305.519878px;}
.y95{bottom:309.659876px;}
.y41{bottom:311.639875px;}
.y64{bottom:315.959874px;}
.y31{bottom:316.139874px;}
.y94{bottom:325.319870px;}
.y63{bottom:326.399869px;}
.y40{bottom:327.299869px;}
.y30{bottom:328.919868px;}
.y62{bottom:336.659865px;}
.y93{bottom:340.979864px;}
.y2f{bottom:342.059863px;}
.y3f{bottom:342.779863px;}
.y5f{bottom:345.479400px;}
.y61{bottom:347.279861px;}
.yd0{bottom:348.359861px;}
.y2e{bottom:355.379858px;}
.y92{bottom:356.639857px;}
.y3e{bottom:358.439857px;}
.ycf{bottom:364.019854px;}
.y5e{bottom:364.379854px;}
.y91{bottom:372.119851px;}
.y2d{bottom:373.739851px;}
.y3d{bottom:374.099850px;}
.y5d{bottom:374.819850px;}
.yce{bottom:379.679848px;}
.y5c{bottom:385.259846px;}
.y90{bottom:387.779845px;}
.y2c{bottom:389.759844px;}
.ycd{bottom:395.339842px;}
.y5b{bottom:395.519842px;}
.y8f{bottom:403.439839px;}
.y2b{bottom:405.419838px;}
.y5a{bottom:405.959838px;}
.ycc{bottom:407.579837px;}
.y59{bottom:416.579833px;}
.y8e{bottom:419.099832px;}
.y2a{bottom:421.079832px;}
.y58{bottom:426.839829px;}
.y8d{bottom:434.759826px;}
.y55{bottom:435.479400px;}
.y29{bottom:436.559825px;}
.y57{bottom:437.279825px;}
.y8c{bottom:450.419820px;}
.y28{bottom:452.219819px;}
.y8b{bottom:465.899814px;}
.y27{bottom:467.879813px;}
.y8a{bottom:481.559807px;}
.y26{bottom:483.539807px;}
.y89{bottom:497.219801px;}
.y25{bottom:499.199800px;}
.y88{bottom:512.879795px;}
.y24{bottom:514.679794px;}
.y87{bottom:528.539789px;}
.y23{bottom:530.339788px;}
.y86{bottom:544.199782px;}
.y22{bottom:545.999782px;}
.y85{bottom:559.679776px;}
.y21{bottom:561.659775px;}
.y84{bottom:575.159770px;}
.yc1{bottom:575.339770px;}
.y4f{bottom:576.959769px;}
.y20{bottom:577.319769px;}
.yc0{bottom:590.819764px;}
.y83{bottom:591.899763px;}
.y4e{bottom:592.619763px;}
.y1f{bottom:592.979763px;}
.ybf{bottom:606.479757px;}
.y82{bottom:607.559757px;}
.y1e{bottom:608.279757px;}
.y3c{bottom:608.459757px;}
.ybe{bottom:622.139751px;}
.y81{bottom:623.219751px;}
.y1d{bottom:623.939750px;}
.y3b{bottom:624.119750px;}
.ycb{bottom:633.479747px;}
.ybd{bottom:637.799745px;}
.y80{bottom:638.879744px;}
.y1c{bottom:639.779744px;}
.yca{bottom:648.959740px;}
.ybc{bottom:653.459739px;}
.y7f{bottom:654.539738px;}
.y4d{bottom:655.079738px;}
.y1b{bottom:655.439738px;}
.yc9{bottom:664.619734px;}
.ybb{bottom:668.939732px;}
.y7e{bottom:670.019732px;}
.y1a{bottom:670.739732px;}
.y3a{bottom:671.099732px;}
.yc8{bottom:680.279728px;}
.yba{bottom:684.599726px;}
.y7d{bottom:685.679726px;}
.y19{bottom:686.759725px;}
.yc7{bottom:695.939722px;}
.yb9{bottom:700.259720px;}
.y7c{bottom:701.339719px;}
.y18{bottom:702.239719px;}
.yc6{bottom:711.599715px;}
.yb8{bottom:715.919714px;}
.y7b{bottom:716.999713px;}
.y17{bottom:717.899713px;}
.yc5{bottom:727.259709px;}
.yb7{bottom:731.579707px;}
.y7a{bottom:732.659707px;}
.y51{bottom:733.199707px;}
.y16{bottom:733.559707px;}
.yc4{bottom:742.739703px;}
.yb6{bottom:747.239701px;}
.y79{bottom:748.319701px;}
.y50{bottom:748.859700px;}
.y15{bottom:749.219700px;}
.yb2{bottom:752.639699px;}
.yc3{bottom:755.159698px;}
.yb1{bottom:763.079695px;}
.y78{bottom:763.799694px;}
.y14{bottom:764.879694px;}
.yb0{bottom:773.519691px;}
.y77{bottom:779.459688px;}
.y13{bottom:780.359688px;}
.yaf{bottom:783.779686px;}
.yae{bottom:794.219682px;}
.y76{bottom:795.119682px;}
.y12{bottom:796.019682px;}
.yad{bottom:804.839678px;}
.y75{bottom:810.779676px;}
.y11{bottom:811.679675px;}
.yaa{bottom:813.299400px;}
.yac{bottom:815.099674px;}
.y74{bottom:826.439669px;}
.y10{bottom:827.339669px;}
.ya9{bottom:832.379667px;}
.y73{bottom:841.919663px;}
.ya8{bottom:842.819663px;}
.yf{bottom:842.999663px;}
.ya7{bottom:853.079659px;}
.y72{bottom:857.579657px;}
.ye{bottom:858.659657px;}
.ya6{bottom:863.699655px;}
.ya4{bottom:872.159400px;}
.ya2{bottom:872.339400px;}
.y71{bottom:873.059651px;}
.yd{bottom:874.139650px;}
.y70{bottom:888.719645px;}
.yc{bottom:889.799644px;}
.ya1{bottom:900.959640px;}
.y6f{bottom:904.379638px;}
.yb{bottom:905.459638px;}
.y4b{bottom:906.359637px;}
.ya0{bottom:911.399635px;}
.y4a{bottom:916.619633px;}
.y6e{bottom:920.039632px;}
.ya{bottom:920.759632px;}
.y39{bottom:921.119632px;}
.y9f{bottom:921.839631px;}
.y49{bottom:927.059629px;}
.y9e{bottom:932.279627px;}
.y46{bottom:935.699400px;}
.yb5{bottom:935.699626px;}
.y9{bottom:936.779625px;}
.y48{bottom:937.499625px;}
.y9d{bottom:942.719623px;}
.y9a{bottom:951.359400px;}
.yb4{bottom:951.359619px;}
.y8{bottom:952.079619px;}
.y38{bottom:952.439619px;}
.y9c{bottom:953.159619px;}
.yb3{bottom:966.839613px;}
.y7{bottom:967.739613px;}
.y37{bottom:967.919613px;}
.y6{bottom:983.399607px;}
.y36{bottom:983.579607px;}
.y5{bottom:999.059600px;}
.y35{bottom:999.239600px;}
.y4{bottom:1014.539594px;}
.y4c{bottom:1014.899594px;}
.hc{height:10.440000px;}
.h7{height:10.620000px;}
.hb{height:10.800000px;}
.h3{height:15.120000px;}
.h9{height:26.531829px;}
.h8{height:27.669924px;}
.h6{height:31.349122px;}
.ha{height:34.747478px;}
.h4{height:37.213227px;}
.hd{height:37.744086px;}
.h5{height:37.770629px;}
.h2{height:39.602094px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:7.560000px;}
.w5{width:15.120000px;}
.w3{width:83.880000px;}
.w4{width:172.260000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:97.919961px;}
.x7{left:138.059945px;}
.x8{left:158.393937px;}
.x6{left:236.339905px;}
.x3{left:237.960032px;}
.xa{left:496.620435px;}
.xb{left:500.940763px;}
.x9{left:564.300000px;}
.x2{left:571.860000px;}
.x4{left:619.560000px;}
.x5{left:703.439719px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.073067pt;}
.ls3{letter-spacing:0.146166pt;}
.ls1{letter-spacing:0.160053pt;}
.ls2{letter-spacing:36.458599pt;}
.ws2{word-spacing:-13.432955pt;}
.ws0{word-spacing:-12.079995pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-2.970323pt;}
._2{margin-left:-1.220624pt;}
._0{width:1.031989pt;}
._d{width:2.083943pt;}
._c{width:3.294529pt;}
._b{width:4.870524pt;}
._a{width:5.859142pt;}
._9{width:6.827765pt;}
._8{width:8.195803pt;}
._7{width:9.337664pt;}
._1{width:10.453424pt;}
._f{width:13.341978pt;}
._3{width:14.274816pt;}
._e{width:15.835491pt;}
._10{width:17.457653pt;}
._12{width:18.744567pt;}
._11{width:20.001166pt;}
._4{width:21.566642pt;}
._5{width:22.768714pt;}
._16{width:23.823947pt;}
._17{width:25.033338pt;}
._13{width:27.161878pt;}
._14{width:40.134136pt;}
._15{width:41.054094pt;}
.fs2{font-size:32.372467pt;}
.fs1{font-size:40.104944pt;}
.fs3{font-size:44.452462pt;}
.fs0{font-size:48.319981pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:1.600194pt;}
.y47{bottom:1.600200pt;}
.ya3{bottom:1.600223pt;}
.yab{bottom:1.600244pt;}
.y56{bottom:1.600378pt;}
.y60{bottom:1.600410pt;}
.y68{bottom:1.600435pt;}
.ya5{bottom:1.760223pt;}
.y3{bottom:2.560463pt;}
.y2{bottom:172.532800pt;}
.y1{bottom:175.093263pt;}
.y6d{bottom:209.973249pt;}
.y6c{bottom:219.253246pt;}
.y99{bottom:219.733245pt;}
.y54{bottom:220.533245pt;}
.y45{bottom:221.333245pt;}
.y6b{bottom:228.533242pt;}
.y98{bottom:233.653240pt;}
.y53{bottom:234.453240pt;}
.y44{bottom:235.253239pt;}
.y6a{bottom:237.653238pt;}
.y67{bottom:245.332800pt;}
.y34{bottom:246.133235pt;}
.y69{bottom:246.933235pt;}
.yc2{bottom:247.253234pt;}
.y97{bottom:247.573234pt;}
.y52{bottom:248.213234pt;}
.y43{bottom:249.173234pt;}
.y33{bottom:257.813230pt;}
.y96{bottom:261.333229pt;}
.y66{bottom:262.293228pt;}
.y42{bottom:263.093228pt;}
.y32{bottom:269.333226pt;}
.y65{bottom:271.573225pt;}
.y95{bottom:275.253223pt;}
.y41{bottom:277.013223pt;}
.y64{bottom:280.853221pt;}
.y31{bottom:281.013221pt;}
.y94{bottom:289.173218pt;}
.y63{bottom:290.133217pt;}
.y40{bottom:290.933217pt;}
.y30{bottom:292.373216pt;}
.y62{bottom:299.253214pt;}
.y93{bottom:303.093212pt;}
.y2f{bottom:304.053212pt;}
.y3f{bottom:304.693211pt;}
.y5f{bottom:307.092800pt;}
.y61{bottom:308.693210pt;}
.yd0{bottom:309.653209pt;}
.y2e{bottom:315.893207pt;}
.y92{bottom:317.013207pt;}
.y3e{bottom:318.613206pt;}
.ycf{bottom:323.573204pt;}
.y5e{bottom:323.893204pt;}
.y91{bottom:330.773201pt;}
.y2d{bottom:332.213200pt;}
.y3d{bottom:332.533200pt;}
.y5d{bottom:333.173200pt;}
.yce{bottom:337.493198pt;}
.y5c{bottom:342.453196pt;}
.y90{bottom:344.693195pt;}
.y2c{bottom:346.453195pt;}
.ycd{bottom:351.413193pt;}
.y5b{bottom:351.573193pt;}
.y8f{bottom:358.613190pt;}
.y2b{bottom:360.373189pt;}
.y5a{bottom:360.853189pt;}
.ycc{bottom:362.293188pt;}
.y59{bottom:370.293185pt;}
.y8e{bottom:372.533184pt;}
.y2a{bottom:374.293184pt;}
.y58{bottom:379.413182pt;}
.y8d{bottom:386.453179pt;}
.y55{bottom:387.092800pt;}
.y29{bottom:388.053178pt;}
.y57{bottom:388.693178pt;}
.y8c{bottom:400.373173pt;}
.y28{bottom:401.973173pt;}
.y8b{bottom:414.133168pt;}
.y27{bottom:415.893167pt;}
.y8a{bottom:428.053162pt;}
.y26{bottom:429.813161pt;}
.y89{bottom:441.973157pt;}
.y25{bottom:443.733156pt;}
.y88{bottom:455.893151pt;}
.y24{bottom:457.493150pt;}
.y87{bottom:469.813145pt;}
.y23{bottom:471.413145pt;}
.y86{bottom:483.733140pt;}
.y22{bottom:485.333139pt;}
.y85{bottom:497.493134pt;}
.y21{bottom:499.253134pt;}
.y84{bottom:511.253129pt;}
.yc1{bottom:511.413129pt;}
.y4f{bottom:512.853128pt;}
.y20{bottom:513.173128pt;}
.yc0{bottom:525.173123pt;}
.y83{bottom:526.133123pt;}
.y4e{bottom:526.773123pt;}
.y1f{bottom:527.093122pt;}
.ybf{bottom:539.093118pt;}
.y82{bottom:540.053117pt;}
.y1e{bottom:540.693117pt;}
.y3c{bottom:540.853117pt;}
.ybe{bottom:553.013112pt;}
.y81{bottom:553.973112pt;}
.y1d{bottom:554.613111pt;}
.y3b{bottom:554.773111pt;}
.ycb{bottom:563.093108pt;}
.ybd{bottom:566.933107pt;}
.y80{bottom:567.893106pt;}
.y1c{bottom:568.693106pt;}
.yca{bottom:576.853103pt;}
.ybc{bottom:580.853101pt;}
.y7f{bottom:581.813101pt;}
.y4d{bottom:582.293100pt;}
.y1b{bottom:582.613100pt;}
.yc9{bottom:590.773097pt;}
.ybb{bottom:594.613095pt;}
.y7e{bottom:595.573095pt;}
.y1a{bottom:596.213095pt;}
.y3a{bottom:596.533095pt;}
.yc8{bottom:604.693091pt;}
.yba{bottom:608.533090pt;}
.y7d{bottom:609.493090pt;}
.y19{bottom:610.453089pt;}
.yc7{bottom:618.613086pt;}
.yb9{bottom:622.453084pt;}
.y7c{bottom:623.413084pt;}
.y18{bottom:624.213084pt;}
.yc6{bottom:632.533080pt;}
.yb8{bottom:636.373079pt;}
.y7b{bottom:637.333078pt;}
.y17{bottom:638.133078pt;}
.yc5{bottom:646.453075pt;}
.yb7{bottom:650.293073pt;}
.y7a{bottom:651.253073pt;}
.y51{bottom:651.733073pt;}
.y16{bottom:652.053073pt;}
.yc4{bottom:660.213069pt;}
.yb6{bottom:664.213068pt;}
.y79{bottom:665.173067pt;}
.y50{bottom:665.653067pt;}
.y15{bottom:665.973067pt;}
.yb2{bottom:669.013066pt;}
.yc3{bottom:671.253065pt;}
.yb1{bottom:678.293062pt;}
.y78{bottom:678.933062pt;}
.y14{bottom:679.893061pt;}
.yb0{bottom:687.573058pt;}
.y77{bottom:692.853056pt;}
.y13{bottom:693.653056pt;}
.yaf{bottom:696.693055pt;}
.yae{bottom:705.973051pt;}
.y76{bottom:706.773051pt;}
.y12{bottom:707.573050pt;}
.yad{bottom:715.413047pt;}
.y75{bottom:720.693045pt;}
.y11{bottom:721.493045pt;}
.yaa{bottom:722.932800pt;}
.yac{bottom:724.533044pt;}
.y74{bottom:734.613039pt;}
.y10{bottom:735.413039pt;}
.ya9{bottom:739.893037pt;}
.y73{bottom:748.373034pt;}
.ya8{bottom:749.173034pt;}
.yf{bottom:749.333034pt;}
.ya7{bottom:758.293030pt;}
.y72{bottom:762.293028pt;}
.ye{bottom:763.253028pt;}
.ya6{bottom:767.733026pt;}
.ya4{bottom:775.252800pt;}
.ya2{bottom:775.412800pt;}
.y71{bottom:776.053023pt;}
.yd{bottom:777.013023pt;}
.y70{bottom:789.973017pt;}
.yc{bottom:790.933017pt;}
.ya1{bottom:800.853013pt;}
.y6f{bottom:803.893012pt;}
.yb{bottom:804.853011pt;}
.y4b{bottom:805.653011pt;}
.ya0{bottom:810.133009pt;}
.y4a{bottom:814.773007pt;}
.y6e{bottom:817.813006pt;}
.ya{bottom:818.453006pt;}
.y39{bottom:818.773006pt;}
.y9f{bottom:819.413006pt;}
.y49{bottom:824.053004pt;}
.y9e{bottom:828.693002pt;}
.y46{bottom:831.732800pt;}
.yb5{bottom:831.733001pt;}
.y9{bottom:832.693000pt;}
.y48{bottom:833.333000pt;}
.y9d{bottom:837.972998pt;}
.y9a{bottom:845.652800pt;}
.yb4{bottom:845.652995pt;}
.y8{bottom:846.292995pt;}
.y38{bottom:846.612995pt;}
.y9c{bottom:847.252994pt;}
.yb3{bottom:859.412990pt;}
.y7{bottom:860.212989pt;}
.y37{bottom:860.372989pt;}
.y6{bottom:874.132984pt;}
.y36{bottom:874.292984pt;}
.y5{bottom:888.052978pt;}
.y35{bottom:888.212978pt;}
.y4{bottom:901.812973pt;}
.y4c{bottom:902.132972pt;}
.hc{height:9.280000pt;}
.h7{height:9.440000pt;}
.hb{height:9.600000pt;}
.h3{height:13.440000pt;}
.h9{height:23.583848pt;}
.h8{height:24.595488pt;}
.h6{height:27.865886pt;}
.ha{height:30.886647pt;}
.h4{height:33.078424pt;}
.hd{height:33.550299pt;}
.h5{height:33.573893pt;}
.h2{height:35.201861pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.720000pt;}
.w5{width:13.440000pt;}
.w3{width:74.560000pt;}
.w4{width:153.120000pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:87.039965pt;}
.x7{left:122.719951pt;}
.x8{left:140.794610pt;}
.x6{left:210.079916pt;}
.x3{left:211.520029pt;}
.xa{left:441.440387pt;}
.xb{left:445.280678pt;}
.x9{left:501.600000pt;}
.x2{left:508.320000pt;}
.x4{left:550.720000pt;}
.x5{left:625.279750pt;}
}

