
    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_ca9ab590448081cffca6df8d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_111f6283d74fbd72f3ca1021.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_04978238c4589b3f9c06b43b.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_871bc5615b05db015bedf568.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_e1bca41faf05e707e19bffba.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9355e980729d2e2aefe85d08.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;}
.m5{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.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m0{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);}
.m3{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;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.010620px;}
.ls2{letter-spacing:0.010626px;}
.ls5{letter-spacing:0.016740px;}
.lsa{letter-spacing:0.737640px;}
.ls1{letter-spacing:28.246860px;}
.ls3{letter-spacing:34.015860px;}
.ls6{letter-spacing:54.910800px;}
.ls8{letter-spacing:54.946200px;}
.ls7{letter-spacing:59.397480px;}
.ls4{letter-spacing:64.268400px;}
.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;}
}
.ws5{word-spacing:-39.744000px;}
.ws4{word-spacing:-35.856000px;}
.ws2{word-spacing:-21.060000px;}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:-13.500000px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-1.180334px;}
._0{width:1.029918px;}
._2{width:2.139687px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc4{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y13{bottom:4.318500px;}
.yf{bottom:64.382700px;}
.y10{bottom:64.382850px;}
.ye{bottom:87.603450px;}
.yd{bottom:110.824200px;}
.yc{bottom:134.220750px;}
.yb{bottom:157.441500px;}
.ya{bottom:183.180750px;}
.y12{bottom:206.044500px;}
.y11{bottom:210.363000px;}
.y9{bottom:211.622100px;}
.yaf{bottom:229.980150px;}
.y7c{bottom:230.343750px;}
.yce{bottom:230.344500px;}
.y5f{bottom:235.202250px;}
.ycd{bottom:237.181500px;}
.yea{bottom:242.402700px;}
.ye8{bottom:243.123600px;}
.yae{bottom:247.265250px;}
.y7b{bottom:247.623000px;}
.ycc{bottom:248.343900px;}
.y121{bottom:248.525250px;}
.yf7{bottom:249.785250px;}
.y96{bottom:250.683150px;}
.y108{bottom:251.583900px;}
.y7a{bottom:254.461500px;}
.y127{bottom:260.766000px;}
.y2e{bottom:261.124050px;}
.yad{bottom:264.544500px;}
.y79{bottom:265.624050px;}
.y5e{bottom:266.163150px;}
.yac{bottom:272.103000px;}
.ye7{bottom:274.084500px;}
.ye9{bottom:278.766000px;}
.y120{bottom:279.480300px;}
.yf6{bottom:280.921950px;}
.ycb{bottom:281.824350px;}
.yb5{bottom:281.824500px;}
.y95{bottom:281.825700px;}
.y107{bottom:282.544800px;}
.yab{bottom:282.903750px;}
.y126{bottom:291.720900px;}
.y2d{bottom:292.084950px;}
.y5d{bottom:297.305700px;}
.y47{bottom:302.525550px;}
.ye6{bottom:305.221200px;}
.y11f{bottom:310.622850px;}
.yca{bottom:312.785250px;}
.yb4{bottom:312.785400px;}
.y94{bottom:312.786600px;}
.y125{bottom:322.863450px;}
.y2c{bottom:323.221650px;}
.y5c{bottom:328.266600px;}
.yf5{bottom:332.941500px;}
.y46{bottom:333.480600px;}
.y106{bottom:334.740150px;}
.ye5{bottom:336.182100px;}
.y11e{bottom:341.583750px;}
.yc9{bottom:343.921950px;}
.ya9{bottom:343.922100px;}
.y78{bottom:343.922850px;}
.y93{bottom:343.923300px;}
.y2b{bottom:354.182550px;}
.y5b{bottom:359.403300px;}
.yf4{bottom:363.902400px;}
.y45{bottom:364.441500px;}
.y105{bottom:365.701050px;}
.ye4{bottom:367.324650px;}
.y11d{bottom:372.720450px;}
.yc8{bottom:374.882850px;}
.ya8{bottom:374.883000px;}
.y77{bottom:374.883750px;}
.y92{bottom:374.884200px;}
.y2a{bottom:385.143450px;}
.y5a{bottom:390.364200px;}
.yf3{bottom:395.044950px;}
.y44{bottom:395.584050px;}
.ye3{bottom:398.285550px;}
.yc7{bottom:405.843750px;}
.ya7{bottom:405.843900px;}
.y76{bottom:405.844650px;}
.y91{bottom:405.845100px;}
.y29{bottom:416.286000px;}
.y104{bottom:418.980300px;}
.y59{bottom:421.506750px;}
.y11c{bottom:424.740000px;}
.yf2{bottom:426.005850px;}
.y43{bottom:426.544950px;}
.ye2{bottom:429.422250px;}
.yc6{bottom:436.980450px;}
.ya6{bottom:436.980600px;}
.y75{bottom:436.981350px;}
.y90{bottom:436.981800px;}
.y28{bottom:447.241050px;}
.y103{bottom:450.122850px;}
.y58{bottom:452.461800px;}
.y11b{bottom:455.700900px;}
.yf1{bottom:457.142550px;}
.y42{bottom:457.681650px;}
.ye1{bottom:460.383150px;}
.yc5{bottom:467.941350px;}
.ya5{bottom:467.941500px;}
.y74{bottom:467.942250px;}
.y8f{bottom:467.942700px;}
.y27{bottom:478.383600px;}
.y57{bottom:483.604350px;}
.y11a{bottom:486.843450px;}
.y41{bottom:488.642550px;}
.ye0{bottom:492.785550px;}
.yb6{bottom:498.720750px;}
.yc4{bottom:499.083900px;}
.ya4{bottom:499.084050px;}
.y73{bottom:499.084800px;}
.y8e{bottom:499.085250px;}
.y102{bottom:502.142400px;}
.yf0{bottom:509.162100px;}
.y26{bottom:509.344500px;}
.y56{bottom:514.565250px;}
.y119{bottom:517.804350px;}
.y40{bottom:519.785100px;}
.ydf{bottom:523.740600px;}
.yc3{bottom:530.044800px;}
.ya3{bottom:530.044950px;}
.y72{bottom:530.045700px;}
.y8d{bottom:530.046150px;}
.y101{bottom:533.284950px;}
.yef{bottom:540.123000px;}
.y25{bottom:540.481200px;}
.y55{bottom:545.701950px;}
.y118{bottom:548.941050px;}
.y3f{bottom:550.740150px;}
.yde{bottom:556.143000px;}
.yc2{bottom:561.181500px;}
.ya2{bottom:561.181650px;}
.y71{bottom:561.182400px;}
.y8c{bottom:561.182850px;}
.yee{bottom:571.265550px;}
.y24{bottom:571.442100px;}
.y54{bottom:576.662850px;}
.y117{bottom:579.901950px;}
.y3e{bottom:581.882700px;}
.y100{bottom:586.564200px;}
.ydd{bottom:587.103900px;}
.yc1{bottom:592.142400px;}
.ya1{bottom:592.142550px;}
.y70{bottom:592.143300px;}
.y8b{bottom:592.143750px;}
.yed{bottom:602.220600px;}
.y23{bottom:602.584650px;}
.y53{bottom:607.805400px;}
.y116{bottom:611.044500px;}
.y3d{bottom:612.843600px;}
.ydc{bottom:619.506300px;}
.yc0{bottom:623.284950px;}
.ya0{bottom:623.285100px;}
.y6f{bottom:623.285850px;}
.y8a{bottom:623.286300px;}
.yec{bottom:633.181500px;}
.y22{bottom:633.545550px;}
.yff{bottom:638.583750px;}
.y52{bottom:638.766300px;}
.y115{bottom:642.005400px;}
.y3c{bottom:643.980300px;}
.ydb{bottom:650.461350px;}
.ybf{bottom:654.240000px;}
.y9f{bottom:654.240150px;}
.y6e{bottom:654.240900px;}
.y89{bottom:654.241350px;}
.y21{bottom:664.682250px;}
.yfe{bottom:669.544650px;}
.y51{bottom:669.903000px;}
.y114{bottom:673.142100px;}
.y3b{bottom:674.941200px;}
.yda{bottom:681.603900px;}
.y124{bottom:685.025250px;}
.ybe{bottom:685.382550px;}
.y9e{bottom:685.382700px;}
.y6d{bottom:685.383450px;}
.y88{bottom:685.383900px;}
.y20{bottom:695.643150px;}
.yfd{bottom:700.681350px;}
.y50{bottom:700.863900px;}
.y113{bottom:704.103000px;}
.y3a{bottom:706.083750px;}
.yd9{bottom:712.564800px;}
.y9d{bottom:715.980300px;}
.ybd{bottom:716.343450px;}
.yb3{bottom:716.343600px;}
.y6c{bottom:716.344350px;}
.y87{bottom:716.344800px;}
.y1f{bottom:726.785700px;}
.y4f{bottom:732.006450px;}
.y112{bottom:735.239700px;}
.y39{bottom:737.044650px;}
.yd8{bottom:743.701500px;}
.y9c{bottom:747.122850px;}
.ybc{bottom:747.480150px;}
.yb2{bottom:747.480300px;}
.y6b{bottom:747.481050px;}
.y86{bottom:747.481500px;}
.yfc{bottom:753.960600px;}
.y1e{bottom:757.740750px;}
.y4e{bottom:762.961500px;}
.y111{bottom:766.200600px;}
.y38{bottom:768.181350px;}
.yd7{bottom:776.103900px;}
.y123{bottom:778.083750px;}
.ybb{bottom:778.441050px;}
.y9b{bottom:778.441200px;}
.y6a{bottom:778.441950px;}
.y85{bottom:778.442400px;}
.y1d{bottom:788.883300px;}
.y4d{bottom:794.104050px;}
.y110{bottom:797.343150px;}
.y37{bottom:799.142250px;}
.yfb{bottom:806.161800px;}
.yd6{bottom:807.064800px;}
.y122{bottom:809.220450px;}
.yba{bottom:809.583600px;}
.y9a{bottom:809.583750px;}
.y69{bottom:809.584500px;}
.y84{bottom:809.584950px;}
.y1c{bottom:819.844200px;}
.y4c{bottom:825.064950px;}
.y10f{bottom:828.304050px;}
.y36{bottom:830.284800px;}
.yd5{bottom:838.201500px;}
.y99{bottom:840.181350px;}
.yb9{bottom:840.544500px;}
.yb1{bottom:840.544650px;}
.y68{bottom:840.545400px;}
.y83{bottom:840.545850px;}
.yb8{bottom:848.824500px;}
.y1b{bottom:850.980900px;}
.y4b{bottom:856.201650px;}
.y10e{bottom:859.440750px;}
.yfa{bottom:859.441050px;}
.y35{bottom:860.882400px;}
.yd4{bottom:869.344500px;}
.y98{bottom:871.323900px;}
.yb0{bottom:871.681350px;}
.y67{bottom:871.682100px;}
.y82{bottom:871.682550px;}
.y1a{bottom:881.941800px;}
.y4a{bottom:887.162550px;}
.y34{bottom:892.024950px;}
.yd3{bottom:900.123000px;}
.yb7{bottom:902.284800px;}
.y64{bottom:902.642250px;}
.y66{bottom:902.643000px;}
.y81{bottom:902.643450px;}
.y65{bottom:910.921500px;}
.y10d{bottom:911.460300px;}
.yf9{bottom:911.460600px;}
.y19{bottom:913.084350px;}
.y49{bottom:918.123450px;}
.y33{bottom:923.343300px;}
.yd2{bottom:931.083450px;}
.y97{bottom:933.421500px;}
.y63{bottom:933.784800px;}
.y80{bottom:933.786000px;}
.yf8{bottom:942.603150px;}
.y17{bottom:946.200750px;}
.y18{bottom:946.201500px;}
.y48{bottom:949.266000px;}
.y129{bottom:953.402850px;}
.y32{bottom:954.480000px;}
.yd1{bottom:962.220150px;}
.y10c{bottom:963.479850px;}
.y62{bottom:964.739850px;}
.y7f{bottom:964.741050px;}
.y16{bottom:982.382400px;}
.y31{bottom:987.602850px;}
.y10b{bottom:994.622400px;}
.yd0{bottom:994.622550px;}
.y61{bottom:995.882400px;}
.y7e{bottom:995.883600px;}
.y128{bottom:1005.961500px;}
.y15{bottom:1018.564050px;}
.y30{bottom:1023.784500px;}
.y10a{bottom:1025.583300px;}
.ycf{bottom:1025.583450px;}
.y60{bottom:1026.843300px;}
.y7d{bottom:1026.844500px;}
.yaa{bottom:1035.123000px;}
.y14{bottom:1054.921500px;}
.y109{bottom:1056.720000px;}
.yeb{bottom:1057.623000px;}
.y2f{bottom:1057.980000px;}
.y8{bottom:1094.700600px;}
.y7{bottom:1113.603000px;}
.y6{bottom:1132.505400px;}
.y4{bottom:1151.044350px;}
.y5{bottom:1151.044500px;}
.y3{bottom:1166.700600px;}
.y2{bottom:1182.181050px;}
.y1{bottom:1197.661500px;}
.h7{height:20.520000px;}
.h10{height:28.305703px;}
.hc{height:34.114922px;}
.hb{height:42.327773px;}
.h11{height:43.506914px;}
.h3{height:44.149219px;}
.h1{height:47.381836px;}
.h5{height:47.382436px;}
.h2{height:48.224531px;}
.h9{height:49.289062px;}
.h13{height:49.292063px;}
.he{height:49.992188px;}
.hd{height:52.435898px;}
.h8{height:57.668203px;}
.ha{height:57.668803px;}
.h4{height:58.121719px;}
.h6{height:63.175781px;}
.h12{height:63.178181px;}
.hf{height:63.180581px;}
.h0{height:1263.000000px;}
.w1{width:0.181500px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.617150px;}
.xf{left:132.474600px;}
.xb{left:154.617111px;}
.x9{left:177.474850px;}
.xc{left:181.617116px;}
.x12{left:208.616887px;}
.x13{left:235.616968px;}
.x6{left:240.117000px;}
.x8{left:302.039256px;}
.x2{left:320.038500px;}
.x15{left:323.637000px;}
.x16{left:329.760000px;}
.x7{left:441.176039px;}
.x3{left:461.877000px;}
.xd{left:520.915500px;}
.xe{left:527.038500px;}
.x17{left:595.798500px;}
.x10{left:612.175500px;}
.x11{left:618.298500px;}
.xa{left:715.318500px;}
.x14{left:747.357000px;}
.x4{left:756.357000px;}
.x5{left:765.357000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.009440pt;}
.ls2{letter-spacing:0.009446pt;}
.ls5{letter-spacing:0.014880pt;}
.lsa{letter-spacing:0.655680pt;}
.ls1{letter-spacing:25.108320pt;}
.ls3{letter-spacing:30.236320pt;}
.ls6{letter-spacing:48.809600pt;}
.ls8{letter-spacing:48.841067pt;}
.ls7{letter-spacing:52.797760pt;}
.ls4{letter-spacing:57.127467pt;}
.ws5{word-spacing:-35.328000pt;}
.ws4{word-spacing:-31.872000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-1.049186pt;}
._0{width:0.915483pt;}
._2{width:1.901944pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:3.838667pt;}
.yf{bottom:57.229067pt;}
.y10{bottom:57.229200pt;}
.ye{bottom:77.869733pt;}
.yd{bottom:98.510400pt;}
.yc{bottom:119.307333pt;}
.yb{bottom:139.948000pt;}
.ya{bottom:162.827333pt;}
.y12{bottom:183.150667pt;}
.y11{bottom:186.989333pt;}
.y9{bottom:188.108533pt;}
.yaf{bottom:204.426800pt;}
.y7c{bottom:204.750000pt;}
.yce{bottom:204.750667pt;}
.y5f{bottom:209.068667pt;}
.ycd{bottom:210.828000pt;}
.yea{bottom:215.469067pt;}
.ye8{bottom:216.109867pt;}
.yae{bottom:219.791333pt;}
.y7b{bottom:220.109333pt;}
.ycc{bottom:220.750133pt;}
.y121{bottom:220.911333pt;}
.yf7{bottom:222.031333pt;}
.y96{bottom:222.829467pt;}
.y108{bottom:223.630133pt;}
.y7a{bottom:226.188000pt;}
.y127{bottom:231.792000pt;}
.y2e{bottom:232.110267pt;}
.yad{bottom:235.150667pt;}
.y79{bottom:236.110267pt;}
.y5e{bottom:236.589467pt;}
.yac{bottom:241.869333pt;}
.ye7{bottom:243.630667pt;}
.ye9{bottom:247.792000pt;}
.y120{bottom:248.426933pt;}
.yf6{bottom:249.708400pt;}
.ycb{bottom:250.510533pt;}
.yb5{bottom:250.510667pt;}
.y95{bottom:250.511733pt;}
.y107{bottom:251.150933pt;}
.yab{bottom:251.470000pt;}
.y126{bottom:259.307467pt;}
.y2d{bottom:259.631067pt;}
.y5d{bottom:264.271733pt;}
.y47{bottom:268.911600pt;}
.ye6{bottom:271.307733pt;}
.y11f{bottom:276.109200pt;}
.yca{bottom:278.031333pt;}
.yb4{bottom:278.031467pt;}
.y94{bottom:278.032533pt;}
.y125{bottom:286.989733pt;}
.y2c{bottom:287.308133pt;}
.y5c{bottom:291.792533pt;}
.yf5{bottom:295.948000pt;}
.y46{bottom:296.427200pt;}
.y106{bottom:297.546800pt;}
.ye5{bottom:298.828533pt;}
.y11e{bottom:303.630000pt;}
.yc9{bottom:305.708400pt;}
.ya9{bottom:305.708533pt;}
.y78{bottom:305.709200pt;}
.y93{bottom:305.709600pt;}
.y2b{bottom:314.828933pt;}
.y5b{bottom:319.469600pt;}
.yf4{bottom:323.468800pt;}
.y45{bottom:323.948000pt;}
.y105{bottom:325.067600pt;}
.ye4{bottom:326.510800pt;}
.y11d{bottom:331.307067pt;}
.yc8{bottom:333.229200pt;}
.ya8{bottom:333.229333pt;}
.y77{bottom:333.230000pt;}
.y92{bottom:333.230400pt;}
.y2a{bottom:342.349733pt;}
.y5a{bottom:346.990400pt;}
.yf3{bottom:351.151067pt;}
.y44{bottom:351.630267pt;}
.ye3{bottom:354.031600pt;}
.yc7{bottom:360.750000pt;}
.ya7{bottom:360.750133pt;}
.y76{bottom:360.750800pt;}
.y91{bottom:360.751200pt;}
.y29{bottom:370.032000pt;}
.y104{bottom:372.426933pt;}
.y59{bottom:374.672667pt;}
.y11c{bottom:377.546667pt;}
.yf2{bottom:378.671867pt;}
.y43{bottom:379.151067pt;}
.ye2{bottom:381.708667pt;}
.yc6{bottom:388.427067pt;}
.ya6{bottom:388.427200pt;}
.y75{bottom:388.427867pt;}
.y90{bottom:388.428267pt;}
.y28{bottom:397.547600pt;}
.y103{bottom:400.109200pt;}
.y58{bottom:402.188267pt;}
.y11b{bottom:405.067467pt;}
.yf1{bottom:406.348933pt;}
.y42{bottom:406.828133pt;}
.ye1{bottom:409.229467pt;}
.yc5{bottom:415.947867pt;}
.ya5{bottom:415.948000pt;}
.y74{bottom:415.948667pt;}
.y8f{bottom:415.949067pt;}
.y27{bottom:425.229867pt;}
.y57{bottom:429.870533pt;}
.y11a{bottom:432.749733pt;}
.y41{bottom:434.348933pt;}
.ye0{bottom:438.031600pt;}
.yb6{bottom:443.307333pt;}
.yc4{bottom:443.630133pt;}
.ya4{bottom:443.630267pt;}
.y73{bottom:443.630933pt;}
.y8e{bottom:443.631333pt;}
.y102{bottom:446.348800pt;}
.yf0{bottom:452.588533pt;}
.y26{bottom:452.750667pt;}
.y56{bottom:457.391333pt;}
.y119{bottom:460.270533pt;}
.y40{bottom:462.031200pt;}
.ydf{bottom:465.547200pt;}
.yc3{bottom:471.150933pt;}
.ya3{bottom:471.151067pt;}
.y72{bottom:471.151733pt;}
.y8d{bottom:471.152133pt;}
.y101{bottom:474.031067pt;}
.yef{bottom:480.109333pt;}
.y25{bottom:480.427733pt;}
.y55{bottom:485.068400pt;}
.y118{bottom:487.947600pt;}
.y3f{bottom:489.546800pt;}
.yde{bottom:494.349333pt;}
.yc2{bottom:498.828000pt;}
.ya2{bottom:498.828133pt;}
.y71{bottom:498.828800pt;}
.y8c{bottom:498.829200pt;}
.yee{bottom:507.791600pt;}
.y24{bottom:507.948533pt;}
.y54{bottom:512.589200pt;}
.y117{bottom:515.468400pt;}
.y3e{bottom:517.229067pt;}
.y100{bottom:521.390400pt;}
.ydd{bottom:521.870133pt;}
.yc1{bottom:526.348800pt;}
.ya1{bottom:526.348933pt;}
.y70{bottom:526.349600pt;}
.y8b{bottom:526.350000pt;}
.yed{bottom:535.307200pt;}
.y23{bottom:535.630800pt;}
.y53{bottom:540.271467pt;}
.y116{bottom:543.150667pt;}
.y3d{bottom:544.749867pt;}
.ydc{bottom:550.672267pt;}
.yc0{bottom:554.031067pt;}
.ya0{bottom:554.031200pt;}
.y6f{bottom:554.031867pt;}
.y8a{bottom:554.032267pt;}
.yec{bottom:562.828000pt;}
.y22{bottom:563.151600pt;}
.yff{bottom:567.630000pt;}
.y52{bottom:567.792267pt;}
.y115{bottom:570.671467pt;}
.y3c{bottom:572.426933pt;}
.ydb{bottom:578.187867pt;}
.ybf{bottom:581.546667pt;}
.y9f{bottom:581.546800pt;}
.y6e{bottom:581.547467pt;}
.y89{bottom:581.547867pt;}
.y21{bottom:590.828667pt;}
.yfe{bottom:595.150800pt;}
.y51{bottom:595.469333pt;}
.y114{bottom:598.348533pt;}
.y3b{bottom:599.947733pt;}
.yda{bottom:605.870133pt;}
.y124{bottom:608.911333pt;}
.ybe{bottom:609.228933pt;}
.y9e{bottom:609.229067pt;}
.y6d{bottom:609.229733pt;}
.y88{bottom:609.230133pt;}
.y20{bottom:618.349467pt;}
.yfd{bottom:622.827867pt;}
.y50{bottom:622.990133pt;}
.y113{bottom:625.869333pt;}
.y3a{bottom:627.630000pt;}
.yd9{bottom:633.390933pt;}
.y9d{bottom:636.426933pt;}
.ybd{bottom:636.749733pt;}
.yb3{bottom:636.749867pt;}
.y6c{bottom:636.750533pt;}
.y87{bottom:636.750933pt;}
.y1f{bottom:646.031733pt;}
.y4f{bottom:650.672400pt;}
.y112{bottom:653.546400pt;}
.y39{bottom:655.150800pt;}
.yd8{bottom:661.068000pt;}
.y9c{bottom:664.109200pt;}
.ybc{bottom:664.426800pt;}
.yb2{bottom:664.426933pt;}
.y6b{bottom:664.427600pt;}
.y86{bottom:664.428000pt;}
.yfc{bottom:670.187200pt;}
.y1e{bottom:673.547333pt;}
.y4e{bottom:678.188000pt;}
.y111{bottom:681.067200pt;}
.y38{bottom:682.827867pt;}
.yd7{bottom:689.870133pt;}
.y123{bottom:691.630000pt;}
.ybb{bottom:691.947600pt;}
.y9b{bottom:691.947733pt;}
.y6a{bottom:691.948400pt;}
.y85{bottom:691.948800pt;}
.y1d{bottom:701.229600pt;}
.y4d{bottom:705.870267pt;}
.y110{bottom:708.749467pt;}
.y37{bottom:710.348667pt;}
.yfb{bottom:716.588267pt;}
.yd6{bottom:717.390933pt;}
.y122{bottom:719.307067pt;}
.yba{bottom:719.629867pt;}
.y9a{bottom:719.630000pt;}
.y69{bottom:719.630667pt;}
.y84{bottom:719.631067pt;}
.y1c{bottom:728.750400pt;}
.y4c{bottom:733.391067pt;}
.y10f{bottom:736.270267pt;}
.y36{bottom:738.030933pt;}
.yd5{bottom:745.068000pt;}
.y99{bottom:746.827867pt;}
.yb9{bottom:747.150667pt;}
.yb1{bottom:747.150800pt;}
.y68{bottom:747.151467pt;}
.y83{bottom:747.151867pt;}
.yb8{bottom:754.510667pt;}
.y1b{bottom:756.427467pt;}
.y4b{bottom:761.068133pt;}
.y10e{bottom:763.947333pt;}
.yfa{bottom:763.947600pt;}
.y35{bottom:765.228800pt;}
.yd4{bottom:772.750667pt;}
.y98{bottom:774.510133pt;}
.yb0{bottom:774.827867pt;}
.y67{bottom:774.828533pt;}
.y82{bottom:774.828933pt;}
.y1a{bottom:783.948267pt;}
.y4a{bottom:788.588933pt;}
.y34{bottom:792.911067pt;}
.yd3{bottom:800.109333pt;}
.yb7{bottom:802.030933pt;}
.y64{bottom:802.348667pt;}
.y66{bottom:802.349333pt;}
.y81{bottom:802.349733pt;}
.y65{bottom:809.708000pt;}
.y10d{bottom:810.186933pt;}
.yf9{bottom:810.187200pt;}
.y19{bottom:811.630533pt;}
.y49{bottom:816.109733pt;}
.y33{bottom:820.749600pt;}
.yd2{bottom:827.629733pt;}
.y97{bottom:829.708000pt;}
.y63{bottom:830.030933pt;}
.y80{bottom:830.032000pt;}
.yf8{bottom:837.869467pt;}
.y17{bottom:841.067333pt;}
.y18{bottom:841.068000pt;}
.y48{bottom:843.792000pt;}
.y129{bottom:847.469200pt;}
.y32{bottom:848.426667pt;}
.yd1{bottom:855.306800pt;}
.y10c{bottom:856.426533pt;}
.y62{bottom:857.546533pt;}
.y7f{bottom:857.547600pt;}
.y16{bottom:873.228800pt;}
.y31{bottom:877.869200pt;}
.y10b{bottom:884.108800pt;}
.yd0{bottom:884.108933pt;}
.y61{bottom:885.228800pt;}
.y7e{bottom:885.229867pt;}
.y128{bottom:894.188000pt;}
.y15{bottom:905.390267pt;}
.y30{bottom:910.030667pt;}
.y10a{bottom:911.629600pt;}
.ycf{bottom:911.629733pt;}
.y60{bottom:912.749600pt;}
.y7d{bottom:912.750667pt;}
.yaa{bottom:920.109333pt;}
.y14{bottom:937.708000pt;}
.y109{bottom:939.306667pt;}
.yeb{bottom:940.109333pt;}
.y2f{bottom:940.426667pt;}
.y8{bottom:973.067200pt;}
.y7{bottom:989.869333pt;}
.y6{bottom:1006.671467pt;}
.y4{bottom:1023.150533pt;}
.y5{bottom:1023.150667pt;}
.y3{bottom:1037.067200pt;}
.y2{bottom:1050.827600pt;}
.y1{bottom:1064.588000pt;}
.h7{height:18.240000pt;}
.h10{height:25.160625pt;}
.hc{height:30.324375pt;}
.hb{height:37.624687pt;}
.h11{height:38.672812pt;}
.h3{height:39.243750pt;}
.h1{height:42.117188pt;}
.h5{height:42.117721pt;}
.h2{height:42.866250pt;}
.h9{height:43.812500pt;}
.h13{height:43.815167pt;}
.he{height:44.437500pt;}
.hd{height:46.609688pt;}
.h8{height:51.260625pt;}
.ha{height:51.261158pt;}
.h4{height:51.663750pt;}
.h6{height:56.156250pt;}
.h12{height:56.158383pt;}
.hf{height:56.160517pt;}
.h0{height:1122.666667pt;}
.w1{width:0.161333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.437467pt;}
.xf{left:117.755200pt;}
.xb{left:137.437432pt;}
.x9{left:157.755422pt;}
.xc{left:161.437437pt;}
.x12{left:185.437233pt;}
.x13{left:209.437305pt;}
.x6{left:213.437333pt;}
.x8{left:268.479339pt;}
.x2{left:284.478667pt;}
.x15{left:287.677333pt;}
.x16{left:293.120000pt;}
.x7{left:392.156479pt;}
.x3{left:410.557333pt;}
.xd{left:463.036000pt;}
.xe{left:468.478667pt;}
.x17{left:529.598667pt;}
.x10{left:544.156000pt;}
.x11{left:549.598667pt;}
.xa{left:635.838667pt;}
.x14{left:664.317333pt;}
.x4{left:672.317333pt;}
.x5{left:680.317333pt;}
}

