
    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_5e80ba783875f74c3e665cfd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.687500;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c3aebbd13a648b02c3ec48dd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.835938;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_e2662c31903e6e61061167a9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_edcc7d61cb50bab736287c6f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4da3c21cfef813c3be47e3b8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.996582;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_b6d36276ab50407d041be2a6.woff')format("woff");}.ff8{font-family:ff8;line-height:1.239258;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;}
.m6{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,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);}
.m1{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);}
.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);}
.m4{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.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);}
.v1{vertical-align:-76.319969px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.040800px;}
.ls0{letter-spacing:0.153901px;}
.ls4{letter-spacing:0.251100px;}
.ls3{letter-spacing:22.327911px;}
.ls8{letter-spacing:60.510096px;}
.ls5{letter-spacing:69.154892px;}
.ls6{letter-spacing:69.875492px;}
.ls2{letter-spacing:89.650044px;}
.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;}
}
.ws0{word-spacing:-17.573753px;}
.ws2{word-spacing:-16.559993px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-1.263655px;}
._1{width:1.094119px;}
._1d{width:2.189223px;}
._12{width:3.190546px;}
._10{width:4.246450px;}
._f{width:5.401918px;}
._3{width:6.880332px;}
._4{width:7.930399px;}
._5{width:9.297367px;}
._6{width:10.664183px;}
._a{width:11.731867px;}
._11{width:12.787410px;}
._1f{width:13.953236px;}
._e{width:15.004675px;}
._d{width:16.322004px;}
._21{width:18.732778px;}
._c{width:20.413752px;}
._b{width:21.745175px;}
._1c{width:22.808062px;}
._16{width:24.890660px;}
._14{width:26.441935px;}
._13{width:27.849546px;}
._15{width:29.038534px;}
._8{width:30.550236px;}
._18{width:31.852816px;}
._20{width:33.411991px;}
._22{width:35.115792px;}
._1e{width:36.188212px;}
._25{width:38.103295px;}
._23{width:40.442327px;}
._7{width:50.569229px;}
._17{width:69.145011px;}
._27{width:70.601344px;}
._26{width:71.994977px;}
._24{width:109.933934px;}
._19{width:152.629271px;}
._2{width:158.467377px;}
._1b{width:211.960629px;}
._9{width:361.946015px;}
._0{width:2828.398869px;}
.fc1{color:transparent;}
.fc2{color:rgb(34,30,31);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.759998px;}
.fs5{font-size:12.239995px;}
.fs7{font-size:17.999993px;}
.fs4{font-size:48.239981px;}
.fs2{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.fs3{font-size:77.759969px;}
.y0{bottom:0.000000px;}
.y3{bottom:4.320037px;}
.y2{bottom:53.400240px;}
.y1{bottom:57.720277px;}
.y29{bottom:113.519955px;}
.y80{bottom:116.759953px;}
.ya0{bottom:130.799948px;}
.y69{bottom:135.299946px;}
.y4c{bottom:142.859943px;}
.y28{bottom:149.159940px;}
.y7f{bottom:152.579939px;}
.y9f{bottom:166.439933px;}
.ybb{bottom:168.419933px;}
.y68{bottom:170.939932px;}
.y4b{bottom:178.499929px;}
.y27{bottom:184.799926px;}
.y7e{bottom:188.219925px;}
.y9e{bottom:196.679921px;}
.yba{bottom:204.059918px;}
.y67{bottom:206.759917px;}
.y4a{bottom:214.319914px;}
.y26{bottom:220.619912px;}
.y7d{bottom:223.859910px;}
.y9d{bottom:225.119910px;}
.yb9{bottom:227.819909px;}
.y66{bottom:239.879904px;}
.y49{bottom:249.959900px;}
.yb8{bottom:251.759899px;}
.y25{bottom:256.259897px;}
.y7c{bottom:259.679896px;}
.y9c{bottom:260.759896px;}
.y65{bottom:272.639891px;}
.yb7{bottom:275.519890px;}
.y48{bottom:285.599886px;}
.y7b{bottom:289.919884px;}
.y9b{bottom:291.179884px;}
.y24{bottom:291.899883px;}
.yb6{bottom:299.279880px;}
.y64{bottom:308.279877px;}
.y7a{bottom:318.359873px;}
.y9a{bottom:319.619872px;}
.y47{bottom:321.419871px;}
.y23{bottom:327.719869px;}
.yb5{bottom:334.919866px;}
.y63{bottom:344.099862px;}
.y79{bottom:347.699861px;}
.y99{bottom:355.259858px;}
.y46{bottom:357.059857px;}
.y22{bottom:363.359855px;}
.yb4{bottom:370.739852px;}
.y62{bottom:379.739848px;}
.y78{bottom:384.599846px;}
.y98{bottom:391.079844px;}
.y45{bottom:392.879843px;}
.y21{bottom:399.179840px;}
.yb3{bottom:406.379837px;}
.y61{bottom:415.379834px;}
.y77{bottom:420.419832px;}
.y97{bottom:426.719829px;}
.y44{bottom:428.519829px;}
.y20{bottom:434.819826px;}
.yb2{bottom:442.019823px;}
.y60{bottom:451.199820px;}
.y76{bottom:456.059818px;}
.y96{bottom:456.959817px;}
.y43{bottom:464.159814px;}
.y1f{bottom:470.459812px;}
.yb1{bottom:477.839809px;}
.y5f{bottom:484.319806px;}
.y95{bottom:485.399806px;}
.y75{bottom:491.699803px;}
.y42{bottom:499.979800px;}
.yb0{bottom:501.239800px;}
.y1e{bottom:504.839798px;}
.y5e{bottom:517.079793px;}
.y94{bottom:521.219792px;}
.yaf{bottom:521.759791px;}
.y74{bottom:525.359790px;}
.y41{bottom:535.619786px;}
.y1d{bottom:539.219784px;}
.y5d{bottom:552.719779px;}
.yae{bottom:554.519778px;}
.y93{bottom:556.859777px;}
.y73{bottom:558.299777px;}
.y40{bottom:571.259771px;}
.y1c{bottom:574.859770px;}
.y92{bottom:587.099765px;}
.y5c{bottom:588.539765px;}
.yad{bottom:590.159764px;}
.y72{bottom:591.599763px;}
.y3f{bottom:607.079757px;}
.y1b{bottom:610.679756px;}
.y91{bottom:615.539754px;}
.y5b{bottom:624.179750px;}
.yac{bottom:626.159750px;}
.y3e{bottom:634.439746px;}
.y1a{bottom:646.319741px;}
.y90{bottom:651.179740px;}
.y5a{bottom:659.819736px;}
.yab{bottom:661.799735px;}
.y3d{bottom:670.079732px;}
.y19{bottom:681.959727px;}
.y8f{bottom:686.999725px;}
.y59{bottom:695.639722px;}
.yaa{bottom:697.619721px;}
.y3c{bottom:705.899718px;}
.y18{bottom:717.779713px;}
.y8e{bottom:722.639711px;}
.y71{bottom:728.759708px;}
.y58{bottom:731.279707px;}
.ya9{bottom:733.439707px;}
.y3b{bottom:741.539703px;}
.y17{bottom:753.419699px;}
.y8d{bottom:758.459697px;}
.y70{bottom:761.519695px;}
.y57{bottom:766.919693px;}
.ya8{bottom:769.079692px;}
.y3a{bottom:774.299690px;}
.y16{bottom:782.579687px;}
.y8c{bottom:794.099682px;}
.y6f{bottom:797.159681px;}
.y56{bottom:800.219680px;}
.ya7{bottom:804.719678px;}
.y39{bottom:808.319677px;}
.y15{bottom:811.019676px;}
.y8b{bottom:829.739668px;}
.y38{bottom:831.179668px;}
.y14{bottom:832.979667px;}
.ya6{bottom:840.719664px;}
.y13{bottom:848.999660px;}
.y37{bottom:851.159660px;}
.y8a{bottom:859.979656px;}
.y55{bottom:868.619653px;}
.y12{bottom:869.159652px;}
.ya5{bottom:876.359649px;}
.y89{bottom:888.419645px;}
.y36{bottom:889.319644px;}
.y11{bottom:889.499644px;}
.y54{bottom:904.259638px;}
.y35{bottom:909.479636px;}
.y10{bottom:911.459635px;}
.ya4{bottom:912.179635px;}
.y88{bottom:924.239630px;}
.yf{bottom:929.459628px;}
.y34{bottom:931.439627px;}
.ye{bottom:937.019625px;}
.y53{bottom:940.079624px;}
.ya3{bottom:947.999621px;}
.y33{bottom:948.899620px;}
.y87{bottom:954.479618px;}
.y32{bottom:955.019618px;}
.yd{bottom:959.699616px;}
.y6e{bottom:973.379611px;}
.y52{bottom:975.719610px;}
.yc{bottom:979.859608px;}
.y86{bottom:982.919607px;}
.ya2{bottom:983.819606px;}
.y31{bottom:985.259606px;}
.y6d{bottom:1005.959598px;}
.yb{bottom:1007.219597px;}
.y51{bottom:1011.359595px;}
.ya1{bottom:1013.159595px;}
.y30{bottom:1017.839593px;}
.y85{bottom:1018.559593px;}
.ya{bottom:1034.579586px;}
.y6c{bottom:1041.599583px;}
.y50{bottom:1047.179581px;}
.y2f{bottom:1053.479579px;}
.y84{bottom:1054.379578px;}
.y9{bottom:1057.799577px;}
.y2e{bottom:1076.699569px;}
.y6b{bottom:1077.419569px;}
.y8{bottom:1077.959569px;}
.y4f{bottom:1082.819567px;}
.y83{bottom:1090.019564px;}
.y2d{bottom:1096.859561px;}
.y7{bottom:1097.399561px;}
.y6a{bottom:1113.059555px;}
.y6{bottom:1115.759554px;}
.y4e{bottom:1116.119554px;}
.y2c{bottom:1116.479553px;}
.y82{bottom:1125.659550px;}
.y5{bottom:1134.119546px;}
.y2b{bottom:1134.839546px;}
.y4d{bottom:1148.699541px;}
.y4{bottom:1152.119539px;}
.y2a{bottom:1153.019539px;}
.y81{bottom:1155.899538px;}
.ha{height:4.750311px;}
.h9{height:10.094410px;}
.hf{height:14.844721px;}
.h2{height:20.520000px;}
.h10{height:35.096470px;}
.h7{height:39.783851px;}
.hb{height:44.149201px;}
.he{height:48.192168px;}
.h1{height:48.656231px;}
.h4{height:49.284472px;}
.h5{height:54.628572px;}
.h8{height:59.378882px;}
.h6{height:64.129193px;}
.h3{height:69.086222px;}
.hd{height:75.093720px;}
.hc{height:81.101218px;}
.h0{height:1263.000000px;}
.w1{width:0.180000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:86.399965px;}
.x7{left:113.399955px;}
.xc{left:139.499944px;}
.xa{left:151.199940px;}
.xd{left:181.259927px;}
.x8{left:207.899943px;}
.xe{left:214.019914px;}
.x3{left:244.799902px;}
.x9{left:246.599901px;}
.x10{left:248.399901px;}
.xf{left:259.739896px;}
.x11{left:275.399023px;}
.x4{left:340.919310px;}
.x5{left:362.879310px;}
.x6{left:459.899816px;}
.xb{left:654.839738px;}
.x2{left:806.580000px;}
@media print{
.v1{vertical-align:-67.839973pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.036267pt;}
.ls0{letter-spacing:0.136801pt;}
.ls4{letter-spacing:0.223200pt;}
.ls3{letter-spacing:19.847032pt;}
.ls8{letter-spacing:53.786752pt;}
.ls5{letter-spacing:61.471015pt;}
.ls6{letter-spacing:62.111548pt;}
.ls2{letter-spacing:79.688928pt;}
.ws0{word-spacing:-15.621114pt;}
.ws2{word-spacing:-14.719994pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-1.123249pt;}
._1{width:0.972550pt;}
._1d{width:1.945976pt;}
._12{width:2.836041pt;}
._10{width:3.774622pt;}
._f{width:4.801705pt;}
._3{width:6.115851pt;}
._4{width:7.049243pt;}
._5{width:8.264326pt;}
._6{width:9.479274pt;}
._a{width:10.428327pt;}
._11{width:11.366587pt;}
._1f{width:12.402877pt;}
._e{width:13.337489pt;}
._d{width:14.508448pt;}
._21{width:16.651358pt;}
._c{width:18.145558pt;}
._b{width:19.329044pt;}
._1c{width:20.273833pt;}
._16{width:22.125032pt;}
._14{width:23.503942pt;}
._13{width:24.755152pt;}
._15{width:25.812030pt;}
._8{width:27.155765pt;}
._18{width:28.313614pt;}
._20{width:29.699547pt;}
._22{width:31.214038pt;}
._1e{width:32.167299pt;}
._25{width:33.869596pt;}
._23{width:35.948735pt;}
._7{width:44.950426pt;}
._17{width:61.462232pt;}
._27{width:62.756750pt;}
._26{width:63.995535pt;}
._24{width:97.719052pt;}
._19{width:135.670463pt;}
._2{width:140.859890pt;}
._1b{width:188.409448pt;}
._9{width:321.729791pt;}
._0{width:2514.132328pt;}
.fs6{font-size:5.119998pt;}
.fs5{font-size:10.879996pt;}
.fs7{font-size:15.999994pt;}
.fs4{font-size:42.879983pt;}
.fs2{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.fs3{font-size:69.119972pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.840033pt;}
.y2{bottom:47.466880pt;}
.y1{bottom:51.306913pt;}
.y29{bottom:100.906626pt;}
.y80{bottom:103.786625pt;}
.ya0{bottom:116.266620pt;}
.y69{bottom:120.266619pt;}
.y4c{bottom:126.986616pt;}
.y28{bottom:132.586614pt;}
.y7f{bottom:135.626612pt;}
.y9f{bottom:147.946607pt;}
.ybb{bottom:149.706607pt;}
.y68{bottom:151.946606pt;}
.y4b{bottom:158.666603pt;}
.y27{bottom:164.266601pt;}
.y7e{bottom:167.306600pt;}
.y9e{bottom:174.826597pt;}
.yba{bottom:181.386594pt;}
.y67{bottom:183.786593pt;}
.y4a{bottom:190.506590pt;}
.y26{bottom:196.106588pt;}
.y7d{bottom:198.986587pt;}
.y9d{bottom:200.106587pt;}
.yb9{bottom:202.506586pt;}
.y66{bottom:213.226581pt;}
.y49{bottom:222.186578pt;}
.yb8{bottom:223.786577pt;}
.y25{bottom:227.786576pt;}
.y7c{bottom:230.826574pt;}
.y9c{bottom:231.786574pt;}
.y65{bottom:242.346570pt;}
.yb7{bottom:244.906569pt;}
.y48{bottom:253.866565pt;}
.y7b{bottom:257.706564pt;}
.y9b{bottom:258.826563pt;}
.y24{bottom:259.466563pt;}
.yb6{bottom:266.026560pt;}
.y64{bottom:274.026557pt;}
.y7a{bottom:282.986553pt;}
.y9a{bottom:284.106553pt;}
.y47{bottom:285.706552pt;}
.y23{bottom:291.306550pt;}
.yb5{bottom:297.706548pt;}
.y63{bottom:305.866544pt;}
.y79{bottom:309.066543pt;}
.y99{bottom:315.786540pt;}
.y46{bottom:317.386540pt;}
.y22{bottom:322.986537pt;}
.yb4{bottom:329.546535pt;}
.y62{bottom:337.546532pt;}
.y78{bottom:341.866530pt;}
.y98{bottom:347.626528pt;}
.y45{bottom:349.226527pt;}
.y21{bottom:354.826525pt;}
.yb3{bottom:361.226522pt;}
.y61{bottom:369.226519pt;}
.y77{bottom:373.706517pt;}
.y97{bottom:379.306515pt;}
.y44{bottom:380.906514pt;}
.y20{bottom:386.506512pt;}
.yb2{bottom:392.906510pt;}
.y60{bottom:401.066506pt;}
.y76{bottom:405.386505pt;}
.y96{bottom:406.186504pt;}
.y43{bottom:412.586502pt;}
.y1f{bottom:418.186499pt;}
.yb1{bottom:424.746497pt;}
.y5f{bottom:430.506494pt;}
.y95{bottom:431.466494pt;}
.y75{bottom:437.066492pt;}
.y42{bottom:444.426489pt;}
.yb0{bottom:445.546488pt;}
.y1e{bottom:448.746487pt;}
.y5e{bottom:459.626483pt;}
.y94{bottom:463.306481pt;}
.yaf{bottom:463.786481pt;}
.y74{bottom:466.986480pt;}
.y41{bottom:476.106476pt;}
.y1d{bottom:479.306475pt;}
.y5d{bottom:491.306470pt;}
.yae{bottom:492.906470pt;}
.y93{bottom:494.986469pt;}
.y73{bottom:496.266468pt;}
.y40{bottom:507.786464pt;}
.y1c{bottom:510.986462pt;}
.y92{bottom:521.866458pt;}
.y5c{bottom:523.146457pt;}
.yad{bottom:524.586457pt;}
.y72{bottom:525.866456pt;}
.y3f{bottom:539.626451pt;}
.y1b{bottom:542.826450pt;}
.y91{bottom:547.146448pt;}
.y5b{bottom:554.826445pt;}
.yac{bottom:556.586444pt;}
.y3e{bottom:563.946441pt;}
.y1a{bottom:574.506437pt;}
.y90{bottom:578.826435pt;}
.y5a{bottom:586.506432pt;}
.yab{bottom:588.266431pt;}
.y3d{bottom:595.626428pt;}
.y19{bottom:606.186424pt;}
.y8f{bottom:610.666422pt;}
.y59{bottom:618.346419pt;}
.yaa{bottom:620.106419pt;}
.y3c{bottom:627.466416pt;}
.y18{bottom:638.026411pt;}
.y8e{bottom:642.346410pt;}
.y71{bottom:647.786408pt;}
.y58{bottom:650.026407pt;}
.ya9{bottom:651.946406pt;}
.y3b{bottom:659.146403pt;}
.y17{bottom:669.706399pt;}
.y8d{bottom:674.186397pt;}
.y70{bottom:676.906396pt;}
.y57{bottom:681.706394pt;}
.ya8{bottom:683.626393pt;}
.y3a{bottom:688.266391pt;}
.y16{bottom:695.626388pt;}
.y8c{bottom:705.866384pt;}
.y6f{bottom:708.586383pt;}
.y56{bottom:711.306382pt;}
.ya7{bottom:715.306381pt;}
.y39{bottom:718.506379pt;}
.y15{bottom:720.906378pt;}
.y8b{bottom:737.546372pt;}
.y38{bottom:738.826371pt;}
.y14{bottom:740.426370pt;}
.ya6{bottom:747.306368pt;}
.y13{bottom:754.666365pt;}
.y37{bottom:756.586364pt;}
.y8a{bottom:764.426361pt;}
.y55{bottom:772.106358pt;}
.y12{bottom:772.586358pt;}
.ya5{bottom:778.986355pt;}
.y89{bottom:789.706351pt;}
.y36{bottom:790.506350pt;}
.y11{bottom:790.666350pt;}
.y54{bottom:803.786345pt;}
.y35{bottom:808.426343pt;}
.y10{bottom:810.186343pt;}
.ya4{bottom:810.826342pt;}
.y88{bottom:821.546338pt;}
.yf{bottom:826.186336pt;}
.y34{bottom:827.946335pt;}
.ye{bottom:832.906334pt;}
.y53{bottom:835.626332pt;}
.ya3{bottom:842.666330pt;}
.y33{bottom:843.466329pt;}
.y87{bottom:848.426327pt;}
.y32{bottom:848.906327pt;}
.yd{bottom:853.066325pt;}
.y6e{bottom:865.226321pt;}
.y52{bottom:867.306320pt;}
.yc{bottom:870.986318pt;}
.y86{bottom:873.706317pt;}
.ya2{bottom:874.506317pt;}
.y31{bottom:875.786316pt;}
.y6d{bottom:894.186309pt;}
.yb{bottom:895.306309pt;}
.y51{bottom:898.986307pt;}
.ya1{bottom:900.586306pt;}
.y30{bottom:904.746305pt;}
.y85{bottom:905.386305pt;}
.ya{bottom:919.626299pt;}
.y6c{bottom:925.866296pt;}
.y50{bottom:930.826294pt;}
.y2f{bottom:936.426292pt;}
.y84{bottom:937.226292pt;}
.y9{bottom:940.266291pt;}
.y2e{bottom:957.066284pt;}
.y6b{bottom:957.706284pt;}
.y8{bottom:958.186283pt;}
.y4f{bottom:962.506282pt;}
.y83{bottom:968.906279pt;}
.y2d{bottom:974.986277pt;}
.y7{bottom:975.466276pt;}
.y6a{bottom:989.386271pt;}
.y6{bottom:991.786270pt;}
.y4e{bottom:992.106270pt;}
.y2c{bottom:992.426270pt;}
.y82{bottom:1000.586266pt;}
.y5{bottom:1008.106263pt;}
.y2b{bottom:1008.746263pt;}
.y4d{bottom:1021.066258pt;}
.y4{bottom:1024.106257pt;}
.y2a{bottom:1024.906257pt;}
.y81{bottom:1027.466256pt;}
.ha{height:4.222498pt;}
.h9{height:8.972809pt;}
.hf{height:13.195307pt;}
.h2{height:18.240000pt;}
.h10{height:31.196863pt;}
.h7{height:35.363423pt;}
.hb{height:39.243734pt;}
.he{height:42.837483pt;}
.h1{height:43.249983pt;}
.h4{height:43.808420pt;}
.h5{height:48.558731pt;}
.h8{height:52.781229pt;}
.h6{height:57.003727pt;}
.h3{height:61.409975pt;}
.hd{height:66.749973pt;}
.hc{height:72.089971pt;}
.h0{height:1122.666667pt;}
.w1{width:0.160000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:76.799969pt;}
.x7{left:100.799960pt;}
.xc{left:123.999950pt;}
.xa{left:134.399946pt;}
.xd{left:161.119936pt;}
.x8{left:184.799949pt;}
.xe{left:190.239924pt;}
.x3{left:217.599913pt;}
.x9{left:219.199912pt;}
.x10{left:220.799912pt;}
.xf{left:230.879908pt;}
.x11{left:244.799132pt;}
.x4{left:303.039387pt;}
.x5{left:322.559386pt;}
.x6{left:408.799836pt;}
.xb{left:582.079767pt;}
.x2{left:716.960000pt;}
}

