
    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_de64157955f4791b7391240f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_31c22b04cbed363ea7701411.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6c2366f0e38f37d069d78616.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c951aa72f99cfe68cbe903fb.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5fe7fabc68611b739bec6145.woff')format("woff");}.ff5{font-family:ff5;line-height:0.908203;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_c1710a60773e76435792800b.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1b21b060f224e1f6071e2cc1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.909180;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_fb0d7efafa3150b8f3ccd999.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-27.360600px;}
.v1{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360600px;}
.ls1{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000540px;}
.lsa{letter-spacing:0.000600px;}
.ls11{letter-spacing:0.002400px;}
.lsb{letter-spacing:0.003000px;}
.ls6{letter-spacing:0.003600px;}
.ls5{letter-spacing:0.010800px;}
.ls2{letter-spacing:0.014400px;}
.lsd{letter-spacing:0.031200px;}
.ls25{letter-spacing:0.058320px;}
.ls1c{letter-spacing:0.059820px;}
.ls1f{letter-spacing:0.060000px;}
.ls21{letter-spacing:0.065880px;}
.ls1d{letter-spacing:0.066480px;}
.ls8{letter-spacing:0.119400px;}
.ls7{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.120600px;}
.lse{letter-spacing:0.123552px;}
.ls10{letter-spacing:0.161568px;}
.lsc{letter-spacing:0.240000px;}
.ls22{letter-spacing:0.242064px;}
.lsf{letter-spacing:0.242352px;}
.ls24{letter-spacing:0.253872px;}
.ls3{letter-spacing:0.276000px;}
.ls15{letter-spacing:0.318816px;}
.ls1e{letter-spacing:0.320280px;}
.ls20{letter-spacing:0.351816px;}
.ls1a{letter-spacing:0.383760px;}
.ls13{letter-spacing:0.430992px;}
.ls12{letter-spacing:0.478224px;}
.ls23{letter-spacing:0.537264px;}
.ls18{letter-spacing:0.543168px;}
.ls17{letter-spacing:0.578592px;}
.ls19{letter-spacing:0.637632px;}
.ls16{letter-spacing:0.702576px;}
.ls27{letter-spacing:0.738000px;}
.ls1b{letter-spacing:0.802944px;}
.ls14{letter-spacing:0.861984px;}
.ls26{letter-spacing:0.897408px;}
.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;}
}
.ws3{word-spacing:-18.014400px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.985600px;}
.wsa{word-spacing:-15.621984px;}
.wsd{word-spacing:-15.562944px;}
.ws16{word-spacing:-15.498000px;}
.wsc{word-spacing:-15.462576px;}
.wsf{word-spacing:-15.397632px;}
.ws10{word-spacing:-15.303168px;}
.ws12{word-spacing:-15.297264px;}
.wsb{word-spacing:-15.238224px;}
.wse{word-spacing:-15.190992px;}
.ws14{word-spacing:-15.078816px;}
.ws15{word-spacing:-15.002064px;}
.ws11{word-spacing:-14.760000px;}
.ws5{word-spacing:-12.122352px;}
.ws8{word-spacing:-12.120000px;}
.ws9{word-spacing:-12.041568px;}
.ws4{word-spacing:-12.003552px;}
.ws7{word-spacing:-11.880000px;}
.ws13{word-spacing:-9.778320px;}
.ws6{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-1.271016px;}
._5{width:1.062720px;}
._0{width:710.063940px;}
._2{width:845.760540px;}
._3{width:1114.055940px;}
._1{width:1150.055940px;}
._6{width:1624.499940px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs2{font-size:47.520000px;}
.fs4{font-size:59.040000px;}
.fs1{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.040000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:4.320000px;}
.y1{bottom:17.858280px;}
.y45{bottom:20.520000px;}
.y41{bottom:20.880000px;}
.y77{bottom:120.883470px;}
.y3b{bottom:126.283470px;}
.y18{bottom:133.483470px;}
.y76{bottom:159.763470px;}
.y3a{bottom:167.683470px;}
.y17{bottom:174.883470px;}
.y75{bottom:188.203470px;}
.y39{bottom:209.083470px;}
.y74{bottom:214.123470px;}
.y16{bottom:216.283470px;}
.y73{bottom:240.043470px;}
.y38{bottom:250.483470px;}
.y15{bottom:257.683470px;}
.y72{bottom:265.963470px;}
.y8c{bottom:266.181750px;}
.y71{bottom:291.523470px;}
.y37{bottom:291.883470px;}
.y14{bottom:299.083470px;}
.y8b{bottom:300.741750px;}
.y2d{bottom:301.603470px;}
.y70{bottom:317.443470px;}
.y54{bottom:324.643470px;}
.y36{bottom:333.283470px;}
.y8a{bottom:335.301750px;}
.y13{bottom:340.483470px;}
.y2c{bottom:343.003470px;}
.y6f{bottom:343.363470px;}
.y53{bottom:366.043470px;}
.y6e{bottom:369.283470px;}
.y89{bottom:369.861750px;}
.y35{bottom:374.683470px;}
.y12{bottom:381.883470px;}
.y2b{bottom:384.403470px;}
.y6d{bottom:395.203470px;}
.y88{bottom:404.421750px;}
.y52{bottom:407.443470px;}
.y34{bottom:416.083470px;}
.y6c{bottom:421.123470px;}
.y3f{bottom:422.923470px;}
.y11{bottom:423.283470px;}
.y2a{bottom:425.803470px;}
.y87{bottom:438.621750px;}
.y51{bottom:442.581750px;}
.y6b{bottom:447.043470px;}
.y33{bottom:457.483470px;}
.y3e{bottom:463.963470px;}
.y10{bottom:464.683470px;}
.y29{bottom:467.203470px;}
.y6a{bottom:472.963470px;}
.y86{bottom:473.181750px;}
.y50{bottom:476.781750px;}
.y69{bottom:498.523470px;}
.y32{bottom:498.883470px;}
.y3d{bottom:505.363470px;}
.yf{bottom:506.083470px;}
.y85{bottom:507.741750px;}
.y28{bottom:508.603470px;}
.y4f{bottom:511.341750px;}
.y68{bottom:524.443470px;}
.y31{bottom:540.283470px;}
.y84{bottom:542.301750px;}
.y4e{bottom:545.901750px;}
.y3c{bottom:547.123470px;}
.ye{bottom:547.483470px;}
.y27{bottom:550.003470px;}
.y67{bottom:550.363470px;}
.y66{bottom:576.283470px;}
.y83{bottom:576.861750px;}
.y4d{bottom:580.461750px;}
.y30{bottom:586.003470px;}
.yd{bottom:588.883470px;}
.y26{bottom:591.403470px;}
.y65{bottom:602.203470px;}
.y82{bottom:611.421750px;}
.y4c{bottom:615.021750px;}
.y64{bottom:628.123470px;}
.y2f{bottom:628.843470px;}
.yc{bottom:630.283470px;}
.y25{bottom:632.803470px;}
.y81{bottom:645.621750px;}
.y4b{bottom:649.581750px;}
.y63{bottom:654.043470px;}
.yb{bottom:671.683470px;}
.y24{bottom:674.203470px;}
.y62{bottom:679.603470px;}
.y80{bottom:680.181750px;}
.y4a{bottom:683.781750px;}
.y61{bottom:705.523470px;}
.ya{bottom:713.083470px;}
.y7f{bottom:714.741750px;}
.y23{bottom:715.603470px;}
.y49{bottom:718.341750px;}
.y60{bottom:731.443470px;}
.y7e{bottom:749.301750px;}
.y48{bottom:752.901750px;}
.y9{bottom:754.483470px;}
.y22{bottom:757.003470px;}
.y5f{bottom:757.363470px;}
.y5e{bottom:783.283470px;}
.y7d{bottom:783.861750px;}
.y47{bottom:787.461750px;}
.y8{bottom:795.883470px;}
.y21{bottom:798.403470px;}
.y5d{bottom:809.203470px;}
.y7c{bottom:818.061750px;}
.y46{bottom:822.021750px;}
.y5c{bottom:835.123470px;}
.y7{bottom:837.283470px;}
.y20{bottom:839.803470px;}
.y7b{bottom:852.621750px;}
.y44{bottom:856.581750px;}
.y5b{bottom:861.043470px;}
.y6{bottom:878.683470px;}
.y1f{bottom:881.203470px;}
.y5a{bottom:886.603470px;}
.y7a{bottom:887.181750px;}
.y43{bottom:890.781750px;}
.y59{bottom:912.523470px;}
.y5{bottom:920.083470px;}
.y79{bottom:921.741750px;}
.y1e{bottom:922.603470px;}
.y42{bottom:925.341750px;}
.y58{bottom:938.443470px;}
.y78{bottom:957.021750px;}
.y40{bottom:960.621750px;}
.y4{bottom:961.483470px;}
.y1d{bottom:964.003470px;}
.y57{bottom:964.363470px;}
.y56{bottom:987.763470px;}
.y3{bottom:1002.883470px;}
.y1c{bottom:1005.403470px;}
.y55{bottom:1013.323470px;}
.y2e{bottom:1044.283470px;}
.y1b{bottom:1044.643470px;}
.y2{bottom:1098.283470px;}
.y19{bottom:1111.821750px;}
.h4{height:20.880000px;}
.hb{height:33.018047px;}
.ha{height:34.200000px;}
.h7{height:34.560000px;}
.h9{height:40.993594px;}
.h8{height:41.022422px;}
.h3{height:48.796875px;}
.h6{height:49.992188px;}
.h2{height:50.027344px;}
.hd{height:54.374766px;}
.hc{height:54.375366px;}
.h5{height:66.036094px;}
.h1{height:1152.283500px;}
.h0{height:1188.000000px;}
.w2{width:13.680000px;}
.w4{width:64.800000px;}
.w5{width:65.160000px;}
.w7{width:70.560000px;}
.w8{width:92.520000px;}
.w9{width:92.880000px;}
.w6{width:271.080000px;}
.w3{width:392.760000px;}
.w1{width:882.283500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2d{left:5.400000px;}
.x13{left:7.920000px;}
.x30{left:12.239700px;}
.x17{left:15.653700px;}
.x1{left:17.858265px;}
.x1b{left:19.867650px;}
.x1f{left:21.082350px;}
.x19{left:23.203800px;}
.x23{left:25.019850px;}
.x15{left:27.329850px;}
.x25{left:29.820150px;}
.x2f{left:30.952350px;}
.x1d{left:32.332350px;}
.x24{left:34.170000px;}
.x21{left:35.820150px;}
.x20{left:37.995150px;}
.x1e{left:40.080000px;}
.x2e{left:46.215000px;}
.x22{left:56.745150px;}
.x2{left:91.440000px;}
.x12{left:101.378265px;}
.x27{left:103.898265px;}
.xd{left:124.957095px;}
.x28{left:135.600135px;}
.xa{left:145.439985px;}
.x4{left:162.745635px;}
.xe{left:233.471235px;}
.x7{left:258.985935px;}
.x5{left:278.501985px;}
.x10{left:313.948335px;}
.x6{left:360.460035px;}
.x8{left:365.953185px;}
.x29{left:374.978250px;}
.x9{left:397.198335px;}
.x11{left:401.926785px;}
.xc{left:411.950685px;}
.xf{left:414.437985px;}
.x3{left:442.439985px;}
.x2a{left:445.538250px;}
.x14{left:494.138250px;}
.x2b{left:538.058250px;}
.x16{left:558.938250px;}
.x18{left:624.098250px;}
.x2c{left:630.938250px;}
.x1a{left:689.258250px;}
.x26{left:717.479985px;}
.x1c{left:754.418250px;}
.xb{left:797.618250px;}
@media print{
.v2{vertical-align:-24.320533pt;}
.v1{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320533pt;}
.ls1{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000480pt;}
.lsa{letter-spacing:0.000533pt;}
.ls11{letter-spacing:0.002133pt;}
.lsb{letter-spacing:0.002667pt;}
.ls6{letter-spacing:0.003200pt;}
.ls5{letter-spacing:0.009600pt;}
.ls2{letter-spacing:0.012800pt;}
.lsd{letter-spacing:0.027733pt;}
.ls25{letter-spacing:0.051840pt;}
.ls1c{letter-spacing:0.053173pt;}
.ls1f{letter-spacing:0.053333pt;}
.ls21{letter-spacing:0.058560pt;}
.ls1d{letter-spacing:0.059093pt;}
.ls8{letter-spacing:0.106133pt;}
.ls7{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.107200pt;}
.lse{letter-spacing:0.109824pt;}
.ls10{letter-spacing:0.143616pt;}
.lsc{letter-spacing:0.213333pt;}
.ls22{letter-spacing:0.215168pt;}
.lsf{letter-spacing:0.215424pt;}
.ls24{letter-spacing:0.225664pt;}
.ls3{letter-spacing:0.245333pt;}
.ls15{letter-spacing:0.283392pt;}
.ls1e{letter-spacing:0.284693pt;}
.ls20{letter-spacing:0.312725pt;}
.ls1a{letter-spacing:0.341120pt;}
.ls13{letter-spacing:0.383104pt;}
.ls12{letter-spacing:0.425088pt;}
.ls23{letter-spacing:0.477568pt;}
.ls18{letter-spacing:0.482816pt;}
.ls17{letter-spacing:0.514304pt;}
.ls19{letter-spacing:0.566784pt;}
.ls16{letter-spacing:0.624512pt;}
.ls27{letter-spacing:0.656000pt;}
.ls1b{letter-spacing:0.713728pt;}
.ls14{letter-spacing:0.766208pt;}
.ls26{letter-spacing:0.797696pt;}
.ws3{word-spacing:-16.012800pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.987200pt;}
.wsa{word-spacing:-13.886208pt;}
.wsd{word-spacing:-13.833728pt;}
.ws16{word-spacing:-13.776000pt;}
.wsc{word-spacing:-13.744512pt;}
.wsf{word-spacing:-13.686784pt;}
.ws10{word-spacing:-13.602816pt;}
.ws12{word-spacing:-13.597568pt;}
.wsb{word-spacing:-13.545088pt;}
.wse{word-spacing:-13.503104pt;}
.ws14{word-spacing:-13.403392pt;}
.ws15{word-spacing:-13.335168pt;}
.ws11{word-spacing:-13.120000pt;}
.ws5{word-spacing:-10.775424pt;}
.ws8{word-spacing:-10.773333pt;}
.ws9{word-spacing:-10.703616pt;}
.ws4{word-spacing:-10.669824pt;}
.ws7{word-spacing:-10.560000pt;}
.ws13{word-spacing:-8.691840pt;}
.ws6{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-1.129792pt;}
._5{width:0.944640pt;}
._0{width:631.167947pt;}
._2{width:751.787147pt;}
._3{width:990.271947pt;}
._1{width:1022.271947pt;}
._6{width:1443.999947pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:42.240000pt;}
.fs4{font-size:52.480000pt;}
.fs1{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:84.480000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:3.840000pt;}
.y1{bottom:15.874027pt;}
.y45{bottom:18.240000pt;}
.y41{bottom:18.560000pt;}
.y77{bottom:107.451973pt;}
.y3b{bottom:112.251973pt;}
.y18{bottom:118.651973pt;}
.y76{bottom:142.011973pt;}
.y3a{bottom:149.051973pt;}
.y17{bottom:155.451973pt;}
.y75{bottom:167.291973pt;}
.y39{bottom:185.851973pt;}
.y74{bottom:190.331973pt;}
.y16{bottom:192.251973pt;}
.y73{bottom:213.371973pt;}
.y38{bottom:222.651973pt;}
.y15{bottom:229.051973pt;}
.y72{bottom:236.411973pt;}
.y8c{bottom:236.606000pt;}
.y71{bottom:259.131973pt;}
.y37{bottom:259.451973pt;}
.y14{bottom:265.851973pt;}
.y8b{bottom:267.326000pt;}
.y2d{bottom:268.091973pt;}
.y70{bottom:282.171973pt;}
.y54{bottom:288.571973pt;}
.y36{bottom:296.251973pt;}
.y8a{bottom:298.046000pt;}
.y13{bottom:302.651973pt;}
.y2c{bottom:304.891973pt;}
.y6f{bottom:305.211973pt;}
.y53{bottom:325.371973pt;}
.y6e{bottom:328.251973pt;}
.y89{bottom:328.766000pt;}
.y35{bottom:333.051973pt;}
.y12{bottom:339.451973pt;}
.y2b{bottom:341.691973pt;}
.y6d{bottom:351.291973pt;}
.y88{bottom:359.486000pt;}
.y52{bottom:362.171973pt;}
.y34{bottom:369.851973pt;}
.y6c{bottom:374.331973pt;}
.y3f{bottom:375.931973pt;}
.y11{bottom:376.251973pt;}
.y2a{bottom:378.491973pt;}
.y87{bottom:389.886000pt;}
.y51{bottom:393.406000pt;}
.y6b{bottom:397.371973pt;}
.y33{bottom:406.651973pt;}
.y3e{bottom:412.411973pt;}
.y10{bottom:413.051973pt;}
.y29{bottom:415.291973pt;}
.y6a{bottom:420.411973pt;}
.y86{bottom:420.606000pt;}
.y50{bottom:423.806000pt;}
.y69{bottom:443.131973pt;}
.y32{bottom:443.451973pt;}
.y3d{bottom:449.211973pt;}
.yf{bottom:449.851973pt;}
.y85{bottom:451.326000pt;}
.y28{bottom:452.091973pt;}
.y4f{bottom:454.526000pt;}
.y68{bottom:466.171973pt;}
.y31{bottom:480.251973pt;}
.y84{bottom:482.046000pt;}
.y4e{bottom:485.246000pt;}
.y3c{bottom:486.331973pt;}
.ye{bottom:486.651973pt;}
.y27{bottom:488.891973pt;}
.y67{bottom:489.211973pt;}
.y66{bottom:512.251973pt;}
.y83{bottom:512.766000pt;}
.y4d{bottom:515.966000pt;}
.y30{bottom:520.891973pt;}
.yd{bottom:523.451973pt;}
.y26{bottom:525.691973pt;}
.y65{bottom:535.291973pt;}
.y82{bottom:543.486000pt;}
.y4c{bottom:546.686000pt;}
.y64{bottom:558.331973pt;}
.y2f{bottom:558.971973pt;}
.yc{bottom:560.251973pt;}
.y25{bottom:562.491973pt;}
.y81{bottom:573.886000pt;}
.y4b{bottom:577.406000pt;}
.y63{bottom:581.371973pt;}
.yb{bottom:597.051973pt;}
.y24{bottom:599.291973pt;}
.y62{bottom:604.091973pt;}
.y80{bottom:604.606000pt;}
.y4a{bottom:607.806000pt;}
.y61{bottom:627.131973pt;}
.ya{bottom:633.851973pt;}
.y7f{bottom:635.326000pt;}
.y23{bottom:636.091973pt;}
.y49{bottom:638.526000pt;}
.y60{bottom:650.171973pt;}
.y7e{bottom:666.046000pt;}
.y48{bottom:669.246000pt;}
.y9{bottom:670.651973pt;}
.y22{bottom:672.891973pt;}
.y5f{bottom:673.211973pt;}
.y5e{bottom:696.251973pt;}
.y7d{bottom:696.766000pt;}
.y47{bottom:699.966000pt;}
.y8{bottom:707.451973pt;}
.y21{bottom:709.691973pt;}
.y5d{bottom:719.291973pt;}
.y7c{bottom:727.166000pt;}
.y46{bottom:730.686000pt;}
.y5c{bottom:742.331973pt;}
.y7{bottom:744.251973pt;}
.y20{bottom:746.491973pt;}
.y7b{bottom:757.886000pt;}
.y44{bottom:761.406000pt;}
.y5b{bottom:765.371973pt;}
.y6{bottom:781.051973pt;}
.y1f{bottom:783.291973pt;}
.y5a{bottom:788.091973pt;}
.y7a{bottom:788.606000pt;}
.y43{bottom:791.806000pt;}
.y59{bottom:811.131973pt;}
.y5{bottom:817.851973pt;}
.y79{bottom:819.326000pt;}
.y1e{bottom:820.091973pt;}
.y42{bottom:822.526000pt;}
.y58{bottom:834.171973pt;}
.y78{bottom:850.686000pt;}
.y40{bottom:853.886000pt;}
.y4{bottom:854.651973pt;}
.y1d{bottom:856.891973pt;}
.y57{bottom:857.211973pt;}
.y56{bottom:878.011973pt;}
.y3{bottom:891.451973pt;}
.y1c{bottom:893.691973pt;}
.y55{bottom:900.731973pt;}
.y2e{bottom:928.251973pt;}
.y1b{bottom:928.571973pt;}
.y2{bottom:976.251973pt;}
.y19{bottom:988.286000pt;}
.h4{height:18.560000pt;}
.hb{height:29.349375pt;}
.ha{height:30.400000pt;}
.h7{height:30.720000pt;}
.h9{height:36.438750pt;}
.h8{height:36.464375pt;}
.h3{height:43.375000pt;}
.h6{height:44.437500pt;}
.h2{height:44.468750pt;}
.hd{height:48.333125pt;}
.hc{height:48.333658pt;}
.h5{height:58.698750pt;}
.h1{height:1024.252000pt;}
.h0{height:1056.000000pt;}
.w2{width:12.160000pt;}
.w4{width:57.600000pt;}
.w5{width:57.920000pt;}
.w7{width:62.720000pt;}
.w8{width:82.240000pt;}
.w9{width:82.560000pt;}
.w6{width:240.960000pt;}
.w3{width:349.120000pt;}
.w1{width:784.252000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:4.800000pt;}
.x13{left:7.040000pt;}
.x30{left:10.879733pt;}
.x17{left:13.914400pt;}
.x1{left:15.874013pt;}
.x1b{left:17.660133pt;}
.x1f{left:18.739867pt;}
.x19{left:20.625600pt;}
.x23{left:22.239867pt;}
.x15{left:24.293200pt;}
.x25{left:26.506800pt;}
.x2f{left:27.513200pt;}
.x1d{left:28.739867pt;}
.x24{left:30.373333pt;}
.x21{left:31.840133pt;}
.x20{left:33.773467pt;}
.x1e{left:35.626667pt;}
.x2e{left:41.080000pt;}
.x22{left:50.440133pt;}
.x2{left:81.280000pt;}
.x12{left:90.114013pt;}
.x27{left:92.354013pt;}
.xd{left:111.072973pt;}
.x28{left:120.533453pt;}
.xa{left:129.279987pt;}
.x4{left:144.662787pt;}
.xe{left:207.529987pt;}
.x7{left:230.209720pt;}
.x5{left:247.557320pt;}
.x10{left:279.065187pt;}
.x6{left:320.408920pt;}
.x8{left:325.291720pt;}
.x29{left:333.314000pt;}
.x9{left:353.065187pt;}
.x11{left:357.268253pt;}
.xc{left:366.178387pt;}
.xf{left:368.389320pt;}
.x3{left:393.279987pt;}
.x2a{left:396.034000pt;}
.x14{left:439.234000pt;}
.x2b{left:478.274000pt;}
.x16{left:496.834000pt;}
.x18{left:554.754000pt;}
.x2c{left:560.834000pt;}
.x1a{left:612.674000pt;}
.x26{left:637.759987pt;}
.x1c{left:670.594000pt;}
.xb{left:708.994000pt;}
}

