
    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_769505e83d9bf736278460d3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_f803c5b6ed5a8c38f3c63555.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_c49feae52ddbddd7db3cef35.woff')format("woff");}.ff3{font-family:ff3;line-height:0.892578;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_4a51ab9d46df6e9cc3698815.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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;}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.021253px;}
.lsb{letter-spacing:0.189257px;}
.ls9{letter-spacing:0.189300px;}
.lsa{letter-spacing:0.272340px;}
.ls8{letter-spacing:0.311803px;}
.ls1{letter-spacing:0.378600px;}
.ls6{letter-spacing:1.451461px;}
.ls7{letter-spacing:1.451494px;}
.ls3{letter-spacing:2.892329px;}
.ls4{letter-spacing:5.053606px;}
.ls5{letter-spacing:7.935308px;}
.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:-46.433557px;}
.ws1{word-spacing:-18.000014px;}
.ws4{word-spacing:-14.940012px;}
.ws0{word-spacing:-12.060010px;}
.ws3{word-spacing:0.000000px;}
._17{margin-left:-2.580456px;}
._1{margin-left:-1.241325px;}
._0{width:1.461269px;}
._4{width:2.476507px;}
._5{width:3.499721px;}
._7{width:5.320480px;}
._9{width:6.520516px;}
._8{width:7.590511px;}
._2{width:9.082084px;}
._3{width:10.285133px;}
._a{width:11.445313px;}
._b{width:12.879150px;}
._6{width:14.415645px;}
._e{width:15.930916px;}
._f{width:16.974822px;}
._10{width:19.817589px;}
._11{width:20.830289px;}
._19{width:22.310427px;}
._18{width:23.368871px;}
._13{width:25.784086px;}
._14{width:26.816612px;}
._12{width:28.008308px;}
._c{width:29.052019px;}
._d{width:30.311582px;}
._15{width:46.920985px;}
._16{width:48.255848px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880031px;}
.fs1{font-size:48.240039px;}
.fs2{font-size:59.760048px;}
.fs0{font-size:72.000058px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.901546px;}
.y94{bottom:118.201595px;}
.yc5{bottom:120.901597px;}
.y38{bottom:124.321599px;}
.yc4{bottom:138.181611px;}
.y68{bottom:138.901611px;}
.y37{bottom:141.601613px;}
.yee{bottom:148.441619px;}
.yc3{bottom:155.461624px;}
.y36{bottom:158.881627px;}
.y67{bottom:159.601628px;}
.yed{bottom:165.721633px;}
.yc2{bottom:172.741638px;}
.y35{bottom:176.161641px;}
.y66{bottom:180.301644px;}
.yec{bottom:183.001646px;}
.yc1{bottom:189.841652px;}
.y34{bottom:193.441655px;}
.yeb{bottom:200.281660px;}
.y64{bottom:201.001661px;}
.yc0{bottom:207.121666px;}
.y65{bottom:209.281667px;}
.y33{bottom:210.541668px;}
.yea{bottom:217.561674px;}
.y63{bottom:220.981677px;}
.y93{bottom:221.701677px;}
.ybf{bottom:224.401680px;}
.y32{bottom:227.821682px;}
.ye9{bottom:234.661688px;}
.y62{bottom:238.261691px;}
.ybe{bottom:241.681693px;}
.y92{bottom:242.401694px;}
.y31{bottom:245.101696px;}
.ye8{bottom:251.941702px;}
.y61{bottom:255.361704px;}
.ybd{bottom:258.961707px;}
.y30{bottom:262.381710px;}
.ye7{bottom:269.941716px;}
.y60{bottom:272.641718px;}
.ybc{bottom:276.961722px;}
.y2f{bottom:279.661724px;}
.y91{bottom:286.501729px;}
.y5f{bottom:289.921732px;}
.ye6{bottom:290.641733px;}
.y2e{bottom:296.761737px;}
.ybb{bottom:297.661738px;}
.y5e{bottom:307.201746px;}
.ye4{bottom:311.341749px;}
.y2d{bottom:314.041751px;}
.yba{bottom:318.361755px;}
.ye5{bottom:319.621756px;}
.y5d{bottom:324.481760px;}
.y90{bottom:331.321765px;}
.y2c{bottom:332.041766px;}
.yb9{bottom:339.061771px;}
.y5c{bottom:342.481774px;}
.y8f{bottom:348.601779px;}
.y2b{bottom:352.741782px;}
.yb8{bottom:359.761788px;}
.y5b{bottom:362.461790px;}
.y8e{bottom:365.881793px;}
.ye3{bottom:372.721798px;}
.y2a{bottom:373.441799px;}
.y5a{bottom:379.561804px;}
.yb7{bottom:380.461804px;}
.y8d{bottom:383.881807px;}
.ye2{bottom:390.001812px;}
.y29{bottom:394.141815px;}
.y59{bottom:396.841817px;}
.yb6{bottom:401.161821px;}
.y8c{bottom:404.581824px;}
.ye1{bottom:407.281826px;}
.y108{bottom:414.121831px;}
.y28{bottom:414.841832px;}
.yb5{bottom:421.861837px;}
.ye0{bottom:424.561840px;}
.y8b{bottom:425.281840px;}
.y107{bottom:431.401845px;}
.y27{bottom:435.541848px;}
.ydf{bottom:441.661853px;}
.yb4{bottom:442.561854px;}
.y8a{bottom:445.981857px;}
.y106{bottom:448.681859px;}
.y26{bottom:456.241865px;}
.yde{bottom:458.941867px;}
.yb3{bottom:462.361870px;}
.y105{bottom:465.961873px;}
.y89{bottom:466.681873px;}
.ydd{bottom:476.221881px;}
.y25{bottom:476.941882px;}
.yb2{bottom:479.641884px;}
.y104{bottom:483.061886px;}
.y88{bottom:487.381890px;}
.ydc{bottom:493.501895px;}
.yb1{bottom:496.921898px;}
.y24{bottom:497.641898px;}
.y103{bottom:500.341900px;}
.y87{bottom:507.361906px;}
.ydb{bottom:510.781909px;}
.yb0{bottom:514.201911px;}
.y23{bottom:517.621914px;}
.y58{bottom:518.341915px;}
.y86{bottom:524.461920px;}
.yda{bottom:528.061922px;}
.yaf{bottom:531.481925px;}
.y22{bottom:534.901928px;}
.y57{bottom:538.321931px;}
.y85{bottom:541.741933px;}
.yd9{bottom:546.061937px;}
.yae{bottom:548.761939px;}
.y21{bottom:552.181942px;}
.y56{bottom:555.601944px;}
.y84{bottom:559.741948px;}
.yad{bottom:565.861953px;}
.yd8{bottom:566.761953px;}
.y20{bottom:569.461956px;}
.y102{bottom:570.181956px;}
.y55{bottom:572.881958px;}
.y83{bottom:579.721964px;}
.yac{bottom:583.861967px;}
.y1f{bottom:586.561969px;}
.yd7{bottom:587.281970px;}
.y54{bottom:589.981972px;}
.y101{bottom:590.881973px;}
.y82{bottom:597.001978px;}
.y1e{bottom:603.841983px;}
.yab{bottom:604.561984px;}
.y53{bottom:607.261986px;}
.yd6{bottom:607.981986px;}
.y100{bottom:611.581989px;}
.y81{bottom:614.281991px;}
.y1d{bottom:621.121997px;}
.y52{bottom:624.542000px;}
.yaa{bottom:625.262000px;}
.yd5{bottom:628.682003px;}
.y80{bottom:631.382005px;}
.yff{bottom:632.282006px;}
.y1c{bottom:638.402011px;}
.y51{bottom:641.822013px;}
.ya9{bottom:645.962017px;}
.y7f{bottom:648.662019px;}
.yd4{bottom:649.382020px;}
.yfe{bottom:652.982022px;}
.y1b{bottom:655.682025px;}
.y50{bottom:659.102027px;}
.y7e{bottom:666.662033px;}
.yd3{bottom:670.082036px;}
.y1a{bottom:672.782038px;}
.yfd{bottom:673.682039px;}
.y4f{bottom:676.382041px;}
.y7d{bottom:686.642049px;}
.ya8{bottom:687.362050px;}
.y19{bottom:690.062052px;}
.yd2{bottom:690.782053px;}
.y4e{bottom:693.482055px;}
.yfc{bottom:694.382056px;}
.y7c{bottom:703.922063px;}
.y18{bottom:707.342066px;}
.ya7{bottom:708.062066px;}
.y4d{bottom:710.762069px;}
.yd0{bottom:711.482069px;}
.yfb{bottom:715.082072px;}
.yd1{bottom:719.762076px;}
.y7b{bottom:721.922078px;}
.y17{bottom:724.622080px;}
.y4c{bottom:728.042082px;}
.ya6{bottom:728.762083px;}
.ycf{bottom:732.182086px;}
.yfa{bottom:735.782089px;}
.y16{bottom:741.902094px;}
.y7a{bottom:742.622094px;}
.y4b{bottom:746.042097px;}
.ya5{bottom:749.462100px;}
.yce{bottom:752.882102px;}
.yf9{bottom:755.582104px;}
.y15{bottom:759.182107px;}
.y79{bottom:763.322111px;}
.y4a{bottom:766.742113px;}
.ya4{bottom:770.162116px;}
.yf8{bottom:772.862118px;}
.ycd{bottom:773.582119px;}
.y14{bottom:776.282121px;}
.y78{bottom:784.022127px;}
.y49{bottom:787.442130px;}
.yf7{bottom:790.142132px;}
.ya3{bottom:790.862133px;}
.y13{bottom:794.282135px;}
.y77{bottom:804.722144px;}
.y48{bottom:807.422146px;}
.ya2{bottom:811.562149px;}
.y12{bottom:814.982152px;}
.yf6{bottom:824.702160px;}
.y47{bottom:825.422160px;}
.ya1{bottom:831.542165px;}
.ycc{bottom:834.962168px;}
.y11{bottom:835.682169px;}
.yf5{bottom:841.982174px;}
.y46{bottom:846.122177px;}
.ya0{bottom:848.822179px;}
.ycb{bottom:852.242182px;}
.y10{bottom:856.382185px;}
.yf3{bottom:859.082187px;}
.yf4{bottom:865.922193px;}
.y9f{bottom:866.102193px;}
.y45{bottom:866.822193px;}
.yca{bottom:869.522196px;}
.y76{bottom:875.102200px;}
.yf2{bottom:876.362201px;}
.yf{bottom:877.082202px;}
.y9e{bottom:883.382207px;}
.y75{bottom:886.802209px;}
.y44{bottom:887.522210px;}
.yf1{bottom:893.642215px;}
.ye{bottom:897.782218px;}
.y9d{bottom:900.482220px;}
.y74{bottom:904.082223px;}
.y43{bottom:908.222227px;}
.yf0{bottom:911.642229px;}
.y9c{bottom:917.762234px;}
.yd{bottom:918.482235px;}
.y73{bottom:921.182237px;}
.y42{bottom:928.922243px;}
.yef{bottom:932.342246px;}
.y9b{bottom:935.042248px;}
.y72{bottom:938.462251px;}
.yc{bottom:939.182251px;}
.y41{bottom:949.622260px;}
.y9a{bottom:953.042262px;}
.y71{bottom:955.742265px;}
.yc9{bottom:956.462265px;}
.yb{bottom:959.882268px;}
.y40{bottom:969.602276px;}
.y70{bottom:973.022278px;}
.y99{bottom:973.742279px;}
.yc8{bottom:977.162282px;}
.ya{bottom:980.582284px;}
.y3f{bottom:987.602290px;}
.y6f{bottom:990.302292px;}
.y98{bottom:994.442296px;}
.yc7{bottom:997.862298px;}
.y9{bottom:1000.562300px;}
.y6e{bottom:1007.402306px;}
.y3e{bottom:1008.302307px;}
.y97{bottom:1015.142312px;}
.y8{bottom:1018.562315px;}
.y6d{bottom:1024.682320px;}
.y3d{bottom:1029.002323px;}
.y96{bottom:1035.842329px;}
.y7{bottom:1039.262331px;}
.y6c{bottom:1041.962334px;}
.y3c{bottom:1048.802339px;}
.y95{bottom:1056.542345px;}
.y6b{bottom:1059.242347px;}
.y6{bottom:1059.962348px;}
.y3b{bottom:1066.082353px;}
.y6a{bottom:1077.242362px;}
.y5{bottom:1079.942364px;}
.yc6{bottom:1080.662365px;}
.y3a{bottom:1083.362367px;}
.y3{bottom:1097.582378px;}
.y69{bottom:1097.942378px;}
.y39{bottom:1100.642381px;}
.y4{bottom:1105.862385px;}
.y1{bottom:1135.022408px;}
.ha{height:38.139640px;}
.h7{height:38.158624px;}
.h9{height:47.321405px;}
.h6{height:47.344960px;}
.h3{height:48.616914px;}
.h5{height:58.622039px;}
.h4{height:58.651219px;}
.h8{height:70.628963px;}
.h1{height:70.664119px;}
.h2{height:72.562558px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.619755px;}
.x3{left:180.180144px;}
.x4{left:190.800153px;}
.xe{left:330.840265px;}
.xf{left:340.200272px;}
.x9{left:372.960298px;}
.x7{left:379.980304px;}
.x8{left:388.080310px;}
.x5{left:411.300329px;}
.x6{left:419.400336px;}
.x10{left:450.180360px;}
.x11{left:457.740366px;}
.xa{left:532.980426px;}
.xb{left:540.540432px;}
.xc{left:755.820605px;}
.xd{left:765.360612px;}
.x1{left:790.200632px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.018891pt;}
.lsb{letter-spacing:0.168229pt;}
.ls9{letter-spacing:0.168267pt;}
.lsa{letter-spacing:0.242080pt;}
.ls8{letter-spacing:0.277158pt;}
.ls1{letter-spacing:0.336534pt;}
.ls6{letter-spacing:1.290188pt;}
.ls7{letter-spacing:1.290217pt;}
.ls3{letter-spacing:2.570959pt;}
.ls4{letter-spacing:4.492094pt;}
.ls5{letter-spacing:7.053607pt;}
.ws2{word-spacing:-41.274273pt;}
.ws1{word-spacing:-16.000013pt;}
.ws4{word-spacing:-13.280011pt;}
.ws0{word-spacing:-10.720009pt;}
.ws3{word-spacing:0.000000pt;}
._17{margin-left:-2.293739pt;}
._1{margin-left:-1.103400pt;}
._0{width:1.298905pt;}
._4{width:2.201339pt;}
._5{width:3.110863pt;}
._7{width:4.729316pt;}
._9{width:5.796014pt;}
._8{width:6.747121pt;}
._2{width:8.072963pt;}
._3{width:9.142341pt;}
._a{width:10.173612pt;}
._b{width:11.448133pt;}
._6{width:12.813907pt;}
._e{width:14.160814pt;}
._f{width:15.088730pt;}
._10{width:17.615635pt;}
._11{width:18.515812pt;}
._19{width:19.831490pt;}
._18{width:20.772330pt;}
._13{width:22.919187pt;}
._14{width:23.836988pt;}
._12{width:24.896274pt;}
._c{width:25.824017pt;}
._d{width:26.943628pt;}
._15{width:41.707542pt;}
._16{width:42.894087pt;}
.fs3{font-size:34.560028pt;}
.fs1{font-size:42.880034pt;}
.fs2{font-size:53.120042pt;}
.fs0{font-size:64.000051pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.468041pt;}
.y94{bottom:105.068084pt;}
.yc5{bottom:107.468086pt;}
.y38{bottom:110.508088pt;}
.yc4{bottom:122.828098pt;}
.y68{bottom:123.468099pt;}
.y37{bottom:125.868101pt;}
.yee{bottom:131.948106pt;}
.yc3{bottom:138.188111pt;}
.y36{bottom:141.228113pt;}
.y67{bottom:141.868113pt;}
.yed{bottom:147.308118pt;}
.yc2{bottom:153.548123pt;}
.y35{bottom:156.588125pt;}
.y66{bottom:160.268128pt;}
.yec{bottom:162.668130pt;}
.yc1{bottom:168.748135pt;}
.y34{bottom:171.948138pt;}
.yeb{bottom:178.028142pt;}
.y64{bottom:178.668143pt;}
.yc0{bottom:184.108147pt;}
.y65{bottom:186.028149pt;}
.y33{bottom:187.148150pt;}
.yea{bottom:193.388155pt;}
.y63{bottom:196.428157pt;}
.y93{bottom:197.068158pt;}
.ybf{bottom:199.468160pt;}
.y32{bottom:202.508162pt;}
.ye9{bottom:208.588167pt;}
.y62{bottom:211.788169pt;}
.ybe{bottom:214.828172pt;}
.y92{bottom:215.468172pt;}
.y31{bottom:217.868174pt;}
.ye8{bottom:223.948179pt;}
.y61{bottom:226.988182pt;}
.ybd{bottom:230.188184pt;}
.y30{bottom:233.228187pt;}
.ye7{bottom:239.948192pt;}
.y60{bottom:242.348194pt;}
.ybc{bottom:246.188197pt;}
.y2f{bottom:248.588199pt;}
.y91{bottom:254.668204pt;}
.y5f{bottom:257.708206pt;}
.ye6{bottom:258.348207pt;}
.y2e{bottom:263.788211pt;}
.ybb{bottom:264.588212pt;}
.y5e{bottom:273.068218pt;}
.ye4{bottom:276.748221pt;}
.y2d{bottom:279.148223pt;}
.yba{bottom:282.988226pt;}
.ye5{bottom:284.108227pt;}
.y5d{bottom:288.428231pt;}
.y90{bottom:294.508236pt;}
.y2c{bottom:295.148236pt;}
.yb9{bottom:301.388241pt;}
.y5c{bottom:304.428244pt;}
.y8f{bottom:309.868248pt;}
.y2b{bottom:313.548251pt;}
.yb8{bottom:319.788256pt;}
.y5b{bottom:322.188258pt;}
.y8e{bottom:325.228260pt;}
.ye3{bottom:331.308265pt;}
.y2a{bottom:331.948266pt;}
.y5a{bottom:337.388270pt;}
.yb7{bottom:338.188271pt;}
.y8d{bottom:341.228273pt;}
.ye2{bottom:346.668277pt;}
.y29{bottom:350.348280pt;}
.y59{bottom:352.748282pt;}
.yb6{bottom:356.588285pt;}
.y8c{bottom:359.628288pt;}
.ye1{bottom:362.028290pt;}
.y108{bottom:368.108294pt;}
.y28{bottom:368.748295pt;}
.yb5{bottom:374.988300pt;}
.ye0{bottom:377.388302pt;}
.y8b{bottom:378.028302pt;}
.y107{bottom:383.468307pt;}
.y27{bottom:387.148310pt;}
.ydf{bottom:392.588314pt;}
.yb4{bottom:393.388315pt;}
.y8a{bottom:396.428317pt;}
.y106{bottom:398.828319pt;}
.y26{bottom:405.548324pt;}
.yde{bottom:407.948326pt;}
.yb3{bottom:410.988329pt;}
.y105{bottom:414.188331pt;}
.y89{bottom:414.828332pt;}
.ydd{bottom:423.308339pt;}
.y25{bottom:423.948339pt;}
.yb2{bottom:426.348341pt;}
.y104{bottom:429.388344pt;}
.y88{bottom:433.228347pt;}
.ydc{bottom:438.668351pt;}
.yb1{bottom:441.708353pt;}
.y24{bottom:442.348354pt;}
.y103{bottom:444.748356pt;}
.y87{bottom:450.988361pt;}
.ydb{bottom:454.028363pt;}
.yb0{bottom:457.068366pt;}
.y23{bottom:460.108368pt;}
.y58{bottom:460.748369pt;}
.y86{bottom:466.188373pt;}
.yda{bottom:469.388376pt;}
.yaf{bottom:472.428378pt;}
.y22{bottom:475.468380pt;}
.y57{bottom:478.508383pt;}
.y85{bottom:481.548385pt;}
.yd9{bottom:485.388388pt;}
.yae{bottom:487.788390pt;}
.y21{bottom:490.828393pt;}
.y56{bottom:493.868395pt;}
.y84{bottom:497.548398pt;}
.yad{bottom:502.988402pt;}
.yd8{bottom:503.788403pt;}
.y20{bottom:506.188405pt;}
.y102{bottom:506.828405pt;}
.y55{bottom:509.228407pt;}
.y83{bottom:515.308412pt;}
.yac{bottom:518.988415pt;}
.y1f{bottom:521.388417pt;}
.yd7{bottom:522.028418pt;}
.y54{bottom:524.428420pt;}
.y101{bottom:525.228420pt;}
.y82{bottom:530.668425pt;}
.y1e{bottom:536.748429pt;}
.yab{bottom:537.388430pt;}
.y53{bottom:539.788432pt;}
.yd6{bottom:540.428432pt;}
.y100{bottom:543.628435pt;}
.y81{bottom:546.028437pt;}
.y1d{bottom:552.108442pt;}
.y52{bottom:555.148444pt;}
.yaa{bottom:555.788445pt;}
.yd5{bottom:558.828447pt;}
.y80{bottom:561.228449pt;}
.yff{bottom:562.028450pt;}
.y1c{bottom:567.468454pt;}
.y51{bottom:570.508456pt;}
.ya9{bottom:574.188459pt;}
.y7f{bottom:576.588461pt;}
.yd4{bottom:577.228462pt;}
.yfe{bottom:580.428464pt;}
.y1b{bottom:582.828466pt;}
.y50{bottom:585.868469pt;}
.y7e{bottom:592.588474pt;}
.yd3{bottom:595.628477pt;}
.y1a{bottom:598.028478pt;}
.yfd{bottom:598.828479pt;}
.y4f{bottom:601.228481pt;}
.y7d{bottom:610.348488pt;}
.ya8{bottom:610.988489pt;}
.y19{bottom:613.388491pt;}
.yd2{bottom:614.028491pt;}
.y4e{bottom:616.428493pt;}
.yfc{bottom:617.228494pt;}
.y7c{bottom:625.708501pt;}
.y18{bottom:628.748503pt;}
.ya7{bottom:629.388504pt;}
.y4d{bottom:631.788505pt;}
.yd0{bottom:632.428506pt;}
.yfb{bottom:635.628509pt;}
.yd1{bottom:639.788512pt;}
.y7b{bottom:641.708513pt;}
.y17{bottom:644.108515pt;}
.y4c{bottom:647.148518pt;}
.ya6{bottom:647.788518pt;}
.ycf{bottom:650.828521pt;}
.yfa{bottom:654.028523pt;}
.y16{bottom:659.468528pt;}
.y7a{bottom:660.108528pt;}
.y4b{bottom:663.148531pt;}
.ya5{bottom:666.188533pt;}
.yce{bottom:669.228535pt;}
.yf9{bottom:671.628537pt;}
.y15{bottom:674.828540pt;}
.y79{bottom:678.508543pt;}
.y4a{bottom:681.548545pt;}
.ya4{bottom:684.588548pt;}
.yf8{bottom:686.988550pt;}
.ycd{bottom:687.628550pt;}
.y14{bottom:690.028552pt;}
.y78{bottom:696.908558pt;}
.y49{bottom:699.948560pt;}
.yf7{bottom:702.348562pt;}
.ya3{bottom:702.988562pt;}
.y13{bottom:706.028565pt;}
.y77{bottom:715.308572pt;}
.y48{bottom:717.708574pt;}
.ya2{bottom:721.388577pt;}
.y12{bottom:724.428580pt;}
.yf6{bottom:733.068586pt;}
.y47{bottom:733.708587pt;}
.ya1{bottom:739.148591pt;}
.ycc{bottom:742.188594pt;}
.y11{bottom:742.828594pt;}
.yf5{bottom:748.428599pt;}
.y46{bottom:752.108602pt;}
.ya0{bottom:754.508604pt;}
.ycb{bottom:757.548606pt;}
.y10{bottom:761.228609pt;}
.yf3{bottom:763.628611pt;}
.yf4{bottom:769.708616pt;}
.y9f{bottom:769.868616pt;}
.y45{bottom:770.508616pt;}
.yca{bottom:772.908618pt;}
.y76{bottom:777.868622pt;}
.yf2{bottom:778.988623pt;}
.yf{bottom:779.628624pt;}
.y9e{bottom:785.228628pt;}
.y75{bottom:788.268631pt;}
.y44{bottom:788.908631pt;}
.yf1{bottom:794.348635pt;}
.ye{bottom:798.028638pt;}
.y9d{bottom:800.428640pt;}
.y74{bottom:803.628643pt;}
.y43{bottom:807.308646pt;}
.yf0{bottom:810.348648pt;}
.y9c{bottom:815.788653pt;}
.yd{bottom:816.428653pt;}
.y73{bottom:818.828655pt;}
.y42{bottom:825.708661pt;}
.yef{bottom:828.748663pt;}
.y9b{bottom:831.148665pt;}
.y72{bottom:834.188667pt;}
.yc{bottom:834.828668pt;}
.y41{bottom:844.108675pt;}
.y9a{bottom:847.148678pt;}
.y71{bottom:849.548680pt;}
.yc9{bottom:850.188680pt;}
.yb{bottom:853.228683pt;}
.y40{bottom:861.868689pt;}
.y70{bottom:864.908692pt;}
.y99{bottom:865.548692pt;}
.yc8{bottom:868.588695pt;}
.ya{bottom:871.628697pt;}
.y3f{bottom:877.868702pt;}
.y6f{bottom:880.268704pt;}
.y98{bottom:883.948707pt;}
.yc7{bottom:886.988710pt;}
.y9{bottom:889.388712pt;}
.y6e{bottom:895.468716pt;}
.y3e{bottom:896.268717pt;}
.y97{bottom:902.348722pt;}
.y8{bottom:905.388724pt;}
.y6d{bottom:910.828729pt;}
.y3d{bottom:914.668732pt;}
.y96{bottom:920.748737pt;}
.y7{bottom:923.788739pt;}
.y6c{bottom:926.188741pt;}
.y3c{bottom:932.268746pt;}
.y95{bottom:939.148751pt;}
.y6b{bottom:941.548753pt;}
.y6{bottom:942.188754pt;}
.y3b{bottom:947.628758pt;}
.y6a{bottom:957.548766pt;}
.y5{bottom:959.948768pt;}
.yc6{bottom:960.588768pt;}
.y3a{bottom:962.988770pt;}
.y3{bottom:975.628781pt;}
.y69{bottom:975.948781pt;}
.y39{bottom:978.348783pt;}
.y4{bottom:982.988786pt;}
.y1{bottom:1008.908807pt;}
.ha{height:33.901902pt;}
.h7{height:33.918777pt;}
.h9{height:42.063471pt;}
.h6{height:42.084409pt;}
.h3{height:43.215035pt;}
.h5{height:52.108479pt;}
.h4{height:52.134417pt;}
.h8{height:62.781300pt;}
.h1{height:62.812550pt;}
.h2{height:64.500052pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.439782pt;}
.x3{left:160.160128pt;}
.x4{left:169.600136pt;}
.xe{left:294.080235pt;}
.xf{left:302.400242pt;}
.x9{left:331.520265pt;}
.x7{left:337.760270pt;}
.x8{left:344.960276pt;}
.x5{left:365.600292pt;}
.x6{left:372.800298pt;}
.x10{left:400.160320pt;}
.x11{left:406.880326pt;}
.xa{left:473.760379pt;}
.xb{left:480.480384pt;}
.xc{left:671.840537pt;}
.xd{left:680.320544pt;}
.x1{left:702.400562pt;}
}

