
    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_40daf53858969294840b7628.woff')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_f2680b6a151ad0028de544cb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.902000;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_f1e2822441d04f75a5dbec34.woff')format("woff");}.ff3{font-family:ff3;line-height:0.889000;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_624582ef975c5c1fb14dd6cb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.077000;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_63ef18ef5e2551529672d0c7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.908083;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_8b79cbe58530ec18b09ad70d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.742000;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.140400px;}
.ls1{letter-spacing:0.205200px;}
.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.840000px;}
.ws3{word-spacing:-15.012000px;}
.ws8{word-spacing:-11.988000px;}
.ws4{word-spacing:-10.080000px;}
.ws6{word-spacing:-7.560000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:3.505170px;}
.ws0{word-spacing:73.143000px;}
.ws1{word-spacing:595.213080px;}
._5{margin-left:-9.094740px;}
._3{margin-left:-7.419060px;}
._8{margin-left:-6.009720px;}
._7{margin-left:-4.839000px;}
._a{margin-left:-3.812940px;}
._2{margin-left:-2.259840px;}
._1{margin-left:-1.195920px;}
._0{width:1.112400px;}
._b{width:3.045060px;}
._d{width:4.666680px;}
._4{width:5.748840px;}
._c{width:6.906600px;}
._6{width:8.904960px;}
._10{width:10.167300px;}
._12{width:11.975940px;}
._9{width:13.806000px;}
._11{width:25.842780px;}
._f{width:27.262980px;}
._e{width:28.504980px;}
._13{width:85.038660px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:42.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:63.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:132.000000px;}
.fs2{font-size:168.000000px;}
.fs7{font-size:1242.438000px;}
.fs6{font-size:1243.026060px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.793400px;}
.y83{bottom:95.281815px;}
.y58{bottom:95.282220px;}
.ye5{bottom:95.282340px;}
.yba{bottom:95.282745px;}
.y2d{bottom:95.285055px;}
.y9d{bottom:95.285310px;}
.y82{bottom:112.681830px;}
.ye4{bottom:112.682355px;}
.y57{bottom:112.682370px;}
.yb9{bottom:112.682895px;}
.y2c{bottom:112.685205px;}
.y9c{bottom:112.685460px;}
.y81{bottom:130.081845px;}
.ye3{bottom:130.082370px;}
.y56{bottom:130.082520px;}
.yb8{bottom:130.083045px;}
.y2b{bottom:130.085355px;}
.y9b{bottom:130.085610px;}
.y80{bottom:147.481860px;}
.ye2{bottom:147.482385px;}
.y55{bottom:147.482670px;}
.yb7{bottom:147.483195px;}
.y2a{bottom:147.485505px;}
.y9a{bottom:147.485760px;}
.y7f{bottom:164.881875px;}
.ye1{bottom:164.882400px;}
.y54{bottom:164.882820px;}
.yb6{bottom:164.883345px;}
.y29{bottom:164.885655px;}
.y99{bottom:164.885910px;}
.y7e{bottom:182.282025px;}
.ye0{bottom:182.282550px;}
.y53{bottom:182.282970px;}
.yb5{bottom:182.283495px;}
.y28{bottom:182.285805px;}
.y98{bottom:182.286060px;}
.y7d{bottom:199.681770px;}
.ydf{bottom:199.682295px;}
.y52{bottom:199.683120px;}
.yb4{bottom:199.683645px;}
.y27{bottom:199.685955px;}
.y97{bottom:199.686210px;}
.y7c{bottom:217.081785px;}
.yde{bottom:217.082310px;}
.y51{bottom:217.083270px;}
.yb3{bottom:217.083795px;}
.y26{bottom:217.086105px;}
.y96{bottom:217.086360px;}
.y7b{bottom:234.481935px;}
.ydd{bottom:234.482460px;}
.y50{bottom:234.483420px;}
.yb2{bottom:234.483945px;}
.y25{bottom:234.486255px;}
.y95{bottom:234.486510px;}
.y7a{bottom:251.881950px;}
.ydc{bottom:251.882475px;}
.y4f{bottom:251.883570px;}
.yb1{bottom:251.884095px;}
.y24{bottom:251.886405px;}
.y94{bottom:251.886660px;}
.y79{bottom:269.281965px;}
.ydb{bottom:269.282490px;}
.y4e{bottom:269.283720px;}
.yb0{bottom:269.284245px;}
.y23{bottom:269.286555px;}
.y93{bottom:269.286810px;}
.y78{bottom:286.681710px;}
.yda{bottom:286.682235px;}
.y4d{bottom:286.683870px;}
.yaf{bottom:286.684395px;}
.y22{bottom:286.686705px;}
.y92{bottom:286.686960px;}
.y77{bottom:304.081860px;}
.yd9{bottom:304.082385px;}
.y4c{bottom:304.084020px;}
.yae{bottom:304.084545px;}
.y21{bottom:304.086855px;}
.y91{bottom:304.087110px;}
.y76{bottom:321.481875px;}
.yd8{bottom:321.482400px;}
.y4b{bottom:321.484170px;}
.yad{bottom:321.484695px;}
.y20{bottom:321.487005px;}
.y90{bottom:321.487260px;}
.y75{bottom:338.881890px;}
.yd7{bottom:338.882415px;}
.y4a{bottom:338.884320px;}
.yac{bottom:338.884845px;}
.y1f{bottom:338.887155px;}
.y8f{bottom:338.887410px;}
.y74{bottom:356.281905px;}
.yd6{bottom:356.282430px;}
.y49{bottom:356.284470px;}
.yab{bottom:356.284995px;}
.y1e{bottom:356.287305px;}
.y8e{bottom:356.287560px;}
.y73{bottom:373.681920px;}
.yd5{bottom:373.682445px;}
.y48{bottom:373.684620px;}
.yaa{bottom:373.685145px;}
.y1d{bottom:373.687455px;}
.y8d{bottom:373.687710px;}
.y72{bottom:391.081935px;}
.yd4{bottom:391.082460px;}
.y47{bottom:391.084770px;}
.ya9{bottom:391.085295px;}
.y1c{bottom:391.087605px;}
.y8c{bottom:391.087860px;}
.y71{bottom:408.481950px;}
.yd3{bottom:408.482475px;}
.y46{bottom:408.484785px;}
.ya8{bottom:408.485310px;}
.y1b{bottom:408.487620px;}
.y8b{bottom:408.487875px;}
.y70{bottom:425.881965px;}
.yd2{bottom:425.882490px;}
.y45{bottom:425.884800px;}
.ya7{bottom:425.885325px;}
.y1a{bottom:425.887635px;}
.y8a{bottom:425.887890px;}
.y6f{bottom:443.281980px;}
.yd1{bottom:443.282505px;}
.y44{bottom:443.284815px;}
.ya6{bottom:443.285340px;}
.y19{bottom:443.287650px;}
.y6e{bottom:460.682130px;}
.yd0{bottom:460.682655px;}
.y43{bottom:460.684965px;}
.ya5{bottom:460.685490px;}
.y18{bottom:460.687800px;}
.y6d{bottom:478.082010px;}
.ycf{bottom:478.082535px;}
.y42{bottom:478.084845px;}
.ya4{bottom:478.085370px;}
.y17{bottom:478.087680px;}
.y6c{bottom:495.482025px;}
.yce{bottom:495.482550px;}
.y41{bottom:495.484860px;}
.ya3{bottom:495.485385px;}
.y16{bottom:495.487695px;}
.y6b{bottom:512.882175px;}
.ycd{bottom:512.882700px;}
.y40{bottom:512.885010px;}
.ya2{bottom:512.885535px;}
.y15{bottom:512.887845px;}
.y6a{bottom:530.282190px;}
.ycc{bottom:530.282715px;}
.y3f{bottom:530.285025px;}
.ya1{bottom:530.285550px;}
.y14{bottom:530.287860px;}
.y69{bottom:547.682205px;}
.ycb{bottom:547.682730px;}
.y3e{bottom:547.685040px;}
.ya0{bottom:547.685565px;}
.y13{bottom:547.687875px;}
.y68{bottom:565.082220px;}
.yca{bottom:565.082745px;}
.y3d{bottom:565.085055px;}
.y9f{bottom:565.085580px;}
.y12{bottom:565.087890px;}
.y67{bottom:582.482235px;}
.yc9{bottom:582.482760px;}
.y3c{bottom:582.485070px;}
.y9e{bottom:582.485595px;}
.y11{bottom:582.487905px;}
.yec{bottom:598.130550px;}
.y66{bottom:599.882250px;}
.yc8{bottom:599.882775px;}
.y3b{bottom:599.885085px;}
.y10{bottom:599.887920px;}
.y89{bottom:603.696300px;}
.y65{bottom:617.282265px;}
.yc7{bottom:617.282790px;}
.y3a{bottom:617.285100px;}
.yf{bottom:617.287935px;}
.y64{bottom:634.682280px;}
.yc6{bottom:634.682805px;}
.y39{bottom:634.685115px;}
.ye{bottom:634.687950px;}
.y63{bottom:652.082295px;}
.yc5{bottom:652.082820px;}
.y38{bottom:652.085130px;}
.yd{bottom:652.087965px;}
.yeb{bottom:668.535300px;}
.y62{bottom:669.482310px;}
.yc4{bottom:669.482835px;}
.y37{bottom:669.485145px;}
.yc{bottom:669.487980px;}
.y61{bottom:686.882325px;}
.yc3{bottom:686.882850px;}
.y36{bottom:686.885160px;}
.yb{bottom:686.887995px;}
.yea{bottom:698.535270px;}
.y60{bottom:704.282340px;}
.yc2{bottom:704.282865px;}
.y35{bottom:704.285175px;}
.ya{bottom:704.288010px;}
.y5f{bottom:721.682355px;}
.yc1{bottom:721.682880px;}
.y34{bottom:721.685190px;}
.y9{bottom:721.688025px;}
.ye9{bottom:728.535240px;}
.y5e{bottom:739.082370px;}
.yc0{bottom:739.082895px;}
.y33{bottom:739.085205px;}
.y8{bottom:739.088040px;}
.y5d{bottom:756.482385px;}
.ybf{bottom:756.482910px;}
.y32{bottom:756.485220px;}
.y7{bottom:756.488055px;}
.ye8{bottom:758.535210px;}
.y5c{bottom:773.882400px;}
.ybe{bottom:773.882925px;}
.y31{bottom:773.885235px;}
.y6{bottom:773.888070px;}
.ye7{bottom:788.535180px;}
.y5b{bottom:791.282550px;}
.ybd{bottom:791.283075px;}
.y30{bottom:791.285385px;}
.y5{bottom:791.288220px;}
.y5a{bottom:808.682565px;}
.ybc{bottom:808.683090px;}
.y2f{bottom:808.685400px;}
.y4{bottom:808.688235px;}
.ye6{bottom:818.535150px;}
.y59{bottom:826.082580px;}
.ybb{bottom:826.083105px;}
.y2e{bottom:826.085415px;}
.y3{bottom:826.088250px;}
.y88{bottom:900.931200px;}
.yed{bottom:907.967850px;}
.y87{bottom:915.931200px;}
.y86{bottom:969.931200px;}
.y85{bottom:1011.931200px;}
.y84{bottom:1053.931200px;}
.y2{bottom:1120.111350px;}
.h8{height:30.744000px;}
.h2{height:39.528000px;}
.h5{height:41.472000px;}
.h4{height:45.846000px;}
.h7{height:63.588000px;}
.h3{height:99.924000px;}
.h6{height:122.976000px;}
.ha{height:940.525566px;}
.h9{height:940.970727px;}
.h1{height:1190.250000px;}
.h0{height:1190.551485px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:55.783500px;}
.x4{left:72.284100px;}
.xe{left:76.534335px;}
.xa{left:78.064650px;}
.x2{left:80.533500px;}
.x5{left:92.763330px;}
.x3{left:163.074300px;}
.x1{left:294.132900px;}
.x6{left:327.369570px;}
.xb{left:328.930650px;}
.x14{left:330.207150px;}
.xf{left:331.747380px;}
.x7{left:342.357135px;}
.x10{left:346.780845px;}
.xd{left:491.765850px;}
.x13{left:562.068150px;}
.x8{left:582.463410px;}
.x11{left:586.833255px;}
.x9{left:597.464070px;}
.x12{left:601.818525px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.124800pt;}
.ls1{letter-spacing:0.182400pt;}
.ws2{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.344000pt;}
.ws8{word-spacing:-10.656000pt;}
.ws4{word-spacing:-8.960000pt;}
.ws6{word-spacing:-6.720000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.115707pt;}
.ws0{word-spacing:65.016000pt;}
.ws1{word-spacing:529.078293pt;}
._5{margin-left:-8.084213pt;}
._3{margin-left:-6.594720pt;}
._8{margin-left:-5.341973pt;}
._7{margin-left:-4.301333pt;}
._a{margin-left:-3.389280pt;}
._2{margin-left:-2.008747pt;}
._1{margin-left:-1.063040pt;}
._0{width:0.988800pt;}
._b{width:2.706720pt;}
._d{width:4.148160pt;}
._4{width:5.110080pt;}
._c{width:6.139200pt;}
._6{width:7.915520pt;}
._10{width:9.037600pt;}
._12{width:10.645280pt;}
._9{width:12.272000pt;}
._11{width:22.971360pt;}
._f{width:24.233760pt;}
._e{width:25.337760pt;}
._13{width:75.589920pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:56.000000pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:117.333333pt;}
.fs2{font-size:149.333333pt;}
.fs7{font-size:1104.389333pt;}
.fs6{font-size:1104.912053pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.594133pt;}
.y83{bottom:84.694947pt;}
.y58{bottom:84.695307pt;}
.ye5{bottom:84.695413pt;}
.yba{bottom:84.695773pt;}
.y2d{bottom:84.697827pt;}
.y9d{bottom:84.698053pt;}
.y82{bottom:100.161627pt;}
.ye4{bottom:100.162093pt;}
.y57{bottom:100.162107pt;}
.yb9{bottom:100.162573pt;}
.y2c{bottom:100.164627pt;}
.y9c{bottom:100.164853pt;}
.y81{bottom:115.628307pt;}
.ye3{bottom:115.628773pt;}
.y56{bottom:115.628907pt;}
.yb8{bottom:115.629373pt;}
.y2b{bottom:115.631427pt;}
.y9b{bottom:115.631653pt;}
.y80{bottom:131.094987pt;}
.ye2{bottom:131.095453pt;}
.y55{bottom:131.095707pt;}
.yb7{bottom:131.096173pt;}
.y2a{bottom:131.098227pt;}
.y9a{bottom:131.098453pt;}
.y7f{bottom:146.561667pt;}
.ye1{bottom:146.562133pt;}
.y54{bottom:146.562507pt;}
.yb6{bottom:146.562973pt;}
.y29{bottom:146.565027pt;}
.y99{bottom:146.565253pt;}
.y7e{bottom:162.028467pt;}
.ye0{bottom:162.028933pt;}
.y53{bottom:162.029307pt;}
.yb5{bottom:162.029773pt;}
.y28{bottom:162.031827pt;}
.y98{bottom:162.032053pt;}
.y7d{bottom:177.494907pt;}
.ydf{bottom:177.495373pt;}
.y52{bottom:177.496107pt;}
.yb4{bottom:177.496573pt;}
.y27{bottom:177.498627pt;}
.y97{bottom:177.498853pt;}
.y7c{bottom:192.961587pt;}
.yde{bottom:192.962053pt;}
.y51{bottom:192.962907pt;}
.yb3{bottom:192.963373pt;}
.y26{bottom:192.965427pt;}
.y96{bottom:192.965653pt;}
.y7b{bottom:208.428387pt;}
.ydd{bottom:208.428853pt;}
.y50{bottom:208.429707pt;}
.yb2{bottom:208.430173pt;}
.y25{bottom:208.432227pt;}
.y95{bottom:208.432453pt;}
.y7a{bottom:223.895067pt;}
.ydc{bottom:223.895533pt;}
.y4f{bottom:223.896507pt;}
.yb1{bottom:223.896973pt;}
.y24{bottom:223.899027pt;}
.y94{bottom:223.899253pt;}
.y79{bottom:239.361747pt;}
.ydb{bottom:239.362213pt;}
.y4e{bottom:239.363307pt;}
.yb0{bottom:239.363773pt;}
.y23{bottom:239.365827pt;}
.y93{bottom:239.366053pt;}
.y78{bottom:254.828187pt;}
.yda{bottom:254.828653pt;}
.y4d{bottom:254.830107pt;}
.yaf{bottom:254.830573pt;}
.y22{bottom:254.832627pt;}
.y92{bottom:254.832853pt;}
.y77{bottom:270.294987pt;}
.yd9{bottom:270.295453pt;}
.y4c{bottom:270.296907pt;}
.yae{bottom:270.297373pt;}
.y21{bottom:270.299427pt;}
.y91{bottom:270.299653pt;}
.y76{bottom:285.761667pt;}
.yd8{bottom:285.762133pt;}
.y4b{bottom:285.763707pt;}
.yad{bottom:285.764173pt;}
.y20{bottom:285.766227pt;}
.y90{bottom:285.766453pt;}
.y75{bottom:301.228347pt;}
.yd7{bottom:301.228813pt;}
.y4a{bottom:301.230507pt;}
.yac{bottom:301.230973pt;}
.y1f{bottom:301.233027pt;}
.y8f{bottom:301.233253pt;}
.y74{bottom:316.695027pt;}
.yd6{bottom:316.695493pt;}
.y49{bottom:316.697307pt;}
.yab{bottom:316.697773pt;}
.y1e{bottom:316.699827pt;}
.y8e{bottom:316.700053pt;}
.y73{bottom:332.161707pt;}
.yd5{bottom:332.162173pt;}
.y48{bottom:332.164107pt;}
.yaa{bottom:332.164573pt;}
.y1d{bottom:332.166627pt;}
.y8d{bottom:332.166853pt;}
.y72{bottom:347.628387pt;}
.yd4{bottom:347.628853pt;}
.y47{bottom:347.630907pt;}
.ya9{bottom:347.631373pt;}
.y1c{bottom:347.633427pt;}
.y8c{bottom:347.633653pt;}
.y71{bottom:363.095067pt;}
.yd3{bottom:363.095533pt;}
.y46{bottom:363.097587pt;}
.ya8{bottom:363.098053pt;}
.y1b{bottom:363.100107pt;}
.y8b{bottom:363.100333pt;}
.y70{bottom:378.561747pt;}
.yd2{bottom:378.562213pt;}
.y45{bottom:378.564267pt;}
.ya7{bottom:378.564733pt;}
.y1a{bottom:378.566787pt;}
.y8a{bottom:378.567013pt;}
.y6f{bottom:394.028427pt;}
.yd1{bottom:394.028893pt;}
.y44{bottom:394.030947pt;}
.ya6{bottom:394.031413pt;}
.y19{bottom:394.033467pt;}
.y6e{bottom:409.495227pt;}
.yd0{bottom:409.495693pt;}
.y43{bottom:409.497747pt;}
.ya5{bottom:409.498213pt;}
.y18{bottom:409.500267pt;}
.y6d{bottom:424.961787pt;}
.ycf{bottom:424.962253pt;}
.y42{bottom:424.964307pt;}
.ya4{bottom:424.964773pt;}
.y17{bottom:424.966827pt;}
.y6c{bottom:440.428467pt;}
.yce{bottom:440.428933pt;}
.y41{bottom:440.430987pt;}
.ya3{bottom:440.431453pt;}
.y16{bottom:440.433507pt;}
.y6b{bottom:455.895267pt;}
.ycd{bottom:455.895733pt;}
.y40{bottom:455.897787pt;}
.ya2{bottom:455.898253pt;}
.y15{bottom:455.900307pt;}
.y6a{bottom:471.361947pt;}
.ycc{bottom:471.362413pt;}
.y3f{bottom:471.364467pt;}
.ya1{bottom:471.364933pt;}
.y14{bottom:471.366987pt;}
.y69{bottom:486.828627pt;}
.ycb{bottom:486.829093pt;}
.y3e{bottom:486.831147pt;}
.ya0{bottom:486.831613pt;}
.y13{bottom:486.833667pt;}
.y68{bottom:502.295307pt;}
.yca{bottom:502.295773pt;}
.y3d{bottom:502.297827pt;}
.y9f{bottom:502.298293pt;}
.y12{bottom:502.300347pt;}
.y67{bottom:517.761987pt;}
.yc9{bottom:517.762453pt;}
.y3c{bottom:517.764507pt;}
.y9e{bottom:517.764973pt;}
.y11{bottom:517.767027pt;}
.yec{bottom:531.671600pt;}
.y66{bottom:533.228667pt;}
.yc8{bottom:533.229133pt;}
.y3b{bottom:533.231187pt;}
.y10{bottom:533.233707pt;}
.y89{bottom:536.618933pt;}
.y65{bottom:548.695347pt;}
.yc7{bottom:548.695813pt;}
.y3a{bottom:548.697867pt;}
.yf{bottom:548.700387pt;}
.y64{bottom:564.162027pt;}
.yc6{bottom:564.162493pt;}
.y39{bottom:564.164547pt;}
.ye{bottom:564.167067pt;}
.y63{bottom:579.628707pt;}
.yc5{bottom:579.629173pt;}
.y38{bottom:579.631227pt;}
.yd{bottom:579.633747pt;}
.yeb{bottom:594.253600pt;}
.y62{bottom:595.095387pt;}
.yc4{bottom:595.095853pt;}
.y37{bottom:595.097907pt;}
.yc{bottom:595.100427pt;}
.y61{bottom:610.562067pt;}
.yc3{bottom:610.562533pt;}
.y36{bottom:610.564587pt;}
.yb{bottom:610.567107pt;}
.yea{bottom:620.920240pt;}
.y60{bottom:626.028747pt;}
.yc2{bottom:626.029213pt;}
.y35{bottom:626.031267pt;}
.ya{bottom:626.033787pt;}
.y5f{bottom:641.495427pt;}
.yc1{bottom:641.495893pt;}
.y34{bottom:641.497947pt;}
.y9{bottom:641.500467pt;}
.ye9{bottom:647.586880pt;}
.y5e{bottom:656.962107pt;}
.yc0{bottom:656.962573pt;}
.y33{bottom:656.964627pt;}
.y8{bottom:656.967147pt;}
.y5d{bottom:672.428787pt;}
.ybf{bottom:672.429253pt;}
.y32{bottom:672.431307pt;}
.y7{bottom:672.433827pt;}
.ye8{bottom:674.253520pt;}
.y5c{bottom:687.895467pt;}
.ybe{bottom:687.895933pt;}
.y31{bottom:687.897987pt;}
.y6{bottom:687.900507pt;}
.ye7{bottom:700.920160pt;}
.y5b{bottom:703.362267pt;}
.ybd{bottom:703.362733pt;}
.y30{bottom:703.364787pt;}
.y5{bottom:703.367307pt;}
.y5a{bottom:718.828947pt;}
.ybc{bottom:718.829413pt;}
.y2f{bottom:718.831467pt;}
.y4{bottom:718.833987pt;}
.ye6{bottom:727.586800pt;}
.y59{bottom:734.295627pt;}
.ybb{bottom:734.296093pt;}
.y2e{bottom:734.298147pt;}
.y3{bottom:734.300667pt;}
.y88{bottom:800.827733pt;}
.yed{bottom:807.082533pt;}
.y87{bottom:814.161067pt;}
.y86{bottom:862.161067pt;}
.y85{bottom:899.494400pt;}
.y84{bottom:936.827733pt;}
.y2{bottom:995.654533pt;}
.h8{height:27.328000pt;}
.h2{height:35.136000pt;}
.h5{height:36.864000pt;}
.h4{height:40.752000pt;}
.h7{height:56.522667pt;}
.h3{height:88.821333pt;}
.h6{height:109.312000pt;}
.ha{height:836.022725pt;}
.h9{height:836.418424pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.267987pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:49.585333pt;}
.x4{left:64.252533pt;}
.xe{left:68.030520pt;}
.xa{left:69.390800pt;}
.x2{left:71.585333pt;}
.x5{left:82.456293pt;}
.x3{left:144.954933pt;}
.x1{left:261.451467pt;}
.x6{left:290.995173pt;}
.xb{left:292.382800pt;}
.x14{left:293.517467pt;}
.xf{left:294.886560pt;}
.x7{left:304.317453pt;}
.x10{left:308.249640pt;}
.xd{left:437.125200pt;}
.x13{left:499.616133pt;}
.x8{left:517.745253pt;}
.x11{left:521.629560pt;}
.x9{left:531.079173pt;}
.x12{left:534.949800pt;}
}

