
    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_f50bc4d6072a980c1a8cc011.woff')format("woff");}.ff1{font-family:ff1;line-height:0.985000;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_985eff688a3bc9800575f756.woff')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_bc8cb8189c698055fabf5a2f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.985000;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_659c08e62d5916474d151f47.woff')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_31d25522662845dfa5f49f33.woff')format("woff");}.ff5{font-family:ff5;line-height:0.712000;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_cd0b8c0260dc74e3933230ed.woff')format("woff");}.ff6{font-family:ff6;line-height:1.018000;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_ba42a661c19659ecde801daf.woff')format("woff");}.ff7{font-family:ff7;line-height:0.930000;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_0c6c1fea9cc62890e6faeda8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.942000;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_f998f01d281de5a05fe844fa.woff')format("woff");}.ff9{font-family:ff9;line-height:0.795000;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_bc8cb8189c698055fabf5a2f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.985000;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_d723c32f7dd90f021ca9e2b1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.981000;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:ffc;src:url('chunks/assets/font_6b172a617c1195a48670e8e7.woff')format("woff");}.ffc{font-family:ffc;line-height:0.919000;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;}
.m6{transform:matrix(0.230516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230516,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.231263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231263,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.235487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235487,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.236794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236794,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.239922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239922,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.240353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240353,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.240956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240956,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,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);}
.m5{transform:matrix(0.250584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250584,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253334,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254722,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{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;}
.ls2{letter-spacing:-0.840000px;}
.ls3{letter-spacing:-0.540000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.600000px;}
.ls4{letter-spacing:1.080000px;}
.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;}
}
.ws6{word-spacing:-17.580000px;}
.ws1{word-spacing:-11.448000px;}
.ws0{word-spacing:-11.280000px;}
.wsb{word-spacing:-10.176000px;}
.ws7{word-spacing:-9.828000px;}
.ws15{word-spacing:-2.208000px;}
.ws19{word-spacing:-2.160000px;}
.ws10{word-spacing:-2.112000px;}
.ws1f{word-spacing:-2.064000px;}
.ws1c{word-spacing:-2.016000px;}
.ws20{word-spacing:-1.632000px;}
.wsa{word-spacing:-1.080000px;}
.ws2{word-spacing:-0.660000px;}
.ws9{word-spacing:-0.600000px;}
.ws8{word-spacing:-0.378000px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:0.540000px;}
.ws4{word-spacing:0.840000px;}
.ws1a{word-spacing:0.912000px;}
.ws18{word-spacing:1.632000px;}
.wse{word-spacing:2.448000px;}
.ws11{word-spacing:2.928000px;}
.ws16{word-spacing:3.312000px;}
.ws13{word-spacing:3.360000px;}
.ws1e{word-spacing:6.000000px;}
.ws1d{word-spacing:6.144000px;}
.wsd{word-spacing:6.528000px;}
.ws1b{word-spacing:6.960000px;}
.ws14{word-spacing:9.456000px;}
.wsf{word-spacing:14.112000px;}
.wsc{word-spacing:14.352000px;}
.ws17{word-spacing:14.928000px;}
.ws12{word-spacing:17.376000px;}
._6{margin-left:-8.164800px;}
._7{margin-left:-5.022000px;}
._1{margin-left:-3.721800px;}
._4{margin-left:-2.700000px;}
._0{margin-left:-1.448400px;}
._3{width:1.000800px;}
._5{width:2.340000px;}
._2{width:4.270200px;}
._8{width:6.286800px;}
.fc2{color:rgb(40,47,55);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(141,89,74);}
.fs0{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:85.285200px;}
.fs5{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:29.932650px;}
.y28{bottom:99.779550px;}
.y52{bottom:107.279550px;}
.y27{bottom:117.779550px;}
.y51{bottom:122.279550px;}
.y26{bottom:135.779550px;}
.y50{bottom:137.279550px;}
.y4f{bottom:152.279550px;}
.y25{bottom:153.779550px;}
.y4e{bottom:167.279550px;}
.y24{bottom:171.779550px;}
.y4d{bottom:182.279550px;}
.y23{bottom:189.779550px;}
.y4c{bottom:197.279550px;}
.y22{bottom:207.779550px;}
.y4b{bottom:212.279550px;}
.y21{bottom:225.779550px;}
.y4a{bottom:227.279550px;}
.y49{bottom:242.279550px;}
.y20{bottom:243.779550px;}
.y48{bottom:257.279550px;}
.y1f{bottom:261.779550px;}
.y47{bottom:272.279550px;}
.y1e{bottom:279.779550px;}
.y46{bottom:287.279550px;}
.y1d{bottom:297.779550px;}
.y45{bottom:302.279550px;}
.y1c{bottom:315.779550px;}
.y44{bottom:317.279550px;}
.y43{bottom:332.279550px;}
.y1b{bottom:333.779550px;}
.y42{bottom:347.279550px;}
.y1a{bottom:351.779550px;}
.y41{bottom:362.279550px;}
.y19{bottom:369.779550px;}
.y40{bottom:377.279550px;}
.y18{bottom:387.779550px;}
.y3f{bottom:392.279550px;}
.y17{bottom:405.779550px;}
.y3e{bottom:407.279550px;}
.y3d{bottom:422.279550px;}
.y16{bottom:423.779550px;}
.y3c{bottom:437.279550px;}
.y15{bottom:441.779550px;}
.y3b{bottom:452.279550px;}
.y14{bottom:459.779550px;}
.y3a{bottom:467.279550px;}
.y13{bottom:477.779550px;}
.y39{bottom:482.279550px;}
.y12{bottom:495.779550px;}
.y38{bottom:497.279550px;}
.y37{bottom:512.279550px;}
.y11{bottom:513.779550px;}
.y36{bottom:527.279550px;}
.y10{bottom:531.779550px;}
.y35{bottom:542.279550px;}
.yf{bottom:549.779550px;}
.y34{bottom:557.279550px;}
.ye{bottom:567.779550px;}
.y33{bottom:572.279550px;}
.y2b{bottom:585.779550px;}
.y32{bottom:587.279550px;}
.y2a{bottom:603.779550px;}
.y29{bottom:621.779550px;}
.yd{bottom:639.779550px;}
.y2c{bottom:657.779550px;}
.yc{bottom:675.779550px;}
.yb{bottom:693.779550px;}
.ya{bottom:711.779550px;}
.y9{bottom:729.779550px;}
.y2e{bottom:747.779550px;}
.y2d{bottom:765.779550px;}
.y30{bottom:783.779550px;}
.y4{bottom:801.779550px;}
.y3{bottom:819.779550px;}
.y2f{bottom:837.779550px;}
.y31{bottom:873.779550px;}
.y8{bottom:981.779550px;}
.y7{bottom:1017.779550px;}
.y6{bottom:1053.779550px;}
.y5{bottom:1089.779550px;}
.y2{bottom:1200.474450px;}
.h5{height:29.652000px;}
.h9{height:34.608000px;}
.h2{height:36.240000px;}
.h7{height:38.934000px;}
.h4{height:40.068000px;}
.h8{height:47.220000px;}
.h3{height:64.390326px;}
.h6{height:110.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:57.656700px;}
.xc{left:108.000000px;}
.x1{left:111.401550px;}
.x4{left:117.909450px;}
.xb{left:119.704650px;}
.x7{left:129.192900px;}
.x9{left:173.686500px;}
.x3{left:175.399650px;}
.x8{left:190.838400px;}
.xa{left:280.848150px;}
.x6{left:464.765400px;}
.x10{left:472.961400px;}
.x11{left:489.969300px;}
.x5{left:518.668800px;}
.xd{left:537.196500px;}
.xf{left:538.510500px;}
.xe{left:817.058400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.746667pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls4{letter-spacing:0.960000pt;}
.ws6{word-spacing:-15.626667pt;}
.ws1{word-spacing:-10.176000pt;}
.ws0{word-spacing:-10.026667pt;}
.wsb{word-spacing:-9.045333pt;}
.ws7{word-spacing:-8.736000pt;}
.ws15{word-spacing:-1.962667pt;}
.ws19{word-spacing:-1.920000pt;}
.ws10{word-spacing:-1.877333pt;}
.ws1f{word-spacing:-1.834667pt;}
.ws1c{word-spacing:-1.792000pt;}
.ws20{word-spacing:-1.450667pt;}
.wsa{word-spacing:-0.960000pt;}
.ws2{word-spacing:-0.586667pt;}
.ws9{word-spacing:-0.533333pt;}
.ws8{word-spacing:-0.336000pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:0.480000pt;}
.ws4{word-spacing:0.746667pt;}
.ws1a{word-spacing:0.810667pt;}
.ws18{word-spacing:1.450667pt;}
.wse{word-spacing:2.176000pt;}
.ws11{word-spacing:2.602667pt;}
.ws16{word-spacing:2.944000pt;}
.ws13{word-spacing:2.986667pt;}
.ws1e{word-spacing:5.333333pt;}
.ws1d{word-spacing:5.461333pt;}
.wsd{word-spacing:5.802667pt;}
.ws1b{word-spacing:6.186667pt;}
.ws14{word-spacing:8.405333pt;}
.wsf{word-spacing:12.544000pt;}
.wsc{word-spacing:12.757333pt;}
.ws17{word-spacing:13.269333pt;}
.ws12{word-spacing:15.445333pt;}
._6{margin-left:-7.257600pt;}
._7{margin-left:-4.464000pt;}
._1{margin-left:-3.308267pt;}
._4{margin-left:-2.400000pt;}
._0{margin-left:-1.287467pt;}
._3{width:0.889600pt;}
._5{width:2.080000pt;}
._2{width:3.795733pt;}
._8{width:5.588267pt;}
.fs0{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:75.809067pt;}
.fs5{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:26.606800pt;}
.y28{bottom:88.692933pt;}
.y52{bottom:95.359600pt;}
.y27{bottom:104.692933pt;}
.y51{bottom:108.692933pt;}
.y26{bottom:120.692933pt;}
.y50{bottom:122.026267pt;}
.y4f{bottom:135.359600pt;}
.y25{bottom:136.692933pt;}
.y4e{bottom:148.692933pt;}
.y24{bottom:152.692933pt;}
.y4d{bottom:162.026267pt;}
.y23{bottom:168.692933pt;}
.y4c{bottom:175.359600pt;}
.y22{bottom:184.692933pt;}
.y4b{bottom:188.692933pt;}
.y21{bottom:200.692933pt;}
.y4a{bottom:202.026267pt;}
.y49{bottom:215.359600pt;}
.y20{bottom:216.692933pt;}
.y48{bottom:228.692933pt;}
.y1f{bottom:232.692933pt;}
.y47{bottom:242.026267pt;}
.y1e{bottom:248.692933pt;}
.y46{bottom:255.359600pt;}
.y1d{bottom:264.692933pt;}
.y45{bottom:268.692933pt;}
.y1c{bottom:280.692933pt;}
.y44{bottom:282.026267pt;}
.y43{bottom:295.359600pt;}
.y1b{bottom:296.692933pt;}
.y42{bottom:308.692933pt;}
.y1a{bottom:312.692933pt;}
.y41{bottom:322.026267pt;}
.y19{bottom:328.692933pt;}
.y40{bottom:335.359600pt;}
.y18{bottom:344.692933pt;}
.y3f{bottom:348.692933pt;}
.y17{bottom:360.692933pt;}
.y3e{bottom:362.026267pt;}
.y3d{bottom:375.359600pt;}
.y16{bottom:376.692933pt;}
.y3c{bottom:388.692933pt;}
.y15{bottom:392.692933pt;}
.y3b{bottom:402.026267pt;}
.y14{bottom:408.692933pt;}
.y3a{bottom:415.359600pt;}
.y13{bottom:424.692933pt;}
.y39{bottom:428.692933pt;}
.y12{bottom:440.692933pt;}
.y38{bottom:442.026267pt;}
.y37{bottom:455.359600pt;}
.y11{bottom:456.692933pt;}
.y36{bottom:468.692933pt;}
.y10{bottom:472.692933pt;}
.y35{bottom:482.026267pt;}
.yf{bottom:488.692933pt;}
.y34{bottom:495.359600pt;}
.ye{bottom:504.692933pt;}
.y33{bottom:508.692933pt;}
.y2b{bottom:520.692933pt;}
.y32{bottom:522.026267pt;}
.y2a{bottom:536.692933pt;}
.y29{bottom:552.692933pt;}
.yd{bottom:568.692933pt;}
.y2c{bottom:584.692933pt;}
.yc{bottom:600.692933pt;}
.yb{bottom:616.692933pt;}
.ya{bottom:632.692933pt;}
.y9{bottom:648.692933pt;}
.y2e{bottom:664.692933pt;}
.y2d{bottom:680.692933pt;}
.y30{bottom:696.692933pt;}
.y4{bottom:712.692933pt;}
.y3{bottom:728.692933pt;}
.y2f{bottom:744.692933pt;}
.y31{bottom:776.692933pt;}
.y8{bottom:872.692933pt;}
.y7{bottom:904.692933pt;}
.y6{bottom:936.692933pt;}
.y5{bottom:968.692933pt;}
.y2{bottom:1067.088400pt;}
.h5{height:26.357333pt;}
.h9{height:30.762667pt;}
.h2{height:32.213333pt;}
.h7{height:34.608000pt;}
.h4{height:35.616000pt;}
.h8{height:41.973333pt;}
.h3{height:57.235845pt;}
.h6{height:98.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:51.250400pt;}
.xc{left:96.000000pt;}
.x1{left:99.023600pt;}
.x4{left:104.808400pt;}
.xb{left:106.404133pt;}
.x7{left:114.838133pt;}
.x9{left:154.388000pt;}
.x3{left:155.910800pt;}
.x8{left:169.634133pt;}
.xa{left:249.642800pt;}
.x6{left:413.124800pt;}
.x10{left:420.410133pt;}
.x11{left:435.528267pt;}
.x5{left:461.038933pt;}
.xd{left:477.508000pt;}
.xf{left:478.676000pt;}
.xe{left:726.274133pt;}
}

