
    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_ac12fac4f606d71ace242e6e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.696777;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_30034d22c09d9cfe58b25992.woff')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_2736532aeb92b0e14c260f2e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.870605;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_a6a79c017beb7159e2ffb2e5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.675781;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_11122ad83ae2bfe77a91e5c4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_66aa9b1abc036dd65701735c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.825000;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:ff7;src:url('chunks/assets/font_16fdbe14b630a344499a6697.woff')format("woff");}.ff7{font-family:ff7;line-height:0.873535;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:ff8;src:url('chunks/assets/font_e35cf688170866031edff8c4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.002930;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:ff9;src:url('chunks/assets/font_7bdec5084ac974f6e4bc0f95.woff')format("woff");}.ff9{font-family:ff9;line-height:1.002930;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;}
.v2{vertical-align:23.976000px;}
.v1{vertical-align:39.960000px;}
.ls5{letter-spacing:-8.100000px;}
.ls6{letter-spacing:-6.984000px;}
.ls3{letter-spacing:-6.840000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.058800px;}
.ls0{letter-spacing:0.648000px;}
.ls1{letter-spacing:4.320000px;}
.ls4{letter-spacing:8.040000px;}
.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;}
}
.ws0{word-spacing:-53.136000px;}
.ws6{word-spacing:-16.272000px;}
.ws2{word-spacing:-13.560000px;}
.ws1{word-spacing:-10.848000px;}
.ws7{word-spacing:-9.486576px;}
.wsa{word-spacing:-9.432000px;}
.ws3{word-spacing:-4.320000px;}
.ws9{word-spacing:-2.016000px;}
.wsd{word-spacing:-0.648000px;}
.ws12{word-spacing:-0.288000px;}
.ws4{word-spacing:0.000000px;}
.ws14{word-spacing:0.540000px;}
.ws10{word-spacing:1.440000px;}
.wsf{word-spacing:4.980000px;}
.ws15{word-spacing:5.112000px;}
.ws11{word-spacing:5.760000px;}
.wsb{word-spacing:6.408000px;}
.wsc{word-spacing:6.552000px;}
.ws8{word-spacing:6.912000px;}
.ws13{word-spacing:6.984000px;}
.ws5{word-spacing:7.980000px;}
.wse{word-spacing:8.100000px;}
._17{margin-left:-16.104000px;}
._16{margin-left:-8.808000px;}
._f{margin-left:-7.608000px;}
._9{margin-left:-6.192000px;}
._15{margin-left:-5.160000px;}
._1{margin-left:-4.104000px;}
._0{margin-left:-2.376000px;}
._2{margin-left:-1.320000px;}
._b{width:1.152000px;}
._a{width:2.808000px;}
._e{width:4.296000px;}
._d{width:5.544000px;}
._c{width:7.056000px;}
._14{width:8.064000px;}
._7{width:9.072000px;}
._6{width:10.080000px;}
._8{width:11.088000px;}
._12{width:12.960000px;}
._11{width:13.968000px;}
._13{width:15.120000px;}
._10{width:17.568000px;}
._5{width:18.576000px;}
._4{width:20.016000px;}
._3{width:21.312000px;}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(35,31,32);}
.fc3{color:rgb(142,155,157);}
.fc2{color:rgb(46,45,45);}
.fc1{color:rgb(66,178,60);}
.fc0{color:rgb(121,122,124);}
.fs8{font-size:41.976000px;}
.fs2{font-size:48.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:69.960000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs4{font-size:120.000000px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:4.605000px;}
.y21{bottom:36.645091px;}
.y97{bottom:83.643000px;}
.y47{bottom:106.299150px;}
.y20{bottom:106.306200px;}
.y7a{bottom:106.313100px;}
.ya9{bottom:106.320000px;}
.y69{bottom:106.320150px;}
.y9f{bottom:106.327200px;}
.y92{bottom:106.348050px;}
.y96{bottom:108.888000px;}
.y46{bottom:127.299150px;}
.y1f{bottom:127.306200px;}
.ya8{bottom:127.320000px;}
.y88{bottom:127.320150px;}
.y9e{bottom:127.327200px;}
.y6d{bottom:131.551200px;}
.y79{bottom:131.558100px;}
.y68{bottom:131.565150px;}
.y91{bottom:131.593050px;}
.y95{bottom:134.133000px;}
.y1e{bottom:148.306200px;}
.y87{bottom:148.320150px;}
.yac{bottom:152.551200px;}
.ya7{bottom:152.565000px;}
.y67{bottom:152.565150px;}
.y9d{bottom:152.572200px;}
.y78{bottom:156.803100px;}
.y77{bottom:156.810150px;}
.y90{bottom:156.838050px;}
.y94{bottom:159.378000px;}
.y1d{bottom:169.306200px;}
.y86{bottom:169.320150px;}
.y45{bottom:171.035400px;}
.yab{bottom:173.551200px;}
.ya2{bottom:173.565150px;}
.ya6{bottom:177.810000px;}
.y66{bottom:177.810150px;}
.y9c{bottom:177.817200px;}
.y93{bottom:180.378000px;}
.y8f{bottom:182.083050px;}
.y1c{bottom:190.306200px;}
.y85{bottom:190.320150px;}
.y6c{bottom:198.035400px;}
.ya5{bottom:198.810000px;}
.y76{bottom:198.810150px;}
.y65{bottom:203.055150px;}
.y9b{bottom:203.062200px;}
.y8e{bottom:207.328050px;}
.y1b{bottom:211.306200px;}
.y84{bottom:211.320150px;}
.y75{bottom:219.810150px;}
.ya4{bottom:224.055000px;}
.y64{bottom:224.055150px;}
.y44{bottom:225.035400px;}
.y9a{bottom:228.307200px;}
.y8d{bottom:228.328050px;}
.y1a{bottom:232.306200px;}
.y83{bottom:232.320150px;}
.y74{bottom:240.810150px;}
.ya3{bottom:245.055000px;}
.y99{bottom:249.307200px;}
.y43{bottom:252.035400px;}
.y19{bottom:253.306200px;}
.y82{bottom:253.320150px;}
.y8c{bottom:253.573050px;}
.y73{bottom:261.810150px;}
.ya1{bottom:266.055150px;}
.y98{bottom:270.307200px;}
.y81{bottom:274.320150px;}
.y18{bottom:278.551200px;}
.y8b{bottom:278.818050px;}
.y42{bottom:279.035400px;}
.y72{bottom:282.810150px;}
.ya0{bottom:287.055150px;}
.y17{bottom:299.551200px;}
.y80{bottom:299.565150px;}
.y8a{bottom:299.818050px;}
.y71{bottom:303.810150px;}
.y41{bottom:306.027600px;}
.y63{bottom:306.035400px;}
.y70{bottom:324.810150px;}
.y89{bottom:325.063050px;}
.y40{bottom:333.027600px;}
.y62{bottom:333.035400px;}
.y7f{bottom:345.810150px;}
.y6f{bottom:350.055150px;}
.y3f{bottom:360.027600px;}
.y61{bottom:360.035400px;}
.y7e{bottom:366.810150px;}
.y6e{bottom:371.055150px;}
.y3e{bottom:387.027600px;}
.y60{bottom:387.035400px;}
.y7d{bottom:387.810150px;}
.y16{bottom:391.235400px;}
.y7c{bottom:408.810150px;}
.y3d{bottom:414.027600px;}
.y6b{bottom:414.035400px;}
.y15{bottom:418.235400px;}
.y7b{bottom:434.055150px;}
.y3c{bottom:441.027600px;}
.y5f{bottom:441.035400px;}
.y14{bottom:445.235400px;}
.y3b{bottom:468.027600px;}
.y5e{bottom:468.035400px;}
.y13{bottom:472.235400px;}
.y3a{bottom:495.027600px;}
.y5d{bottom:495.035400px;}
.y12{bottom:499.235400px;}
.y39{bottom:522.027600px;}
.y5c{bottom:522.035400px;}
.y11{bottom:526.235400px;}
.y38{bottom:549.027600px;}
.y5b{bottom:549.035400px;}
.y10{bottom:553.235400px;}
.y37{bottom:576.027600px;}
.y5a{bottom:576.035400px;}
.yf{bottom:580.235400px;}
.y36{bottom:603.027600px;}
.y59{bottom:603.035400px;}
.ye{bottom:607.235400px;}
.y35{bottom:630.027600px;}
.y58{bottom:630.035400px;}
.yd{bottom:634.235400px;}
.y34{bottom:657.027600px;}
.y57{bottom:657.035400px;}
.yc{bottom:661.235400px;}
.y33{bottom:684.027600px;}
.y56{bottom:684.035400px;}
.yb{bottom:688.235400px;}
.y32{bottom:711.027600px;}
.y55{bottom:711.035400px;}
.yaa{bottom:738.027600px;}
.y54{bottom:738.035400px;}
.y31{bottom:765.027600px;}
.y53{bottom:765.035400px;}
.ya{bottom:769.235400px;}
.y30{bottom:792.027600px;}
.y52{bottom:792.035400px;}
.y2f{bottom:819.027600px;}
.y51{bottom:819.035400px;}
.y9{bottom:823.235400px;}
.y2e{bottom:846.027600px;}
.y50{bottom:846.035400px;}
.y8{bottom:850.235400px;}
.y2d{bottom:873.027600px;}
.y4f{bottom:873.035400px;}
.yb4{bottom:891.027600px;}
.y2c{bottom:900.027600px;}
.y4e{bottom:900.035400px;}
.y7{bottom:904.235400px;}
.yb3{bottom:918.027600px;}
.y2b{bottom:927.027600px;}
.y6a{bottom:927.035400px;}
.y6{bottom:931.235400px;}
.yb2{bottom:945.027600px;}
.y2a{bottom:954.027600px;}
.y4d{bottom:954.035400px;}
.yb1{bottom:972.027600px;}
.y29{bottom:981.027600px;}
.y4c{bottom:981.035400px;}
.y5{bottom:985.235400px;}
.yb0{bottom:999.027600px;}
.y28{bottom:1008.027600px;}
.y4b{bottom:1008.035400px;}
.yaf{bottom:1026.027600px;}
.y27{bottom:1035.027600px;}
.y4a{bottom:1035.035400px;}
.y4{bottom:1044.035400px;}
.yae{bottom:1053.027600px;}
.y3{bottom:1058.435400px;}
.y26{bottom:1062.027600px;}
.y49{bottom:1062.035400px;}
.yad{bottom:1080.027600px;}
.y25{bottom:1089.027600px;}
.y48{bottom:1089.035400px;}
.y2{bottom:1090.835400px;}
.y24{bottom:1116.027600px;}
.y1{bottom:1116.035400px;}
.y23{bottom:1143.027600px;}
.he{height:19.065000px;}
.h4{height:38.062500px;}
.h5{height:39.585938px;}
.hf{height:41.572266px;}
.hb{height:41.718750px;}
.h6{height:46.200000px;}
.ha{height:49.359375px;}
.hd{height:49.482422px;}
.h12{height:49.886719px;}
.h9{height:50.062500px;}
.h11{height:53.059957px;}
.hc{height:59.378906px;}
.h10{height:59.410106px;}
.h3{height:66.609375px;}
.h8{height:83.437500px;}
.h7{height:87.920859px;}
.h2{height:148.078125px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:22.815000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.299150px;}
.x5{left:148.814850px;}
.x2{left:255.118200px;}
.x4{left:435.052506px;}
.x3{left:453.772350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.312000pt;}
.v1{vertical-align:35.520000pt;}
.ls5{letter-spacing:-7.200000pt;}
.ls6{letter-spacing:-6.208000pt;}
.ls3{letter-spacing:-6.080000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.052267pt;}
.ls0{letter-spacing:0.576000pt;}
.ls1{letter-spacing:3.840000pt;}
.ls4{letter-spacing:7.146667pt;}
.ws0{word-spacing:-47.232000pt;}
.ws6{word-spacing:-14.464000pt;}
.ws2{word-spacing:-12.053333pt;}
.ws1{word-spacing:-9.642667pt;}
.ws7{word-spacing:-8.432512pt;}
.wsa{word-spacing:-8.384000pt;}
.ws3{word-spacing:-3.840000pt;}
.ws9{word-spacing:-1.792000pt;}
.wsd{word-spacing:-0.576000pt;}
.ws12{word-spacing:-0.256000pt;}
.ws4{word-spacing:0.000000pt;}
.ws14{word-spacing:0.480000pt;}
.ws10{word-spacing:1.280000pt;}
.wsf{word-spacing:4.426667pt;}
.ws15{word-spacing:4.544000pt;}
.ws11{word-spacing:5.120000pt;}
.wsb{word-spacing:5.696000pt;}
.wsc{word-spacing:5.824000pt;}
.ws8{word-spacing:6.144000pt;}
.ws13{word-spacing:6.208000pt;}
.ws5{word-spacing:7.093333pt;}
.wse{word-spacing:7.200000pt;}
._17{margin-left:-14.314667pt;}
._16{margin-left:-7.829333pt;}
._f{margin-left:-6.762667pt;}
._9{margin-left:-5.504000pt;}
._15{margin-left:-4.586667pt;}
._1{margin-left:-3.648000pt;}
._0{margin-left:-2.112000pt;}
._2{margin-left:-1.173333pt;}
._b{width:1.024000pt;}
._a{width:2.496000pt;}
._e{width:3.818667pt;}
._d{width:4.928000pt;}
._c{width:6.272000pt;}
._14{width:7.168000pt;}
._7{width:8.064000pt;}
._6{width:8.960000pt;}
._8{width:9.856000pt;}
._12{width:11.520000pt;}
._11{width:12.416000pt;}
._13{width:13.440000pt;}
._10{width:15.616000pt;}
._5{width:16.512000pt;}
._4{width:17.792000pt;}
._3{width:18.944000pt;}
.fs8{font-size:37.312000pt;}
.fs2{font-size:42.666667pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:62.186667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs4{font-size:106.666667pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:4.093333pt;}
.y21{bottom:32.573415pt;}
.y97{bottom:74.349333pt;}
.y47{bottom:94.488133pt;}
.y20{bottom:94.494400pt;}
.y7a{bottom:94.500533pt;}
.ya9{bottom:94.506667pt;}
.y69{bottom:94.506800pt;}
.y9f{bottom:94.513067pt;}
.y92{bottom:94.531600pt;}
.y96{bottom:96.789333pt;}
.y46{bottom:113.154800pt;}
.y1f{bottom:113.161067pt;}
.ya8{bottom:113.173333pt;}
.y88{bottom:113.173467pt;}
.y9e{bottom:113.179733pt;}
.y6d{bottom:116.934400pt;}
.y79{bottom:116.940533pt;}
.y68{bottom:116.946800pt;}
.y91{bottom:116.971600pt;}
.y95{bottom:119.229333pt;}
.y1e{bottom:131.827733pt;}
.y87{bottom:131.840133pt;}
.yac{bottom:135.601067pt;}
.ya7{bottom:135.613333pt;}
.y67{bottom:135.613467pt;}
.y9d{bottom:135.619733pt;}
.y78{bottom:139.380533pt;}
.y77{bottom:139.386800pt;}
.y90{bottom:139.411600pt;}
.y94{bottom:141.669333pt;}
.y1d{bottom:150.494400pt;}
.y86{bottom:150.506800pt;}
.y45{bottom:152.031467pt;}
.yab{bottom:154.267733pt;}
.ya2{bottom:154.280133pt;}
.ya6{bottom:158.053333pt;}
.y66{bottom:158.053467pt;}
.y9c{bottom:158.059733pt;}
.y93{bottom:160.336000pt;}
.y8f{bottom:161.851600pt;}
.y1c{bottom:169.161067pt;}
.y85{bottom:169.173467pt;}
.y6c{bottom:176.031467pt;}
.ya5{bottom:176.720000pt;}
.y76{bottom:176.720133pt;}
.y65{bottom:180.493467pt;}
.y9b{bottom:180.499733pt;}
.y8e{bottom:184.291600pt;}
.y1b{bottom:187.827733pt;}
.y84{bottom:187.840133pt;}
.y75{bottom:195.386800pt;}
.ya4{bottom:199.160000pt;}
.y64{bottom:199.160133pt;}
.y44{bottom:200.031467pt;}
.y9a{bottom:202.939733pt;}
.y8d{bottom:202.958267pt;}
.y1a{bottom:206.494400pt;}
.y83{bottom:206.506800pt;}
.y74{bottom:214.053467pt;}
.ya3{bottom:217.826667pt;}
.y99{bottom:221.606400pt;}
.y43{bottom:224.031467pt;}
.y19{bottom:225.161067pt;}
.y82{bottom:225.173467pt;}
.y8c{bottom:225.398267pt;}
.y73{bottom:232.720133pt;}
.ya1{bottom:236.493467pt;}
.y98{bottom:240.273067pt;}
.y81{bottom:243.840133pt;}
.y18{bottom:247.601067pt;}
.y8b{bottom:247.838267pt;}
.y42{bottom:248.031467pt;}
.y72{bottom:251.386800pt;}
.ya0{bottom:255.160133pt;}
.y17{bottom:266.267733pt;}
.y80{bottom:266.280133pt;}
.y8a{bottom:266.504933pt;}
.y71{bottom:270.053467pt;}
.y41{bottom:272.024533pt;}
.y63{bottom:272.031467pt;}
.y70{bottom:288.720133pt;}
.y89{bottom:288.944933pt;}
.y40{bottom:296.024533pt;}
.y62{bottom:296.031467pt;}
.y7f{bottom:307.386800pt;}
.y6f{bottom:311.160133pt;}
.y3f{bottom:320.024533pt;}
.y61{bottom:320.031467pt;}
.y7e{bottom:326.053467pt;}
.y6e{bottom:329.826800pt;}
.y3e{bottom:344.024533pt;}
.y60{bottom:344.031467pt;}
.y7d{bottom:344.720133pt;}
.y16{bottom:347.764800pt;}
.y7c{bottom:363.386800pt;}
.y3d{bottom:368.024533pt;}
.y6b{bottom:368.031467pt;}
.y15{bottom:371.764800pt;}
.y7b{bottom:385.826800pt;}
.y3c{bottom:392.024533pt;}
.y5f{bottom:392.031467pt;}
.y14{bottom:395.764800pt;}
.y3b{bottom:416.024533pt;}
.y5e{bottom:416.031467pt;}
.y13{bottom:419.764800pt;}
.y3a{bottom:440.024533pt;}
.y5d{bottom:440.031467pt;}
.y12{bottom:443.764800pt;}
.y39{bottom:464.024533pt;}
.y5c{bottom:464.031467pt;}
.y11{bottom:467.764800pt;}
.y38{bottom:488.024533pt;}
.y5b{bottom:488.031467pt;}
.y10{bottom:491.764800pt;}
.y37{bottom:512.024533pt;}
.y5a{bottom:512.031467pt;}
.yf{bottom:515.764800pt;}
.y36{bottom:536.024533pt;}
.y59{bottom:536.031467pt;}
.ye{bottom:539.764800pt;}
.y35{bottom:560.024533pt;}
.y58{bottom:560.031467pt;}
.yd{bottom:563.764800pt;}
.y34{bottom:584.024533pt;}
.y57{bottom:584.031467pt;}
.yc{bottom:587.764800pt;}
.y33{bottom:608.024533pt;}
.y56{bottom:608.031467pt;}
.yb{bottom:611.764800pt;}
.y32{bottom:632.024533pt;}
.y55{bottom:632.031467pt;}
.yaa{bottom:656.024533pt;}
.y54{bottom:656.031467pt;}
.y31{bottom:680.024533pt;}
.y53{bottom:680.031467pt;}
.ya{bottom:683.764800pt;}
.y30{bottom:704.024533pt;}
.y52{bottom:704.031467pt;}
.y2f{bottom:728.024533pt;}
.y51{bottom:728.031467pt;}
.y9{bottom:731.764800pt;}
.y2e{bottom:752.024533pt;}
.y50{bottom:752.031467pt;}
.y8{bottom:755.764800pt;}
.y2d{bottom:776.024533pt;}
.y4f{bottom:776.031467pt;}
.yb4{bottom:792.024533pt;}
.y2c{bottom:800.024533pt;}
.y4e{bottom:800.031467pt;}
.y7{bottom:803.764800pt;}
.yb3{bottom:816.024533pt;}
.y2b{bottom:824.024533pt;}
.y6a{bottom:824.031467pt;}
.y6{bottom:827.764800pt;}
.yb2{bottom:840.024533pt;}
.y2a{bottom:848.024533pt;}
.y4d{bottom:848.031467pt;}
.yb1{bottom:864.024533pt;}
.y29{bottom:872.024533pt;}
.y4c{bottom:872.031467pt;}
.y5{bottom:875.764800pt;}
.yb0{bottom:888.024533pt;}
.y28{bottom:896.024533pt;}
.y4b{bottom:896.031467pt;}
.yaf{bottom:912.024533pt;}
.y27{bottom:920.024533pt;}
.y4a{bottom:920.031467pt;}
.y4{bottom:928.031467pt;}
.yae{bottom:936.024533pt;}
.y3{bottom:940.831467pt;}
.y26{bottom:944.024533pt;}
.y49{bottom:944.031467pt;}
.yad{bottom:960.024533pt;}
.y25{bottom:968.024533pt;}
.y48{bottom:968.031467pt;}
.y2{bottom:969.631467pt;}
.y24{bottom:992.024533pt;}
.y1{bottom:992.031467pt;}
.y23{bottom:1016.024533pt;}
.he{height:16.946667pt;}
.h4{height:33.833333pt;}
.h5{height:35.187500pt;}
.hf{height:36.953125pt;}
.hb{height:37.083333pt;}
.h6{height:41.066667pt;}
.ha{height:43.875000pt;}
.hd{height:43.984375pt;}
.h12{height:44.343750pt;}
.h9{height:44.500000pt;}
.h11{height:47.164406pt;}
.hc{height:52.781250pt;}
.h10{height:52.808983pt;}
.h3{height:59.208333pt;}
.h8{height:74.166667pt;}
.h7{height:78.151875pt;}
.h2{height:131.625000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:20.280000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.488133pt;}
.x5{left:132.279867pt;}
.x2{left:226.771733pt;}
.x4{left:386.713338pt;}
.x3{left:403.353200pt;}
}

