
    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_2a3f565be43ed5bcfa770842.woff')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_c018a5ee60b85ab43c56a19b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e12345becd867e573b146bfe.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c385a51a396d7ce2ab34dfb8.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;}
.m3{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);}
.m1{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.019699px;}
.ls10{letter-spacing:0.019831px;}
.lsc{letter-spacing:0.153480px;}
.ls1{letter-spacing:0.153901px;}
.lsa{letter-spacing:0.160080px;}
.ls9{letter-spacing:0.182640px;}
.ls6{letter-spacing:0.189300px;}
.ls8{letter-spacing:0.378514px;}
.lsd{letter-spacing:0.903120px;}
.lsf{letter-spacing:1.623539px;}
.ls3{letter-spacing:2.343959px;}
.ls4{letter-spacing:3.064439px;}
.lsb{letter-spacing:4.505278px;}
.lse{letter-spacing:4.511938px;}
.ls2{letter-spacing:5.225758px;}
.ls12{letter-spacing:6.666657px;}
.ls7{letter-spacing:7.387077px;}
.ls13{letter-spacing:9.548396px;}
.ls11{letter-spacing:13.150615px;}
.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;}
}
.ws4{word-spacing:-16.579825px;}
.ws0{word-spacing:-16.559993px;}
.ws2{word-spacing:-10.439996px;}
.ws3{word-spacing:-8.786876px;}
.ws1{word-spacing:0.000000px;}
._f{margin-left:-12.716934px;}
._10{margin-left:-3.571519px;}
._14{margin-left:-2.316118px;}
._0{margin-left:-1.036586px;}
._2{width:1.128208px;}
._5{width:3.035006px;}
._9{width:4.039991px;}
._8{width:5.061176px;}
._6{width:6.453610px;}
._3{width:7.584110px;}
._1{width:9.277395px;}
._7{width:10.331486px;}
._4{width:11.753223px;}
._e{width:13.471689px;}
._c{width:14.515919px;}
._11{width:15.532480px;}
._12{width:18.439563px;}
._13{width:19.782834px;}
._16{width:21.786276px;}
._15{width:22.888322px;}
._18{width:24.518396px;}
._17{width:26.234340px;}
._d{width:33.438222px;}
._b{width:38.295882px;}
._a{width:39.810416px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.879984px;}
.fs1{font-size:41.759983px;}
.fs3{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.179977px;}
.y2{bottom:76.079970px;}
.y30{bottom:109.919956px;}
.y82{bottom:109.920256px;}
.ybd{bottom:110.280256px;}
.ybc{bottom:117.840253px;}
.y2f{bottom:127.199949px;}
.ya1{bottom:127.200249px;}
.y81{bottom:127.560249px;}
.ybb{bottom:128.280249px;}
.yc5{bottom:128.640249px;}
.y80{bottom:135.120246px;}
.yc4{bottom:136.200246px;}
.y2e{bottom:144.479942px;}
.ya0{bottom:144.840242px;}
.yb2{bottom:145.559942px;}
.y7f{bottom:145.920242px;}
.yc3{bottom:147.000241px;}
.y9f{bottom:152.399939px;}
.y7e{bottom:153.479939px;}
.yc2{bottom:154.559938px;}
.y2d{bottom:162.119935px;}
.y9e{bottom:162.839935px;}
.y7d{bottom:163.919934px;}
.ycf{bottom:164.279934px;}
.yba{bottom:164.819934px;}
.yc1{bottom:165.899934px;}
.y2c{bottom:169.679932px;}
.yce{bottom:171.839931px;}
.y2b{bottom:180.119928px;}
.y9d{bottom:180.479928px;}
.y7c{bottom:181.379927px;}
.ycd{bottom:182.459927px;}
.y9c{bottom:188.039925px;}
.y7b{bottom:188.939924px;}
.ycc{bottom:190.019924px;}
.y2a{bottom:197.579921px;}
.y9b{bottom:198.299921px;}
.y7a{bottom:199.739920px;}
.ycb{bottom:200.819920px;}
.y29{bottom:205.139918px;}
.y79{bottom:207.299917px;}
.yca{bottom:208.379917px;}
.yc0{bottom:209.639916px;}
.y28{bottom:215.579914px;}
.yb1{bottom:216.479913px;}
.y78{bottom:217.739913px;}
.yc9{bottom:219.719912px;}
.y55{bottom:232.859907px;}
.y27{bottom:233.219907px;}
.y77{bottom:235.019906px;}
.yb9{bottom:238.259905px;}
.y26{bottom:240.779904px;}
.ybf{bottom:245.819902px;}
.y54{bottom:250.139900px;}
.y25{bottom:251.219900px;}
.yb0{bottom:251.579899px;}
.y76{bottom:252.299899px;}
.yb8{bottom:266.699893px;}
.y9a{bottom:267.419893px;}
.y53{bottom:267.779893px;}
.y24{bottom:268.679893px;}
.y75{bottom:269.399892px;}
.y52{bottom:275.339890px;}
.y23{bottom:276.239890px;}
.yaf{bottom:280.019888px;}
.y99{bottom:284.519886px;}
.y51{bottom:285.599886px;}
.y74{bottom:286.679885px;}
.y22{bottom:287.579885px;}
.yb7{bottom:295.139882px;}
.y98{bottom:301.799879px;}
.y50{bottom:302.879879px;}
.y73{bottom:304.319878px;}
.yae{bottom:308.639877px;}
.y72{bottom:311.879875px;}
.y97{bottom:319.439872px;}
.y4f{bottom:320.159872px;}
.y20{bottom:321.959871px;}
.y71{bottom:322.679871px;}
.yb6{bottom:323.579871px;}
.y96{bottom:326.999869px;}
.y21{bottom:329.519868px;}
.y70{bottom:330.239868px;}
.ybe{bottom:331.139868px;}
.yad{bottom:337.079865px;}
.y4e{bottom:337.439865px;}
.y95{bottom:337.799865px;}
.y6f{bottom:340.859864px;}
.y94{bottom:345.359862px;}
.y6e{bottom:348.419861px;}
.y1f{bottom:350.399860px;}
.yb5{bottom:352.019859px;}
.y4d{bottom:354.719858px;}
.y93{bottom:355.979858px;}
.y6d{bottom:359.759856px;}
.y92{bottom:363.539855px;}
.yac{bottom:365.519854px;}
.y4c{bottom:372.899851px;}
.y91{bottom:374.879850px;}
.y1d{bottom:379.019848px;}
.y6c{bottom:380.459848px;}
.y1e{bottom:386.579845px;}
.yb4{bottom:388.019845px;}
.y4b{bottom:393.599843px;}
.y1c{bottom:407.459837px;}
.y6b{bottom:408.899836px;}
.y8f{bottom:424.019830px;}
.y90{bottom:431.579827px;}
.y1b{bottom:435.899826px;}
.y4a{bottom:437.339825px;}
.y6a{bottom:452.459819px;}
.y1a{bottom:464.339814px;}
.y49{bottom:465.779814px;}
.y68{bottom:480.899808px;}
.y69{bottom:488.459805px;}
.y19{bottom:492.779803px;}
.y48{bottom:494.399802px;}
.y67{bottom:509.339796px;}
.y18{bottom:521.219792px;}
.y47{bottom:522.839791px;}
.y66{bottom:537.779785px;}
.y17{bottom:549.659780px;}
.y46{bottom:551.279779px;}
.y65{bottom:566.219774px;}
.y16{bottom:578.099769px;}
.y45{bottom:579.719768px;}
.y63{bottom:594.659762px;}
.y64{bottom:602.219759px;}
.y15{bottom:606.539757px;}
.y44{bottom:608.159757px;}
.y8d{bottom:609.779756px;}
.y8e{bottom:617.339753px;}
.y61{bottom:623.099751px;}
.y62{bottom:630.659748px;}
.y14{bottom:635.159746px;}
.y43{bottom:636.599745px;}
.y8c{bottom:638.219745px;}
.y60{bottom:651.539739px;}
.y13{bottom:663.599735px;}
.y42{bottom:665.039734px;}
.y8b{bottom:666.659733px;}
.y5f{bottom:680.159728px;}
.yc8{bottom:687.719725px;}
.y11{bottom:692.039723px;}
.yab{bottom:693.479723px;}
.y8a{bottom:695.099722px;}
.y12{bottom:699.599720px;}
.y40{bottom:708.599717px;}
.y41{bottom:716.159714px;}
.y10{bottom:720.479712px;}
.yaa{bottom:721.919711px;}
.y89{bottom:723.539711px;}
.yb3{bottom:731.099708px;}
.y3f{bottom:737.039705px;}
.y5e{bottom:744.599702px;}
.yf{bottom:748.919700px;}
.ya9{bottom:750.539700px;}
.y88{bottom:751.979699px;}
.y3e{bottom:765.479694px;}
.yc7{bottom:773.039691px;}
.ya7{bottom:778.979688px;}
.y87{bottom:780.419688px;}
.ya8{bottom:786.539685px;}
.ye{bottom:791.939683px;}
.y3d{bottom:793.919682px;}
.ya6{bottom:807.419677px;}
.y86{bottom:808.859676px;}
.y3c{bottom:822.359671px;}
.yc{bottom:835.859666px;}
.y85{bottom:837.299665px;}
.yd{bottom:843.419663px;}
.y3a{bottom:850.799660px;}
.y3b{bottom:858.359657px;}
.yb{bottom:864.299654px;}
.y5d{bottom:865.919654px;}
.y84{bottom:873.479651px;}
.y39{bottom:879.239648px;}
.ya{bottom:892.739643px;}
.y5c{bottom:894.359642px;}
.yc6{bottom:901.919639px;}
.y38{bottom:907.679637px;}
.y9{bottom:921.179632px;}
.y5a{bottom:922.799631px;}
.y5b{bottom:930.359628px;}
.y37{bottom:936.299625px;}
.y8{bottom:949.619620px;}
.y59{bottom:951.239620px;}
.y83{bottom:958.799616px;}
.y36{bottom:964.739614px;}
.y7{bottom:978.059609px;}
.y57{bottom:979.679608px;}
.y58{bottom:987.239605px;}
.ya5{bottom:993.179603px;}
.y6{bottom:1006.679597px;}
.y35{bottom:1008.119597px;}
.y56{bottom:1015.679594px;}
.ya3{bottom:1021.619591px;}
.ya4{bottom:1029.179588px;}
.y33{bottom:1036.559585px;}
.y34{bottom:1044.119582px;}
.y5{bottom:1049.699580px;}
.ya2{bottom:1050.059580px;}
.y32{bottom:1064.999574px;}
.y4{bottom:1093.259563px;}
.y31{bottom:1093.619563px;}
.y1{bottom:1108.559557px;}
.h5{height:25.913662px;}
.h8{height:28.995457px;}
.h4{height:36.641938px;}
.h1{height:44.149201px;}
.h7{height:45.992794px;}
.h6{height:52.435877px;}
.h2{height:58.121696px;}
.h3{height:58.833258px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:127.799600px;}
.xf{left:132.659947px;}
.x22{left:137.519945px;}
.x10{left:155.339938px;}
.x2d{left:158.939936px;}
.x11{left:160.559936px;}
.x2e{left:169.379932px;}
.x27{left:171.179932px;}
.x1e{left:178.199929px;}
.x6{left:180.900956px;}
.x1f{left:188.639925px;}
.x1c{left:203.039919px;}
.x1d{left:213.479915px;}
.xb{left:224.099910px;}
.xc{left:229.319908px;}
.x33{left:230.759908px;}
.x9{left:233.459907px;}
.xa{left:238.679905px;}
.x34{left:241.199904px;}
.x4{left:270.359892px;}
.x1a{left:292.319883px;}
.x16{left:299.339880px;}
.x1b{left:302.759879px;}
.x17{left:304.559878px;}
.x14{left:313.379875px;}
.x15{left:318.599873px;}
.x25{left:376.919849px;}
.x26{left:387.359845px;}
.x3e{left:396.719841px;}
.x3f{left:407.159837px;}
.x29{left:423.719831px;}
.x3a{left:426.419829px;}
.x2a{left:434.159826px;}
.x3b{left:436.859825px;}
.x18{left:449.279820px;}
.x19{left:454.499818px;}
.x7{left:455.939818px;}
.x8{left:461.159816px;}
.x2b{left:466.199814px;}
.x3c{left:468.179813px;}
.x2c{left:476.639809px;}
.x3d{left:478.619809px;}
.x36{left:542.879783px;}
.x37{left:553.319779px;}
.x5{left:555.660066px;}
.x2f{left:570.959772px;}
.x31{left:573.119771px;}
.x30{left:581.399767px;}
.x32{left:583.559767px;}
.x20{left:599.759760px;}
.x28{left:601.199760px;}
.xd{left:610.919756px;}
.xe{left:616.139754px;}
.x23{left:628.199749px;}
.x24{left:638.639745px;}
.x35{left:648.899740px;}
.x38{left:727.559709px;}
.x39{left:737.999705px;}
.x2{left:748.979663px;}
.x21{left:750.779700px;}
.x12{left:756.359697px;}
.x13{left:761.579695px;}
.x1{left:764.459694px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.017510pt;}
.ls10{letter-spacing:0.017628pt;}
.lsc{letter-spacing:0.136427pt;}
.ls1{letter-spacing:0.136801pt;}
.lsa{letter-spacing:0.142293pt;}
.ls9{letter-spacing:0.162347pt;}
.ls6{letter-spacing:0.168267pt;}
.ls8{letter-spacing:0.336457pt;}
.lsd{letter-spacing:0.802773pt;}
.lsf{letter-spacing:1.443146pt;}
.ls3{letter-spacing:2.083519pt;}
.ls4{letter-spacing:2.723946pt;}
.lsb{letter-spacing:4.004692pt;}
.lse{letter-spacing:4.010612pt;}
.ls2{letter-spacing:4.645118pt;}
.ls12{letter-spacing:5.925918pt;}
.ls7{letter-spacing:6.566291pt;}
.ls13{letter-spacing:8.487463pt;}
.ls11{letter-spacing:11.689435pt;}
.ws4{word-spacing:-14.737622pt;}
.ws0{word-spacing:-14.719994pt;}
.ws2{word-spacing:-9.279996pt;}
.ws3{word-spacing:-7.810557pt;}
.ws1{word-spacing:0.000000pt;}
._f{margin-left:-11.303941pt;}
._10{margin-left:-3.174684pt;}
._14{margin-left:-2.058771pt;}
._0{margin-left:-0.921410pt;}
._2{width:1.002851pt;}
._5{width:2.697783pt;}
._9{width:3.591103pt;}
._8{width:4.498823pt;}
._6{width:5.736543pt;}
._3{width:6.741431pt;}
._1{width:8.246573pt;}
._7{width:9.183543pt;}
._4{width:10.447309pt;}
._e{width:11.974835pt;}
._c{width:12.903040pt;}
._11{width:13.806648pt;}
._12{width:16.390723pt;}
._13{width:17.584741pt;}
._16{width:19.365579pt;}
._15{width:20.345175pt;}
._18{width:21.794130pt;}
._17{width:23.319413pt;}
._d{width:29.722864pt;}
._b{width:34.040784pt;}
._a{width:35.387036pt;}
.fs2{font-size:34.559986pt;}
.fs1{font-size:37.119985pt;}
.fs3{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:50.826646pt;}
.y2{bottom:67.626640pt;}
.y30{bottom:97.706628pt;}
.y82{bottom:97.706894pt;}
.ybd{bottom:98.026894pt;}
.ybc{bottom:104.746891pt;}
.y2f{bottom:113.066621pt;}
.ya1{bottom:113.066888pt;}
.y81{bottom:113.386888pt;}
.ybb{bottom:114.026888pt;}
.yc5{bottom:114.346888pt;}
.y80{bottom:120.106885pt;}
.yc4{bottom:121.066885pt;}
.y2e{bottom:128.426615pt;}
.ya0{bottom:128.746882pt;}
.yb2{bottom:129.386615pt;}
.y7f{bottom:129.706881pt;}
.yc3{bottom:130.666881pt;}
.y9f{bottom:135.466612pt;}
.y7e{bottom:136.426612pt;}
.yc2{bottom:137.386612pt;}
.y2d{bottom:144.106609pt;}
.y9e{bottom:144.746609pt;}
.y7d{bottom:145.706608pt;}
.ycf{bottom:146.026608pt;}
.yba{bottom:146.506608pt;}
.yc1{bottom:147.466608pt;}
.y2c{bottom:150.826606pt;}
.yce{bottom:152.746606pt;}
.y2b{bottom:160.106603pt;}
.y9d{bottom:160.426602pt;}
.y7c{bottom:161.226602pt;}
.ycd{bottom:162.186602pt;}
.y9c{bottom:167.146600pt;}
.y7b{bottom:167.946599pt;}
.ycc{bottom:168.906599pt;}
.y2a{bottom:175.626596pt;}
.y9b{bottom:176.266596pt;}
.y7a{bottom:177.546596pt;}
.ycb{bottom:178.506595pt;}
.y29{bottom:182.346594pt;}
.y79{bottom:184.266593pt;}
.yca{bottom:185.226593pt;}
.yc0{bottom:186.346592pt;}
.y28{bottom:191.626590pt;}
.yb1{bottom:192.426590pt;}
.y78{bottom:193.546589pt;}
.yc9{bottom:195.306589pt;}
.y55{bottom:206.986584pt;}
.y27{bottom:207.306584pt;}
.y77{bottom:208.906583pt;}
.yb9{bottom:211.786582pt;}
.y26{bottom:214.026581pt;}
.ybf{bottom:218.506579pt;}
.y54{bottom:222.346578pt;}
.y25{bottom:223.306577pt;}
.yb0{bottom:223.626577pt;}
.y76{bottom:224.266577pt;}
.yb8{bottom:237.066572pt;}
.y9a{bottom:237.706572pt;}
.y53{bottom:238.026571pt;}
.y24{bottom:238.826571pt;}
.y75{bottom:239.466571pt;}
.y52{bottom:244.746569pt;}
.y23{bottom:245.546568pt;}
.yaf{bottom:248.906567pt;}
.y99{bottom:252.906566pt;}
.y51{bottom:253.866565pt;}
.y74{bottom:254.826565pt;}
.y22{bottom:255.626564pt;}
.yb7{bottom:262.346562pt;}
.y98{bottom:268.266559pt;}
.y50{bottom:269.226559pt;}
.y73{bottom:270.506558pt;}
.yae{bottom:274.346557pt;}
.y72{bottom:277.226556pt;}
.y97{bottom:283.946553pt;}
.y4f{bottom:284.586553pt;}
.y20{bottom:286.186552pt;}
.y71{bottom:286.826552pt;}
.yb6{bottom:287.626552pt;}
.y96{bottom:290.666550pt;}
.y21{bottom:292.906550pt;}
.y70{bottom:293.546549pt;}
.ybe{bottom:294.346549pt;}
.yad{bottom:299.626547pt;}
.y4e{bottom:299.946547pt;}
.y95{bottom:300.266547pt;}
.y6f{bottom:302.986545pt;}
.y94{bottom:306.986544pt;}
.y6e{bottom:309.706543pt;}
.y1f{bottom:311.466542pt;}
.yb5{bottom:312.906542pt;}
.y4d{bottom:315.306541pt;}
.y93{bottom:316.426540pt;}
.y6d{bottom:319.786539pt;}
.y92{bottom:323.146537pt;}
.yac{bottom:324.906537pt;}
.y4c{bottom:331.466534pt;}
.y91{bottom:333.226533pt;}
.y1d{bottom:336.906532pt;}
.y6c{bottom:338.186531pt;}
.y1e{bottom:343.626529pt;}
.yb4{bottom:344.906529pt;}
.y4b{bottom:349.866527pt;}
.y1c{bottom:362.186522pt;}
.y6b{bottom:363.466521pt;}
.y8f{bottom:376.906516pt;}
.y90{bottom:383.626513pt;}
.y1b{bottom:387.466512pt;}
.y4a{bottom:388.746511pt;}
.y6a{bottom:402.186506pt;}
.y1a{bottom:412.746502pt;}
.y49{bottom:414.026501pt;}
.y68{bottom:427.466496pt;}
.y69{bottom:434.186493pt;}
.y19{bottom:438.026491pt;}
.y48{bottom:439.466491pt;}
.y67{bottom:452.746486pt;}
.y18{bottom:463.306481pt;}
.y47{bottom:464.746481pt;}
.y66{bottom:478.026475pt;}
.y17{bottom:488.586471pt;}
.y46{bottom:490.026471pt;}
.y65{bottom:503.306465pt;}
.y16{bottom:513.866461pt;}
.y45{bottom:515.306461pt;}
.y63{bottom:528.586455pt;}
.y64{bottom:535.306453pt;}
.y15{bottom:539.146451pt;}
.y44{bottom:540.586450pt;}
.y8d{bottom:542.026450pt;}
.y8e{bottom:548.746447pt;}
.y61{bottom:553.866445pt;}
.y62{bottom:560.586442pt;}
.y14{bottom:564.586441pt;}
.y43{bottom:565.866440pt;}
.y8c{bottom:567.306440pt;}
.y60{bottom:579.146435pt;}
.y13{bottom:589.866431pt;}
.y42{bottom:591.146430pt;}
.y8b{bottom:592.586430pt;}
.y5f{bottom:604.586425pt;}
.yc8{bottom:611.306422pt;}
.y11{bottom:615.146421pt;}
.yab{bottom:616.426420pt;}
.y8a{bottom:617.866420pt;}
.y12{bottom:621.866418pt;}
.y40{bottom:629.866415pt;}
.y41{bottom:636.586412pt;}
.y10{bottom:640.426410pt;}
.yaa{bottom:641.706410pt;}
.y89{bottom:643.146409pt;}
.yb3{bottom:649.866407pt;}
.y3f{bottom:655.146405pt;}
.y5e{bottom:661.866402pt;}
.yf{bottom:665.706400pt;}
.ya9{bottom:667.146400pt;}
.y88{bottom:668.426399pt;}
.y3e{bottom:680.426394pt;}
.yc7{bottom:687.146392pt;}
.ya7{bottom:692.426390pt;}
.y87{bottom:693.706389pt;}
.ya8{bottom:699.146387pt;}
.ye{bottom:703.946385pt;}
.y3d{bottom:705.706384pt;}
.ya6{bottom:717.706380pt;}
.y86{bottom:718.986379pt;}
.y3c{bottom:730.986374pt;}
.yc{bottom:742.986369pt;}
.y85{bottom:744.266369pt;}
.yd{bottom:749.706367pt;}
.y3a{bottom:756.266364pt;}
.y3b{bottom:762.986361pt;}
.yb{bottom:768.266359pt;}
.y5d{bottom:769.706359pt;}
.y84{bottom:776.426356pt;}
.y39{bottom:781.546354pt;}
.ya{bottom:793.546349pt;}
.y5c{bottom:794.986349pt;}
.yc6{bottom:801.706346pt;}
.y38{bottom:806.826344pt;}
.y9{bottom:818.826339pt;}
.y5a{bottom:820.266339pt;}
.y5b{bottom:826.986336pt;}
.y37{bottom:832.266334pt;}
.y8{bottom:844.106329pt;}
.y59{bottom:845.546328pt;}
.y83{bottom:852.266326pt;}
.y36{bottom:857.546324pt;}
.y7{bottom:869.386319pt;}
.y57{bottom:870.826318pt;}
.y58{bottom:877.546316pt;}
.ya5{bottom:882.826314pt;}
.y6{bottom:894.826309pt;}
.y35{bottom:896.106308pt;}
.y56{bottom:902.826306pt;}
.ya3{bottom:908.106303pt;}
.ya4{bottom:914.826301pt;}
.y33{bottom:921.386298pt;}
.y34{bottom:928.106295pt;}
.y5{bottom:933.066293pt;}
.ya2{bottom:933.386293pt;}
.y32{bottom:946.666288pt;}
.y4{bottom:971.786278pt;}
.y31{bottom:972.106278pt;}
.y1{bottom:985.386273pt;}
.h5{height:23.034366pt;}
.h8{height:25.773740pt;}
.h4{height:32.570612pt;}
.h1{height:39.243734pt;}
.h7{height:40.882484pt;}
.h6{height:46.609669pt;}
.h2{height:51.663729pt;}
.h3{height:52.296229pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:113.599644pt;}
.xf{left:117.919953pt;}
.x22{left:122.239951pt;}
.x10{left:138.079945pt;}
.x2d{left:141.279943pt;}
.x11{left:142.719943pt;}
.x2e{left:150.559940pt;}
.x27{left:152.159939pt;}
.x1e{left:158.399937pt;}
.x6{left:160.800850pt;}
.x1f{left:167.679933pt;}
.x1c{left:180.479928pt;}
.x1d{left:189.759924pt;}
.xb{left:199.199920pt;}
.xc{left:203.839918pt;}
.x33{left:205.119918pt;}
.x9{left:207.519917pt;}
.xa{left:212.159915pt;}
.x34{left:214.399914pt;}
.x4{left:240.319904pt;}
.x1a{left:259.839896pt;}
.x16{left:266.079894pt;}
.x1b{left:269.119892pt;}
.x17{left:270.719892pt;}
.x14{left:278.559889pt;}
.x15{left:283.199887pt;}
.x25{left:335.039866pt;}
.x26{left:344.319862pt;}
.x3e{left:352.639859pt;}
.x3f{left:361.919855pt;}
.x29{left:376.639849pt;}
.x3a{left:379.039848pt;}
.x2a{left:385.919846pt;}
.x3b{left:388.319845pt;}
.x18{left:399.359840pt;}
.x19{left:403.999838pt;}
.x7{left:405.279838pt;}
.x8{left:409.919836pt;}
.x2b{left:414.399834pt;}
.x3c{left:416.159834pt;}
.x2c{left:423.679831pt;}
.x3d{left:425.439830pt;}
.x36{left:482.559807pt;}
.x37{left:491.839803pt;}
.x5{left:493.920059pt;}
.x2f{left:507.519797pt;}
.x31{left:509.439796pt;}
.x30{left:516.799793pt;}
.x32{left:518.719793pt;}
.x20{left:533.119787pt;}
.x28{left:534.399786pt;}
.xd{left:543.039783pt;}
.xe{left:547.679781pt;}
.x23{left:558.399777pt;}
.x24{left:567.679773pt;}
.x35{left:576.799769pt;}
.x38{left:646.719741pt;}
.x39{left:655.999738pt;}
.x2{left:665.759700pt;}
.x21{left:667.359733pt;}
.x12{left:672.319731pt;}
.x13{left:676.959729pt;}
.x1{left:679.519728pt;}
}

