
    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_e595c2f41ee76a08687a7e04.woff')format("woff");}.ff1{font-family:ff1;line-height:1.207031;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_52f6aec8abd6678b842cc2a4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.208008;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_3bc75896c29c914b45924e82.woff')format("woff");}.ff3{font-family:ff3;line-height:0.799805;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_b6ffd779bb31cd6993fba8b2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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;}
.m7{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m2{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);}
.m6{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);}
.m4{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);}
.m5{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);}
.m3{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;}
.ls2{letter-spacing:0.333741px;}
.ls3{letter-spacing:0.333829px;}
.ls0{letter-spacing:0.593427px;}
.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:-25.343990px;}
.ws0{word-spacing:-22.654071px;}
.ws1{word-spacing:-19.452952px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.159750px;}
._0{width:1.160517px;}
._17{width:2.632452px;}
._e{width:3.665704px;}
._f{width:4.815552px;}
._b{width:5.931548px;}
._a{width:7.083022px;}
._11{width:8.837870px;}
._12{width:9.976989px;}
._3{width:11.660542px;}
._2{width:12.675336px;}
._16{width:13.859583px;}
._18{width:15.785496px;}
._19{width:17.059963px;}
._10{width:18.412354px;}
._8{width:20.074312px;}
._9{width:21.135882px;}
._22{width:22.377387px;}
._13{width:24.296884px;}
._1a{width:26.355492px;}
._4{width:28.183458px;}
._14{width:29.876247px;}
._15{width:30.967729px;}
._7{width:34.734173px;}
._1e{width:36.037568px;}
._1c{width:37.504468px;}
._1b{width:39.219405px;}
._1d{width:40.898901px;}
._21{width:42.264397px;}
._c{width:43.398973px;}
._d{width:44.820796px;}
._1f{width:46.215842px;}
._20{width:47.590970px;}
._25{width:50.627358px;}
._26{width:51.739011px;}
._5{width:67.337708px;}
._6{width:68.918022px;}
._27{width:72.715453px;}
._28{width:73.716570px;}
._23{width:94.001228px;}
._24{width:95.494682px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,51,101);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.239988px;}
.fs5{font-size:48.239981px;}
.fs3{font-size:53.999978px;}
.fs6{font-size:56.879977px;}
.fs0{font-size:59.759976px;}
.fs2{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs1{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.279977px;}
.y2b{bottom:109.019956px;}
.yb0{bottom:116.399953px;}
.y78{bottom:118.559953px;}
.y9b{bottom:118.740253px;}
.y98{bottom:118.919952px;}
.y99{bottom:119.640252px;}
.y54{bottom:121.979951px;}
.y2a{bottom:123.599951px;}
.y9a{bottom:128.280249px;}
.y29{bottom:138.179945px;}
.yaf{bottom:140.519944px;}
.y53{bottom:145.919942px;}
.y96{bottom:149.879940px;}
.y97{bottom:150.239940px;}
.y28{bottom:152.759939px;}
.y77{bottom:153.299939px;}
.yae{bottom:164.459934px;}
.y27{bottom:167.339933px;}
.y52{bottom:170.039932px;}
.y26{bottom:172.559931px;}
.y95{bottom:173.999930px;}
.ycc{bottom:179.939928px;}
.y25{bottom:184.619926px;}
.y76{bottom:188.219925px;}
.y51{bottom:194.159922px;}
.y94{bottom:198.119921px;}
.yad{bottom:199.379920px;}
.ycb{bottom:203.879918px;}
.y24{bottom:215.939914px;}
.y50{bottom:218.099913px;}
.y93{bottom:222.239911px;}
.y75{bottom:223.139911px;}
.yca{bottom:227.999909px;}
.yac{bottom:234.299906px;}
.y23{bottom:240.059904px;}
.y92{bottom:246.179902px;}
.y4f{bottom:253.019899px;}
.y74{bottom:257.879897px;}
.yab{bottom:258.239897px;}
.yc9{bottom:262.919895px;}
.y22{bottom:264.179894px;}
.y91{bottom:270.299892px;}
.y73{bottom:281.999887px;}
.yaa{bottom:282.359887px;}
.yc8{bottom:287.039885px;}
.y4e{bottom:287.939885px;}
.y21{bottom:288.119885px;}
.y90{bottom:294.419882px;}
.y72{bottom:306.119878px;}
.ya9{bottom:306.479877px;}
.yc7{bottom:310.979876px;}
.y4d{bottom:311.879875px;}
.y20{bottom:323.039871px;}
.y8f{bottom:329.159868px;}
.y71{bottom:330.239868px;}
.ya8{bottom:330.419868px;}
.yc6{bottom:335.099866px;}
.y4c{bottom:335.999866px;}
.ya7{bottom:354.539858px;}
.y1f{bottom:357.959857px;}
.y4b{bottom:360.119856px;}
.y8e{bottom:364.079854px;}
.y70{bottom:364.979854px;}
.yc5{bottom:370.019852px;}
.ya6{bottom:378.659849px;}
.y4a{bottom:384.239846px;}
.y8d{bottom:388.199845px;}
.y6f{bottom:389.099844px;}
.y1e{bottom:392.699843px;}
.yc4{bottom:393.959842px;}
.ya5{bottom:402.599839px;}
.y49{bottom:408.179837px;}
.y8c{bottom:412.139835px;}
.y1d{bottom:416.819833px;}
.yc3{bottom:418.079833px;}
.y6e{bottom:424.019830px;}
.ya4{bottom:426.719829px;}
.y48{bottom:432.299827px;}
.y8b{bottom:436.259825px;}
.y1c{bottom:440.939824px;}
.ya3{bottom:450.839820px;}
.yc2{bottom:452.999819px;}
.y47{bottom:456.419817px;}
.y6d{bottom:458.759816px;}
.y1b{bottom:465.059814px;}
.y8a{bottom:471.179812px;}
.ya2{bottom:474.959810px;}
.yc1{bottom:476.939809px;}
.y46{bottom:480.359808px;}
.y6c{bottom:482.879807px;}
.y1a{bottom:488.999804px;}
.ya1{bottom:498.899800px;}
.yc0{bottom:501.059800px;}
.y45{bottom:504.479798px;}
.y89{bottom:505.919798px;}
.y6b{bottom:506.999797px;}
.y19{bottom:513.119795px;}
.ya0{bottom:523.019791px;}
.y6a{bottom:530.939788px;}
.ybf{bottom:535.979786px;}
.y18{bottom:537.239785px;}
.y44{bottom:539.399784px;}
.y88{bottom:540.839784px;}
.y9f{bottom:547.139781px;}
.y69{bottom:555.059778px;}
.ybe{bottom:559.919776px;}
.y17{bottom:561.179776px;}
.y9e{bottom:571.079772px;}
.y43{bottom:574.139770px;}
.y87{bottom:575.759770px;}
.y68{bottom:579.179768px;}
.y16{bottom:585.299766px;}
.ybd{bottom:594.839762px;}
.y42{bottom:598.259761px;}
.y86{bottom:599.699760px;}
.y67{bottom:603.119759px;}
.y9d{bottom:605.999758px;}
.y15{bottom:609.419756px;}
.ybc{bottom:618.959752px;}
.y41{bottom:622.379751px;}
.y85{bottom:623.819750px;}
.y66{bottom:627.239749px;}
.y14{bottom:633.359747px;}
.y9c{bottom:637.139745px;}
.ybb{bottom:642.899743px;}
.y40{bottom:646.319741px;}
.y84{bottom:647.939741px;}
.y13{bottom:657.479737px;}
.y65{bottom:662.159735px;}
.y3f{bottom:670.439732px;}
.yba{bottom:677.819729px;}
.y83{bottom:682.859727px;}
.y12{bottom:692.399723px;}
.y3e{bottom:694.559722px;}
.y64{bottom:696.899721px;}
.yb9{bottom:701.939719px;}
.y82{bottom:717.599713px;}
.y3d{bottom:718.499713px;}
.y63{bottom:721.019712px;}
.y11{bottom:727.139709px;}
.yb8{bottom:736.859705px;}
.y3c{bottom:742.619703px;}
.y62{bottom:745.139702px;}
.y10{bottom:751.259699px;}
.y81{bottom:752.519699px;}
.yb7{bottom:760.799696px;}
.y3b{bottom:766.739693px;}
.y61{bottom:769.259692px;}
.yb6{bottom:784.919686px;}
.yf{bottom:786.179686px;}
.y80{bottom:787.439685px;}
.y3a{bottom:790.859684px;}
.y60{bottom:793.199683px;}
.y39{bottom:814.799674px;}
.y5f{bottom:817.319673px;}
.yb5{bottom:819.839672px;}
.y7f{bottom:822.179671px;}
.ye{bottom:829.199668px;}
.y38{bottom:838.919664px;}
.y5e{bottom:841.439663px;}
.yb4{bottom:843.779662px;}
.yd{bottom:853.319659px;}
.y7e{bottom:857.099657px;}
.y37{bottom:863.039655px;}
.y5d{bottom:865.379654px;}
.yb3{bottom:878.699649px;}
.y36{bottom:886.979645px;}
.yc{bottom:888.239645px;}
.y5c{bottom:889.499644px;}
.y7d{bottom:892.019643px;}
.yb2{bottom:902.819639px;}
.y35{bottom:911.099636px;}
.yb{bottom:912.359635px;}
.y5b{bottom:913.619635px;}
.y7c{bottom:926.759629px;}
.y34{bottom:935.219626px;}
.ya{bottom:936.299625px;}
.y5a{bottom:937.559625px;}
.y33{bottom:959.159616px;}
.y59{bottom:961.679615px;}
.y9{bottom:971.219612px;}
.y32{bottom:983.279607px;}
.y58{bottom:985.799606px;}
.y7b{bottom:996.599601px;}
.y8{bottom:1006.139598px;}
.y57{bottom:1009.739596px;}
.y31{bottom:1018.199593px;}
.y7a{bottom:1020.539592px;}
.y7{bottom:1032.599587px;}
.y30{bottom:1042.139583px;}
.y56{bottom:1044.659582px;}
.yb1{bottom:1055.459578px;}
.y2f{bottom:1066.259573px;}
.y5{bottom:1068.779572px;}
.y6{bottom:1078.499569px;}
.y55{bottom:1079.579568px;}
.y2e{bottom:1090.379564px;}
.y4{bottom:1096.859561px;}
.y79{bottom:1103.519559px;}
.y2d{bottom:1114.319554px;}
.y3{bottom:1124.939550px;}
.y2c{bottom:1138.439545px;}
.y1{bottom:1194.599522px;}
.h9{height:30.254754px;}
.h6{height:48.263535px;}
.h4{height:54.026346px;}
.h7{height:56.907751px;}
.h8{height:57.585914px;}
.h1{height:59.789156px;}
.h3{height:66.272317px;}
.h5{height:72.035127px;}
.h2{height:84.281099px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x11{left:106.379957px;}
.x18{left:111.239956px;}
.x12{left:119.519952px;}
.x3{left:135.719946px;}
.x5{left:147.419211px;}
.x4{left:153.719939px;}
.x6{left:156.779607px;}
.x14{left:187.019925px;}
.x1b{left:226.079910px;}
.x1c{left:239.939904px;}
.x15{left:255.599898px;}
.x13{left:258.479897px;}
.x16{left:270.539892px;}
.x7{left:302.399879px;}
.x8{left:311.039876px;}
.x1{left:322.199871px;}
.x9{left:343.979862px;}
.xa{left:355.499858px;}
.x1d{left:369.899852px;}
.x17{left:370.979852px;}
.x1a{left:424.799795px;}
.x2{left:429.659807px;}
.xb{left:473.039811px;}
.xc{left:490.139804px;}
.xd{left:598.859760px;}
.xe{left:616.859753px;}
.xf{left:726.659709px;}
.x10{left:736.199706px;}
.x19{left:786.239686px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.296659pt;}
.ls3{letter-spacing:0.296737pt;}
.ls0{letter-spacing:0.527491pt;}
.ws3{word-spacing:-22.527991pt;}
.ws0{word-spacing:-20.136952pt;}
.ws1{word-spacing:-17.291513pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-1.030889pt;}
._0{width:1.031571pt;}
._17{width:2.339957pt;}
._e{width:3.258403pt;}
._f{width:4.280490pt;}
._b{width:5.272487pt;}
._a{width:6.296019pt;}
._11{width:7.855884pt;}
._12{width:8.868434pt;}
._3{width:10.364926pt;}
._2{width:11.266965pt;}
._16{width:12.319629pt;}
._18{width:14.031552pt;}
._19{width:15.164412pt;}
._10{width:16.366537pt;}
._8{width:17.843833pt;}
._9{width:18.787451pt;}
._22{width:19.891010pt;}
._13{width:21.597230pt;}
._1a{width:23.427104pt;}
._4{width:25.051962pt;}
._14{width:26.556664pt;}
._15{width:27.526870pt;}
._7{width:30.874821pt;}
._1e{width:32.033394pt;}
._1c{width:33.337305pt;}
._1b{width:34.861694pt;}
._1d{width:36.354579pt;}
._21{width:37.568353pt;}
._c{width:38.576865pt;}
._d{width:39.840708pt;}
._1f{width:41.080748pt;}
._20{width:42.303084pt;}
._25{width:45.002096pt;}
._26{width:45.990232pt;}
._5{width:59.855741pt;}
._6{width:61.260464pt;}
._27{width:64.635958pt;}
._28{width:65.525840pt;}
._23{width:83.556647pt;}
._24{width:84.884162pt;}
.fs7{font-size:26.879989pt;}
.fs5{font-size:42.879983pt;}
.fs3{font-size:47.999981pt;}
.fs6{font-size:50.559980pt;}
.fs0{font-size:53.119979pt;}
.fs2{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs1{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.026647pt;}
.y2b{bottom:96.906628pt;}
.yb0{bottom:103.466625pt;}
.y78{bottom:105.386625pt;}
.y9b{bottom:105.546891pt;}
.y98{bottom:105.706624pt;}
.y99{bottom:106.346891pt;}
.y54{bottom:108.426623pt;}
.y2a{bottom:109.866623pt;}
.y9a{bottom:114.026888pt;}
.y29{bottom:122.826618pt;}
.yaf{bottom:124.906617pt;}
.y53{bottom:129.706615pt;}
.y96{bottom:133.226613pt;}
.y97{bottom:133.546613pt;}
.y28{bottom:135.786612pt;}
.y77{bottom:136.266612pt;}
.yae{bottom:146.186608pt;}
.y27{bottom:148.746607pt;}
.y52{bottom:151.146606pt;}
.y26{bottom:153.386605pt;}
.y95{bottom:154.666605pt;}
.ycc{bottom:159.946603pt;}
.y25{bottom:164.106601pt;}
.y76{bottom:167.306600pt;}
.y51{bottom:172.586598pt;}
.y94{bottom:176.106596pt;}
.yad{bottom:177.226596pt;}
.ycb{bottom:181.226594pt;}
.y24{bottom:191.946590pt;}
.y50{bottom:193.866589pt;}
.y93{bottom:197.546588pt;}
.y75{bottom:198.346587pt;}
.yca{bottom:202.666586pt;}
.yac{bottom:208.266583pt;}
.y23{bottom:213.386581pt;}
.y92{bottom:218.826579pt;}
.y4f{bottom:224.906577pt;}
.y74{bottom:229.226575pt;}
.yab{bottom:229.546575pt;}
.yc9{bottom:233.706573pt;}
.y22{bottom:234.826573pt;}
.y91{bottom:240.266571pt;}
.y73{bottom:250.666566pt;}
.yaa{bottom:250.986566pt;}
.yc8{bottom:255.146565pt;}
.y4e{bottom:255.946564pt;}
.y21{bottom:256.106564pt;}
.y90{bottom:261.706562pt;}
.y72{bottom:272.106558pt;}
.ya9{bottom:272.426558pt;}
.yc7{bottom:276.426556pt;}
.y4d{bottom:277.226556pt;}
.y20{bottom:287.146552pt;}
.y8f{bottom:292.586550pt;}
.y71{bottom:293.546549pt;}
.ya8{bottom:293.706549pt;}
.yc6{bottom:297.866548pt;}
.y4c{bottom:298.666547pt;}
.ya7{bottom:315.146541pt;}
.y1f{bottom:318.186539pt;}
.y4b{bottom:320.106539pt;}
.y8e{bottom:323.626537pt;}
.y70{bottom:324.426537pt;}
.yc5{bottom:328.906535pt;}
.ya6{bottom:336.586532pt;}
.y4a{bottom:341.546530pt;}
.y8d{bottom:345.066529pt;}
.y6f{bottom:345.866528pt;}
.y1e{bottom:349.066527pt;}
.yc4{bottom:350.186527pt;}
.ya5{bottom:357.866524pt;}
.y49{bottom:362.826522pt;}
.y8c{bottom:366.346520pt;}
.y1d{bottom:370.506518pt;}
.yc3{bottom:371.626518pt;}
.y6e{bottom:376.906516pt;}
.ya4{bottom:379.306515pt;}
.y48{bottom:384.266513pt;}
.y8b{bottom:387.786512pt;}
.y1c{bottom:391.946510pt;}
.ya3{bottom:400.746506pt;}
.yc2{bottom:402.666506pt;}
.y47{bottom:405.706504pt;}
.y6d{bottom:407.786504pt;}
.y1b{bottom:413.386501pt;}
.y8a{bottom:418.826499pt;}
.ya2{bottom:422.186498pt;}
.yc1{bottom:423.946497pt;}
.y46{bottom:426.986496pt;}
.y6c{bottom:429.226495pt;}
.y1a{bottom:434.666493pt;}
.ya1{bottom:443.466489pt;}
.yc0{bottom:445.386489pt;}
.y45{bottom:448.426487pt;}
.y89{bottom:449.706487pt;}
.y6b{bottom:450.666486pt;}
.y19{bottom:456.106484pt;}
.ya0{bottom:464.906481pt;}
.y6a{bottom:471.946478pt;}
.ybf{bottom:476.426476pt;}
.y18{bottom:477.546476pt;}
.y44{bottom:479.466475pt;}
.y88{bottom:480.746474pt;}
.y9f{bottom:486.346472pt;}
.y69{bottom:493.386469pt;}
.ybe{bottom:497.706468pt;}
.y17{bottom:498.826467pt;}
.y9e{bottom:507.626464pt;}
.y43{bottom:510.346463pt;}
.y87{bottom:511.786462pt;}
.y68{bottom:514.826461pt;}
.y16{bottom:520.266459pt;}
.ybd{bottom:528.746455pt;}
.y42{bottom:531.786454pt;}
.y86{bottom:533.066453pt;}
.y67{bottom:536.106452pt;}
.y9d{bottom:538.666451pt;}
.y15{bottom:541.706450pt;}
.ybc{bottom:550.186447pt;}
.y41{bottom:553.226445pt;}
.y85{bottom:554.506445pt;}
.y66{bottom:557.546444pt;}
.y14{bottom:562.986441pt;}
.y9c{bottom:566.346440pt;}
.ybb{bottom:571.466438pt;}
.y40{bottom:574.506437pt;}
.y84{bottom:575.946436pt;}
.y13{bottom:584.426433pt;}
.y65{bottom:588.586431pt;}
.y3f{bottom:595.946428pt;}
.yba{bottom:602.506426pt;}
.y83{bottom:606.986424pt;}
.y12{bottom:615.466420pt;}
.y3e{bottom:617.386420pt;}
.y64{bottom:619.466419pt;}
.yb9{bottom:623.946417pt;}
.y82{bottom:637.866412pt;}
.y3d{bottom:638.666411pt;}
.y63{bottom:640.906410pt;}
.y11{bottom:646.346408pt;}
.yb8{bottom:654.986405pt;}
.y3c{bottom:660.106403pt;}
.y62{bottom:662.346402pt;}
.y10{bottom:667.786400pt;}
.y81{bottom:668.906399pt;}
.yb7{bottom:676.266396pt;}
.y3b{bottom:681.546394pt;}
.y61{bottom:683.786393pt;}
.yb6{bottom:697.706388pt;}
.yf{bottom:698.826387pt;}
.y80{bottom:699.946387pt;}
.y3a{bottom:702.986385pt;}
.y60{bottom:705.066385pt;}
.y39{bottom:724.266377pt;}
.y5f{bottom:726.506376pt;}
.yb5{bottom:728.746375pt;}
.y7f{bottom:730.826374pt;}
.ye{bottom:737.066372pt;}
.y38{bottom:745.706368pt;}
.y5e{bottom:747.946367pt;}
.yb4{bottom:750.026367pt;}
.yd{bottom:758.506363pt;}
.y7e{bottom:761.866362pt;}
.y37{bottom:767.146360pt;}
.y5d{bottom:769.226359pt;}
.yb3{bottom:781.066354pt;}
.y36{bottom:788.426351pt;}
.yc{bottom:789.546351pt;}
.y5c{bottom:790.666350pt;}
.y7d{bottom:792.906350pt;}
.yb2{bottom:802.506346pt;}
.y35{bottom:809.866343pt;}
.yb{bottom:810.986342pt;}
.y5b{bottom:812.106342pt;}
.y7c{bottom:823.786337pt;}
.y34{bottom:831.306334pt;}
.ya{bottom:832.266334pt;}
.y5a{bottom:833.386333pt;}
.y33{bottom:852.586326pt;}
.y59{bottom:854.826325pt;}
.y9{bottom:863.306321pt;}
.y32{bottom:874.026317pt;}
.y58{bottom:876.266316pt;}
.y7b{bottom:885.866312pt;}
.y8{bottom:894.346309pt;}
.y57{bottom:897.546308pt;}
.y31{bottom:905.066305pt;}
.y7a{bottom:907.146304pt;}
.y7{bottom:917.866300pt;}
.y30{bottom:926.346296pt;}
.y56{bottom:928.586295pt;}
.yb1{bottom:938.186291pt;}
.y2f{bottom:947.786288pt;}
.y5{bottom:950.026287pt;}
.y6{bottom:958.666283pt;}
.y55{bottom:959.626283pt;}
.y2e{bottom:969.226279pt;}
.y4{bottom:974.986277pt;}
.y79{bottom:980.906274pt;}
.y2d{bottom:990.506270pt;}
.y3{bottom:999.946267pt;}
.y2c{bottom:1011.946262pt;}
.y1{bottom:1061.866242pt;}
.h9{height:26.893114pt;}
.h6{height:42.900920pt;}
.h4{height:48.023418pt;}
.h7{height:50.584667pt;}
.h8{height:51.187480pt;}
.h1{height:53.145916pt;}
.h3{height:58.908726pt;}
.h5{height:64.031224pt;}
.h2{height:74.916533pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x11{left:94.559962pt;}
.x18{left:98.879960pt;}
.x12{left:106.239958pt;}
.x3{left:120.639952pt;}
.x5{left:131.039299pt;}
.x4{left:136.639945pt;}
.x6{left:139.359650pt;}
.x14{left:166.239934pt;}
.x1b{left:200.959920pt;}
.x1c{left:213.279915pt;}
.x15{left:227.199909pt;}
.x13{left:229.759908pt;}
.x16{left:240.479904pt;}
.x7{left:268.799892pt;}
.x8{left:276.479889pt;}
.x1{left:286.399885pt;}
.x9{left:305.759878pt;}
.xa{left:315.999874pt;}
.x1d{left:328.799868pt;}
.x17{left:329.759868pt;}
.x1a{left:377.599818pt;}
.x2{left:381.919829pt;}
.xb{left:420.479832pt;}
.xc{left:435.679826pt;}
.xd{left:532.319787pt;}
.xe{left:548.319781pt;}
.xf{left:645.919742pt;}
.x10{left:654.399738pt;}
.x19{left:698.879720pt;}
}

