
    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_19a77ed5ee9088200e564998.woff')format("woff");}.ff1{font-family:ff1;line-height:0.750000;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_c1bb565219ee4d7ec0e61a5d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.869629;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_2138a285c1cb9ee531301e1e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.972656;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_ea57e7c24cd0ce84625e568a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_86f3afd5306b86188dd673b4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_3d274c9d44fd41667fdaa1ed.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.881000px;}
.ls0{letter-spacing:2.394000px;}
.ls3{letter-spacing:3.078000px;}
.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;}
}
.wsc{word-spacing:-18.810000px;}
.ws2{word-spacing:-1.575000px;}
.ws3{word-spacing:-1.350000px;}
.wsd{word-spacing:-0.855000px;}
.ws1{word-spacing:-0.247500px;}
.ws0{word-spacing:0.000000px;}
.ws18{word-spacing:1.795500px;}
.ws7{word-spacing:3.172500px;}
.wsa{word-spacing:3.676500px;}
.ws5{word-spacing:7.627500px;}
.wsb{word-spacing:8.208000px;}
.ws4{word-spacing:12.150000px;}
.ws11{word-spacing:12.654000px;}
.ws10{word-spacing:17.185500px;}
.ws6{word-spacing:21.127500px;}
.ws8{word-spacing:21.717000px;}
.ws9{word-spacing:26.163000px;}
.wse{word-spacing:30.694500px;}
.wsf{word-spacing:35.140500px;}
.ws13{word-spacing:39.672000px;}
.ws17{word-spacing:44.203500px;}
.ws19{word-spacing:48.649500px;}
.ws14{word-spacing:53.181000px;}
.ws12{word-spacing:57.712500px;}
.ws15{word-spacing:66.690000px;}
.ws16{word-spacing:71.136000px;}
._12{margin-left:-36.967500px;}
._f{margin-left:-31.639500px;}
._b{margin-left:-30.582000px;}
._9{margin-left:-26.811000px;}
._8{margin-left:-22.653000px;}
._d{margin-left:-21.577500px;}
._c{margin-left:-18.193500px;}
._3{margin-left:-13.810500px;}
._7{margin-left:-12.780000px;}
._4{margin-left:-9.792000px;}
._5{margin-left:-8.311500px;}
._2{margin-left:-4.504500px;}
._e{margin-left:-3.501000px;}
._11{margin-left:-1.066500px;}
._1{width:1.930500px;}
._0{width:3.910500px;}
._6{width:5.188500px;}
._10{width:7.708500px;}
._a{width:17.356500px;}
.fc5{color:rgb(153,0,0);}
.fc4{color:rgb(67,63,61);}
.fc3{color:rgb(174,106,4);}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(177,167,143);}
.fc0{color:rgb(98,88,67);}
.fs1{font-size:49.500000px;}
.fs3{font-size:67.500000px;}
.fs4{font-size:85.500000px;}
.fs2{font-size:112.500000px;}
.fs0{font-size:220.500000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:6.743250px;}
.y78{bottom:12.375000px;}
.y3e{bottom:15.743250px;}
.y1f{bottom:21.375000px;}
.y119{bottom:24.750000px;}
.yb4{bottom:25.875000px;}
.y91{bottom:29.250000px;}
.y59{bottom:38.250000px;}
.y3d{bottom:47.250000px;}
.y1e{bottom:54.000000px;}
.y1{bottom:84.375000px;}
.yf7{bottom:101.250000px;}
.y1d{bottom:106.868250px;}
.ycb{bottom:111.226500px;}
.yb3{bottom:111.269250px;}
.y10d{bottom:111.421125px;}
.y90{bottom:114.644250px;}
.y77{bottom:120.246750px;}
.y98{bottom:123.621750px;}
.y58{bottom:123.644250px;}
.yba{bottom:123.664500px;}
.ye6{bottom:132.628500px;}
.y3c{bottom:132.642000px;}
.yca{bottom:142.733250px;}
.yb2{bottom:142.776000px;}
.y10c{bottom:142.927875px;}
.y8f{bottom:146.151000px;}
.y76{bottom:151.753500px;}
.y97{bottom:155.128500px;}
.y57{bottom:155.151000px;}
.yf6{bottom:155.299500px;}
.y1c{bottom:160.861500px;}
.ye5{bottom:164.135250px;}
.y118{bottom:164.148750px;}
.yc9{bottom:174.240000px;}
.yb1{bottom:174.282750px;}
.y10b{bottom:174.434625px;}
.yb9{bottom:177.657750px;}
.y75{bottom:183.260250px;}
.y3b{bottom:186.635250px;}
.y56{bottom:186.657750px;}
.y1b{bottom:192.368250px;}
.y117{bottom:195.655500px;}
.y8e{bottom:200.144250px;}
.yc8{bottom:205.746750px;}
.yb0{bottom:205.789500px;}
.y10a{bottom:205.941450px;}
.yb8{bottom:209.164425px;}
.yf5{bottom:209.292750px;}
.y74{bottom:214.767000px;}
.ye4{bottom:218.128500px;}
.y3a{bottom:218.142000px;}
.y1a{bottom:223.875000px;}
.y8d{bottom:231.651000px;}
.yc7{bottom:237.253500px;}
.y96{bottom:240.628500px;}
.y55{bottom:240.651000px;}
.y73{bottom:246.273750px;}
.ye3{bottom:249.635250px;}
.y39{bottom:249.648750px;}
.yaf{bottom:259.782750px;}
.y109{bottom:259.934550px;}
.yb7{bottom:260.913300px;}
.y8c{bottom:263.157750px;}
.yf4{bottom:263.286000px;}
.yc6{bottom:268.760250px;}
.y95{bottom:272.135250px;}
.y54{bottom:272.157750px;}
.y19{bottom:275.625000px;}
.y72{bottom:277.780500px;}
.ye2{bottom:281.142000px;}
.y38{bottom:281.155500px;}
.yae{bottom:291.289500px;}
.y8b{bottom:294.664500px;}
.y94{bottom:303.642000px;}
.y53{bottom:303.664500px;}
.y18{bottom:306.013500px;}
.ye1{bottom:312.648750px;}
.y37{bottom:312.662250px;}
.yf3{bottom:317.279250px;}
.yc5{bottom:322.753500px;}
.yad{bottom:322.796250px;}
.y8a{bottom:326.171250px;}
.y71{bottom:331.773750px;}
.y93{bottom:335.148750px;}
.y52{bottom:335.171250px;}
.ye0{bottom:344.155500px;}
.y116{bottom:344.169000px;}
.yc4{bottom:354.260250px;}
.yac{bottom:354.303000px;}
.y17{bottom:360.006750px;}
.y70{bottom:363.280500px;}
.y36{bottom:366.655500px;}
.y51{bottom:366.678000px;}
.yf2{bottom:371.272500px;}
.ydf{bottom:375.662250px;}
.y115{bottom:375.675750px;}
.y89{bottom:380.164500px;}
.yc3{bottom:385.767000px;}
.yab{bottom:385.809750px;}
.y108{bottom:390.429000px;}
.y6f{bottom:394.787250px;}
.y35{bottom:398.162250px;}
.y50{bottom:398.184750px;}
.yf1{bottom:402.779250px;}
.y114{bottom:407.182500px;}
.y88{bottom:411.671250px;}
.y16{bottom:414.000000px;}
.yc2{bottom:417.273750px;}
.yaa{bottom:417.316500px;}
.y107{bottom:421.935750px;}
.y6e{bottom:426.294000px;}
.yde{bottom:429.655500px;}
.y34{bottom:429.669000px;}
.y4f{bottom:429.691500px;}
.y113{bottom:438.689250px;}
.y87{bottom:443.178000px;}
.yc1{bottom:448.780500px;}
.y124{bottom:456.729750px;}
.yf0{bottom:456.772500px;}
.y6d{bottom:457.800750px;}
.ydd{bottom:461.162250px;}
.y33{bottom:461.175750px;}
.y15{bottom:465.716250px;}
.y112{bottom:470.196000px;}
.ya9{bottom:471.309750px;}
.y86{bottom:474.684750px;}
.y106{bottom:475.929000px;}
.yc0{bottom:480.287250px;}
.y4e{bottom:483.684750px;}
.yef{bottom:488.279250px;}
.y6c{bottom:489.307500px;}
.y14{bottom:490.471875px;}
.ydc{bottom:492.669000px;}
.y32{bottom:492.682500px;}
.y111{bottom:501.702750px;}
.ya8{bottom:502.816500px;}
.y85{bottom:506.191500px;}
.y123{bottom:510.723000px;}
.ybf{bottom:511.794000px;}
.y4d{bottom:515.191500px;}
.y13{bottom:515.227500px;}
.ydb{bottom:524.175750px;}
.y31{bottom:524.189250px;}
.y105{bottom:529.922250px;}
.ya7{bottom:534.323250px;}
.y84{bottom:537.698250px;}
.y12{bottom:539.983125px;}
.yee{bottom:542.272500px;}
.y6b{bottom:543.300750px;}
.y92{bottom:546.675750px;}
.y4c{bottom:546.698250px;}
.yda{bottom:555.682500px;}
.y110{bottom:555.696000px;}
.y122{bottom:564.716250px;}
.y11{bottom:564.738750px;}
.ya6{bottom:565.830000px;}
.y6a{bottom:574.807500px;}
.y30{bottom:578.182500px;}
.y4b{bottom:578.205000px;}
.y104{bottom:583.915500px;}
.y10f{bottom:587.202750px;}
.y83{bottom:589.447050px;}
.y10{bottom:589.494375px;}
.y121{bottom:596.223000px;}
.yed{bottom:596.265750px;}
.ya5{bottom:597.336750px;}
.y69{bottom:606.314250px;}
.yd9{bottom:609.675750px;}
.y2f{bottom:609.689250px;}
.y4a{bottom:609.711750px;}
.yf{bottom:614.250000px;}
.y10e{bottom:618.709500px;}
.y120{bottom:627.729750px;}
.yec{bottom:627.772500px;}
.ya4{bottom:628.843500px;}
.y68{bottom:637.821000px;}
.y103{bottom:637.908750px;}
.yd8{bottom:641.182500px;}
.y2e{bottom:641.196000px;}
.y49{bottom:641.218500px;}
.ye{bottom:644.625000px;}
.y11f{bottom:659.236500px;}
.ybe{bottom:660.307500px;}
.y67{bottom:669.327750px;}
.yd7{bottom:672.689250px;}
.y2d{bottom:672.702750px;}
.yeb{bottom:681.765750px;}
.ya3{bottom:682.836750px;}
.yd{bottom:689.591250px;}
.y11e{bottom:690.743250px;}
.ybd{bottom:691.814250px;}
.y102{bottom:691.902000px;}
.y82{bottom:695.189250px;}
.y48{bottom:695.211750px;}
.y66{bottom:700.834500px;}
.yd6{bottom:704.196000px;}
.y2c{bottom:704.209500px;}
.ya2{bottom:714.343500px;}
.yc{bottom:714.346875px;}
.ybc{bottom:723.321000px;}
.y101{bottom:723.408750px;}
.y81{bottom:726.696000px;}
.y47{bottom:726.718500px;}
.y65{bottom:732.341250px;}
.yd5{bottom:735.702750px;}
.y2b{bottom:735.716250px;}
.yea{bottom:735.759000px;}
.yb{bottom:739.102500px;}
.y11d{bottom:744.736500px;}
.ya1{bottom:745.850250px;}
.ybb{bottom:754.827750px;}
.y80{bottom:758.202750px;}
.y46{bottom:758.225250px;}
.ya{bottom:763.858125px;}
.yd4{bottom:767.209500px;}
.y2a{bottom:767.223000px;}
.y11c{bottom:776.243250px;}
.ya0{bottom:777.357000px;}
.y100{bottom:777.402000px;}
.y64{bottom:786.334500px;}
.y9{bottom:788.613750px;}
.y7f{bottom:789.709500px;}
.y45{bottom:789.732000px;}
.ye9{bottom:789.752325px;}
.y29{bottom:798.729750px;}
.y11b{bottom:807.750000px;}
.y9f{bottom:808.863750px;}
.y8{bottom:813.369375px;}
.y63{bottom:817.841250px;}
.yd3{bottom:821.202750px;}
.y7e{bottom:821.216250px;}
.y44{bottom:821.238750px;}
.y28{bottom:830.236500px;}
.yff{bottom:831.395250px;}
.y7{bottom:838.125000px;}
.y9e{bottom:840.370500px;}
.ye8{bottom:841.501200px;}
.y62{bottom:849.348000px;}
.yd2{bottom:852.709500px;}
.y7d{bottom:852.723000px;}
.y43{bottom:852.745500px;}
.y11a{bottom:861.743250px;}
.yfe{bottom:862.902000px;}
.y6{bottom:868.506750px;}
.y9d{bottom:871.877250px;}
.y61{bottom:880.854750px;}
.yd1{bottom:884.216250px;}
.y27{bottom:884.229750px;}
.ye7{bottom:893.250000px;}
.y42{bottom:906.738750px;}
.y60{bottom:912.361500px;}
.yd0{bottom:915.723000px;}
.y26{bottom:915.736500px;}
.yfd{bottom:916.895250px;}
.y5{bottom:922.500000px;}
.y9c{bottom:923.626200px;}
.y7c{bottom:938.223000px;}
.y41{bottom:938.245500px;}
.y5f{bottom:943.868250px;}
.ycf{bottom:947.229750px;}
.y25{bottom:947.243250px;}
.y7b{bottom:969.729750px;}
.y40{bottom:969.752250px;}
.yfc{bottom:970.888500px;}
.y4{bottom:975.375000px;}
.yce{bottom:978.736500px;}
.y24{bottom:978.750000px;}
.y7a{bottom:1001.236500px;}
.ycd{bottom:1010.243250px;}
.y23{bottom:1010.256750px;}
.y3{bottom:1018.125000px;}
.y3f{bottom:1021.501200px;}
.yfb{bottom:1024.881750px;}
.y5e{bottom:1029.368250px;}
.y79{bottom:1032.743250px;}
.y5c{bottom:1038.368250px;}
.y9a{bottom:1038.375000px;}
.y21{bottom:1041.743250px;}
.yb6{bottom:1041.750000px;}
.yf8{bottom:1056.375000px;}
.y5d{bottom:1060.875000px;}
.y22{bottom:1064.250000px;}
.y5b{bottom:1069.875000px;}
.y2{bottom:1072.125000px;}
.y20{bottom:1073.250000px;}
.yfa{bottom:1078.875000px;}
.y9b{bottom:1092.375000px;}
.yb5{bottom:1095.750000px;}
.yf9{bottom:1110.375000px;}
.y99{bottom:1123.875000px;}
.ycc{bottom:1127.250000px;}
.h2{height:36.037354px;}
.h4{height:48.614502px;}
.h7{height:58.732910px;}
.h6{height:61.578369px;}
.h9{height:61.578669px;}
.h5{height:74.395020px;}
.ha{height:74.395320px;}
.h3{height:85.034180px;}
.h1{height:165.375000px;}
.h8{height:1095.000000px;}
.h0{height:1188.000000px;}
.w1{width:888.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:15.000000px;}
.x8{left:45.000000px;}
.x1{left:60.000000px;}
.x3{left:69.000000px;}
.x7{left:92.250000px;}
.x5{left:107.256750px;}
.xd{left:115.125000px;}
.x4{left:118.500000px;}
.xe{left:168.750000px;}
.xf{left:256.875000px;}
.xa{left:312.000000px;}
.x2{left:319.875000px;}
.xb{left:498.750000px;}
.x11{left:693.375000px;}
.xc{left:703.125000px;}
.x12{left:758.250000px;}
.x10{left:759.375000px;}
.x9{left:841.875000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.672000pt;}
.ls0{letter-spacing:2.128000pt;}
.ls3{letter-spacing:2.736000pt;}
.wsc{word-spacing:-16.720000pt;}
.ws2{word-spacing:-1.400000pt;}
.ws3{word-spacing:-1.200000pt;}
.wsd{word-spacing:-0.760000pt;}
.ws1{word-spacing:-0.220000pt;}
.ws0{word-spacing:0.000000pt;}
.ws18{word-spacing:1.596000pt;}
.ws7{word-spacing:2.820000pt;}
.wsa{word-spacing:3.268000pt;}
.ws5{word-spacing:6.780000pt;}
.wsb{word-spacing:7.296000pt;}
.ws4{word-spacing:10.800000pt;}
.ws11{word-spacing:11.248000pt;}
.ws10{word-spacing:15.276000pt;}
.ws6{word-spacing:18.780000pt;}
.ws8{word-spacing:19.304000pt;}
.ws9{word-spacing:23.256000pt;}
.wse{word-spacing:27.284000pt;}
.wsf{word-spacing:31.236000pt;}
.ws13{word-spacing:35.264000pt;}
.ws17{word-spacing:39.292000pt;}
.ws19{word-spacing:43.244000pt;}
.ws14{word-spacing:47.272000pt;}
.ws12{word-spacing:51.300000pt;}
.ws15{word-spacing:59.280000pt;}
.ws16{word-spacing:63.232000pt;}
._12{margin-left:-32.860000pt;}
._f{margin-left:-28.124000pt;}
._b{margin-left:-27.184000pt;}
._9{margin-left:-23.832000pt;}
._8{margin-left:-20.136000pt;}
._d{margin-left:-19.180000pt;}
._c{margin-left:-16.172000pt;}
._3{margin-left:-12.276000pt;}
._7{margin-left:-11.360000pt;}
._4{margin-left:-8.704000pt;}
._5{margin-left:-7.388000pt;}
._2{margin-left:-4.004000pt;}
._e{margin-left:-3.112000pt;}
._11{margin-left:-0.948000pt;}
._1{width:1.716000pt;}
._0{width:3.476000pt;}
._6{width:4.612000pt;}
._10{width:6.852000pt;}
._a{width:15.428000pt;}
.fs1{font-size:44.000000pt;}
.fs3{font-size:60.000000pt;}
.fs4{font-size:76.000000pt;}
.fs2{font-size:100.000000pt;}
.fs0{font-size:196.000000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:5.994000pt;}
.y78{bottom:11.000000pt;}
.y3e{bottom:13.994000pt;}
.y1f{bottom:19.000000pt;}
.y119{bottom:22.000000pt;}
.yb4{bottom:23.000000pt;}
.y91{bottom:26.000000pt;}
.y59{bottom:34.000000pt;}
.y3d{bottom:42.000000pt;}
.y1e{bottom:48.000000pt;}
.y1{bottom:75.000000pt;}
.yf7{bottom:90.000000pt;}
.y1d{bottom:94.994000pt;}
.ycb{bottom:98.868000pt;}
.yb3{bottom:98.906000pt;}
.y10d{bottom:99.041000pt;}
.y90{bottom:101.906000pt;}
.y77{bottom:106.886000pt;}
.y98{bottom:109.886000pt;}
.y58{bottom:109.906000pt;}
.yba{bottom:109.924000pt;}
.ye6{bottom:117.892000pt;}
.y3c{bottom:117.904000pt;}
.yca{bottom:126.874000pt;}
.yb2{bottom:126.912000pt;}
.y10c{bottom:127.047000pt;}
.y8f{bottom:129.912000pt;}
.y76{bottom:134.892000pt;}
.y97{bottom:137.892000pt;}
.y57{bottom:137.912000pt;}
.yf6{bottom:138.044000pt;}
.y1c{bottom:142.988000pt;}
.ye5{bottom:145.898000pt;}
.y118{bottom:145.910000pt;}
.yc9{bottom:154.880000pt;}
.yb1{bottom:154.918000pt;}
.y10b{bottom:155.053000pt;}
.yb9{bottom:157.918000pt;}
.y75{bottom:162.898000pt;}
.y3b{bottom:165.898000pt;}
.y56{bottom:165.918000pt;}
.y1b{bottom:170.994000pt;}
.y117{bottom:173.916000pt;}
.y8e{bottom:177.906000pt;}
.yc8{bottom:182.886000pt;}
.yb0{bottom:182.924000pt;}
.y10a{bottom:183.059067pt;}
.yb8{bottom:185.923933pt;}
.yf5{bottom:186.038000pt;}
.y74{bottom:190.904000pt;}
.ye4{bottom:193.892000pt;}
.y3a{bottom:193.904000pt;}
.y1a{bottom:199.000000pt;}
.y8d{bottom:205.912000pt;}
.yc7{bottom:210.892000pt;}
.y96{bottom:213.892000pt;}
.y55{bottom:213.912000pt;}
.y73{bottom:218.910000pt;}
.ye3{bottom:221.898000pt;}
.y39{bottom:221.910000pt;}
.yaf{bottom:230.918000pt;}
.y109{bottom:231.052933pt;}
.yb7{bottom:231.922933pt;}
.y8c{bottom:233.918000pt;}
.yf4{bottom:234.032000pt;}
.yc6{bottom:238.898000pt;}
.y95{bottom:241.898000pt;}
.y54{bottom:241.918000pt;}
.y19{bottom:245.000000pt;}
.y72{bottom:246.916000pt;}
.ye2{bottom:249.904000pt;}
.y38{bottom:249.916000pt;}
.yae{bottom:258.924000pt;}
.y8b{bottom:261.924000pt;}
.y94{bottom:269.904000pt;}
.y53{bottom:269.924000pt;}
.y18{bottom:272.012000pt;}
.ye1{bottom:277.910000pt;}
.y37{bottom:277.922000pt;}
.yf3{bottom:282.026000pt;}
.yc5{bottom:286.892000pt;}
.yad{bottom:286.930000pt;}
.y8a{bottom:289.930000pt;}
.y71{bottom:294.910000pt;}
.y93{bottom:297.910000pt;}
.y52{bottom:297.930000pt;}
.ye0{bottom:305.916000pt;}
.y116{bottom:305.928000pt;}
.yc4{bottom:314.898000pt;}
.yac{bottom:314.936000pt;}
.y17{bottom:320.006000pt;}
.y70{bottom:322.916000pt;}
.y36{bottom:325.916000pt;}
.y51{bottom:325.936000pt;}
.yf2{bottom:330.020000pt;}
.ydf{bottom:333.922000pt;}
.y115{bottom:333.934000pt;}
.y89{bottom:337.924000pt;}
.yc3{bottom:342.904000pt;}
.yab{bottom:342.942000pt;}
.y108{bottom:347.048000pt;}
.y6f{bottom:350.922000pt;}
.y35{bottom:353.922000pt;}
.y50{bottom:353.942000pt;}
.yf1{bottom:358.026000pt;}
.y114{bottom:361.940000pt;}
.y88{bottom:365.930000pt;}
.y16{bottom:368.000000pt;}
.yc2{bottom:370.910000pt;}
.yaa{bottom:370.948000pt;}
.y107{bottom:375.054000pt;}
.y6e{bottom:378.928000pt;}
.yde{bottom:381.916000pt;}
.y34{bottom:381.928000pt;}
.y4f{bottom:381.948000pt;}
.y113{bottom:389.946000pt;}
.y87{bottom:393.936000pt;}
.yc1{bottom:398.916000pt;}
.y124{bottom:405.982000pt;}
.yf0{bottom:406.020000pt;}
.y6d{bottom:406.934000pt;}
.ydd{bottom:409.922000pt;}
.y33{bottom:409.934000pt;}
.y15{bottom:413.970000pt;}
.y112{bottom:417.952000pt;}
.ya9{bottom:418.942000pt;}
.y86{bottom:421.942000pt;}
.y106{bottom:423.048000pt;}
.yc0{bottom:426.922000pt;}
.y4e{bottom:429.942000pt;}
.yef{bottom:434.026000pt;}
.y6c{bottom:434.940000pt;}
.y14{bottom:435.975000pt;}
.ydc{bottom:437.928000pt;}
.y32{bottom:437.940000pt;}
.y111{bottom:445.958000pt;}
.ya8{bottom:446.948000pt;}
.y85{bottom:449.948000pt;}
.y123{bottom:453.976000pt;}
.ybf{bottom:454.928000pt;}
.y4d{bottom:457.948000pt;}
.y13{bottom:457.980000pt;}
.ydb{bottom:465.934000pt;}
.y31{bottom:465.946000pt;}
.y105{bottom:471.042000pt;}
.ya7{bottom:474.954000pt;}
.y84{bottom:477.954000pt;}
.y12{bottom:479.985000pt;}
.yee{bottom:482.020000pt;}
.y6b{bottom:482.934000pt;}
.y92{bottom:485.934000pt;}
.y4c{bottom:485.954000pt;}
.yda{bottom:493.940000pt;}
.y110{bottom:493.952000pt;}
.y122{bottom:501.970000pt;}
.y11{bottom:501.990000pt;}
.ya6{bottom:502.960000pt;}
.y6a{bottom:510.940000pt;}
.y30{bottom:513.940000pt;}
.y4b{bottom:513.960000pt;}
.y104{bottom:519.036000pt;}
.y10f{bottom:521.958000pt;}
.y83{bottom:523.952933pt;}
.y10{bottom:523.995000pt;}
.y121{bottom:529.976000pt;}
.yed{bottom:530.014000pt;}
.ya5{bottom:530.966000pt;}
.y69{bottom:538.946000pt;}
.yd9{bottom:541.934000pt;}
.y2f{bottom:541.946000pt;}
.y4a{bottom:541.966000pt;}
.yf{bottom:546.000000pt;}
.y10e{bottom:549.964000pt;}
.y120{bottom:557.982000pt;}
.yec{bottom:558.020000pt;}
.ya4{bottom:558.972000pt;}
.y68{bottom:566.952000pt;}
.y103{bottom:567.030000pt;}
.yd8{bottom:569.940000pt;}
.y2e{bottom:569.952000pt;}
.y49{bottom:569.972000pt;}
.ye{bottom:573.000000pt;}
.y11f{bottom:585.988000pt;}
.ybe{bottom:586.940000pt;}
.y67{bottom:594.958000pt;}
.yd7{bottom:597.946000pt;}
.y2d{bottom:597.958000pt;}
.yeb{bottom:606.014000pt;}
.ya3{bottom:606.966000pt;}
.yd{bottom:612.970000pt;}
.y11e{bottom:613.994000pt;}
.ybd{bottom:614.946000pt;}
.y102{bottom:615.024000pt;}
.y82{bottom:617.946000pt;}
.y48{bottom:617.966000pt;}
.y66{bottom:622.964000pt;}
.yd6{bottom:625.952000pt;}
.y2c{bottom:625.964000pt;}
.ya2{bottom:634.972000pt;}
.yc{bottom:634.975000pt;}
.ybc{bottom:642.952000pt;}
.y101{bottom:643.030000pt;}
.y81{bottom:645.952000pt;}
.y47{bottom:645.972000pt;}
.y65{bottom:650.970000pt;}
.yd5{bottom:653.958000pt;}
.y2b{bottom:653.970000pt;}
.yea{bottom:654.008000pt;}
.yb{bottom:656.980000pt;}
.y11d{bottom:661.988000pt;}
.ya1{bottom:662.978000pt;}
.ybb{bottom:670.958000pt;}
.y80{bottom:673.958000pt;}
.y46{bottom:673.978000pt;}
.ya{bottom:678.985000pt;}
.yd4{bottom:681.964000pt;}
.y2a{bottom:681.976000pt;}
.y11c{bottom:689.994000pt;}
.ya0{bottom:690.984000pt;}
.y100{bottom:691.024000pt;}
.y64{bottom:698.964000pt;}
.y9{bottom:700.990000pt;}
.y7f{bottom:701.964000pt;}
.y45{bottom:701.984000pt;}
.ye9{bottom:702.002067pt;}
.y29{bottom:709.982000pt;}
.y11b{bottom:718.000000pt;}
.y9f{bottom:718.990000pt;}
.y8{bottom:722.995000pt;}
.y63{bottom:726.970000pt;}
.yd3{bottom:729.958000pt;}
.y7e{bottom:729.970000pt;}
.y44{bottom:729.990000pt;}
.y28{bottom:737.988000pt;}
.yff{bottom:739.018000pt;}
.y7{bottom:745.000000pt;}
.y9e{bottom:746.996000pt;}
.ye8{bottom:748.001067pt;}
.y62{bottom:754.976000pt;}
.yd2{bottom:757.964000pt;}
.y7d{bottom:757.976000pt;}
.y43{bottom:757.996000pt;}
.y11a{bottom:765.994000pt;}
.yfe{bottom:767.024000pt;}
.y6{bottom:772.006000pt;}
.y9d{bottom:775.002000pt;}
.y61{bottom:782.982000pt;}
.yd1{bottom:785.970000pt;}
.y27{bottom:785.982000pt;}
.ye7{bottom:794.000000pt;}
.y42{bottom:805.990000pt;}
.y60{bottom:810.988000pt;}
.yd0{bottom:813.976000pt;}
.y26{bottom:813.988000pt;}
.yfd{bottom:815.018000pt;}
.y5{bottom:820.000000pt;}
.y9c{bottom:821.001067pt;}
.y7c{bottom:833.976000pt;}
.y41{bottom:833.996000pt;}
.y5f{bottom:838.994000pt;}
.ycf{bottom:841.982000pt;}
.y25{bottom:841.994000pt;}
.y7b{bottom:861.982000pt;}
.y40{bottom:862.002000pt;}
.yfc{bottom:863.012000pt;}
.y4{bottom:867.000000pt;}
.yce{bottom:869.988000pt;}
.y24{bottom:870.000000pt;}
.y7a{bottom:889.988000pt;}
.ycd{bottom:897.994000pt;}
.y23{bottom:898.006000pt;}
.y3{bottom:905.000000pt;}
.y3f{bottom:908.001067pt;}
.yfb{bottom:911.006000pt;}
.y5e{bottom:914.994000pt;}
.y79{bottom:917.994000pt;}
.y5c{bottom:922.994000pt;}
.y9a{bottom:923.000000pt;}
.y21{bottom:925.994000pt;}
.yb6{bottom:926.000000pt;}
.yf8{bottom:939.000000pt;}
.y5d{bottom:943.000000pt;}
.y22{bottom:946.000000pt;}
.y5b{bottom:951.000000pt;}
.y2{bottom:953.000000pt;}
.y20{bottom:954.000000pt;}
.yfa{bottom:959.000000pt;}
.y9b{bottom:971.000000pt;}
.yb5{bottom:974.000000pt;}
.yf9{bottom:987.000000pt;}
.y99{bottom:999.000000pt;}
.ycc{bottom:1002.000000pt;}
.h2{height:32.033203pt;}
.h4{height:43.212891pt;}
.h7{height:52.207031pt;}
.h6{height:54.736328pt;}
.h9{height:54.736595pt;}
.h5{height:66.128906pt;}
.ha{height:66.129173pt;}
.h3{height:75.585938pt;}
.h1{height:147.000000pt;}
.h8{height:973.333333pt;}
.h0{height:1056.000000pt;}
.w1{width:789.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:13.333333pt;}
.x8{left:40.000000pt;}
.x1{left:53.333333pt;}
.x3{left:61.333333pt;}
.x7{left:82.000000pt;}
.x5{left:95.339333pt;}
.xd{left:102.333333pt;}
.x4{left:105.333333pt;}
.xe{left:150.000000pt;}
.xf{left:228.333333pt;}
.xa{left:277.333333pt;}
.x2{left:284.333333pt;}
.xb{left:443.333333pt;}
.x11{left:616.333333pt;}
.xc{left:625.000000pt;}
.x12{left:674.000000pt;}
.x10{left:675.000000pt;}
.x9{left:748.333333pt;}
}

