
    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_107759760c2d0c8a65fa733c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.182129;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_53ff1e0fda96c7cc5793c3b8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_895fc2d70651f24ce299b46e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.377930;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_b5c00ff634691ca79272982a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.182129;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.934400px;}
.ls14{letter-spacing:-2.550000px;}
.ls16{letter-spacing:-1.242000px;}
.lsb{letter-spacing:-1.173000px;}
.ls11{letter-spacing:-0.750000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:1.260000px;}
.ls19{letter-spacing:1.701000px;}
.ls9{letter-spacing:2.400000px;}
.lse{letter-spacing:2.725500px;}
.ls1{letter-spacing:4.200000px;}
.ls7{letter-spacing:5.880000px;}
.ls3{letter-spacing:6.000000px;}
.ls18{letter-spacing:6.300000px;}
.ls4{letter-spacing:7.260000px;}
.ls5{letter-spacing:7.920000px;}
.ls6{letter-spacing:8.040000px;}
.ls8{letter-spacing:467.107200px;}
.lsd{letter-spacing:467.294400px;}
.ls17{letter-spacing:467.962200px;}
.ls10{letter-spacing:468.262200px;}
.ls13{letter-spacing:471.329400px;}
.lsf{letter-spacing:1012.464000px;}
.ls15{letter-spacing:1012.959000px;}
.ls0{letter-spacing:1015.584000px;}
.lsc{letter-spacing:1019.634000px;}
.ls12{letter-spacing:1021.614000px;}
.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:-24.900000px;}
.ws0{word-spacing:-24.120000px;}
.ws16{word-spacing:-22.860000px;}
.ws2{word-spacing:-22.740000px;}
.ws9{word-spacing:-21.075000px;}
.wse{word-spacing:-20.325000px;}
.ws13{word-spacing:-19.404000px;}
.wsf{word-spacing:-18.525000px;}
.wsd{word-spacing:-17.043000px;}
.ws3{word-spacing:-16.860000px;}
.ws10{word-spacing:-16.002000px;}
.ws11{word-spacing:-15.801000px;}
.ws14{word-spacing:-15.561000px;}
.ws12{word-spacing:-14.820000px;}
.wsa{word-spacing:-13.062000px;}
.ws4{word-spacing:-9.829380px;}
.ws7{word-spacing:-7.920000px;}
.ws15{word-spacing:-6.300000px;}
.ws6{word-spacing:-6.000000px;}
.ws8{word-spacing:-4.200000px;}
.wsb{word-spacing:-2.400000px;}
.ws5{word-spacing:0.000000px;}
.wsc{word-spacing:1.173000px;}
._9{margin-left:-8.664000px;}
._a{margin-left:-7.440000px;}
._7{margin-left:-5.648100px;}
._4{margin-left:-4.107600px;}
._1{margin-left:-3.078000px;}
._2{margin-left:-1.128000px;}
._3{width:1.455300px;}
._5{width:2.843400px;}
._d{width:4.075800px;}
._8{width:5.088000px;}
._6{width:6.507900px;}
._11{width:7.684200px;}
._b{width:8.708400px;}
._13{width:9.991200px;}
._c{width:11.022000px;}
._14{width:12.199500px;}
._19{width:13.571700px;}
._18{width:15.173100px;}
._12{width:17.056800px;}
._1c{width:20.233200px;}
._16{width:21.775200px;}
._10{width:23.301300px;}
._e{width:71.526000px;}
._1a{width:113.919000px;}
._1b{width:198.927000px;}
._f{width:260.610000px;}
._0{width:578.400000px;}
._15{width:739.368000px;}
._17{width:1279.530000px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:34.980000px;}
.fs6{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y47{bottom:106.242750px;}
.yc2{bottom:106.268850px;}
.yd4{bottom:106.281150px;}
.ye6{bottom:106.299150px;}
.y6f{bottom:106.303200px;}
.y11f{bottom:106.309950px;}
.y1f{bottom:106.310700px;}
.y94{bottom:106.541700px;}
.y9c{bottom:112.587450px;}
.y6e{bottom:126.242700px;}
.yd3{bottom:126.532650px;}
.ye5{bottom:126.549150px;}
.y46{bottom:126.649500px;}
.y11e{bottom:127.084200px;}
.y1e{bottom:127.130700px;}
.yc1{bottom:127.227600px;}
.y93{bottom:127.655700px;}
.y9b{bottom:132.837450px;}
.y6d{bottom:146.182200px;}
.yd2{bottom:146.784150px;}
.ye4{bottom:146.799150px;}
.y45{bottom:147.056250px;}
.y11d{bottom:147.858450px;}
.y1d{bottom:147.950700px;}
.yc0{bottom:148.186350px;}
.y92{bottom:148.769700px;}
.y9a{bottom:153.087450px;}
.y13d{bottom:160.908450px;}
.y6c{bottom:166.121700px;}
.yd1{bottom:167.035650px;}
.ye3{bottom:167.049150px;}
.y44{bottom:167.463000px;}
.y1c{bottom:168.770700px;}
.ybf{bottom:169.145100px;}
.y91{bottom:169.883700px;}
.y99{bottom:173.337450px;}
.y11c{bottom:177.137700px;}
.y13c{bottom:181.158450px;}
.y6b{bottom:186.061200px;}
.yd0{bottom:187.287150px;}
.ye2{bottom:187.299150px;}
.y43{bottom:187.869750px;}
.y1b{bottom:189.590700px;}
.ybe{bottom:190.103850px;}
.y90{bottom:190.997700px;}
.y11b{bottom:197.911950px;}
.y13b{bottom:201.408450px;}
.y6a{bottom:206.000700px;}
.ycf{bottom:207.538650px;}
.ye1{bottom:207.549150px;}
.y42{bottom:208.276500px;}
.y1a{bottom:210.410700px;}
.ybd{bottom:211.062600px;}
.y8f{bottom:212.111700px;}
.y11a{bottom:218.686200px;}
.y13a{bottom:221.658450px;}
.y69{bottom:225.940200px;}
.yce{bottom:227.790150px;}
.ye0{bottom:227.799150px;}
.y41{bottom:228.683250px;}
.y19{bottom:231.230700px;}
.ybc{bottom:232.021350px;}
.y8e{bottom:233.225700px;}
.y68{bottom:245.879700px;}
.y119{bottom:247.965450px;}
.ycd{bottom:248.041650px;}
.ydf{bottom:248.049150px;}
.y40{bottom:249.090000px;}
.y18{bottom:252.050700px;}
.ybb{bottom:252.980100px;}
.y8d{bottom:254.339700px;}
.y139{bottom:254.658450px;}
.y67{bottom:265.819200px;}
.ycc{bottom:268.293150px;}
.yde{bottom:268.299150px;}
.y118{bottom:268.739700px;}
.y3f{bottom:269.496750px;}
.yba{bottom:273.938850px;}
.y8c{bottom:275.453700px;}
.y17{bottom:285.635700px;}
.y66{bottom:285.758700px;}
.ycb{bottom:288.544650px;}
.ydd{bottom:288.549150px;}
.y3e{bottom:289.903500px;}
.yb9{bottom:294.897600px;}
.y138{bottom:296.163450px;}
.y8b{bottom:296.567700px;}
.y117{bottom:298.018950px;}
.y65{bottom:305.698200px;}
.yca{bottom:308.796150px;}
.ydc{bottom:308.799150px;}
.y3d{bottom:310.310250px;}
.y137{bottom:315.663450px;}
.yb8{bottom:315.856350px;}
.y8a{bottom:317.681700px;}
.y116{bottom:318.793200px;}
.y64{bottom:325.637700px;}
.yc9{bottom:329.047650px;}
.ydb{bottom:329.049150px;}
.y3c{bottom:330.717000px;}
.y136{bottom:335.163450px;}
.y16{bottom:336.215700px;}
.yb7{bottom:336.815100px;}
.y89{bottom:338.795700px;}
.y115{bottom:339.567450px;}
.y63{bottom:345.577200px;}
.yda{bottom:349.294650px;}
.yc8{bottom:349.299150px;}
.y3b{bottom:351.123750px;}
.y135{bottom:354.663450px;}
.yb6{bottom:357.773850px;}
.y15{bottom:358.535700px;}
.y88{bottom:359.909700px;}
.y62{bottom:365.516700px;}
.y114{bottom:368.846700px;}
.yd9{bottom:369.549150px;}
.y3a{bottom:371.530500px;}
.y134{bottom:374.163450px;}
.yb5{bottom:378.732600px;}
.y14{bottom:380.865150px;}
.y87{bottom:381.023700px;}
.y61{bottom:385.632600px;}
.y113{bottom:389.620950px;}
.y39{bottom:391.937250px;}
.yc7{bottom:392.456700px;}
.y133{bottom:393.663450px;}
.yb4{bottom:399.691350px;}
.y13{bottom:401.685150px;}
.y86{bottom:402.137700px;}
.y60{bottom:406.315350px;}
.y112{bottom:410.395200px;}
.y38{bottom:412.344000px;}
.yc6{bottom:412.706700px;}
.y132{bottom:413.163450px;}
.yb3{bottom:420.650100px;}
.y12{bottom:422.505150px;}
.y85{bottom:423.251700px;}
.y5f{bottom:426.998100px;}
.y131{bottom:432.663450px;}
.y37{bottom:432.750750px;}
.yc5{bottom:432.956700px;}
.yfd{bottom:436.916850px;}
.y111{bottom:439.674450px;}
.yb2{bottom:441.608850px;}
.y11{bottom:443.325150px;}
.y84{bottom:444.365700px;}
.y5e{bottom:447.680850px;}
.yd8{bottom:449.715300px;}
.y130{bottom:452.163450px;}
.y36{bottom:453.157500px;}
.yc4{bottom:453.206700px;}
.yfc{bottom:457.168350px;}
.y110{bottom:460.448700px;}
.yb1{bottom:462.567600px;}
.y10{bottom:464.145150px;}
.y83{bottom:465.479700px;}
.y5d{bottom:468.363600px;}
.yd7{bottom:469.965300px;}
.y12f{bottom:471.663450px;}
.yc3{bottom:473.456700px;}
.y35{bottom:473.564250px;}
.y98{bottom:477.084450px;}
.yfb{bottom:477.419850px;}
.yb0{bottom:483.526350px;}
.yf{bottom:484.965150px;}
.y82{bottom:486.593700px;}
.y5c{bottom:489.046350px;}
.y10f{bottom:489.727950px;}
.yd6{bottom:490.215300px;}
.y12e{bottom:491.163450px;}
.y34{bottom:493.971000px;}
.y97{bottom:497.335950px;}
.yfa{bottom:497.671350px;}
.yaf{bottom:504.485100px;}
.ye{bottom:505.785150px;}
.y81{bottom:507.707700px;}
.y5b{bottom:509.729100px;}
.yd5{bottom:510.464550px;}
.y12d{bottom:510.663450px;}
.y33{bottom:514.377750px;}
.y96{bottom:517.587450px;}
.yf9{bottom:517.922850px;}
.y10e{bottom:519.007200px;}
.yae{bottom:525.443850px;}
.yd{bottom:526.605150px;}
.y80{bottom:528.821700px;}
.y12c{bottom:530.163450px;}
.y5a{bottom:530.411850px;}
.y32{bottom:534.784500px;}
.yf8{bottom:538.174350px;}
.yad{bottom:546.402600px;}
.yc{bottom:547.425150px;}
.y12b{bottom:549.663450px;}
.y7f{bottom:549.935700px;}
.y59{bottom:551.094600px;}
.y31{bottom:555.191250px;}
.y95{bottom:558.087450px;}
.yf7{bottom:558.425850px;}
.yac{bottom:567.361350px;}
.yb{bottom:568.245150px;}
.y12a{bottom:569.163450px;}
.y10d{bottom:570.397350px;}
.y7e{bottom:571.049700px;}
.y58{bottom:571.777350px;}
.y30{bottom:575.598000px;}
.yf6{bottom:578.677350px;}
.yab{bottom:588.320100px;}
.y129{bottom:588.663450px;}
.y10c{bottom:591.166350px;}
.y7d{bottom:592.163700px;}
.y57{bottom:592.460100px;}
.y2f{bottom:596.004750px;}
.yf5{bottom:598.928850px;}
.ya{bottom:601.830150px;}
.y128{bottom:608.163450px;}
.yaa{bottom:609.278850px;}
.y10b{bottom:611.935350px;}
.y56{bottom:613.142850px;}
.y7c{bottom:613.277700px;}
.y2e{bottom:616.411500px;}
.yf4{bottom:619.180350px;}
.y127{bottom:627.663450px;}
.ya9{bottom:630.237600px;}
.y10a{bottom:632.704350px;}
.y55{bottom:633.825600px;}
.y7b{bottom:634.391700px;}
.y2d{bottom:636.818250px;}
.yf3{bottom:639.431850px;}
.y126{bottom:647.163450px;}
.ya8{bottom:651.196350px;}
.y109{bottom:653.473350px;}
.y54{bottom:654.508350px;}
.y7a{bottom:655.505700px;}
.y2c{bottom:657.225000px;}
.yf2{bottom:659.683350px;}
.y9{bottom:660.919500px;}
.ya7{bottom:672.155100px;}
.y108{bottom:674.242350px;}
.y53{bottom:675.191100px;}
.y79{bottom:676.619700px;}
.y2b{bottom:677.631750px;}
.y125{bottom:679.413450px;}
.yf1{bottom:679.934850px;}
.ya6{bottom:693.113850px;}
.y107{bottom:695.011350px;}
.y52{bottom:695.873850px;}
.y78{bottom:697.733700px;}
.y2a{bottom:698.038500px;}
.yf0{bottom:700.186350px;}
.y8{bottom:710.490750px;}
.ya5{bottom:714.072600px;}
.y106{bottom:715.780350px;}
.y51{bottom:716.556600px;}
.y29{bottom:718.445250px;}
.y77{bottom:718.847700px;}
.yef{bottom:720.437850px;}
.ya4{bottom:735.031350px;}
.y105{bottom:736.549350px;}
.y124{bottom:737.181150px;}
.y50{bottom:737.239350px;}
.y28{bottom:738.852000px;}
.yee{bottom:740.689350px;}
.y7{bottom:743.322750px;}
.ya3{bottom:755.990100px;}
.y104{bottom:757.318350px;}
.y4f{bottom:757.922100px;}
.y27{bottom:759.258750px;}
.yed{bottom:760.940850px;}
.y76{bottom:761.145600px;}
.ya2{bottom:776.948850px;}
.y103{bottom:778.087350px;}
.y4e{bottom:778.604850px;}
.y26{bottom:779.665500px;}
.yec{bottom:781.192350px;}
.y75{bottom:781.510350px;}
.ya1{bottom:797.907600px;}
.y102{bottom:798.856350px;}
.y4d{bottom:799.287600px;}
.y25{bottom:800.072250px;}
.yeb{bottom:801.443850px;}
.y74{bottom:801.875100px;}
.y123{bottom:805.670850px;}
.y6{bottom:805.912200px;}
.ya0{bottom:818.866350px;}
.y101{bottom:819.625350px;}
.y4c{bottom:819.970350px;}
.yea{bottom:821.695350px;}
.y73{bottom:822.239850px;}
.y122{bottom:825.925350px;}
.y5{bottom:828.232200px;}
.y9f{bottom:839.825100px;}
.y100{bottom:840.394350px;}
.y4b{bottom:840.653100px;}
.ye9{bottom:841.946850px;}
.y24{bottom:842.237550px;}
.y72{bottom:842.604600px;}
.y121{bottom:854.684850px;}
.y4{bottom:859.057200px;}
.y9e{bottom:860.783850px;}
.yff{bottom:861.163350px;}
.y4a{bottom:861.335850px;}
.ye8{bottom:862.198350px;}
.y71{bottom:862.969350px;}
.y23{bottom:863.387550px;}
.y3{bottom:881.377200px;}
.y9d{bottom:881.742600px;}
.yfe{bottom:881.932350px;}
.y49{bottom:882.018600px;}
.ye7{bottom:882.449850px;}
.y70{bottom:883.334100px;}
.y120{bottom:883.444350px;}
.y22{bottom:884.547750px;}
.y48{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:904.197750px;}
.y20{bottom:948.189000px;}
.hd{height:38.862305px;}
.h8{height:44.414062px;}
.h4{height:55.517578px;}
.hc{height:55.520578px;}
.he{height:55.535578px;}
.h3{height:58.293457px;}
.h9{height:63.845215px;}
.h7{height:67.236328px;}
.h2{height:69.396973px;}
.hb{height:70.598145px;}
.ha{height:77.321777px;}
.h6{height:77.724609px;}
.h5{height:99.931641px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:81.089250px;}
.x7{left:82.473900px;}
.x5{left:83.968650px;}
.x1{left:85.039350px;}
.x8{left:104.430750px;}
.x4{left:105.478650px;}
.x3{left:232.201800px;}
.x2{left:233.415450px;}
.x9{left:503.813700px;}
.xb{left:508.671600px;}
.xa{left:509.935200px;}
.xd{left:522.073500px;}
.xc{left:523.167600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.386133pt;}
.ls14{letter-spacing:-2.266667pt;}
.ls16{letter-spacing:-1.104000pt;}
.lsb{letter-spacing:-1.042667pt;}
.ls11{letter-spacing:-0.666667pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:1.120000pt;}
.ls19{letter-spacing:1.512000pt;}
.ls9{letter-spacing:2.133333pt;}
.lse{letter-spacing:2.422667pt;}
.ls1{letter-spacing:3.733333pt;}
.ls7{letter-spacing:5.226667pt;}
.ls3{letter-spacing:5.333333pt;}
.ls18{letter-spacing:5.600000pt;}
.ls4{letter-spacing:6.453333pt;}
.ls5{letter-spacing:7.040000pt;}
.ls6{letter-spacing:7.146667pt;}
.ls8{letter-spacing:415.206400pt;}
.lsd{letter-spacing:415.372800pt;}
.ls17{letter-spacing:415.966400pt;}
.ls10{letter-spacing:416.233067pt;}
.ls13{letter-spacing:418.959467pt;}
.lsf{letter-spacing:899.968000pt;}
.ls15{letter-spacing:900.408000pt;}
.ls0{letter-spacing:902.741333pt;}
.lsc{letter-spacing:906.341333pt;}
.ls12{letter-spacing:908.101333pt;}
.ws1{word-spacing:-22.133333pt;}
.ws0{word-spacing:-21.440000pt;}
.ws16{word-spacing:-20.320000pt;}
.ws2{word-spacing:-20.213333pt;}
.ws9{word-spacing:-18.733333pt;}
.wse{word-spacing:-18.066667pt;}
.ws13{word-spacing:-17.248000pt;}
.wsf{word-spacing:-16.466667pt;}
.wsd{word-spacing:-15.149333pt;}
.ws3{word-spacing:-14.986667pt;}
.ws10{word-spacing:-14.224000pt;}
.ws11{word-spacing:-14.045333pt;}
.ws14{word-spacing:-13.832000pt;}
.ws12{word-spacing:-13.173333pt;}
.wsa{word-spacing:-11.610667pt;}
.ws4{word-spacing:-8.737227pt;}
.ws7{word-spacing:-7.040000pt;}
.ws15{word-spacing:-5.600000pt;}
.ws6{word-spacing:-5.333333pt;}
.ws8{word-spacing:-3.733333pt;}
.wsb{word-spacing:-2.133333pt;}
.ws5{word-spacing:0.000000pt;}
.wsc{word-spacing:1.042667pt;}
._9{margin-left:-7.701333pt;}
._a{margin-left:-6.613333pt;}
._7{margin-left:-5.020533pt;}
._4{margin-left:-3.651200pt;}
._1{margin-left:-2.736000pt;}
._2{margin-left:-1.002667pt;}
._3{width:1.293600pt;}
._5{width:2.527467pt;}
._d{width:3.622933pt;}
._8{width:4.522667pt;}
._6{width:5.784800pt;}
._11{width:6.830400pt;}
._b{width:7.740800pt;}
._13{width:8.881067pt;}
._c{width:9.797333pt;}
._14{width:10.844000pt;}
._19{width:12.063733pt;}
._18{width:13.487200pt;}
._12{width:15.161600pt;}
._1c{width:17.985067pt;}
._16{width:19.355733pt;}
._10{width:20.712267pt;}
._e{width:63.578667pt;}
._1a{width:101.261333pt;}
._1b{width:176.824000pt;}
._f{width:231.653333pt;}
._0{width:514.133333pt;}
._15{width:657.216000pt;}
._17{width:1137.360000pt;}
.fs7{font-size:31.093333pt;}
.fs6{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y47{bottom:94.438000pt;}
.yc2{bottom:94.461200pt;}
.yd4{bottom:94.472133pt;}
.ye6{bottom:94.488133pt;}
.y6f{bottom:94.491733pt;}
.y11f{bottom:94.497733pt;}
.y1f{bottom:94.498400pt;}
.y94{bottom:94.703733pt;}
.y9c{bottom:100.077733pt;}
.y6e{bottom:112.215733pt;}
.yd3{bottom:112.473467pt;}
.ye5{bottom:112.488133pt;}
.y46{bottom:112.577333pt;}
.y11e{bottom:112.963733pt;}
.y1e{bottom:113.005067pt;}
.yc1{bottom:113.091200pt;}
.y93{bottom:113.471733pt;}
.y9b{bottom:118.077733pt;}
.y6d{bottom:129.939733pt;}
.yd2{bottom:130.474800pt;}
.ye4{bottom:130.488133pt;}
.y45{bottom:130.716667pt;}
.y11d{bottom:131.429733pt;}
.y1d{bottom:131.511733pt;}
.yc0{bottom:131.721200pt;}
.y92{bottom:132.239733pt;}
.y9a{bottom:136.077733pt;}
.y13d{bottom:143.029733pt;}
.y6c{bottom:147.663733pt;}
.yd1{bottom:148.476133pt;}
.ye3{bottom:148.488133pt;}
.y44{bottom:148.856000pt;}
.y1c{bottom:150.018400pt;}
.ybf{bottom:150.351200pt;}
.y91{bottom:151.007733pt;}
.y99{bottom:154.077733pt;}
.y11c{bottom:157.455733pt;}
.y13c{bottom:161.029733pt;}
.y6b{bottom:165.387733pt;}
.yd0{bottom:166.477467pt;}
.ye2{bottom:166.488133pt;}
.y43{bottom:166.995333pt;}
.y1b{bottom:168.525067pt;}
.ybe{bottom:168.981200pt;}
.y90{bottom:169.775733pt;}
.y11b{bottom:175.921733pt;}
.y13b{bottom:179.029733pt;}
.y6a{bottom:183.111733pt;}
.ycf{bottom:184.478800pt;}
.ye1{bottom:184.488133pt;}
.y42{bottom:185.134667pt;}
.y1a{bottom:187.031733pt;}
.ybd{bottom:187.611200pt;}
.y8f{bottom:188.543733pt;}
.y11a{bottom:194.387733pt;}
.y13a{bottom:197.029733pt;}
.y69{bottom:200.835733pt;}
.yce{bottom:202.480133pt;}
.ye0{bottom:202.488133pt;}
.y41{bottom:203.274000pt;}
.y19{bottom:205.538400pt;}
.ybc{bottom:206.241200pt;}
.y8e{bottom:207.311733pt;}
.y68{bottom:218.559733pt;}
.y119{bottom:220.413733pt;}
.ycd{bottom:220.481467pt;}
.ydf{bottom:220.488133pt;}
.y40{bottom:221.413333pt;}
.y18{bottom:224.045067pt;}
.ybb{bottom:224.871200pt;}
.y8d{bottom:226.079733pt;}
.y139{bottom:226.363067pt;}
.y67{bottom:236.283733pt;}
.ycc{bottom:238.482800pt;}
.yde{bottom:238.488133pt;}
.y118{bottom:238.879733pt;}
.y3f{bottom:239.552667pt;}
.yba{bottom:243.501200pt;}
.y8c{bottom:244.847733pt;}
.y17{bottom:253.898400pt;}
.y66{bottom:254.007733pt;}
.ycb{bottom:256.484133pt;}
.ydd{bottom:256.488133pt;}
.y3e{bottom:257.692000pt;}
.yb9{bottom:262.131200pt;}
.y138{bottom:263.256400pt;}
.y8b{bottom:263.615733pt;}
.y117{bottom:264.905733pt;}
.y65{bottom:271.731733pt;}
.yca{bottom:274.485467pt;}
.ydc{bottom:274.488133pt;}
.y3d{bottom:275.831333pt;}
.y137{bottom:280.589733pt;}
.yb8{bottom:280.761200pt;}
.y8a{bottom:282.383733pt;}
.y116{bottom:283.371733pt;}
.y64{bottom:289.455733pt;}
.yc9{bottom:292.486800pt;}
.ydb{bottom:292.488133pt;}
.y3c{bottom:293.970667pt;}
.y136{bottom:297.923067pt;}
.y16{bottom:298.858400pt;}
.yb7{bottom:299.391200pt;}
.y89{bottom:301.151733pt;}
.y115{bottom:301.837733pt;}
.y63{bottom:307.179733pt;}
.yda{bottom:310.484133pt;}
.yc8{bottom:310.488133pt;}
.y3b{bottom:312.110000pt;}
.y135{bottom:315.256400pt;}
.yb6{bottom:318.021200pt;}
.y15{bottom:318.698400pt;}
.y88{bottom:319.919733pt;}
.y62{bottom:324.903733pt;}
.y114{bottom:327.863733pt;}
.yd9{bottom:328.488133pt;}
.y3a{bottom:330.249333pt;}
.y134{bottom:332.589733pt;}
.yb5{bottom:336.651200pt;}
.y14{bottom:338.546800pt;}
.y87{bottom:338.687733pt;}
.y61{bottom:342.784533pt;}
.y113{bottom:346.329733pt;}
.y39{bottom:348.388667pt;}
.yc7{bottom:348.850400pt;}
.y133{bottom:349.923067pt;}
.yb4{bottom:355.281200pt;}
.y13{bottom:357.053467pt;}
.y86{bottom:357.455733pt;}
.y60{bottom:361.169200pt;}
.y112{bottom:364.795733pt;}
.y38{bottom:366.528000pt;}
.yc6{bottom:366.850400pt;}
.y132{bottom:367.256400pt;}
.yb3{bottom:373.911200pt;}
.y12{bottom:375.560133pt;}
.y85{bottom:376.223733pt;}
.y5f{bottom:379.553867pt;}
.y131{bottom:384.589733pt;}
.y37{bottom:384.667333pt;}
.yc5{bottom:384.850400pt;}
.yfd{bottom:388.370533pt;}
.y111{bottom:390.821733pt;}
.yb2{bottom:392.541200pt;}
.y11{bottom:394.066800pt;}
.y84{bottom:394.991733pt;}
.y5e{bottom:397.938533pt;}
.yd8{bottom:399.746933pt;}
.y130{bottom:401.923067pt;}
.y36{bottom:402.806667pt;}
.yc4{bottom:402.850400pt;}
.yfc{bottom:406.371867pt;}
.y110{bottom:409.287733pt;}
.yb1{bottom:411.171200pt;}
.y10{bottom:412.573467pt;}
.y83{bottom:413.759733pt;}
.y5d{bottom:416.323200pt;}
.yd7{bottom:417.746933pt;}
.y12f{bottom:419.256400pt;}
.yc3{bottom:420.850400pt;}
.y35{bottom:420.946000pt;}
.y98{bottom:424.075067pt;}
.yfb{bottom:424.373200pt;}
.yb0{bottom:429.801200pt;}
.yf{bottom:431.080133pt;}
.y82{bottom:432.527733pt;}
.y5c{bottom:434.707867pt;}
.y10f{bottom:435.313733pt;}
.yd6{bottom:435.746933pt;}
.y12e{bottom:436.589733pt;}
.y34{bottom:439.085333pt;}
.y97{bottom:442.076400pt;}
.yfa{bottom:442.374533pt;}
.yaf{bottom:448.431200pt;}
.ye{bottom:449.586800pt;}
.y81{bottom:451.295733pt;}
.y5b{bottom:453.092533pt;}
.yd5{bottom:453.746267pt;}
.y12d{bottom:453.923067pt;}
.y33{bottom:457.224667pt;}
.y96{bottom:460.077733pt;}
.yf9{bottom:460.375867pt;}
.y10e{bottom:461.339733pt;}
.yae{bottom:467.061200pt;}
.yd{bottom:468.093467pt;}
.y80{bottom:470.063733pt;}
.y12c{bottom:471.256400pt;}
.y5a{bottom:471.477200pt;}
.y32{bottom:475.364000pt;}
.yf8{bottom:478.377200pt;}
.yad{bottom:485.691200pt;}
.yc{bottom:486.600133pt;}
.y12b{bottom:488.589733pt;}
.y7f{bottom:488.831733pt;}
.y59{bottom:489.861867pt;}
.y31{bottom:493.503333pt;}
.y95{bottom:496.077733pt;}
.yf7{bottom:496.378533pt;}
.yac{bottom:504.321200pt;}
.yb{bottom:505.106800pt;}
.y12a{bottom:505.923067pt;}
.y10d{bottom:507.019867pt;}
.y7e{bottom:507.599733pt;}
.y58{bottom:508.246533pt;}
.y30{bottom:511.642667pt;}
.yf6{bottom:514.379867pt;}
.yab{bottom:522.951200pt;}
.y129{bottom:523.256400pt;}
.y10c{bottom:525.481200pt;}
.y7d{bottom:526.367733pt;}
.y57{bottom:526.631200pt;}
.y2f{bottom:529.782000pt;}
.yf5{bottom:532.381200pt;}
.ya{bottom:534.960133pt;}
.y128{bottom:540.589733pt;}
.yaa{bottom:541.581200pt;}
.y10b{bottom:543.942533pt;}
.y56{bottom:545.015867pt;}
.y7c{bottom:545.135733pt;}
.y2e{bottom:547.921333pt;}
.yf4{bottom:550.382533pt;}
.y127{bottom:557.923067pt;}
.ya9{bottom:560.211200pt;}
.y10a{bottom:562.403867pt;}
.y55{bottom:563.400533pt;}
.y7b{bottom:563.903733pt;}
.y2d{bottom:566.060667pt;}
.yf3{bottom:568.383867pt;}
.y126{bottom:575.256400pt;}
.ya8{bottom:578.841200pt;}
.y109{bottom:580.865200pt;}
.y54{bottom:581.785200pt;}
.y7a{bottom:582.671733pt;}
.y2c{bottom:584.200000pt;}
.yf2{bottom:586.385200pt;}
.y9{bottom:587.484000pt;}
.ya7{bottom:597.471200pt;}
.y108{bottom:599.326533pt;}
.y53{bottom:600.169867pt;}
.y79{bottom:601.439733pt;}
.y2b{bottom:602.339333pt;}
.y125{bottom:603.923067pt;}
.yf1{bottom:604.386533pt;}
.ya6{bottom:616.101200pt;}
.y107{bottom:617.787867pt;}
.y52{bottom:618.554533pt;}
.y78{bottom:620.207733pt;}
.y2a{bottom:620.478667pt;}
.yf0{bottom:622.387867pt;}
.y8{bottom:631.547333pt;}
.ya5{bottom:634.731200pt;}
.y106{bottom:636.249200pt;}
.y51{bottom:636.939200pt;}
.y29{bottom:638.618000pt;}
.y77{bottom:638.975733pt;}
.yef{bottom:640.389200pt;}
.ya4{bottom:653.361200pt;}
.y105{bottom:654.710533pt;}
.y124{bottom:655.272133pt;}
.y50{bottom:655.323867pt;}
.y28{bottom:656.757333pt;}
.yee{bottom:658.390533pt;}
.y7{bottom:660.731333pt;}
.ya3{bottom:671.991200pt;}
.y104{bottom:673.171867pt;}
.y4f{bottom:673.708533pt;}
.y27{bottom:674.896667pt;}
.yed{bottom:676.391867pt;}
.y76{bottom:676.573867pt;}
.ya2{bottom:690.621200pt;}
.y103{bottom:691.633200pt;}
.y4e{bottom:692.093200pt;}
.y26{bottom:693.036000pt;}
.yec{bottom:694.393200pt;}
.y75{bottom:694.675867pt;}
.ya1{bottom:709.251200pt;}
.y102{bottom:710.094533pt;}
.y4d{bottom:710.477867pt;}
.y25{bottom:711.175333pt;}
.yeb{bottom:712.394533pt;}
.y74{bottom:712.777867pt;}
.y123{bottom:716.151867pt;}
.y6{bottom:716.366400pt;}
.ya0{bottom:727.881200pt;}
.y101{bottom:728.555867pt;}
.y4c{bottom:728.862533pt;}
.yea{bottom:730.395867pt;}
.y73{bottom:730.879867pt;}
.y122{bottom:734.155867pt;}
.y5{bottom:736.206400pt;}
.y9f{bottom:746.511200pt;}
.y100{bottom:747.017200pt;}
.y4b{bottom:747.247200pt;}
.ye9{bottom:748.397200pt;}
.y24{bottom:748.655600pt;}
.y72{bottom:748.981867pt;}
.y121{bottom:759.719867pt;}
.y4{bottom:763.606400pt;}
.y9e{bottom:765.141200pt;}
.yff{bottom:765.478533pt;}
.y4a{bottom:765.631867pt;}
.ye8{bottom:766.398533pt;}
.y71{bottom:767.083867pt;}
.y23{bottom:767.455600pt;}
.y3{bottom:783.446400pt;}
.y9d{bottom:783.771200pt;}
.yfe{bottom:783.939867pt;}
.y49{bottom:784.016533pt;}
.ye7{bottom:784.399867pt;}
.y70{bottom:785.185867pt;}
.y120{bottom:785.283867pt;}
.y22{bottom:786.264667pt;}
.y48{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:803.731333pt;}
.y20{bottom:842.834667pt;}
.hd{height:34.544271pt;}
.h8{height:39.479167pt;}
.h4{height:49.348958pt;}
.hc{height:49.351625pt;}
.he{height:49.364958pt;}
.h3{height:51.816406pt;}
.h9{height:56.751302pt;}
.h7{height:59.765625pt;}
.h2{height:61.686198pt;}
.hb{height:62.753906pt;}
.ha{height:68.730469pt;}
.h6{height:69.088542pt;}
.h5{height:88.828125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:72.079333pt;}
.x7{left:73.310133pt;}
.x5{left:74.638800pt;}
.x1{left:75.590533pt;}
.x8{left:92.827333pt;}
.x4{left:93.758800pt;}
.x3{left:206.401600pt;}
.x2{left:207.480400pt;}
.x9{left:447.834400pt;}
.xb{left:452.152533pt;}
.xa{left:453.275733pt;}
.xd{left:464.065333pt;}
.xc{left:465.037867pt;}
}

