
    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_3b0ee0e09d3bab992fba2268.woff')format("woff");}.ff1{font-family:ff1;line-height:0.722656;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_6753c65a96b90384fdf97477.woff')format("woff");}.ff2{font-family:ff2;line-height:0.999023;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_57d0b0e588d90ccf0ce58d20.woff')format("woff");}.ff3{font-family:ff3;line-height:0.969238;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_49079f4ffb840e5a44022bda.woff')format("woff");}.ff4{font-family:ff4;line-height:0.972168;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_edc76fd153d6f82ca357d6af.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_031537caf7b92a8502855b46.woff')format("woff");}.ff6{font-family:ff6;line-height:0.789062;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.371520px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(102,102,102),0 0.015em rgb(102,102,102),0.015em 0 rgb(102,102,102),0 -0.015em  rgb(102,102,102);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(102,102,102);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-18.421200px;}
.ws4{word-spacing:-18.000000px;}
.ws0{word-spacing:-10.619280px;}
.ws1{word-spacing:-9.752400px;}
.ws3{word-spacing:-8.885520px;}
.ws5{word-spacing:0.000000px;}
.ws6{word-spacing:10.335600px;}
._0{margin-left:-1.439283px;}
._1{width:1.841746px;}
._c{width:12.603600px;}
._b{width:23.425200px;}
._3{width:68.640486px;}
._4{width:113.063040px;}
._7{width:123.405120px;}
._8{width:165.006720px;}
._5{width:264.928320px;}
._a{width:267.105600px;}
._6{width:280.285920px;}
._9{width:309.368160px;}
._2{width:1134.620654px;}
.fc9{color:rgb(103,102,100);}
.fc7{color:rgb(1,102,176);}
.fca{color:rgb(107,104,103);}
.fc5{color:rgb(208,76,0);}
.fc8{color:rgb(0,0,0);}
.fc6{color:rgb(102,102,102);}
.fc4{color:rgb(51,51,51);}
.fc2{color:rgb(97,106,120);}
.fc1{color:rgb(3,100,164);}
.fc3{color:rgb(74,113,149);}
.fc0{color:rgb(108,104,102);}
.fs6{font-size:29.520000px;}
.fs2{font-size:32.400000px;}
.fs1{font-size:35.280000px;}
.fs3{font-size:38.880000px;}
.fs0{font-size:46.800000px;}
.fs8{font-size:52.560000px;}
.fs5{font-size:61.200000px;}
.fs4{font-size:70.560000px;}
.fs7{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:0.675000px;}
.y4a{bottom:4.131000px;}
.y4c{bottom:4.311000px;}
.y4d{bottom:81.675000px;}
.ya3{bottom:86.352480px;}
.y48{bottom:93.729960px;}
.ya2{bottom:97.695720px;}
.y47{bottom:105.073200px;}
.ye1{bottom:107.778600px;}
.ya1{bottom:109.038960px;}
.ye2{bottom:115.692300px;}
.ya0{bottom:120.372480px;}
.ye5{bottom:123.074280px;}
.y46{bottom:123.793920px;}
.y9f{bottom:131.715720px;}
.y45{bottom:142.329960px;}
.y9e{bottom:143.058960px;}
.y44{bottom:153.673200px;}
.y9d{bottom:154.392480px;}
.y43{bottom:165.016440px;}
.y9c{bottom:165.735720px;}
.y42{bottom:176.349960px;}
.y9b{bottom:177.078960px;}
.ye3{bottom:179.415000px;}
.y41{bottom:187.693200px;}
.y9a{bottom:188.237520px;}
.yae{bottom:195.615000px;}
.y40{bottom:199.036440px;}
.y99{bottom:199.571040px;}
.yad{bottom:206.958240px;}
.y3f{bottom:210.195000px;}
.y98{bottom:210.914280px;}
.yac{bottom:218.291760px;}
.y97{bottom:222.257520px;}
.y3e{bottom:228.915720px;}
.yab{bottom:229.635000px;}
.y96{bottom:233.591040px;}
.yaa{bottom:240.978240px;}
.ye4{bottom:243.672300px;}
.y95{bottom:244.934280px;}
.y3d{bottom:247.451760px;}
.ya9{bottom:252.311760px;}
.ye0{bottom:253.213380px;}
.y94{bottom:256.277520px;}
.y3c{bottom:258.795000px;}
.ya8{bottom:263.655000px;}
.y93{bottom:267.611040px;}
.y3b{bottom:270.138240px;}
.y92{bottom:278.954280px;}
.y3a{bottom:288.858960px;}
.y91{bottom:290.112840px;}
.y90{bottom:301.456080px;}
.yd7{bottom:305.235000px;}
.y39{bottom:307.395000px;}
.y8f{bottom:312.799320px;}
.y38{bottom:318.738240px;}
.y37{bottom:330.071760px;}
.y8e{bottom:340.700400px;}
.y36{bottom:341.415000px;}
.ya7{bottom:348.794100px;}
.y35{bottom:352.758240px;}
.ya6{bottom:359.234460px;}
.y34{bottom:364.091760px;}
.y8d{bottom:364.636080px;}
.y8c{bottom:375.979320px;}
.y33{bottom:382.637520px;}
.y8b{bottom:387.312840px;}
.y8a{bottom:398.656080px;}
.ydf{bottom:399.014100px;}
.yde{bottom:408.551220px;}
.y89{bottom:409.999320px;}
.y32{bottom:410.529600px;}
.y88{bottom:428.535360px;}
.y31{bottom:434.474280px;}
.ydd{bottom:438.971400px;}
.y87{bottom:439.878600px;}
.y30{bottom:445.817520px;}
.ydc{bottom:448.514640px;}
.y86{bottom:451.212120px;}
.y2f{bottom:457.151040px;}
.y85{bottom:462.555360px;}
.y2e{bottom:468.494280px;}
.y84{bottom:473.898600px;}
.ydb{bottom:478.936800px;}
.y2d{bottom:479.837520px;}
.y83{bottom:485.232120px;}
.yda{bottom:488.478060px;}
.y82{bottom:496.390680px;}
.y2c{bottom:502.339320px;}
.y81{bottom:507.733920px;}
.y2b{bottom:513.672840px;}
.yd9{bottom:518.894100px;}
.y80{bottom:519.077160px;}
.y2a{bottom:525.016080px;}
.yd8{bottom:528.432660px;}
.y7f{bottom:530.410680px;}
.y29{bottom:536.359320px;}
.y28{bottom:547.692840px;}
.y7e{bottom:549.131400px;}
.y27{bottom:559.036080px;}
.y7d{bottom:560.474640px;}
.ya5{bottom:564.975000px;}
.y26{bottom:570.379320px;}
.y7c{bottom:571.633200px;}
.ya4{bottom:575.597700px;}
.y25{bottom:581.712840px;}
.y7b{bottom:582.976440px;}
.y24{bottom:592.871400px;}
.y7a{bottom:594.309960px;}
.y23{bottom:604.214640px;}
.y79{bottom:605.653200px;}
.yd6{bottom:616.277160px;}
.y78{bottom:616.996440px;}
.y77{bottom:628.329960px;}
.y22{bottom:632.119500px;}
.yd5{bottom:644.175900px;}
.y76{bottom:646.875720px;}
.y21{bottom:656.051400px;}
.y75{bottom:658.218960px;}
.y20{bottom:667.394640px;}
.yd4{bottom:668.113920px;}
.y74{bottom:669.552480px;}
.y1f{bottom:678.737880px;}
.y73{bottom:680.895720px;}
.y1e{bottom:690.071400px;}
.y72{bottom:692.238960px;}
.yd3{bottom:696.012300px;}
.y1d{bottom:701.414640px;}
.y71{bottom:703.572480px;}
.y1c{bottom:712.757880px;}
.y70{bottom:714.915720px;}
.yd2{bottom:719.950680px;}
.y1b{bottom:723.916440px;}
.y6f{bottom:726.258960px;}
.yd1{bottom:731.293920px;}
.y1a{bottom:735.249960px;}
.yd0{bottom:742.637160px;}
.y6e{bottom:744.795000px;}
.y19{bottom:746.593200px;}
.ycf{bottom:753.970680px;}
.y6d{bottom:756.138240px;}
.y18{bottom:757.936440px;}
.yce{bottom:765.313920px;}
.y6c{bottom:767.471760px;}
.y17{bottom:769.269960px;}
.ycd{bottom:776.657160px;}
.y16{bottom:780.613200px;}
.y6b{bottom:786.017520px;}
.ycc{bottom:787.815720px;}
.y15{bottom:791.956440px;}
.y6a{bottom:797.351040px;}
.ycb{bottom:799.158960px;}
.y69{bottom:808.694280px;}
.yca{bottom:810.492480px;}
.y14{bottom:819.850500px;}
.y68{bottom:820.037520px;}
.yc9{bottom:821.835720px;}
.y67{bottom:831.371040px;}
.yc8{bottom:833.178960px;}
.y8{bottom:842.354640px;}
.y66{bottom:842.714280px;}
.yc7{bottom:844.512480px;}
.y65{bottom:854.057520px;}
.yc6{bottom:855.855720px;}
.y64{bottom:865.391040px;}
.yc5{bottom:867.198960px;}
.y7{bottom:870.795360px;}
.y63{bottom:876.559320px;}
.yc4{bottom:878.532480px;}
.y62{bottom:887.892840px;}
.yc3{bottom:889.691040px;}
.y61{bottom:899.236080px;}
.yc2{bottom:901.034280px;}
.y60{bottom:910.579320px;}
.yc1{bottom:912.377520px;}
.y13{bottom:913.817700px;}
.y5f{bottom:921.912840px;}
.y6{bottom:923.173200px;}
.yc0{bottom:923.711040px;}
.y5{bottom:932.536800px;}
.ybf{bottom:935.054280px;}
.ybe{bottom:946.397520px;}
.y5e{bottom:949.808700px;}
.y4{bottom:953.232300px;}
.ybd{bottom:957.731040px;}
.ybc{bottom:969.074280px;}
.y5d{bottom:973.759320px;}
.y3{bottom:973.935900px;}
.ybb{bottom:980.417520px;}
.y5c{bottom:985.092840px;}
.y12{bottom:990.671220px;}
.yba{bottom:991.576080px;}
.y5b{bottom:996.436080px;}
.y11{bottom:1002.198960px;}
.yb9{bottom:1002.919320px;}
.y5a{bottom:1007.779320px;}
.yb8{bottom:1014.252840px;}
.y10{bottom:1016.055180px;}
.yb7{bottom:1025.596080px;}
.yf{bottom:1026.136440px;}
.y59{bottom:1026.315360px;}
.ye{bottom:1036.932120px;}
.yb6{bottom:1036.939320px;}
.y58{bottom:1045.036080px;}
.yb5{bottom:1048.272840px;}
.yd{bottom:1050.797160px;}
.y57{bottom:1056.194640px;}
.yb4{bottom:1059.616080px;}
.y56{bottom:1067.537880px;}
.yb3{bottom:1070.959320px;}
.yc{bottom:1074.549600px;}
.y55{bottom:1078.871400px;}
.yb2{bottom:1082.292840px;}
.ye6{bottom:1083.731400px;}
.y54{bottom:1090.214640px;}
.y4e{bottom:1091.159640px;}
.yb{bottom:1092.374100px;}
.yb1{bottom:1093.451400px;}
.yb0{bottom:1104.794640px;}
.y53{bottom:1108.935360px;}
.ya{bottom:1110.198600px;}
.yaf{bottom:1116.137880px;}
.y52{bottom:1127.471400px;}
.y9{bottom:1135.927800px;}
.y51{bottom:1138.814640px;}
.y50{bottom:1150.157880px;}
.y1{bottom:1161.131400px;}
.y4f{bottom:1161.491400px;}
.y2{bottom:1167.794460px;}
.y49{bottom:1242.675000px;}
.hb{height:20.160000px;}
.h4{height:24.205078px;}
.h10{height:24.980273px;}
.ha{height:25.597266px;}
.h9{height:27.062930px;}
.hf{height:27.200742px;}
.h3{height:27.872578px;}
.h5{height:29.046094px;}
.h6{height:30.716719px;}
.h2{height:33.500391px;}
.he{height:41.524453px;}
.h8{height:48.350391px;}
.hc{height:49.992188px;}
.h7{height:55.745156px;}
.hd{height:1100.160000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:621.000000px;}
.w4{width:636.660000px;}
.w2{width:730.080000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:14.761440px;}
.x7{left:81.000000px;}
.x2{left:85.501080px;}
.x3{left:95.758200px;}
.xb{left:113.222340px;}
.xc{left:120.600900px;}
.x4{left:132.298920px;}
.x5{left:179.820000px;}
.x6{left:386.097840px;}
.x12{left:392.939100px;}
.x10{left:548.459100px;}
.xf{left:558.543600px;}
.xd{left:562.319100px;}
.xe{left:572.038200px;}
.x8{left:632.520000px;}
.x9{left:648.000000px;}
.x11{left:714.958020px;}
.x1{left:773.639100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.330240pt;}
.ws2{word-spacing:-16.374400pt;}
.ws4{word-spacing:-16.000000pt;}
.ws0{word-spacing:-9.439360pt;}
.ws1{word-spacing:-8.668800pt;}
.ws3{word-spacing:-7.898240pt;}
.ws5{word-spacing:0.000000pt;}
.ws6{word-spacing:9.187200pt;}
._0{margin-left:-1.279363pt;}
._1{width:1.637107pt;}
._c{width:11.203200pt;}
._b{width:20.822400pt;}
._3{width:61.013765pt;}
._4{width:100.500480pt;}
._7{width:109.693440pt;}
._8{width:146.672640pt;}
._5{width:235.491840pt;}
._a{width:237.427200pt;}
._6{width:249.143040pt;}
._9{width:274.993920pt;}
._2{width:1008.551693pt;}
.fs6{font-size:26.240000pt;}
.fs2{font-size:28.800000pt;}
.fs1{font-size:31.360000pt;}
.fs3{font-size:34.560000pt;}
.fs0{font-size:41.600000pt;}
.fs8{font-size:46.720000pt;}
.fs5{font-size:54.400000pt;}
.fs4{font-size:62.720000pt;}
.fs7{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:0.600000pt;}
.y4a{bottom:3.672000pt;}
.y4c{bottom:3.832000pt;}
.y4d{bottom:72.600000pt;}
.ya3{bottom:76.757760pt;}
.y48{bottom:83.315520pt;}
.ya2{bottom:86.840640pt;}
.y47{bottom:93.398400pt;}
.ye1{bottom:95.803200pt;}
.ya1{bottom:96.923520pt;}
.ye2{bottom:102.837600pt;}
.ya0{bottom:106.997760pt;}
.ye5{bottom:109.399360pt;}
.y46{bottom:110.039040pt;}
.y9f{bottom:117.080640pt;}
.y45{bottom:126.515520pt;}
.y9e{bottom:127.163520pt;}
.y44{bottom:136.598400pt;}
.y9d{bottom:137.237760pt;}
.y43{bottom:146.681280pt;}
.y9c{bottom:147.320640pt;}
.y42{bottom:156.755520pt;}
.y9b{bottom:157.403520pt;}
.ye3{bottom:159.480000pt;}
.y41{bottom:166.838400pt;}
.y9a{bottom:167.322240pt;}
.yae{bottom:173.880000pt;}
.y40{bottom:176.921280pt;}
.y99{bottom:177.396480pt;}
.yad{bottom:183.962880pt;}
.y3f{bottom:186.840000pt;}
.y98{bottom:187.479360pt;}
.yac{bottom:194.037120pt;}
.y97{bottom:197.562240pt;}
.y3e{bottom:203.480640pt;}
.yab{bottom:204.120000pt;}
.y96{bottom:207.636480pt;}
.yaa{bottom:214.202880pt;}
.ye4{bottom:216.597600pt;}
.y95{bottom:217.719360pt;}
.y3d{bottom:219.957120pt;}
.ya9{bottom:224.277120pt;}
.ye0{bottom:225.078560pt;}
.y94{bottom:227.802240pt;}
.y3c{bottom:230.040000pt;}
.ya8{bottom:234.360000pt;}
.y93{bottom:237.876480pt;}
.y3b{bottom:240.122880pt;}
.y92{bottom:247.959360pt;}
.y3a{bottom:256.763520pt;}
.y91{bottom:257.878080pt;}
.y90{bottom:267.960960pt;}
.yd7{bottom:271.320000pt;}
.y39{bottom:273.240000pt;}
.y8f{bottom:278.043840pt;}
.y38{bottom:283.322880pt;}
.y37{bottom:293.397120pt;}
.y8e{bottom:302.844800pt;}
.y36{bottom:303.480000pt;}
.ya7{bottom:310.039200pt;}
.y35{bottom:313.562880pt;}
.ya6{bottom:319.319520pt;}
.y34{bottom:323.637120pt;}
.y8d{bottom:324.120960pt;}
.y8c{bottom:334.203840pt;}
.y33{bottom:340.122240pt;}
.y8b{bottom:344.278080pt;}
.y8a{bottom:354.360960pt;}
.ydf{bottom:354.679200pt;}
.yde{bottom:363.156640pt;}
.y89{bottom:364.443840pt;}
.y32{bottom:364.915200pt;}
.y88{bottom:380.920320pt;}
.y31{bottom:386.199360pt;}
.ydd{bottom:390.196800pt;}
.y87{bottom:391.003200pt;}
.y30{bottom:396.282240pt;}
.ydc{bottom:398.679680pt;}
.y86{bottom:401.077440pt;}
.y2f{bottom:406.356480pt;}
.y85{bottom:411.160320pt;}
.y2e{bottom:416.439360pt;}
.y84{bottom:421.243200pt;}
.ydb{bottom:425.721600pt;}
.y2d{bottom:426.522240pt;}
.y83{bottom:431.317440pt;}
.yda{bottom:434.202720pt;}
.y82{bottom:441.236160pt;}
.y2c{bottom:446.523840pt;}
.y81{bottom:451.319040pt;}
.y2b{bottom:456.598080pt;}
.yd9{bottom:461.239200pt;}
.y80{bottom:461.401920pt;}
.y2a{bottom:466.680960pt;}
.yd8{bottom:469.717920pt;}
.y7f{bottom:471.476160pt;}
.y29{bottom:476.763840pt;}
.y28{bottom:486.838080pt;}
.y7e{bottom:488.116800pt;}
.y27{bottom:496.920960pt;}
.y7d{bottom:498.199680pt;}
.ya5{bottom:502.200000pt;}
.y26{bottom:507.003840pt;}
.y7c{bottom:508.118400pt;}
.ya4{bottom:511.642400pt;}
.y25{bottom:517.078080pt;}
.y7b{bottom:518.201280pt;}
.y24{bottom:526.996800pt;}
.y7a{bottom:528.275520pt;}
.y23{bottom:537.079680pt;}
.y79{bottom:538.358400pt;}
.yd6{bottom:547.801920pt;}
.y78{bottom:548.441280pt;}
.y77{bottom:558.515520pt;}
.y22{bottom:561.884000pt;}
.yd5{bottom:572.600800pt;}
.y76{bottom:575.000640pt;}
.y21{bottom:583.156800pt;}
.y75{bottom:585.083520pt;}
.y20{bottom:593.239680pt;}
.yd4{bottom:593.879040pt;}
.y74{bottom:595.157760pt;}
.y1f{bottom:603.322560pt;}
.y73{bottom:605.240640pt;}
.y1e{bottom:613.396800pt;}
.y72{bottom:615.323520pt;}
.yd3{bottom:618.677600pt;}
.y1d{bottom:623.479680pt;}
.y71{bottom:625.397760pt;}
.y1c{bottom:633.562560pt;}
.y70{bottom:635.480640pt;}
.yd2{bottom:639.956160pt;}
.y1b{bottom:643.481280pt;}
.y6f{bottom:645.563520pt;}
.yd1{bottom:650.039040pt;}
.y1a{bottom:653.555520pt;}
.yd0{bottom:660.121920pt;}
.y6e{bottom:662.040000pt;}
.y19{bottom:663.638400pt;}
.ycf{bottom:670.196160pt;}
.y6d{bottom:672.122880pt;}
.y18{bottom:673.721280pt;}
.yce{bottom:680.279040pt;}
.y6c{bottom:682.197120pt;}
.y17{bottom:683.795520pt;}
.ycd{bottom:690.361920pt;}
.y16{bottom:693.878400pt;}
.y6b{bottom:698.682240pt;}
.ycc{bottom:700.280640pt;}
.y15{bottom:703.961280pt;}
.y6a{bottom:708.756480pt;}
.ycb{bottom:710.363520pt;}
.y69{bottom:718.839360pt;}
.yca{bottom:720.437760pt;}
.y14{bottom:728.756000pt;}
.y68{bottom:728.922240pt;}
.yc9{bottom:730.520640pt;}
.y67{bottom:738.996480pt;}
.yc8{bottom:740.603520pt;}
.y8{bottom:748.759680pt;}
.y66{bottom:749.079360pt;}
.yc7{bottom:750.677760pt;}
.y65{bottom:759.162240pt;}
.yc6{bottom:760.760640pt;}
.y64{bottom:769.236480pt;}
.yc5{bottom:770.843520pt;}
.y7{bottom:774.040320pt;}
.y63{bottom:779.163840pt;}
.yc4{bottom:780.917760pt;}
.y62{bottom:789.238080pt;}
.yc3{bottom:790.836480pt;}
.y61{bottom:799.320960pt;}
.yc2{bottom:800.919360pt;}
.y60{bottom:809.403840pt;}
.yc1{bottom:811.002240pt;}
.y13{bottom:812.282400pt;}
.y5f{bottom:819.478080pt;}
.y6{bottom:820.598400pt;}
.yc0{bottom:821.076480pt;}
.y5{bottom:828.921600pt;}
.ybf{bottom:831.159360pt;}
.ybe{bottom:841.242240pt;}
.y5e{bottom:844.274400pt;}
.y4{bottom:847.317600pt;}
.ybd{bottom:851.316480pt;}
.ybc{bottom:861.399360pt;}
.y5d{bottom:865.563840pt;}
.y3{bottom:865.720800pt;}
.ybb{bottom:871.482240pt;}
.y5c{bottom:875.638080pt;}
.y12{bottom:880.596640pt;}
.yba{bottom:881.400960pt;}
.y5b{bottom:885.720960pt;}
.y11{bottom:890.843520pt;}
.yb9{bottom:891.483840pt;}
.y5a{bottom:895.803840pt;}
.yb8{bottom:901.558080pt;}
.y10{bottom:903.160160pt;}
.yb7{bottom:911.640960pt;}
.yf{bottom:912.121280pt;}
.y59{bottom:912.280320pt;}
.ye{bottom:921.717440pt;}
.yb6{bottom:921.723840pt;}
.y58{bottom:928.920960pt;}
.yb5{bottom:931.798080pt;}
.yd{bottom:934.041920pt;}
.y57{bottom:938.839680pt;}
.yb4{bottom:941.880960pt;}
.y56{bottom:948.922560pt;}
.yb3{bottom:951.963840pt;}
.yc{bottom:955.155200pt;}
.y55{bottom:958.996800pt;}
.yb2{bottom:962.038080pt;}
.ye6{bottom:963.316800pt;}
.y54{bottom:969.079680pt;}
.y4e{bottom:969.919680pt;}
.yb{bottom:970.999200pt;}
.yb1{bottom:971.956800pt;}
.yb0{bottom:982.039680pt;}
.y53{bottom:985.720320pt;}
.ya{bottom:986.843200pt;}
.yaf{bottom:992.122560pt;}
.y52{bottom:1002.196800pt;}
.y9{bottom:1009.713600pt;}
.y51{bottom:1012.279680pt;}
.y50{bottom:1022.362560pt;}
.y1{bottom:1032.116800pt;}
.y4f{bottom:1032.436800pt;}
.y2{bottom:1038.039520pt;}
.y49{bottom:1104.600000pt;}
.hb{height:17.920000pt;}
.h4{height:21.515625pt;}
.h10{height:22.204688pt;}
.ha{height:22.753125pt;}
.h9{height:24.055938pt;}
.hf{height:24.178438pt;}
.h3{height:24.775625pt;}
.h5{height:25.818750pt;}
.h6{height:27.303750pt;}
.h2{height:29.778125pt;}
.he{height:36.910625pt;}
.h8{height:42.978125pt;}
.hc{height:44.437500pt;}
.h7{height:49.551250pt;}
.hd{height:977.920000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:552.000000pt;}
.w4{width:565.920000pt;}
.w2{width:648.960000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:13.121280pt;}
.x7{left:72.000000pt;}
.x2{left:76.000960pt;}
.x3{left:85.118400pt;}
.xb{left:100.642080pt;}
.xc{left:107.200800pt;}
.x4{left:117.599040pt;}
.x5{left:159.840000pt;}
.x6{left:343.198080pt;}
.x12{left:349.279200pt;}
.x10{left:487.519200pt;}
.xf{left:496.483200pt;}
.xd{left:499.839200pt;}
.xe{left:508.478400pt;}
.x8{left:562.240000pt;}
.x9{left:576.000000pt;}
.x11{left:635.518240pt;}
.x1{left:687.679200pt;}
}

