
    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_84af8777410baa84c026e3c7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_fe5aa75de8014dc1b18fb663.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_607ee9b76ddebd55eaa04b26.woff')format("woff");}.ff3{font-family:ff3;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;}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010626px;}
.ls7{letter-spacing:0.021253px;}
.ls3{letter-spacing:0.215640px;}
.ls2{letter-spacing:0.239100px;}
.ls4{letter-spacing:2.373240px;}
.ls6{letter-spacing:5.052660px;}
.ls5{letter-spacing:17.294280px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-9.720000px;}
.ws0{word-spacing:0.000000px;}
._3d{margin-left:-13.398057px;}
._36{margin-left:-5.487886px;}
._6{margin-left:-2.813320px;}
._4{margin-left:-1.074411px;}
._0{width:1.046424px;}
._12{width:2.705146px;}
._e{width:4.030563px;}
._d{width:5.085458px;}
._f{width:6.311206px;}
._13{width:7.720111px;}
._8{width:9.328630px;}
._7{width:10.414714px;}
._a{width:12.086002px;}
._9{width:13.266140px;}
._3{width:14.435020px;}
._16{width:15.449654px;}
._5{width:16.568393px;}
._17{width:17.716990px;}
._1b{width:19.061480px;}
._10{width:20.367761px;}
._11{width:21.427053px;}
._18{width:23.122821px;}
._14{width:24.163730px;}
._15{width:25.378159px;}
._21{width:26.593983px;}
._22{width:27.615728px;}
._24{width:28.779789px;}
._23{width:30.241668px;}
._1c{width:31.493479px;}
._1d{width:32.584934px;}
._27{width:33.637720px;}
._25{width:34.922319px;}
._26{width:36.213754px;}
._41{width:37.558373px;}
._40{width:40.166586px;}
._b{width:42.018696px;}
._42{width:43.141718px;}
._19{width:44.783263px;}
._1a{width:46.196984px;}
._1f{width:48.797037px;}
._20{width:49.916553px;}
._29{width:51.030647px;}
._3a{width:59.637876px;}
._39{width:70.547805px;}
._2a{width:79.110767px;}
._37{width:80.374806px;}
._2f{width:92.212140px;}
._3c{width:96.293918px;}
._35{width:108.557839px;}
._30{width:139.758779px;}
._2d{width:148.262237px;}
._1e{width:154.959692px;}
._31{width:156.231953px;}
._3b{width:167.043478px;}
._34{width:170.340748px;}
._2c{width:175.094897px;}
._3f{width:180.313874px;}
._33{width:183.251081px;}
._32{width:184.321594px;}
._3e{width:187.117431px;}
._38{width:188.680090px;}
._2b{width:191.625096px;}
._c{width:194.505294px;}
._2e{width:195.513091px;}
._1{width:239.917680px;}
._28{width:1185.739896px;}
._2{width:1221.763896px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yea{bottom:110.103000px;}
.y26{bottom:110.103450px;}
.y46{bottom:110.103600px;}
.y25{bottom:116.941350px;}
.ye9{bottom:127.382250px;}
.y45{bottom:127.382850px;}
.ye2{bottom:127.383300px;}
.y24{bottom:128.104200px;}
.yf1{bottom:128.104500px;}
.y60{bottom:134.220750px;}
.ye8{bottom:144.661500px;}
.ya4{bottom:144.661800px;}
.y44{bottom:144.662100px;}
.y7f{bottom:144.662250px;}
.ye1{bottom:144.662550px;}
.y110{bottom:146.825550px;}
.y43{bottom:151.506000px;}
.ye7{bottom:161.940750px;}
.ya3{bottom:161.941050px;}
.y42{bottom:161.941500px;}
.ye0{bottom:161.941800px;}
.y23{bottom:162.305400px;}
.yd1{bottom:162.661650px;}
.y6c{bottom:162.662100px;}
.ybc{bottom:162.662250px;}
.y41{bottom:168.784500px;}
.yf0{bottom:177.961950px;}
.y10f{bottom:177.962250px;}
.ye6{bottom:179.220000px;}
.ya2{bottom:179.220300px;}
.y7e{bottom:179.220900px;}
.ydf{bottom:179.221050px;}
.y5f{bottom:179.940900px;}
.y40{bottom:179.942100px;}
.ye5{bottom:186.064500px;}
.y22{bottom:193.442100px;}
.ya1{bottom:196.505400px;}
.y7d{bottom:196.506000px;}
.yde{bottom:196.506150px;}
.y10c{bottom:197.221050px;}
.y7c{bottom:203.344500px;}
.y5e{bottom:208.921350px;}
.ybb{bottom:208.921950px;}
.y3f{bottom:208.922550px;}
.yef{bottom:208.922850px;}
.y10e{bottom:208.923150px;}
.ya0{bottom:213.603000px;}
.ydd{bottom:213.603750px;}
.y7b{bottom:214.506450px;}
.ye4{bottom:214.506750px;}
.y9f{bottom:220.441500px;}
.y1f{bottom:224.402550px;}
.y21{bottom:224.403000px;}
.ydc{bottom:230.883000px;}
.y9e{bottom:231.604050px;}
.y20{bottom:232.681500px;}
.ydb{bottom:237.720000px;}
.y5d{bottom:240.063900px;}
.y6b{bottom:240.064500px;}
.y10b{bottom:240.064800px;}
.y3e{bottom:240.065100px;}
.ye3{bottom:240.065400px;}
.y10d{bottom:240.065700px;}
.yda{bottom:248.161500px;}
.yd9{bottom:255.006000px;}
.y1e{bottom:255.545100px;}
.yd8{bottom:266.162700px;}
.y5c{bottom:271.024800px;}
.y6a{bottom:271.025400px;}
.y10a{bottom:271.025700px;}
.y3d{bottom:271.026000px;}
.y9d{bottom:271.026300px;}
.y3b{bottom:271.026600px;}
.y3c{bottom:279.304500px;}
.y1d{bottom:286.506000px;}
.y5b{bottom:301.979850px;}
.y69{bottom:301.980450px;}
.y109{bottom:301.980750px;}
.y7a{bottom:301.981050px;}
.y9c{bottom:301.981350px;}
.y3a{bottom:301.981650px;}
.y1c{bottom:317.642700px;}
.y5a{bottom:333.122400px;}
.y68{bottom:333.123000px;}
.y108{bottom:333.123300px;}
.y79{bottom:333.123600px;}
.y9b{bottom:333.123900px;}
.y39{bottom:333.124200px;}
.y67{bottom:341.403000px;}
.y1b{bottom:348.603600px;}
.y59{bottom:364.083300px;}
.y76{bottom:364.083750px;}
.yba{bottom:364.083900px;}
.y105{bottom:364.084200px;}
.y78{bottom:364.084500px;}
.y9a{bottom:364.084800px;}
.y38{bottom:364.085100px;}
.y77{bottom:372.363000px;}
.y1a{bottom:379.740300px;}
.y58{bottom:395.220000px;}
.y56{bottom:395.220450px;}
.yb9{bottom:395.220600px;}
.y104{bottom:395.220900px;}
.yd0{bottom:395.221200px;}
.y99{bottom:395.221500px;}
.y37{bottom:395.221800px;}
.y57{bottom:403.506000px;}
.y19{bottom:410.701200px;}
.y55{bottom:426.181350px;}
.yb8{bottom:426.181500px;}
.yb6{bottom:426.181650px;}
.y103{bottom:426.181800px;}
.ycf{bottom:426.182100px;}
.y98{bottom:426.182400px;}
.y36{bottom:426.182700px;}
.yb7{bottom:434.461500px;}
.y18{bottom:441.843750px;}
.y54{bottom:457.323900px;}
.yb5{bottom:457.324200px;}
.y102{bottom:457.324350px;}
.yce{bottom:457.324650px;}
.y97{bottom:457.324950px;}
.y35{bottom:457.325250px;}
.y17{bottom:472.804650px;}
.y53{bottom:488.284800px;}
.yb4{bottom:488.285100px;}
.y101{bottom:488.285250px;}
.ycd{bottom:488.285550px;}
.y96{bottom:488.285850px;}
.y34{bottom:488.286150px;}
.y16{bottom:503.941350px;}
.y52{bottom:519.421500px;}
.yb3{bottom:519.421800px;}
.y100{bottom:519.421950px;}
.ycc{bottom:519.422250px;}
.y95{bottom:519.422550px;}
.y33{bottom:519.422850px;}
.y15{bottom:534.902250px;}
.y51{bottom:550.382400px;}
.yb2{bottom:550.382700px;}
.yff{bottom:550.382850px;}
.ycb{bottom:550.383150px;}
.y94{bottom:550.383450px;}
.y32{bottom:550.383750px;}
.y14{bottom:566.044800px;}
.yd7{bottom:581.524800px;}
.y50{bottom:581.524950px;}
.yb1{bottom:581.525250px;}
.yfe{bottom:581.525400px;}
.yca{bottom:581.525700px;}
.y93{bottom:581.526000px;}
.y91{bottom:581.526150px;}
.y31{bottom:581.526300px;}
.y92{bottom:589.804500px;}
.y13{bottom:597.005700px;}
.yd6{bottom:612.479850px;}
.y4e{bottom:612.480000px;}
.yb0{bottom:612.480300px;}
.yfd{bottom:612.480450px;}
.yc9{bottom:612.480750px;}
.yee{bottom:612.481050px;}
.y90{bottom:612.481200px;}
.y30{bottom:612.481350px;}
.y4f{bottom:620.766000px;}
.y12{bottom:628.142400px;}
.yd5{bottom:643.622400px;}
.y4d{bottom:643.622550px;}
.yaf{bottom:643.622850px;}
.yfc{bottom:643.623000px;}
.yc8{bottom:643.623300px;}
.yfa{bottom:643.623450px;}
.yed{bottom:643.623600px;}
.y8f{bottom:643.623750px;}
.y2f{bottom:643.623900px;}
.yfb{bottom:651.903000px;}
.y11{bottom:659.103300px;}
.yd4{bottom:674.583300px;}
.y4c{bottom:674.583450px;}
.yae{bottom:674.583750px;}
.yc7{bottom:674.584200px;}
.yf9{bottom:674.584350px;}
.yec{bottom:674.584500px;}
.y8e{bottom:674.584650px;}
.y2e{bottom:674.584800px;}
.yeb{bottom:682.863000px;}
.y10{bottom:690.240000px;}
.yd3{bottom:705.720000px;}
.y4b{bottom:705.720150px;}
.yad{bottom:705.720450px;}
.yc6{bottom:705.720900px;}
.yf8{bottom:705.721050px;}
.y8d{bottom:705.721350px;}
.y2d{bottom:705.721500px;}
.yd2{bottom:714.006000px;}
.yf{bottom:718.506000px;}
.y4a{bottom:736.681050px;}
.yac{bottom:736.681350px;}
.yc5{bottom:736.681800px;}
.yf7{bottom:736.681950px;}
.y8c{bottom:736.682250px;}
.y2c{bottom:736.682400px;}
.ye{bottom:749.285400px;}
.y49{bottom:767.823600px;}
.y106{bottom:767.823750px;}
.yab{bottom:767.823900px;}
.yc4{bottom:767.824350px;}
.yf6{bottom:767.824500px;}
.y8b{bottom:767.824800px;}
.y2b{bottom:767.824950px;}
.y107{bottom:776.103000px;}
.yd{bottom:785.461200px;}
.y48{bottom:798.784500px;}
.y75{bottom:798.784650px;}
.yaa{bottom:798.784800px;}
.yc3{bottom:798.785250px;}
.yf5{bottom:798.785400px;}
.y8a{bottom:798.785700px;}
.y2a{bottom:798.785850px;}
.y47{bottom:807.064500px;}
.yc{bottom:821.642850px;}
.y74{bottom:829.921350px;}
.ya9{bottom:829.921500px;}
.yc2{bottom:829.921950px;}
.yf4{bottom:829.922100px;}
.y89{bottom:829.922400px;}
.y29{bottom:829.922550px;}
.yb{bottom:857.824500px;}
.y73{bottom:860.882250px;}
.ya8{bottom:860.882400px;}
.yc1{bottom:860.882850px;}
.yf3{bottom:860.883000px;}
.y88{bottom:860.883300px;}
.y28{bottom:860.883450px;}
.yf2{bottom:869.161500px;}
.y72{bottom:892.024800px;}
.ya7{bottom:892.024950px;}
.yc0{bottom:892.025400px;}
.y87{bottom:892.025850px;}
.ya{bottom:892.026000px;}
.y71{bottom:922.979850px;}
.ya6{bottom:922.980000px;}
.ybf{bottom:922.980450px;}
.y86{bottom:922.980900px;}
.y9{bottom:922.981050px;}
.ya5{bottom:931.266000px;}
.y70{bottom:954.122400px;}
.ybe{bottom:954.123000px;}
.y85{bottom:954.123450px;}
.y8{bottom:954.123600px;}
.ybd{bottom:962.403000px;}
.y6f{bottom:985.083300px;}
.y66{bottom:985.083450px;}
.y84{bottom:985.084350px;}
.y7{bottom:985.084500px;}
.y27{bottom:993.363000px;}
.y6e{bottom:1016.220000px;}
.y65{bottom:1016.220150px;}
.y83{bottom:1016.221050px;}
.y6{bottom:1016.221200px;}
.y6d{bottom:1024.506000px;}
.y64{bottom:1047.181050px;}
.y82{bottom:1047.181950px;}
.y5{bottom:1047.182100px;}
.y63{bottom:1078.323600px;}
.y81{bottom:1078.324500px;}
.y4{bottom:1078.324650px;}
.y80{bottom:1086.603000px;}
.y62{bottom:1109.284500px;}
.y3{bottom:1109.285550px;}
.y61{bottom:1117.564500px;}
.y2{bottom:1140.422250px;}
.y1{bottom:1193.701500px;}
.h7{height:33.494766px;}
.h5{height:34.114922px;}
.h4{height:42.327773px;}
.h6{height:52.435898px;}
.h3{height:53.077852px;}
.h1{height:63.175781px;}
.h8{height:63.178181px;}
.h2{height:74.820586px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.617150px;}
.x5{left:132.474600px;}
.x1b{left:137.337900px;}
.x24{left:154.617062px;}
.x31{left:160.558500px;}
.x18{left:168.117475px;}
.x32{left:172.798500px;}
.x37{left:192.597000px;}
.x2f{left:198.538500px;}
.x38{left:204.838500px;}
.x30{left:210.780000px;}
.x12{left:228.597000px;}
.x13{left:240.838500px;}
.x3d{left:244.974000px;}
.x16{left:247.137000px;}
.x36{left:251.637000px;}
.x3b{left:256.137000px;}
.x3e{left:257.215500px;}
.x17{left:259.377000px;}
.x19{left:263.157000px;}
.x2d{left:266.038500px;}
.x3c{left:268.377000px;}
.x1a{left:275.397000px;}
.x2e{left:278.280000px;}
.x1e{left:292.675500px;}
.x1f{left:304.915500px;}
.x43{left:312.474000px;}
.x44{left:324.715500px;}
.x10{left:331.020000px;}
.x11{left:337.137000px;}
.xa{left:348.657000px;}
.xb{left:354.780000px;}
.x25{left:379.974000px;}
.x26{left:392.215500px;}
.x8{left:401.578500px;}
.x45{left:404.280000px;}
.x9{left:407.695500px;}
.xf{left:413.637000px;}
.x14{left:433.798500px;}
.x2b{left:442.078500px;}
.x15{left:446.038500px;}
.x2c{left:454.318500px;}
.x6{left:481.494000px;}
.x7{left:487.617000px;}
.x29{left:494.455500px;}
.x41{left:500.038500px;}
.x2a{left:506.695500px;}
.x42{left:512.280000px;}
.x1c{left:520.020000px;}
.x3{left:529.915500px;}
.x1d{left:532.260000px;}
.x4{left:536.038500px;}
.x33{left:582.474000px;}
.xc{left:583.558500px;}
.xd{left:589.675500px;}
.x34{left:594.715500px;}
.x35{left:604.974000px;}
.xe{left:610.020000px;}
.x39{left:613.435500px;}
.x2{left:615.415500px;}
.x20{left:617.935500px;}
.x3a{left:625.675500px;}
.x21{left:630.175500px;}
.x3f{left:640.435500px;}
.x40{left:652.675500px;}
.x22{left:660.058500px;}
.x23{left:672.298500px;}
.x27{left:709.915500px;}
.x28{left:722.157000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009446pt;}
.ls7{letter-spacing:0.018891pt;}
.ls3{letter-spacing:0.191680pt;}
.ls2{letter-spacing:0.212533pt;}
.ls4{letter-spacing:2.109547pt;}
.ls6{letter-spacing:4.491253pt;}
.ls5{letter-spacing:15.372693pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws0{word-spacing:0.000000pt;}
._3d{margin-left:-11.909384pt;}
._36{margin-left:-4.878121pt;}
._6{margin-left:-2.500729pt;}
._4{margin-left:-0.955032pt;}
._0{width:0.930155pt;}
._12{width:2.404574pt;}
._e{width:3.582723pt;}
._d{width:4.520407pt;}
._f{width:5.609961pt;}
._13{width:6.862321pt;}
._8{width:8.292115pt;}
._7{width:9.257524pt;}
._a{width:10.743113pt;}
._9{width:11.792124pt;}
._3{width:12.831129pt;}
._16{width:13.733026pt;}
._5{width:14.727460pt;}
._17{width:15.748436pt;}
._1b{width:16.943538pt;}
._10{width:18.104677pt;}
._11{width:19.046269pt;}
._18{width:20.553618pt;}
._14{width:21.478871pt;}
._15{width:22.558364pt;}
._21{width:23.639096pt;}
._22{width:24.547314pt;}
._24{width:25.582034pt;}
._23{width:26.881483pt;}
._1c{width:27.994203pt;}
._1d{width:28.964386pt;}
._27{width:29.900195pt;}
._25{width:31.042062pt;}
._26{width:32.190004pt;}
._41{width:33.385220pt;}
._40{width:35.703632pt;}
._b{width:37.349952pt;}
._42{width:38.348193pt;}
._19{width:39.807345pt;}
._1a{width:41.063986pt;}
._1f{width:43.375144pt;}
._20{width:44.370269pt;}
._29{width:45.360575pt;}
._3a{width:53.011446pt;}
._39{width:62.709160pt;}
._2a{width:70.320682pt;}
._37{width:71.444272pt;}
._2f{width:81.966347pt;}
._3c{width:85.594594pt;}
._35{width:96.495857pt;}
._30{width:124.230026pt;}
._2d{width:131.788655pt;}
._1e{width:137.741949pt;}
._31{width:138.872847pt;}
._3b{width:148.483092pt;}
._34{width:151.413998pt;}
._2c{width:155.639909pt;}
._3f{width:160.278999pt;}
._33{width:162.889849pt;}
._32{width:163.841417pt;}
._3e{width:166.326605pt;}
._38{width:167.715635pt;}
._2b{width:170.333419pt;}
._c{width:172.893594pt;}
._2e{width:173.789414pt;}
._1{width:213.260160pt;}
._28{width:1053.991019pt;}
._2{width:1086.012352pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yea{bottom:97.869333pt;}
.y26{bottom:97.869733pt;}
.y46{bottom:97.869867pt;}
.y25{bottom:103.947867pt;}
.ye9{bottom:113.228667pt;}
.y45{bottom:113.229200pt;}
.ye2{bottom:113.229600pt;}
.y24{bottom:113.870400pt;}
.yf1{bottom:113.870667pt;}
.y60{bottom:119.307333pt;}
.ye8{bottom:128.588000pt;}
.ya4{bottom:128.588267pt;}
.y44{bottom:128.588533pt;}
.y7f{bottom:128.588667pt;}
.ye1{bottom:128.588933pt;}
.y110{bottom:130.511600pt;}
.y43{bottom:134.672000pt;}
.ye7{bottom:143.947333pt;}
.ya3{bottom:143.947600pt;}
.y42{bottom:143.948000pt;}
.ye0{bottom:143.948267pt;}
.y23{bottom:144.271467pt;}
.yd1{bottom:144.588133pt;}
.y6c{bottom:144.588533pt;}
.ybc{bottom:144.588667pt;}
.y41{bottom:150.030667pt;}
.yf0{bottom:158.188400pt;}
.y10f{bottom:158.188667pt;}
.ye6{bottom:159.306667pt;}
.ya2{bottom:159.306933pt;}
.y7e{bottom:159.307467pt;}
.ydf{bottom:159.307600pt;}
.y5f{bottom:159.947467pt;}
.y40{bottom:159.948533pt;}
.ye5{bottom:165.390667pt;}
.y22{bottom:171.948533pt;}
.ya1{bottom:174.671467pt;}
.y7d{bottom:174.672000pt;}
.yde{bottom:174.672133pt;}
.y10c{bottom:175.307600pt;}
.y7c{bottom:180.750667pt;}
.y5e{bottom:185.707867pt;}
.ybb{bottom:185.708400pt;}
.y3f{bottom:185.708933pt;}
.yef{bottom:185.709200pt;}
.y10e{bottom:185.709467pt;}
.ya0{bottom:189.869333pt;}
.ydd{bottom:189.870000pt;}
.y7b{bottom:190.672400pt;}
.ye4{bottom:190.672667pt;}
.y9f{bottom:195.948000pt;}
.y1f{bottom:199.468933pt;}
.y21{bottom:199.469333pt;}
.ydc{bottom:205.229333pt;}
.y9e{bottom:205.870267pt;}
.y20{bottom:206.828000pt;}
.ydb{bottom:211.306667pt;}
.y5d{bottom:213.390133pt;}
.y6b{bottom:213.390667pt;}
.y10b{bottom:213.390933pt;}
.y3e{bottom:213.391200pt;}
.ye3{bottom:213.391467pt;}
.y10d{bottom:213.391733pt;}
.yda{bottom:220.588000pt;}
.yd9{bottom:226.672000pt;}
.y1e{bottom:227.151200pt;}
.yd8{bottom:236.589067pt;}
.y5c{bottom:240.910933pt;}
.y6a{bottom:240.911467pt;}
.y10a{bottom:240.911733pt;}
.y3d{bottom:240.912000pt;}
.y9d{bottom:240.912267pt;}
.y3b{bottom:240.912533pt;}
.y3c{bottom:248.270667pt;}
.y1d{bottom:254.672000pt;}
.y5b{bottom:268.426533pt;}
.y69{bottom:268.427067pt;}
.y109{bottom:268.427333pt;}
.y7a{bottom:268.427600pt;}
.y9c{bottom:268.427867pt;}
.y3a{bottom:268.428133pt;}
.y1c{bottom:282.349067pt;}
.y5a{bottom:296.108800pt;}
.y68{bottom:296.109333pt;}
.y108{bottom:296.109600pt;}
.y79{bottom:296.109867pt;}
.y9b{bottom:296.110133pt;}
.y39{bottom:296.110400pt;}
.y67{bottom:303.469333pt;}
.y1b{bottom:309.869867pt;}
.y59{bottom:323.629600pt;}
.y76{bottom:323.630000pt;}
.yba{bottom:323.630133pt;}
.y105{bottom:323.630400pt;}
.y78{bottom:323.630667pt;}
.y9a{bottom:323.630933pt;}
.y38{bottom:323.631200pt;}
.y77{bottom:330.989333pt;}
.y1a{bottom:337.546933pt;}
.y58{bottom:351.306667pt;}
.y56{bottom:351.307067pt;}
.yb9{bottom:351.307200pt;}
.y104{bottom:351.307467pt;}
.yd0{bottom:351.307733pt;}
.y99{bottom:351.308000pt;}
.y37{bottom:351.308267pt;}
.y57{bottom:358.672000pt;}
.y19{bottom:365.067733pt;}
.y55{bottom:378.827867pt;}
.yb8{bottom:378.828000pt;}
.yb6{bottom:378.828133pt;}
.y103{bottom:378.828267pt;}
.ycf{bottom:378.828533pt;}
.y98{bottom:378.828800pt;}
.y36{bottom:378.829067pt;}
.yb7{bottom:386.188000pt;}
.y18{bottom:392.750000pt;}
.y54{bottom:406.510133pt;}
.yb5{bottom:406.510400pt;}
.y102{bottom:406.510533pt;}
.yce{bottom:406.510800pt;}
.y97{bottom:406.511067pt;}
.y35{bottom:406.511333pt;}
.y17{bottom:420.270800pt;}
.y53{bottom:434.030933pt;}
.yb4{bottom:434.031200pt;}
.y101{bottom:434.031333pt;}
.ycd{bottom:434.031600pt;}
.y96{bottom:434.031867pt;}
.y34{bottom:434.032133pt;}
.y16{bottom:447.947867pt;}
.y52{bottom:461.708000pt;}
.yb3{bottom:461.708267pt;}
.y100{bottom:461.708400pt;}
.ycc{bottom:461.708667pt;}
.y95{bottom:461.708933pt;}
.y33{bottom:461.709200pt;}
.y15{bottom:475.468667pt;}
.y51{bottom:489.228800pt;}
.yb2{bottom:489.229067pt;}
.yff{bottom:489.229200pt;}
.ycb{bottom:489.229467pt;}
.y94{bottom:489.229733pt;}
.y32{bottom:489.230000pt;}
.y14{bottom:503.150933pt;}
.yd7{bottom:516.910933pt;}
.y50{bottom:516.911067pt;}
.yb1{bottom:516.911333pt;}
.yfe{bottom:516.911467pt;}
.yca{bottom:516.911733pt;}
.y93{bottom:516.912000pt;}
.y91{bottom:516.912133pt;}
.y31{bottom:516.912267pt;}
.y92{bottom:524.270667pt;}
.y13{bottom:530.671733pt;}
.yd6{bottom:544.426533pt;}
.y4e{bottom:544.426667pt;}
.yb0{bottom:544.426933pt;}
.yfd{bottom:544.427067pt;}
.yc9{bottom:544.427333pt;}
.yee{bottom:544.427600pt;}
.y90{bottom:544.427733pt;}
.y30{bottom:544.427867pt;}
.y4f{bottom:551.792000pt;}
.y12{bottom:558.348800pt;}
.yd5{bottom:572.108800pt;}
.y4d{bottom:572.108933pt;}
.yaf{bottom:572.109200pt;}
.yfc{bottom:572.109333pt;}
.yc8{bottom:572.109600pt;}
.yfa{bottom:572.109733pt;}
.yed{bottom:572.109867pt;}
.y8f{bottom:572.110000pt;}
.y2f{bottom:572.110133pt;}
.yfb{bottom:579.469333pt;}
.y11{bottom:585.869600pt;}
.yd4{bottom:599.629600pt;}
.y4c{bottom:599.629733pt;}
.yae{bottom:599.630000pt;}
.yc7{bottom:599.630400pt;}
.yf9{bottom:599.630533pt;}
.yec{bottom:599.630667pt;}
.y8e{bottom:599.630800pt;}
.y2e{bottom:599.630933pt;}
.yeb{bottom:606.989333pt;}
.y10{bottom:613.546667pt;}
.yd3{bottom:627.306667pt;}
.y4b{bottom:627.306800pt;}
.yad{bottom:627.307067pt;}
.yc6{bottom:627.307467pt;}
.yf8{bottom:627.307600pt;}
.y8d{bottom:627.307867pt;}
.y2d{bottom:627.308000pt;}
.yd2{bottom:634.672000pt;}
.yf{bottom:638.672000pt;}
.y4a{bottom:654.827600pt;}
.yac{bottom:654.827867pt;}
.yc5{bottom:654.828267pt;}
.yf7{bottom:654.828400pt;}
.y8c{bottom:654.828667pt;}
.y2c{bottom:654.828800pt;}
.ye{bottom:666.031467pt;}
.y49{bottom:682.509867pt;}
.y106{bottom:682.510000pt;}
.yab{bottom:682.510133pt;}
.yc4{bottom:682.510533pt;}
.yf6{bottom:682.510667pt;}
.y8b{bottom:682.510933pt;}
.y2b{bottom:682.511067pt;}
.y107{bottom:689.869333pt;}
.yd{bottom:698.187733pt;}
.y48{bottom:710.030667pt;}
.y75{bottom:710.030800pt;}
.yaa{bottom:710.030933pt;}
.yc3{bottom:710.031333pt;}
.yf5{bottom:710.031467pt;}
.y8a{bottom:710.031733pt;}
.y2a{bottom:710.031867pt;}
.y47{bottom:717.390667pt;}
.yc{bottom:730.349200pt;}
.y74{bottom:737.707867pt;}
.ya9{bottom:737.708000pt;}
.yc2{bottom:737.708400pt;}
.yf4{bottom:737.708533pt;}
.y89{bottom:737.708800pt;}
.y29{bottom:737.708933pt;}
.yb{bottom:762.510667pt;}
.y73{bottom:765.228667pt;}
.ya8{bottom:765.228800pt;}
.yc1{bottom:765.229200pt;}
.yf3{bottom:765.229333pt;}
.y88{bottom:765.229600pt;}
.y28{bottom:765.229733pt;}
.yf2{bottom:772.588000pt;}
.y72{bottom:792.910933pt;}
.ya7{bottom:792.911067pt;}
.yc0{bottom:792.911467pt;}
.y87{bottom:792.911867pt;}
.ya{bottom:792.912000pt;}
.y71{bottom:820.426533pt;}
.ya6{bottom:820.426667pt;}
.ybf{bottom:820.427067pt;}
.y86{bottom:820.427467pt;}
.y9{bottom:820.427600pt;}
.ya5{bottom:827.792000pt;}
.y70{bottom:848.108800pt;}
.ybe{bottom:848.109333pt;}
.y85{bottom:848.109733pt;}
.y8{bottom:848.109867pt;}
.ybd{bottom:855.469333pt;}
.y6f{bottom:875.629600pt;}
.y66{bottom:875.629733pt;}
.y84{bottom:875.630533pt;}
.y7{bottom:875.630667pt;}
.y27{bottom:882.989333pt;}
.y6e{bottom:903.306667pt;}
.y65{bottom:903.306800pt;}
.y83{bottom:903.307600pt;}
.y6{bottom:903.307733pt;}
.y6d{bottom:910.672000pt;}
.y64{bottom:930.827600pt;}
.y82{bottom:930.828400pt;}
.y5{bottom:930.828533pt;}
.y63{bottom:958.509867pt;}
.y81{bottom:958.510667pt;}
.y4{bottom:958.510800pt;}
.y80{bottom:965.869333pt;}
.y62{bottom:986.030667pt;}
.y3{bottom:986.031600pt;}
.y61{bottom:993.390667pt;}
.y2{bottom:1013.708667pt;}
.y1{bottom:1061.068000pt;}
.h7{height:29.773125pt;}
.h5{height:30.324375pt;}
.h4{height:37.624687pt;}
.h6{height:46.609688pt;}
.h3{height:47.180312pt;}
.h1{height:56.156250pt;}
.h8{height:56.158383pt;}
.h2{height:66.507188pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.437467pt;}
.x5{left:117.755200pt;}
.x1b{left:122.078133pt;}
.x24{left:137.437389pt;}
.x31{left:142.718667pt;}
.x18{left:149.437755pt;}
.x32{left:153.598667pt;}
.x37{left:171.197333pt;}
.x2f{left:176.478667pt;}
.x38{left:182.078667pt;}
.x30{left:187.360000pt;}
.x12{left:203.197333pt;}
.x13{left:214.078667pt;}
.x3d{left:217.754667pt;}
.x16{left:219.677333pt;}
.x36{left:223.677333pt;}
.x3b{left:227.677333pt;}
.x3e{left:228.636000pt;}
.x17{left:230.557333pt;}
.x19{left:233.917333pt;}
.x2d{left:236.478667pt;}
.x3c{left:238.557333pt;}
.x1a{left:244.797333pt;}
.x2e{left:247.360000pt;}
.x1e{left:260.156000pt;}
.x1f{left:271.036000pt;}
.x43{left:277.754667pt;}
.x44{left:288.636000pt;}
.x10{left:294.240000pt;}
.x11{left:299.677333pt;}
.xa{left:309.917333pt;}
.xb{left:315.360000pt;}
.x25{left:337.754667pt;}
.x26{left:348.636000pt;}
.x8{left:356.958667pt;}
.x45{left:359.360000pt;}
.x9{left:362.396000pt;}
.xf{left:367.677333pt;}
.x14{left:385.598667pt;}
.x2b{left:392.958667pt;}
.x15{left:396.478667pt;}
.x2c{left:403.838667pt;}
.x6{left:427.994667pt;}
.x7{left:433.437333pt;}
.x29{left:439.516000pt;}
.x41{left:444.478667pt;}
.x2a{left:450.396000pt;}
.x42{left:455.360000pt;}
.x1c{left:462.240000pt;}
.x3{left:471.036000pt;}
.x1d{left:473.120000pt;}
.x4{left:476.478667pt;}
.x33{left:517.754667pt;}
.xc{left:518.718667pt;}
.xd{left:524.156000pt;}
.x34{left:528.636000pt;}
.x35{left:537.754667pt;}
.xe{left:542.240000pt;}
.x39{left:545.276000pt;}
.x2{left:547.036000pt;}
.x20{left:549.276000pt;}
.x3a{left:556.156000pt;}
.x21{left:560.156000pt;}
.x3f{left:569.276000pt;}
.x40{left:580.156000pt;}
.x22{left:586.718667pt;}
.x23{left:597.598667pt;}
.x27{left:631.036000pt;}
.x28{left:641.917333pt;}
}

