
    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_aa02731c7403b50720789363.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_100e802fdc7744d1b5f46e6e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_def95647119bfaa9a146a858.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_27bb71dcf24bc1f350f9c0bf.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_65331da23785e06134e229b9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fbefb454400a0267da951282.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_57b169f2a0492ac674750924.woff')format("woff");}.ff7{font-family:ff7;line-height:1.575000;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_693da7fc3948c10baaa08794.woff')format("woff");}.ff8{font-family:ff8;line-height:1.575000;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;}
.m3{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,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;}
.ls15{letter-spacing:-0.037800px;}
.ls1b{letter-spacing:-0.032400px;}
.ls13{letter-spacing:-0.027000px;}
.ls14{letter-spacing:-0.021600px;}
.lsf{letter-spacing:-0.016740px;}
.ls1c{letter-spacing:-0.010800px;}
.ls10{letter-spacing:-0.005940px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.005940px;}
.lse{letter-spacing:0.008593px;}
.ls2{letter-spacing:0.010800px;}
.lsa{letter-spacing:0.016740px;}
.ls4{letter-spacing:0.021600px;}
.ls8{letter-spacing:0.027000px;}
.ls3{letter-spacing:0.032400px;}
.ls5{letter-spacing:0.037800px;}
.ls1f{letter-spacing:0.042660px;}
.ls1a{letter-spacing:0.048600px;}
.ls6{letter-spacing:0.059400px;}
.ls9{letter-spacing:0.070200px;}
.ls1{letter-spacing:0.081000px;}
.ls20{letter-spacing:0.086400px;}
.lsb{letter-spacing:0.126853px;}
.ls1d{letter-spacing:0.132264px;}
.lsc{letter-spacing:0.155711px;}
.ls1e{letter-spacing:0.162324px;}
.lsd{letter-spacing:0.184536px;}
.ls16{letter-spacing:0.199260px;}
.ls12{letter-spacing:0.205200px;}
.ls18{letter-spacing:0.221400px;}
.ls22{letter-spacing:0.226800px;}
.ls17{letter-spacing:0.232200px;}
.ls11{letter-spacing:0.237060px;}
.ls24{letter-spacing:0.264600px;}
.ls23{letter-spacing:0.285660px;}
.ls19{letter-spacing:0.291600px;}
.ls21{letter-spacing:0.340200px;}
.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;}
}
.ws3a{word-spacing:-0.397393px;}
.ws3b{word-spacing:-0.372744px;}
.ws12{word-spacing:-0.075600px;}
.ws2a{word-spacing:-0.070200px;}
.ws3c{word-spacing:-0.042084px;}
.ws1{word-spacing:-0.015624px;}
.ws39{word-spacing:-0.006613px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:0.048600px;}
.ws33{word-spacing:0.081000px;}
.ws4a{word-spacing:0.086400px;}
.ws55{word-spacing:0.091260px;}
.ws4{word-spacing:0.097200px;}
.ws61{word-spacing:0.103140px;}
.ws24{word-spacing:0.113940px;}
.ws3{word-spacing:0.118800px;}
.ws6c{word-spacing:0.156600px;}
.ws47{word-spacing:0.475200px;}
.ws62{word-spacing:0.831600px;}
.ws1e{word-spacing:0.841860px;}
.ws5f{word-spacing:0.847800px;}
.ws41{word-spacing:1.192860px;}
.ws50{word-spacing:1.198800px;}
.ws42{word-spacing:1.226340px;}
.wsa{word-spacing:1.566540px;}
.ws5e{word-spacing:1.706400px;}
.ws40{word-spacing:1.917540px;}
.ws54{word-spacing:1.922400px;}
.ws5d{word-spacing:2.008800px;}
.ws17{word-spacing:2.224800px;}
.ws58{word-spacing:2.279340px;}
.ws21{word-spacing:2.289600px;}
.ws16{word-spacing:2.322000px;}
.wse{word-spacing:2.635200px;}
.wsd{word-spacing:2.662200px;}
.ws13{word-spacing:2.991600px;}
.ws1c{word-spacing:3.396600px;}
.ws51{word-spacing:3.650400px;}
.ws52{word-spacing:3.677400px;}
.ws5{word-spacing:3.715200px;}
.ws2c{word-spacing:3.726000px;}
.ws4f{word-spacing:4.055400px;}
.ws4e{word-spacing:4.093740px;}
.ws2b{word-spacing:4.227660px;}
.ws23{word-spacing:4.465800px;}
.ws36{word-spacing:4.470660px;}
.ws49{word-spacing:4.783860px;}
.ws67{word-spacing:4.806000px;}
.ws48{word-spacing:4.811400px;}
.ws57{word-spacing:4.827600px;}
.ws32{word-spacing:4.892940px;}
.wsf{word-spacing:4.946400px;}
.ws59{word-spacing:5.162400px;}
.ws26{word-spacing:5.167800px;}
.ws10{word-spacing:5.178600px;}
.ws18{word-spacing:5.183460px;}
.ws9{word-spacing:5.481000px;}
.ws8{word-spacing:5.529600px;}
.ws1d{word-spacing:5.897340px;}
.ws2d{word-spacing:5.929200px;}
.ws31{word-spacing:6.042060px;}
.ws60{word-spacing:6.610140px;}
.ws1f{word-spacing:6.620400px;}
.ws2e{word-spacing:6.976800px;}
.ws3e{word-spacing:6.997860px;}
.ws14{word-spacing:7.306200px;}
.ws43{word-spacing:7.344000px;}
.ws20{word-spacing:8.780400px;}
.ws45{word-spacing:9.142200px;}
.ws37{word-spacing:9.855000px;}
.ws30{word-spacing:10.351800px;}
.ws5a{word-spacing:10.573200px;}
.ws22{word-spacing:10.940940px;}
.ws56{word-spacing:10.966860px;}
.ws69{word-spacing:11.410200px;}
.ws6a{word-spacing:11.653740px;}
.ws68{word-spacing:11.658600px;}
.ws4d{word-spacing:11.696400px;}
.ws3f{word-spacing:11.804400px;}
.ws4c{word-spacing:12.053340px;}
.ws34{word-spacing:12.371400px;}
.ws35{word-spacing:12.425400px;}
.ws1a{word-spacing:13.094460px;}
.ws1b{word-spacing:13.154940px;}
.ws6b{word-spacing:13.434660px;}
.ws27{word-spacing:13.845060px;}
.ws44{word-spacing:14.175000px;}
.ws6{word-spacing:14.547060px;}
.ws38{word-spacing:14.553000px;}
.ws19{word-spacing:14.580000px;}
.ws4b{word-spacing:14.904000px;}
.ws15{word-spacing:14.908860px;}
.ws3d{word-spacing:16.329600px;}
.ws5b{word-spacing:16.367400px;}
.ws5c{word-spacing:16.378200px;}
.wsb{word-spacing:16.712460px;}
.wsc{word-spacing:16.740000px;}
.ws29{word-spacing:17.425260px;}
.ws28{word-spacing:17.820000px;}
.ws53{word-spacing:17.938800px;}
.ws46{word-spacing:18.139140px;}
.ws7{word-spacing:19.569600px;}
.ws11{word-spacing:19.947600px;}
.ws65{word-spacing:23.208660px;}
.ws66{word-spacing:23.219460px;}
.ws63{word-spacing:26.098740px;}
.ws2f{word-spacing:27.308340px;}
.ws64{word-spacing:34.371540px;}
.ws25{word-spacing:34.732800px;}
._0{margin-left:-1.066523px;}
._1{width:1.002482px;}
.fc1{color:rgb(128,0,0);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs1{font-size:65.907720px;}
.fs2{font-size:66.300000px;}
.fs0{font-size:71.399940px;}
.fs4{font-size:78.120000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y56{bottom:56.610015px;}
.y55{bottom:73.799955px;}
.y54{bottom:91.080000px;}
.y53{bottom:109.276290px;}
.y52{bottom:125.655870px;}
.y51{bottom:142.035465px;}
.y8f{bottom:149.325825px;}
.y50{bottom:158.505480px;}
.y8e{bottom:165.795840px;}
.y4f{bottom:174.885060px;}
.y8d{bottom:182.175435px;}
.y4e{bottom:191.264655px;}
.y8c{bottom:198.555015px;}
.y4d{bottom:207.734670px;}
.y8b{bottom:215.025030px;}
.y4c{bottom:224.114250px;}
.y8a{bottom:231.404610px;}
.y4b{bottom:240.493830px;}
.y89{bottom:247.784205px;}
.y4a{bottom:256.873425px;}
.y88{bottom:264.163785px;}
.y49{bottom:273.343440px;}
.y87{bottom:280.633800px;}
.y48{bottom:289.723020px;}
.y86{bottom:297.013395px;}
.y47{bottom:306.102615px;}
.y85{bottom:313.392975px;}
.y17{bottom:316.380570px;}
.y46{bottom:322.572630px;}
.y84{bottom:329.862990px;}
.y45{bottom:338.952210px;}
.y83{bottom:346.242570px;}
.y44{bottom:355.331790px;}
.y82{bottom:362.622165px;}
.y43{bottom:371.801805px;}
.y81{bottom:379.092180px;}
.y16{bottom:383.032153px;}
.y42{bottom:388.181400px;}
.y80{bottom:395.471760px;}
.y41{bottom:404.560980px;}
.y7f{bottom:411.851355px;}
.y40{bottom:420.940560px;}
.y7e{bottom:428.230935px;}
.y15{bottom:428.677064px;}
.y3f{bottom:437.410590px;}
.y7d{bottom:444.700950px;}
.y3e{bottom:453.790170px;}
.y7c{bottom:461.080530px;}
.y3d{bottom:470.169750px;}
.y14{bottom:474.321974px;}
.y7b{bottom:477.460125px;}
.y3c{bottom:486.639765px;}
.y7a{bottom:493.930140px;}
.y3b{bottom:503.019360px;}
.y79{bottom:510.309720px;}
.y3a{bottom:519.398940px;}
.y13{bottom:519.966885px;}
.y78{bottom:526.689315px;}
.y39{bottom:535.868955px;}
.y77{bottom:543.159330px;}
.y38{bottom:552.248550px;}
.y76{bottom:559.538910px;}
.y37{bottom:568.628130px;}
.y75{bottom:575.918490px;}
.y12{bottom:584.300392px;}
.y36{bottom:585.007710px;}
.y74{bottom:592.298085px;}
.y35{bottom:601.477725px;}
.y11{bottom:604.072708px;}
.y73{bottom:608.768100px;}
.y34{bottom:617.857320px;}
.y10{bottom:623.845024px;}
.y72{bottom:625.147680px;}
.y33{bottom:634.236900px;}
.y71{bottom:641.527260px;}
.yf{bottom:643.617505px;}
.y32{bottom:650.706915px;}
.y70{bottom:657.997290px;}
.ye{bottom:663.446337px;}
.y31{bottom:667.086495px;}
.y6f{bottom:674.376870px;}
.yd{bottom:683.218653px;}
.y30{bottom:683.466090px;}
.y6e{bottom:690.756450px;}
.y2f{bottom:699.936105px;}
.yc{bottom:702.990969px;}
.y6d{bottom:707.226465px;}
.y2e{bottom:716.315685px;}
.yb{bottom:722.763285px;}
.y6c{bottom:723.606060px;}
.y2d{bottom:732.695280px;}
.y6b{bottom:739.985640px;}
.y2c{bottom:749.074860px;}
.y6a{bottom:756.365220px;}
.y2b{bottom:765.544875px;}
.y69{bottom:772.835250px;}
.y2a{bottom:781.924455px;}
.ya{bottom:784.912138px;}
.y68{bottom:789.214830px;}
.y29{bottom:798.304050px;}
.y67{bottom:805.594410px;}
.y28{bottom:814.774065px;}
.y66{bottom:822.064425px;}
.y9{bottom:830.557049px;}
.y27{bottom:831.153645px;}
.y65{bottom:838.444020px;}
.y26{bottom:847.533240px;}
.y64{bottom:854.823600px;}
.y25{bottom:864.003255px;}
.y63{bottom:871.293615px;}
.y8{bottom:876.201959px;}
.y24{bottom:880.382835px;}
.y62{bottom:887.673210px;}
.y23{bottom:896.762415px;}
.y61{bottom:904.052790px;}
.y22{bottom:913.142010px;}
.y60{bottom:920.432370px;}
.y7{bottom:921.846870px;}
.y21{bottom:929.612025px;}
.y5f{bottom:936.902385px;}
.y6{bottom:942.798489px;}
.y20{bottom:945.991605px;}
.y5e{bottom:953.281980px;}
.y1f{bottom:962.371200px;}
.y5{bottom:962.570805px;}
.y5d{bottom:969.661560px;}
.y1e{bottom:978.841215px;}
.y4{bottom:984.977415px;}
.y5c{bottom:986.131575px;}
.y1d{bottom:995.220795px;}
.y5b{bottom:1002.511155px;}
.y3{bottom:1004.783115px;}
.y1c{bottom:1011.600375px;}
.y5a{bottom:1018.890750px;}
.y2{bottom:1025.023833px;}
.y1b{bottom:1028.070390px;}
.y59{bottom:1035.360765px;}
.y1a{bottom:1044.449985px;}
.y1{bottom:1046.443815px;}
.y58{bottom:1051.740345px;}
.y19{bottom:1062.090000px;}
.y57{bottom:1068.119940px;}
.y18{bottom:1115.550015px;}
.h7{height:57.618000px;}
.h8{height:59.004492px;}
.h2{height:64.684823px;}
.h4{height:68.739692px;}
.h3{height:69.148828px;}
.h1{height:70.075136px;}
.h5{height:82.323633px;}
.h6{height:83.354040px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:12.750000px;}
.xe{left:127.620825px;}
.xc{left:145.080750px;}
.x4{left:151.491052px;}
.xb{left:169.830000px;}
.xf{left:179.010000px;}
.x10{left:187.739505px;}
.x11{left:224.818680px;}
.xd{left:243.180750px;}
.x5{left:265.816395px;}
.x6{left:376.121203px;}
.x7{left:377.505265px;}
.x3{left:383.453107px;}
.x8{left:402.220660px;}
.xa{left:411.750000px;}
.x2{left:440.677650px;}
.x9{left:859.349940px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.033600pt;}
.ls1b{letter-spacing:-0.028800pt;}
.ls13{letter-spacing:-0.024000pt;}
.ls14{letter-spacing:-0.019200pt;}
.lsf{letter-spacing:-0.014880pt;}
.ls1c{letter-spacing:-0.009600pt;}
.ls10{letter-spacing:-0.005280pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.005280pt;}
.lse{letter-spacing:0.007638pt;}
.ls2{letter-spacing:0.009600pt;}
.lsa{letter-spacing:0.014880pt;}
.ls4{letter-spacing:0.019200pt;}
.ls8{letter-spacing:0.024000pt;}
.ls3{letter-spacing:0.028800pt;}
.ls5{letter-spacing:0.033600pt;}
.ls1f{letter-spacing:0.037920pt;}
.ls1a{letter-spacing:0.043200pt;}
.ls6{letter-spacing:0.052800pt;}
.ls9{letter-spacing:0.062400pt;}
.ls1{letter-spacing:0.072000pt;}
.ls20{letter-spacing:0.076800pt;}
.lsb{letter-spacing:0.112758pt;}
.ls1d{letter-spacing:0.117568pt;}
.lsc{letter-spacing:0.138410pt;}
.ls1e{letter-spacing:0.144288pt;}
.lsd{letter-spacing:0.164032pt;}
.ls16{letter-spacing:0.177120pt;}
.ls12{letter-spacing:0.182400pt;}
.ls18{letter-spacing:0.196800pt;}
.ls22{letter-spacing:0.201600pt;}
.ls17{letter-spacing:0.206400pt;}
.ls11{letter-spacing:0.210720pt;}
.ls24{letter-spacing:0.235200pt;}
.ls23{letter-spacing:0.253920pt;}
.ls19{letter-spacing:0.259200pt;}
.ls21{letter-spacing:0.302400pt;}
.ws3a{word-spacing:-0.353238pt;}
.ws3b{word-spacing:-0.331328pt;}
.ws12{word-spacing:-0.067200pt;}
.ws2a{word-spacing:-0.062400pt;}
.ws3c{word-spacing:-0.037408pt;}
.ws1{word-spacing:-0.013888pt;}
.ws39{word-spacing:-0.005878pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:0.043200pt;}
.ws33{word-spacing:0.072000pt;}
.ws4a{word-spacing:0.076800pt;}
.ws55{word-spacing:0.081120pt;}
.ws4{word-spacing:0.086400pt;}
.ws61{word-spacing:0.091680pt;}
.ws24{word-spacing:0.101280pt;}
.ws3{word-spacing:0.105600pt;}
.ws6c{word-spacing:0.139200pt;}
.ws47{word-spacing:0.422400pt;}
.ws62{word-spacing:0.739200pt;}
.ws1e{word-spacing:0.748320pt;}
.ws5f{word-spacing:0.753600pt;}
.ws41{word-spacing:1.060320pt;}
.ws50{word-spacing:1.065600pt;}
.ws42{word-spacing:1.090080pt;}
.wsa{word-spacing:1.392480pt;}
.ws5e{word-spacing:1.516800pt;}
.ws40{word-spacing:1.704480pt;}
.ws54{word-spacing:1.708800pt;}
.ws5d{word-spacing:1.785600pt;}
.ws17{word-spacing:1.977600pt;}
.ws58{word-spacing:2.026080pt;}
.ws21{word-spacing:2.035200pt;}
.ws16{word-spacing:2.064000pt;}
.wse{word-spacing:2.342400pt;}
.wsd{word-spacing:2.366400pt;}
.ws13{word-spacing:2.659200pt;}
.ws1c{word-spacing:3.019200pt;}
.ws51{word-spacing:3.244800pt;}
.ws52{word-spacing:3.268800pt;}
.ws5{word-spacing:3.302400pt;}
.ws2c{word-spacing:3.312000pt;}
.ws4f{word-spacing:3.604800pt;}
.ws4e{word-spacing:3.638880pt;}
.ws2b{word-spacing:3.757920pt;}
.ws23{word-spacing:3.969600pt;}
.ws36{word-spacing:3.973920pt;}
.ws49{word-spacing:4.252320pt;}
.ws67{word-spacing:4.272000pt;}
.ws48{word-spacing:4.276800pt;}
.ws57{word-spacing:4.291200pt;}
.ws32{word-spacing:4.349280pt;}
.wsf{word-spacing:4.396800pt;}
.ws59{word-spacing:4.588800pt;}
.ws26{word-spacing:4.593600pt;}
.ws10{word-spacing:4.603200pt;}
.ws18{word-spacing:4.607520pt;}
.ws9{word-spacing:4.872000pt;}
.ws8{word-spacing:4.915200pt;}
.ws1d{word-spacing:5.242080pt;}
.ws2d{word-spacing:5.270400pt;}
.ws31{word-spacing:5.370720pt;}
.ws60{word-spacing:5.875680pt;}
.ws1f{word-spacing:5.884800pt;}
.ws2e{word-spacing:6.201600pt;}
.ws3e{word-spacing:6.220320pt;}
.ws14{word-spacing:6.494400pt;}
.ws43{word-spacing:6.528000pt;}
.ws20{word-spacing:7.804800pt;}
.ws45{word-spacing:8.126400pt;}
.ws37{word-spacing:8.760000pt;}
.ws30{word-spacing:9.201600pt;}
.ws5a{word-spacing:9.398400pt;}
.ws22{word-spacing:9.725280pt;}
.ws56{word-spacing:9.748320pt;}
.ws69{word-spacing:10.142400pt;}
.ws6a{word-spacing:10.358880pt;}
.ws68{word-spacing:10.363200pt;}
.ws4d{word-spacing:10.396800pt;}
.ws3f{word-spacing:10.492800pt;}
.ws4c{word-spacing:10.714080pt;}
.ws34{word-spacing:10.996800pt;}
.ws35{word-spacing:11.044800pt;}
.ws1a{word-spacing:11.639520pt;}
.ws1b{word-spacing:11.693280pt;}
.ws6b{word-spacing:11.941920pt;}
.ws27{word-spacing:12.306720pt;}
.ws44{word-spacing:12.600000pt;}
.ws6{word-spacing:12.930720pt;}
.ws38{word-spacing:12.936000pt;}
.ws19{word-spacing:12.960000pt;}
.ws4b{word-spacing:13.248000pt;}
.ws15{word-spacing:13.252320pt;}
.ws3d{word-spacing:14.515200pt;}
.ws5b{word-spacing:14.548800pt;}
.ws5c{word-spacing:14.558400pt;}
.wsb{word-spacing:14.855520pt;}
.wsc{word-spacing:14.880000pt;}
.ws29{word-spacing:15.489120pt;}
.ws28{word-spacing:15.840000pt;}
.ws53{word-spacing:15.945600pt;}
.ws46{word-spacing:16.123680pt;}
.ws7{word-spacing:17.395200pt;}
.ws11{word-spacing:17.731200pt;}
.ws65{word-spacing:20.629920pt;}
.ws66{word-spacing:20.639520pt;}
.ws63{word-spacing:23.198880pt;}
.ws2f{word-spacing:24.274080pt;}
.ws64{word-spacing:30.552480pt;}
.ws25{word-spacing:30.873600pt;}
._0{margin-left:-0.948021pt;}
._1{width:0.891095pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs1{font-size:58.584640pt;}
.fs2{font-size:58.933333pt;}
.fs0{font-size:63.466613pt;}
.fs4{font-size:69.440000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:50.320013pt;}
.y55{bottom:65.599960pt;}
.y54{bottom:80.960000pt;}
.y53{bottom:97.134480pt;}
.y52{bottom:111.694107pt;}
.y51{bottom:126.253747pt;}
.y8f{bottom:132.734067pt;}
.y50{bottom:140.893760pt;}
.y8e{bottom:147.374080pt;}
.y4f{bottom:155.453387pt;}
.y8d{bottom:161.933720pt;}
.y4e{bottom:170.013027pt;}
.y8c{bottom:176.493347pt;}
.y4d{bottom:184.653040pt;}
.y8b{bottom:191.133360pt;}
.y4c{bottom:199.212667pt;}
.y8a{bottom:205.692987pt;}
.y4b{bottom:213.772293pt;}
.y89{bottom:220.252627pt;}
.y4a{bottom:228.331933pt;}
.y88{bottom:234.812253pt;}
.y49{bottom:242.971947pt;}
.y87{bottom:249.452267pt;}
.y48{bottom:257.531573pt;}
.y86{bottom:264.011907pt;}
.y47{bottom:272.091213pt;}
.y85{bottom:278.571533pt;}
.y17{bottom:281.227173pt;}
.y46{bottom:286.731227pt;}
.y84{bottom:293.211547pt;}
.y45{bottom:301.290853pt;}
.y83{bottom:307.771173pt;}
.y44{bottom:315.850480pt;}
.y82{bottom:322.330813pt;}
.y43{bottom:330.490493pt;}
.y81{bottom:336.970827pt;}
.y16{bottom:340.473025pt;}
.y42{bottom:345.050133pt;}
.y80{bottom:351.530453pt;}
.y41{bottom:359.609760pt;}
.y7f{bottom:366.090093pt;}
.y40{bottom:374.169387pt;}
.y7e{bottom:380.649720pt;}
.y15{bottom:381.046279pt;}
.y3f{bottom:388.809413pt;}
.y7d{bottom:395.289733pt;}
.y3e{bottom:403.369040pt;}
.y7c{bottom:409.849360pt;}
.y3d{bottom:417.928667pt;}
.y14{bottom:421.619533pt;}
.y7b{bottom:424.409000pt;}
.y3c{bottom:432.568680pt;}
.y7a{bottom:439.049013pt;}
.y3b{bottom:447.128320pt;}
.y79{bottom:453.608640pt;}
.y3a{bottom:461.687947pt;}
.y13{bottom:462.192787pt;}
.y78{bottom:468.168280pt;}
.y39{bottom:476.327960pt;}
.y77{bottom:482.808293pt;}
.y38{bottom:490.887600pt;}
.y76{bottom:497.367920pt;}
.y37{bottom:505.447227pt;}
.y75{bottom:511.927547pt;}
.y12{bottom:519.378127pt;}
.y36{bottom:520.006853pt;}
.y74{bottom:526.487187pt;}
.y35{bottom:534.646867pt;}
.y11{bottom:536.953519pt;}
.y73{bottom:541.127200pt;}
.y34{bottom:549.206507pt;}
.y10{bottom:554.528911pt;}
.y72{bottom:555.686827pt;}
.y33{bottom:563.766133pt;}
.y71{bottom:570.246453pt;}
.yf{bottom:572.104449pt;}
.y32{bottom:578.406147pt;}
.y70{bottom:584.886480pt;}
.ye{bottom:589.730077pt;}
.y31{bottom:592.965773pt;}
.y6f{bottom:599.446107pt;}
.yd{bottom:607.305469pt;}
.y30{bottom:607.525413pt;}
.y6e{bottom:614.005733pt;}
.y2f{bottom:622.165427pt;}
.yc{bottom:624.880861pt;}
.y6d{bottom:628.645747pt;}
.y2e{bottom:636.725053pt;}
.yb{bottom:642.456253pt;}
.y6c{bottom:643.205387pt;}
.y2d{bottom:651.284693pt;}
.y6b{bottom:657.765013pt;}
.y2c{bottom:665.844320pt;}
.y6a{bottom:672.324640pt;}
.y2b{bottom:680.484333pt;}
.y69{bottom:686.964667pt;}
.y2a{bottom:695.043960pt;}
.ya{bottom:697.699678pt;}
.y68{bottom:701.524293pt;}
.y29{bottom:709.603600pt;}
.y67{bottom:716.083920pt;}
.y28{bottom:724.243613pt;}
.y66{bottom:730.723933pt;}
.y9{bottom:738.272932pt;}
.y27{bottom:738.803240pt;}
.y65{bottom:745.283573pt;}
.y26{bottom:753.362880pt;}
.y64{bottom:759.843200pt;}
.y25{bottom:768.002893pt;}
.y63{bottom:774.483213pt;}
.y8{bottom:778.846186pt;}
.y24{bottom:782.562520pt;}
.y62{bottom:789.042853pt;}
.y23{bottom:797.122147pt;}
.y61{bottom:803.602480pt;}
.y22{bottom:811.681787pt;}
.y60{bottom:818.162107pt;}
.y7{bottom:819.419440pt;}
.y21{bottom:826.321800pt;}
.y5f{bottom:832.802120pt;}
.y6{bottom:838.043101pt;}
.y20{bottom:840.881427pt;}
.y5e{bottom:847.361760pt;}
.y1f{bottom:855.441067pt;}
.y5{bottom:855.618493pt;}
.y5d{bottom:861.921387pt;}
.y1e{bottom:870.081080pt;}
.y4{bottom:875.535480pt;}
.y5c{bottom:876.561400pt;}
.y1d{bottom:884.640707pt;}
.y5b{bottom:891.121027pt;}
.y3{bottom:893.140547pt;}
.y1c{bottom:899.200333pt;}
.y5a{bottom:905.680667pt;}
.y2{bottom:911.132296pt;}
.y1b{bottom:913.840347pt;}
.y59{bottom:920.320680pt;}
.y1a{bottom:928.399987pt;}
.y1{bottom:930.172280pt;}
.y58{bottom:934.880307pt;}
.y19{bottom:944.080000pt;}
.y57{bottom:949.439947pt;}
.y18{bottom:991.600013pt;}
.h7{height:51.216000pt;}
.h8{height:52.448437pt;}
.h2{height:57.497620pt;}
.h4{height:61.101949pt;}
.h3{height:61.465625pt;}
.h1{height:62.289010pt;}
.h5{height:73.176562pt;}
.h6{height:74.092480pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:11.333333pt;}
.xe{left:113.440733pt;}
.xc{left:128.960667pt;}
.x4{left:134.658713pt;}
.xb{left:150.960000pt;}
.xf{left:159.120000pt;}
.x10{left:166.879560pt;}
.x11{left:199.838827pt;}
.xd{left:216.160667pt;}
.x5{left:236.281240pt;}
.x6{left:334.329958pt;}
.x7{left:335.560236pt;}
.x3{left:340.847207pt;}
.x8{left:357.529476pt;}
.xa{left:366.000000pt;}
.x2{left:391.713467pt;}
.x9{left:763.866613pt;}
}

