
    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_1aef8ec97bb914568218ace8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_10832e7fd8e04f7e7371a922.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_b6f249c4b0820c985f5f26d6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_d318042fca61e869ad4cb83c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.692383;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_afa32121cc2c009c916e9bca.woff')format("woff");}.ff5{font-family:ff5;line-height:0.882324;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_1cdeca64d48da2344ae15398.woff')format("woff");}.ff6{font-family:ff6;line-height:0.882324;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_77408eccdcacfb397b8981ab.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_8401af287bc84e3c492e9734.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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;}
.m1{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-45.376189px;}
.v1{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.ls18{letter-spacing:-0.475200px;}
.ls13{letter-spacing:-0.105336px;}
.ls1c{letter-spacing:-0.093600px;}
.ls19{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.064800px;}
.ls1a{letter-spacing:-0.043200px;}
.lsc{letter-spacing:-0.036000px;}
.lse{letter-spacing:-0.021600px;}
.lsd{letter-spacing:-0.014400px;}
.lsa{letter-spacing:-0.007200px;}
.lsb{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.007200px;}
.ls2{letter-spacing:0.014400px;}
.ls4{letter-spacing:0.021600px;}
.ls6{letter-spacing:0.028800px;}
.ls3{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.043200px;}
.ls11{letter-spacing:0.050400px;}
.ls7{letter-spacing:0.057600px;}
.ls16{letter-spacing:0.064800px;}
.ls9{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.079200px;}
.ls12{letter-spacing:0.093600px;}
.ls5{letter-spacing:0.180000px;}
.ls1b{letter-spacing:33.984000px;}
.ls17{letter-spacing:198.000000px;}
.ls14{letter-spacing:271.305076px;}
.ls15{letter-spacing:296.424000px;}
.ls10{letter-spacing:1676.438640px;}
.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;}
}
.ws31{word-spacing:-72.000000px;}
.ws27{word-spacing:-39.456000px;}
.ws30{word-spacing:-18.014400px;}
.ws20{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.992800px;}
.ws1f{word-spacing:-11.864664px;}
.ws32{word-spacing:-0.266400px;}
.ws1c{word-spacing:-0.252000px;}
.ws19{word-spacing:-0.237600px;}
.ws33{word-spacing:-0.223200px;}
.ws6{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.201600px;}
.ws12{word-spacing:-0.194400px;}
.ws2a{word-spacing:-0.180000px;}
.ws35{word-spacing:-0.172800px;}
.ws37{word-spacing:-0.165600px;}
.ws36{word-spacing:-0.158400px;}
.ws14{word-spacing:-0.151200px;}
.ws18{word-spacing:-0.144000px;}
.ws1a{word-spacing:-0.136800px;}
.wsc{word-spacing:-0.129600px;}
.ws15{word-spacing:-0.122400px;}
.ws22{word-spacing:-0.115200px;}
.ws7{word-spacing:-0.108000px;}
.wsb{word-spacing:-0.100800px;}
.wsa{word-spacing:-0.093600px;}
.ws8{word-spacing:-0.086400px;}
.ws1b{word-spacing:-0.079200px;}
.wsd{word-spacing:-0.072000px;}
.ws2{word-spacing:-0.064800px;}
.ws1e{word-spacing:-0.057600px;}
.ws25{word-spacing:-0.050400px;}
.ws21{word-spacing:-0.047880px;}
.ws1{word-spacing:-0.043200px;}
.ws9{word-spacing:-0.036000px;}
.wsf{word-spacing:-0.028800px;}
.wse{word-spacing:-0.021600px;}
.ws5{word-spacing:-0.014400px;}
.ws11{word-spacing:-0.007200px;}
.ws3{word-spacing:0.000000px;}
.ws10{word-spacing:0.007200px;}
.ws16{word-spacing:0.014400px;}
.ws17{word-spacing:0.021600px;}
.ws4{word-spacing:0.028800px;}
.ws29{word-spacing:0.036000px;}
.ws3a{word-spacing:0.043200px;}
.ws23{word-spacing:0.050400px;}
.ws1d{word-spacing:0.064800px;}
.ws38{word-spacing:0.072000px;}
.ws39{word-spacing:0.079200px;}
.ws3b{word-spacing:0.100800px;}
.ws24{word-spacing:0.122400px;}
.ws26{word-spacing:0.144000px;}
.ws28{word-spacing:0.158400px;}
.ws34{word-spacing:0.655200px;}
.ws2b{word-spacing:215.604000px;}
.ws2e{word-spacing:365.760000px;}
.ws2c{word-spacing:419.767200px;}
.ws2d{word-spacing:440.928000px;}
.ws2f{word-spacing:455.716800px;}
._7{margin-left:-455.774400px;}
._2{margin-left:-419.788800px;}
._4{margin-left:-365.760000px;}
._3{margin-left:-196.560000px;}
._1{margin-left:-11.524800px;}
._0{margin-left:-1.008000px;}
._c{width:1.252800px;}
._8{width:14.584200px;}
._6{width:18.718800px;}
._5{width:190.804200px;}
._b{width:220.521600px;}
._a{width:235.081800px;}
._9{width:401.760600px;}
._d{width:2142.720000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.998800px;}
.fs1{font-size:47.880000px;}
.fs5{font-size:60.120000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:76.094487px;}
.fs2{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y8f{bottom:117.900150px;}
.y86{bottom:121.230150px;}
.y2b{bottom:126.630000px;}
.ya0{bottom:129.240000px;}
.y72{bottom:130.680150px;}
.y8e{bottom:138.420150px;}
.y85{bottom:141.930150px;}
.y2a{bottom:147.330000px;}
.y9f{bottom:149.940000px;}
.y71{bottom:151.380150px;}
.y8d{bottom:159.120000px;}
.y84{bottom:162.630150px;}
.y46{bottom:166.140150px;}
.y29{bottom:168.030000px;}
.y9e{bottom:170.640000px;}
.y70{bottom:172.080150px;}
.y8c{bottom:180.000000px;}
.y83{bottom:183.330150px;}
.y45{bottom:186.840000px;}
.y28{bottom:188.730000px;}
.y6f{bottom:192.780150px;}
.y9d{bottom:195.660000px;}
.y8b{bottom:200.700000px;}
.y82{bottom:204.030150px;}
.y44{bottom:207.540000px;}
.y27{bottom:209.430000px;}
.y6e{bottom:213.480150px;}
.y8a{bottom:221.400000px;}
.y81{bottom:224.730150px;}
.y43{bottom:228.240000px;}
.y6d{bottom:234.180150px;}
.y26{bottom:234.450000px;}
.y9c{bottom:234.540000px;}
.y89{bottom:242.010000px;}
.y80{bottom:245.430150px;}
.y42{bottom:248.940000px;}
.y6c{bottom:254.880150px;}
.y9b{bottom:255.240000px;}
.y88{bottom:264.150000px;}
.y7f{bottom:265.860150px;}
.y41{bottom:269.640000px;}
.y25{bottom:273.330150px;}
.y6b{bottom:275.580150px;}
.y9a{bottom:275.940000px;}
.y87{bottom:280.710000px;}
.y7e{bottom:286.740000px;}
.y40{bottom:290.340000px;}
.y24{bottom:294.030000px;}
.y6a{bottom:296.010150px;}
.y99{bottom:296.640000px;}
.y7d{bottom:307.440000px;}
.y3f{bottom:311.040000px;}
.y23{bottom:314.730000px;}
.y69{bottom:316.890150px;}
.y98{bottom:317.340000px;}
.y7c{bottom:328.140000px;}
.y3e{bottom:331.740000px;}
.y22{bottom:335.430000px;}
.y68{bottom:337.590150px;}
.y97{bottom:338.040000px;}
.y7b{bottom:344.700000px;}
.y3d{bottom:352.440000px;}
.y21{bottom:356.130000px;}
.y96{bottom:358.740000px;}
.y67{bottom:363.600150px;}
.y3c{bottom:373.140000px;}
.y20{bottom:376.830000px;}
.y95{bottom:379.440000px;}
.y3b{bottom:393.840000px;}
.y1f{bottom:397.530000px;}
.y94{bottom:400.140000px;}
.y66{bottom:407.520150px;}
.y3a{bottom:414.540000px;}
.y1e{bottom:418.230000px;}
.y93{bottom:425.160000px;}
.y39{bottom:435.240000px;}
.y1d{bottom:438.930000px;}
.y65{bottom:451.530000px;}
.y38{bottom:455.940000px;}
.y1c{bottom:459.630000px;}
.y92{bottom:464.040000px;}
.y37{bottom:476.640000px;}
.y1b{bottom:480.330000px;}
.y91{bottom:484.740000px;}
.y64{bottom:495.450000px;}
.y36{bottom:497.340000px;}
.y1a{bottom:500.940000px;}
.y90{bottom:505.350000px;}
.y35{bottom:518.040000px;}
.y19{bottom:521.640000px;}
.y34{bottom:538.740000px;}
.y63{bottom:539.190000px;}
.y18{bottom:542.340000px;}
.y60{bottom:551.790000px;}
.y5e{bottom:555.390000px;}
.y17{bottom:563.040000px;}
.y33{bottom:563.850000px;}
.y62{bottom:564.390000px;}
.y5f{bottom:576.990000px;}
.y16{bottom:588.060000px;}
.y61{bottom:589.590000px;}
.y5d{bottom:611.190000px;}
.y15{bottom:626.940000px;}
.y5c{bottom:631.890000px;}
.y14{bottom:647.640000px;}
.y5b{bottom:652.590000px;}
.y13{bottom:668.340000px;}
.y5a{bottom:673.110000px;}
.y12{bottom:689.040000px;}
.y59{bottom:693.990000px;}
.y11{bottom:709.740000px;}
.y58{bottom:714.510000px;}
.y10{bottom:730.440000px;}
.y57{bottom:735.390000px;}
.yf{bottom:751.140000px;}
.y56{bottom:760.410000px;}
.ye{bottom:771.840000px;}
.y7a{bottom:773.640000px;}
.yd{bottom:792.540000px;}
.y79{bottom:794.340000px;}
.y55{bottom:799.290000px;}
.yc{bottom:813.240000px;}
.y78{bottom:815.040000px;}
.y54{bottom:819.990000px;}
.yb{bottom:833.940000px;}
.y77{bottom:835.740000px;}
.y53{bottom:840.690000px;}
.ya{bottom:854.640000px;}
.y76{bottom:856.440000px;}
.ya8{bottom:858.150000px;}
.y52{bottom:861.390000px;}
.y9{bottom:875.340000px;}
.y75{bottom:877.140000px;}
.ya7{bottom:878.760000px;}
.y8{bottom:896.040000px;}
.y74{bottom:897.840000px;}
.ya6{bottom:899.460000px;}
.y51{bottom:900.000000px;}
.y7{bottom:916.740000px;}
.y73{bottom:918.540000px;}
.ya5{bottom:920.160000px;}
.y50{bottom:922.140000px;}
.y32{bottom:939.240000px;}
.ya4{bottom:940.860000px;}
.y6{bottom:941.760000px;}
.y4f{bottom:942.840000px;}
.y31{bottom:959.940000px;}
.ya3{bottom:961.560000px;}
.y4e{bottom:963.540000px;}
.y5{bottom:980.460000px;}
.y30{bottom:980.640000px;}
.y4d{bottom:984.240000px;}
.ya2{bottom:986.580000px;}
.y4{bottom:1001.160000px;}
.y2f{bottom:1001.340000px;}
.y4c{bottom:1004.940000px;}
.y3{bottom:1021.860000px;}
.y2e{bottom:1022.040000px;}
.ya1{bottom:1024.830000px;}
.y47{bottom:1026.630000px;}
.y4b{bottom:1032.930000px;}
.y48{bottom:1042.474047px;}
.y2{bottom:1042.560000px;}
.y2d{bottom:1042.740000px;}
.y4a{bottom:1046.970000px;}
.y49{bottom:1058.310000px;}
.y1{bottom:1063.260000px;}
.y2c{bottom:1063.440000px;}
.h6{height:28.443523px;}
.ha{height:41.772832px;}
.h7{height:48.761719px;}
.h1{height:48.796875px;}
.h2{height:50.027344px;}
.h3{height:50.027944px;}
.h8{height:50.717273px;}
.h9{height:54.000000px;}
.h5{height:64.064355px;}
.h4{height:66.388184px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:108.000000px;}
.x18{left:135.000000px;}
.x1{left:155.520000px;}
.x3{left:159.750000px;}
.x6{left:162.000000px;}
.xf{left:185.220000px;}
.x17{left:188.910000px;}
.x14{left:209.250000px;}
.x7{left:243.810000px;}
.x4{left:327.240000px;}
.xb{left:406.800000px;}
.x9{left:418.679348px;}
.xe{left:430.470000px;}
.xc{left:454.680000px;}
.xd{left:457.650000px;}
.x2{left:459.000000px;}
.xa{left:488.250000px;}
.x10{left:491.490000px;}
.x8{left:500.850000px;}
.x12{left:675.090000px;}
.x13{left:681.390000px;}
.x11{left:683.550000px;}
.x16{left:700.920000px;}
.x15{left:760.769850px;}
@media print{
.v3{vertical-align:-40.334390pt;}
.v1{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.ls18{letter-spacing:-0.422400pt;}
.ls13{letter-spacing:-0.093632pt;}
.ls1c{letter-spacing:-0.083200pt;}
.ls19{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.057600pt;}
.ls1a{letter-spacing:-0.038400pt;}
.lsc{letter-spacing:-0.032000pt;}
.lse{letter-spacing:-0.019200pt;}
.lsd{letter-spacing:-0.012800pt;}
.lsa{letter-spacing:-0.006400pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.006400pt;}
.ls2{letter-spacing:0.012800pt;}
.ls4{letter-spacing:0.019200pt;}
.ls6{letter-spacing:0.025600pt;}
.ls3{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.038400pt;}
.ls11{letter-spacing:0.044800pt;}
.ls7{letter-spacing:0.051200pt;}
.ls16{letter-spacing:0.057600pt;}
.ls9{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.070400pt;}
.ls12{letter-spacing:0.083200pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:30.208000pt;}
.ls17{letter-spacing:176.000000pt;}
.ls14{letter-spacing:241.160067pt;}
.ls15{letter-spacing:263.488000pt;}
.ls10{letter-spacing:1490.167680pt;}
.ws31{word-spacing:-64.000000pt;}
.ws27{word-spacing:-35.072000pt;}
.ws30{word-spacing:-16.012800pt;}
.ws20{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.993600pt;}
.ws1f{word-spacing:-10.546368pt;}
.ws32{word-spacing:-0.236800pt;}
.ws1c{word-spacing:-0.224000pt;}
.ws19{word-spacing:-0.211200pt;}
.ws33{word-spacing:-0.198400pt;}
.ws6{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.179200pt;}
.ws12{word-spacing:-0.172800pt;}
.ws2a{word-spacing:-0.160000pt;}
.ws35{word-spacing:-0.153600pt;}
.ws37{word-spacing:-0.147200pt;}
.ws36{word-spacing:-0.140800pt;}
.ws14{word-spacing:-0.134400pt;}
.ws18{word-spacing:-0.128000pt;}
.ws1a{word-spacing:-0.121600pt;}
.wsc{word-spacing:-0.115200pt;}
.ws15{word-spacing:-0.108800pt;}
.ws22{word-spacing:-0.102400pt;}
.ws7{word-spacing:-0.096000pt;}
.wsb{word-spacing:-0.089600pt;}
.wsa{word-spacing:-0.083200pt;}
.ws8{word-spacing:-0.076800pt;}
.ws1b{word-spacing:-0.070400pt;}
.wsd{word-spacing:-0.064000pt;}
.ws2{word-spacing:-0.057600pt;}
.ws1e{word-spacing:-0.051200pt;}
.ws25{word-spacing:-0.044800pt;}
.ws21{word-spacing:-0.042560pt;}
.ws1{word-spacing:-0.038400pt;}
.ws9{word-spacing:-0.032000pt;}
.wsf{word-spacing:-0.025600pt;}
.wse{word-spacing:-0.019200pt;}
.ws5{word-spacing:-0.012800pt;}
.ws11{word-spacing:-0.006400pt;}
.ws3{word-spacing:0.000000pt;}
.ws10{word-spacing:0.006400pt;}
.ws16{word-spacing:0.012800pt;}
.ws17{word-spacing:0.019200pt;}
.ws4{word-spacing:0.025600pt;}
.ws29{word-spacing:0.032000pt;}
.ws3a{word-spacing:0.038400pt;}
.ws23{word-spacing:0.044800pt;}
.ws1d{word-spacing:0.057600pt;}
.ws38{word-spacing:0.064000pt;}
.ws39{word-spacing:0.070400pt;}
.ws3b{word-spacing:0.089600pt;}
.ws24{word-spacing:0.108800pt;}
.ws26{word-spacing:0.128000pt;}
.ws28{word-spacing:0.140800pt;}
.ws34{word-spacing:0.582400pt;}
.ws2b{word-spacing:191.648000pt;}
.ws2e{word-spacing:325.120000pt;}
.ws2c{word-spacing:373.126400pt;}
.ws2d{word-spacing:391.936000pt;}
.ws2f{word-spacing:405.081600pt;}
._7{margin-left:-405.132800pt;}
._2{margin-left:-373.145600pt;}
._4{margin-left:-325.120000pt;}
._3{margin-left:-174.720000pt;}
._1{margin-left:-10.244267pt;}
._0{margin-left:-0.896000pt;}
._c{width:1.113600pt;}
._8{width:12.963733pt;}
._6{width:16.638933pt;}
._5{width:169.603733pt;}
._b{width:196.019200pt;}
._a{width:208.961600pt;}
._9{width:357.120533pt;}
._d{width:1904.640000pt;}
.fs3{font-size:37.332267pt;}
.fs1{font-size:42.560000pt;}
.fs5{font-size:53.440000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:67.639544pt;}
.fs2{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:104.800133pt;}
.y86{bottom:107.760133pt;}
.y2b{bottom:112.560000pt;}
.ya0{bottom:114.880000pt;}
.y72{bottom:116.160133pt;}
.y8e{bottom:123.040133pt;}
.y85{bottom:126.160133pt;}
.y2a{bottom:130.960000pt;}
.y9f{bottom:133.280000pt;}
.y71{bottom:134.560133pt;}
.y8d{bottom:141.440000pt;}
.y84{bottom:144.560133pt;}
.y46{bottom:147.680133pt;}
.y29{bottom:149.360000pt;}
.y9e{bottom:151.680000pt;}
.y70{bottom:152.960133pt;}
.y8c{bottom:160.000000pt;}
.y83{bottom:162.960133pt;}
.y45{bottom:166.080000pt;}
.y28{bottom:167.760000pt;}
.y6f{bottom:171.360133pt;}
.y9d{bottom:173.920000pt;}
.y8b{bottom:178.400000pt;}
.y82{bottom:181.360133pt;}
.y44{bottom:184.480000pt;}
.y27{bottom:186.160000pt;}
.y6e{bottom:189.760133pt;}
.y8a{bottom:196.800000pt;}
.y81{bottom:199.760133pt;}
.y43{bottom:202.880000pt;}
.y6d{bottom:208.160133pt;}
.y26{bottom:208.400000pt;}
.y9c{bottom:208.480000pt;}
.y89{bottom:215.120000pt;}
.y80{bottom:218.160133pt;}
.y42{bottom:221.280000pt;}
.y6c{bottom:226.560133pt;}
.y9b{bottom:226.880000pt;}
.y88{bottom:234.800000pt;}
.y7f{bottom:236.320133pt;}
.y41{bottom:239.680000pt;}
.y25{bottom:242.960133pt;}
.y6b{bottom:244.960133pt;}
.y9a{bottom:245.280000pt;}
.y87{bottom:249.520000pt;}
.y7e{bottom:254.880000pt;}
.y40{bottom:258.080000pt;}
.y24{bottom:261.360000pt;}
.y6a{bottom:263.120133pt;}
.y99{bottom:263.680000pt;}
.y7d{bottom:273.280000pt;}
.y3f{bottom:276.480000pt;}
.y23{bottom:279.760000pt;}
.y69{bottom:281.680133pt;}
.y98{bottom:282.080000pt;}
.y7c{bottom:291.680000pt;}
.y3e{bottom:294.880000pt;}
.y22{bottom:298.160000pt;}
.y68{bottom:300.080133pt;}
.y97{bottom:300.480000pt;}
.y7b{bottom:306.400000pt;}
.y3d{bottom:313.280000pt;}
.y21{bottom:316.560000pt;}
.y96{bottom:318.880000pt;}
.y67{bottom:323.200133pt;}
.y3c{bottom:331.680000pt;}
.y20{bottom:334.960000pt;}
.y95{bottom:337.280000pt;}
.y3b{bottom:350.080000pt;}
.y1f{bottom:353.360000pt;}
.y94{bottom:355.680000pt;}
.y66{bottom:362.240133pt;}
.y3a{bottom:368.480000pt;}
.y1e{bottom:371.760000pt;}
.y93{bottom:377.920000pt;}
.y39{bottom:386.880000pt;}
.y1d{bottom:390.160000pt;}
.y65{bottom:401.360000pt;}
.y38{bottom:405.280000pt;}
.y1c{bottom:408.560000pt;}
.y92{bottom:412.480000pt;}
.y37{bottom:423.680000pt;}
.y1b{bottom:426.960000pt;}
.y91{bottom:430.880000pt;}
.y64{bottom:440.400000pt;}
.y36{bottom:442.080000pt;}
.y1a{bottom:445.280000pt;}
.y90{bottom:449.200000pt;}
.y35{bottom:460.480000pt;}
.y19{bottom:463.680000pt;}
.y34{bottom:478.880000pt;}
.y63{bottom:479.280000pt;}
.y18{bottom:482.080000pt;}
.y60{bottom:490.480000pt;}
.y5e{bottom:493.680000pt;}
.y17{bottom:500.480000pt;}
.y33{bottom:501.200000pt;}
.y62{bottom:501.680000pt;}
.y5f{bottom:512.880000pt;}
.y16{bottom:522.720000pt;}
.y61{bottom:524.080000pt;}
.y5d{bottom:543.280000pt;}
.y15{bottom:557.280000pt;}
.y5c{bottom:561.680000pt;}
.y14{bottom:575.680000pt;}
.y5b{bottom:580.080000pt;}
.y13{bottom:594.080000pt;}
.y5a{bottom:598.320000pt;}
.y12{bottom:612.480000pt;}
.y59{bottom:616.880000pt;}
.y11{bottom:630.880000pt;}
.y58{bottom:635.120000pt;}
.y10{bottom:649.280000pt;}
.y57{bottom:653.680000pt;}
.yf{bottom:667.680000pt;}
.y56{bottom:675.920000pt;}
.ye{bottom:686.080000pt;}
.y7a{bottom:687.680000pt;}
.yd{bottom:704.480000pt;}
.y79{bottom:706.080000pt;}
.y55{bottom:710.480000pt;}
.yc{bottom:722.880000pt;}
.y78{bottom:724.480000pt;}
.y54{bottom:728.880000pt;}
.yb{bottom:741.280000pt;}
.y77{bottom:742.880000pt;}
.y53{bottom:747.280000pt;}
.ya{bottom:759.680000pt;}
.y76{bottom:761.280000pt;}
.ya8{bottom:762.800000pt;}
.y52{bottom:765.680000pt;}
.y9{bottom:778.080000pt;}
.y75{bottom:779.680000pt;}
.ya7{bottom:781.120000pt;}
.y8{bottom:796.480000pt;}
.y74{bottom:798.080000pt;}
.ya6{bottom:799.520000pt;}
.y51{bottom:800.000000pt;}
.y7{bottom:814.880000pt;}
.y73{bottom:816.480000pt;}
.ya5{bottom:817.920000pt;}
.y50{bottom:819.680000pt;}
.y32{bottom:834.880000pt;}
.ya4{bottom:836.320000pt;}
.y6{bottom:837.120000pt;}
.y4f{bottom:838.080000pt;}
.y31{bottom:853.280000pt;}
.ya3{bottom:854.720000pt;}
.y4e{bottom:856.480000pt;}
.y5{bottom:871.520000pt;}
.y30{bottom:871.680000pt;}
.y4d{bottom:874.880000pt;}
.ya2{bottom:876.960000pt;}
.y4{bottom:889.920000pt;}
.y2f{bottom:890.080000pt;}
.y4c{bottom:893.280000pt;}
.y3{bottom:908.320000pt;}
.y2e{bottom:908.480000pt;}
.ya1{bottom:910.960000pt;}
.y47{bottom:912.560000pt;}
.y4b{bottom:918.160000pt;}
.y48{bottom:926.643598pt;}
.y2{bottom:926.720000pt;}
.y2d{bottom:926.880000pt;}
.y4a{bottom:930.640000pt;}
.y49{bottom:940.720000pt;}
.y1{bottom:945.120000pt;}
.y2c{bottom:945.280000pt;}
.h6{height:25.283132pt;}
.ha{height:37.131406pt;}
.h7{height:43.343750pt;}
.h1{height:43.375000pt;}
.h2{height:44.468750pt;}
.h3{height:44.469283pt;}
.h8{height:45.082020pt;}
.h9{height:48.000000pt;}
.h5{height:56.946094pt;}
.h4{height:59.011719pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.000000pt;}
.x18{left:120.000000pt;}
.x1{left:138.240000pt;}
.x3{left:142.000000pt;}
.x6{left:144.000000pt;}
.xf{left:164.640000pt;}
.x17{left:167.920000pt;}
.x14{left:186.000000pt;}
.x7{left:216.720000pt;}
.x4{left:290.880000pt;}
.xb{left:361.600000pt;}
.x9{left:372.159420pt;}
.xe{left:382.640000pt;}
.xc{left:404.160000pt;}
.xd{left:406.800000pt;}
.x2{left:408.000000pt;}
.xa{left:434.000000pt;}
.x10{left:436.880000pt;}
.x8{left:445.200000pt;}
.x12{left:600.080000pt;}
.x13{left:605.680000pt;}
.x11{left:607.600000pt;}
.x16{left:623.040000pt;}
.x15{left:676.239867pt;}
}

