
    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_0dae0e50ca12069130907c3e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.137000;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_8c9069f0f50571ae79a19426.woff')format("woff");}.ff2{font-family:ff2;line-height:1.121000;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_1eb4eac239a0c8f392e27793.woff')format("woff");}.ff3{font-family:ff3;line-height:1.245000;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_daf55ccf09e0c0cebab158df.woff')format("woff");}.ff4{font-family:ff4;line-height:1.142000;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);}
.v3{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.820000px;}
.v1{vertical-align:24.024600px;}
.ls9{letter-spacing:-2.310000px;}
.ls5{letter-spacing:-1.584000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.485400px;}
.ls6{letter-spacing:2.053800px;}
.ls0{letter-spacing:2.551800px;}
.ls7{letter-spacing:3.564000px;}
.ls1{letter-spacing:4.374000px;}
.ls3{letter-spacing:6.112800px;}
.ls8{letter-spacing:7.200000px;}
.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:-18.000000px;}
.ws5{word-spacing:-17.490000px;}
.ws4{word-spacing:-16.416000px;}
.ws2{word-spacing:-13.500000px;}
.ws0{word-spacing:-10.440000px;}
.ws3{word-spacing:0.000000px;}
._12{margin-left:-10.188000px;}
._10{margin-left:-8.676000px;}
._d{margin-left:-7.128600px;}
._9{margin-left:-5.760000px;}
._8{margin-left:-4.608000px;}
._b{margin-left:-3.342000px;}
._3{margin-left:-2.100000px;}
._0{margin-left:-1.080000px;}
._7{width:1.368000px;}
._2{width:2.442000px;}
._a{width:3.552000px;}
._1{width:4.554000px;}
._c{width:5.742000px;}
._4{width:7.182000px;}
._e{width:8.196000px;}
._6{width:9.996000px;}
._5{width:11.604000px;}
._f{width:13.248000px;}
._13{width:14.268000px;}
._11{width:16.704000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.320000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.382650px;}
.yb5{bottom:93.282450px;}
.yfd{bottom:106.286100px;}
.y33{bottom:106.288950px;}
.y63{bottom:106.291200px;}
.ydd{bottom:106.295100px;}
.y8e{bottom:114.270450px;}
.yb4{bottom:114.288450px;}
.y144{bottom:114.927300px;}
.y32{bottom:122.785950px;}
.y62{bottom:122.791650px;}
.ydc{bottom:122.792100px;}
.yfc{bottom:123.296100px;}
.y8d{bottom:135.276450px;}
.yb3{bottom:135.294450px;}
.y143{bottom:135.933300px;}
.y31{bottom:139.795950px;}
.y61{bottom:139.801650px;}
.ydb{bottom:139.802100px;}
.yda{bottom:156.299100px;}
.yb2{bottom:156.300450px;}
.y60{bottom:156.811650px;}
.y30{bottom:156.816300px;}
.y142{bottom:156.939300px;}
.yd9{bottom:172.796100px;}
.y5f{bottom:173.308650px;}
.y2f{bottom:173.826300px;}
.y8c{bottom:177.270450px;}
.y141{bottom:177.945300px;}
.y5e{bottom:189.805650px;}
.y2e{bottom:190.323300px;}
.y8b{bottom:198.276450px;}
.yb1{bottom:198.294450px;}
.y140{bottom:198.951300px;}
.yfb{bottom:199.902450px;}
.y5d{bottom:206.815650px;}
.y2d{bottom:206.820300px;}
.yb0{bottom:219.300450px;}
.y13f{bottom:219.957300px;}
.yfa{bottom:220.908450px;}
.y5c{bottom:223.312650px;}
.y2c{bottom:223.317300px;}
.y8a{bottom:240.270450px;}
.yaf{bottom:240.306450px;}
.y5b{bottom:240.322650px;}
.y2b{bottom:240.327300px;}
.y13e{bottom:240.963300px;}
.yf9{bottom:241.914450px;}
.y5a{bottom:256.819650px;}
.y2a{bottom:256.824300px;}
.y89{bottom:261.276450px;}
.yae{bottom:261.312450px;}
.yd8{bottom:261.378450px;}
.y13d{bottom:261.969300px;}
.yf8{bottom:262.920450px;}
.y29{bottom:273.834300px;}
.y88{bottom:282.282450px;}
.yad{bottom:282.318450px;}
.yd7{bottom:282.384450px;}
.y13c{bottom:282.975300px;}
.yf7{bottom:283.926450px;}
.y28{bottom:290.331300px;}
.y87{bottom:303.288450px;}
.y116{bottom:303.306450px;}
.yac{bottom:303.324450px;}
.yd6{bottom:303.390450px;}
.y13b{bottom:303.981300px;}
.yf6{bottom:304.932450px;}
.y59{bottom:304.962450px;}
.y27{bottom:306.828300px;}
.y26{bottom:323.838300px;}
.y86{bottom:324.294450px;}
.y115{bottom:324.312450px;}
.yab{bottom:324.330450px;}
.yd5{bottom:324.396450px;}
.y13a{bottom:324.987300px;}
.yf5{bottom:325.938450px;}
.y58{bottom:325.968450px;}
.y25{bottom:340.333200px;}
.y85{bottom:345.300450px;}
.y114{bottom:345.318450px;}
.yaa{bottom:345.336450px;}
.yd4{bottom:345.402450px;}
.y139{bottom:345.993300px;}
.yf4{bottom:346.944450px;}
.y57{bottom:346.974450px;}
.y24{bottom:357.343200px;}
.y113{bottom:366.324450px;}
.ya9{bottom:366.342450px;}
.yd3{bottom:366.408450px;}
.y138{bottom:366.999300px;}
.yf3{bottom:367.950450px;}
.y84{bottom:387.294450px;}
.y112{bottom:387.330450px;}
.y137{bottom:388.005300px;}
.yf2{bottom:388.956450px;}
.y56{bottom:388.974450px;}
.y83{bottom:408.300450px;}
.ya8{bottom:408.336450px;}
.yd2{bottom:408.402450px;}
.y136{bottom:409.011300px;}
.y23{bottom:409.095300px;}
.ya7{bottom:429.342450px;}
.yd1{bottom:429.408450px;}
.y55{bottom:429.456450px;}
.y135{bottom:430.017300px;}
.y22{bottom:430.101300px;}
.yf1{bottom:430.950450px;}
.y82{bottom:450.294450px;}
.y111{bottom:450.348450px;}
.yd0{bottom:450.414450px;}
.y54{bottom:450.462450px;}
.y134{bottom:451.023300px;}
.y21{bottom:451.107300px;}
.yf0{bottom:451.956450px;}
.y81{bottom:471.300450px;}
.ya6{bottom:471.336450px;}
.y110{bottom:471.354450px;}
.ycf{bottom:471.420450px;}
.y53{bottom:471.468450px;}
.y133{bottom:472.029300px;}
.y20{bottom:472.113300px;}
.y80{bottom:492.306450px;}
.ya5{bottom:492.342450px;}
.y10f{bottom:492.360450px;}
.yce{bottom:492.426450px;}
.y52{bottom:492.468450px;}
.y132{bottom:493.035300px;}
.y1f{bottom:493.119300px;}
.yef{bottom:493.950450px;}
.y7f{bottom:513.312450px;}
.ya4{bottom:513.348450px;}
.y10e{bottom:513.366450px;}
.y51{bottom:513.402600px;}
.ycd{bottom:513.432450px;}
.y131{bottom:514.041300px;}
.y1e{bottom:514.125300px;}
.yee{bottom:514.956450px;}
.y7e{bottom:534.318450px;}
.ya3{bottom:534.354450px;}
.y10d{bottom:534.372450px;}
.y50{bottom:534.408600px;}
.ycc{bottom:534.438450px;}
.y130{bottom:535.047300px;}
.ya2{bottom:555.360450px;}
.y10c{bottom:555.378450px;}
.y4f{bottom:555.414600px;}
.ycb{bottom:555.444450px;}
.y12f{bottom:556.053300px;}
.y1d{bottom:556.119300px;}
.yed{bottom:556.950450px;}
.y7d{bottom:576.312450px;}
.ya1{bottom:576.366450px;}
.y10b{bottom:576.384450px;}
.y4e{bottom:576.420600px;}
.y12e{bottom:577.059300px;}
.y1c{bottom:577.125300px;}
.yec{bottom:577.956450px;}
.y7c{bottom:597.318450px;}
.ya0{bottom:597.372450px;}
.y10a{bottom:597.390450px;}
.y4d{bottom:597.426600px;}
.yca{bottom:597.438450px;}
.y12d{bottom:598.065300px;}
.y1b{bottom:598.131300px;}
.yeb{bottom:598.962450px;}
.y7b{bottom:618.324450px;}
.y9f{bottom:618.378450px;}
.y109{bottom:618.396450px;}
.y4c{bottom:618.432600px;}
.yc9{bottom:618.444450px;}
.y12c{bottom:619.071300px;}
.y1a{bottom:619.137300px;}
.yea{bottom:619.968450px;}
.y7a{bottom:639.330450px;}
.y9e{bottom:639.384450px;}
.y108{bottom:639.402450px;}
.y4b{bottom:639.438600px;}
.yc8{bottom:639.450450px;}
.y12b{bottom:640.077300px;}
.y19{bottom:640.143300px;}
.ye9{bottom:640.974450px;}
.y79{bottom:660.336450px;}
.y9d{bottom:660.390450px;}
.y107{bottom:660.408450px;}
.y4a{bottom:660.444600px;}
.y12a{bottom:661.083300px;}
.y18{bottom:661.113300px;}
.y78{bottom:681.342450px;}
.y9c{bottom:681.396450px;}
.y106{bottom:681.414450px;}
.yc7{bottom:681.444450px;}
.y49{bottom:681.450600px;}
.y129{bottom:682.089300px;}
.y17{bottom:682.119300px;}
.ye8{bottom:682.974450px;}
.y77{bottom:702.348450px;}
.y105{bottom:702.420450px;}
.yc6{bottom:702.450450px;}
.y48{bottom:702.456600px;}
.y128{bottom:703.095300px;}
.y16{bottom:703.125300px;}
.y76{bottom:723.354450px;}
.y9b{bottom:723.390450px;}
.y104{bottom:723.426450px;}
.ye7{bottom:723.450450px;}
.yc5{bottom:723.456450px;}
.y47{bottom:723.462600px;}
.y127{bottom:724.101300px;}
.y15{bottom:724.131300px;}
.y75{bottom:744.360450px;}
.y9a{bottom:744.396450px;}
.ye6{bottom:744.456450px;}
.yc4{bottom:744.462450px;}
.y46{bottom:744.468600px;}
.y126{bottom:745.107300px;}
.y14{bottom:745.137300px;}
.y74{bottom:765.366450px;}
.y45{bottom:765.396450px;}
.y99{bottom:765.402450px;}
.y103{bottom:765.420450px;}
.ye5{bottom:765.462450px;}
.yc3{bottom:765.468450px;}
.y125{bottom:766.113300px;}
.y13{bottom:766.143300px;}
.y73{bottom:786.372450px;}
.y44{bottom:786.402450px;}
.y98{bottom:786.408450px;}
.y102{bottom:786.426450px;}
.yc2{bottom:786.474450px;}
.y124{bottom:787.119300px;}
.y12{bottom:787.143300px;}
.y72{bottom:807.378450px;}
.y43{bottom:807.408450px;}
.y97{bottom:807.414450px;}
.ye4{bottom:807.456450px;}
.y11{bottom:808.083300px;}
.y123{bottom:808.125300px;}
.y71{bottom:828.384450px;}
.y42{bottom:828.414450px;}
.y96{bottom:828.420450px;}
.ye3{bottom:828.462450px;}
.yc1{bottom:828.468450px;}
.y10{bottom:829.089300px;}
.y122{bottom:829.131300px;}
.y70{bottom:849.390450px;}
.y41{bottom:849.420450px;}
.y95{bottom:849.426450px;}
.yc0{bottom:849.432450px;}
.ye2{bottom:849.468450px;}
.yf{bottom:850.095300px;}
.y121{bottom:850.137300px;}
.y6f{bottom:870.396450px;}
.y40{bottom:870.426450px;}
.y94{bottom:870.432450px;}
.ybf{bottom:870.438450px;}
.ye1{bottom:870.474450px;}
.ye{bottom:871.101300px;}
.y120{bottom:871.143300px;}
.y6e{bottom:891.402450px;}
.y3f{bottom:891.432450px;}
.y93{bottom:891.438450px;}
.ybe{bottom:891.444450px;}
.y11f{bottom:892.089300px;}
.yd{bottom:892.107300px;}
.y6d{bottom:912.408450px;}
.y3e{bottom:912.438450px;}
.y92{bottom:912.444450px;}
.ybd{bottom:912.450450px;}
.ye0{bottom:912.468450px;}
.y11e{bottom:913.095300px;}
.yc{bottom:913.113300px;}
.y6c{bottom:933.414450px;}
.y3d{bottom:933.444450px;}
.y101{bottom:933.450450px;}
.ybc{bottom:933.456450px;}
.y11d{bottom:934.101300px;}
.yb{bottom:934.119300px;}
.y6b{bottom:954.420450px;}
.y91{bottom:954.438450px;}
.y3c{bottom:954.450450px;}
.y100{bottom:954.456450px;}
.ybb{bottom:954.462450px;}
.y11c{bottom:955.107300px;}
.ya{bottom:955.125300px;}
.y6a{bottom:975.426450px;}
.y90{bottom:975.444450px;}
.ydf{bottom:975.450450px;}
.y3b{bottom:975.456450px;}
.yff{bottom:975.462450px;}
.yba{bottom:975.468450px;}
.y11b{bottom:976.113300px;}
.y9{bottom:976.131300px;}
.y69{bottom:996.432450px;}
.y8f{bottom:996.450450px;}
.yde{bottom:996.456450px;}
.y3a{bottom:996.462450px;}
.yfe{bottom:996.468450px;}
.y11a{bottom:997.119300px;}
.y8{bottom:997.137300px;}
.y68{bottom:1017.438450px;}
.yb9{bottom:1017.462450px;}
.y39{bottom:1017.468450px;}
.y119{bottom:1018.125300px;}
.y7{bottom:1018.143300px;}
.y67{bottom:1038.444450px;}
.y38{bottom:1038.462450px;}
.yb8{bottom:1038.468450px;}
.y118{bottom:1039.131300px;}
.y6{bottom:1039.149300px;}
.y66{bottom:1059.450450px;}
.y37{bottom:1059.468450px;}
.yb7{bottom:1059.474450px;}
.y117{bottom:1060.137300px;}
.y65{bottom:1080.456450px;}
.y36{bottom:1080.474450px;}
.yb6{bottom:1080.480450px;}
.y5{bottom:1081.143300px;}
.y64{bottom:1101.462450px;}
.y4{bottom:1102.149300px;}
.y35{bottom:1122.468450px;}
.y34{bottom:1143.474450px;}
.y3{bottom:1144.149300px;}
.y2{bottom:1199.791200px;}
.h2{height:46.872000px;}
.ha{height:46.880400px;}
.hb{height:47.092200px;}
.h11{height:47.142000px;}
.h3{height:50.160000px;}
.h5{height:60.192000px;}
.h6{height:62.496000px;}
.h8{height:62.520000px;}
.hc{height:62.544000px;}
.h12{height:62.568000px;}
.h9{height:62.640000px;}
.h10{height:62.664000px;}
.h13{height:62.736000px;}
.h7{height:62.760000px;}
.he{height:62.783400px;}
.hd{height:62.808600px;}
.hf{height:62.856000px;}
.h4{height:64.944000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:63.779550px;}
.x6{left:106.308900px;}
.x3{left:148.818900px;}
.x2{left:620.982750px;}
.x5{left:664.524900px;}
.x4{left:756.936900px;}
.x1{left:808.883850px;}
@media print{
.v3{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.840000pt;}
.v1{vertical-align:21.355200pt;}
.ls9{letter-spacing:-2.053333pt;}
.ls5{letter-spacing:-1.408000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.431467pt;}
.ls6{letter-spacing:1.825600pt;}
.ls0{letter-spacing:2.268267pt;}
.ls7{letter-spacing:3.168000pt;}
.ls1{letter-spacing:3.888000pt;}
.ls3{letter-spacing:5.433600pt;}
.ls8{letter-spacing:6.400000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.546667pt;}
.ws4{word-spacing:-14.592000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws0{word-spacing:-9.280000pt;}
.ws3{word-spacing:0.000000pt;}
._12{margin-left:-9.056000pt;}
._10{margin-left:-7.712000pt;}
._d{margin-left:-6.336533pt;}
._9{margin-left:-5.120000pt;}
._8{margin-left:-4.096000pt;}
._b{margin-left:-2.970667pt;}
._3{margin-left:-1.866667pt;}
._0{margin-left:-0.960000pt;}
._7{width:1.216000pt;}
._2{width:2.170667pt;}
._a{width:3.157333pt;}
._1{width:4.048000pt;}
._c{width:5.104000pt;}
._4{width:6.384000pt;}
._e{width:7.285333pt;}
._6{width:8.885333pt;}
._5{width:10.314667pt;}
._f{width:11.776000pt;}
._13{width:12.682667pt;}
._11{width:14.848000pt;}
.fs5{font-size:27.840000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.006800pt;}
.yb5{bottom:82.917733pt;}
.yfd{bottom:94.476533pt;}
.y33{bottom:94.479067pt;}
.y63{bottom:94.481067pt;}
.ydd{bottom:94.484533pt;}
.y8e{bottom:101.573733pt;}
.yb4{bottom:101.589733pt;}
.y144{bottom:102.157600pt;}
.y32{bottom:109.143067pt;}
.y62{bottom:109.148133pt;}
.ydc{bottom:109.148533pt;}
.yfc{bottom:109.596533pt;}
.y8d{bottom:120.245733pt;}
.yb3{bottom:120.261733pt;}
.y143{bottom:120.829600pt;}
.y31{bottom:124.263067pt;}
.y61{bottom:124.268133pt;}
.ydb{bottom:124.268533pt;}
.yda{bottom:138.932533pt;}
.yb2{bottom:138.933733pt;}
.y60{bottom:139.388133pt;}
.y30{bottom:139.392267pt;}
.y142{bottom:139.501600pt;}
.yd9{bottom:153.596533pt;}
.y5f{bottom:154.052133pt;}
.y2f{bottom:154.512267pt;}
.y8c{bottom:157.573733pt;}
.y141{bottom:158.173600pt;}
.y5e{bottom:168.716133pt;}
.y2e{bottom:169.176267pt;}
.y8b{bottom:176.245733pt;}
.yb1{bottom:176.261733pt;}
.y140{bottom:176.845600pt;}
.yfb{bottom:177.691067pt;}
.y5d{bottom:183.836133pt;}
.y2d{bottom:183.840267pt;}
.yb0{bottom:194.933733pt;}
.y13f{bottom:195.517600pt;}
.yfa{bottom:196.363067pt;}
.y5c{bottom:198.500133pt;}
.y2c{bottom:198.504267pt;}
.y8a{bottom:213.573733pt;}
.yaf{bottom:213.605733pt;}
.y5b{bottom:213.620133pt;}
.y2b{bottom:213.624267pt;}
.y13e{bottom:214.189600pt;}
.yf9{bottom:215.035067pt;}
.y5a{bottom:228.284133pt;}
.y2a{bottom:228.288267pt;}
.y89{bottom:232.245733pt;}
.yae{bottom:232.277733pt;}
.yd8{bottom:232.336400pt;}
.y13d{bottom:232.861600pt;}
.yf8{bottom:233.707067pt;}
.y29{bottom:243.408267pt;}
.y88{bottom:250.917733pt;}
.yad{bottom:250.949733pt;}
.yd7{bottom:251.008400pt;}
.y13c{bottom:251.533600pt;}
.yf7{bottom:252.379067pt;}
.y28{bottom:258.072267pt;}
.y87{bottom:269.589733pt;}
.y116{bottom:269.605733pt;}
.yac{bottom:269.621733pt;}
.yd6{bottom:269.680400pt;}
.y13b{bottom:270.205600pt;}
.yf6{bottom:271.051067pt;}
.y59{bottom:271.077733pt;}
.y27{bottom:272.736267pt;}
.y26{bottom:287.856267pt;}
.y86{bottom:288.261733pt;}
.y115{bottom:288.277733pt;}
.yab{bottom:288.293733pt;}
.yd5{bottom:288.352400pt;}
.y13a{bottom:288.877600pt;}
.yf5{bottom:289.723067pt;}
.y58{bottom:289.749733pt;}
.y25{bottom:302.518400pt;}
.y85{bottom:306.933733pt;}
.y114{bottom:306.949733pt;}
.yaa{bottom:306.965733pt;}
.yd4{bottom:307.024400pt;}
.y139{bottom:307.549600pt;}
.yf4{bottom:308.395067pt;}
.y57{bottom:308.421733pt;}
.y24{bottom:317.638400pt;}
.y113{bottom:325.621733pt;}
.ya9{bottom:325.637733pt;}
.yd3{bottom:325.696400pt;}
.y138{bottom:326.221600pt;}
.yf3{bottom:327.067067pt;}
.y84{bottom:344.261733pt;}
.y112{bottom:344.293733pt;}
.y137{bottom:344.893600pt;}
.yf2{bottom:345.739067pt;}
.y56{bottom:345.755067pt;}
.y83{bottom:362.933733pt;}
.ya8{bottom:362.965733pt;}
.yd2{bottom:363.024400pt;}
.y136{bottom:363.565600pt;}
.y23{bottom:363.640267pt;}
.ya7{bottom:381.637733pt;}
.yd1{bottom:381.696400pt;}
.y55{bottom:381.739067pt;}
.y135{bottom:382.237600pt;}
.y22{bottom:382.312267pt;}
.yf1{bottom:383.067067pt;}
.y82{bottom:400.261733pt;}
.y111{bottom:400.309733pt;}
.yd0{bottom:400.368400pt;}
.y54{bottom:400.411067pt;}
.y134{bottom:400.909600pt;}
.y21{bottom:400.984267pt;}
.yf0{bottom:401.739067pt;}
.y81{bottom:418.933733pt;}
.ya6{bottom:418.965733pt;}
.y110{bottom:418.981733pt;}
.ycf{bottom:419.040400pt;}
.y53{bottom:419.083067pt;}
.y133{bottom:419.581600pt;}
.y20{bottom:419.656267pt;}
.y80{bottom:437.605733pt;}
.ya5{bottom:437.637733pt;}
.y10f{bottom:437.653733pt;}
.yce{bottom:437.712400pt;}
.y52{bottom:437.749733pt;}
.y132{bottom:438.253600pt;}
.y1f{bottom:438.328267pt;}
.yef{bottom:439.067067pt;}
.y7f{bottom:456.277733pt;}
.ya4{bottom:456.309733pt;}
.y10e{bottom:456.325733pt;}
.y51{bottom:456.357867pt;}
.ycd{bottom:456.384400pt;}
.y131{bottom:456.925600pt;}
.y1e{bottom:457.000267pt;}
.yee{bottom:457.739067pt;}
.y7e{bottom:474.949733pt;}
.ya3{bottom:474.981733pt;}
.y10d{bottom:474.997733pt;}
.y50{bottom:475.029867pt;}
.ycc{bottom:475.056400pt;}
.y130{bottom:475.597600pt;}
.ya2{bottom:493.653733pt;}
.y10c{bottom:493.669733pt;}
.y4f{bottom:493.701867pt;}
.ycb{bottom:493.728400pt;}
.y12f{bottom:494.269600pt;}
.y1d{bottom:494.328267pt;}
.yed{bottom:495.067067pt;}
.y7d{bottom:512.277733pt;}
.ya1{bottom:512.325733pt;}
.y10b{bottom:512.341733pt;}
.y4e{bottom:512.373867pt;}
.y12e{bottom:512.941600pt;}
.y1c{bottom:513.000267pt;}
.yec{bottom:513.739067pt;}
.y7c{bottom:530.949733pt;}
.ya0{bottom:530.997733pt;}
.y10a{bottom:531.013733pt;}
.y4d{bottom:531.045867pt;}
.yca{bottom:531.056400pt;}
.y12d{bottom:531.613600pt;}
.y1b{bottom:531.672267pt;}
.yeb{bottom:532.411067pt;}
.y7b{bottom:549.621733pt;}
.y9f{bottom:549.669733pt;}
.y109{bottom:549.685733pt;}
.y4c{bottom:549.717867pt;}
.yc9{bottom:549.728400pt;}
.y12c{bottom:550.285600pt;}
.y1a{bottom:550.344267pt;}
.yea{bottom:551.083067pt;}
.y7a{bottom:568.293733pt;}
.y9e{bottom:568.341733pt;}
.y108{bottom:568.357733pt;}
.y4b{bottom:568.389867pt;}
.yc8{bottom:568.400400pt;}
.y12b{bottom:568.957600pt;}
.y19{bottom:569.016267pt;}
.ye9{bottom:569.755067pt;}
.y79{bottom:586.965733pt;}
.y9d{bottom:587.013733pt;}
.y107{bottom:587.029733pt;}
.y4a{bottom:587.061867pt;}
.y12a{bottom:587.629600pt;}
.y18{bottom:587.656267pt;}
.y78{bottom:605.637733pt;}
.y9c{bottom:605.685733pt;}
.y106{bottom:605.701733pt;}
.yc7{bottom:605.728400pt;}
.y49{bottom:605.733867pt;}
.y129{bottom:606.301600pt;}
.y17{bottom:606.328267pt;}
.ye8{bottom:607.088400pt;}
.y77{bottom:624.309733pt;}
.y105{bottom:624.373733pt;}
.yc6{bottom:624.400400pt;}
.y48{bottom:624.405867pt;}
.y128{bottom:624.973600pt;}
.y16{bottom:625.000267pt;}
.y76{bottom:642.981733pt;}
.y9b{bottom:643.013733pt;}
.y104{bottom:643.045733pt;}
.ye7{bottom:643.067067pt;}
.yc5{bottom:643.072400pt;}
.y47{bottom:643.077867pt;}
.y127{bottom:643.645600pt;}
.y15{bottom:643.672267pt;}
.y75{bottom:661.653733pt;}
.y9a{bottom:661.685733pt;}
.ye6{bottom:661.739067pt;}
.yc4{bottom:661.744400pt;}
.y46{bottom:661.749867pt;}
.y126{bottom:662.317600pt;}
.y14{bottom:662.344267pt;}
.y74{bottom:680.325733pt;}
.y45{bottom:680.352400pt;}
.y99{bottom:680.357733pt;}
.y103{bottom:680.373733pt;}
.ye5{bottom:680.411067pt;}
.yc3{bottom:680.416400pt;}
.y125{bottom:680.989600pt;}
.y13{bottom:681.016267pt;}
.y73{bottom:698.997733pt;}
.y44{bottom:699.024400pt;}
.y98{bottom:699.029733pt;}
.y102{bottom:699.045733pt;}
.yc2{bottom:699.088400pt;}
.y124{bottom:699.661600pt;}
.y12{bottom:699.682933pt;}
.y72{bottom:717.669733pt;}
.y43{bottom:717.696400pt;}
.y97{bottom:717.701733pt;}
.ye4{bottom:717.739067pt;}
.y11{bottom:718.296267pt;}
.y123{bottom:718.333600pt;}
.y71{bottom:736.341733pt;}
.y42{bottom:736.368400pt;}
.y96{bottom:736.373733pt;}
.ye3{bottom:736.411067pt;}
.yc1{bottom:736.416400pt;}
.y10{bottom:736.968267pt;}
.y122{bottom:737.005600pt;}
.y70{bottom:755.013733pt;}
.y41{bottom:755.040400pt;}
.y95{bottom:755.045733pt;}
.yc0{bottom:755.051067pt;}
.ye2{bottom:755.083067pt;}
.yf{bottom:755.640267pt;}
.y121{bottom:755.677600pt;}
.y6f{bottom:773.685733pt;}
.y40{bottom:773.712400pt;}
.y94{bottom:773.717733pt;}
.ybf{bottom:773.723067pt;}
.ye1{bottom:773.755067pt;}
.ye{bottom:774.312267pt;}
.y120{bottom:774.349600pt;}
.y6e{bottom:792.357733pt;}
.y3f{bottom:792.384400pt;}
.y93{bottom:792.389733pt;}
.ybe{bottom:792.395067pt;}
.y11f{bottom:792.968267pt;}
.yd{bottom:792.984267pt;}
.y6d{bottom:811.029733pt;}
.y3e{bottom:811.056400pt;}
.y92{bottom:811.061733pt;}
.ybd{bottom:811.067067pt;}
.ye0{bottom:811.083067pt;}
.y11e{bottom:811.640267pt;}
.yc{bottom:811.656267pt;}
.y6c{bottom:829.701733pt;}
.y3d{bottom:829.728400pt;}
.y101{bottom:829.733733pt;}
.ybc{bottom:829.739067pt;}
.y11d{bottom:830.312267pt;}
.yb{bottom:830.328267pt;}
.y6b{bottom:848.373733pt;}
.y91{bottom:848.389733pt;}
.y3c{bottom:848.400400pt;}
.y100{bottom:848.405733pt;}
.ybb{bottom:848.411067pt;}
.y11c{bottom:848.984267pt;}
.ya{bottom:849.000267pt;}
.y6a{bottom:867.045733pt;}
.y90{bottom:867.061733pt;}
.ydf{bottom:867.067067pt;}
.y3b{bottom:867.072400pt;}
.yff{bottom:867.077733pt;}
.yba{bottom:867.083067pt;}
.y11b{bottom:867.656267pt;}
.y9{bottom:867.672267pt;}
.y69{bottom:885.717733pt;}
.y8f{bottom:885.733733pt;}
.yde{bottom:885.739067pt;}
.y3a{bottom:885.744400pt;}
.yfe{bottom:885.749733pt;}
.y11a{bottom:886.328267pt;}
.y8{bottom:886.344267pt;}
.y68{bottom:904.389733pt;}
.yb9{bottom:904.411067pt;}
.y39{bottom:904.416400pt;}
.y119{bottom:905.000267pt;}
.y7{bottom:905.016267pt;}
.y67{bottom:923.061733pt;}
.y38{bottom:923.077733pt;}
.yb8{bottom:923.083067pt;}
.y118{bottom:923.672267pt;}
.y6{bottom:923.688267pt;}
.y66{bottom:941.733733pt;}
.y37{bottom:941.749733pt;}
.yb7{bottom:941.755067pt;}
.y117{bottom:942.344267pt;}
.y65{bottom:960.405733pt;}
.y36{bottom:960.421733pt;}
.yb6{bottom:960.427067pt;}
.y5{bottom:961.016267pt;}
.y64{bottom:979.077733pt;}
.y4{bottom:979.688267pt;}
.y35{bottom:997.749733pt;}
.y34{bottom:1016.421733pt;}
.y3{bottom:1017.021600pt;}
.y2{bottom:1066.481067pt;}
.h2{height:41.664000pt;}
.ha{height:41.671467pt;}
.hb{height:41.859733pt;}
.h11{height:41.904000pt;}
.h3{height:44.586667pt;}
.h5{height:53.504000pt;}
.h6{height:55.552000pt;}
.h8{height:55.573333pt;}
.hc{height:55.594667pt;}
.h12{height:55.616000pt;}
.h9{height:55.680000pt;}
.h10{height:55.701333pt;}
.h13{height:55.765333pt;}
.h7{height:55.786667pt;}
.he{height:55.807467pt;}
.hd{height:55.829867pt;}
.hf{height:55.872000pt;}
.h4{height:57.728000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:56.692933pt;}
.x6{left:94.496800pt;}
.x3{left:132.283467pt;}
.x2{left:551.984667pt;}
.x5{left:590.688800pt;}
.x4{left:672.832800pt;}
.x1{left:719.007867pt;}
}

