
    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_cca404fba19900f780815b3d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_5b568b44261e84a1b9303830.woff')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_955a63363439b464eac1d44a.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_69178a5e3254be629aaa6903.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6e997aabc3120f10c2c39a21.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_dac023f64662e6e573970437.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7492c4438347675ab46d0660.woff')format("woff");}.ff7{font-family:ff7;line-height:1.575000;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:ff8;src:url('chunks/assets/font_ed791e918b2621655f36282c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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:ff9;src:url('chunks/assets/font_9d1beef53e3605b081a922fa.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a4f6f7f9bf599bb280960e18.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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:ffb;src:url('chunks/assets/font_0f1d91bb1d36d623be347b9a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-177.120000px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.550601px;}
.ls0{letter-spacing:1.520640px;}
.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;}
}
.ws4{word-spacing:-20.016000px;}
.ws1{word-spacing:-13.789440px;}
.ws0{word-spacing:-10.762560px;}
.ws3{word-spacing:0.000000px;}
.ws2{word-spacing:419.047776px;}
._f{margin-left:-45.204480px;}
._11{margin-left:-19.537920px;}
._10{margin-left:-17.712000px;}
._14{margin-left:-16.580160px;}
._b{margin-left:-12.942720px;}
._8{margin-left:-6.410880px;}
._6{margin-left:-4.233600px;}
._4{margin-left:-2.661120px;}
._0{margin-left:-1.028160px;}
._1{width:1.935360px;}
._3{width:3.265920px;}
._5{width:4.294080px;}
._2{width:5.382720px;}
._9{width:7.076160px;}
._a{width:8.527680px;}
._7{width:9.555840px;}
._d{width:11.188800px;}
._e{width:12.216960px;}
._13{width:13.818240px;}
._c{width:15.301440px;}
._12{width:16.666560px;}
._16{width:71.032320px;}
._15{width:196.344000px;}
.fc3{color:rgb(76,171,95);}
.fc4{color:transparent;}
.fc2{color:rgb(0,111,69);}
.fc1{color:rgb(46,49,146);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs0{font-size:53.280000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:138.240000px;}
.y5b{bottom:-6.839850px;}
.y0{bottom:0.000000px;}
.ye4{bottom:2.160000px;}
.y60{bottom:8.640000px;}
.y1{bottom:9.360000px;}
.y40{bottom:39.960000px;}
.y3f{bottom:57.960000px;}
.y3e{bottom:75.960000px;}
.yc8{bottom:77.400000px;}
.y3d{bottom:93.960000px;}
.yc7{bottom:99.000000px;}
.y3c{bottom:111.960000px;}
.yc6{bottom:120.600000px;}
.y3b{bottom:135.720000px;}
.yc5{bottom:142.200000px;}
.y3a{bottom:153.720000px;}
.y5a{bottom:160.920000px;}
.yc4{bottom:163.800000px;}
.y39{bottom:171.720000px;}
.y59{bottom:178.920000px;}
.ya4{bottom:181.440000px;}
.yc3{bottom:185.400000px;}
.y38{bottom:189.720000px;}
.y58{bottom:196.920000px;}
.ya3{bottom:203.040000px;}
.yc2{bottom:207.000000px;}
.y37{bottom:207.720000px;}
.y57{bottom:214.920000px;}
.ya2{bottom:224.640000px;}
.y36{bottom:225.720000px;}
.y35{bottom:243.720000px;}
.y56{bottom:246.240000px;}
.yc1{bottom:250.200000px;}
.y34{bottom:261.720000px;}
.y55{bottom:264.240000px;}
.ya1{bottom:267.840000px;}
.yc0{bottom:271.800000px;}
.y33{bottom:279.720000px;}
.y54{bottom:282.240000px;}
.ya0{bottom:289.440000px;}
.ye3{bottom:291.600000px;}
.ybf{bottom:293.400000px;}
.y32{bottom:297.720000px;}
.y53{bottom:300.240000px;}
.y9f{bottom:311.040000px;}
.ybe{bottom:315.000000px;}
.y31{bottom:315.720000px;}
.y52{bottom:318.240000px;}
.y7a{bottom:321.840000px;}
.y30{bottom:333.720000px;}
.y51{bottom:336.240000px;}
.ybd{bottom:336.600000px;}
.y79{bottom:343.440000px;}
.y2f{bottom:351.720000px;}
.y50{bottom:354.240000px;}
.y78{bottom:365.040000px;}
.y94{bottom:365.760000px;}
.y2e{bottom:369.720000px;}
.y4f{bottom:372.240000px;}
.ybc{bottom:379.800000px;}
.y77{bottom:386.640000px;}
.y2d{bottom:387.720000px;}
.y4e{bottom:390.240000px;}
.ybb{bottom:401.400000px;}
.y2c{bottom:405.720000px;}
.ye2{bottom:406.440000px;}
.y4d{bottom:408.240000px;}
.y93{bottom:422.640000px;}
.yba{bottom:423.000000px;}
.y2b{bottom:423.720000px;}
.y4c{bottom:426.240000px;}
.ye1{bottom:428.040000px;}
.y4b{bottom:444.240000px;}
.yb9{bottom:444.600000px;}
.y2a{bottom:448.200000px;}
.ye0{bottom:449.640000px;}
.y76{bottom:451.440000px;}
.y4a{bottom:462.240000px;}
.y92{bottom:465.840000px;}
.y29{bottom:466.200000px;}
.ydf{bottom:471.240000px;}
.y75{bottom:473.040000px;}
.y49{bottom:480.240000px;}
.y28{bottom:484.200000px;}
.y91{bottom:487.440000px;}
.yde{bottom:492.840000px;}
.y74{bottom:494.640000px;}
.y48{bottom:498.240000px;}
.y27{bottom:502.200000px;}
.y90{bottom:509.040000px;}
.yb8{bottom:509.400000px;}
.ydd{bottom:514.440000px;}
.y47{bottom:516.240000px;}
.y9e{bottom:518.040000px;}
.y26{bottom:520.200000px;}
.y8f{bottom:530.640000px;}
.yb7{bottom:531.000000px;}
.ydc{bottom:536.040000px;}
.y73{bottom:537.840000px;}
.y25{bottom:538.200000px;}
.y9d{bottom:539.640000px;}
.y46{bottom:547.200000px;}
.y8e{bottom:552.240000px;}
.yb6{bottom:552.600000px;}
.y24{bottom:556.200000px;}
.ydb{bottom:557.640000px;}
.y72{bottom:559.440000px;}
.y9c{bottom:561.240000px;}
.y45{bottom:565.200000px;}
.y8d{bottom:573.840000px;}
.y23{bottom:574.200000px;}
.y71{bottom:581.040000px;}
.yf{bottom:583.200000px;}
.y22{bottom:592.200000px;}
.yda{bottom:600.840000px;}
.ye{bottom:601.200000px;}
.y70{bottom:602.640000px;}
.y9b{bottom:604.440000px;}
.y21{bottom:610.200000px;}
.y8c{bottom:617.040000px;}
.yd{bottom:619.200000px;}
.yd9{bottom:622.440000px;}
.y6f{bottom:624.240000px;}
.y9a{bottom:626.040000px;}
.y20{bottom:628.200000px;}
.yc{bottom:637.200000px;}
.y8b{bottom:638.640000px;}
.yd8{bottom:644.040000px;}
.y6e{bottom:645.840000px;}
.y1f{bottom:646.200000px;}
.y99{bottom:647.640000px;}
.yb5{bottom:650.880000px;}
.yb{bottom:655.200000px;}
.y8a{bottom:660.240000px;}
.y1e{bottom:664.200000px;}
.yd7{bottom:665.640000px;}
.y6d{bottom:667.440000px;}
.y98{bottom:669.240000px;}
.yb4{bottom:672.480000px;}
.ya{bottom:673.200000px;}
.y89{bottom:681.840000px;}
.y1d{bottom:682.200000px;}
.yd6{bottom:687.240000px;}
.y6c{bottom:689.040000px;}
.y97{bottom:690.840000px;}
.y9{bottom:691.200000px;}
.yb3{bottom:694.080000px;}
.y1c{bottom:700.200000px;}
.y88{bottom:703.440000px;}
.yd5{bottom:708.840000px;}
.y8{bottom:709.200000px;}
.y96{bottom:712.440000px;}
.yb2{bottom:715.680000px;}
.y1b{bottom:718.200000px;}
.y87{bottom:725.040000px;}
.y7{bottom:727.200000px;}
.yd4{bottom:730.440000px;}
.y95{bottom:734.040000px;}
.y1a{bottom:736.200000px;}
.yb1{bottom:737.280000px;}
.y6{bottom:745.200000px;}
.yd3{bottom:752.040000px;}
.y19{bottom:754.200000px;}
.yb0{bottom:758.880000px;}
.y5{bottom:763.200000px;}
.y18{bottom:772.200000px;}
.y6b{bottom:775.440000px;}
.y4{bottom:781.200000px;}
.y86{bottom:789.840000px;}
.y17{bottom:790.200000px;}
.y6a{bottom:797.040000px;}
.y3{bottom:799.200000px;}
.yaf{bottom:802.080000px;}
.y16{bottom:808.200000px;}
.y85{bottom:811.440000px;}
.y2{bottom:817.200000px;}
.yae{bottom:823.680000px;}
.yd2{bottom:824.040000px;}
.y15{bottom:826.200000px;}
.y84{bottom:833.040000px;}
.y44{bottom:835.200000px;}
.y69{bottom:840.240000px;}
.y14{bottom:844.200000px;}
.yad{bottom:845.280000px;}
.yd1{bottom:845.640000px;}
.y43{bottom:853.200000px;}
.y83{bottom:854.640000px;}
.y68{bottom:861.840000px;}
.y13{bottom:862.200000px;}
.yac{bottom:866.880000px;}
.yd0{bottom:867.240000px;}
.y42{bottom:871.200000px;}
.y82{bottom:876.240000px;}
.y12{bottom:880.200000px;}
.y67{bottom:883.440000px;}
.ycf{bottom:888.840000px;}
.y41{bottom:889.200000px;}
.y81{bottom:897.840000px;}
.y11{bottom:898.200000px;}
.y66{bottom:905.040000px;}
.yab{bottom:910.080000px;}
.yce{bottom:910.440000px;}
.y80{bottom:919.440000px;}
.y65{bottom:926.640000px;}
.y5f{bottom:931.680000px;}
.y10{bottom:939.240000px;}
.y64{bottom:948.240000px;}
.yaa{bottom:953.280000px;}
.ycd{bottom:953.640000px;}
.y7f{bottom:962.640000px;}
.y63{bottom:969.840000px;}
.y5e{bottom:973.080000px;}
.ya9{bottom:974.880000px;}
.ycc{bottom:975.240000px;}
.y7e{bottom:984.240000px;}
.y62{bottom:991.440000px;}
.ycb{bottom:996.840000px;}
.y7d{bottom:1005.840000px;}
.y61{bottom:1013.040000px;}
.ya8{bottom:1018.080000px;}
.yca{bottom:1018.440000px;}
.y7c{bottom:1027.440000px;}
.ya7{bottom:1039.680000px;}
.yc9{bottom:1040.040000px;}
.y7b{bottom:1049.040000px;}
.y5d{bottom:1058.760000px;}
.ya6{bottom:1061.280000px;}
.ya5{bottom:1082.880000px;}
.y5c{bottom:1100.160000px;}
.h5{height:2.880000px;}
.ha{height:11.880000px;}
.h3{height:44.060625px;}
.h6{height:44.557920px;}
.h1{height:56.849760px;}
.h2{height:64.532160px;}
.h9{height:64.546875px;}
.h4{height:75.093750px;}
.h7{height:100.642500px;}
.h8{height:147.502080px;}
.h0{height:1188.000000px;}
.w2{width:130.320000px;}
.w1{width:161.640000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:24.119850px;}
.x4{left:65.160000px;}
.x5{left:66.960000px;}
.x1{left:72.000000px;}
.x17{left:81.000000px;}
.x3{left:108.000000px;}
.xd{left:143.640000px;}
.xf{left:153.000000px;}
.x18{left:162.000000px;}
.x13{left:164.160000px;}
.x12{left:187.200000px;}
.x15{left:201.600000px;}
.x11{left:208.800000px;}
.x8{left:272.160000px;}
.xc{left:288.000000px;}
.x16{left:358.920000px;}
.x7{left:388.440000px;}
.x6{left:389.880000px;}
.x2{left:429.480000px;}
.x9{left:525.240000px;}
.xa{left:573.120000px;}
.x14{left:621.360000px;}
.x10{left:657.000000px;}
.x19{left:787.680000px;}
.xb{left:865.440000px;}
@media print{
.v1{vertical-align:-157.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.489423pt;}
.ls0{letter-spacing:1.351680pt;}
.ws4{word-spacing:-17.792000pt;}
.ws1{word-spacing:-12.257280pt;}
.ws0{word-spacing:-9.566720pt;}
.ws3{word-spacing:0.000000pt;}
.ws2{word-spacing:372.486912pt;}
._f{margin-left:-40.181760pt;}
._11{margin-left:-17.367040pt;}
._10{margin-left:-15.744000pt;}
._14{margin-left:-14.737920pt;}
._b{margin-left:-11.504640pt;}
._8{margin-left:-5.698560pt;}
._6{margin-left:-3.763200pt;}
._4{margin-left:-2.365440pt;}
._0{margin-left:-0.913920pt;}
._1{width:1.720320pt;}
._3{width:2.903040pt;}
._5{width:3.816960pt;}
._2{width:4.784640pt;}
._9{width:6.289920pt;}
._a{width:7.580160pt;}
._7{width:8.494080pt;}
._d{width:9.945600pt;}
._e{width:10.859520pt;}
._13{width:12.282880pt;}
._c{width:13.601280pt;}
._12{width:14.814720pt;}
._16{width:63.139840pt;}
._15{width:174.528000pt;}
.fs3{font-size:37.120000pt;}
.fs0{font-size:47.360000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:122.880000pt;}
.y5b{bottom:-6.079867pt;}
.y0{bottom:0.000000pt;}
.ye4{bottom:1.920000pt;}
.y60{bottom:7.680000pt;}
.y1{bottom:8.320000pt;}
.y40{bottom:35.520000pt;}
.y3f{bottom:51.520000pt;}
.y3e{bottom:67.520000pt;}
.yc8{bottom:68.800000pt;}
.y3d{bottom:83.520000pt;}
.yc7{bottom:88.000000pt;}
.y3c{bottom:99.520000pt;}
.yc6{bottom:107.200000pt;}
.y3b{bottom:120.640000pt;}
.yc5{bottom:126.400000pt;}
.y3a{bottom:136.640000pt;}
.y5a{bottom:143.040000pt;}
.yc4{bottom:145.600000pt;}
.y39{bottom:152.640000pt;}
.y59{bottom:159.040000pt;}
.ya4{bottom:161.280000pt;}
.yc3{bottom:164.800000pt;}
.y38{bottom:168.640000pt;}
.y58{bottom:175.040000pt;}
.ya3{bottom:180.480000pt;}
.yc2{bottom:184.000000pt;}
.y37{bottom:184.640000pt;}
.y57{bottom:191.040000pt;}
.ya2{bottom:199.680000pt;}
.y36{bottom:200.640000pt;}
.y35{bottom:216.640000pt;}
.y56{bottom:218.880000pt;}
.yc1{bottom:222.400000pt;}
.y34{bottom:232.640000pt;}
.y55{bottom:234.880000pt;}
.ya1{bottom:238.080000pt;}
.yc0{bottom:241.600000pt;}
.y33{bottom:248.640000pt;}
.y54{bottom:250.880000pt;}
.ya0{bottom:257.280000pt;}
.ye3{bottom:259.200000pt;}
.ybf{bottom:260.800000pt;}
.y32{bottom:264.640000pt;}
.y53{bottom:266.880000pt;}
.y9f{bottom:276.480000pt;}
.ybe{bottom:280.000000pt;}
.y31{bottom:280.640000pt;}
.y52{bottom:282.880000pt;}
.y7a{bottom:286.080000pt;}
.y30{bottom:296.640000pt;}
.y51{bottom:298.880000pt;}
.ybd{bottom:299.200000pt;}
.y79{bottom:305.280000pt;}
.y2f{bottom:312.640000pt;}
.y50{bottom:314.880000pt;}
.y78{bottom:324.480000pt;}
.y94{bottom:325.120000pt;}
.y2e{bottom:328.640000pt;}
.y4f{bottom:330.880000pt;}
.ybc{bottom:337.600000pt;}
.y77{bottom:343.680000pt;}
.y2d{bottom:344.640000pt;}
.y4e{bottom:346.880000pt;}
.ybb{bottom:356.800000pt;}
.y2c{bottom:360.640000pt;}
.ye2{bottom:361.280000pt;}
.y4d{bottom:362.880000pt;}
.y93{bottom:375.680000pt;}
.yba{bottom:376.000000pt;}
.y2b{bottom:376.640000pt;}
.y4c{bottom:378.880000pt;}
.ye1{bottom:380.480000pt;}
.y4b{bottom:394.880000pt;}
.yb9{bottom:395.200000pt;}
.y2a{bottom:398.400000pt;}
.ye0{bottom:399.680000pt;}
.y76{bottom:401.280000pt;}
.y4a{bottom:410.880000pt;}
.y92{bottom:414.080000pt;}
.y29{bottom:414.400000pt;}
.ydf{bottom:418.880000pt;}
.y75{bottom:420.480000pt;}
.y49{bottom:426.880000pt;}
.y28{bottom:430.400000pt;}
.y91{bottom:433.280000pt;}
.yde{bottom:438.080000pt;}
.y74{bottom:439.680000pt;}
.y48{bottom:442.880000pt;}
.y27{bottom:446.400000pt;}
.y90{bottom:452.480000pt;}
.yb8{bottom:452.800000pt;}
.ydd{bottom:457.280000pt;}
.y47{bottom:458.880000pt;}
.y9e{bottom:460.480000pt;}
.y26{bottom:462.400000pt;}
.y8f{bottom:471.680000pt;}
.yb7{bottom:472.000000pt;}
.ydc{bottom:476.480000pt;}
.y73{bottom:478.080000pt;}
.y25{bottom:478.400000pt;}
.y9d{bottom:479.680000pt;}
.y46{bottom:486.400000pt;}
.y8e{bottom:490.880000pt;}
.yb6{bottom:491.200000pt;}
.y24{bottom:494.400000pt;}
.ydb{bottom:495.680000pt;}
.y72{bottom:497.280000pt;}
.y9c{bottom:498.880000pt;}
.y45{bottom:502.400000pt;}
.y8d{bottom:510.080000pt;}
.y23{bottom:510.400000pt;}
.y71{bottom:516.480000pt;}
.yf{bottom:518.400000pt;}
.y22{bottom:526.400000pt;}
.yda{bottom:534.080000pt;}
.ye{bottom:534.400000pt;}
.y70{bottom:535.680000pt;}
.y9b{bottom:537.280000pt;}
.y21{bottom:542.400000pt;}
.y8c{bottom:548.480000pt;}
.yd{bottom:550.400000pt;}
.yd9{bottom:553.280000pt;}
.y6f{bottom:554.880000pt;}
.y9a{bottom:556.480000pt;}
.y20{bottom:558.400000pt;}
.yc{bottom:566.400000pt;}
.y8b{bottom:567.680000pt;}
.yd8{bottom:572.480000pt;}
.y6e{bottom:574.080000pt;}
.y1f{bottom:574.400000pt;}
.y99{bottom:575.680000pt;}
.yb5{bottom:578.560000pt;}
.yb{bottom:582.400000pt;}
.y8a{bottom:586.880000pt;}
.y1e{bottom:590.400000pt;}
.yd7{bottom:591.680000pt;}
.y6d{bottom:593.280000pt;}
.y98{bottom:594.880000pt;}
.yb4{bottom:597.760000pt;}
.ya{bottom:598.400000pt;}
.y89{bottom:606.080000pt;}
.y1d{bottom:606.400000pt;}
.yd6{bottom:610.880000pt;}
.y6c{bottom:612.480000pt;}
.y97{bottom:614.080000pt;}
.y9{bottom:614.400000pt;}
.yb3{bottom:616.960000pt;}
.y1c{bottom:622.400000pt;}
.y88{bottom:625.280000pt;}
.yd5{bottom:630.080000pt;}
.y8{bottom:630.400000pt;}
.y96{bottom:633.280000pt;}
.yb2{bottom:636.160000pt;}
.y1b{bottom:638.400000pt;}
.y87{bottom:644.480000pt;}
.y7{bottom:646.400000pt;}
.yd4{bottom:649.280000pt;}
.y95{bottom:652.480000pt;}
.y1a{bottom:654.400000pt;}
.yb1{bottom:655.360000pt;}
.y6{bottom:662.400000pt;}
.yd3{bottom:668.480000pt;}
.y19{bottom:670.400000pt;}
.yb0{bottom:674.560000pt;}
.y5{bottom:678.400000pt;}
.y18{bottom:686.400000pt;}
.y6b{bottom:689.280000pt;}
.y4{bottom:694.400000pt;}
.y86{bottom:702.080000pt;}
.y17{bottom:702.400000pt;}
.y6a{bottom:708.480000pt;}
.y3{bottom:710.400000pt;}
.yaf{bottom:712.960000pt;}
.y16{bottom:718.400000pt;}
.y85{bottom:721.280000pt;}
.y2{bottom:726.400000pt;}
.yae{bottom:732.160000pt;}
.yd2{bottom:732.480000pt;}
.y15{bottom:734.400000pt;}
.y84{bottom:740.480000pt;}
.y44{bottom:742.400000pt;}
.y69{bottom:746.880000pt;}
.y14{bottom:750.400000pt;}
.yad{bottom:751.360000pt;}
.yd1{bottom:751.680000pt;}
.y43{bottom:758.400000pt;}
.y83{bottom:759.680000pt;}
.y68{bottom:766.080000pt;}
.y13{bottom:766.400000pt;}
.yac{bottom:770.560000pt;}
.yd0{bottom:770.880000pt;}
.y42{bottom:774.400000pt;}
.y82{bottom:778.880000pt;}
.y12{bottom:782.400000pt;}
.y67{bottom:785.280000pt;}
.ycf{bottom:790.080000pt;}
.y41{bottom:790.400000pt;}
.y81{bottom:798.080000pt;}
.y11{bottom:798.400000pt;}
.y66{bottom:804.480000pt;}
.yab{bottom:808.960000pt;}
.yce{bottom:809.280000pt;}
.y80{bottom:817.280000pt;}
.y65{bottom:823.680000pt;}
.y5f{bottom:828.160000pt;}
.y10{bottom:834.880000pt;}
.y64{bottom:842.880000pt;}
.yaa{bottom:847.360000pt;}
.ycd{bottom:847.680000pt;}
.y7f{bottom:855.680000pt;}
.y63{bottom:862.080000pt;}
.y5e{bottom:864.960000pt;}
.ya9{bottom:866.560000pt;}
.ycc{bottom:866.880000pt;}
.y7e{bottom:874.880000pt;}
.y62{bottom:881.280000pt;}
.ycb{bottom:886.080000pt;}
.y7d{bottom:894.080000pt;}
.y61{bottom:900.480000pt;}
.ya8{bottom:904.960000pt;}
.yca{bottom:905.280000pt;}
.y7c{bottom:913.280000pt;}
.ya7{bottom:924.160000pt;}
.yc9{bottom:924.480000pt;}
.y7b{bottom:932.480000pt;}
.y5d{bottom:941.120000pt;}
.ya6{bottom:943.360000pt;}
.ya5{bottom:962.560000pt;}
.y5c{bottom:977.920000pt;}
.h5{height:2.560000pt;}
.ha{height:10.560000pt;}
.h3{height:39.165000pt;}
.h6{height:39.607040pt;}
.h1{height:50.533120pt;}
.h2{height:57.361920pt;}
.h9{height:57.375000pt;}
.h4{height:66.750000pt;}
.h7{height:89.460000pt;}
.h8{height:131.112960pt;}
.h0{height:1056.000000pt;}
.w2{width:115.840000pt;}
.w1{width:143.680000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:21.439867pt;}
.x4{left:57.920000pt;}
.x5{left:59.520000pt;}
.x1{left:64.000000pt;}
.x17{left:72.000000pt;}
.x3{left:96.000000pt;}
.xd{left:127.680000pt;}
.xf{left:136.000000pt;}
.x18{left:144.000000pt;}
.x13{left:145.920000pt;}
.x12{left:166.400000pt;}
.x15{left:179.200000pt;}
.x11{left:185.600000pt;}
.x8{left:241.920000pt;}
.xc{left:256.000000pt;}
.x16{left:319.040000pt;}
.x7{left:345.280000pt;}
.x6{left:346.560000pt;}
.x2{left:381.760000pt;}
.x9{left:466.880000pt;}
.xa{left:509.440000pt;}
.x14{left:552.320000pt;}
.x10{left:584.000000pt;}
.x19{left:700.160000pt;}
.xb{left:769.280000pt;}
}

