
    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_d377a818874582c0f8b3a593.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_86854b2a4d4e8f02939a4e9a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_bea4f6de6840b7543d62e313.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_2f23b74de9e4e623bc0476c5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_dc406654b33683ef7c7cbe9d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_2b06217f550620a2d1cdb4fe.woff')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_6e7c395cbcaefd91f661f670.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.792000px;}
.ls3{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.ls2{letter-spacing:1.440000px;}
.ls4{letter-spacing:18.720000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws1{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws3{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.280000px;}
.ws4{word-spacing:-17.208000px;}
.ws0{word-spacing:0.000000px;}
._16{margin-left:-2.392080px;}
._1{margin-left:-1.188720px;}
._0{width:1.034640px;}
._2{width:2.247600px;}
._6{width:3.312000px;}
._7{width:4.896000px;}
._1f{width:5.940720px;}
._12{width:6.985440px;}
._f{width:8.136000px;}
._d{width:9.504000px;}
._8{width:10.920000px;}
._9{width:12.336000px;}
._e{width:13.377840px;}
._a{width:14.414160px;}
._5{width:15.840000px;}
._11{width:16.889280px;}
._15{width:19.008000px;}
._17{width:20.080080px;}
._1c{width:21.233280px;}
._24{width:22.519440px;}
._14{width:23.576400px;}
._13{width:24.804720px;}
._10{width:26.172720px;}
._b{width:27.288000px;}
._c{width:28.368000px;}
._21{width:30.036720px;}
._18{width:31.176000px;}
._19{width:32.304000px;}
._2b{width:33.480000px;}
._25{width:35.136000px;}
._26{width:37.080000px;}
._27{width:38.160000px;}
._29{width:39.240000px;}
._2a{width:40.293360px;}
._1d{width:41.616000px;}
._1e{width:43.056000px;}
._1a{width:44.280000px;}
._1b{width:45.792000px;}
._2c{width:49.320000px;}
._28{width:50.760000px;}
._23{width:59.182560px;}
._22{width:60.228720px;}
._20{width:176.376000px;}
._4{width:194.376000px;}
._2e{width:1232.940000px;}
._3{width:1430.940000px;}
._2d{width:1460.460000px;}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:5.760000px;}
.fs7{font-size:23.760000px;}
.fs5{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y11{bottom:111.420000px;}
.ydb{bottom:112.680000px;}
.y10a{bottom:113.580000px;}
.y56{bottom:114.660000px;}
.y92{bottom:121.500000px;}
.ya3{bottom:121.680000px;}
.y30{bottom:124.560000px;}
.y10f{bottom:125.460000px;}
.yba{bottom:129.240000px;}
.y7c{bottom:129.420000px;}
.y121{bottom:131.220000px;}
.yca{bottom:134.100000px;}
.yde{bottom:135.540000px;}
.y139{bottom:138.780000px;}
.ye0{bottom:139.500000px;}
.y10{bottom:142.380000px;}
.yd8{bottom:142.560000px;}
.yf2{bottom:144.180000px;}
.y109{bottom:144.720000px;}
.y55{bottom:145.620000px;}
.y91{bottom:152.640000px;}
.ya2{bottom:152.820000px;}
.y2f{bottom:155.700000px;}
.yb9{bottom:160.230000px;}
.y7b{bottom:160.590000px;}
.yc9{bottom:165.270000px;}
.yda{bottom:166.170000px;}
.y62{bottom:166.710000px;}
.yf{bottom:173.370000px;}
.yf8{bottom:173.550000px;}
.yd7{bottom:173.730000px;}
.yee{bottom:174.090000px;}
.y108{bottom:175.710000px;}
.y54{bottom:176.790000px;}
.y10e{bottom:180.750000px;}
.y138{bottom:182.190000px;}
.y90{bottom:183.630000px;}
.ya1{bottom:183.810000px;}
.y2e{bottom:186.690000px;}
.y120{bottom:187.590000px;}
.ydf{bottom:189.570000px;}
.yf1{bottom:190.290000px;}
.yb8{bottom:191.370000px;}
.y7a{bottom:191.550000px;}
.y61{bottom:197.670000px;}
.ye{bottom:204.510000px;}
.yd6{bottom:204.690000px;}
.yed{bottom:205.050000px;}
.y107{bottom:206.850000px;}
.y53{bottom:207.750000px;}
.yd9{bottom:212.250000px;}
.ya0{bottom:214.950000px;}
.yc8{bottom:217.290000px;}
.y2d{bottom:217.830000px;}
.y11f{bottom:218.730000px;}
.yb7{bottom:222.330000px;}
.y10d{bottom:227.010000px;}
.y60{bottom:228.810000px;}
.yd{bottom:235.470000px;}
.y8f{bottom:235.650000px;}
.yd5{bottom:235.830000px;}
.yec{bottom:236.190000px;}
.y106{bottom:237.810000px;}
.y52{bottom:238.710000px;}
.y79{bottom:243.750000px;}
.y9f{bottom:245.910000px;}
.yc7{bottom:248.250000px;}
.y2c{bottom:248.790000px;}
.y11e{bottom:249.690000px;}
.yb6{bottom:253.470000px;}
.y5f{bottom:259.770000px;}
.yc{bottom:266.610000px;}
.y8e{bottom:266.790000px;}
.yeb{bottom:267.150000px;}
.y105{bottom:268.950000px;}
.yd0{bottom:269.850000px;}
.y137{bottom:270.570000px;}
.y78{bottom:274.710000px;}
.y9e{bottom:277.050000px;}
.yfb{bottom:278.310000px;}
.yc6{bottom:279.390000px;}
.y2b{bottom:279.930000px;}
.y11d{bottom:280.830000px;}
.yb5{bottom:284.430000px;}
.y51{bottom:290.910000px;}
.yb{bottom:297.570000px;}
.y8d{bottom:297.750000px;}
.yea{bottom:298.290000px;}
.y104{bottom:299.910000px;}
.y3d{bottom:300.810000px;}
.y77{bottom:305.850000px;}
.y9d{bottom:308.010000px;}
.yc5{bottom:310.350000px;}
.y2a{bottom:310.890000px;}
.y11c{bottom:311.790000px;}
.y136{bottom:314.310000px;}
.yd4{bottom:318.450000px;}
.y50{bottom:321.870000px;}
.yfa{bottom:324.390000px;}
.ya{bottom:328.710000px;}
.y8c{bottom:328.890000px;}
.ye9{bottom:329.250000px;}
.y103{bottom:331.050000px;}
.y3c{bottom:331.950000px;}
.yb4{bottom:336.090000px;}
.y135{bottom:336.630000px;}
.y76{bottom:336.810000px;}
.y9c{bottom:339.150000px;}
.yc4{bottom:341.490000px;}
.y29{bottom:342.030000px;}
.y11b{bottom:342.930000px;}
.y4f{bottom:353.010000px;}
.y8b{bottom:359.850000px;}
.ye8{bottom:360.390000px;}
.y102{bottom:362.010000px;}
.y3b{bottom:362.910000px;}
.yd3{bottom:365.970000px;}
.y75{bottom:367.770000px;}
.y9b{bottom:370.110000px;}
.yc3{bottom:372.450000px;}
.y28{bottom:372.990000px;}
.y11a{bottom:373.890000px;}
.y134{bottom:380.190000px;}
.y9{bottom:380.370000px;}
.y4e{bottom:383.970000px;}
.yb3{bottom:388.470000px;}
.yf7{bottom:390.810000px;}
.y8a{bottom:390.990000px;}
.ye7{bottom:391.350000px;}
.y101{bottom:393.150000px;}
.y3a{bottom:394.050000px;}
.yd2{bottom:398.190000px;}
.y74{bottom:398.910000px;}
.y133{bottom:402.510000px;}
.yc2{bottom:403.590000px;}
.y27{bottom:404.130000px;}
.y119{bottom:405.030000px;}
.y4d{bottom:415.155000px;}
.yb2{bottom:419.655000px;}
.y89{bottom:421.995000px;}
.y9a{bottom:422.175000px;}
.ye6{bottom:422.535000px;}
.y100{bottom:424.155000px;}
.y58{bottom:424.695000px;}
.y39{bottom:425.055000px;}
.y8{bottom:425.595000px;}
.y73{bottom:429.915000px;}
.yc1{bottom:434.595000px;}
.y26{bottom:435.135000px;}
.y5e{bottom:436.035000px;}
.y7{bottom:444.495000px;}
.y118{bottom:445.755000px;}
.y4c{bottom:446.115000px;}
.y132{bottom:446.295000px;}
.yb1{bottom:450.615000px;}
.y88{bottom:453.135000px;}
.y99{bottom:453.315000px;}
.ye5{bottom:453.495000px;}
.y38{bottom:456.195000px;}
.y72{bottom:461.055000px;}
.yc0{bottom:465.735000px;}
.y25{bottom:466.275000px;}
.y5d{bottom:467.175000px;}
.yf6{bottom:473.655000px;}
.yff{bottom:476.175000px;}
.y57{bottom:477.255000px;}
.yb0{bottom:481.755000px;}
.y87{bottom:484.095000px;}
.y98{bottom:484.275000px;}
.y37{bottom:487.155000px;}
.y6{bottom:489.855000px;}
.ybf{bottom:496.695000px;}
.y4b{bottom:498.135000px;}
.ye4{bottom:505.515000px;}
.y7d{bottom:508.215000px;}
.y131{bottom:512.175000px;}
.yaf{bottom:512.715000px;}
.y71{bottom:513.075000px;}
.y86{bottom:515.235000px;}
.y97{bottom:515.415000px;}
.y24{bottom:518.295000px;}
.yf5{bottom:521.715000px;}
.yfe{bottom:524.055000px;}
.ybe{bottom:527.835000px;}
.y4a{bottom:529.275000px;}
.ycf{bottom:539.355000px;}
.yae{bottom:543.855000px;}
.y70{bottom:544.215000px;}
.y85{bottom:546.195000px;}
.y96{bottom:546.375000px;}
.y23{bottom:549.255000px;}
.ye3{bottom:552.675000px;}
.y130{bottom:555.735000px;}
.y49{bottom:560.235000px;}
.yce{bottom:570.315000px;}
.y6f{bottom:575.175000px;}
.yf4{bottom:577.155000px;}
.y95{bottom:577.515000px;}
.yfd{bottom:579.315000px;}
.ybd{bottom:579.855000px;}
.y22{bottom:580.395000px;}
.y149{bottom:585.795000px;}
.y48{bottom:591.375000px;}
.yad{bottom:595.875000px;}
.y84{bottom:598.035000px;}
.y12f{bottom:599.295000px;}
.ycd{bottom:601.275000px;}
.ye2{bottom:606.135000px;}
.y6e{bottom:606.315000px;}
.y21{bottom:611.355000px;}
.ybc{bottom:619.995000px;}
.y12e{bottom:621.795000px;}
.y47{bottom:622.335000px;}
.yf3{bottom:623.415000px;}
.yfc{bottom:625.575000px;}
.yac{bottom:627.015000px;}
.ybb{bottom:628.815000px;}
.y94{bottom:629.175000px;}
.y148{bottom:631.695000px;}
.ycc{bottom:632.415000px;}
.y6d{bottom:637.275000px;}
.y83{bottom:638.895000px;}
.y20{bottom:642.495000px;}
.y46{bottom:653.505000px;}
.y147{bottom:654.045000px;}
.ye1{bottom:656.385000px;}
.yab{bottom:658.005000px;}
.ycb{bottom:663.405000px;}
.y12d{bottom:668.085000px;}
.y6c{bottom:668.445000px;}
.y93{bottom:673.125000px;}
.y1f{bottom:673.485000px;}
.y45{bottom:684.465000px;}
.yaa{bottom:689.145000px;}
.y36{bottom:694.185000px;}
.y82{bottom:694.545000px;}
.y146{bottom:697.785000px;}
.y6b{bottom:699.405000px;}
.y1e{bottom:704.625000px;}
.y12c{bottom:710.025000px;}
.y44{bottom:715.605000px;}
.ya9{bottom:720.105000px;}
.y3f{bottom:725.145000px;}
.y81{bottom:725.505000px;}
.y10c{bottom:727.845000px;}
.y6a{bottom:730.545000px;}
.y1d{bottom:735.585000px;}
.y117{bottom:736.485000px;}
.y35{bottom:746.565000px;}
.ya8{bottom:751.065000px;}
.y12b{bottom:753.585000px;}
.y80{bottom:756.645000px;}
.y69{bottom:761.505000px;}
.y145{bottom:763.665000px;}
.y1c{bottom:766.725000px;}
.y116{bottom:767.625000px;}
.y10b{bottom:774.105000px;}
.y3e{bottom:777.705000px;}
.ya7{bottom:782.205000px;}
.y144{bottom:785.985000px;}
.y7f{bottom:787.605000px;}
.y68{bottom:792.465000px;}
.y12a{bottom:797.145000px;}
.y34{bottom:798.585000px;}
.y43{bottom:808.665000px;}
.ya6{bottom:813.165000px;}
.y1b{bottom:818.385000px;}
.y7e{bottom:818.745000px;}
.y67{bottom:823.605000px;}
.yf9{bottom:823.785000px;}
.y33{bottom:829.725000px;}
.y42{bottom:839.805000px;}
.y129{bottom:840.525000px;}
.yf0{bottom:849.705000px;}
.y143{bottom:852.045000px;}
.y32{bottom:860.685000px;}
.y128{bottom:862.845000px;}
.ya5{bottom:865.005000px;}
.y1a{bottom:870.765000px;}
.y66{bottom:875.265000px;}
.yef{bottom:880.845000px;}
.y31{bottom:891.825000px;}
.y142{bottom:895.830000px;}
.y41{bottom:901.950000px;}
.y127{bottom:906.630000px;}
.ya4{bottom:910.410000px;}
.y115{bottom:911.850000px;}
.yd1{bottom:917.070000px;}
.y141{bottom:918.150000px;}
.y19{bottom:922.830000px;}
.y65{bottom:927.510000px;}
.y126{bottom:928.950000px;}
.y40{bottom:932.910000px;}
.y140{bottom:940.650000px;}
.y114{bottom:942.990000px;}
.y18{bottom:953.970000px;}
.y5{bottom:960.990000px;}
.y5c{bottom:963.870000px;}
.y64{bottom:966.030000px;}
.y63{bottom:970.350000px;}
.y125{bottom:972.690000px;}
.y113{bottom:973.950000px;}
.y13f{bottom:984.210000px;}
.y17{bottom:984.930000px;}
.y4{bottom:988.710000px;}
.y5b{bottom:995.010000px;}
.y112{bottom:1005.090000px;}
.y13e{bottom:1006.530000px;}
.y16{bottom:1016.070000px;}
.y124{bottom:1017.510000px;}
.y5a{bottom:1025.970000px;}
.y111{bottom:1036.050000px;}
.y3{bottom:1037.310000px;}
.y15{bottom:1047.030000px;}
.y13d{bottom:1050.270000px;}
.y59{bottom:1057.110000px;}
.y123{bottom:1061.070000px;}
.y13c{bottom:1072.590000px;}
.y14{bottom:1078.170000px;}
.y2{bottom:1085.910000px;}
.y110{bottom:1087.710000px;}
.ydd{bottom:1088.070000px;}
.y13b{bottom:1095.090000px;}
.y122{bottom:1107.330000px;}
.y13{bottom:1109.130000px;}
.y1{bottom:1134.510000px;}
.y13a{bottom:1138.830000px;}
.ydc{bottom:1139.910000px;}
.y12{bottom:1140.270000px;}
.h4{height:5.163750px;}
.h8{height:5.729063px;}
.hb{height:23.632383px;}
.h9{height:27.109688px;}
.ha{height:32.273438px;}
.hc{height:54.596250px;}
.hd{height:58.429688px;}
.he{height:59.343750px;}
.h7{height:63.949219px;}
.h5{height:64.546875px;}
.h6{height:65.884219px;}
.h3{height:85.052461px;}
.h2{height:85.847344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:42.660000px;}
.x7{left:127.656000px;}
.x1c{left:148.896000px;}
.x2{left:170.310000px;}
.x8{left:180.750000px;}
.x1{left:217.830000px;}
.x5{left:265.350000px;}
.x13{left:296.355000px;}
.x19{left:318.855000px;}
.x4{left:319.935000px;}
.xf{left:332.175000px;}
.x17{left:334.515000px;}
.xe{left:354.855000px;}
.x1b{left:364.935000px;}
.x11{left:384.915000px;}
.x15{left:412.635000px;}
.x9{left:436.215000px;}
.xc{left:437.655000px;}
.x3{left:446.475000px;}
.x1a{left:632.085000px;}
.x18{left:646.845000px;}
.x12{left:650.805000px;}
.x10{left:701.790000px;}
.x16{left:703.950000px;}
.xd{left:705.390000px;}
.x14{left:708.270000px;}
.x6{left:765.510000px;}
.xb{left:850.830000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.704000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls2{letter-spacing:1.280000pt;}
.ls4{letter-spacing:16.640000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws1{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.360000pt;}
.ws4{word-spacing:-15.296000pt;}
.ws0{word-spacing:0.000000pt;}
._16{margin-left:-2.126293pt;}
._1{margin-left:-1.056640pt;}
._0{width:0.919680pt;}
._2{width:1.997867pt;}
._6{width:2.944000pt;}
._7{width:4.352000pt;}
._1f{width:5.280640pt;}
._12{width:6.209280pt;}
._f{width:7.232000pt;}
._d{width:8.448000pt;}
._8{width:9.706667pt;}
._9{width:10.965333pt;}
._e{width:11.891413pt;}
._a{width:12.812587pt;}
._5{width:14.080000pt;}
._11{width:15.012693pt;}
._15{width:16.896000pt;}
._17{width:17.848960pt;}
._1c{width:18.874027pt;}
._24{width:20.017280pt;}
._14{width:20.956800pt;}
._13{width:22.048640pt;}
._10{width:23.264640pt;}
._b{width:24.256000pt;}
._c{width:25.216000pt;}
._21{width:26.699307pt;}
._18{width:27.712000pt;}
._19{width:28.714667pt;}
._2b{width:29.760000pt;}
._25{width:31.232000pt;}
._26{width:32.960000pt;}
._27{width:33.920000pt;}
._29{width:34.880000pt;}
._2a{width:35.816320pt;}
._1d{width:36.992000pt;}
._1e{width:38.272000pt;}
._1a{width:39.360000pt;}
._1b{width:40.704000pt;}
._2c{width:43.840000pt;}
._28{width:45.120000pt;}
._23{width:52.606720pt;}
._22{width:53.536640pt;}
._20{width:156.778667pt;}
._4{width:172.778667pt;}
._2e{width:1095.946667pt;}
._3{width:1271.946667pt;}
._2d{width:1298.186667pt;}
.fs1{font-size:5.120000pt;}
.fs7{font-size:21.120000pt;}
.fs5{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:99.040000pt;}
.ydb{bottom:100.160000pt;}
.y10a{bottom:100.960000pt;}
.y56{bottom:101.920000pt;}
.y92{bottom:108.000000pt;}
.ya3{bottom:108.160000pt;}
.y30{bottom:110.720000pt;}
.y10f{bottom:111.520000pt;}
.yba{bottom:114.880000pt;}
.y7c{bottom:115.040000pt;}
.y121{bottom:116.640000pt;}
.yca{bottom:119.200000pt;}
.yde{bottom:120.480000pt;}
.y139{bottom:123.360000pt;}
.ye0{bottom:124.000000pt;}
.y10{bottom:126.560000pt;}
.yd8{bottom:126.720000pt;}
.yf2{bottom:128.160000pt;}
.y109{bottom:128.640000pt;}
.y55{bottom:129.440000pt;}
.y91{bottom:135.680000pt;}
.ya2{bottom:135.840000pt;}
.y2f{bottom:138.400000pt;}
.yb9{bottom:142.426667pt;}
.y7b{bottom:142.746667pt;}
.yc9{bottom:146.906667pt;}
.yda{bottom:147.706667pt;}
.y62{bottom:148.186667pt;}
.yf{bottom:154.106667pt;}
.yf8{bottom:154.266667pt;}
.yd7{bottom:154.426667pt;}
.yee{bottom:154.746667pt;}
.y108{bottom:156.186667pt;}
.y54{bottom:157.146667pt;}
.y10e{bottom:160.666667pt;}
.y138{bottom:161.946667pt;}
.y90{bottom:163.226667pt;}
.ya1{bottom:163.386667pt;}
.y2e{bottom:165.946667pt;}
.y120{bottom:166.746667pt;}
.ydf{bottom:168.506667pt;}
.yf1{bottom:169.146667pt;}
.yb8{bottom:170.106667pt;}
.y7a{bottom:170.266667pt;}
.y61{bottom:175.706667pt;}
.ye{bottom:181.786667pt;}
.yd6{bottom:181.946667pt;}
.yed{bottom:182.266667pt;}
.y107{bottom:183.866667pt;}
.y53{bottom:184.666667pt;}
.yd9{bottom:188.666667pt;}
.ya0{bottom:191.066667pt;}
.yc8{bottom:193.146667pt;}
.y2d{bottom:193.626667pt;}
.y11f{bottom:194.426667pt;}
.yb7{bottom:197.626667pt;}
.y10d{bottom:201.786667pt;}
.y60{bottom:203.386667pt;}
.yd{bottom:209.306667pt;}
.y8f{bottom:209.466667pt;}
.yd5{bottom:209.626667pt;}
.yec{bottom:209.946667pt;}
.y106{bottom:211.386667pt;}
.y52{bottom:212.186667pt;}
.y79{bottom:216.666667pt;}
.y9f{bottom:218.586667pt;}
.yc7{bottom:220.666667pt;}
.y2c{bottom:221.146667pt;}
.y11e{bottom:221.946667pt;}
.yb6{bottom:225.306667pt;}
.y5f{bottom:230.906667pt;}
.yc{bottom:236.986667pt;}
.y8e{bottom:237.146667pt;}
.yeb{bottom:237.466667pt;}
.y105{bottom:239.066667pt;}
.yd0{bottom:239.866667pt;}
.y137{bottom:240.506667pt;}
.y78{bottom:244.186667pt;}
.y9e{bottom:246.266667pt;}
.yfb{bottom:247.386667pt;}
.yc6{bottom:248.346667pt;}
.y2b{bottom:248.826667pt;}
.y11d{bottom:249.626667pt;}
.yb5{bottom:252.826667pt;}
.y51{bottom:258.586667pt;}
.yb{bottom:264.506667pt;}
.y8d{bottom:264.666667pt;}
.yea{bottom:265.146667pt;}
.y104{bottom:266.586667pt;}
.y3d{bottom:267.386667pt;}
.y77{bottom:271.866667pt;}
.y9d{bottom:273.786667pt;}
.yc5{bottom:275.866667pt;}
.y2a{bottom:276.346667pt;}
.y11c{bottom:277.146667pt;}
.y136{bottom:279.386667pt;}
.yd4{bottom:283.066667pt;}
.y50{bottom:286.106667pt;}
.yfa{bottom:288.346667pt;}
.ya{bottom:292.186667pt;}
.y8c{bottom:292.346667pt;}
.ye9{bottom:292.666667pt;}
.y103{bottom:294.266667pt;}
.y3c{bottom:295.066667pt;}
.yb4{bottom:298.746667pt;}
.y135{bottom:299.226667pt;}
.y76{bottom:299.386667pt;}
.y9c{bottom:301.466667pt;}
.yc4{bottom:303.546667pt;}
.y29{bottom:304.026667pt;}
.y11b{bottom:304.826667pt;}
.y4f{bottom:313.786667pt;}
.y8b{bottom:319.866667pt;}
.ye8{bottom:320.346667pt;}
.y102{bottom:321.786667pt;}
.y3b{bottom:322.586667pt;}
.yd3{bottom:325.306667pt;}
.y75{bottom:326.906667pt;}
.y9b{bottom:328.986667pt;}
.yc3{bottom:331.066667pt;}
.y28{bottom:331.546667pt;}
.y11a{bottom:332.346667pt;}
.y134{bottom:337.946667pt;}
.y9{bottom:338.106667pt;}
.y4e{bottom:341.306667pt;}
.yb3{bottom:345.306667pt;}
.yf7{bottom:347.386667pt;}
.y8a{bottom:347.546667pt;}
.ye7{bottom:347.866667pt;}
.y101{bottom:349.466667pt;}
.y3a{bottom:350.266667pt;}
.yd2{bottom:353.946667pt;}
.y74{bottom:354.586667pt;}
.y133{bottom:357.786667pt;}
.yc2{bottom:358.746667pt;}
.y27{bottom:359.226667pt;}
.y119{bottom:360.026667pt;}
.y4d{bottom:369.026667pt;}
.yb2{bottom:373.026667pt;}
.y89{bottom:375.106667pt;}
.y9a{bottom:375.266667pt;}
.ye6{bottom:375.586667pt;}
.y100{bottom:377.026667pt;}
.y58{bottom:377.506667pt;}
.y39{bottom:377.826667pt;}
.y8{bottom:378.306667pt;}
.y73{bottom:382.146667pt;}
.yc1{bottom:386.306667pt;}
.y26{bottom:386.786667pt;}
.y5e{bottom:387.586667pt;}
.y7{bottom:395.106667pt;}
.y118{bottom:396.226667pt;}
.y4c{bottom:396.546667pt;}
.y132{bottom:396.706667pt;}
.yb1{bottom:400.546667pt;}
.y88{bottom:402.786667pt;}
.y99{bottom:402.946667pt;}
.ye5{bottom:403.106667pt;}
.y38{bottom:405.506667pt;}
.y72{bottom:409.826667pt;}
.yc0{bottom:413.986667pt;}
.y25{bottom:414.466667pt;}
.y5d{bottom:415.266667pt;}
.yf6{bottom:421.026667pt;}
.yff{bottom:423.266667pt;}
.y57{bottom:424.226667pt;}
.yb0{bottom:428.226667pt;}
.y87{bottom:430.306667pt;}
.y98{bottom:430.466667pt;}
.y37{bottom:433.026667pt;}
.y6{bottom:435.426667pt;}
.ybf{bottom:441.506667pt;}
.y4b{bottom:442.786667pt;}
.ye4{bottom:449.346667pt;}
.y7d{bottom:451.746667pt;}
.y131{bottom:455.266667pt;}
.yaf{bottom:455.746667pt;}
.y71{bottom:456.066667pt;}
.y86{bottom:457.986667pt;}
.y97{bottom:458.146667pt;}
.y24{bottom:460.706667pt;}
.yf5{bottom:463.746667pt;}
.yfe{bottom:465.826667pt;}
.ybe{bottom:469.186667pt;}
.y4a{bottom:470.466667pt;}
.ycf{bottom:479.426667pt;}
.yae{bottom:483.426667pt;}
.y70{bottom:483.746667pt;}
.y85{bottom:485.506667pt;}
.y96{bottom:485.666667pt;}
.y23{bottom:488.226667pt;}
.ye3{bottom:491.266667pt;}
.y130{bottom:493.986667pt;}
.y49{bottom:497.986667pt;}
.yce{bottom:506.946667pt;}
.y6f{bottom:511.266667pt;}
.yf4{bottom:513.026667pt;}
.y95{bottom:513.346667pt;}
.yfd{bottom:514.946667pt;}
.ybd{bottom:515.426667pt;}
.y22{bottom:515.906667pt;}
.y149{bottom:520.706667pt;}
.y48{bottom:525.666667pt;}
.yad{bottom:529.666667pt;}
.y84{bottom:531.586667pt;}
.y12f{bottom:532.706667pt;}
.ycd{bottom:534.466667pt;}
.ye2{bottom:538.786667pt;}
.y6e{bottom:538.946667pt;}
.y21{bottom:543.426667pt;}
.ybc{bottom:551.106667pt;}
.y12e{bottom:552.706667pt;}
.y47{bottom:553.186667pt;}
.yf3{bottom:554.146667pt;}
.yfc{bottom:556.066667pt;}
.yac{bottom:557.346667pt;}
.ybb{bottom:558.946667pt;}
.y94{bottom:559.266667pt;}
.y148{bottom:561.506667pt;}
.ycc{bottom:562.146667pt;}
.y6d{bottom:566.466667pt;}
.y83{bottom:567.906667pt;}
.y20{bottom:571.106667pt;}
.y46{bottom:580.893333pt;}
.y147{bottom:581.373333pt;}
.ye1{bottom:583.453333pt;}
.yab{bottom:584.893333pt;}
.ycb{bottom:589.693333pt;}
.y12d{bottom:593.853333pt;}
.y6c{bottom:594.173333pt;}
.y93{bottom:598.333333pt;}
.y1f{bottom:598.653333pt;}
.y45{bottom:608.413333pt;}
.yaa{bottom:612.573333pt;}
.y36{bottom:617.053333pt;}
.y82{bottom:617.373333pt;}
.y146{bottom:620.253333pt;}
.y6b{bottom:621.693333pt;}
.y1e{bottom:626.333333pt;}
.y12c{bottom:631.133333pt;}
.y44{bottom:636.093333pt;}
.ya9{bottom:640.093333pt;}
.y3f{bottom:644.573333pt;}
.y81{bottom:644.893333pt;}
.y10c{bottom:646.973333pt;}
.y6a{bottom:649.373333pt;}
.y1d{bottom:653.853333pt;}
.y117{bottom:654.653333pt;}
.y35{bottom:663.613333pt;}
.ya8{bottom:667.613333pt;}
.y12b{bottom:669.853333pt;}
.y80{bottom:672.573333pt;}
.y69{bottom:676.893333pt;}
.y145{bottom:678.813333pt;}
.y1c{bottom:681.533333pt;}
.y116{bottom:682.333333pt;}
.y10b{bottom:688.093333pt;}
.y3e{bottom:691.293333pt;}
.ya7{bottom:695.293333pt;}
.y144{bottom:698.653333pt;}
.y7f{bottom:700.093333pt;}
.y68{bottom:704.413333pt;}
.y12a{bottom:708.573333pt;}
.y34{bottom:709.853333pt;}
.y43{bottom:718.813333pt;}
.ya6{bottom:722.813333pt;}
.y1b{bottom:727.453333pt;}
.y7e{bottom:727.773333pt;}
.y67{bottom:732.093333pt;}
.yf9{bottom:732.253333pt;}
.y33{bottom:737.533333pt;}
.y42{bottom:746.493333pt;}
.y129{bottom:747.133333pt;}
.yf0{bottom:755.293333pt;}
.y143{bottom:757.373333pt;}
.y32{bottom:765.053333pt;}
.y128{bottom:766.973333pt;}
.ya5{bottom:768.893333pt;}
.y1a{bottom:774.013333pt;}
.y66{bottom:778.013333pt;}
.yef{bottom:782.973333pt;}
.y31{bottom:792.733333pt;}
.y142{bottom:796.293333pt;}
.y41{bottom:801.733333pt;}
.y127{bottom:805.893333pt;}
.ya4{bottom:809.253333pt;}
.y115{bottom:810.533333pt;}
.yd1{bottom:815.173333pt;}
.y141{bottom:816.133333pt;}
.y19{bottom:820.293333pt;}
.y65{bottom:824.453333pt;}
.y126{bottom:825.733333pt;}
.y40{bottom:829.253333pt;}
.y140{bottom:836.133333pt;}
.y114{bottom:838.213333pt;}
.y18{bottom:847.973333pt;}
.y5{bottom:854.213333pt;}
.y5c{bottom:856.773333pt;}
.y64{bottom:858.693333pt;}
.y63{bottom:862.533333pt;}
.y125{bottom:864.613333pt;}
.y113{bottom:865.733333pt;}
.y13f{bottom:874.853333pt;}
.y17{bottom:875.493333pt;}
.y4{bottom:878.853333pt;}
.y5b{bottom:884.453333pt;}
.y112{bottom:893.413333pt;}
.y13e{bottom:894.693333pt;}
.y16{bottom:903.173333pt;}
.y124{bottom:904.453333pt;}
.y5a{bottom:911.973333pt;}
.y111{bottom:920.933333pt;}
.y3{bottom:922.053333pt;}
.y15{bottom:930.693333pt;}
.y13d{bottom:933.573333pt;}
.y59{bottom:939.653333pt;}
.y123{bottom:943.173333pt;}
.y13c{bottom:953.413333pt;}
.y14{bottom:958.373333pt;}
.y2{bottom:965.253333pt;}
.y110{bottom:966.853333pt;}
.ydd{bottom:967.173333pt;}
.y13b{bottom:973.413333pt;}
.y122{bottom:984.293333pt;}
.y13{bottom:985.893333pt;}
.y1{bottom:1008.453333pt;}
.y13a{bottom:1012.293333pt;}
.ydc{bottom:1013.253333pt;}
.y12{bottom:1013.573333pt;}
.h4{height:4.590000pt;}
.h8{height:5.092500pt;}
.hb{height:21.006562pt;}
.h9{height:24.097500pt;}
.ha{height:28.687500pt;}
.hc{height:48.530000pt;}
.hd{height:51.937500pt;}
.he{height:52.750000pt;}
.h7{height:56.843750pt;}
.h5{height:57.375000pt;}
.h6{height:58.563750pt;}
.h3{height:75.602187pt;}
.h2{height:76.308750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:37.920000pt;}
.x7{left:113.472000pt;}
.x1c{left:132.352000pt;}
.x2{left:151.386667pt;}
.x8{left:160.666667pt;}
.x1{left:193.626667pt;}
.x5{left:235.866667pt;}
.x13{left:263.426667pt;}
.x19{left:283.426667pt;}
.x4{left:284.386667pt;}
.xf{left:295.266667pt;}
.x17{left:297.346667pt;}
.xe{left:315.426667pt;}
.x1b{left:324.386667pt;}
.x11{left:342.146667pt;}
.x15{left:366.786667pt;}
.x9{left:387.746667pt;}
.xc{left:389.026667pt;}
.x3{left:396.866667pt;}
.x1a{left:561.853333pt;}
.x18{left:574.973333pt;}
.x12{left:578.493333pt;}
.x10{left:623.813333pt;}
.x16{left:625.733333pt;}
.xd{left:627.013333pt;}
.x14{left:629.573333pt;}
.x6{left:680.453333pt;}
.xb{left:756.293333pt;}
}

