
    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_0889191f3c16ef1597317646.woff')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_7915506965bfedb28a90585c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.892578;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_fad1e89ac19fd0503e264203.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_0729f17e8243662a1b08a67e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.124118;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_8a25e998f3926d552bbed94d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105000;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_6c5dcdf1e3978669383b67c5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.984048;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_9ca832e75d5e22801293cee2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.959000;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_672f6743e7e798e5055dc84d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.050000;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_b27e3b3f0773863771f6d3cf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.892578;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_d57531af268f61623e304377.woff')format("woff");}.ffa{font-family:ffa;line-height:1.052000;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_90b73e600808e6f9406e336f.woff')format("woff");}.ffb{font-family:ffb;line-height:1.105000;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_fad1e89ac19fd0503e264203.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_3c1e2e44489527195b4250c8.woff')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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);}
.v1{vertical-align:-2.157600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.154600px;}
.ls2{letter-spacing:-0.960000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:1.260000px;}
.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;}
}
.ws0{word-spacing:-15.000000px;}
.ws1{word-spacing:-11.280000px;}
.ws1a{word-spacing:-11.250000px;}
.ws6{word-spacing:-4.047000px;}
.ws4{word-spacing:-3.780000px;}
.ws7{word-spacing:-3.648000px;}
.ws41{word-spacing:-2.451000px;}
.ws40{word-spacing:-1.968000px;}
.ws3e{word-spacing:-1.767000px;}
.ws17{word-spacing:-1.596000px;}
.ws5b{word-spacing:-1.368000px;}
.ws5{word-spacing:-1.197000px;}
.ws11{word-spacing:-1.140000px;}
.ws1f{word-spacing:-1.083000px;}
.ws20{word-spacing:-1.026000px;}
.ws5d{word-spacing:-0.912000px;}
.ws31{word-spacing:-0.855000px;}
.ws24{word-spacing:-0.741000px;}
.ws3{word-spacing:-0.630000px;}
.ws42{word-spacing:-0.627000px;}
.ws51{word-spacing:-0.513000px;}
.ws1b{word-spacing:-0.450000px;}
.ws3a{word-spacing:-0.399000px;}
.ws46{word-spacing:-0.342000px;}
.ws48{word-spacing:-0.285000px;}
.ws21{word-spacing:-0.228000px;}
.ws4a{word-spacing:-0.114000px;}
.ws2{word-spacing:0.000000px;}
.ws49{word-spacing:0.399000px;}
.ws2d{word-spacing:0.456000px;}
.ws38{word-spacing:0.684000px;}
.ws35{word-spacing:0.855000px;}
.ws32{word-spacing:0.912000px;}
.ws33{word-spacing:1.083000px;}
.ws4c{word-spacing:1.140000px;}
.ws45{word-spacing:1.197000px;}
.ws2c{word-spacing:1.311000px;}
.ws16{word-spacing:1.368000px;}
.ws8{word-spacing:1.425000px;}
.ws15{word-spacing:1.482000px;}
.ws52{word-spacing:1.596000px;}
.ws18{word-spacing:1.710000px;}
.ws53{word-spacing:1.995000px;}
.ws3b{word-spacing:2.166000px;}
.ws9{word-spacing:2.280000px;}
.ws57{word-spacing:2.337000px;}
.ws1e{word-spacing:2.451000px;}
.ws44{word-spacing:2.736000px;}
.ws3d{word-spacing:2.793000px;}
.ws2f{word-spacing:2.907000px;}
.wse{word-spacing:2.964000px;}
.ws4b{word-spacing:3.021000px;}
.ws5a{word-spacing:3.078000px;}
.ws29{word-spacing:3.306000px;}
.ws37{word-spacing:3.363000px;}
.ws4e{word-spacing:3.477000px;}
.ws14{word-spacing:3.648000px;}
.ws1c{word-spacing:3.762000px;}
.ws50{word-spacing:3.819000px;}
.ws58{word-spacing:3.933000px;}
.wsb{word-spacing:4.218000px;}
.ws55{word-spacing:4.275000px;}
.ws2e{word-spacing:4.332000px;}
.wsd{word-spacing:4.503000px;}
.ws10{word-spacing:4.788000px;}
.ws43{word-spacing:4.902000px;}
.ws34{word-spacing:4.959000px;}
.ws2a{word-spacing:5.016000px;}
.ws22{word-spacing:5.130000px;}
.ws56{word-spacing:5.187000px;}
.ws1d{word-spacing:5.301000px;}
.ws54{word-spacing:5.415000px;}
.ws25{word-spacing:5.586000px;}
.ws2b{word-spacing:5.871000px;}
.ws59{word-spacing:5.928000px;}
.ws39{word-spacing:5.985000px;}
.ws3c{word-spacing:6.099000px;}
.ws4d{word-spacing:6.270000px;}
.ws4f{word-spacing:6.327000px;}
.ws28{word-spacing:6.441000px;}
.ws23{word-spacing:6.726000px;}
.ws36{word-spacing:6.840000px;}
.ws26{word-spacing:6.897000px;}
.ws27{word-spacing:7.125000px;}
.ws47{word-spacing:7.182000px;}
.ws12{word-spacing:7.296000px;}
.ws30{word-spacing:7.467000px;}
.ws5c{word-spacing:8.721000px;}
.wsf{word-spacing:9.633000px;}
.wsc{word-spacing:10.431000px;}
.wsa{word-spacing:12.426000px;}
.ws13{word-spacing:14.991000px;}
.ws19{word-spacing:98.010000px;}
.ws3f{word-spacing:595.827000px;}
._4{margin-left:-9.240000px;}
._9{margin-left:-8.142000px;}
._2{margin-left:-5.940000px;}
._7{margin-left:-3.543000px;}
._0{margin-left:-2.148600px;}
._1{margin-left:-1.001400px;}
._5{width:1.105800px;}
._8{width:2.298600px;}
._3{width:4.275600px;}
._6{width:48.889800px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:55.815000px;}
.y55{bottom:56.126700px;}
.y26{bottom:56.665350px;}
.y24{bottom:104.131950px;}
.y53{bottom:114.567600px;}
.y23{bottom:121.388700px;}
.y52{bottom:131.824350px;}
.y22{bottom:138.645450px;}
.y51{bottom:149.081100px;}
.y21{bottom:155.902200px;}
.y50{bottom:166.337850px;}
.y20{bottom:173.158950px;}
.y4f{bottom:183.594600px;}
.y1f{bottom:190.415700px;}
.y4e{bottom:200.851350px;}
.y1e{bottom:207.672450px;}
.y4d{bottom:218.108100px;}
.y1d{bottom:224.929200px;}
.y4c{bottom:235.364850px;}
.y1c{bottom:242.185950px;}
.y4b{bottom:252.621600px;}
.y1b{bottom:259.442700px;}
.y4a{bottom:269.878350px;}
.y1a{bottom:276.699450px;}
.y49{bottom:287.135100px;}
.y19{bottom:293.956200px;}
.y48{bottom:304.391850px;}
.y18{bottom:311.212950px;}
.y47{bottom:321.648600px;}
.y17{bottom:328.469700px;}
.y46{bottom:338.905350px;}
.y16{bottom:345.726450px;}
.y45{bottom:356.162100px;}
.y15{bottom:362.983200px;}
.y44{bottom:373.418850px;}
.y14{bottom:380.239950px;}
.y43{bottom:390.675600px;}
.y13{bottom:397.496700px;}
.y42{bottom:407.932350px;}
.y12{bottom:414.753450px;}
.y41{bottom:425.189100px;}
.y11{bottom:432.010200px;}
.y40{bottom:442.445850px;}
.y3f{bottom:459.702600px;}
.y3e{bottom:476.959350px;}
.y10{bottom:491.782950px;}
.y3d{bottom:494.216100px;}
.yf{bottom:506.781450px;}
.y3c{bottom:511.472850px;}
.ye{bottom:526.033350px;}
.y3b{bottom:528.729600px;}
.y3a{bottom:545.986350px;}
.yd{bottom:551.233350px;}
.y39{bottom:563.243100px;}
.yc{bottom:576.433350px;}
.y38{bottom:580.499850px;}
.y37{bottom:597.756600px;}
.yb{bottom:601.633350px;}
.y36{bottom:615.013350px;}
.y35{bottom:632.270100px;}
.y34{bottom:649.526850px;}
.y33{bottom:666.783600px;}
.ya{bottom:669.354600px;}
.y32{bottom:684.040350px;}
.y9{bottom:684.353100px;}
.y31{bottom:701.297100px;}
.y8{bottom:703.605000px;}
.y30{bottom:718.553850px;}
.y7{bottom:731.608950px;}
.y2f{bottom:735.810600px;}
.y2e{bottom:753.067350px;}
.y6{bottom:758.608950px;}
.y2d{bottom:770.324100px;}
.y5{bottom:785.608950px;}
.y2c{bottom:787.580850px;}
.y2b{bottom:804.837600px;}
.y2a{bottom:822.094350px;}
.y29{bottom:839.351100px;}
.y28{bottom:856.607850px;}
.y4{bottom:867.772950px;}
.y27{bottom:873.864600px;}
.y3{bottom:885.772950px;}
.y2{bottom:903.772950px;}
.y54{bottom:917.138700px;}
.y25{bottom:917.533200px;}
.h4{height:36.000000px;}
.ha{height:37.305000px;}
.hb{height:39.792000px;}
.h7{height:46.170000px;}
.h2{height:46.602000px;}
.h9{height:48.735000px;}
.hc{height:48.756600px;}
.h3{height:52.646484px;}
.h8{height:60.064000px;}
.h6{height:72.492000px;}
.h5{height:78.580588px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x17{left:63.779550px;}
.x11{left:72.283500px;}
.xc{left:82.399950px;}
.x13{left:85.198800px;}
.x12{left:89.403750px;}
.xd{left:91.954950px;}
.x18{left:93.547800px;}
.x6{left:98.951250px;}
.x5{left:101.178750px;}
.x7{left:115.308750px;}
.x14{left:119.059650px;}
.xb{left:135.424950px;}
.x10{left:154.702500px;}
.xe{left:167.617950px;}
.xa{left:187.107750px;}
.x2{left:201.609900px;}
.xf{left:218.503500px;}
.x16{left:236.232600px;}
.x8{left:237.945600px;}
.x9{left:261.506250px;}
.x1{left:338.727750px;}
.x4{left:393.334950px;}
.x3{left:406.918950px;}
.x15{left:514.428600px;}
@media print{
.v1{vertical-align:-1.917867pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.915200pt;}
.ls2{letter-spacing:-0.853333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:1.120000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws1{word-spacing:-10.026667pt;}
.ws1a{word-spacing:-10.000000pt;}
.ws6{word-spacing:-3.597333pt;}
.ws4{word-spacing:-3.360000pt;}
.ws7{word-spacing:-3.242667pt;}
.ws41{word-spacing:-2.178667pt;}
.ws40{word-spacing:-1.749333pt;}
.ws3e{word-spacing:-1.570667pt;}
.ws17{word-spacing:-1.418667pt;}
.ws5b{word-spacing:-1.216000pt;}
.ws5{word-spacing:-1.064000pt;}
.ws11{word-spacing:-1.013333pt;}
.ws1f{word-spacing:-0.962667pt;}
.ws20{word-spacing:-0.912000pt;}
.ws5d{word-spacing:-0.810667pt;}
.ws31{word-spacing:-0.760000pt;}
.ws24{word-spacing:-0.658667pt;}
.ws3{word-spacing:-0.560000pt;}
.ws42{word-spacing:-0.557333pt;}
.ws51{word-spacing:-0.456000pt;}
.ws1b{word-spacing:-0.400000pt;}
.ws3a{word-spacing:-0.354667pt;}
.ws46{word-spacing:-0.304000pt;}
.ws48{word-spacing:-0.253333pt;}
.ws21{word-spacing:-0.202667pt;}
.ws4a{word-spacing:-0.101333pt;}
.ws2{word-spacing:0.000000pt;}
.ws49{word-spacing:0.354667pt;}
.ws2d{word-spacing:0.405333pt;}
.ws38{word-spacing:0.608000pt;}
.ws35{word-spacing:0.760000pt;}
.ws32{word-spacing:0.810667pt;}
.ws33{word-spacing:0.962667pt;}
.ws4c{word-spacing:1.013333pt;}
.ws45{word-spacing:1.064000pt;}
.ws2c{word-spacing:1.165333pt;}
.ws16{word-spacing:1.216000pt;}
.ws8{word-spacing:1.266667pt;}
.ws15{word-spacing:1.317333pt;}
.ws52{word-spacing:1.418667pt;}
.ws18{word-spacing:1.520000pt;}
.ws53{word-spacing:1.773333pt;}
.ws3b{word-spacing:1.925333pt;}
.ws9{word-spacing:2.026667pt;}
.ws57{word-spacing:2.077333pt;}
.ws1e{word-spacing:2.178667pt;}
.ws44{word-spacing:2.432000pt;}
.ws3d{word-spacing:2.482667pt;}
.ws2f{word-spacing:2.584000pt;}
.wse{word-spacing:2.634667pt;}
.ws4b{word-spacing:2.685333pt;}
.ws5a{word-spacing:2.736000pt;}
.ws29{word-spacing:2.938667pt;}
.ws37{word-spacing:2.989333pt;}
.ws4e{word-spacing:3.090667pt;}
.ws14{word-spacing:3.242667pt;}
.ws1c{word-spacing:3.344000pt;}
.ws50{word-spacing:3.394667pt;}
.ws58{word-spacing:3.496000pt;}
.wsb{word-spacing:3.749333pt;}
.ws55{word-spacing:3.800000pt;}
.ws2e{word-spacing:3.850667pt;}
.wsd{word-spacing:4.002667pt;}
.ws10{word-spacing:4.256000pt;}
.ws43{word-spacing:4.357333pt;}
.ws34{word-spacing:4.408000pt;}
.ws2a{word-spacing:4.458667pt;}
.ws22{word-spacing:4.560000pt;}
.ws56{word-spacing:4.610667pt;}
.ws1d{word-spacing:4.712000pt;}
.ws54{word-spacing:4.813333pt;}
.ws25{word-spacing:4.965333pt;}
.ws2b{word-spacing:5.218667pt;}
.ws59{word-spacing:5.269333pt;}
.ws39{word-spacing:5.320000pt;}
.ws3c{word-spacing:5.421333pt;}
.ws4d{word-spacing:5.573333pt;}
.ws4f{word-spacing:5.624000pt;}
.ws28{word-spacing:5.725333pt;}
.ws23{word-spacing:5.978667pt;}
.ws36{word-spacing:6.080000pt;}
.ws26{word-spacing:6.130667pt;}
.ws27{word-spacing:6.333333pt;}
.ws47{word-spacing:6.384000pt;}
.ws12{word-spacing:6.485333pt;}
.ws30{word-spacing:6.637333pt;}
.ws5c{word-spacing:7.752000pt;}
.wsf{word-spacing:8.562667pt;}
.wsc{word-spacing:9.272000pt;}
.wsa{word-spacing:11.045333pt;}
.ws13{word-spacing:13.325333pt;}
.ws19{word-spacing:87.120000pt;}
.ws3f{word-spacing:529.624000pt;}
._4{margin-left:-8.213333pt;}
._9{margin-left:-7.237333pt;}
._2{margin-left:-5.280000pt;}
._7{margin-left:-3.149333pt;}
._0{margin-left:-1.909867pt;}
._1{margin-left:-0.890133pt;}
._5{width:0.982933pt;}
._8{width:2.043200pt;}
._3{width:3.800533pt;}
._6{width:43.457600pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:49.613333pt;}
.y55{bottom:49.890400pt;}
.y26{bottom:50.369200pt;}
.y24{bottom:92.561733pt;}
.y53{bottom:101.837867pt;}
.y23{bottom:107.901067pt;}
.y52{bottom:117.177200pt;}
.y22{bottom:123.240400pt;}
.y51{bottom:132.516533pt;}
.y21{bottom:138.579733pt;}
.y50{bottom:147.855867pt;}
.y20{bottom:153.919067pt;}
.y4f{bottom:163.195200pt;}
.y1f{bottom:169.258400pt;}
.y4e{bottom:178.534533pt;}
.y1e{bottom:184.597733pt;}
.y4d{bottom:193.873867pt;}
.y1d{bottom:199.937067pt;}
.y4c{bottom:209.213200pt;}
.y1c{bottom:215.276400pt;}
.y4b{bottom:224.552533pt;}
.y1b{bottom:230.615733pt;}
.y4a{bottom:239.891867pt;}
.y1a{bottom:245.955067pt;}
.y49{bottom:255.231200pt;}
.y19{bottom:261.294400pt;}
.y48{bottom:270.570533pt;}
.y18{bottom:276.633733pt;}
.y47{bottom:285.909867pt;}
.y17{bottom:291.973067pt;}
.y46{bottom:301.249200pt;}
.y16{bottom:307.312400pt;}
.y45{bottom:316.588533pt;}
.y15{bottom:322.651733pt;}
.y44{bottom:331.927867pt;}
.y14{bottom:337.991067pt;}
.y43{bottom:347.267200pt;}
.y13{bottom:353.330400pt;}
.y42{bottom:362.606533pt;}
.y12{bottom:368.669733pt;}
.y41{bottom:377.945867pt;}
.y11{bottom:384.009067pt;}
.y40{bottom:393.285200pt;}
.y3f{bottom:408.624533pt;}
.y3e{bottom:423.963867pt;}
.y10{bottom:437.140400pt;}
.y3d{bottom:439.303200pt;}
.yf{bottom:450.472400pt;}
.y3c{bottom:454.642533pt;}
.ye{bottom:467.585200pt;}
.y3b{bottom:469.981867pt;}
.y3a{bottom:485.321200pt;}
.yd{bottom:489.985200pt;}
.y39{bottom:500.660533pt;}
.yc{bottom:512.385200pt;}
.y38{bottom:515.999867pt;}
.y37{bottom:531.339200pt;}
.yb{bottom:534.785200pt;}
.y36{bottom:546.678533pt;}
.y35{bottom:562.017867pt;}
.y34{bottom:577.357200pt;}
.y33{bottom:592.696533pt;}
.ya{bottom:594.981867pt;}
.y32{bottom:608.035867pt;}
.y9{bottom:608.313867pt;}
.y31{bottom:623.375200pt;}
.y8{bottom:625.426667pt;}
.y30{bottom:638.714533pt;}
.y7{bottom:650.319067pt;}
.y2f{bottom:654.053867pt;}
.y2e{bottom:669.393200pt;}
.y6{bottom:674.319067pt;}
.y2d{bottom:684.732533pt;}
.y5{bottom:698.319067pt;}
.y2c{bottom:700.071867pt;}
.y2b{bottom:715.411200pt;}
.y2a{bottom:730.750533pt;}
.y29{bottom:746.089867pt;}
.y28{bottom:761.429200pt;}
.y4{bottom:771.353733pt;}
.y27{bottom:776.768533pt;}
.y3{bottom:787.353733pt;}
.y2{bottom:803.353733pt;}
.y54{bottom:815.234400pt;}
.y25{bottom:815.585067pt;}
.h4{height:32.000000pt;}
.ha{height:33.160000pt;}
.hb{height:35.370667pt;}
.h7{height:41.040000pt;}
.h2{height:41.424000pt;}
.h9{height:43.320000pt;}
.hc{height:43.339200pt;}
.h3{height:46.796875pt;}
.h8{height:53.390222pt;}
.h6{height:64.437333pt;}
.h5{height:69.849412pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x17{left:56.692933pt;}
.x11{left:64.252000pt;}
.xc{left:73.244400pt;}
.x13{left:75.732267pt;}
.x12{left:79.470000pt;}
.xd{left:81.737733pt;}
.x18{left:83.153600pt;}
.x6{left:87.956667pt;}
.x5{left:89.936667pt;}
.x7{left:102.496667pt;}
.x14{left:105.830800pt;}
.xb{left:120.377733pt;}
.x10{left:137.513333pt;}
.xe{left:148.993733pt;}
.xa{left:166.318000pt;}
.x2{left:179.208800pt;}
.xf{left:194.225333pt;}
.x16{left:209.984533pt;}
.x8{left:211.507200pt;}
.x9{left:232.450000pt;}
.x1{left:301.091333pt;}
.x4{left:349.631067pt;}
.x3{left:361.705733pt;}
.x15{left:457.269867pt;}
}

