
    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_ebe05fb9b4b1ec0830d97c79.woff')format("woff");}.ff1{font-family:ff1;line-height:1.007812;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_30a459d866b4d0552c4fa646.woff')format("woff");}.ff2{font-family:ff2;line-height:0.975586;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_c0943b4f71664e6f2b1d7414.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_52602d6e80f0674ebacd6c53.woff')format("woff");}.ff4{font-family:ff4;line-height:1.187012;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_642d798972d970210b4cccc4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.187012;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_4867f4a88c4ce01e38cfe4fe.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_b31e68f02c14781ef970e1ac.woff')format("woff");}.ff7{font-family:ff7;line-height:0.706543;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_2e48e62b1ffe3af043cec50d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_6eb00dec1a3f90f359a9f569.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_7a3ccb3d50dfab96ce9b3314.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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:ffb;src:url('chunks/assets/font_6dada7eba5163ff15202ee9a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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:ffc;src:url('chunks/assets/font_618ea879c1b31ac687fc2dae.woff')format("woff");}.ffc{font-family:ffc;line-height:1.106934;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:ffd;src:url('chunks/assets/font_a73588a538fc579e3999d141.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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:ffe;src:url('chunks/assets/font_508bbb3bba37f7261755f46c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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:fff;src:url('chunks/assets/font_a0e8bfa904663507f79e8766.woff')format("woff");}.fff{font-family:fff;line-height:0.910156;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:ff10;src:url('chunks/assets/font_af793cc0c522ed74e5cfe98e.woff')format("woff");}.ff10{font-family:ff10;line-height:1.311035;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:ff11;src:url('chunks/assets/font_fde45d5acddba21ee076628d.woff')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-9.360000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls11{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.414600px;}
.ls3{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.305400px;}
.ls21{letter-spacing:-0.269400px;}
.ls7{letter-spacing:-0.253200px;}
.ls22{letter-spacing:-0.181200px;}
.ls12{letter-spacing:-0.178800px;}
.ls13{letter-spacing:-0.109200px;}
.ls20{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.017280px;}
.ls1{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.045360px;}
.ls9{letter-spacing:0.089280px;}
.lsd{letter-spacing:0.092160px;}
.ls18{letter-spacing:0.105600px;}
.ls14{letter-spacing:0.129600px;}
.lsc{letter-spacing:0.262080px;}
.ls4{letter-spacing:0.269280px;}
.lsb{letter-spacing:0.290880px;}
.ls1a{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.619200px;}
.ls16{letter-spacing:0.630720px;}
.ls1f{letter-spacing:0.666000px;}
.ls0{letter-spacing:0.734536px;}
.ls8{letter-spacing:1.339200px;}
.ls15{letter-spacing:1.350720px;}
.lsf{letter-spacing:4.230720px;}
.lse{letter-spacing:5.345280px;}
.ls1d{letter-spacing:6.426720px;}
.ls1c{letter-spacing:6.785280px;}
.ls19{letter-spacing:8.550720px;}
.ls17{letter-spacing:12.870720px;}
.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;}
}
.ws11{word-spacing:-59.760000px;}
.ws15{word-spacing:-48.240000px;}
.ws6{word-spacing:-21.060000px;}
.ws7{word-spacing:-20.700000px;}
.wsc{word-spacing:-18.414720px;}
.wsd{word-spacing:-18.305520px;}
.wse{word-spacing:-18.109320px;}
.wsf{word-spacing:-16.613280px;}
.ws10{word-spacing:-16.506480px;}
.ws2{word-spacing:-15.100515px;}
.wsb{word-spacing:-13.410720px;}
.ws8{word-spacing:-13.140000px;}
.ws4{word-spacing:-12.583762px;}
.ws3{word-spacing:-12.403994px;}
.ws13{word-spacing:-12.060000px;}
.ws17{word-spacing:-11.878800px;}
.ws16{word-spacing:-11.790600px;}
.ws18{word-spacing:-11.700000px;}
.ws9{word-spacing:-11.609280px;}
.ws0{word-spacing:-11.325386px;}
.ws1{word-spacing:-10.067010px;}
.ws12{word-spacing:-9.720000px;}
.wsa{word-spacing:-8.153520px;}
.ws14{word-spacing:-7.560000px;}
.ws5{word-spacing:0.000000px;}
._1a{margin-left:-230.760000px;}
._6{margin-left:-8.655941px;}
._5{margin-left:-6.077143px;}
._3{margin-left:-4.673982px;}
._2{margin-left:-2.141739px;}
._4{margin-left:-1.012954px;}
._0{width:1.136598px;}
._1{width:2.528350px;}
._7{width:4.305600px;}
._8{width:5.431680px;}
._f{width:7.271562px;}
._9{width:9.008640px;}
._a{width:10.487979px;}
._b{width:12.332181px;}
._12{width:13.395083px;}
._18{width:14.471748px;}
._e{width:15.765120px;}
._15{width:17.330880px;}
._d{width:19.453461px;}
._c{width:20.733120px;}
._19{width:21.765124px;}
._10{width:22.786560px;}
._11{width:24.142255px;}
._13{width:25.347861px;}
._17{width:27.092160px;}
._16{width:28.439019px;}
._14{width:39.147840px;}
.fc6{color:rgb(0,0,255);}
.fc1{color:rgb(56,116,161);}
.fc7{color:rgb(180,180,180);}
.fc5{color:rgb(127,127,127);}
.fc4{color:rgb(64,64,64);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:24.000000px;}
.fsd{font-size:30.240000px;}
.fs3{font-size:31.670102px;}
.fs0{font-size:35.628865px;}
.fs10{font-size:38.880000px;}
.fs2{font-size:39.587627px;}
.fsc{font-size:41.760000px;}
.fs4{font-size:47.505153px;}
.fse{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fsf{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fs1{font-size:79.175255px;}
.fs7{font-size:84.240000px;}
.fs6{font-size:108.000000px;}
.fs9{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.494850px;}
.yb2{bottom:2.880000px;}
.yb4{bottom:3.060000px;}
.y2b{bottom:4.860000px;}
.yb9{bottom:7.500000px;}
.y27{bottom:9.360000px;}
.y15{bottom:24.742310px;}
.y2a{bottom:29.520000px;}
.y14{bottom:47.505196px;}
.y29{bottom:57.600000px;}
.y53{bottom:90.720000px;}
.y78{bottom:98.280000px;}
.y25{bottom:111.600000px;}
.y52{bottom:119.160000px;}
.y77{bottom:126.720000px;}
.y9a{bottom:137.880000px;}
.y24{bottom:145.980000px;}
.y51{bottom:147.600000px;}
.y76{bottom:155.880000px;}
.yb0{bottom:158.220000px;}
.y99{bottom:166.320000px;}
.y50{bottom:176.250000px;}
.yb8{bottom:177.150000px;}
.y75{bottom:186.150000px;}
.y23{bottom:188.850000px;}
.yb7{bottom:191.550000px;}
.y98{bottom:194.790000px;}
.y4f{bottom:204.690000px;}
.yb6{bottom:206.130000px;}
.y74{bottom:215.850000px;}
.yb5{bottom:220.710000px;}
.y97{bottom:223.410000px;}
.y4e{bottom:233.130000px;}
.yb3{bottom:235.290000px;}
.y73{bottom:245.010000px;}
.y22{bottom:246.810000px;}
.yb1{bottom:249.870000px;}
.y96{bottom:251.850000px;}
.y4d{bottom:261.570000px;}
.y72{bottom:274.710000px;}
.y95{bottom:280.290000px;}
.yaf{bottom:281.550000px;}
.y4c{bottom:290.010000px;}
.yae{bottom:298.650000px;}
.y71{bottom:303.150000px;}
.y21{bottom:304.590000px;}
.y94{bottom:308.730000px;}
.yad{bottom:315.930000px;}
.y4b{bottom:318.450000px;}
.y70{bottom:331.590000px;}
.yac{bottom:333.930000px;}
.y93{bottom:337.170000px;}
.y4a{bottom:346.890000px;}
.yab{bottom:353.910000px;}
.y20{bottom:358.050000px;}
.y6f{bottom:360.030000px;}
.y92{bottom:365.610000px;}
.yaa{bottom:371.190000px;}
.y49{bottom:375.330000px;}
.y6e{bottom:388.470000px;}
.y91{bottom:394.050000px;}
.y48{bottom:403.950000px;}
.y1f{bottom:407.550000px;}
.ya9{bottom:413.895000px;}
.y6d{bottom:417.675000px;}
.y90{bottom:422.535000px;}
.y47{bottom:432.435000px;}
.y6c{bottom:447.375000px;}
.y8f{bottom:450.975000px;}
.y1e{bottom:459.795000px;}
.y46{bottom:460.875000px;}
.y6b{bottom:475.815000px;}
.y8e{bottom:479.595000px;}
.y1d{bottom:485.715000px;}
.y45{bottom:489.315000px;}
.y6a{bottom:504.255000px;}
.y8d{bottom:508.035000px;}
.y44{bottom:517.755000px;}
.y1c{bottom:526.215000px;}
.y69{bottom:532.695000px;}
.y8c{bottom:536.475000px;}
.y43{bottom:546.195000px;}
.y68{bottom:561.135000px;}
.y8b{bottom:564.915000px;}
.y1b{bottom:567.075000px;}
.y42{bottom:574.635000px;}
.y67{bottom:589.575000px;}
.y1a{bottom:592.815000px;}
.y8a{bottom:593.895000px;}
.y41{bottom:603.075000px;}
.y66{bottom:618.015000px;}
.y19{bottom:618.555000px;}
.y89{bottom:623.595000px;}
.ya8{bottom:629.535000px;}
.y40{bottom:631.515000px;}
.y65{bottom:647.175000px;}
.y18{bottom:648.435000px;}
.y88{bottom:652.215000px;}
.ya7{bottom:655.635000px;}
.y3f{bottom:659.985000px;}
.y64{bottom:676.905000px;}
.y87{bottom:680.685000px;}
.ya6{bottom:681.405000px;}
.y17{bottom:686.985000px;}
.y3e{bottom:688.605000px;}
.yb{bottom:689.814451px;}
.y63{bottom:705.885000px;}
.ya5{bottom:707.325000px;}
.y86{bottom:709.125000px;}
.y3d{bottom:717.045000px;}
.ya{bottom:725.443315px;}
.ya4{bottom:733.065000px;}
.y16{bottom:735.405000px;}
.y62{bottom:735.765000px;}
.y85{bottom:737.565000px;}
.y9{bottom:739.298985px;}
.y3c{bottom:745.665000px;}
.ya3{bottom:758.985000px;}
.y61{bottom:764.385000px;}
.y84{bottom:766.005000px;}
.y8{bottom:769.979396px;}
.y3b{bottom:773.925000px;}
.ya2{bottom:785.085000px;}
.y60{bottom:792.645000px;}
.y83{bottom:794.445000px;}
.y3a{bottom:802.365000px;}
.ya1{bottom:810.645000px;}
.y5f{bottom:821.085000px;}
.y82{bottom:822.885000px;}
.y13{bottom:823.422693px;}
.y39{bottom:830.805000px;}
.ya0{bottom:836.745000px;}
.y12{bottom:846.185579px;}
.y5e{bottom:849.525000px;}
.y81{bottom:851.325000px;}
.y38{bottom:859.245000px;}
.y11{bottom:862.020630px;}
.y9f{bottom:862.665000px;}
.y10{bottom:877.855681px;}
.y5d{bottom:877.965000px;}
.y80{bottom:879.765000px;}
.y37{bottom:887.685000px;}
.y9e{bottom:888.405000px;}
.y5c{bottom:906.450000px;}
.y7f{bottom:908.430000px;}
.y9d{bottom:914.370000px;}
.yf{bottom:915.463927px;}
.y36{bottom:916.170000px;}
.y5b{bottom:935.610000px;}
.y7e{bottom:936.870000px;}
.ye{bottom:938.226813px;}
.y9c{bottom:940.110000px;}
.y35{bottom:944.790000px;}
.yd{bottom:954.061864px;}
.y5a{bottom:965.310000px;}
.y7d{bottom:965.850000px;}
.y9b{bottom:967.290000px;}
.yc{bottom:969.896915px;}
.y34{bottom:973.410000px;}
.y59{bottom:993.750000px;}
.y7c{bottom:995.550000px;}
.y7{bottom:995.628872px;}
.y33{bottom:1002.750000px;}
.y58{bottom:1022.190000px;}
.y7b{bottom:1023.990000px;}
.y6{bottom:1032.247428px;}
.y32{bottom:1035.150000px;}
.y31{bottom:1049.010000px;}
.y5{bottom:1049.072169px;}
.y57{bottom:1051.350000px;}
.y7a{bottom:1052.610000px;}
.y30{bottom:1062.870000px;}
.y2f{bottom:1076.550000px;}
.y56{bottom:1081.050000px;}
.y2e{bottom:1094.730000px;}
.y4{bottom:1096.577322px;}
.y55{bottom:1109.490000px;}
.y2d{bottom:1114.170000px;}
.y2c{bottom:1135.230000px;}
.y3{bottom:1137.154640px;}
.y54{bottom:1137.930000px;}
.y79{bottom:1138.110000px;}
.y28{bottom:1157.760000px;}
.y2{bottom:1179.711340px;}
.y26{bottom:1182.780000px;}
.h1b{height:13.680000px;}
.h1d{height:13.860000px;}
.h1f{height:13.860150px;}
.h12{height:21.598500px;}
.hf{height:21.600000px;}
.h20{height:25.031250px;}
.h5{height:25.329896px;}
.h2{height:28.496133px;}
.h7{height:30.077318px;}
.h16{height:31.539375px;}
.h4{height:31.662370px;}
.h6{height:37.994844px;}
.h1c{height:47.344922px;}
.h1e{height:48.616875px;}
.ha{height:54.628594px;}
.h1a{height:58.651172px;}
.h18{height:59.383125px;}
.h19{height:62.327813px;}
.h3{height:63.324740px;}
.hc{height:65.144531px;}
.h17{height:69.086250px;}
.h11{height:70.664062px;}
.h15{height:73.794375px;}
.h14{height:75.093750px;}
.h10{height:75.462891px;}
.he{height:76.219102px;}
.h13{height:81.101250px;}
.hb{height:97.716797px;}
.hd{height:108.791367px;}
.h8{height:1262.880000px;}
.h9{height:1263.000000px;}
.h1{height:1295.505150px;}
.h0{height:1296.000000px;}
.wa{width:44.460000px;}
.w4{width:47.865000px;}
.we{width:64.080000px;}
.w6{width:64.620000px;}
.wc{width:68.256000px;}
.wb{width:70.020000px;}
.wd{width:74.700000px;}
.w7{width:74.736000px;}
.w8{width:74.880000px;}
.w5{width:76.140000px;}
.w9{width:76.176000px;}
.w3{width:678.510000px;}
.w0{width:864.000000px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.740000px;}
.x1b{left:9.540000px;}
.x26{left:10.800000px;}
.x19{left:13.320000px;}
.x15{left:14.940000px;}
.x25{left:16.920000px;}
.x24{left:19.620000px;}
.x27{left:23.760000px;}
.x28{left:25.740000px;}
.x21{left:31.140000px;}
.x1d{left:32.400000px;}
.x13{left:54.523500px;}
.x1{left:59.381441px;}
.x8{left:64.329895px;}
.x29{left:75.000000px;}
.x4{left:98.969069px;}
.x5{left:109.855666px;}
.x12{left:119.026500px;}
.x9{left:127.656000px;}
.x3{left:138.556696px;}
.xd{left:154.830000px;}
.xa{left:181.110000px;}
.x17{left:196.770000px;}
.x18{left:262.110000px;}
.x11{left:294.195000px;}
.xf{left:302.835000px;}
.xe{left:319.935000px;}
.xb{left:332.175000px;}
.x1a{left:337.575000px;}
.x10{left:351.795000px;}
.x1c{left:413.175000px;}
.x2{left:431.505139px;}
.xc{left:467.895000px;}
.x6{left:472.082457px;}
.x7{left:482.969054px;}
.x1e{left:490.065000px;}
.x1f{left:535.245000px;}
.x20{left:605.985000px;}
.x22{left:674.970000px;}
.x23{left:750.390000px;}
.x14{left:787.110000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-8.320000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.368533pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.271467pt;}
.ls21{letter-spacing:-0.239467pt;}
.ls7{letter-spacing:-0.225067pt;}
.ls22{letter-spacing:-0.161067pt;}
.ls12{letter-spacing:-0.158933pt;}
.ls13{letter-spacing:-0.097067pt;}
.ls20{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.015360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.040320pt;}
.ls9{letter-spacing:0.079360pt;}
.lsd{letter-spacing:0.081920pt;}
.ls18{letter-spacing:0.093867pt;}
.ls14{letter-spacing:0.115200pt;}
.lsc{letter-spacing:0.232960pt;}
.ls4{letter-spacing:0.239360pt;}
.lsb{letter-spacing:0.258560pt;}
.ls1a{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.550400pt;}
.ls16{letter-spacing:0.560640pt;}
.ls1f{letter-spacing:0.592000pt;}
.ls0{letter-spacing:0.652921pt;}
.ls8{letter-spacing:1.190400pt;}
.ls15{letter-spacing:1.200640pt;}
.lsf{letter-spacing:3.760640pt;}
.lse{letter-spacing:4.751360pt;}
.ls1d{letter-spacing:5.712640pt;}
.ls1c{letter-spacing:6.031360pt;}
.ls19{letter-spacing:7.600640pt;}
.ls17{letter-spacing:11.440640pt;}
.ws11{word-spacing:-53.120000pt;}
.ws15{word-spacing:-42.880000pt;}
.ws6{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.400000pt;}
.wsc{word-spacing:-16.368640pt;}
.wsd{word-spacing:-16.271573pt;}
.wse{word-spacing:-16.097173pt;}
.wsf{word-spacing:-14.767360pt;}
.ws10{word-spacing:-14.672427pt;}
.ws2{word-spacing:-13.422680pt;}
.wsb{word-spacing:-11.920640pt;}
.ws8{word-spacing:-11.680000pt;}
.ws4{word-spacing:-11.185566pt;}
.ws3{word-spacing:-11.025773pt;}
.ws13{word-spacing:-10.720000pt;}
.ws17{word-spacing:-10.558933pt;}
.ws16{word-spacing:-10.480533pt;}
.ws18{word-spacing:-10.400000pt;}
.ws9{word-spacing:-10.319360pt;}
.ws0{word-spacing:-10.067010pt;}
.ws1{word-spacing:-8.948453pt;}
.ws12{word-spacing:-8.640000pt;}
.wsa{word-spacing:-7.247573pt;}
.ws14{word-spacing:-6.720000pt;}
.ws5{word-spacing:0.000000pt;}
._1a{margin-left:-205.120000pt;}
._6{margin-left:-7.694169pt;}
._5{margin-left:-5.401905pt;}
._3{margin-left:-4.154651pt;}
._2{margin-left:-1.903768pt;}
._4{margin-left:-0.900404pt;}
._0{width:1.010309pt;}
._1{width:2.247422pt;}
._7{width:3.827200pt;}
._8{width:4.828160pt;}
._f{width:6.463611pt;}
._9{width:8.007680pt;}
._a{width:9.322648pt;}
._b{width:10.961939pt;}
._12{width:11.906741pt;}
._18{width:12.863776pt;}
._e{width:14.013440pt;}
._15{width:15.405227pt;}
._d{width:17.291965pt;}
._c{width:18.429440pt;}
._19{width:19.346777pt;}
._10{width:20.254720pt;}
._11{width:21.459783pt;}
._13{width:22.531432pt;}
._17{width:24.081920pt;}
._16{width:25.279128pt;}
._14{width:34.798080pt;}
.fs11{font-size:21.333333pt;}
.fsd{font-size:26.880000pt;}
.fs3{font-size:28.151202pt;}
.fs0{font-size:31.670102pt;}
.fs10{font-size:34.560000pt;}
.fs2{font-size:35.189002pt;}
.fsc{font-size:37.120000pt;}
.fs4{font-size:42.226803pt;}
.fse{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fsf{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fs1{font-size:70.378004pt;}
.fs7{font-size:74.880000pt;}
.fs6{font-size:96.000000pt;}
.fs9{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.439867pt;}
.yb2{bottom:2.560000pt;}
.yb4{bottom:2.720000pt;}
.y2b{bottom:4.320000pt;}
.yb9{bottom:6.666667pt;}
.y27{bottom:8.320000pt;}
.y15{bottom:21.993165pt;}
.y2a{bottom:26.240000pt;}
.y14{bottom:42.226841pt;}
.y29{bottom:51.200000pt;}
.y53{bottom:80.640000pt;}
.y78{bottom:87.360000pt;}
.y25{bottom:99.200000pt;}
.y52{bottom:105.920000pt;}
.y77{bottom:112.640000pt;}
.y9a{bottom:122.560000pt;}
.y24{bottom:129.760000pt;}
.y51{bottom:131.200000pt;}
.y76{bottom:138.560000pt;}
.yb0{bottom:140.640000pt;}
.y99{bottom:147.840000pt;}
.y50{bottom:156.666667pt;}
.yb8{bottom:157.466667pt;}
.y75{bottom:165.466667pt;}
.y23{bottom:167.866667pt;}
.yb7{bottom:170.266667pt;}
.y98{bottom:173.146667pt;}
.y4f{bottom:181.946667pt;}
.yb6{bottom:183.226667pt;}
.y74{bottom:191.866667pt;}
.yb5{bottom:196.186667pt;}
.y97{bottom:198.586667pt;}
.y4e{bottom:207.226667pt;}
.yb3{bottom:209.146667pt;}
.y73{bottom:217.786667pt;}
.y22{bottom:219.386667pt;}
.yb1{bottom:222.106667pt;}
.y96{bottom:223.866667pt;}
.y4d{bottom:232.506667pt;}
.y72{bottom:244.186667pt;}
.y95{bottom:249.146667pt;}
.yaf{bottom:250.266667pt;}
.y4c{bottom:257.786667pt;}
.yae{bottom:265.466667pt;}
.y71{bottom:269.466667pt;}
.y21{bottom:270.746667pt;}
.y94{bottom:274.426667pt;}
.yad{bottom:280.826667pt;}
.y4b{bottom:283.066667pt;}
.y70{bottom:294.746667pt;}
.yac{bottom:296.826667pt;}
.y93{bottom:299.706667pt;}
.y4a{bottom:308.346667pt;}
.yab{bottom:314.586667pt;}
.y20{bottom:318.266667pt;}
.y6f{bottom:320.026667pt;}
.y92{bottom:324.986667pt;}
.yaa{bottom:329.946667pt;}
.y49{bottom:333.626667pt;}
.y6e{bottom:345.306667pt;}
.y91{bottom:350.266667pt;}
.y48{bottom:359.066667pt;}
.y1f{bottom:362.266667pt;}
.ya9{bottom:367.906667pt;}
.y6d{bottom:371.266667pt;}
.y90{bottom:375.586667pt;}
.y47{bottom:384.386667pt;}
.y6c{bottom:397.666667pt;}
.y8f{bottom:400.866667pt;}
.y1e{bottom:408.706667pt;}
.y46{bottom:409.666667pt;}
.y6b{bottom:422.946667pt;}
.y8e{bottom:426.306667pt;}
.y1d{bottom:431.746667pt;}
.y45{bottom:434.946667pt;}
.y6a{bottom:448.226667pt;}
.y8d{bottom:451.586667pt;}
.y44{bottom:460.226667pt;}
.y1c{bottom:467.746667pt;}
.y69{bottom:473.506667pt;}
.y8c{bottom:476.866667pt;}
.y43{bottom:485.506667pt;}
.y68{bottom:498.786667pt;}
.y8b{bottom:502.146667pt;}
.y1b{bottom:504.066667pt;}
.y42{bottom:510.786667pt;}
.y67{bottom:524.066667pt;}
.y1a{bottom:526.946667pt;}
.y8a{bottom:527.906667pt;}
.y41{bottom:536.066667pt;}
.y66{bottom:549.346667pt;}
.y19{bottom:549.826667pt;}
.y89{bottom:554.306667pt;}
.ya8{bottom:559.586667pt;}
.y40{bottom:561.346667pt;}
.y65{bottom:575.266667pt;}
.y18{bottom:576.386667pt;}
.y88{bottom:579.746667pt;}
.ya7{bottom:582.786667pt;}
.y3f{bottom:586.653333pt;}
.y64{bottom:601.693333pt;}
.y87{bottom:605.053333pt;}
.ya6{bottom:605.693333pt;}
.y17{bottom:610.653333pt;}
.y3e{bottom:612.093333pt;}
.yb{bottom:613.168401pt;}
.y63{bottom:627.453333pt;}
.ya5{bottom:628.733333pt;}
.y86{bottom:630.333333pt;}
.y3d{bottom:637.373333pt;}
.ya{bottom:644.838503pt;}
.ya4{bottom:651.613333pt;}
.y16{bottom:653.693333pt;}
.y62{bottom:654.013333pt;}
.y85{bottom:655.613333pt;}
.y9{bottom:657.154653pt;}
.y3c{bottom:662.813333pt;}
.ya3{bottom:674.653333pt;}
.y61{bottom:679.453333pt;}
.y84{bottom:680.893333pt;}
.y8{bottom:684.426130pt;}
.y3b{bottom:687.933333pt;}
.ya2{bottom:697.853333pt;}
.y60{bottom:704.573333pt;}
.y83{bottom:706.173333pt;}
.y3a{bottom:713.213333pt;}
.ya1{bottom:720.573333pt;}
.y5f{bottom:729.853333pt;}
.y82{bottom:731.453333pt;}
.y13{bottom:731.931283pt;}
.y39{bottom:738.493333pt;}
.ya0{bottom:743.773333pt;}
.y12{bottom:752.164959pt;}
.y5e{bottom:755.133333pt;}
.y81{bottom:756.733333pt;}
.y38{bottom:763.773333pt;}
.y11{bottom:766.240560pt;}
.y9f{bottom:766.813333pt;}
.y10{bottom:780.316161pt;}
.y5d{bottom:780.413333pt;}
.y80{bottom:782.013333pt;}
.y37{bottom:789.053333pt;}
.y9e{bottom:789.693333pt;}
.y5c{bottom:805.733333pt;}
.y7f{bottom:807.493333pt;}
.y9d{bottom:812.773333pt;}
.yf{bottom:813.745713pt;}
.y36{bottom:814.373333pt;}
.y5b{bottom:831.653333pt;}
.y7e{bottom:832.773333pt;}
.ye{bottom:833.979389pt;}
.y9c{bottom:835.653333pt;}
.y35{bottom:839.813333pt;}
.yd{bottom:848.054990pt;}
.y5a{bottom:858.053333pt;}
.y7d{bottom:858.533333pt;}
.y9b{bottom:859.813333pt;}
.yc{bottom:862.130591pt;}
.y34{bottom:865.253333pt;}
.y59{bottom:883.333333pt;}
.y7c{bottom:884.933333pt;}
.y7{bottom:885.003442pt;}
.y33{bottom:891.333333pt;}
.y58{bottom:908.613333pt;}
.y7b{bottom:910.213333pt;}
.y6{bottom:917.553269pt;}
.y32{bottom:920.133333pt;}
.y31{bottom:932.453333pt;}
.y5{bottom:932.508595pt;}
.y57{bottom:934.533333pt;}
.y7a{bottom:935.653333pt;}
.y30{bottom:944.773333pt;}
.y2f{bottom:956.933333pt;}
.y56{bottom:960.933333pt;}
.y2e{bottom:973.093333pt;}
.y4{bottom:974.735398pt;}
.y55{bottom:986.213333pt;}
.y2d{bottom:990.373333pt;}
.y2c{bottom:1009.093333pt;}
.y3{bottom:1010.804125pt;}
.y54{bottom:1011.493333pt;}
.y79{bottom:1011.653333pt;}
.y28{bottom:1029.120000pt;}
.y2{bottom:1048.632302pt;}
.y26{bottom:1051.360000pt;}
.h1b{height:12.160000pt;}
.h1d{height:12.320000pt;}
.h1f{height:12.320133pt;}
.h12{height:19.198667pt;}
.hf{height:19.200000pt;}
.h20{height:22.250000pt;}
.h5{height:22.515463pt;}
.h2{height:25.329896pt;}
.h7{height:26.735394pt;}
.h16{height:28.035000pt;}
.h4{height:28.144329pt;}
.h6{height:33.773195pt;}
.h1c{height:42.084375pt;}
.h1e{height:43.215000pt;}
.ha{height:48.558750pt;}
.h1a{height:52.134375pt;}
.h18{height:52.785000pt;}
.h19{height:55.402500pt;}
.h3{height:56.288658pt;}
.hc{height:57.906250pt;}
.h17{height:61.410000pt;}
.h11{height:62.812500pt;}
.h15{height:65.595000pt;}
.h14{height:66.750000pt;}
.h10{height:67.078125pt;}
.he{height:67.750312pt;}
.h13{height:72.090000pt;}
.hb{height:86.859375pt;}
.hd{height:96.703437pt;}
.h8{height:1122.560000pt;}
.h9{height:1122.666667pt;}
.h1{height:1151.560133pt;}
.h0{height:1152.000000pt;}
.wa{width:39.520000pt;}
.w4{width:42.546667pt;}
.we{width:56.960000pt;}
.w6{width:57.440000pt;}
.wc{width:60.672000pt;}
.wb{width:62.240000pt;}
.wd{width:66.400000pt;}
.w7{width:66.432000pt;}
.w8{width:66.560000pt;}
.w5{width:67.680000pt;}
.w9{width:67.712000pt;}
.w3{width:603.120000pt;}
.w0{width:768.000000pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.880000pt;}
.x1b{left:8.480000pt;}
.x26{left:9.600000pt;}
.x19{left:11.840000pt;}
.x15{left:13.280000pt;}
.x25{left:15.040000pt;}
.x24{left:17.440000pt;}
.x27{left:21.120000pt;}
.x28{left:22.880000pt;}
.x21{left:27.680000pt;}
.x1d{left:28.800000pt;}
.x13{left:48.465333pt;}
.x1{left:52.783503pt;}
.x8{left:57.182128pt;}
.x29{left:66.666667pt;}
.x4{left:87.972505pt;}
.x5{left:97.649481pt;}
.x12{left:105.801333pt;}
.x9{left:113.472000pt;}
.x3{left:123.161507pt;}
.xd{left:137.626667pt;}
.xa{left:160.986667pt;}
.x17{left:174.906667pt;}
.x18{left:232.986667pt;}
.x11{left:261.506667pt;}
.xf{left:269.186667pt;}
.xe{left:284.386667pt;}
.xb{left:295.266667pt;}
.x1a{left:300.066667pt;}
.x10{left:312.706667pt;}
.x1c{left:367.266667pt;}
.x2{left:383.560123pt;}
.xc{left:415.906667pt;}
.x6{left:419.628850pt;}
.x7{left:429.305826pt;}
.x1e{left:435.613333pt;}
.x1f{left:475.773333pt;}
.x20{left:538.653333pt;}
.x22{left:599.973333pt;}
.x23{left:667.013333pt;}
.x14{left:699.653333pt;}
}

