
    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_c4a6980b35079378982e3e7f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.007000;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_0267a926057936db683f4891.woff')format("woff");}.ff2{font-family:ff2;line-height:1.006000;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_8b84c07db64da5f0017a19fb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.736000;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_7293b14e0917a917757e7496.woff')format("woff");}.ff4{font-family:ff4;line-height:1.171387;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_a3ce5b9f43275f3fa1408ed7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.006000;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_eaed7db388168b2b6ea3ba23.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006000;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_71774e87a91aa84d2a9d4347.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006000;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_fa64e815984f43b2a881860e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.732000;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_124265a3f9eb3d9ebce82498.woff')format("woff");}.ff9{font-family:ff9;line-height:1.174000;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:ffa;src:url('chunks/assets/font_42477a94a962a088917794cb.woff')format("woff");}.ffa{font-family:ffa;line-height:1.006000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls8{letter-spacing:-0.810000px;}
.ls2{letter-spacing:-0.765000px;}
.ls3{letter-spacing:-0.675000px;}
.ls6{letter-spacing:-0.600000px;}
.ls7{letter-spacing:-0.540000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.540000px;}
.ls0{letter-spacing:5.700000px;}
.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;}
}
.ws5c{word-spacing:-60.000000px;}
.wsb{word-spacing:-45.600000px;}
.wsc{word-spacing:-15.600000px;}
.ws5e{word-spacing:-14.040000px;}
.ws5d{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.260000px;}
.ws0{word-spacing:-12.480000px;}
.ws30{word-spacing:-9.094800px;}
.ws5{word-spacing:-5.700000px;}
.ws76{word-spacing:-3.294000px;}
.ws14{word-spacing:-3.000000px;}
.ws48{word-spacing:-2.820000px;}
.ws64{word-spacing:-2.808000px;}
.ws42{word-spacing:-2.760000px;}
.ws4c{word-spacing:-2.460000px;}
.wsf{word-spacing:-2.400000px;}
.ws65{word-spacing:-2.376000px;}
.ws69{word-spacing:-2.322000px;}
.wse{word-spacing:-2.220000px;}
.ws4f{word-spacing:-2.160000px;}
.ws55{word-spacing:-2.040000px;}
.ws19{word-spacing:-1.920000px;}
.ws5f{word-spacing:-1.890000px;}
.ws56{word-spacing:-1.860000px;}
.ws2b{word-spacing:-1.800000px;}
.ws68{word-spacing:-1.728000px;}
.ws54{word-spacing:-1.680000px;}
.ws43{word-spacing:-1.560000px;}
.ws21{word-spacing:-1.500000px;}
.ws52{word-spacing:-1.440000px;}
.ws4b{word-spacing:-1.380000px;}
.ws33{word-spacing:-1.200000px;}
.ws38{word-spacing:-1.140000px;}
.ws36{word-spacing:-1.020000px;}
.ws46{word-spacing:-0.960000px;}
.ws6a{word-spacing:-0.918000px;}
.ws37{word-spacing:-0.900000px;}
.ws2c{word-spacing:-0.780000px;}
.ws22{word-spacing:-0.720000px;}
.ws70{word-spacing:-0.702000px;}
.ws2e{word-spacing:-0.660000px;}
.ws62{word-spacing:-0.648000px;}
.ws32{word-spacing:-0.540000px;}
.ws6c{word-spacing:-0.432000px;}
.ws18{word-spacing:-0.420000px;}
.ws20{word-spacing:-0.300000px;}
.ws6{word-spacing:-0.288000px;}
.ws74{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.120000px;}
.ws73{word-spacing:-0.108000px;}
.ws1{word-spacing:-0.090948px;}
.ws4{word-spacing:0.000000px;}
.ws7f{word-spacing:0.054000px;}
.ws1c{word-spacing:0.120000px;}
.ws7d{word-spacing:0.216000px;}
.ws39{word-spacing:0.240000px;}
.ws7e{word-spacing:0.324000px;}
.ws41{word-spacing:0.420000px;}
.ws1a{word-spacing:0.480000px;}
.ws80{word-spacing:0.486000px;}
.ws35{word-spacing:0.540000px;}
.wsa{word-spacing:0.561000px;}
.ws61{word-spacing:0.594000px;}
.ws3f{word-spacing:0.600000px;}
.ws3b{word-spacing:0.660000px;}
.ws15{word-spacing:0.720000px;}
.wsd{word-spacing:0.765000px;}
.ws17{word-spacing:0.780000px;}
.ws66{word-spacing:0.810000px;}
.ws72{word-spacing:0.918000px;}
.ws1b{word-spacing:0.960000px;}
.ws3a{word-spacing:1.020000px;}
.ws6d{word-spacing:1.026000px;}
.ws8{word-spacing:1.056000px;}
.ws23{word-spacing:1.140000px;}
.ws78{word-spacing:1.188000px;}
.ws1e{word-spacing:1.260000px;}
.ws7c{word-spacing:1.350000px;}
.ws5b{word-spacing:1.380000px;}
.ws11{word-spacing:1.500000px;}
.ws50{word-spacing:1.620000px;}
.ws6e{word-spacing:1.836000px;}
.ws47{word-spacing:1.920000px;}
.ws7b{word-spacing:1.944000px;}
.ws59{word-spacing:2.100000px;}
.ws5a{word-spacing:2.220000px;}
.ws31{word-spacing:2.280000px;}
.ws7{word-spacing:2.304000px;}
.ws27{word-spacing:2.340000px;}
.ws1d{word-spacing:2.460000px;}
.ws57{word-spacing:2.520000px;}
.ws63{word-spacing:2.538000px;}
.ws25{word-spacing:2.580000px;}
.ws10{word-spacing:2.760000px;}
.ws44{word-spacing:2.940000px;}
.ws2f{word-spacing:3.000000px;}
.ws1f{word-spacing:3.060000px;}
.ws53{word-spacing:3.120000px;}
.ws71{word-spacing:3.132000px;}
.ws40{word-spacing:3.240000px;}
.ws16{word-spacing:3.300000px;}
.ws2a{word-spacing:3.360000px;}
.ws45{word-spacing:3.420000px;}
.ws79{word-spacing:3.456000px;}
.ws6f{word-spacing:3.510000px;}
.ws67{word-spacing:3.618000px;}
.ws4d{word-spacing:3.780000px;}
.ws7a{word-spacing:3.996000px;}
.ws3e{word-spacing:4.080000px;}
.ws60{word-spacing:4.158000px;}
.ws3d{word-spacing:4.260000px;}
.ws49{word-spacing:4.320000px;}
.ws29{word-spacing:4.380000px;}
.ws26{word-spacing:4.500000px;}
.ws28{word-spacing:4.560000px;}
.ws12{word-spacing:5.400000px;}
.ws77{word-spacing:5.508000px;}
.ws58{word-spacing:5.520000px;}
.ws34{word-spacing:5.760000px;}
.ws4a{word-spacing:6.360000px;}
.ws51{word-spacing:6.840000px;}
.ws9{word-spacing:7.392000px;}
.ws3c{word-spacing:7.500000px;}
.ws24{word-spacing:7.620000px;}
.ws2d{word-spacing:8.220000px;}
.ws75{word-spacing:8.316000px;}
.ws4e{word-spacing:8.700000px;}
.ws6b{word-spacing:10.422000px;}
.ws2{word-spacing:689.065500px;}
._d{margin-left:-7.228200px;}
._4{margin-left:-4.591200px;}
._1{margin-left:-2.807400px;}
._0{margin-left:-1.449600px;}
._6{width:1.300800px;}
._7{width:2.491200px;}
._a{width:3.777600px;}
._b{width:5.044800px;}
._5{width:6.638400px;}
._8{width:8.246400px;}
._c{width:9.322800px;}
._e{width:10.411200px;}
._9{width:13.886400px;}
._2{width:48.275400px;}
._3{width:560.834400px;}
.fc2{color:rgb(86,168,107);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:0.349800px;}
.fsa{font-size:34.980000px;}
.fs9{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:78.000000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:21.259800px;}
.y34{bottom:39.378900px;}
.y33{bottom:54.678900px;}
.y32{bottom:69.978900px;}
.y6b{bottom:72.283350px;}
.y8d{bottom:72.973050px;}
.y31{bottom:85.278900px;}
.y6a{bottom:88.783350px;}
.y68{bottom:90.240750px;}
.ybf{bottom:91.844400px;}
.y8c{bottom:93.973050px;}
.y67{bottom:111.240750px;}
.ybe{bottom:112.844400px;}
.y8b{bottom:114.973050px;}
.y66{bottom:132.240750px;}
.ybd{bottom:133.844400px;}
.y8a{bottom:135.973050px;}
.y65{bottom:153.240750px;}
.ybc{bottom:154.844400px;}
.y89{bottom:156.973050px;}
.y64{bottom:174.240750px;}
.ybb{bottom:175.844400px;}
.y88{bottom:177.973050px;}
.y63{bottom:195.240750px;}
.yba{bottom:196.844400px;}
.y87{bottom:198.973050px;}
.y62{bottom:216.240750px;}
.yb9{bottom:217.844400px;}
.y86{bottom:219.973050px;}
.y61{bottom:237.240750px;}
.yb8{bottom:238.844400px;}
.y85{bottom:240.973050px;}
.y60{bottom:258.240750px;}
.yb7{bottom:259.844400px;}
.y84{bottom:261.973050px;}
.y5f{bottom:279.240750px;}
.yb6{bottom:280.844400px;}
.y83{bottom:282.973050px;}
.y5e{bottom:300.240750px;}
.yb5{bottom:301.844400px;}
.y82{bottom:303.973050px;}
.y5d{bottom:321.240750px;}
.yb4{bottom:322.844400px;}
.y81{bottom:324.973050px;}
.y5c{bottom:342.240750px;}
.yb3{bottom:343.844400px;}
.y80{bottom:345.973050px;}
.y30{bottom:353.073300px;}
.y5b{bottom:363.240750px;}
.yb2{bottom:364.844400px;}
.y7f{bottom:366.973050px;}
.y2f{bottom:368.823300px;}
.y5a{bottom:384.240750px;}
.y2e{bottom:384.573300px;}
.yb1{bottom:385.844400px;}
.y7e{bottom:387.973050px;}
.y2d{bottom:400.323300px;}
.y59{bottom:405.240750px;}
.yb0{bottom:406.844400px;}
.y7d{bottom:408.973050px;}
.y2c{bottom:416.073300px;}
.y58{bottom:426.240750px;}
.yaf{bottom:427.844400px;}
.y7c{bottom:429.973050px;}
.y2b{bottom:431.823300px;}
.y57{bottom:447.240750px;}
.y2a{bottom:447.573300px;}
.yae{bottom:448.844400px;}
.y7b{bottom:450.973050px;}
.y26{bottom:458.719800px;}
.y29{bottom:463.323300px;}
.y56{bottom:468.240750px;}
.yad{bottom:469.844400px;}
.y7a{bottom:471.973050px;}
.y25{bottom:475.969800px;}
.y28{bottom:479.073300px;}
.y55{bottom:489.240750px;}
.yac{bottom:490.844400px;}
.y79{bottom:492.973050px;}
.y24{bottom:493.219800px;}
.y27{bottom:494.823300px;}
.y54{bottom:510.240750px;}
.yab{bottom:511.844400px;}
.y78{bottom:513.973050px;}
.y23{bottom:526.407000px;}
.y53{bottom:531.240750px;}
.yaa{bottom:532.844400px;}
.y77{bottom:534.973050px;}
.y6{bottom:548.466450px;}
.y52{bottom:552.240750px;}
.ya9{bottom:553.844400px;}
.y76{bottom:555.973050px;}
.y51{bottom:573.240750px;}
.ya8{bottom:574.844400px;}
.y36{bottom:576.635700px;}
.y75{bottom:576.973050px;}
.y50{bottom:594.240750px;}
.ya7{bottom:595.844400px;}
.y74{bottom:597.973050px;}
.y4f{bottom:615.240750px;}
.ya6{bottom:616.844400px;}
.y73{bottom:618.973050px;}
.y4e{bottom:636.240750px;}
.ya5{bottom:637.844400px;}
.y72{bottom:639.973050px;}
.y18{bottom:646.644150px;}
.y22{bottom:646.747500px;}
.y4d{bottom:657.240750px;}
.ya4{bottom:658.844400px;}
.y71{bottom:660.973050px;}
.y21{bottom:662.497500px;}
.y17{bottom:663.894150px;}
.y4c{bottom:678.240750px;}
.y20{bottom:678.247500px;}
.ya3{bottom:679.844400px;}
.y16{bottom:681.144150px;}
.y70{bottom:681.973050px;}
.y1f{bottom:693.997500px;}
.y4b{bottom:699.240750px;}
.ya2{bottom:700.844400px;}
.y6f{bottom:702.973050px;}
.y1e{bottom:709.747500px;}
.y15{bottom:715.494150px;}
.y4a{bottom:720.240750px;}
.ya1{bottom:721.844400px;}
.y6e{bottom:723.973050px;}
.y1d{bottom:725.497500px;}
.y49{bottom:741.240750px;}
.y1c{bottom:741.247500px;}
.ya0{bottom:742.844400px;}
.y6d{bottom:744.973050px;}
.y14{bottom:752.394150px;}
.y1b{bottom:756.997500px;}
.y48{bottom:762.240750px;}
.y9f{bottom:763.844400px;}
.y13{bottom:769.644150px;}
.y1a{bottom:772.747500px;}
.y47{bottom:783.240750px;}
.y9e{bottom:784.844400px;}
.y12{bottom:786.894150px;}
.y6c{bottom:786.973050px;}
.y19{bottom:788.497500px;}
.y46{bottom:804.240750px;}
.y9d{bottom:805.844400px;}
.y11{bottom:818.333250px;}
.y45{bottom:825.240750px;}
.y9c{bottom:826.844400px;}
.y44{bottom:846.240750px;}
.y9b{bottom:847.844400px;}
.y43{bottom:867.240750px;}
.y9a{bottom:868.844400px;}
.y10{bottom:873.530250px;}
.y42{bottom:888.240750px;}
.y99{bottom:889.844400px;}
.yf{bottom:891.530250px;}
.y41{bottom:909.240750px;}
.ye{bottom:909.530250px;}
.y98{bottom:910.844400px;}
.yd{bottom:927.530250px;}
.y40{bottom:930.240750px;}
.y97{bottom:931.844400px;}
.y3f{bottom:951.240750px;}
.y96{bottom:952.844400px;}
.yc{bottom:957.034200px;}
.y3e{bottom:972.240750px;}
.y95{bottom:973.844400px;}
.yb{bottom:980.434200px;}
.y3d{bottom:993.240750px;}
.y94{bottom:994.844400px;}
.y3c{bottom:1014.240750px;}
.y93{bottom:1015.844400px;}
.ya{bottom:1017.334200px;}
.y3b{bottom:1035.240750px;}
.y92{bottom:1036.844400px;}
.y9{bottom:1044.334200px;}
.y3a{bottom:1056.240750px;}
.y91{bottom:1057.844400px;}
.y8{bottom:1071.384150px;}
.y7{bottom:1071.385650px;}
.y39{bottom:1077.240750px;}
.y90{bottom:1078.844400px;}
.y69{bottom:1098.240750px;}
.y8f{bottom:1099.844400px;}
.y38{bottom:1119.240750px;}
.y8e{bottom:1120.844400px;}
.y5{bottom:1130.570850px;}
.y4{bottom:1148.570850px;}
.y3{bottom:1166.570850px;}
.y2{bottom:1184.570850px;}
.y1{bottom:1202.570850px;}
.y35{bottom:1204.595550px;}
.h4{height:0.267947px;}
.h2{height:36.768000px;}
.hb{height:36.873000px;}
.ha{height:39.066000px;}
.h8{height:41.364000px;}
.h3{height:43.440000px;}
.hd{height:45.960000px;}
.he{height:46.774680px;}
.h7{height:50.556000px;}
.h9{height:53.075684px;}
.hc{height:56.040000px;}
.h5{height:68.940000px;}
.h6{height:72.629883px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:29.763750px;}
.x7{left:63.779550px;}
.xf{left:69.779550px;}
.x13{left:77.053800px;}
.x14{left:85.039350px;}
.x9{left:94.920150px;}
.x15{left:97.795350px;}
.x2{left:198.738300px;}
.x1{left:204.840000px;}
.xd{left:224.156250px;}
.x3{left:248.891400px;}
.xe{left:280.753950px;}
.xc{left:283.412400px;}
.xa{left:290.077200px;}
.x8{left:291.873300px;}
.x4{left:297.682650px;}
.x12{left:306.796500px;}
.x10{left:338.716500px;}
.xb{left:346.912950px;}
.x5{left:409.547400px;}
.x6{left:846.162300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls8{letter-spacing:-0.720000pt;}
.ls2{letter-spacing:-0.680000pt;}
.ls3{letter-spacing:-0.600000pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.480000pt;}
.ls0{letter-spacing:5.066667pt;}
.ws5c{word-spacing:-53.333333pt;}
.wsb{word-spacing:-40.533333pt;}
.wsc{word-spacing:-13.866667pt;}
.ws5e{word-spacing:-12.480000pt;}
.ws5d{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.786667pt;}
.ws0{word-spacing:-11.093333pt;}
.ws30{word-spacing:-8.084267pt;}
.ws5{word-spacing:-5.066667pt;}
.ws76{word-spacing:-2.928000pt;}
.ws14{word-spacing:-2.666667pt;}
.ws48{word-spacing:-2.506667pt;}
.ws64{word-spacing:-2.496000pt;}
.ws42{word-spacing:-2.453333pt;}
.ws4c{word-spacing:-2.186667pt;}
.wsf{word-spacing:-2.133333pt;}
.ws65{word-spacing:-2.112000pt;}
.ws69{word-spacing:-2.064000pt;}
.wse{word-spacing:-1.973333pt;}
.ws4f{word-spacing:-1.920000pt;}
.ws55{word-spacing:-1.813333pt;}
.ws19{word-spacing:-1.706667pt;}
.ws5f{word-spacing:-1.680000pt;}
.ws56{word-spacing:-1.653333pt;}
.ws2b{word-spacing:-1.600000pt;}
.ws68{word-spacing:-1.536000pt;}
.ws54{word-spacing:-1.493333pt;}
.ws43{word-spacing:-1.386667pt;}
.ws21{word-spacing:-1.333333pt;}
.ws52{word-spacing:-1.280000pt;}
.ws4b{word-spacing:-1.226667pt;}
.ws33{word-spacing:-1.066667pt;}
.ws38{word-spacing:-1.013333pt;}
.ws36{word-spacing:-0.906667pt;}
.ws46{word-spacing:-0.853333pt;}
.ws6a{word-spacing:-0.816000pt;}
.ws37{word-spacing:-0.800000pt;}
.ws2c{word-spacing:-0.693333pt;}
.ws22{word-spacing:-0.640000pt;}
.ws70{word-spacing:-0.624000pt;}
.ws2e{word-spacing:-0.586667pt;}
.ws62{word-spacing:-0.576000pt;}
.ws32{word-spacing:-0.480000pt;}
.ws6c{word-spacing:-0.384000pt;}
.ws18{word-spacing:-0.373333pt;}
.ws20{word-spacing:-0.266667pt;}
.ws6{word-spacing:-0.256000pt;}
.ws74{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.106667pt;}
.ws73{word-spacing:-0.096000pt;}
.ws1{word-spacing:-0.080843pt;}
.ws4{word-spacing:0.000000pt;}
.ws7f{word-spacing:0.048000pt;}
.ws1c{word-spacing:0.106667pt;}
.ws7d{word-spacing:0.192000pt;}
.ws39{word-spacing:0.213333pt;}
.ws7e{word-spacing:0.288000pt;}
.ws41{word-spacing:0.373333pt;}
.ws1a{word-spacing:0.426667pt;}
.ws80{word-spacing:0.432000pt;}
.ws35{word-spacing:0.480000pt;}
.wsa{word-spacing:0.498667pt;}
.ws61{word-spacing:0.528000pt;}
.ws3f{word-spacing:0.533333pt;}
.ws3b{word-spacing:0.586667pt;}
.ws15{word-spacing:0.640000pt;}
.wsd{word-spacing:0.680000pt;}
.ws17{word-spacing:0.693333pt;}
.ws66{word-spacing:0.720000pt;}
.ws72{word-spacing:0.816000pt;}
.ws1b{word-spacing:0.853333pt;}
.ws3a{word-spacing:0.906667pt;}
.ws6d{word-spacing:0.912000pt;}
.ws8{word-spacing:0.938667pt;}
.ws23{word-spacing:1.013333pt;}
.ws78{word-spacing:1.056000pt;}
.ws1e{word-spacing:1.120000pt;}
.ws7c{word-spacing:1.200000pt;}
.ws5b{word-spacing:1.226667pt;}
.ws11{word-spacing:1.333333pt;}
.ws50{word-spacing:1.440000pt;}
.ws6e{word-spacing:1.632000pt;}
.ws47{word-spacing:1.706667pt;}
.ws7b{word-spacing:1.728000pt;}
.ws59{word-spacing:1.866667pt;}
.ws5a{word-spacing:1.973333pt;}
.ws31{word-spacing:2.026667pt;}
.ws7{word-spacing:2.048000pt;}
.ws27{word-spacing:2.080000pt;}
.ws1d{word-spacing:2.186667pt;}
.ws57{word-spacing:2.240000pt;}
.ws63{word-spacing:2.256000pt;}
.ws25{word-spacing:2.293333pt;}
.ws10{word-spacing:2.453333pt;}
.ws44{word-spacing:2.613333pt;}
.ws2f{word-spacing:2.666667pt;}
.ws1f{word-spacing:2.720000pt;}
.ws53{word-spacing:2.773333pt;}
.ws71{word-spacing:2.784000pt;}
.ws40{word-spacing:2.880000pt;}
.ws16{word-spacing:2.933333pt;}
.ws2a{word-spacing:2.986667pt;}
.ws45{word-spacing:3.040000pt;}
.ws79{word-spacing:3.072000pt;}
.ws6f{word-spacing:3.120000pt;}
.ws67{word-spacing:3.216000pt;}
.ws4d{word-spacing:3.360000pt;}
.ws7a{word-spacing:3.552000pt;}
.ws3e{word-spacing:3.626667pt;}
.ws60{word-spacing:3.696000pt;}
.ws3d{word-spacing:3.786667pt;}
.ws49{word-spacing:3.840000pt;}
.ws29{word-spacing:3.893333pt;}
.ws26{word-spacing:4.000000pt;}
.ws28{word-spacing:4.053333pt;}
.ws12{word-spacing:4.800000pt;}
.ws77{word-spacing:4.896000pt;}
.ws58{word-spacing:4.906667pt;}
.ws34{word-spacing:5.120000pt;}
.ws4a{word-spacing:5.653333pt;}
.ws51{word-spacing:6.080000pt;}
.ws9{word-spacing:6.570667pt;}
.ws3c{word-spacing:6.666667pt;}
.ws24{word-spacing:6.773333pt;}
.ws2d{word-spacing:7.306667pt;}
.ws75{word-spacing:7.392000pt;}
.ws4e{word-spacing:7.733333pt;}
.ws6b{word-spacing:9.264000pt;}
.ws2{word-spacing:612.502667pt;}
._d{margin-left:-6.425067pt;}
._4{margin-left:-4.081067pt;}
._1{margin-left:-2.495467pt;}
._0{margin-left:-1.288533pt;}
._6{width:1.156267pt;}
._7{width:2.214400pt;}
._a{width:3.357867pt;}
._b{width:4.484267pt;}
._5{width:5.900800pt;}
._8{width:7.330133pt;}
._c{width:8.286933pt;}
._e{width:9.254400pt;}
._9{width:12.343467pt;}
._2{width:42.911467pt;}
._3{width:498.519467pt;}
.fs2{font-size:0.310933pt;}
.fsa{font-size:31.093333pt;}
.fs9{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:69.333333pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:18.897600pt;}
.y34{bottom:35.003467pt;}
.y33{bottom:48.603467pt;}
.y32{bottom:62.203467pt;}
.y6b{bottom:64.251867pt;}
.y8d{bottom:64.864933pt;}
.y31{bottom:75.803467pt;}
.y6a{bottom:78.918533pt;}
.y68{bottom:80.214000pt;}
.ybf{bottom:81.639467pt;}
.y8c{bottom:83.531600pt;}
.y67{bottom:98.880667pt;}
.ybe{bottom:100.306133pt;}
.y8b{bottom:102.198267pt;}
.y66{bottom:117.547333pt;}
.ybd{bottom:118.972800pt;}
.y8a{bottom:120.864933pt;}
.y65{bottom:136.214000pt;}
.ybc{bottom:137.639467pt;}
.y89{bottom:139.531600pt;}
.y64{bottom:154.880667pt;}
.ybb{bottom:156.306133pt;}
.y88{bottom:158.198267pt;}
.y63{bottom:173.547333pt;}
.yba{bottom:174.972800pt;}
.y87{bottom:176.864933pt;}
.y62{bottom:192.214000pt;}
.yb9{bottom:193.639467pt;}
.y86{bottom:195.531600pt;}
.y61{bottom:210.880667pt;}
.yb8{bottom:212.306133pt;}
.y85{bottom:214.198267pt;}
.y60{bottom:229.547333pt;}
.yb7{bottom:230.972800pt;}
.y84{bottom:232.864933pt;}
.y5f{bottom:248.214000pt;}
.yb6{bottom:249.639467pt;}
.y83{bottom:251.531600pt;}
.y5e{bottom:266.880667pt;}
.yb5{bottom:268.306133pt;}
.y82{bottom:270.198267pt;}
.y5d{bottom:285.547333pt;}
.yb4{bottom:286.972800pt;}
.y81{bottom:288.864933pt;}
.y5c{bottom:304.214000pt;}
.yb3{bottom:305.639467pt;}
.y80{bottom:307.531600pt;}
.y30{bottom:313.842933pt;}
.y5b{bottom:322.880667pt;}
.yb2{bottom:324.306133pt;}
.y7f{bottom:326.198267pt;}
.y2f{bottom:327.842933pt;}
.y5a{bottom:341.547333pt;}
.y2e{bottom:341.842933pt;}
.yb1{bottom:342.972800pt;}
.y7e{bottom:344.864933pt;}
.y2d{bottom:355.842933pt;}
.y59{bottom:360.214000pt;}
.yb0{bottom:361.639467pt;}
.y7d{bottom:363.531600pt;}
.y2c{bottom:369.842933pt;}
.y58{bottom:378.880667pt;}
.yaf{bottom:380.306133pt;}
.y7c{bottom:382.198267pt;}
.y2b{bottom:383.842933pt;}
.y57{bottom:397.547333pt;}
.y2a{bottom:397.842933pt;}
.yae{bottom:398.972800pt;}
.y7b{bottom:400.864933pt;}
.y26{bottom:407.750933pt;}
.y29{bottom:411.842933pt;}
.y56{bottom:416.214000pt;}
.yad{bottom:417.639467pt;}
.y7a{bottom:419.531600pt;}
.y25{bottom:423.084267pt;}
.y28{bottom:425.842933pt;}
.y55{bottom:434.880667pt;}
.yac{bottom:436.306133pt;}
.y79{bottom:438.198267pt;}
.y24{bottom:438.417600pt;}
.y27{bottom:439.842933pt;}
.y54{bottom:453.547333pt;}
.yab{bottom:454.972800pt;}
.y78{bottom:456.864933pt;}
.y23{bottom:467.917333pt;}
.y53{bottom:472.214000pt;}
.yaa{bottom:473.639467pt;}
.y77{bottom:475.531600pt;}
.y6{bottom:487.525733pt;}
.y52{bottom:490.880667pt;}
.ya9{bottom:492.306133pt;}
.y76{bottom:494.198267pt;}
.y51{bottom:509.547333pt;}
.ya8{bottom:510.972800pt;}
.y36{bottom:512.565067pt;}
.y75{bottom:512.864933pt;}
.y50{bottom:528.214000pt;}
.ya7{bottom:529.639467pt;}
.y74{bottom:531.531600pt;}
.y4f{bottom:546.880667pt;}
.ya6{bottom:548.306133pt;}
.y73{bottom:550.198267pt;}
.y4e{bottom:565.547333pt;}
.ya5{bottom:566.972800pt;}
.y72{bottom:568.864933pt;}
.y18{bottom:574.794800pt;}
.y22{bottom:574.886667pt;}
.y4d{bottom:584.214000pt;}
.ya4{bottom:585.639467pt;}
.y71{bottom:587.531600pt;}
.y21{bottom:588.886667pt;}
.y17{bottom:590.128133pt;}
.y4c{bottom:602.880667pt;}
.y20{bottom:602.886667pt;}
.ya3{bottom:604.306133pt;}
.y16{bottom:605.461467pt;}
.y70{bottom:606.198267pt;}
.y1f{bottom:616.886667pt;}
.y4b{bottom:621.547333pt;}
.ya2{bottom:622.972800pt;}
.y6f{bottom:624.864933pt;}
.y1e{bottom:630.886667pt;}
.y15{bottom:635.994800pt;}
.y4a{bottom:640.214000pt;}
.ya1{bottom:641.639467pt;}
.y6e{bottom:643.531600pt;}
.y1d{bottom:644.886667pt;}
.y49{bottom:658.880667pt;}
.y1c{bottom:658.886667pt;}
.ya0{bottom:660.306133pt;}
.y6d{bottom:662.198267pt;}
.y14{bottom:668.794800pt;}
.y1b{bottom:672.886667pt;}
.y48{bottom:677.547333pt;}
.y9f{bottom:678.972800pt;}
.y13{bottom:684.128133pt;}
.y1a{bottom:686.886667pt;}
.y47{bottom:696.214000pt;}
.y9e{bottom:697.639467pt;}
.y12{bottom:699.461467pt;}
.y6c{bottom:699.531600pt;}
.y19{bottom:700.886667pt;}
.y46{bottom:714.880667pt;}
.y9d{bottom:716.306133pt;}
.y11{bottom:727.407333pt;}
.y45{bottom:733.547333pt;}
.y9c{bottom:734.972800pt;}
.y44{bottom:752.214000pt;}
.y9b{bottom:753.639467pt;}
.y43{bottom:770.880667pt;}
.y9a{bottom:772.306133pt;}
.y10{bottom:776.471333pt;}
.y42{bottom:789.547333pt;}
.y99{bottom:790.972800pt;}
.yf{bottom:792.471333pt;}
.y41{bottom:808.214000pt;}
.ye{bottom:808.471333pt;}
.y98{bottom:809.639467pt;}
.yd{bottom:824.471333pt;}
.y40{bottom:826.880667pt;}
.y97{bottom:828.306133pt;}
.y3f{bottom:845.547333pt;}
.y96{bottom:846.972800pt;}
.yc{bottom:850.697067pt;}
.y3e{bottom:864.214000pt;}
.y95{bottom:865.639467pt;}
.yb{bottom:871.497067pt;}
.y3d{bottom:882.880667pt;}
.y94{bottom:884.306133pt;}
.y3c{bottom:901.547333pt;}
.y93{bottom:902.972800pt;}
.ya{bottom:904.297067pt;}
.y3b{bottom:920.214000pt;}
.y92{bottom:921.639467pt;}
.y9{bottom:928.297067pt;}
.y3a{bottom:938.880667pt;}
.y91{bottom:940.306133pt;}
.y8{bottom:952.341467pt;}
.y7{bottom:952.342800pt;}
.y39{bottom:957.547333pt;}
.y90{bottom:958.972800pt;}
.y69{bottom:976.214000pt;}
.y8f{bottom:977.639467pt;}
.y38{bottom:994.880667pt;}
.y8e{bottom:996.306133pt;}
.y5{bottom:1004.951867pt;}
.y4{bottom:1020.951867pt;}
.y3{bottom:1036.951867pt;}
.y2{bottom:1052.951867pt;}
.y1{bottom:1068.951867pt;}
.y35{bottom:1070.751600pt;}
.h4{height:0.238175pt;}
.h2{height:32.682667pt;}
.hb{height:32.776000pt;}
.ha{height:34.725333pt;}
.h8{height:36.768000pt;}
.h3{height:38.613333pt;}
.hd{height:40.853333pt;}
.he{height:41.577493pt;}
.h7{height:44.938667pt;}
.h9{height:47.178385pt;}
.hc{height:49.813333pt;}
.h5{height:61.280000pt;}
.h6{height:64.559896pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:26.456667pt;}
.x7{left:56.692933pt;}
.xf{left:62.026267pt;}
.x13{left:68.492267pt;}
.x14{left:75.590533pt;}
.x9{left:84.373467pt;}
.x15{left:86.929200pt;}
.x2{left:176.656267pt;}
.x1{left:182.080000pt;}
.xd{left:199.250000pt;}
.x3{left:221.236800pt;}
.xe{left:249.559067pt;}
.xc{left:251.922133pt;}
.xa{left:257.846400pt;}
.x8{left:259.442933pt;}
.x4{left:264.606800pt;}
.x12{left:272.708000pt;}
.x10{left:301.081333pt;}
.xb{left:308.367067pt;}
.x5{left:364.042133pt;}
.x6{left:752.144267pt;}
}

