
    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_757a151fa0267733c343c72a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_78475b643cee0f21f8b802d4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_4b957b2a841583e868d68b68.woff')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_73040de777c2b309b224c545.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b79cf65ebe1820735bd56395.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_c0815df0863a343ae00c9cec.woff')format("woff");}.ff6{font-family:ff6;line-height:0.862793;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_3c10449759e62e21c3546626.woff')format("woff");}.ff7{font-family:ff7;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;}
.m1{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);}
.m3{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);}
.m0{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.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:-95.759962px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.182645px;}
.ls4{letter-spacing:0.311800px;}
.ls2{letter-spacing:192.509323px;}
.ls1{letter-spacing:196.111122px;}
.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;}
}
.ws6{word-spacing:-20.327792px;}
.ws1{word-spacing:-20.015992px;}
.ws0{word-spacing:-14.939994px;}
.ws5{word-spacing:-13.505755px;}
.ws3{word-spacing:-13.410715px;}
.ws4{word-spacing:-8.786876px;}
.ws2{word-spacing:0.000000px;}
._1a{margin-left:-10.652819px;}
._29{margin-left:-2.513636px;}
._0{margin-left:-1.184223px;}
._1{width:1.130668px;}
._3{width:2.352364px;}
._e{width:3.581394px;}
._a{width:4.846792px;}
._16{width:6.610691px;}
._15{width:8.098605px;}
._1b{width:9.591915px;}
._10{width:10.616553px;}
._f{width:11.915448px;}
._1e{width:12.999430px;}
._c{width:14.180318px;}
._d{width:15.325918px;}
._22{width:16.353266px;}
._8{width:17.361060px;}
._9{width:18.840130px;}
._23{width:21.292450px;}
._1f{width:22.541286px;}
._14{width:23.895673px;}
._12{width:25.039011px;}
._b{width:26.182982px;}
._13{width:27.510487px;}
._2b{width:28.887923px;}
._27{width:29.993315px;}
._4{width:31.484605px;}
._2{width:32.638771px;}
._17{width:34.593401px;}
._18{width:35.664767px;}
._11{width:37.412918px;}
._19{width:38.491781px;}
._26{width:39.529396px;}
._2a{width:40.769360px;}
._2c{width:41.776160px;}
._2d{width:43.732225px;}
._25{width:47.213501px;}
._24{width:48.327541px;}
._2e{width:49.657555px;}
._21{width:50.692341px;}
._20{width:51.773865px;}
._1c{width:55.144287px;}
._1d{width:56.227779px;}
._31{width:59.682926px;}
._30{width:60.971584px;}
._6{width:64.834727px;}
._5{width:66.221226px;}
._7{width:141.311016px;}
._2f{width:172.493613px;}
._28{width:192.509203px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.879984px;}
.fs0{font-size:48.239981px;}
.fs1{font-size:59.759976px;}
.fs2{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y8{bottom:57.899977px;}
.y7{bottom:78.059969px;}
.y9c{bottom:119.459952px;}
.y2d{bottom:119.460252px;}
.y2c{bottom:127.020249px;}
.yf9{bottom:134.039946px;}
.y9b{bottom:137.819945px;}
.y50{bottom:137.820245px;}
.y4f{bottom:145.380242px;}
.y70{bottom:146.819941px;}
.y2b{bottom:147.360241px;}
.y9a{bottom:156.179938px;}
.y4e{bottom:156.719937px;}
.yf8{bottom:157.799937px;}
.y99{bottom:163.739935px;}
.y6f{bottom:165.179934px;}
.y6e{bottom:172.739931px;}
.yd4{bottom:175.079930px;}
.y98{bottom:183.359927px;}
.y6d{bottom:184.079926px;}
.y4d{bottom:184.259926px;}
.ye8{bottom:190.919924px;}
.ya6{bottom:192.359923px;}
.yf7{bottom:196.679921px;}
.ya5{bottom:199.919920px;}
.y2a{bottom:201.719919px;}
.y6c{bottom:205.319918px;}
.y4c{bottom:208.019917px;}
.y97{bottom:209.279916px;}
.yb6{bottom:210.719916px;}
.ya4{bottom:211.259915px;}
.yac{bottom:214.139914px;}
.ye7{bottom:218.279913px;}
.ycd{bottom:220.079912px;}
.yf6{bottom:220.439912px;}
.y96{bottom:229.079908px;}
.y6b{bottom:229.259908px;}
.y4b{bottom:231.779907px;}
.yab{bottom:238.079905px;}
.ycc{bottom:238.439905px;}
.y29{bottom:240.599904px;}
.yd3{bottom:241.679903px;}
.yf5{bottom:244.199902px;}
.ye6{bottom:245.639902px;}
.ycb{bottom:245.999902px;}
.y95{bottom:247.439901px;}
.ya3{bottom:250.319900px;}
.y6a{bottom:253.019899px;}
.y94{bottom:254.999898px;}
.y4a{bottom:255.539898px;}
.yd0{bottom:257.339897px;}
.y28{bottom:264.359894px;}
.yd2{bottom:265.439894px;}
.yca{bottom:265.619894px;}
.y93{bottom:266.339893px;}
.yf4{bottom:267.959893px;}
.ye5{bottom:272.999891px;}
.y109{bottom:273.179891px;}
.ya2{bottom:274.259890px;}
.yb5{bottom:274.619890px;}
.y69{bottom:276.779889px;}
.yc9{bottom:283.979886px;}
.ycf{bottom:289.199884px;}
.yf3{bottom:291.719883px;}
.ye4{bottom:292.619883px;}
.yb4{bottom:292.979883px;}
.y49{bottom:294.419882px;}
.y108{bottom:296.939881px;}
.ya1{bottom:298.019881px;}
.ye3{bottom:300.179880px;}
.y68{bottom:300.539880px;}
.yc8{bottom:302.339879px;}
.y27{bottom:303.239879px;}
.yaa{bottom:308.819876px;}
.ye2{bottom:311.519875px;}
.yb3{bottom:311.879875px;}
.y91{bottom:312.959875px;}
.yf2{bottom:315.659874px;}
.y92{bottom:321.239872px;}
.ya0{bottom:321.779871px;}
.y67{bottom:324.479870px;}
.y26{bottom:326.999869px;}
.yc7{bottom:329.699868px;}
.y48{bottom:333.299867px;}
.y107{bottom:335.819866px;}
.y90{bottom:336.719865px;}
.yf1{bottom:339.419864px;}
.ye1{bottom:345.539862px;}
.yc6{bottom:347.879861px;}
.y66{bottom:348.239861px;}
.y25{bottom:350.759860px;}
.yc5{bottom:355.439858px;}
.y47{bottom:357.059857px;}
.y106{bottom:359.579856px;}
.y8f{bottom:360.659856px;}
.yf0{bottom:363.179855px;}
.ye0{bottom:369.479852px;}
.y65{bottom:371.999851px;}
.yc4{bottom:375.239850px;}
.y46{bottom:380.819848px;}
.yc3{bottom:382.799847px;}
.y105{bottom:383.519847px;}
.y8e{bottom:384.419846px;}
.y24{bottom:389.639844px;}
.ydf{bottom:393.239843px;}
.yc2{bottom:394.139842px;}
.y64{bottom:395.759842px;}
.yef{bottom:402.059839px;}
.y45{bottom:404.579838px;}
.y8d{bottom:408.179837px;}
.y23{bottom:413.399835px;}
.yde{bottom:416.999833px;}
.y63{bottom:419.699832px;}
.y104{bottom:422.219831px;}
.yc0{bottom:425.819830px;}
.y44{bottom:428.519829px;}
.y8c{bottom:431.939827px;}
.yc1{bottom:434.099826px;}
.y22{bottom:437.159825px;}
.ydd{bottom:440.759824px;}
.y62{bottom:443.459823px;}
.y103{bottom:445.979822px;}
.ybf{bottom:449.579820px;}
.y43{bottom:452.279819px;}
.y8a{bottom:455.879818px;}
.y21{bottom:461.099816px;}
.y8b{bottom:464.159814px;}
.ydc{bottom:464.699814px;}
.y61{bottom:467.219813px;}
.y102{bottom:469.919812px;}
.ybe{bottom:473.519811px;}
.y89{bottom:479.639808px;}
.y20{bottom:484.859806px;}
.y9f{bottom:487.919805px;}
.ydb{bottom:488.459805px;}
.y42{bottom:490.979804px;}
.y101{bottom:493.679803px;}
.ybd{bottom:497.279801px;}
.yb2{bottom:499.259800px;}
.y88{bottom:503.399799px;}
.y1f{bottom:508.619797px;}
.yd1{bottom:511.679795px;}
.yda{bottom:512.219795px;}
.y41{bottom:514.919794px;}
.ybc{bottom:521.039792px;}
.ya9{bottom:523.199791px;}
.y87{bottom:527.159789px;}
.y60{bottom:529.859788px;}
.y100{bottom:532.379787px;}
.yd9{bottom:535.979786px;}
.y40{bottom:538.679785px;}
.ybb{bottom:544.799782px;}
.y1e{bottom:547.499781px;}
.y86{bottom:551.099780px;}
.yff{bottom:556.319777px;}
.yd8{bottom:559.919776px;}
.y3f{bottom:562.439775px;}
.y5e{bottom:568.559773px;}
.yb1{bottom:570.719772px;}
.y1d{bottom:571.259771px;}
.y85{bottom:574.859770px;}
.y5f{bottom:576.839769px;}
.yd7{bottom:583.679767px;}
.y3e{bottom:586.199766px;}
.y5d{bottom:592.499763px;}
.y1c{bottom:595.019762px;}
.y84{bottom:598.619761px;}
.ya8{bottom:601.319759px;}
.y3d{bottom:610.139756px;}
.y5c{bottom:616.259753px;}
.y1b{bottom:618.779752px;}
.yfe{bottom:618.959752px;}
.y83{bottom:622.379751px;}
.yba{bottom:624.539750px;}
.ya7{bottom:625.079750px;}
.y5a{bottom:640.019744px;}
.yfd{bottom:642.899743px;}
.y82{bottom:646.319741px;}
.y5b{bottom:648.299741px;}
.y3c{bottom:648.839740px;}
.y1a{bottom:657.659737px;}
.y59{bottom:663.779734px;}
.y81{bottom:670.079732px;}
.y3b{bottom:672.599731px;}
.yd6{bottom:678.359729px;}
.yee{bottom:678.899728px;}
.y19{bottom:681.419727px;}
.yfc{bottom:681.599727px;}
.y58{bottom:687.719725px;}
.y80{bottom:693.839722px;}
.y3a{bottom:696.539721px;}
.yce{bottom:702.119719px;}
.yed{bottom:702.659719px;}
.y18{bottom:705.179718px;}
.yfb{bottom:705.359718px;}
.y57{bottom:711.479715px;}
.y7f{bottom:717.599713px;}
.y39{bottom:720.299712px;}
.y9e{bottom:725.879710px;}
.yec{bottom:726.419709px;}
.y17{bottom:729.119708px;}
.y56{bottom:735.239706px;}
.y7e{bottom:741.539703px;}
.y38{bottom:744.059702px;}
.yd5{bottom:749.819700px;}
.yeb{bottom:750.179700px;}
.y16{bottom:752.879699px;}
.y55{bottom:758.999696px;}
.y7d{bottom:765.299694px;}
.y37{bottom:767.819693px;}
.y9d{bottom:773.579691px;}
.yea{bottom:774.119690px;}
.y15{bottom:776.639689px;}
.y54{bottom:782.939687px;}
.y7c{bottom:789.059684px;}
.yfa{bottom:791.759683px;}
.yb9{bottom:797.879681px;}
.y36{bottom:806.699677px;}
.y7b{bottom:812.819675px;}
.y14{bottom:815.519674px;}
.ye9{bottom:821.639671px;}
.y35{bottom:830.459668px;}
.y7a{bottom:836.759665px;}
.y13{bottom:839.279664px;}
.y53{bottom:845.399662px;}
.y34{bottom:854.219658px;}
.y79{bottom:860.519656px;}
.y12{bottom:863.039655px;}
.y52{bottom:869.339652px;}
.y33{bottom:878.159649px;}
.y78{bottom:884.279646px;}
.y11{bottom:886.799645px;}
.yb8{bottom:892.559643px;}
.y51{bottom:893.099643px;}
.yb0{bottom:901.919639px;}
.y77{bottom:908.039637px;}
.y32{bottom:916.859633px;}
.y10{bottom:925.679630px;}
.y75{bottom:931.799627px;}
.y76{bottom:940.079624px;}
.y31{bottom:940.619624px;}
.yaf{bottom:949.439620px;}
.y74{bottom:955.739618px;}
.yf{bottom:964.559614px;}
.yae{bottom:973.379611px;}
.y73{bottom:979.499608px;}
.ye{bottom:988.319605px;}
.y72{bottom:1003.259599px;}
.yd{bottom:1012.079595px;}
.y71{bottom:1027.019589px;}
.y2f{bottom:1035.839586px;}
.y30{bottom:1044.119582px;}
.yb{bottom:1050.959580px;}
.yc{bottom:1059.239576px;}
.y2e{bottom:1059.779576px;}
.ya{bottom:1074.719570px;}
.yb7{bottom:1082.999567px;}
.y9{bottom:1098.479561px;}
.yad{bottom:1106.759557px;}
.y6{bottom:1119.899552px;}
.y5{bottom:1138.799544px;}
.y4{bottom:1157.519537px;}
.y3{bottom:1171.559531px;}
.y2{bottom:1185.239526px;}
.y1{bottom:1199.099520px;}
.h6{height:27.907020px;}
.h8{height:42.894123px;}
.h1{height:47.344903px;}
.h3{height:47.545293px;}
.h5{height:50.312792px;}
.h2{height:60.226851px;}
.h7{height:62.327788px;}
.h4{height:75.093720px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:127.619949px;}
.xa{left:132.479947px;}
.x1c{left:137.339945px;}
.x2{left:153.179958px;}
.x1d{left:154.620498px;}
.xb{left:180.719928px;}
.x30{left:183.599927px;}
.x3e{left:186.659925px;}
.x31{left:196.919921px;}
.x2b{left:198.719921px;}
.x23{left:200.699920px;}
.x25{left:203.579919px;}
.x12{left:207.719886px;}
.x10{left:211.679915px;}
.x24{left:214.019914px;}
.x26{left:216.899913px;}
.x11{left:218.339913px;}
.x1b{left:221.039912px;}
.x4{left:223.559445px;}
.x36{left:224.999910px;}
.x2c{left:254.339898px;}
.x5{left:256.139898px;}
.x2e{left:257.759897px;}
.x3{left:264.779425px;}
.x2d{left:267.659893px;}
.x2f{left:271.079892px;}
.x1{left:284.579886px;}
.x19{left:305.639878px;}
.x1a{left:312.299875px;}
.x3c{left:345.599862px;}
.x3d{left:358.919856px;}
.x17{left:394.379842px;}
.x18{left:401.039840px;}
.x1e{left:406.799837px;}
.x15{left:419.039832px;}
.x1f{left:420.119832px;}
.x16{left:425.699830px;}
.x20{left:442.799823px;}
.x13{left:449.459820px;}
.x14{left:456.119818px;}
.x8{left:465.659814px;}
.x9{left:472.319811px;}
.x27{left:541.799783px;}
.x28{left:555.119778px;}
.xe{left:558.719777px;}
.xf{left:565.379774px;}
.x3a{left:575.819770px;}
.xc{left:586.619765px;}
.x3b{left:589.139764px;}
.xd{left:593.279763px;}
.x35{left:600.479760px;}
.x39{left:606.959757px;}
.x29{left:617.039753px;}
.x32{left:620.639752px;}
.x2a{left:630.359748px;}
.x33{left:633.959746px;}
.x21{left:655.379738px;}
.x22{left:668.699733px;}
.x37{left:711.719715px;}
.x38{left:725.039710px;}
.x34{left:748.620120px;}
.x7{left:757.079555px;}
@media print{
.v1{vertical-align:-85.119966pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.162351pt;}
.ls4{letter-spacing:0.277156pt;}
.ls2{letter-spacing:171.119398pt;}
.ls1{letter-spacing:174.320997pt;}
.ws6{word-spacing:-18.069149pt;}
.ws1{word-spacing:-17.791993pt;}
.ws0{word-spacing:-13.279995pt;}
.ws5{word-spacing:-12.005115pt;}
.ws3{word-spacing:-11.920635pt;}
.ws4{word-spacing:-7.810557pt;}
.ws2{word-spacing:0.000000pt;}
._1a{margin-left:-9.469173pt;}
._29{margin-left:-2.234344pt;}
._0{margin-left:-1.052643pt;}
._1{width:1.005038pt;}
._3{width:2.090990pt;}
._e{width:3.183462pt;}
._a{width:4.308259pt;}
._16{width:5.876169pt;}
._15{width:7.198760pt;}
._1b{width:8.526146pt;}
._10{width:9.436936pt;}
._f{width:10.591510pt;}
._1e{width:11.555049pt;}
._c{width:12.604727pt;}
._d{width:13.623039pt;}
._22{width:14.536237pt;}
._8{width:15.432053pt;}
._9{width:16.746782pt;}
._23{width:18.926622pt;}
._1f{width:20.036699pt;}
._14{width:21.240598pt;}
._12{width:22.256899pt;}
._b{width:23.273762pt;}
._13{width:24.453767pt;}
._2b{width:25.678154pt;}
._27{width:26.660725pt;}
._4{width:27.986315pt;}
._2{width:29.012241pt;}
._17{width:30.749689pt;}
._18{width:31.702015pt;}
._11{width:33.255927pt;}
._19{width:34.214916pt;}
._26{width:35.137241pt;}
._2a{width:36.239431pt;}
._2c{width:37.134364pt;}
._2d{width:38.873088pt;}
._25{width:41.967557pt;}
._24{width:42.957814pt;}
._2e{width:44.140049pt;}
._21{width:45.059859pt;}
._20{width:46.021214pt;}
._1c{width:49.017144pt;}
._1d{width:49.980248pt;}
._31{width:53.051490pt;}
._30{width:54.196964pt;}
._6{width:57.630868pt;}
._5{width:58.863312pt;}
._7{width:125.609792pt;}
._2f{width:153.327656pt;}
._28{width:171.119292pt;}
.fs4{font-size:34.559986pt;}
.fs0{font-size:42.879983pt;}
.fs1{font-size:53.119979pt;}
.fs2{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:51.466646pt;}
.y7{bottom:69.386639pt;}
.y9c{bottom:106.186624pt;}
.y2d{bottom:106.186891pt;}
.y2c{bottom:112.906888pt;}
.yf9{bottom:119.146619pt;}
.y9b{bottom:122.506618pt;}
.y50{bottom:122.506884pt;}
.y4f{bottom:129.226882pt;}
.y70{bottom:130.506614pt;}
.y2b{bottom:130.986881pt;}
.y9a{bottom:138.826611pt;}
.y4e{bottom:139.306611pt;}
.yf8{bottom:140.266611pt;}
.y99{bottom:145.546608pt;}
.y6f{bottom:146.826608pt;}
.y6e{bottom:153.546605pt;}
.yd4{bottom:155.626604pt;}
.y98{bottom:162.986601pt;}
.y6d{bottom:163.626601pt;}
.y4d{bottom:163.786601pt;}
.ye8{bottom:169.706599pt;}
.ya6{bottom:170.986598pt;}
.yf7{bottom:174.826597pt;}
.ya5{bottom:177.706596pt;}
.y2a{bottom:179.306595pt;}
.y6c{bottom:182.506594pt;}
.y4c{bottom:184.906593pt;}
.y97{bottom:186.026592pt;}
.yb6{bottom:187.306592pt;}
.ya4{bottom:187.786592pt;}
.yac{bottom:190.346591pt;}
.ye7{bottom:194.026589pt;}
.ycd{bottom:195.626588pt;}
.yf6{bottom:195.946588pt;}
.y96{bottom:203.626585pt;}
.y6b{bottom:203.786585pt;}
.y4b{bottom:206.026584pt;}
.yab{bottom:211.626582pt;}
.ycc{bottom:211.946582pt;}
.y29{bottom:213.866581pt;}
.yd3{bottom:214.826581pt;}
.yf5{bottom:217.066580pt;}
.ye6{bottom:218.346579pt;}
.ycb{bottom:218.666579pt;}
.y95{bottom:219.946579pt;}
.ya3{bottom:222.506578pt;}
.y6a{bottom:224.906577pt;}
.y94{bottom:226.666576pt;}
.y4a{bottom:227.146576pt;}
.yd0{bottom:228.746575pt;}
.y28{bottom:234.986573pt;}
.yd2{bottom:235.946572pt;}
.yca{bottom:236.106572pt;}
.y93{bottom:236.746572pt;}
.yf4{bottom:238.186571pt;}
.ye5{bottom:242.666570pt;}
.y109{bottom:242.826570pt;}
.ya2{bottom:243.786569pt;}
.yb5{bottom:244.106569pt;}
.y69{bottom:246.026568pt;}
.yc9{bottom:252.426566pt;}
.ycf{bottom:257.066564pt;}
.yf3{bottom:259.306563pt;}
.ye4{bottom:260.106563pt;}
.yb4{bottom:260.426562pt;}
.y49{bottom:261.706562pt;}
.y108{bottom:263.946561pt;}
.ya1{bottom:264.906561pt;}
.ye3{bottom:266.826560pt;}
.y68{bottom:267.146560pt;}
.yc8{bottom:268.746559pt;}
.y27{bottom:269.546559pt;}
.yaa{bottom:274.506557pt;}
.ye2{bottom:276.906556pt;}
.yb3{bottom:277.226556pt;}
.y91{bottom:278.186555pt;}
.yf2{bottom:280.586554pt;}
.y92{bottom:285.546552pt;}
.ya0{bottom:286.026552pt;}
.y67{bottom:288.426551pt;}
.y26{bottom:290.666550pt;}
.yc7{bottom:293.066549pt;}
.y48{bottom:296.266548pt;}
.y107{bottom:298.506547pt;}
.y90{bottom:299.306547pt;}
.yf1{bottom:301.706546pt;}
.ye1{bottom:307.146544pt;}
.yc6{bottom:309.226543pt;}
.y66{bottom:309.546543pt;}
.y25{bottom:311.786542pt;}
.yc5{bottom:315.946540pt;}
.y47{bottom:317.386540pt;}
.y106{bottom:319.626539pt;}
.y8f{bottom:320.586538pt;}
.yf0{bottom:322.826538pt;}
.ye0{bottom:328.426535pt;}
.y65{bottom:330.666534pt;}
.yc4{bottom:333.546533pt;}
.y46{bottom:338.506531pt;}
.yc3{bottom:340.266531pt;}
.y105{bottom:340.906530pt;}
.y8e{bottom:341.706530pt;}
.y24{bottom:346.346528pt;}
.ydf{bottom:349.546527pt;}
.yc2{bottom:350.346527pt;}
.y64{bottom:351.786526pt;}
.yef{bottom:357.386524pt;}
.y45{bottom:359.626523pt;}
.y8d{bottom:362.826522pt;}
.y23{bottom:367.466520pt;}
.yde{bottom:370.666518pt;}
.y63{bottom:373.066517pt;}
.y104{bottom:375.306517pt;}
.yc0{bottom:378.506515pt;}
.y44{bottom:380.906514pt;}
.y8c{bottom:383.946513pt;}
.yc1{bottom:385.866512pt;}
.y22{bottom:388.586511pt;}
.ydd{bottom:391.786510pt;}
.y62{bottom:394.186509pt;}
.y103{bottom:396.426508pt;}
.ybf{bottom:399.626507pt;}
.y43{bottom:402.026506pt;}
.y8a{bottom:405.226505pt;}
.y21{bottom:409.866503pt;}
.y8b{bottom:412.586502pt;}
.ydc{bottom:413.066501pt;}
.y61{bottom:415.306501pt;}
.y102{bottom:417.706500pt;}
.ybe{bottom:420.906498pt;}
.y89{bottom:426.346496pt;}
.y20{bottom:430.986494pt;}
.y9f{bottom:433.706493pt;}
.ydb{bottom:434.186493pt;}
.y42{bottom:436.426492pt;}
.y101{bottom:438.826491pt;}
.ybd{bottom:442.026490pt;}
.yb2{bottom:443.786489pt;}
.y88{bottom:447.466488pt;}
.y1f{bottom:452.106486pt;}
.yd1{bottom:454.826485pt;}
.yda{bottom:455.306485pt;}
.y41{bottom:457.706484pt;}
.ybc{bottom:463.146481pt;}
.ya9{bottom:465.066481pt;}
.y87{bottom:468.586479pt;}
.y60{bottom:470.986478pt;}
.y100{bottom:473.226477pt;}
.yd9{bottom:476.426476pt;}
.y40{bottom:478.826475pt;}
.ybb{bottom:484.266473pt;}
.y1e{bottom:486.666472pt;}
.y86{bottom:489.866471pt;}
.yff{bottom:494.506469pt;}
.yd8{bottom:497.706468pt;}
.y3f{bottom:499.946467pt;}
.y5e{bottom:505.386465pt;}
.yb1{bottom:507.306464pt;}
.y1d{bottom:507.786464pt;}
.y85{bottom:510.986462pt;}
.y5f{bottom:512.746462pt;}
.yd7{bottom:518.826459pt;}
.y3e{bottom:521.066458pt;}
.y5d{bottom:526.666456pt;}
.y1c{bottom:528.906455pt;}
.y84{bottom:532.106454pt;}
.ya8{bottom:534.506453pt;}
.y3d{bottom:542.346450pt;}
.y5c{bottom:547.786448pt;}
.y1b{bottom:550.026447pt;}
.yfe{bottom:550.186447pt;}
.y83{bottom:553.226445pt;}
.yba{bottom:555.146445pt;}
.ya7{bottom:555.626444pt;}
.y5a{bottom:568.906439pt;}
.yfd{bottom:571.466438pt;}
.y82{bottom:574.506437pt;}
.y5b{bottom:576.266436pt;}
.y3c{bottom:576.746436pt;}
.y1a{bottom:584.586433pt;}
.y59{bottom:590.026431pt;}
.y81{bottom:595.626428pt;}
.y3b{bottom:597.866428pt;}
.yd6{bottom:602.986425pt;}
.yee{bottom:603.466425pt;}
.y19{bottom:605.706424pt;}
.yfc{bottom:605.866424pt;}
.y58{bottom:611.306422pt;}
.y80{bottom:616.746420pt;}
.y3a{bottom:619.146419pt;}
.yce{bottom:624.106417pt;}
.yed{bottom:624.586417pt;}
.y18{bottom:626.826416pt;}
.yfb{bottom:626.986416pt;}
.y57{bottom:632.426414pt;}
.y7f{bottom:637.866412pt;}
.y39{bottom:640.266411pt;}
.y9e{bottom:645.226409pt;}
.yec{bottom:645.706408pt;}
.y17{bottom:648.106407pt;}
.y56{bottom:653.546405pt;}
.y7e{bottom:659.146403pt;}
.y38{bottom:661.386402pt;}
.yd5{bottom:666.506400pt;}
.yeb{bottom:666.826400pt;}
.y16{bottom:669.226399pt;}
.y55{bottom:674.666397pt;}
.y7d{bottom:680.266395pt;}
.y37{bottom:682.506394pt;}
.y9d{bottom:687.626392pt;}
.yea{bottom:688.106391pt;}
.y15{bottom:690.346391pt;}
.y54{bottom:695.946388pt;}
.y7c{bottom:701.386386pt;}
.yfa{bottom:703.786385pt;}
.yb9{bottom:709.226383pt;}
.y36{bottom:717.066380pt;}
.y7b{bottom:722.506378pt;}
.y14{bottom:724.906377pt;}
.ye9{bottom:730.346375pt;}
.y35{bottom:738.186371pt;}
.y7a{bottom:743.786369pt;}
.y13{bottom:746.026368pt;}
.y53{bottom:751.466366pt;}
.y34{bottom:759.306363pt;}
.y79{bottom:764.906361pt;}
.y12{bottom:767.146360pt;}
.y52{bottom:772.746358pt;}
.y33{bottom:780.586354pt;}
.y78{bottom:786.026352pt;}
.y11{bottom:788.266351pt;}
.yb8{bottom:793.386349pt;}
.y51{bottom:793.866349pt;}
.yb0{bottom:801.706346pt;}
.y77{bottom:807.146344pt;}
.y32{bottom:814.986341pt;}
.y10{bottom:822.826338pt;}
.y75{bottom:828.266335pt;}
.y76{bottom:835.626332pt;}
.y31{bottom:836.106332pt;}
.yaf{bottom:843.946329pt;}
.y74{bottom:849.546327pt;}
.yf{bottom:857.386324pt;}
.yae{bottom:865.226321pt;}
.y73{bottom:870.666318pt;}
.ye{bottom:878.506315pt;}
.y72{bottom:891.786310pt;}
.yd{bottom:899.626307pt;}
.y71{bottom:912.906302pt;}
.y2f{bottom:920.746298pt;}
.y30{bottom:928.106295pt;}
.yb{bottom:934.186293pt;}
.yc{bottom:941.546290pt;}
.y2e{bottom:942.026290pt;}
.ya{bottom:955.306285pt;}
.yb7{bottom:962.666282pt;}
.y9{bottom:976.426276pt;}
.yad{bottom:983.786273pt;}
.y6{bottom:995.466268pt;}
.y5{bottom:1012.266262pt;}
.y4{bottom:1028.906255pt;}
.y3{bottom:1041.386250pt;}
.y2{bottom:1053.546245pt;}
.y1{bottom:1065.866240pt;}
.h6{height:24.806240pt;}
.h8{height:38.128110pt;}
.h1{height:42.084358pt;}
.h3{height:42.262483pt;}
.h5{height:44.722482pt;}
.h2{height:53.534979pt;}
.h7{height:55.402478pt;}
.h4{height:66.749973pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:113.439955pt;}
.xa{left:117.759953pt;}
.x1c{left:122.079951pt;}
.x2{left:136.159963pt;}
.x1d{left:137.440443pt;}
.xb{left:160.639936pt;}
.x30{left:163.199935pt;}
.x3e{left:165.919934pt;}
.x31{left:175.039930pt;}
.x2b{left:176.639929pt;}
.x23{left:178.399929pt;}
.x25{left:180.959928pt;}
.x12{left:184.639899pt;}
.x10{left:188.159925pt;}
.x24{left:190.239924pt;}
.x26{left:192.799923pt;}
.x11{left:194.079922pt;}
.x1b{left:196.479921pt;}
.x4{left:198.719507pt;}
.x36{left:199.999920pt;}
.x2c{left:226.079910pt;}
.x5{left:227.679909pt;}
.x2e{left:229.119908pt;}
.x3{left:235.359489pt;}
.x2d{left:237.919905pt;}
.x2f{left:240.959904pt;}
.x1{left:252.959899pt;}
.x19{left:271.679891pt;}
.x1a{left:277.599889pt;}
.x3c{left:307.199877pt;}
.x3d{left:319.039872pt;}
.x17{left:350.559860pt;}
.x18{left:356.479857pt;}
.x1e{left:361.599855pt;}
.x15{left:372.479851pt;}
.x1f{left:373.439851pt;}
.x16{left:378.399849pt;}
.x20{left:393.599843pt;}
.x13{left:399.519840pt;}
.x14{left:405.439838pt;}
.x8{left:413.919834pt;}
.x9{left:419.839832pt;}
.x27{left:481.599807pt;}
.x28{left:493.439803pt;}
.xe{left:496.639801pt;}
.xf{left:502.559799pt;}
.x3a{left:511.839795pt;}
.xc{left:521.439791pt;}
.x3b{left:523.679791pt;}
.xd{left:527.359789pt;}
.x35{left:533.759786pt;}
.x39{left:539.519784pt;}
.x29{left:548.479781pt;}
.x32{left:551.679779pt;}
.x2a{left:560.319776pt;}
.x33{left:563.519775pt;}
.x21{left:582.559767pt;}
.x22{left:594.399762pt;}
.x37{left:632.639747pt;}
.x38{left:644.479742pt;}
.x34{left:665.440107pt;}
.x7{left:672.959604pt;}
}

