
    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_12a459df86efdec02da841d3.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_cedb2dfd0fc8150909ad81b2.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_44b09717f0a263ba4cbbf151.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_e2a99a243407ac60ce2235fb.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f51ad17399ced2ad22bc9d9d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_bd20015eb7b4b1eac91f8258.woff')format("woff");}.ff6{font-family:ff6;line-height:0.691406;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.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:-18.000000px;}
.ws3{word-spacing:-17.712000px;}
.ws2{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
._1b{margin-left:-2.376000px;}
._0{margin-left:-1.360320px;}
._3{width:1.020000px;}
._15{width:2.076000px;}
._5{width:3.312000px;}
._6{width:4.536000px;}
._14{width:5.673600px;}
._12{width:6.840000px;}
._13{width:7.992000px;}
._c{width:9.936000px;}
._d{width:11.004000px;}
._a{width:12.096000px;}
._b{width:13.104000px;}
._9{width:14.976000px;}
._16{width:16.384320px;}
._17{width:19.596000px;}
._19{width:20.916000px;}
._10{width:22.320000px;}
._11{width:23.328000px;}
._e{width:25.056000px;}
._f{width:26.196000px;}
._1a{width:28.152000px;}
._18{width:29.440320px;}
._22{width:30.456000px;}
._1{width:31.536000px;}
._2{width:32.608320px;}
._4{width:33.912000px;}
._20{width:35.064000px;}
._21{width:36.432000px;}
._1e{width:38.304000px;}
._1f{width:39.312000px;}
._23{width:40.320000px;}
._1c{width:41.400000px;}
._1d{width:42.408000px;}
._24{width:50.904000px;}
._8{width:57.456000px;}
._7{width:58.516320px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:117.036000px;}
.yfb{bottom:122.076000px;}
.y9d{bottom:124.596000px;}
.yd9{bottom:124.776000px;}
.ybf{bottom:125.136000px;}
.y5a{bottom:125.496000px;}
.ya5{bottom:125.676000px;}
.yd1{bottom:126.036000px;}
.y82{bottom:129.276000px;}
.y29{bottom:137.736000px;}
.yfa{bottom:142.776000px;}
.yd8{bottom:145.476000px;}
.ybe{bottom:145.836000px;}
.y59{bottom:146.196000px;}
.ya4{bottom:146.376000px;}
.yd0{bottom:146.736000px;}
.y81{bottom:149.976000px;}
.y28{bottom:158.430000px;}
.y9c{bottom:166.170000px;}
.ybd{bottom:166.530000px;}
.y58{bottom:166.890000px;}
.ya3{bottom:167.070000px;}
.ycf{bottom:167.430000px;}
.y80{bottom:170.670000px;}
.y27{bottom:179.130000px;}
.yf9{bottom:184.530000px;}
.y9b{bottom:186.870000px;}
.ybc{bottom:187.230000px;}
.y57{bottom:187.590000px;}
.ya2{bottom:187.770000px;}
.yce{bottom:188.130000px;}
.y7f{bottom:191.370000px;}
.y26{bottom:199.830000px;}
.yf8{bottom:205.230000px;}
.y9a{bottom:207.570000px;}
.ybb{bottom:207.930000px;}
.y56{bottom:208.290000px;}
.ya1{bottom:208.470000px;}
.ycd{bottom:208.830000px;}
.y7e{bottom:212.070000px;}
.y25{bottom:220.530000px;}
.y99{bottom:228.270000px;}
.yba{bottom:228.630000px;}
.ya0{bottom:229.170000px;}
.ycc{bottom:229.530000px;}
.y7d{bottom:232.770000px;}
.y24{bottom:241.230000px;}
.yf7{bottom:246.990000px;}
.y98{bottom:248.970000px;}
.yb9{bottom:249.330000px;}
.y55{bottom:249.870000px;}
.ycb{bottom:250.230000px;}
.y7c{bottom:253.470000px;}
.y23{bottom:261.930000px;}
.yf6{bottom:267.690000px;}
.y97{bottom:269.670000px;}
.yb8{bottom:270.030000px;}
.y54{bottom:270.570000px;}
.yca{bottom:270.930000px;}
.y7b{bottom:274.170000px;}
.y22{bottom:282.630000px;}
.y96{bottom:290.370000px;}
.yb7{bottom:290.730000px;}
.y53{bottom:291.270000px;}
.yc9{bottom:291.630000px;}
.y7a{bottom:294.870000px;}
.y21{bottom:303.330000px;}
.yf5{bottom:309.270000px;}
.y95{bottom:311.070000px;}
.yb6{bottom:311.430000px;}
.y52{bottom:311.970000px;}
.yc8{bottom:312.330000px;}
.y79{bottom:315.570000px;}
.y20{bottom:324.030000px;}
.yf4{bottom:329.970000px;}
.y94{bottom:331.770000px;}
.yb5{bottom:332.130000px;}
.y51{bottom:332.670000px;}
.yc7{bottom:333.030000px;}
.y78{bottom:336.270000px;}
.y1f{bottom:344.775000px;}
.y93{bottom:352.515000px;}
.yb4{bottom:352.875000px;}
.y50{bottom:353.415000px;}
.yc6{bottom:353.775000px;}
.y77{bottom:357.015000px;}
.y1e{bottom:365.475000px;}
.yf3{bottom:371.775000px;}
.y92{bottom:373.215000px;}
.yb3{bottom:373.575000px;}
.y4f{bottom:374.115000px;}
.yc5{bottom:374.475000px;}
.y76{bottom:377.715000px;}
.y1d{bottom:386.175000px;}
.yf2{bottom:392.475000px;}
.y91{bottom:393.915000px;}
.yd6{bottom:394.275000px;}
.y4e{bottom:394.815000px;}
.yc4{bottom:395.175000px;}
.y75{bottom:398.415000px;}
.y1c{bottom:406.875000px;}
.y90{bottom:414.615000px;}
.yb2{bottom:414.975000px;}
.y4d{bottom:415.515000px;}
.yc3{bottom:415.875000px;}
.y74{bottom:419.115000px;}
.y1b{bottom:427.575000px;}
.yf1{bottom:434.235000px;}
.y8f{bottom:435.315000px;}
.yd5{bottom:435.675000px;}
.y4c{bottom:436.215000px;}
.yc2{bottom:436.575000px;}
.y73{bottom:439.815000px;}
.y1a{bottom:448.275000px;}
.yf0{bottom:454.755000px;}
.y8e{bottom:456.015000px;}
.yd4{bottom:456.375000px;}
.y4b{bottom:456.915000px;}
.yc1{bottom:457.275000px;}
.y72{bottom:460.515000px;}
.y19{bottom:468.975000px;}
.y8d{bottom:476.715000px;}
.yd3{bottom:477.075000px;}
.y4a{bottom:477.615000px;}
.yc0{bottom:477.975000px;}
.y71{bottom:481.215000px;}
.y18{bottom:489.675000px;}
.yef{bottom:496.515000px;}
.y8c{bottom:497.415000px;}
.y49{bottom:498.315000px;}
.yb1{bottom:498.675000px;}
.y17{bottom:510.375000px;}
.yee{bottom:517.215000px;}
.y8b{bottom:518.115000px;}
.yd2{bottom:518.475000px;}
.y48{bottom:519.015000px;}
.yb0{bottom:519.375000px;}
.y70{bottom:522.615000px;}
.y16{bottom:531.075000px;}
.yed{bottom:537.915000px;}
.y8a{bottom:538.815000px;}
.y47{bottom:539.715000px;}
.yaf{bottom:540.075000px;}
.y6f{bottom:543.315000px;}
.y15{bottom:551.775000px;}
.y107{bottom:557.895000px;}
.y89{bottom:559.515000px;}
.y46{bottom:560.415000px;}
.yae{bottom:560.775000px;}
.y14{bottom:572.475000px;}
.yec{bottom:579.675000px;}
.y88{bottom:580.215000px;}
.yd7{bottom:580.395000px;}
.y45{bottom:581.115000px;}
.yad{bottom:581.475000px;}
.y6e{bottom:584.895000px;}
.y13{bottom:593.175000px;}
.y106{bottom:595.695000px;}
.yeb{bottom:600.375000px;}
.y87{bottom:600.915000px;}
.y44{bottom:601.815000px;}
.yac{bottom:602.175000px;}
.y12{bottom:613.905000px;}
.yea{bottom:621.105000px;}
.y43{bottom:622.545000px;}
.y6d{bottom:622.725000px;}
.yab{bottom:622.905000px;}
.y11{bottom:634.605000px;}
.y105{bottom:641.805000px;}
.y86{bottom:642.345000px;}
.y42{bottom:643.245000px;}
.yaa{bottom:643.605000px;}
.y10{bottom:655.305000px;}
.ye9{bottom:662.325000px;}
.y104{bottom:662.505000px;}
.y41{bottom:663.945000px;}
.ya9{bottom:664.305000px;}
.yf{bottom:676.005000px;}
.y103{bottom:683.205000px;}
.y85{bottom:683.925000px;}
.y40{bottom:684.645000px;}
.ya8{bottom:685.005000px;}
.ye8{bottom:704.445000px;}
.y84{bottom:704.625000px;}
.y3f{bottom:705.345000px;}
.ya7{bottom:705.705000px;}
.ye{bottom:717.585000px;}
.y102{bottom:724.785000px;}
.y83{bottom:725.325000px;}
.y3e{bottom:726.045000px;}
.ya6{bottom:726.405000px;}
.y101{bottom:745.485000px;}
.ye7{bottom:746.205000px;}
.y3d{bottom:746.745000px;}
.y6c{bottom:747.105000px;}
.yd{bottom:759.345000px;}
.y100{bottom:766.185000px;}
.ye6{bottom:766.905000px;}
.y3c{bottom:767.445000px;}
.y6b{bottom:767.805000px;}
.yc{bottom:780.045000px;}
.ye5{bottom:787.605000px;}
.y3b{bottom:788.145000px;}
.y6a{bottom:788.505000px;}
.yff{bottom:807.945000px;}
.ye4{bottom:808.305000px;}
.y3a{bottom:808.845000px;}
.y69{bottom:809.205000px;}
.yb{bottom:821.805000px;}
.yfe{bottom:828.645000px;}
.ye3{bottom:829.005000px;}
.y39{bottom:829.545000px;}
.y68{bottom:829.905000px;}
.ya{bottom:842.505000px;}
.ye2{bottom:849.705000px;}
.y38{bottom:850.245000px;}
.y67{bottom:850.605000px;}
.y9{bottom:863.205000px;}
.ye1{bottom:870.450000px;}
.y37{bottom:870.990000px;}
.y66{bottom:871.350000px;}
.ye0{bottom:891.150000px;}
.y36{bottom:891.690000px;}
.y65{bottom:892.050000px;}
.y8{bottom:904.830000px;}
.ydf{bottom:911.850000px;}
.y35{bottom:912.390000px;}
.y64{bottom:912.750000px;}
.y7{bottom:925.530000px;}
.yde{bottom:932.550000px;}
.yfd{bottom:932.730000px;}
.y34{bottom:933.090000px;}
.y63{bottom:933.450000px;}
.y6{bottom:946.230000px;}
.ydd{bottom:953.250000px;}
.yfc{bottom:953.430000px;}
.y33{bottom:953.790000px;}
.y62{bottom:954.150000px;}
.y5{bottom:966.930000px;}
.ydc{bottom:973.950000px;}
.y32{bottom:974.490000px;}
.y61{bottom:974.850000px;}
.ydb{bottom:994.650000px;}
.y31{bottom:995.190000px;}
.y60{bottom:995.550000px;}
.y4{bottom:1008.330000px;}
.y30{bottom:1015.890000px;}
.y5f{bottom:1016.250000px;}
.yda{bottom:1035.870000px;}
.y2f{bottom:1036.590000px;}
.y5e{bottom:1036.950000px;}
.y3{bottom:1050.090000px;}
.y2e{bottom:1057.290000px;}
.y5d{bottom:1057.650000px;}
.y2d{bottom:1077.990000px;}
.y5c{bottom:1078.350000px;}
.y2{bottom:1094.550000px;}
.y9f{bottom:1098.690000px;}
.y5b{bottom:1099.050000px;}
.y2c{bottom:1119.750000px;}
.y1{bottom:1129.110000px;}
.y9e{bottom:1140.120000px;}
.y2b{bottom:1140.480000px;}
.h7{height:45.184219px;}
.h6{height:70.628906px;}
.h4{height:70.664062px;}
.h5{height:72.562500px;}
.h3{height:75.093750px;}
.h2{height:118.008984px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:127.656000px;}
.x1{left:138.276000px;}
.x2{left:244.830000px;}
.x6{left:298.695000px;}
.x3{left:348.015000px;}
.x4{left:357.555000px;}
.x7{left:465.405000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws2{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
._1b{margin-left:-2.112000pt;}
._0{margin-left:-1.209173pt;}
._3{width:0.906667pt;}
._15{width:1.845333pt;}
._5{width:2.944000pt;}
._6{width:4.032000pt;}
._14{width:5.043200pt;}
._12{width:6.080000pt;}
._13{width:7.104000pt;}
._c{width:8.832000pt;}
._d{width:9.781333pt;}
._a{width:10.752000pt;}
._b{width:11.648000pt;}
._9{width:13.312000pt;}
._16{width:14.563840pt;}
._17{width:17.418667pt;}
._19{width:18.592000pt;}
._10{width:19.840000pt;}
._11{width:20.736000pt;}
._e{width:22.272000pt;}
._f{width:23.285333pt;}
._1a{width:25.024000pt;}
._18{width:26.169173pt;}
._22{width:27.072000pt;}
._1{width:28.032000pt;}
._2{width:28.985173pt;}
._4{width:30.144000pt;}
._20{width:31.168000pt;}
._21{width:32.384000pt;}
._1e{width:34.048000pt;}
._1f{width:34.944000pt;}
._23{width:35.840000pt;}
._1c{width:36.800000pt;}
._1d{width:37.696000pt;}
._24{width:45.248000pt;}
._8{width:51.072000pt;}
._7{width:52.014507pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:104.032000pt;}
.yfb{bottom:108.512000pt;}
.y9d{bottom:110.752000pt;}
.yd9{bottom:110.912000pt;}
.ybf{bottom:111.232000pt;}
.y5a{bottom:111.552000pt;}
.ya5{bottom:111.712000pt;}
.yd1{bottom:112.032000pt;}
.y82{bottom:114.912000pt;}
.y29{bottom:122.432000pt;}
.yfa{bottom:126.912000pt;}
.yd8{bottom:129.312000pt;}
.ybe{bottom:129.632000pt;}
.y59{bottom:129.952000pt;}
.ya4{bottom:130.112000pt;}
.yd0{bottom:130.432000pt;}
.y81{bottom:133.312000pt;}
.y28{bottom:140.826667pt;}
.y9c{bottom:147.706667pt;}
.ybd{bottom:148.026667pt;}
.y58{bottom:148.346667pt;}
.ya3{bottom:148.506667pt;}
.ycf{bottom:148.826667pt;}
.y80{bottom:151.706667pt;}
.y27{bottom:159.226667pt;}
.yf9{bottom:164.026667pt;}
.y9b{bottom:166.106667pt;}
.ybc{bottom:166.426667pt;}
.y57{bottom:166.746667pt;}
.ya2{bottom:166.906667pt;}
.yce{bottom:167.226667pt;}
.y7f{bottom:170.106667pt;}
.y26{bottom:177.626667pt;}
.yf8{bottom:182.426667pt;}
.y9a{bottom:184.506667pt;}
.ybb{bottom:184.826667pt;}
.y56{bottom:185.146667pt;}
.ya1{bottom:185.306667pt;}
.ycd{bottom:185.626667pt;}
.y7e{bottom:188.506667pt;}
.y25{bottom:196.026667pt;}
.y99{bottom:202.906667pt;}
.yba{bottom:203.226667pt;}
.ya0{bottom:203.706667pt;}
.ycc{bottom:204.026667pt;}
.y7d{bottom:206.906667pt;}
.y24{bottom:214.426667pt;}
.yf7{bottom:219.546667pt;}
.y98{bottom:221.306667pt;}
.yb9{bottom:221.626667pt;}
.y55{bottom:222.106667pt;}
.ycb{bottom:222.426667pt;}
.y7c{bottom:225.306667pt;}
.y23{bottom:232.826667pt;}
.yf6{bottom:237.946667pt;}
.y97{bottom:239.706667pt;}
.yb8{bottom:240.026667pt;}
.y54{bottom:240.506667pt;}
.yca{bottom:240.826667pt;}
.y7b{bottom:243.706667pt;}
.y22{bottom:251.226667pt;}
.y96{bottom:258.106667pt;}
.yb7{bottom:258.426667pt;}
.y53{bottom:258.906667pt;}
.yc9{bottom:259.226667pt;}
.y7a{bottom:262.106667pt;}
.y21{bottom:269.626667pt;}
.yf5{bottom:274.906667pt;}
.y95{bottom:276.506667pt;}
.yb6{bottom:276.826667pt;}
.y52{bottom:277.306667pt;}
.yc8{bottom:277.626667pt;}
.y79{bottom:280.506667pt;}
.y20{bottom:288.026667pt;}
.yf4{bottom:293.306667pt;}
.y94{bottom:294.906667pt;}
.yb5{bottom:295.226667pt;}
.y51{bottom:295.706667pt;}
.yc7{bottom:296.026667pt;}
.y78{bottom:298.906667pt;}
.y1f{bottom:306.466667pt;}
.y93{bottom:313.346667pt;}
.yb4{bottom:313.666667pt;}
.y50{bottom:314.146667pt;}
.yc6{bottom:314.466667pt;}
.y77{bottom:317.346667pt;}
.y1e{bottom:324.866667pt;}
.yf3{bottom:330.466667pt;}
.y92{bottom:331.746667pt;}
.yb3{bottom:332.066667pt;}
.y4f{bottom:332.546667pt;}
.yc5{bottom:332.866667pt;}
.y76{bottom:335.746667pt;}
.y1d{bottom:343.266667pt;}
.yf2{bottom:348.866667pt;}
.y91{bottom:350.146667pt;}
.yd6{bottom:350.466667pt;}
.y4e{bottom:350.946667pt;}
.yc4{bottom:351.266667pt;}
.y75{bottom:354.146667pt;}
.y1c{bottom:361.666667pt;}
.y90{bottom:368.546667pt;}
.yb2{bottom:368.866667pt;}
.y4d{bottom:369.346667pt;}
.yc3{bottom:369.666667pt;}
.y74{bottom:372.546667pt;}
.y1b{bottom:380.066667pt;}
.yf1{bottom:385.986667pt;}
.y8f{bottom:386.946667pt;}
.yd5{bottom:387.266667pt;}
.y4c{bottom:387.746667pt;}
.yc2{bottom:388.066667pt;}
.y73{bottom:390.946667pt;}
.y1a{bottom:398.466667pt;}
.yf0{bottom:404.226667pt;}
.y8e{bottom:405.346667pt;}
.yd4{bottom:405.666667pt;}
.y4b{bottom:406.146667pt;}
.yc1{bottom:406.466667pt;}
.y72{bottom:409.346667pt;}
.y19{bottom:416.866667pt;}
.y8d{bottom:423.746667pt;}
.yd3{bottom:424.066667pt;}
.y4a{bottom:424.546667pt;}
.yc0{bottom:424.866667pt;}
.y71{bottom:427.746667pt;}
.y18{bottom:435.266667pt;}
.yef{bottom:441.346667pt;}
.y8c{bottom:442.146667pt;}
.y49{bottom:442.946667pt;}
.yb1{bottom:443.266667pt;}
.y17{bottom:453.666667pt;}
.yee{bottom:459.746667pt;}
.y8b{bottom:460.546667pt;}
.yd2{bottom:460.866667pt;}
.y48{bottom:461.346667pt;}
.yb0{bottom:461.666667pt;}
.y70{bottom:464.546667pt;}
.y16{bottom:472.066667pt;}
.yed{bottom:478.146667pt;}
.y8a{bottom:478.946667pt;}
.y47{bottom:479.746667pt;}
.yaf{bottom:480.066667pt;}
.y6f{bottom:482.946667pt;}
.y15{bottom:490.466667pt;}
.y107{bottom:495.906667pt;}
.y89{bottom:497.346667pt;}
.y46{bottom:498.146667pt;}
.yae{bottom:498.466667pt;}
.y14{bottom:508.866667pt;}
.yec{bottom:515.266667pt;}
.y88{bottom:515.746667pt;}
.yd7{bottom:515.906667pt;}
.y45{bottom:516.546667pt;}
.yad{bottom:516.866667pt;}
.y6e{bottom:519.906667pt;}
.y13{bottom:527.266667pt;}
.y106{bottom:529.506667pt;}
.yeb{bottom:533.666667pt;}
.y87{bottom:534.146667pt;}
.y44{bottom:534.946667pt;}
.yac{bottom:535.266667pt;}
.y12{bottom:545.693333pt;}
.yea{bottom:552.093333pt;}
.y43{bottom:553.373333pt;}
.y6d{bottom:553.533333pt;}
.yab{bottom:553.693333pt;}
.y11{bottom:564.093333pt;}
.y105{bottom:570.493333pt;}
.y86{bottom:570.973333pt;}
.y42{bottom:571.773333pt;}
.yaa{bottom:572.093333pt;}
.y10{bottom:582.493333pt;}
.ye9{bottom:588.733333pt;}
.y104{bottom:588.893333pt;}
.y41{bottom:590.173333pt;}
.ya9{bottom:590.493333pt;}
.yf{bottom:600.893333pt;}
.y103{bottom:607.293333pt;}
.y85{bottom:607.933333pt;}
.y40{bottom:608.573333pt;}
.ya8{bottom:608.893333pt;}
.ye8{bottom:626.173333pt;}
.y84{bottom:626.333333pt;}
.y3f{bottom:626.973333pt;}
.ya7{bottom:627.293333pt;}
.ye{bottom:637.853333pt;}
.y102{bottom:644.253333pt;}
.y83{bottom:644.733333pt;}
.y3e{bottom:645.373333pt;}
.ya6{bottom:645.693333pt;}
.y101{bottom:662.653333pt;}
.ye7{bottom:663.293333pt;}
.y3d{bottom:663.773333pt;}
.y6c{bottom:664.093333pt;}
.yd{bottom:674.973333pt;}
.y100{bottom:681.053333pt;}
.ye6{bottom:681.693333pt;}
.y3c{bottom:682.173333pt;}
.y6b{bottom:682.493333pt;}
.yc{bottom:693.373333pt;}
.ye5{bottom:700.093333pt;}
.y3b{bottom:700.573333pt;}
.y6a{bottom:700.893333pt;}
.yff{bottom:718.173333pt;}
.ye4{bottom:718.493333pt;}
.y3a{bottom:718.973333pt;}
.y69{bottom:719.293333pt;}
.yb{bottom:730.493333pt;}
.yfe{bottom:736.573333pt;}
.ye3{bottom:736.893333pt;}
.y39{bottom:737.373333pt;}
.y68{bottom:737.693333pt;}
.ya{bottom:748.893333pt;}
.ye2{bottom:755.293333pt;}
.y38{bottom:755.773333pt;}
.y67{bottom:756.093333pt;}
.y9{bottom:767.293333pt;}
.ye1{bottom:773.733333pt;}
.y37{bottom:774.213333pt;}
.y66{bottom:774.533333pt;}
.ye0{bottom:792.133333pt;}
.y36{bottom:792.613333pt;}
.y65{bottom:792.933333pt;}
.y8{bottom:804.293333pt;}
.ydf{bottom:810.533333pt;}
.y35{bottom:811.013333pt;}
.y64{bottom:811.333333pt;}
.y7{bottom:822.693333pt;}
.yde{bottom:828.933333pt;}
.yfd{bottom:829.093333pt;}
.y34{bottom:829.413333pt;}
.y63{bottom:829.733333pt;}
.y6{bottom:841.093333pt;}
.ydd{bottom:847.333333pt;}
.yfc{bottom:847.493333pt;}
.y33{bottom:847.813333pt;}
.y62{bottom:848.133333pt;}
.y5{bottom:859.493333pt;}
.ydc{bottom:865.733333pt;}
.y32{bottom:866.213333pt;}
.y61{bottom:866.533333pt;}
.ydb{bottom:884.133333pt;}
.y31{bottom:884.613333pt;}
.y60{bottom:884.933333pt;}
.y4{bottom:896.293333pt;}
.y30{bottom:903.013333pt;}
.y5f{bottom:903.333333pt;}
.yda{bottom:920.773333pt;}
.y2f{bottom:921.413333pt;}
.y5e{bottom:921.733333pt;}
.y3{bottom:933.413333pt;}
.y2e{bottom:939.813333pt;}
.y5d{bottom:940.133333pt;}
.y2d{bottom:958.213333pt;}
.y5c{bottom:958.533333pt;}
.y2{bottom:972.933333pt;}
.y9f{bottom:976.613333pt;}
.y5b{bottom:976.933333pt;}
.y2c{bottom:995.333333pt;}
.y1{bottom:1003.653333pt;}
.y9e{bottom:1013.440000pt;}
.y2b{bottom:1013.760000pt;}
.h7{height:40.163750pt;}
.h6{height:62.781250pt;}
.h4{height:62.812500pt;}
.h5{height:64.500000pt;}
.h3{height:66.750000pt;}
.h2{height:104.896875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:113.472000pt;}
.x1{left:122.912000pt;}
.x2{left:217.626667pt;}
.x6{left:265.506667pt;}
.x3{left:309.346667pt;}
.x4{left:317.826667pt;}
.x7{left:413.693333pt;}
}

