
    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_e86714bd1fd1cd5a7510ffee.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_146e3345fb6f892a87eefc0c.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bf4b05a4ce184554f916002e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_30d45fc4dc2c6344feac08a6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_14aac0d9e6a91512054343d8.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;}
.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);}
.v5{vertical-align:-76.620000px;}
.v7{vertical-align:-72.180000px;}
.v6{vertical-align:-67.620000px;}
.va{vertical-align:-63.120000px;}
.v8{vertical-align:-58.620000px;}
.v2{vertical-align:-40.500000px;}
.v4{vertical-align:-27.000000px;}
.v9{vertical-align:-22.500000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:22.680000px;}
.v3{vertical-align:27.000000px;}
.v1{vertical-align:40.500000px;}
.ls25{letter-spacing:-3.474000px;}
.ls16{letter-spacing:-2.760000px;}
.ls22{letter-spacing:-1.740000px;}
.ls6{letter-spacing:-1.512000px;}
.ls15{letter-spacing:-1.482000px;}
.ls11{letter-spacing:-1.476000px;}
.ls21{letter-spacing:-0.256200px;}
.lsa{letter-spacing:-0.037500px;}
.ls5{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:1.482000px;}
.ls10{letter-spacing:1.734000px;}
.ls1f{letter-spacing:1.993500px;}
.ls18{letter-spacing:2.113500px;}
.ls1a{letter-spacing:2.164500px;}
.ls13{letter-spacing:2.173500px;}
.ls8{letter-spacing:2.238000px;}
.ls1c{letter-spacing:2.244000px;}
.ls9{letter-spacing:2.250000px;}
.ls4{letter-spacing:2.400000px;}
.ls24{letter-spacing:3.018000px;}
.ls12{letter-spacing:3.019500px;}
.ls26{letter-spacing:3.144000px;}
.lsf{letter-spacing:3.375000px;}
.ls1b{letter-spacing:3.378000px;}
.ls19{letter-spacing:3.495000px;}
.ls14{letter-spacing:4.500000px;}
.ls3{letter-spacing:9.000000px;}
.ls23{letter-spacing:16.995000px;}
.ls1e{letter-spacing:22.462500px;}
.ls17{letter-spacing:25.875000px;}
.ls2{letter-spacing:71.025000px;}
.lsd{letter-spacing:72.150000px;}
.lse{letter-spacing:93.675000px;}
.ls0{letter-spacing:625.395000px;}
.ls20{letter-spacing:923.992500px;}
.lsb{letter-spacing:950.992500px;}
.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;}
}
.ws1{word-spacing:-22.537500px;}
.ws4{word-spacing:-16.875000px;}
.wsa{word-spacing:-16.359000px;}
.ws2{word-spacing:-14.625000px;}
.wsc{word-spacing:-13.518000px;}
.ws5{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.143000px;}
.wse{word-spacing:-12.885000px;}
.ws6{word-spacing:-12.375000px;}
.wsb{word-spacing:-12.369000px;}
.ws3{word-spacing:-12.363000px;}
.ws8{word-spacing:-12.024000px;}
.ws0{word-spacing:-11.988000px;}
.wsd{word-spacing:-11.865000px;}
.wsf{word-spacing:-9.000000px;}
.ws7{word-spacing:0.000000px;}
._16{margin-left:-8.850000px;}
._10{margin-left:-7.015500px;}
._4{margin-left:-5.318850px;}
._6{margin-left:-3.638100px;}
._5{margin-left:-2.515950px;}
._0{margin-left:-1.512000px;}
._2{width:1.458000px;}
._1{width:3.024000px;}
._3{width:4.950000px;}
._8{width:6.300150px;}
._a{width:7.359000px;}
._7{width:8.364000px;}
._d{width:9.648000px;}
._15{width:10.919550px;}
._f{width:12.078450px;}
._11{width:13.080900px;}
._18{width:15.930450px;}
._b{width:17.032500px;}
._17{width:18.036000px;}
._20{width:20.368200px;}
._c{width:21.449550px;}
._1c{width:22.888350px;}
._21{width:24.765900px;}
._e{width:25.947750px;}
._1f{width:29.627550px;}
._1b{width:30.852000px;}
._19{width:32.377950px;}
._23{width:34.413000px;}
._1a{width:35.581950px;}
._14{width:39.504450px;}
._13{width:40.779000px;}
._12{width:166.384500px;}
._9{width:413.952450px;}
._1d{width:604.788000px;}
._22{width:928.500000px;}
._1e{width:955.500000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.500000px;}
.fs7{font-size:36.000000px;}
.fs4{font-size:40.500000px;}
.fs6{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:58.500000px;}
.fs1{font-size:72.150000px;}
.fs3{font-size:90.150000px;}
.y0{bottom:0.000000px;}
.y3{bottom:56.325000px;}
.y50{bottom:76.612500px;}
.y27{bottom:150.930000px;}
.y4f{bottom:152.055000px;}
.yd4{bottom:153.180000px;}
.ye5{bottom:155.430000px;}
.yb6{bottom:158.805000px;}
.y8c{bottom:159.930000px;}
.y94{bottom:163.305000px;}
.y26{bottom:165.555000px;}
.yb9{bottom:166.680000px;}
.y4e{bottom:167.805000px;}
.yfe{bottom:168.930000px;}
.yd3{bottom:170.055000px;}
.ye4{bottom:172.305000px;}
.yb5{bottom:175.680000px;}
.y8b{bottom:177.975000px;}
.y25{bottom:179.100000px;}
.y67{bottom:181.350000px;}
.y4d{bottom:183.600000px;}
.yb8{bottom:184.725000px;}
.yfd{bottom:185.850000px;}
.yd2{bottom:188.100000px;}
.ye3{bottom:189.225000px;}
.y24{bottom:192.600000px;}
.y10b{bottom:193.725000px;}
.y8a{bottom:194.850000px;}
.y66{bottom:198.225000px;}
.y4c{bottom:199.350000px;}
.yb7{bottom:201.600000px;}
.yfc{bottom:203.850000px;}
.yd1{bottom:204.975000px;}
.y23{bottom:206.100000px;}
.ye2{bottom:207.225000px;}
.y10a{bottom:209.475000px;}
.yb4{bottom:210.600000px;}
.y89{bottom:211.755000px;}
.y65{bottom:215.130000px;}
.y4b{bottom:218.505000px;}
.yfb{bottom:220.755000px;}
.yd0{bottom:221.880000px;}
.ye1{bottom:224.130000px;}
.y22{bottom:226.380000px;}
.yb3{bottom:227.505000px;}
.y88{bottom:229.755000px;}
.y93{bottom:233.130000px;}
.y64{bottom:234.255000px;}
.y21{bottom:235.380000px;}
.y4a{bottom:236.505000px;}
.yfa{bottom:237.630000px;}
.ycf{bottom:239.880000px;}
.ye0{bottom:241.005000px;}
.yb2{bottom:244.380000px;}
.y87{bottom:246.675000px;}
.y92{bottom:250.050000px;}
.y49{bottom:253.425000px;}
.y104{bottom:254.550000px;}
.yf9{bottom:255.675000px;}
.yce{bottom:256.800000px;}
.ydf{bottom:259.050000px;}
.yb1{bottom:262.425000px;}
.y86{bottom:263.550000px;}
.y91{bottom:266.925000px;}
.y20{bottom:269.175000px;}
.y48{bottom:270.300000px;}
.y109{bottom:271.425000px;}
.yf8{bottom:272.550000px;}
.ycd{bottom:273.675000px;}
.y103{bottom:274.800000px;}
.yde{bottom:275.925000px;}
.yb0{bottom:279.300000px;}
.y85{bottom:281.595000px;}
.y1f{bottom:284.970000px;}
.y108{bottom:287.220000px;}
.y47{bottom:288.345000px;}
.yf7{bottom:289.470000px;}
.y102{bottom:290.595000px;}
.ycc{bottom:291.720000px;}
.ydd{bottom:292.845000px;}
.yaf{bottom:296.220000px;}
.y84{bottom:298.470000px;}
.y127{bottom:300.720000px;}
.y90{bottom:301.845000px;}
.y46{bottom:305.220000px;}
.y101{bottom:306.345000px;}
.yf6{bottom:307.470000px;}
.ycb{bottom:308.595000px;}
.ydc{bottom:310.845000px;}
.yae{bottom:314.220000px;}
.y1e{bottom:315.375000px;}
.y126{bottom:316.500000px;}
.y107{bottom:317.625000px;}
.y8f{bottom:318.750000px;}
.y100{bottom:321.000000px;}
.y45{bottom:322.125000px;}
.yf5{bottom:324.375000px;}
.yca{bottom:325.500000px;}
.ydb{bottom:327.750000px;}
.yad{bottom:331.125000px;}
.y125{bottom:332.250000px;}
.y1d{bottom:333.375000px;}
.y8e{bottom:336.750000px;}
.yff{bottom:337.875000px;}
.y44{bottom:340.125000px;}
.yf4{bottom:341.250000px;}
.yc9{bottom:343.500000px;}
.yda{bottom:345.750000px;}
.y124{bottom:346.875000px;}
.yac{bottom:348.000000px;}
.y1c{bottom:350.280000px;}
.y8d{bottom:354.780000px;}
.y63{bottom:357.030000px;}
.yf3{bottom:359.280000px;}
.yc8{bottom:360.405000px;}
.y123{bottom:362.655000px;}
.yab{bottom:366.030000px;}
.y1b{bottom:367.155000px;}
.y106{bottom:368.280000px;}
.y43{bottom:373.905000px;}
.yf2{bottom:376.155000px;}
.yc7{bottom:377.280000px;}
.y122{bottom:378.405000px;}
.yd9{bottom:381.780000px;}
.yaa{bottom:382.905000px;}
.y1a{bottom:385.200000px;}
.y83{bottom:386.325000px;}
.y105{bottom:389.700000px;}
.y42{bottom:391.950000px;}
.yf1{bottom:393.075000px;}
.y121{bottom:394.200000px;}
.yc6{bottom:395.325000px;}
.yd8{bottom:397.575000px;}
.ya9{bottom:399.825000px;}
.y19{bottom:402.075000px;}
.y82{bottom:405.450000px;}
.y41{bottom:407.700000px;}
.y62{bottom:408.825000px;}
.y120{bottom:409.950000px;}
.yf0{bottom:411.075000px;}
.yc5{bottom:412.200000px;}
.yd7{bottom:413.325000px;}
.ya8{bottom:417.870000px;}
.y18{bottom:418.995000px;}
.y81{bottom:421.245000px;}
.y40{bottom:423.495000px;}
.y11f{bottom:424.620000px;}
.y61{bottom:425.745000px;}
.yd6{bottom:427.995000px;}
.yc4{bottom:429.120000px;}
.ya7{bottom:434.745000px;}
.y17{bottom:436.995000px;}
.y3f{bottom:439.245000px;}
.y11e{bottom:440.370000px;}
.y60{bottom:443.745000px;}
.yef{bottom:445.995000px;}
.yc3{bottom:447.120000px;}
.ya6{bottom:451.620000px;}
.y80{bottom:452.775000px;}
.y16{bottom:453.900000px;}
.y11d{bottom:456.150000px;}
.y5f{bottom:460.650000px;}
.yc2{bottom:464.025000px;}
.yee{bottom:466.275000px;}
.y7f{bottom:468.525000px;}
.y3e{bottom:469.650000px;}
.y11c{bottom:471.900000px;}
.yd5{bottom:475.275000px;}
.y5e{bottom:477.525000px;}
.yc1{bottom:480.900000px;}
.yed{bottom:482.025000px;}
.y7e{bottom:483.150000px;}
.y3d{bottom:485.400000px;}
.ya5{bottom:486.570000px;}
.y15{bottom:488.820000px;}
.y5d{bottom:495.570000px;}
.yec{bottom:497.820000px;}
.y7d{bottom:498.945000px;}
.y3c{bottom:501.195000px;}
.y11b{bottom:502.320000px;}
.ya4{bottom:503.445000px;}
.y5c{bottom:512.445000px;}
.y7c{bottom:515.820000px;}
.y3b{bottom:516.945000px;}
.y11a{bottom:518.070000px;}
.ya3{bottom:521.475000px;}
.y14{bottom:522.600000px;}
.yeb{bottom:528.225000px;}
.y5b{bottom:529.350000px;}
.y3a{bottom:531.600000px;}
.y7b{bottom:532.725000px;}
.y119{bottom:533.850000px;}
.ya2{bottom:538.350000px;}
.y13{bottom:540.600000px;}
.yea{bottom:545.100000px;}
.y39{bottom:547.350000px;}
.y118{bottom:549.600000px;}
.y7a{bottom:550.725000px;}
.ya1{bottom:555.225000px;}
.ye9{bottom:556.380000px;}
.y12{bottom:557.505000px;}
.y38{bottom:563.130000px;}
.y5a{bottom:564.255000px;}
.y79{bottom:567.630000px;}
.ye8{bottom:572.130000px;}
.ya0{bottom:573.255000px;}
.y11{bottom:574.380000px;}
.y37{bottom:578.880000px;}
.y117{bottom:580.005000px;}
.y59{bottom:581.130000px;}
.y78{bottom:584.505000px;}
.yc0{bottom:585.630000px;}
.ye7{bottom:586.755000px;}
.y9f{bottom:590.175000px;}
.y10{bottom:592.425000px;}
.y116{bottom:595.800000px;}
.y58{bottom:599.175000px;}
.y77{bottom:602.550000px;}
.ybf{bottom:605.925000px;}
.y9e{bottom:607.050000px;}
.yf{bottom:609.300000px;}
.y115{bottom:611.550000px;}
.y57{bottom:616.050000px;}
.ye6{bottom:618.300000px;}
.y76{bottom:619.425000px;}
.ybe{bottom:621.675000px;}
.y36{bottom:625.095000px;}
.ye{bottom:627.345000px;}
.y56{bottom:632.970000px;}
.y75{bottom:636.345000px;}
.ybd{bottom:637.470000px;}
.y35{bottom:640.845000px;}
.y9d{bottom:641.970000px;}
.y55{bottom:650.970000px;}
.ybc{bottom:653.220000px;}
.y74{bottom:654.345000px;}
.y34{bottom:656.595000px;}
.y114{bottom:657.720000px;}
.y9c{bottom:658.875000px;}
.yd{bottom:667.875000px;}
.y73{bottom:671.250000px;}
.y33{bottom:672.375000px;}
.y113{bottom:673.500000px;}
.y9b{bottom:676.875000px;}
.ybb{bottom:683.625000px;}
.yc{bottom:684.750000px;}
.y32{bottom:687.000000px;}
.y72{bottom:688.125000px;}
.y112{bottom:689.250000px;}
.y9a{bottom:693.780000px;}
.yba{bottom:700.530000px;}
.yb{bottom:702.780000px;}
.y111{bottom:705.030000px;}
.y71{bottom:706.155000px;}
.y99{bottom:710.655000px;}
.y31{bottom:718.530000px;}
.ya{bottom:719.655000px;}
.y70{bottom:723.030000px;}
.y98{bottom:728.700000px;}
.y30{bottom:734.325000px;}
.y110{bottom:735.450000px;}
.y9{bottom:736.575000px;}
.y6f{bottom:741.075000px;}
.y97{bottom:744.450000px;}
.y2f{bottom:750.075000px;}
.y10f{bottom:751.200000px;}
.y8{bottom:754.575000px;}
.y96{bottom:760.200000px;}
.y6e{bottom:761.325000px;}
.y2e{bottom:764.745000px;}
.y10e{bottom:766.995000px;}
.y54{bottom:771.495000px;}
.y7{bottom:774.870000px;}
.y95{bottom:775.995000px;}
.y6d{bottom:777.120000px;}
.y2d{bottom:780.495000px;}
.y10d{bottom:782.745000px;}
.y53{bottom:788.370000px;}
.y6c{bottom:792.870000px;}
.y2c{bottom:795.120000px;}
.y10c{bottom:797.400000px;}
.y6{bottom:800.775000px;}
.y52{bottom:806.400000px;}
.y6b{bottom:808.650000px;}
.y2b{bottom:813.150000px;}
.y6a{bottom:823.275000px;}
.y51{bottom:824.400000px;}
.y5{bottom:826.650000px;}
.y2a{bottom:828.900000px;}
.y69{bottom:840.195000px;}
.y29{bottom:844.695000px;}
.y4{bottom:852.570000px;}
.y68{bottom:858.195000px;}
.y28{bottom:860.445000px;}
.y2{bottom:926.880000px;}
.y1{bottom:944.925000px;}
.ha{height:30.915527px;}
.hd{height:37.520508px;}
.h10{height:40.618652px;}
.he{height:40.647217px;}
.hb{height:48.581543px;}
.h12{height:52.971680px;}
.h9{height:52.998047px;}
.hc{height:54.421875px;}
.h3{height:57.385986px;}
.h7{height:57.414551px;}
.h11{height:58.012031px;}
.hf{height:58.957031px;}
.h8{height:66.748535px;}
.h2{height:70.811279px;}
.h5{height:88.477295px;}
.h4{height:90.854297px;}
.h6{height:97.914551px;}
.h0{height:1020.375000px;}
.h1{height:1020.750000px;}
.w0{width:723.375000px;}
.w1{width:723.750000px;}
.x0{left:0.000000px;}
.x2{left:107.025000px;}
.x1{left:111.562500px;}
.xe{left:117.187500px;}
.x3{left:121.687500px;}
.x4{left:125.062500px;}
.xc{left:128.437500px;}
.xd{left:134.100000px;}
.x10{left:144.225000px;}
.x7{left:157.770000px;}
.xf{left:160.020000px;}
.x5{left:198.300000px;}
.xa{left:267.030000px;}
.x9{left:286.200000px;}
.x8{left:294.075000px;}
.x6{left:362.820000px;}
.xb{left:368.445000px;}
@media print{
.v5{vertical-align:-68.106667pt;}
.v7{vertical-align:-64.160000pt;}
.v6{vertical-align:-60.106667pt;}
.va{vertical-align:-56.106667pt;}
.v8{vertical-align:-52.106667pt;}
.v2{vertical-align:-36.000000pt;}
.v4{vertical-align:-24.000000pt;}
.v9{vertical-align:-20.000000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:20.160000pt;}
.v3{vertical-align:24.000000pt;}
.v1{vertical-align:36.000000pt;}
.ls25{letter-spacing:-3.088000pt;}
.ls16{letter-spacing:-2.453333pt;}
.ls22{letter-spacing:-1.546667pt;}
.ls6{letter-spacing:-1.344000pt;}
.ls15{letter-spacing:-1.317333pt;}
.ls11{letter-spacing:-1.312000pt;}
.ls21{letter-spacing:-0.227733pt;}
.lsa{letter-spacing:-0.033333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:1.317333pt;}
.ls10{letter-spacing:1.541333pt;}
.ls1f{letter-spacing:1.772000pt;}
.ls18{letter-spacing:1.878667pt;}
.ls1a{letter-spacing:1.924000pt;}
.ls13{letter-spacing:1.932000pt;}
.ls8{letter-spacing:1.989333pt;}
.ls1c{letter-spacing:1.994667pt;}
.ls9{letter-spacing:2.000000pt;}
.ls4{letter-spacing:2.133333pt;}
.ls24{letter-spacing:2.682667pt;}
.ls12{letter-spacing:2.684000pt;}
.ls26{letter-spacing:2.794667pt;}
.lsf{letter-spacing:3.000000pt;}
.ls1b{letter-spacing:3.002667pt;}
.ls19{letter-spacing:3.106667pt;}
.ls14{letter-spacing:4.000000pt;}
.ls3{letter-spacing:8.000000pt;}
.ls23{letter-spacing:15.106667pt;}
.ls1e{letter-spacing:19.966667pt;}
.ls17{letter-spacing:23.000000pt;}
.ls2{letter-spacing:63.133333pt;}
.lsd{letter-spacing:64.133333pt;}
.lse{letter-spacing:83.266667pt;}
.ls0{letter-spacing:555.906667pt;}
.ls20{letter-spacing:821.326667pt;}
.lsb{letter-spacing:845.326667pt;}
.ws1{word-spacing:-20.033333pt;}
.ws4{word-spacing:-15.000000pt;}
.wsa{word-spacing:-14.541333pt;}
.ws2{word-spacing:-13.000000pt;}
.wsc{word-spacing:-12.016000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.682667pt;}
.wse{word-spacing:-11.453333pt;}
.ws6{word-spacing:-11.000000pt;}
.wsb{word-spacing:-10.994667pt;}
.ws3{word-spacing:-10.989333pt;}
.ws8{word-spacing:-10.688000pt;}
.ws0{word-spacing:-10.656000pt;}
.wsd{word-spacing:-10.546667pt;}
.wsf{word-spacing:-8.000000pt;}
.ws7{word-spacing:0.000000pt;}
._16{margin-left:-7.866667pt;}
._10{margin-left:-6.236000pt;}
._4{margin-left:-4.727867pt;}
._6{margin-left:-3.233867pt;}
._5{margin-left:-2.236400pt;}
._0{margin-left:-1.344000pt;}
._2{width:1.296000pt;}
._1{width:2.688000pt;}
._3{width:4.400000pt;}
._8{width:5.600133pt;}
._a{width:6.541333pt;}
._7{width:7.434667pt;}
._d{width:8.576000pt;}
._15{width:9.706267pt;}
._f{width:10.736400pt;}
._11{width:11.627467pt;}
._18{width:14.160400pt;}
._b{width:15.140000pt;}
._17{width:16.032000pt;}
._20{width:18.105067pt;}
._c{width:19.066267pt;}
._1c{width:20.345200pt;}
._21{width:22.014133pt;}
._e{width:23.064667pt;}
._1f{width:26.335600pt;}
._1b{width:27.424000pt;}
._19{width:28.780400pt;}
._23{width:30.589333pt;}
._1a{width:31.628400pt;}
._14{width:35.115067pt;}
._13{width:36.248000pt;}
._12{width:147.897333pt;}
._9{width:367.957733pt;}
._1d{width:537.589333pt;}
._22{width:825.333333pt;}
._1e{width:849.333333pt;}
.fs5{font-size:28.000000pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:36.000000pt;}
.fs6{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:52.000000pt;}
.fs1{font-size:64.133333pt;}
.fs3{font-size:80.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:50.066667pt;}
.y50{bottom:68.100000pt;}
.y27{bottom:134.160000pt;}
.y4f{bottom:135.160000pt;}
.yd4{bottom:136.160000pt;}
.ye5{bottom:138.160000pt;}
.yb6{bottom:141.160000pt;}
.y8c{bottom:142.160000pt;}
.y94{bottom:145.160000pt;}
.y26{bottom:147.160000pt;}
.yb9{bottom:148.160000pt;}
.y4e{bottom:149.160000pt;}
.yfe{bottom:150.160000pt;}
.yd3{bottom:151.160000pt;}
.ye4{bottom:153.160000pt;}
.yb5{bottom:156.160000pt;}
.y8b{bottom:158.200000pt;}
.y25{bottom:159.200000pt;}
.y67{bottom:161.200000pt;}
.y4d{bottom:163.200000pt;}
.yb8{bottom:164.200000pt;}
.yfd{bottom:165.200000pt;}
.yd2{bottom:167.200000pt;}
.ye3{bottom:168.200000pt;}
.y24{bottom:171.200000pt;}
.y10b{bottom:172.200000pt;}
.y8a{bottom:173.200000pt;}
.y66{bottom:176.200000pt;}
.y4c{bottom:177.200000pt;}
.yb7{bottom:179.200000pt;}
.yfc{bottom:181.200000pt;}
.yd1{bottom:182.200000pt;}
.y23{bottom:183.200000pt;}
.ye2{bottom:184.200000pt;}
.y10a{bottom:186.200000pt;}
.yb4{bottom:187.200000pt;}
.y89{bottom:188.226667pt;}
.y65{bottom:191.226667pt;}
.y4b{bottom:194.226667pt;}
.yfb{bottom:196.226667pt;}
.yd0{bottom:197.226667pt;}
.ye1{bottom:199.226667pt;}
.y22{bottom:201.226667pt;}
.yb3{bottom:202.226667pt;}
.y88{bottom:204.226667pt;}
.y93{bottom:207.226667pt;}
.y64{bottom:208.226667pt;}
.y21{bottom:209.226667pt;}
.y4a{bottom:210.226667pt;}
.yfa{bottom:211.226667pt;}
.ycf{bottom:213.226667pt;}
.ye0{bottom:214.226667pt;}
.yb2{bottom:217.226667pt;}
.y87{bottom:219.266667pt;}
.y92{bottom:222.266667pt;}
.y49{bottom:225.266667pt;}
.y104{bottom:226.266667pt;}
.yf9{bottom:227.266667pt;}
.yce{bottom:228.266667pt;}
.ydf{bottom:230.266667pt;}
.yb1{bottom:233.266667pt;}
.y86{bottom:234.266667pt;}
.y91{bottom:237.266667pt;}
.y20{bottom:239.266667pt;}
.y48{bottom:240.266667pt;}
.y109{bottom:241.266667pt;}
.yf8{bottom:242.266667pt;}
.ycd{bottom:243.266667pt;}
.y103{bottom:244.266667pt;}
.yde{bottom:245.266667pt;}
.yb0{bottom:248.266667pt;}
.y85{bottom:250.306667pt;}
.y1f{bottom:253.306667pt;}
.y108{bottom:255.306667pt;}
.y47{bottom:256.306667pt;}
.yf7{bottom:257.306667pt;}
.y102{bottom:258.306667pt;}
.ycc{bottom:259.306667pt;}
.ydd{bottom:260.306667pt;}
.yaf{bottom:263.306667pt;}
.y84{bottom:265.306667pt;}
.y127{bottom:267.306667pt;}
.y90{bottom:268.306667pt;}
.y46{bottom:271.306667pt;}
.y101{bottom:272.306667pt;}
.yf6{bottom:273.306667pt;}
.ycb{bottom:274.306667pt;}
.ydc{bottom:276.306667pt;}
.yae{bottom:279.306667pt;}
.y1e{bottom:280.333333pt;}
.y126{bottom:281.333333pt;}
.y107{bottom:282.333333pt;}
.y8f{bottom:283.333333pt;}
.y100{bottom:285.333333pt;}
.y45{bottom:286.333333pt;}
.yf5{bottom:288.333333pt;}
.yca{bottom:289.333333pt;}
.ydb{bottom:291.333333pt;}
.yad{bottom:294.333333pt;}
.y125{bottom:295.333333pt;}
.y1d{bottom:296.333333pt;}
.y8e{bottom:299.333333pt;}
.yff{bottom:300.333333pt;}
.y44{bottom:302.333333pt;}
.yf4{bottom:303.333333pt;}
.yc9{bottom:305.333333pt;}
.yda{bottom:307.333333pt;}
.y124{bottom:308.333333pt;}
.yac{bottom:309.333333pt;}
.y1c{bottom:311.360000pt;}
.y8d{bottom:315.360000pt;}
.y63{bottom:317.360000pt;}
.yf3{bottom:319.360000pt;}
.yc8{bottom:320.360000pt;}
.y123{bottom:322.360000pt;}
.yab{bottom:325.360000pt;}
.y1b{bottom:326.360000pt;}
.y106{bottom:327.360000pt;}
.y43{bottom:332.360000pt;}
.yf2{bottom:334.360000pt;}
.yc7{bottom:335.360000pt;}
.y122{bottom:336.360000pt;}
.yd9{bottom:339.360000pt;}
.yaa{bottom:340.360000pt;}
.y1a{bottom:342.400000pt;}
.y83{bottom:343.400000pt;}
.y105{bottom:346.400000pt;}
.y42{bottom:348.400000pt;}
.yf1{bottom:349.400000pt;}
.y121{bottom:350.400000pt;}
.yc6{bottom:351.400000pt;}
.yd8{bottom:353.400000pt;}
.ya9{bottom:355.400000pt;}
.y19{bottom:357.400000pt;}
.y82{bottom:360.400000pt;}
.y41{bottom:362.400000pt;}
.y62{bottom:363.400000pt;}
.y120{bottom:364.400000pt;}
.yf0{bottom:365.400000pt;}
.yc5{bottom:366.400000pt;}
.yd7{bottom:367.400000pt;}
.ya8{bottom:371.440000pt;}
.y18{bottom:372.440000pt;}
.y81{bottom:374.440000pt;}
.y40{bottom:376.440000pt;}
.y11f{bottom:377.440000pt;}
.y61{bottom:378.440000pt;}
.yd6{bottom:380.440000pt;}
.yc4{bottom:381.440000pt;}
.ya7{bottom:386.440000pt;}
.y17{bottom:388.440000pt;}
.y3f{bottom:390.440000pt;}
.y11e{bottom:391.440000pt;}
.y60{bottom:394.440000pt;}
.yef{bottom:396.440000pt;}
.yc3{bottom:397.440000pt;}
.ya6{bottom:401.440000pt;}
.y80{bottom:402.466667pt;}
.y16{bottom:403.466667pt;}
.y11d{bottom:405.466667pt;}
.y5f{bottom:409.466667pt;}
.yc2{bottom:412.466667pt;}
.yee{bottom:414.466667pt;}
.y7f{bottom:416.466667pt;}
.y3e{bottom:417.466667pt;}
.y11c{bottom:419.466667pt;}
.yd5{bottom:422.466667pt;}
.y5e{bottom:424.466667pt;}
.yc1{bottom:427.466667pt;}
.yed{bottom:428.466667pt;}
.y7e{bottom:429.466667pt;}
.y3d{bottom:431.466667pt;}
.ya5{bottom:432.506667pt;}
.y15{bottom:434.506667pt;}
.y5d{bottom:440.506667pt;}
.yec{bottom:442.506667pt;}
.y7d{bottom:443.506667pt;}
.y3c{bottom:445.506667pt;}
.y11b{bottom:446.506667pt;}
.ya4{bottom:447.506667pt;}
.y5c{bottom:455.506667pt;}
.y7c{bottom:458.506667pt;}
.y3b{bottom:459.506667pt;}
.y11a{bottom:460.506667pt;}
.ya3{bottom:463.533333pt;}
.y14{bottom:464.533333pt;}
.yeb{bottom:469.533333pt;}
.y5b{bottom:470.533333pt;}
.y3a{bottom:472.533333pt;}
.y7b{bottom:473.533333pt;}
.y119{bottom:474.533333pt;}
.ya2{bottom:478.533333pt;}
.y13{bottom:480.533333pt;}
.yea{bottom:484.533333pt;}
.y39{bottom:486.533333pt;}
.y118{bottom:488.533333pt;}
.y7a{bottom:489.533333pt;}
.ya1{bottom:493.533333pt;}
.ye9{bottom:494.560000pt;}
.y12{bottom:495.560000pt;}
.y38{bottom:500.560000pt;}
.y5a{bottom:501.560000pt;}
.y79{bottom:504.560000pt;}
.ye8{bottom:508.560000pt;}
.ya0{bottom:509.560000pt;}
.y11{bottom:510.560000pt;}
.y37{bottom:514.560000pt;}
.y117{bottom:515.560000pt;}
.y59{bottom:516.560000pt;}
.y78{bottom:519.560000pt;}
.yc0{bottom:520.560000pt;}
.ye7{bottom:521.560000pt;}
.y9f{bottom:524.600000pt;}
.y10{bottom:526.600000pt;}
.y116{bottom:529.600000pt;}
.y58{bottom:532.600000pt;}
.y77{bottom:535.600000pt;}
.ybf{bottom:538.600000pt;}
.y9e{bottom:539.600000pt;}
.yf{bottom:541.600000pt;}
.y115{bottom:543.600000pt;}
.y57{bottom:547.600000pt;}
.ye6{bottom:549.600000pt;}
.y76{bottom:550.600000pt;}
.ybe{bottom:552.600000pt;}
.y36{bottom:555.640000pt;}
.ye{bottom:557.640000pt;}
.y56{bottom:562.640000pt;}
.y75{bottom:565.640000pt;}
.ybd{bottom:566.640000pt;}
.y35{bottom:569.640000pt;}
.y9d{bottom:570.640000pt;}
.y55{bottom:578.640000pt;}
.ybc{bottom:580.640000pt;}
.y74{bottom:581.640000pt;}
.y34{bottom:583.640000pt;}
.y114{bottom:584.640000pt;}
.y9c{bottom:585.666667pt;}
.yd{bottom:593.666667pt;}
.y73{bottom:596.666667pt;}
.y33{bottom:597.666667pt;}
.y113{bottom:598.666667pt;}
.y9b{bottom:601.666667pt;}
.ybb{bottom:607.666667pt;}
.yc{bottom:608.666667pt;}
.y32{bottom:610.666667pt;}
.y72{bottom:611.666667pt;}
.y112{bottom:612.666667pt;}
.y9a{bottom:616.693333pt;}
.yba{bottom:622.693333pt;}
.yb{bottom:624.693333pt;}
.y111{bottom:626.693333pt;}
.y71{bottom:627.693333pt;}
.y99{bottom:631.693333pt;}
.y31{bottom:638.693333pt;}
.ya{bottom:639.693333pt;}
.y70{bottom:642.693333pt;}
.y98{bottom:647.733333pt;}
.y30{bottom:652.733333pt;}
.y110{bottom:653.733333pt;}
.y9{bottom:654.733333pt;}
.y6f{bottom:658.733333pt;}
.y97{bottom:661.733333pt;}
.y2f{bottom:666.733333pt;}
.y10f{bottom:667.733333pt;}
.y8{bottom:670.733333pt;}
.y96{bottom:675.733333pt;}
.y6e{bottom:676.733333pt;}
.y2e{bottom:679.773333pt;}
.y10e{bottom:681.773333pt;}
.y54{bottom:685.773333pt;}
.y7{bottom:688.773333pt;}
.y95{bottom:689.773333pt;}
.y6d{bottom:690.773333pt;}
.y2d{bottom:693.773333pt;}
.y10d{bottom:695.773333pt;}
.y53{bottom:700.773333pt;}
.y6c{bottom:704.773333pt;}
.y2c{bottom:706.773333pt;}
.y10c{bottom:708.800000pt;}
.y6{bottom:711.800000pt;}
.y52{bottom:716.800000pt;}
.y6b{bottom:718.800000pt;}
.y2b{bottom:722.800000pt;}
.y6a{bottom:731.800000pt;}
.y51{bottom:732.800000pt;}
.y5{bottom:734.800000pt;}
.y2a{bottom:736.800000pt;}
.y69{bottom:746.840000pt;}
.y29{bottom:750.840000pt;}
.y4{bottom:757.840000pt;}
.y68{bottom:762.840000pt;}
.y28{bottom:764.840000pt;}
.y2{bottom:823.893333pt;}
.y1{bottom:839.933333pt;}
.ha{height:27.480469pt;}
.hd{height:33.351562pt;}
.h10{height:36.105469pt;}
.he{height:36.130859pt;}
.hb{height:43.183594pt;}
.h12{height:47.085938pt;}
.h9{height:47.109375pt;}
.hc{height:48.375000pt;}
.h3{height:51.009766pt;}
.h7{height:51.035156pt;}
.h11{height:51.566250pt;}
.hf{height:52.406250pt;}
.h8{height:59.332031pt;}
.h2{height:62.943359pt;}
.h5{height:78.646484pt;}
.h4{height:80.759375pt;}
.h6{height:87.035156pt;}
.h0{height:907.000000pt;}
.h1{height:907.333333pt;}
.w0{width:643.000000pt;}
.w1{width:643.333333pt;}
.x0{left:0.000000pt;}
.x2{left:95.133333pt;}
.x1{left:99.166667pt;}
.xe{left:104.166667pt;}
.x3{left:108.166667pt;}
.x4{left:111.166667pt;}
.xc{left:114.166667pt;}
.xd{left:119.200000pt;}
.x10{left:128.200000pt;}
.x7{left:140.240000pt;}
.xf{left:142.240000pt;}
.x5{left:176.266667pt;}
.xa{left:237.360000pt;}
.x9{left:254.400000pt;}
.x8{left:261.400000pt;}
.x6{left:322.506667pt;}
.xb{left:327.506667pt;}
}

