
    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_ff52efe5f1017adda79ba137.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064000;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_32c9cceee4a62db22b78e9be.woff')format("woff");}.ff2{font-family:ff2;line-height:1.064000;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_0c0b7db5ed93e00263b9b452.woff')format("woff");}.ff3{font-family:ff3;line-height:1.204000;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_2d5d544dbf7d16db93c9afe0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.204000;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_99762fa4c3edaa2ce724f458.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946187;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_e11b616886a0f072a73e9261.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946187;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_7b9951961c17afd07d08a200.woff')format("woff");}.ff7{font-family:ff7;line-height:0.840000;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_36829d3a7c1c13a0cd512973.woff')format("woff");}.ff8{font-family:ff8;line-height:0.711914;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_4a7f832fe440c055afffdb40.woff')format("woff");}.ff9{font-family:ff9;line-height:1.065000;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_ef1b3c29606348965bae791a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.928223;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.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;}
.ls13{letter-spacing:-0.654000px;}
.ls5{letter-spacing:-0.511200px;}
.ls11{letter-spacing:-0.428168px;}
.lsa{letter-spacing:-0.406200px;}
.ls6{letter-spacing:-0.154200px;}
.ls3{letter-spacing:-0.151200px;}
.ls8{letter-spacing:-0.005760px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.038880px;}
.ls12{letter-spacing:0.089400px;}
.lsb{letter-spacing:0.295200px;}
.ls9{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.552960px;}
.ls10{letter-spacing:0.587520px;}
.ls7{letter-spacing:0.598800px;}
.ls0{letter-spacing:0.613440px;}
.lse{letter-spacing:0.644160px;}
.lsc{letter-spacing:1.008000px;}
.lsd{letter-spacing:1.692000px;}
.ls14{letter-spacing:39.346560px;}
.ls15{letter-spacing:39.358560px;}
.ls2{letter-spacing:840.300000px;}
.ls16{letter-spacing:849.312000px;}
.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;}
}
.ws4{word-spacing:-28.687896px;}
.ws5{word-spacing:-27.216000px;}
.ws8{word-spacing:-21.174399px;}
.ws6{word-spacing:-20.088000px;}
.ws3{word-spacing:-20.082240px;}
.ws0{word-spacing:-19.936800px;}
.ws1{word-spacing:-17.675760px;}
.ws7{word-spacing:-16.200000px;}
.ws2{word-spacing:0.000000px;}
._15{margin-left:-49.070304px;}
._12{margin-left:-44.315424px;}
._9{margin-left:-28.365120px;}
._0{margin-left:-27.207360px;}
._e{margin-left:-25.924608px;}
._6{margin-left:-24.216480px;}
._10{margin-left:-21.103440px;}
._a{margin-left:-15.130080px;}
._11{margin-left:-13.510800px;}
._4{margin-left:-12.349440px;}
._5{margin-left:-10.902240px;}
._f{margin-left:-9.792720px;}
._d{margin-left:-8.152128px;}
._1{margin-left:-7.043040px;}
._2{margin-left:-5.595840px;}
._3{margin-left:-4.148640px;}
._7{margin-left:-2.412000px;}
._c{margin-left:-1.017696px;}
._b{width:1.102416px;}
._8{width:3.107520px;}
._14{width:4.428000px;}
._13{width:5.599056px;}
._16{width:7.395024px;}
._20{width:8.712000px;}
._21{width:10.653552px;}
._1c{width:12.216960px;}
._30{width:13.266528px;}
._19{width:14.300256px;}
._17{width:15.856512px;}
._18{width:16.866720px;}
._26{width:18.122356px;}
._25{width:19.289428px;}
._24{width:20.464033px;}
._1f{width:21.648096px;}
._1d{width:22.712352px;}
._1e{width:23.956560px;}
._28{width:25.505520px;}
._1a{width:29.076480px;}
._1b{width:30.300480px;}
._27{width:31.616640px;}
._29{width:41.791680px;}
._2f{width:44.005248px;}
._2e{width:46.630080px;}
._2a{width:50.116320px;}
._2d{width:52.208256px;}
._31{width:53.549664px;}
._2c{width:62.022864px;}
._2b{width:63.188640px;}
._23{width:96.303504px;}
._22{width:101.846958px;}
.fc4{color:transparent;}
.fc2{color:rgb(102,51,0);}
.fc1{color:rgb(68,60,59);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(0,125,188);}
.fc0{color:rgb(139,125,122);}
.fs8{font-size:27.360000px;}
.fs7{font-size:36.000000px;}
.fs0{font-size:44.640000px;}
.fs9{font-size:47.054221px;}
.fs1{font-size:60.480000px;}
.fsa{font-size:63.750880px;}
.fs6{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:180.144000px;}
.fs3{font-size:216.144000px;}
.y0{bottom:0.000000px;}
.y2{bottom:32.400000px;}
.y1{bottom:52.200000px;}
.y32{bottom:76.356000px;}
.y31{bottom:91.836000px;}
.y93{bottom:93.276000px;}
.y30{bottom:95.436000px;}
.y73{bottom:95.796000px;}
.y57{bottom:107.316000px;}
.y2f{bottom:110.196000px;}
.y92{bottom:113.796000px;}
.y72{bottom:118.476000px;}
.y56{bottom:122.796000px;}
.y55{bottom:126.396000px;}
.y2e{bottom:129.996000px;}
.y91{bottom:134.316000px;}
.y54{bottom:138.276000px;}
.y71{bottom:141.156000px;}
.y53{bottom:153.435000px;}
.y90{bottom:154.875000px;}
.y70{bottom:163.515000px;}
.y52{bottom:168.915000px;}
.y51{bottom:172.515000px;}
.y8f{bottom:175.395000px;}
.y2c{bottom:181.875000px;}
.y50{bottom:184.395000px;}
.y6f{bottom:186.195000px;}
.y2d{bottom:187.275000px;}
.y8e{bottom:195.915000px;}
.y4f{bottom:199.875000px;}
.y76{bottom:202.755000px;}
.y2b{bottom:204.555000px;}
.y6e{bottom:208.875000px;}
.y8d{bottom:216.435000px;}
.y4e{bottom:217.875000px;}
.y75{bottom:225.435000px;}
.y2a{bottom:227.235000px;}
.y6d{bottom:231.585000px;}
.y8c{bottom:236.985000px;}
.y4d{bottom:237.705000px;}
.y74{bottom:248.145000px;}
.y29{bottom:249.945000px;}
.y6c{bottom:253.905000px;}
.y8b{bottom:257.505000px;}
.y14{bottom:269.745000px;}
.y4c{bottom:270.825000px;}
.y28{bottom:272.265000px;}
.y6b{bottom:276.585000px;}
.y8a{bottom:278.025000px;}
.y4b{bottom:293.145000px;}
.y13{bottom:293.865000px;}
.y27{bottom:294.945000px;}
.y89{bottom:298.545000px;}
.y6a{bottom:299.265000px;}
.y4a{bottom:315.825000px;}
.y26{bottom:317.625000px;}
.y12{bottom:318.345000px;}
.y88{bottom:319.065000px;}
.y69{bottom:321.990000px;}
.y49{bottom:338.550000px;}
.y87{bottom:339.630000px;}
.y25{bottom:340.350000px;}
.y11{bottom:342.510000px;}
.y68{bottom:344.310000px;}
.y86{bottom:360.150000px;}
.y48{bottom:361.230000px;}
.y24{bottom:362.670000px;}
.y10{bottom:366.990000px;}
.y85{bottom:380.670000px;}
.y47{bottom:383.550000px;}
.y23{bottom:385.350000px;}
.y67{bottom:389.670000px;}
.yf{bottom:396.870000px;}
.y84{bottom:401.190000px;}
.y45{bottom:406.230000px;}
.y22{bottom:408.030000px;}
.y46{bottom:411.660000px;}
.y66{bottom:412.380000px;}
.ye{bottom:421.020000px;}
.y83{bottom:422.100000px;}
.y44{bottom:428.940000px;}
.y21{bottom:430.740000px;}
.y65{bottom:434.700000px;}
.y82{bottom:442.620000px;}
.yd{bottom:445.140000px;}
.y43{bottom:451.620000px;}
.y20{bottom:453.060000px;}
.y64{bottom:457.380000px;}
.y81{bottom:463.140000px;}
.yc{bottom:469.620000px;}
.y42{bottom:473.940000px;}
.y1f{bottom:475.740000px;}
.y63{bottom:480.060000px;}
.y80{bottom:483.660000px;}
.yb{bottom:493.740000px;}
.y40{bottom:496.620000px;}
.y1e{bottom:498.450000px;}
.y41{bottom:502.050000px;}
.y62{bottom:502.770000px;}
.y7f{bottom:504.210000px;}
.y9f{bottom:513.210000px;}
.ya{bottom:517.890000px;}
.y3f{bottom:519.330000px;}
.y1d{bottom:521.130000px;}
.y7e{bottom:524.730000px;}
.y61{bottom:525.090000px;}
.y9{bottom:542.010000px;}
.y1c{bottom:543.450000px;}
.y7d{bottom:545.250000px;}
.y9e{bottom:547.050000px;}
.y60{bottom:547.770000px;}
.y3e{bottom:564.330000px;}
.y7c{bottom:565.770000px;}
.y1b{bottom:566.130000px;}
.y8{bottom:566.490000px;}
.y9d{bottom:569.730000px;}
.y5f{bottom:570.450000px;}
.y7b{bottom:586.335000px;}
.y3d{bottom:587.055000px;}
.y1a{bottom:588.855000px;}
.y7{bottom:590.655000px;}
.y9c{bottom:592.455000px;}
.y5e{bottom:593.175000px;}
.y7a{bottom:606.855000px;}
.y3c{bottom:609.735000px;}
.y6{bottom:614.775000px;}
.y9b{bottom:615.135000px;}
.y5d{bottom:615.495000px;}
.y19{bottom:620.175000px;}
.y79{bottom:627.375000px;}
.y3b{bottom:632.415000px;}
.y9a{bottom:637.455000px;}
.y5c{bottom:638.175000px;}
.y5{bottom:638.895000px;}
.y78{bottom:647.895000px;}
.y39{bottom:654.735000px;}
.y3a{bottom:660.135000px;}
.y5b{bottom:660.855000px;}
.y99{bottom:666.975000px;}
.y77{bottom:668.415000px;}
.y18{bottom:674.925000px;}
.y38{bottom:677.445000px;}
.y5a{bottom:683.565000px;}
.y98{bottom:687.885000px;}
.y37{bottom:700.125000px;}
.y59{bottom:705.885000px;}
.y4{bottom:707.685000px;}
.y97{bottom:708.405000px;}
.y17{bottom:716.325000px;}
.y36{bottom:722.805000px;}
.y96{bottom:728.925000px;}
.y58{bottom:737.205000px;}
.y35{bottom:745.125000px;}
.y95{bottom:749.445000px;}
.y34{bottom:767.850000px;}
.y94{bottom:770.010000px;}
.y16{bottom:771.810000px;}
.y3{bottom:788.370000px;}
.y33{bottom:790.530000px;}
.y15{bottom:822.210000px;}
.hc{height:23.283360px;}
.hb{height:30.636000px;}
.h2{height:37.988640px;}
.hd{height:40.043142px;}
.h3{height:51.468480px;}
.hf{height:51.528960px;}
.he{height:54.251999px;}
.ha{height:58.929326px;}
.h6{height:68.073531px;}
.h4{height:74.193120px;}
.h7{height:79.971200px;}
.h9{height:83.052000px;}
.h8{height:138.530736px;}
.h5{height:166.214736px;}
.h1{height:892.500000px;}
.h0{height:892.800000px;}
.w1{width:629.250000px;}
.w3{width:629.279981px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x18{left:63.755991px;}
.x19{left:69.155991px;}
.x13{left:84.995991px;}
.x24{left:90.035991px;}
.x26{left:93.671991px;}
.x14{left:94.751991px;}
.x2{left:106.271991px;}
.x5{left:107.351991px;}
.xe{left:111.671991px;}
.x6{left:115.991991px;}
.x28{left:119.231991px;}
.x15{left:121.751991px;}
.xb{left:122.831991px;}
.xd{left:125.711991px;}
.xa{left:127.151991px;}
.x29{left:133.271991px;}
.x3{left:134.711991px;}
.x7{left:135.791991px;}
.x11{left:137.951991px;}
.xf{left:139.391991px;}
.x2b{left:140.471991px;}
.x2a{left:154.514991px;}
.x1d{left:155.594981px;}
.x1e{left:162.464991px;}
.x20{left:167.864981px;}
.x1f{left:171.824991px;}
.x10{left:173.624991px;}
.x21{left:175.064991px;}
.x4{left:204.944991px;}
.xc{left:210.344991px;}
.x8{left:268.709991px;}
.x1a{left:282.749991px;}
.x12{left:298.619991px;}
.x1{left:320.219991px;}
.x9{left:325.259991px;}
.x25{left:334.259991px;}
.x1c{left:338.579991px;}
.x27{left:348.689991px;}
.x22{left:350.489981px;}
.x23{left:357.689991px;}
.x1b{left:451.694991px;}
.x16{left:512.564981px;}
.x17{left:519.764991px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.581333pt;}
.ls5{letter-spacing:-0.454400pt;}
.ls11{letter-spacing:-0.380594pt;}
.lsa{letter-spacing:-0.361067pt;}
.ls6{letter-spacing:-0.137067pt;}
.ls3{letter-spacing:-0.134400pt;}
.ls8{letter-spacing:-0.005120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.034560pt;}
.ls12{letter-spacing:0.079467pt;}
.lsb{letter-spacing:0.262400pt;}
.ls9{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.491520pt;}
.ls10{letter-spacing:0.522240pt;}
.ls7{letter-spacing:0.532267pt;}
.ls0{letter-spacing:0.545280pt;}
.lse{letter-spacing:0.572587pt;}
.lsc{letter-spacing:0.896000pt;}
.lsd{letter-spacing:1.504000pt;}
.ls14{letter-spacing:34.974720pt;}
.ls15{letter-spacing:34.985387pt;}
.ls2{letter-spacing:746.933333pt;}
.ls16{letter-spacing:754.944000pt;}
.ws4{word-spacing:-25.500352pt;}
.ws5{word-spacing:-24.192000pt;}
.ws8{word-spacing:-18.821688pt;}
.ws6{word-spacing:-17.856000pt;}
.ws3{word-spacing:-17.850880pt;}
.ws0{word-spacing:-17.721600pt;}
.ws1{word-spacing:-15.711787pt;}
.ws7{word-spacing:-14.400000pt;}
.ws2{word-spacing:0.000000pt;}
._15{margin-left:-43.618048pt;}
._12{margin-left:-39.391488pt;}
._9{margin-left:-25.213440pt;}
._0{margin-left:-24.184320pt;}
._e{margin-left:-23.044096pt;}
._6{margin-left:-21.525760pt;}
._10{margin-left:-18.758613pt;}
._a{margin-left:-13.448960pt;}
._11{margin-left:-12.009600pt;}
._4{margin-left:-10.977280pt;}
._5{margin-left:-9.690880pt;}
._f{margin-left:-8.704640pt;}
._d{margin-left:-7.246336pt;}
._1{margin-left:-6.260480pt;}
._2{margin-left:-4.974080pt;}
._3{margin-left:-3.687680pt;}
._7{margin-left:-2.144000pt;}
._c{margin-left:-0.904619pt;}
._b{width:0.979925pt;}
._8{width:2.762240pt;}
._14{width:3.936000pt;}
._13{width:4.976939pt;}
._16{width:6.573355pt;}
._20{width:7.744000pt;}
._21{width:9.469824pt;}
._1c{width:10.859520pt;}
._30{width:11.792469pt;}
._19{width:12.711339pt;}
._17{width:14.094677pt;}
._18{width:14.992640pt;}
._26{width:16.108761pt;}
._25{width:17.146158pt;}
._24{width:18.190251pt;}
._1f{width:19.242752pt;}
._1d{width:20.188757pt;}
._1e{width:21.294720pt;}
._28{width:22.671573pt;}
._1a{width:25.845760pt;}
._1b{width:26.933760pt;}
._27{width:28.103680pt;}
._29{width:37.148160pt;}
._2f{width:39.115776pt;}
._2e{width:41.448960pt;}
._2a{width:44.547840pt;}
._2d{width:46.407339pt;}
._31{width:47.599701pt;}
._2c{width:55.131435pt;}
._2b{width:56.167680pt;}
._23{width:85.603115pt;}
._22{width:90.530629pt;}
.fs8{font-size:24.320000pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:39.680000pt;}
.fs9{font-size:41.825974pt;}
.fs1{font-size:53.760000pt;}
.fsa{font-size:56.667449pt;}
.fs6{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:160.128000pt;}
.fs3{font-size:192.128000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:28.800000pt;}
.y1{bottom:46.400000pt;}
.y32{bottom:67.872000pt;}
.y31{bottom:81.632000pt;}
.y93{bottom:82.912000pt;}
.y30{bottom:84.832000pt;}
.y73{bottom:85.152000pt;}
.y57{bottom:95.392000pt;}
.y2f{bottom:97.952000pt;}
.y92{bottom:101.152000pt;}
.y72{bottom:105.312000pt;}
.y56{bottom:109.152000pt;}
.y55{bottom:112.352000pt;}
.y2e{bottom:115.552000pt;}
.y91{bottom:119.392000pt;}
.y54{bottom:122.912000pt;}
.y71{bottom:125.472000pt;}
.y53{bottom:136.386667pt;}
.y90{bottom:137.666667pt;}
.y70{bottom:145.346667pt;}
.y52{bottom:150.146667pt;}
.y51{bottom:153.346667pt;}
.y8f{bottom:155.906667pt;}
.y2c{bottom:161.666667pt;}
.y50{bottom:163.906667pt;}
.y6f{bottom:165.506667pt;}
.y2d{bottom:166.466667pt;}
.y8e{bottom:174.146667pt;}
.y4f{bottom:177.666667pt;}
.y76{bottom:180.226667pt;}
.y2b{bottom:181.826667pt;}
.y6e{bottom:185.666667pt;}
.y8d{bottom:192.386667pt;}
.y4e{bottom:193.666667pt;}
.y75{bottom:200.386667pt;}
.y2a{bottom:201.986667pt;}
.y6d{bottom:205.853333pt;}
.y8c{bottom:210.653333pt;}
.y4d{bottom:211.293333pt;}
.y74{bottom:220.573333pt;}
.y29{bottom:222.173333pt;}
.y6c{bottom:225.693333pt;}
.y8b{bottom:228.893333pt;}
.y14{bottom:239.773333pt;}
.y4c{bottom:240.733333pt;}
.y28{bottom:242.013333pt;}
.y6b{bottom:245.853333pt;}
.y8a{bottom:247.133333pt;}
.y4b{bottom:260.573333pt;}
.y13{bottom:261.213333pt;}
.y27{bottom:262.173333pt;}
.y89{bottom:265.373333pt;}
.y6a{bottom:266.013333pt;}
.y4a{bottom:280.733333pt;}
.y26{bottom:282.333333pt;}
.y12{bottom:282.973333pt;}
.y88{bottom:283.613333pt;}
.y69{bottom:286.213333pt;}
.y49{bottom:300.933333pt;}
.y87{bottom:301.893333pt;}
.y25{bottom:302.533333pt;}
.y11{bottom:304.453333pt;}
.y68{bottom:306.053333pt;}
.y86{bottom:320.133333pt;}
.y48{bottom:321.093333pt;}
.y24{bottom:322.373333pt;}
.y10{bottom:326.213333pt;}
.y85{bottom:338.373333pt;}
.y47{bottom:340.933333pt;}
.y23{bottom:342.533333pt;}
.y67{bottom:346.373333pt;}
.yf{bottom:352.773333pt;}
.y84{bottom:356.613333pt;}
.y45{bottom:361.093333pt;}
.y22{bottom:362.693333pt;}
.y46{bottom:365.920000pt;}
.y66{bottom:366.560000pt;}
.ye{bottom:374.240000pt;}
.y83{bottom:375.200000pt;}
.y44{bottom:381.280000pt;}
.y21{bottom:382.880000pt;}
.y65{bottom:386.400000pt;}
.y82{bottom:393.440000pt;}
.yd{bottom:395.680000pt;}
.y43{bottom:401.440000pt;}
.y20{bottom:402.720000pt;}
.y64{bottom:406.560000pt;}
.y81{bottom:411.680000pt;}
.yc{bottom:417.440000pt;}
.y42{bottom:421.280000pt;}
.y1f{bottom:422.880000pt;}
.y63{bottom:426.720000pt;}
.y80{bottom:429.920000pt;}
.yb{bottom:438.880000pt;}
.y40{bottom:441.440000pt;}
.y1e{bottom:443.066667pt;}
.y41{bottom:446.266667pt;}
.y62{bottom:446.906667pt;}
.y7f{bottom:448.186667pt;}
.y9f{bottom:456.186667pt;}
.ya{bottom:460.346667pt;}
.y3f{bottom:461.626667pt;}
.y1d{bottom:463.226667pt;}
.y7e{bottom:466.426667pt;}
.y61{bottom:466.746667pt;}
.y9{bottom:481.786667pt;}
.y1c{bottom:483.066667pt;}
.y7d{bottom:484.666667pt;}
.y9e{bottom:486.266667pt;}
.y60{bottom:486.906667pt;}
.y3e{bottom:501.626667pt;}
.y7c{bottom:502.906667pt;}
.y1b{bottom:503.226667pt;}
.y8{bottom:503.546667pt;}
.y9d{bottom:506.426667pt;}
.y5f{bottom:507.066667pt;}
.y7b{bottom:521.186667pt;}
.y3d{bottom:521.826667pt;}
.y1a{bottom:523.426667pt;}
.y7{bottom:525.026667pt;}
.y9c{bottom:526.626667pt;}
.y5e{bottom:527.266667pt;}
.y7a{bottom:539.426667pt;}
.y3c{bottom:541.986667pt;}
.y6{bottom:546.466667pt;}
.y9b{bottom:546.786667pt;}
.y5d{bottom:547.106667pt;}
.y19{bottom:551.266667pt;}
.y79{bottom:557.666667pt;}
.y3b{bottom:562.146667pt;}
.y9a{bottom:566.626667pt;}
.y5c{bottom:567.266667pt;}
.y5{bottom:567.906667pt;}
.y78{bottom:575.906667pt;}
.y39{bottom:581.986667pt;}
.y3a{bottom:586.786667pt;}
.y5b{bottom:587.426667pt;}
.y99{bottom:592.866667pt;}
.y77{bottom:594.146667pt;}
.y18{bottom:599.933333pt;}
.y38{bottom:602.173333pt;}
.y5a{bottom:607.613333pt;}
.y98{bottom:611.453333pt;}
.y37{bottom:622.333333pt;}
.y59{bottom:627.453333pt;}
.y4{bottom:629.053333pt;}
.y97{bottom:629.693333pt;}
.y17{bottom:636.733333pt;}
.y36{bottom:642.493333pt;}
.y96{bottom:647.933333pt;}
.y58{bottom:655.293333pt;}
.y35{bottom:662.333333pt;}
.y95{bottom:666.173333pt;}
.y34{bottom:682.533333pt;}
.y94{bottom:684.453333pt;}
.y16{bottom:686.053333pt;}
.y3{bottom:700.773333pt;}
.y33{bottom:702.693333pt;}
.y15{bottom:730.853333pt;}
.hc{height:20.696320pt;}
.hb{height:27.232000pt;}
.h2{height:33.767680pt;}
.hd{height:35.593904pt;}
.h3{height:45.749760pt;}
.hf{height:45.803520pt;}
.he{height:48.223999pt;}
.ha{height:52.381623pt;}
.h6{height:60.509806pt;}
.h4{height:65.949440pt;}
.h7{height:71.085511pt;}
.h9{height:73.824000pt;}
.h8{height:123.138432pt;}
.h5{height:147.746432pt;}
.h1{height:793.333333pt;}
.h0{height:793.600000pt;}
.w1{width:559.333333pt;}
.w3{width:559.359983pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x18{left:56.671992pt;}
.x19{left:61.471992pt;}
.x13{left:75.551992pt;}
.x24{left:80.031992pt;}
.x26{left:83.263992pt;}
.x14{left:84.223992pt;}
.x2{left:94.463992pt;}
.x5{left:95.423992pt;}
.xe{left:99.263992pt;}
.x6{left:103.103992pt;}
.x28{left:105.983992pt;}
.x15{left:108.223992pt;}
.xb{left:109.183992pt;}
.xd{left:111.743992pt;}
.xa{left:113.023992pt;}
.x29{left:118.463992pt;}
.x3{left:119.743992pt;}
.x7{left:120.703992pt;}
.x11{left:122.623992pt;}
.xf{left:123.903992pt;}
.x2b{left:124.863992pt;}
.x2a{left:137.346658pt;}
.x1d{left:138.306650pt;}
.x1e{left:144.413325pt;}
.x20{left:149.213317pt;}
.x1f{left:152.733325pt;}
.x10{left:154.333325pt;}
.x21{left:155.613325pt;}
.x4{left:182.173325pt;}
.xc{left:186.973325pt;}
.x8{left:238.853325pt;}
.x1a{left:251.333325pt;}
.x12{left:265.439992pt;}
.x1{left:284.639992pt;}
.x9{left:289.119992pt;}
.x25{left:297.119992pt;}
.x1c{left:300.959992pt;}
.x27{left:309.946658pt;}
.x22{left:311.546650pt;}
.x23{left:317.946658pt;}
.x1b{left:401.506658pt;}
.x16{left:455.613317pt;}
.x17{left:462.013325pt;}
}

