
    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_71fd954146766781b07c8938.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_4af48cdeff2243f0ccc7d532.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_25e1c31641d9f038c4bfff7d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.690918;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_7fc30ecf6afd51b56b242c95.woff')format("woff");}.ff4{font-family:ff4;line-height:1.401855;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_cf24d47d9cb3c50f35a5b059.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a81e7fc14f7d2e295e6a7d16.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_35103daa275e2d7c087c4380.woff')format("woff");}.ff7{font-family:ff7;line-height:0.694336;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_4fb46bede638e1faa499d6da.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e0a665de02c81b8769dc3485.woff')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_9a765eb7ff76f6e6b81bbca5.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1a32f96f3a506746a1f865cd.woff')format("woff");}.ffb{font-family:ffb;line-height:0.691406;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:-24.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.120000px;}
.ls1a{letter-spacing:-5.616000px;}
.ls2e{letter-spacing:-1.800000px;}
.ls2f{letter-spacing:-1.656000px;}
.ls8{letter-spacing:-1.512000px;}
.lsa{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-1.368000px;}
.lsf{letter-spacing:-1.296000px;}
.ls1d{letter-spacing:-1.224000px;}
.lse{letter-spacing:-1.080000px;}
.ls9{letter-spacing:-1.008000px;}
.ls1b{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.792000px;}
.ls15{letter-spacing:-0.720000px;}
.ls2d{letter-spacing:-0.576000px;}
.ls19{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.270000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.126000px;}
.ls5{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.072000px;}
.ls2b{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls28{letter-spacing:0.264000px;}
.ls14{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.864000px;}
.ls27{letter-spacing:1.080000px;}
.ls29{letter-spacing:1.224000px;}
.ls26{letter-spacing:1.440000px;}
.ls25{letter-spacing:1.584000px;}
.ls1f{letter-spacing:9.000000px;}
.ls0{letter-spacing:10.440000px;}
.ls1c{letter-spacing:10.800000px;}
.ls10{letter-spacing:15.480000px;}
.ls4{letter-spacing:18.360000px;}
.ls24{letter-spacing:25.560000px;}
.ls23{letter-spacing:28.080000px;}
.ls3{letter-spacing:30.240000px;}
.ls2a{letter-spacing:31.680000px;}
.ls2c{letter-spacing:33.480000px;}
.ls21{letter-spacing:43.920000px;}
.lsc{letter-spacing:51.984000px;}
.ls20{letter-spacing:64.080000px;}
.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;}
}
.wsf{word-spacing:-18.720000px;}
.ws10{word-spacing:-18.360000px;}
.wse{word-spacing:-18.144000px;}
.ws16{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws19{word-spacing:-17.856000px;}
.ws18{word-spacing:-17.784000px;}
.ws13{word-spacing:-17.712000px;}
.ws1a{word-spacing:-17.640000px;}
.ws11{word-spacing:-17.280000px;}
.ws12{word-spacing:-17.208000px;}
.ws15{word-spacing:-17.064000px;}
.wsc{word-spacing:-16.992000px;}
.wsb{word-spacing:-16.920000px;}
.ws17{word-spacing:-16.776000px;}
.ws14{word-spacing:-16.704000px;}
.wsd{word-spacing:-16.632000px;}
.ws6{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.488000px;}
.ws1b{word-spacing:-16.200000px;}
.ws1{word-spacing:-15.750000px;}
.ws2{word-spacing:-15.624000px;}
.ws0{word-spacing:-15.570000px;}
.ws8{word-spacing:-15.210000px;}
.wsa{word-spacing:-15.030000px;}
.ws9{word-spacing:-14.850000px;}
.ws4{word-spacing:-11.970000px;}
.ws7{word-spacing:0.000000px;}
._29{margin-left:-35.280000px;}
._28{margin-left:-20.200320px;}
._1c{margin-left:-9.458400px;}
._3{margin-left:-7.464120px;}
._d{margin-left:-5.902560px;}
._0{margin-left:-4.221000px;}
._8{margin-left:-3.099600px;}
._1{margin-left:-1.919880px;}
._4{width:1.031880px;}
._c{width:2.179800px;}
._10{width:3.227880px;}
._b{width:4.251600px;}
._11{width:5.388960px;}
._7{width:7.103520px;}
._6{width:8.111520px;}
._f{width:9.119520px;}
._e{width:10.590120px;}
._a{width:12.116160px;}
._9{width:13.995000px;}
._5{width:15.671280px;}
._14{width:16.971480px;}
._17{width:19.512360px;}
._1a{width:21.144120px;}
._19{width:22.535640px;}
._1b{width:23.903280px;}
._18{width:25.896120px;}
._22{width:26.951880px;}
._15{width:28.120320px;}
._2{width:29.124360px;}
._1e{width:30.175200px;}
._1d{width:31.271760px;}
._16{width:32.472000px;}
._23{width:33.768000px;}
._2a{width:39.816000px;}
._2b{width:40.943880px;}
._24{width:42.048000px;}
._1f{width:64.080000px;}
._25{width:105.840000px;}
._26{width:107.088000px;}
._27{width:127.920000px;}
._2d{width:168.696000px;}
._2c{width:213.696000px;}
._21{width:241.124400px;}
._20{width:242.211600px;}
._12{width:745.516680px;}
._13{width:1049.610000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.880000px;}
.fs4{font-size:60.120000px;}
.fs0{font-size:63.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y27{bottom:77.580000px;}
.y25{bottom:124.650000px;}
.y52{bottom:127.350000px;}
.y54{bottom:128.880000px;}
.y4f{bottom:130.410000px;}
.y79{bottom:140.310000px;}
.y24{bottom:147.780000px;}
.y51{bottom:152.280000px;}
.y4e{bottom:153.810000px;}
.y78{bottom:165.150000px;}
.y23{bottom:171.180000px;}
.y4d{bottom:177.210000px;}
.y77{bottom:190.080000px;}
.y4c{bottom:200.610000px;}
.y76{bottom:213.510000px;}
.y22{bottom:218.010000px;}
.y4b{bottom:224.040000px;}
.y75{bottom:236.910000px;}
.y21{bottom:241.410000px;}
.y4a{bottom:247.440000px;}
.y74{bottom:260.310000px;}
.y20{bottom:264.810000px;}
.y49{bottom:270.840000px;}
.y73{bottom:283.710000px;}
.y1f{bottom:288.210000px;}
.y48{bottom:294.240000px;}
.y72{bottom:307.110000px;}
.y1e{bottom:311.610000px;}
.y47{bottom:317.640000px;}
.y71{bottom:330.510000px;}
.y1d{bottom:335.010000px;}
.y46{bottom:341.040000px;}
.y70{bottom:353.910000px;}
.y1c{bottom:358.410000px;}
.y45{bottom:364.440000px;}
.y6f{bottom:377.310000px;}
.y1b{bottom:381.810000px;}
.y44{bottom:387.840000px;}
.y6e{bottom:402.240000px;}
.y1a{bottom:405.210000px;}
.y43{bottom:411.240000px;}
.y6d{bottom:425.640000px;}
.y19{bottom:428.610000px;}
.y42{bottom:434.640000px;}
.y6c{bottom:449.040000px;}
.y18{bottom:452.010000px;}
.y41{bottom:458.040000px;}
.y6b{bottom:472.440000px;}
.y17{bottom:475.410000px;}
.y40{bottom:481.440000px;}
.y6a{bottom:497.370000px;}
.y16{bottom:498.810000px;}
.y3f{bottom:504.840000px;}
.y69{bottom:520.770000px;}
.y15{bottom:522.210000px;}
.y3e{bottom:528.240000px;}
.y68{bottom:544.170000px;}
.y14{bottom:545.610000px;}
.y3d{bottom:551.640000px;}
.y67{bottom:567.570000px;}
.y13{bottom:569.010000px;}
.y3c{bottom:575.040000px;}
.y66{bottom:590.880000px;}
.y12{bottom:592.410000px;}
.y3b{bottom:598.440000px;}
.y53{bottom:599.520000px;}
.y11{bottom:615.810000px;}
.y3a{bottom:621.840000px;}
.y10{bottom:639.240000px;}
.y39{bottom:645.270000px;}
.yf{bottom:662.640000px;}
.y38{bottom:668.670000px;}
.y65{bottom:687.570000px;}
.y37{bottom:692.070000px;}
.y64{bottom:710.970000px;}
.ye{bottom:715.470000px;}
.y63{bottom:734.370000px;}
.yd{bottom:738.870000px;}
.y62{bottom:757.770000px;}
.yc{bottom:762.270000px;}
.y61{bottom:781.170000px;}
.y36{bottom:785.670000px;}
.y7a{bottom:786.750000px;}
.yb{bottom:803.040000px;}
.y60{bottom:804.570000px;}
.y35{bottom:809.070000px;}
.y5f{bottom:827.970000px;}
.y34{bottom:832.470000px;}
.y5e{bottom:852.900000px;}
.y33{bottom:855.870000px;}
.ya{bottom:859.380000px;}
.y5d{bottom:876.300000px;}
.y32{bottom:879.270000px;}
.y5c{bottom:899.610000px;}
.y31{bottom:902.670000px;}
.y9{bottom:906.180000px;}
.y5b{bottom:924.540000px;}
.y30{bottom:926.070000px;}
.y8{bottom:944.250000px;}
.y5a{bottom:947.940000px;}
.y2f{bottom:949.470000px;}
.y59{bottom:971.340000px;}
.y2e{bottom:972.870000px;}
.y58{bottom:994.740000px;}
.y2d{bottom:996.270000px;}
.y7{bottom:997.080000px;}
.y57{bottom:1018.140000px;}
.y2c{bottom:1019.670000px;}
.y6{bottom:1020.480000px;}
.y56{bottom:1041.540000px;}
.y2b{bottom:1043.070000px;}
.y5{bottom:1043.970000px;}
.y55{bottom:1064.970000px;}
.y2a{bottom:1066.500000px;}
.y4{bottom:1067.400000px;}
.y29{bottom:1089.900000px;}
.y3{bottom:1090.800000px;}
.y50{bottom:1113.300000px;}
.y2{bottom:1114.200000px;}
.y28{bottom:1136.700000px;}
.y1{bottom:1137.600000px;}
.y26{bottom:1185.030000px;}
.hc{height:42.974121px;}
.h7{height:46.544063px;}
.h9{height:59.004492px;}
.h2{height:61.831055px;}
.h3{height:63.492188px;}
.h8{height:64.546875px;}
.h4{height:65.143828px;}
.hb{height:70.628906px;}
.h5{height:70.664062px;}
.h6{height:72.562500px;}
.ha{height:74.953125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:80.999987px;}
.xa{left:89.999987px;}
.x3{left:99.089987px;}
.x7{left:112.499987px;}
.x5{left:115.829987px;}
.x6{left:116.999987px;}
.xb{left:327.719987px;}
.x9{left:332.669987px;}
.x8{left:569.489987px;}
.x1{left:578.489987px;}
.x4{left:797.039987px;}
@media print{
.v2{vertical-align:-21.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.440000pt;}
.ls1a{letter-spacing:-4.992000pt;}
.ls2e{letter-spacing:-1.600000pt;}
.ls2f{letter-spacing:-1.472000pt;}
.ls8{letter-spacing:-1.344000pt;}
.lsa{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-1.216000pt;}
.lsf{letter-spacing:-1.152000pt;}
.ls1d{letter-spacing:-1.088000pt;}
.lse{letter-spacing:-0.960000pt;}
.ls9{letter-spacing:-0.896000pt;}
.ls1b{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.704000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls2d{letter-spacing:-0.512000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.240000pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.112000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.064000pt;}
.ls2b{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls28{letter-spacing:0.234667pt;}
.ls14{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.768000pt;}
.ls27{letter-spacing:0.960000pt;}
.ls29{letter-spacing:1.088000pt;}
.ls26{letter-spacing:1.280000pt;}
.ls25{letter-spacing:1.408000pt;}
.ls1f{letter-spacing:8.000000pt;}
.ls0{letter-spacing:9.280000pt;}
.ls1c{letter-spacing:9.600000pt;}
.ls10{letter-spacing:13.760000pt;}
.ls4{letter-spacing:16.320000pt;}
.ls24{letter-spacing:22.720000pt;}
.ls23{letter-spacing:24.960000pt;}
.ls3{letter-spacing:26.880000pt;}
.ls2a{letter-spacing:28.160000pt;}
.ls2c{letter-spacing:29.760000pt;}
.ls21{letter-spacing:39.040000pt;}
.lsc{letter-spacing:46.208000pt;}
.ls20{letter-spacing:56.960000pt;}
.wsf{word-spacing:-16.640000pt;}
.ws10{word-spacing:-16.320000pt;}
.wse{word-spacing:-16.128000pt;}
.ws16{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws19{word-spacing:-15.872000pt;}
.ws18{word-spacing:-15.808000pt;}
.ws13{word-spacing:-15.744000pt;}
.ws1a{word-spacing:-15.680000pt;}
.ws11{word-spacing:-15.360000pt;}
.ws12{word-spacing:-15.296000pt;}
.ws15{word-spacing:-15.168000pt;}
.wsc{word-spacing:-15.104000pt;}
.wsb{word-spacing:-15.040000pt;}
.ws17{word-spacing:-14.912000pt;}
.ws14{word-spacing:-14.848000pt;}
.wsd{word-spacing:-14.784000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.656000pt;}
.ws1b{word-spacing:-14.400000pt;}
.ws1{word-spacing:-14.000000pt;}
.ws2{word-spacing:-13.888000pt;}
.ws0{word-spacing:-13.840000pt;}
.ws8{word-spacing:-13.520000pt;}
.wsa{word-spacing:-13.360000pt;}
.ws9{word-spacing:-13.200000pt;}
.ws4{word-spacing:-10.640000pt;}
.ws7{word-spacing:0.000000pt;}
._29{margin-left:-31.360000pt;}
._28{margin-left:-17.955840pt;}
._1c{margin-left:-8.407467pt;}
._3{margin-left:-6.634773pt;}
._d{margin-left:-5.246720pt;}
._0{margin-left:-3.752000pt;}
._8{margin-left:-2.755200pt;}
._1{margin-left:-1.706560pt;}
._4{width:0.917227pt;}
._c{width:1.937600pt;}
._10{width:2.869227pt;}
._b{width:3.779200pt;}
._11{width:4.790187pt;}
._7{width:6.314240pt;}
._6{width:7.210240pt;}
._f{width:8.106240pt;}
._e{width:9.413440pt;}
._a{width:10.769920pt;}
._9{width:12.440000pt;}
._5{width:13.930027pt;}
._14{width:15.085760pt;}
._17{width:17.344320pt;}
._1a{width:18.794773pt;}
._19{width:20.031680pt;}
._1b{width:21.247360pt;}
._18{width:23.018773pt;}
._22{width:23.957227pt;}
._15{width:24.995840pt;}
._2{width:25.888320pt;}
._1e{width:26.822400pt;}
._1d{width:27.797120pt;}
._16{width:28.864000pt;}
._23{width:30.016000pt;}
._2a{width:35.392000pt;}
._2b{width:36.394560pt;}
._24{width:37.376000pt;}
._1f{width:56.960000pt;}
._25{width:94.080000pt;}
._26{width:95.189333pt;}
._27{width:113.706667pt;}
._2d{width:149.952000pt;}
._2c{width:189.952000pt;}
._21{width:214.332800pt;}
._20{width:215.299200pt;}
._12{width:662.681493pt;}
._13{width:932.986667pt;}
.fs3{font-size:42.560000pt;}
.fs4{font-size:53.440000pt;}
.fs0{font-size:56.000000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:68.960000pt;}
.y25{bottom:110.800000pt;}
.y52{bottom:113.200000pt;}
.y54{bottom:114.560000pt;}
.y4f{bottom:115.920000pt;}
.y79{bottom:124.720000pt;}
.y24{bottom:131.360000pt;}
.y51{bottom:135.360000pt;}
.y4e{bottom:136.720000pt;}
.y78{bottom:146.800000pt;}
.y23{bottom:152.160000pt;}
.y4d{bottom:157.520000pt;}
.y77{bottom:168.960000pt;}
.y4c{bottom:178.320000pt;}
.y76{bottom:189.786667pt;}
.y22{bottom:193.786667pt;}
.y4b{bottom:199.146667pt;}
.y75{bottom:210.586667pt;}
.y21{bottom:214.586667pt;}
.y4a{bottom:219.946667pt;}
.y74{bottom:231.386667pt;}
.y20{bottom:235.386667pt;}
.y49{bottom:240.746667pt;}
.y73{bottom:252.186667pt;}
.y1f{bottom:256.186667pt;}
.y48{bottom:261.546667pt;}
.y72{bottom:272.986667pt;}
.y1e{bottom:276.986667pt;}
.y47{bottom:282.346667pt;}
.y71{bottom:293.786667pt;}
.y1d{bottom:297.786667pt;}
.y46{bottom:303.146667pt;}
.y70{bottom:314.586667pt;}
.y1c{bottom:318.586667pt;}
.y45{bottom:323.946667pt;}
.y6f{bottom:335.386667pt;}
.y1b{bottom:339.386667pt;}
.y44{bottom:344.746667pt;}
.y6e{bottom:357.546667pt;}
.y1a{bottom:360.186667pt;}
.y43{bottom:365.546667pt;}
.y6d{bottom:378.346667pt;}
.y19{bottom:380.986667pt;}
.y42{bottom:386.346667pt;}
.y6c{bottom:399.146667pt;}
.y18{bottom:401.786667pt;}
.y41{bottom:407.146667pt;}
.y6b{bottom:419.946667pt;}
.y17{bottom:422.586667pt;}
.y40{bottom:427.946667pt;}
.y6a{bottom:442.106667pt;}
.y16{bottom:443.386667pt;}
.y3f{bottom:448.746667pt;}
.y69{bottom:462.906667pt;}
.y15{bottom:464.186667pt;}
.y3e{bottom:469.546667pt;}
.y68{bottom:483.706667pt;}
.y14{bottom:484.986667pt;}
.y3d{bottom:490.346667pt;}
.y67{bottom:504.506667pt;}
.y13{bottom:505.786667pt;}
.y3c{bottom:511.146667pt;}
.y66{bottom:525.226667pt;}
.y12{bottom:526.586667pt;}
.y3b{bottom:531.946667pt;}
.y53{bottom:532.906667pt;}
.y11{bottom:547.386667pt;}
.y3a{bottom:552.746667pt;}
.y10{bottom:568.213333pt;}
.y39{bottom:573.573333pt;}
.yf{bottom:589.013333pt;}
.y38{bottom:594.373333pt;}
.y65{bottom:611.173333pt;}
.y37{bottom:615.173333pt;}
.y64{bottom:631.973333pt;}
.ye{bottom:635.973333pt;}
.y63{bottom:652.773333pt;}
.yd{bottom:656.773333pt;}
.y62{bottom:673.573333pt;}
.yc{bottom:677.573333pt;}
.y61{bottom:694.373333pt;}
.y36{bottom:698.373333pt;}
.y7a{bottom:699.333333pt;}
.yb{bottom:713.813333pt;}
.y60{bottom:715.173333pt;}
.y35{bottom:719.173333pt;}
.y5f{bottom:735.973333pt;}
.y34{bottom:739.973333pt;}
.y5e{bottom:758.133333pt;}
.y33{bottom:760.773333pt;}
.ya{bottom:763.893333pt;}
.y5d{bottom:778.933333pt;}
.y32{bottom:781.573333pt;}
.y5c{bottom:799.653333pt;}
.y31{bottom:802.373333pt;}
.y9{bottom:805.493333pt;}
.y5b{bottom:821.813333pt;}
.y30{bottom:823.173333pt;}
.y8{bottom:839.333333pt;}
.y5a{bottom:842.613333pt;}
.y2f{bottom:843.973333pt;}
.y59{bottom:863.413333pt;}
.y2e{bottom:864.773333pt;}
.y58{bottom:884.213333pt;}
.y2d{bottom:885.573333pt;}
.y7{bottom:886.293333pt;}
.y57{bottom:905.013333pt;}
.y2c{bottom:906.373333pt;}
.y6{bottom:907.093333pt;}
.y56{bottom:925.813333pt;}
.y2b{bottom:927.173333pt;}
.y5{bottom:927.973333pt;}
.y55{bottom:946.640000pt;}
.y2a{bottom:948.000000pt;}
.y4{bottom:948.800000pt;}
.y29{bottom:968.800000pt;}
.y3{bottom:969.600000pt;}
.y50{bottom:989.600000pt;}
.y2{bottom:990.400000pt;}
.y28{bottom:1010.400000pt;}
.y1{bottom:1011.200000pt;}
.y26{bottom:1053.360000pt;}
.hc{height:38.199219pt;}
.h7{height:41.372500pt;}
.h9{height:52.448437pt;}
.h2{height:54.960938pt;}
.h3{height:56.437500pt;}
.h8{height:57.375000pt;}
.h4{height:57.905625pt;}
.hb{height:62.781250pt;}
.h5{height:62.812500pt;}
.h6{height:64.500000pt;}
.ha{height:66.625000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:71.999988pt;}
.xa{left:79.999988pt;}
.x3{left:88.079988pt;}
.x7{left:99.999988pt;}
.x5{left:102.959988pt;}
.x6{left:103.999988pt;}
.xb{left:291.306655pt;}
.x9{left:295.706655pt;}
.x8{left:506.213322pt;}
.x1{left:514.213322pt;}
.x4{left:708.479988pt;}
}

