
    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_23826313d6829a8c2fcbad59.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_05d06cabfe9de81d36456190.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_6c8bd64e55c686151a0ddc2c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_947494631ecc5abbca8d9a3f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_057e3a3d235efee6bbb9fdd9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_3ffbaf933ea6fc2767a387bf.woff')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_dff5a1f9ab177fb9a4325cf6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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_030718124f3e9d4521966435.woff')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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_1d765cb5159446c3ca522a93.woff')format("woff");}.ff9{font-family:ff9;line-height:1.400000;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_2ede7c949c599d45fc2bc75f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_6f9d923b505f7703b4299e31.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_273dfbcb2b3270023c66f010.woff')format("woff");}.ffc{font-family:ffc;line-height:1.400000;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:ffd;src:url('chunks/assets/font_96b6c48cc6f38bf8731e402a.woff')format("woff");}.ffd{font-family:ffd;line-height:1.400000;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:ffe;src:url('chunks/assets/font_5b6cd93c387f4792018e143b.woff')format("woff");}.ffe{font-family:ffe;line-height:1.400000;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:fff;src:url('chunks/assets/font_cc4d58f87afb9b3e5e152933.woff')format("woff");}.fff{font-family:fff;line-height:1.400000;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:ff10;src:url('chunks/assets/font_98a3cdf6d0eea81462e423f3.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000000;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:ff11;src:url('chunks/assets/font_05d06cabfe9de81d36456190.woff')format("woff");}.ff11{font-family:ff11;line-height:1.400000;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:ff12;src:url('chunks/assets/font_a748273f67acd30d8773fbf1.woff')format("woff");}.ff12{font-family:ff12;line-height:1.000000;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:ff13;src:url('chunks/assets/font_880fed50c1131ce15f7aaa89.woff')format("woff");}.ff13{font-family:ff13;line-height:1.400000;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;}
.ls6{letter-spacing:-3.455052px;}
.ls4{letter-spacing:-0.900000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.428985px;}
.ls2{letter-spacing:1.200000px;}
.ls1{letter-spacing:3.600000px;}
.ls5{letter-spacing:9.590400px;}
.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;}
}
.wsa{word-spacing:-18.414000px;}
.wsc{word-spacing:-18.216000px;}
.ws1{word-spacing:-16.740000px;}
.ws1b{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.066000px;}
.ws9{word-spacing:-14.100000px;}
.wsb{word-spacing:-9.686400px;}
.ws1a{word-spacing:-4.752000px;}
.ws14{word-spacing:-4.092000px;}
.ws21{word-spacing:-3.060000px;}
.ws11{word-spacing:-2.178000px;}
.ws12{word-spacing:-2.112000px;}
.ws1e{word-spacing:-1.620000px;}
.ws1d{word-spacing:-1.560000px;}
.ws24{word-spacing:-1.260000px;}
.ws15{word-spacing:-1.122000px;}
.ws6{word-spacing:-0.600000px;}
.ws8{word-spacing:-0.132000px;}
.ws2{word-spacing:0.000000px;}
.ws1c{word-spacing:0.300000px;}
.ws22{word-spacing:0.780000px;}
.ws7{word-spacing:0.900000px;}
.ws23{word-spacing:1.200000px;}
.ws1f{word-spacing:1.800000px;}
.ws20{word-spacing:2.640000px;}
.ws17{word-spacing:3.366000px;}
.ws19{word-spacing:3.432000px;}
.wsd{word-spacing:3.455052px;}
.ws16{word-spacing:4.554000px;}
.wse{word-spacing:4.950000px;}
.ws4{word-spacing:6.318000px;}
.ws3{word-spacing:6.372000px;}
.wsf{word-spacing:7.392000px;}
.ws18{word-spacing:10.032000px;}
.ws10{word-spacing:10.890000px;}
.ws5{word-spacing:11.394000px;}
.ws13{word-spacing:12.342000px;}
._d{margin-left:-9.590400px;}
._5{margin-left:-7.314210px;}
._13{margin-left:-6.225915px;}
._3{margin-left:-5.218763px;}
._c{margin-left:-3.946343px;}
._2{margin-left:-2.844000px;}
._0{margin-left:-1.501448px;}
._1{width:1.681621px;}
._f{width:3.544200px;}
._a{width:4.613400px;}
._8{width:6.042352px;}
._7{width:7.197248px;}
._10{width:8.335800px;}
._9{width:10.197000px;}
._4{width:11.502000px;}
._b{width:13.440848px;}
._12{width:14.473905px;}
._6{width:16.843200px;}
._e{width:20.397247px;}
._11{width:21.737047px;}
._14{width:22.828087px;}
.fc2{color:rgb(101,98,99);}
.fc1{color:rgb(181,170,105);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:36.000000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs7{font-size:84.000000px;}
.fs0{font-size:85.797000px;}
.fs5{font-size:90.000000px;}
.fs8{font-size:96.000000px;}
.fs4{font-size:120.000000px;}
.fs9{font-size:172.752600px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.767300px;}
.y29{bottom:17.983350px;}
.y26{bottom:26.200200px;}
.y2a{bottom:30.614100px;}
.y2{bottom:42.949800px;}
.y25{bottom:47.200200px;}
.ya{bottom:53.999400px;}
.y2b{bottom:55.288350px;}
.y24{bottom:68.200200px;}
.y9{bottom:70.199400px;}
.y8{bottom:86.399400px;}
.y7{bottom:106.851900px;}
.y23{bottom:162.900000px;}
.y54{bottom:173.399400px;}
.y75{bottom:173.432400px;}
.y22{bottom:185.406000px;}
.y53{bottom:195.905400px;}
.y74{bottom:195.938400px;}
.y21{bottom:207.912000px;}
.y52{bottom:218.411400px;}
.y73{bottom:218.444400px;}
.y20{bottom:230.418000px;}
.y51{bottom:240.917400px;}
.y1f{bottom:252.924000px;}
.y50{bottom:263.423400px;}
.y72{bottom:263.439900px;}
.y1e{bottom:275.430000px;}
.y4f{bottom:285.929400px;}
.y71{bottom:285.945900px;}
.y1d{bottom:297.936000px;}
.y4e{bottom:308.435400px;}
.y70{bottom:308.451900px;}
.y1c{bottom:320.442000px;}
.y4d{bottom:330.941400px;}
.y6f{bottom:330.957900px;}
.y1b{bottom:342.948000px;}
.y4c{bottom:353.447400px;}
.y6e{bottom:353.463900px;}
.y1a{bottom:365.454000px;}
.y4b{bottom:375.953400px;}
.y6d{bottom:375.969900px;}
.y19{bottom:387.960000px;}
.y7a{bottom:398.459400px;}
.y6c{bottom:398.475900px;}
.y18{bottom:410.466000px;}
.y4a{bottom:420.948900px;}
.y79{bottom:420.965400px;}
.y6b{bottom:420.981900px;}
.y17{bottom:432.972000px;}
.y49{bottom:443.454900px;}
.y78{bottom:443.471400px;}
.y6a{bottom:443.487900px;}
.y16{bottom:455.478000px;}
.y48{bottom:465.960900px;}
.y77{bottom:465.977400px;}
.y69{bottom:465.993900px;}
.y47{bottom:488.466900px;}
.y76{bottom:488.483400px;}
.y46{bottom:510.972900px;}
.y68{bottom:510.989400px;}
.y45{bottom:533.478900px;}
.y67{bottom:533.495400px;}
.y44{bottom:555.984900px;}
.y66{bottom:556.001400px;}
.y43{bottom:578.490900px;}
.y65{bottom:578.507400px;}
.y42{bottom:600.996900px;}
.y64{bottom:601.013400px;}
.y15{bottom:604.951950px;}
.y8e{bottom:618.035400px;}
.y41{bottom:623.502900px;}
.y63{bottom:623.519400px;}
.y14{bottom:625.951950px;}
.y8d{bottom:639.035400px;}
.y40{bottom:646.008900px;}
.y62{bottom:646.025400px;}
.y13{bottom:646.951950px;}
.y8c{bottom:660.035400px;}
.y12{bottom:667.951950px;}
.y3f{bottom:668.514900px;}
.y3e{bottom:691.020900px;}
.y8b{bottom:691.535400px;}
.y11{bottom:695.430750px;}
.y8a{bottom:712.535400px;}
.y3d{bottom:713.526900px;}
.y10{bottom:716.430750px;}
.y61{bottom:736.032900px;}
.yf{bottom:737.430750px;}
.y89{bottom:744.035400px;}
.ye{bottom:758.430750px;}
.y3c{bottom:758.522400px;}
.y60{bottom:758.538900px;}
.y88{bottom:765.035400px;}
.y3b{bottom:781.028400px;}
.y5f{bottom:781.044900px;}
.y87{bottom:796.535400px;}
.y3a{bottom:803.534400px;}
.y5e{bottom:803.550900px;}
.y86{bottom:817.535400px;}
.y39{bottom:826.040400px;}
.y5d{bottom:826.056900px;}
.y38{bottom:848.546400px;}
.y85{bottom:849.035400px;}
.yd{bottom:861.828000px;}
.y37{bottom:871.052400px;}
.y84{bottom:880.535400px;}
.y36{bottom:893.558400px;}
.y83{bottom:901.535400px;}
.yc{bottom:901.584000px;}
.y5c{bottom:916.064400px;}
.y82{bottom:933.035400px;}
.yb{bottom:936.084000px;}
.y35{bottom:938.553900px;}
.y5b{bottom:938.570400px;}
.y34{bottom:961.059900px;}
.y5a{bottom:961.076400px;}
.y81{bottom:964.535400px;}
.y33{bottom:983.565900px;}
.y59{bottom:983.582400px;}
.y80{bottom:996.035400px;}
.y32{bottom:1006.071900px;}
.y58{bottom:1006.088400px;}
.y7f{bottom:1017.035400px;}
.y31{bottom:1028.577900px;}
.y57{bottom:1028.594400px;}
.y7e{bottom:1048.535400px;}
.y30{bottom:1051.083900px;}
.y56{bottom:1051.100400px;}
.y7d{bottom:1069.535400px;}
.y2f{bottom:1073.589900px;}
.y55{bottom:1073.606400px;}
.y7c{bottom:1090.535400px;}
.y2e{bottom:1096.095900px;}
.y6{bottom:1099.267350px;}
.y2d{bottom:1118.601900px;}
.y5{bottom:1131.232500px;}
.y7b{bottom:1134.035400px;}
.y2c{bottom:1141.107900px;}
.y1{bottom:1146.411000px;}
.y3{bottom:1168.769550px;}
.y27{bottom:1185.328350px;}
.y28{bottom:1220.509800px;}
.h4{height:37.800000px;}
.h6{height:56.700000px;}
.h2{height:62.424000px;}
.h9{height:63.000000px;}
.h3{height:64.347750px;}
.h8{height:67.500000px;}
.h5{height:69.300000px;}
.ha{height:72.000000px;}
.hc{height:90.000000px;}
.h7{height:126.000000px;}
.hb{height:181.390230px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:354.229500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:21.259800px;}
.xd{left:52.789050px;}
.x1{left:54.000000px;}
.x5{left:57.401550px;}
.x4{left:60.612150px;}
.xe{left:106.299150px;}
.x2{left:155.902500px;}
.x3{left:209.902500px;}
.x9{left:212.598450px;}
.x6{left:221.456700px;}
.x7{left:223.378050px;}
.x8{left:239.130750px;}
.xa{left:825.235800px;}
.xf{left:829.480050px;}
.x10{left:831.002700px;}
.xb{left:835.129950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-3.071157pt;}
.ls4{letter-spacing:-0.800000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.381320pt;}
.ls2{letter-spacing:1.066667pt;}
.ls1{letter-spacing:3.200000pt;}
.ls5{letter-spacing:8.524800pt;}
.wsa{word-spacing:-16.368000pt;}
.wsc{word-spacing:-16.192000pt;}
.ws1{word-spacing:-14.880000pt;}
.ws1b{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.392000pt;}
.ws9{word-spacing:-12.533333pt;}
.wsb{word-spacing:-8.610133pt;}
.ws1a{word-spacing:-4.224000pt;}
.ws14{word-spacing:-3.637333pt;}
.ws21{word-spacing:-2.720000pt;}
.ws11{word-spacing:-1.936000pt;}
.ws12{word-spacing:-1.877333pt;}
.ws1e{word-spacing:-1.440000pt;}
.ws1d{word-spacing:-1.386667pt;}
.ws24{word-spacing:-1.120000pt;}
.ws15{word-spacing:-0.997333pt;}
.ws6{word-spacing:-0.533333pt;}
.ws8{word-spacing:-0.117333pt;}
.ws2{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.266667pt;}
.ws22{word-spacing:0.693333pt;}
.ws7{word-spacing:0.800000pt;}
.ws23{word-spacing:1.066667pt;}
.ws1f{word-spacing:1.600000pt;}
.ws20{word-spacing:2.346667pt;}
.ws17{word-spacing:2.992000pt;}
.ws19{word-spacing:3.050667pt;}
.wsd{word-spacing:3.071157pt;}
.ws16{word-spacing:4.048000pt;}
.wse{word-spacing:4.400000pt;}
.ws4{word-spacing:5.616000pt;}
.ws3{word-spacing:5.664000pt;}
.wsf{word-spacing:6.570667pt;}
.ws18{word-spacing:8.917333pt;}
.ws10{word-spacing:9.680000pt;}
.ws5{word-spacing:10.128000pt;}
.ws13{word-spacing:10.970667pt;}
._d{margin-left:-8.524800pt;}
._5{margin-left:-6.501520pt;}
._13{margin-left:-5.534147pt;}
._3{margin-left:-4.638900pt;}
._c{margin-left:-3.507860pt;}
._2{margin-left:-2.528000pt;}
._0{margin-left:-1.334620pt;}
._1{width:1.494774pt;}
._f{width:3.150400pt;}
._a{width:4.100800pt;}
._8{width:5.370980pt;}
._7{width:6.397553pt;}
._10{width:7.409600pt;}
._9{width:9.064000pt;}
._4{width:10.224000pt;}
._b{width:11.947420pt;}
._12{width:12.865693pt;}
._6{width:14.971733pt;}
._e{width:18.130887pt;}
._11{width:19.321820pt;}
._14{width:20.291633pt;}
.fs1{font-size:32.000000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs7{font-size:74.666667pt;}
.fs0{font-size:76.264000pt;}
.fs5{font-size:80.000000pt;}
.fs8{font-size:85.333333pt;}
.fs4{font-size:106.666667pt;}
.fs9{font-size:153.557867pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.570933pt;}
.y29{bottom:15.985200pt;}
.y26{bottom:23.289067pt;}
.y2a{bottom:27.212533pt;}
.y2{bottom:38.177600pt;}
.y25{bottom:41.955733pt;}
.ya{bottom:47.999467pt;}
.y2b{bottom:49.145200pt;}
.y24{bottom:60.622400pt;}
.y9{bottom:62.399467pt;}
.y8{bottom:76.799467pt;}
.y7{bottom:94.979467pt;}
.y23{bottom:144.800000pt;}
.y54{bottom:154.132800pt;}
.y75{bottom:154.162133pt;}
.y22{bottom:164.805333pt;}
.y53{bottom:174.138133pt;}
.y74{bottom:174.167467pt;}
.y21{bottom:184.810667pt;}
.y52{bottom:194.143467pt;}
.y73{bottom:194.172800pt;}
.y20{bottom:204.816000pt;}
.y51{bottom:214.148800pt;}
.y1f{bottom:224.821333pt;}
.y50{bottom:234.154133pt;}
.y72{bottom:234.168800pt;}
.y1e{bottom:244.826667pt;}
.y4f{bottom:254.159467pt;}
.y71{bottom:254.174133pt;}
.y1d{bottom:264.832000pt;}
.y4e{bottom:274.164800pt;}
.y70{bottom:274.179467pt;}
.y1c{bottom:284.837333pt;}
.y4d{bottom:294.170133pt;}
.y6f{bottom:294.184800pt;}
.y1b{bottom:304.842667pt;}
.y4c{bottom:314.175467pt;}
.y6e{bottom:314.190133pt;}
.y1a{bottom:324.848000pt;}
.y4b{bottom:334.180800pt;}
.y6d{bottom:334.195467pt;}
.y19{bottom:344.853333pt;}
.y7a{bottom:354.186133pt;}
.y6c{bottom:354.200800pt;}
.y18{bottom:364.858667pt;}
.y4a{bottom:374.176800pt;}
.y79{bottom:374.191467pt;}
.y6b{bottom:374.206133pt;}
.y17{bottom:384.864000pt;}
.y49{bottom:394.182133pt;}
.y78{bottom:394.196800pt;}
.y6a{bottom:394.211467pt;}
.y16{bottom:404.869333pt;}
.y48{bottom:414.187467pt;}
.y77{bottom:414.202133pt;}
.y69{bottom:414.216800pt;}
.y47{bottom:434.192800pt;}
.y76{bottom:434.207467pt;}
.y46{bottom:454.198133pt;}
.y68{bottom:454.212800pt;}
.y45{bottom:474.203467pt;}
.y67{bottom:474.218133pt;}
.y44{bottom:494.208800pt;}
.y66{bottom:494.223467pt;}
.y43{bottom:514.214133pt;}
.y65{bottom:514.228800pt;}
.y42{bottom:534.219467pt;}
.y64{bottom:534.234133pt;}
.y15{bottom:537.735067pt;}
.y8e{bottom:549.364800pt;}
.y41{bottom:554.224800pt;}
.y63{bottom:554.239467pt;}
.y14{bottom:556.401733pt;}
.y8d{bottom:568.031467pt;}
.y40{bottom:574.230133pt;}
.y62{bottom:574.244800pt;}
.y13{bottom:575.068400pt;}
.y8c{bottom:586.698133pt;}
.y12{bottom:593.735067pt;}
.y3f{bottom:594.235467pt;}
.y3e{bottom:614.240800pt;}
.y8b{bottom:614.698133pt;}
.y11{bottom:618.160667pt;}
.y8a{bottom:633.364800pt;}
.y3d{bottom:634.246133pt;}
.y10{bottom:636.827333pt;}
.y61{bottom:654.251467pt;}
.yf{bottom:655.494000pt;}
.y89{bottom:661.364800pt;}
.ye{bottom:674.160667pt;}
.y3c{bottom:674.242133pt;}
.y60{bottom:674.256800pt;}
.y88{bottom:680.031467pt;}
.y3b{bottom:694.247467pt;}
.y5f{bottom:694.262133pt;}
.y87{bottom:708.031467pt;}
.y3a{bottom:714.252800pt;}
.y5e{bottom:714.267467pt;}
.y86{bottom:726.698133pt;}
.y39{bottom:734.258133pt;}
.y5d{bottom:734.272800pt;}
.y38{bottom:754.263467pt;}
.y85{bottom:754.698133pt;}
.yd{bottom:766.069333pt;}
.y37{bottom:774.268800pt;}
.y84{bottom:782.698133pt;}
.y36{bottom:794.274133pt;}
.y83{bottom:801.364800pt;}
.yc{bottom:801.408000pt;}
.y5c{bottom:814.279467pt;}
.y82{bottom:829.364800pt;}
.yb{bottom:832.074667pt;}
.y35{bottom:834.270133pt;}
.y5b{bottom:834.284800pt;}
.y34{bottom:854.275467pt;}
.y5a{bottom:854.290133pt;}
.y81{bottom:857.364800pt;}
.y33{bottom:874.280800pt;}
.y59{bottom:874.295467pt;}
.y80{bottom:885.364800pt;}
.y32{bottom:894.286133pt;}
.y58{bottom:894.300800pt;}
.y7f{bottom:904.031467pt;}
.y31{bottom:914.291467pt;}
.y57{bottom:914.306133pt;}
.y7e{bottom:932.031467pt;}
.y30{bottom:934.296800pt;}
.y56{bottom:934.311467pt;}
.y7d{bottom:950.698133pt;}
.y2f{bottom:954.302133pt;}
.y55{bottom:954.316800pt;}
.y7c{bottom:969.364800pt;}
.y2e{bottom:974.307467pt;}
.y6{bottom:977.126533pt;}
.y2d{bottom:994.312800pt;}
.y5{bottom:1005.540000pt;}
.y7b{bottom:1008.031467pt;}
.y2c{bottom:1014.318133pt;}
.y1{bottom:1019.032000pt;}
.y3{bottom:1038.906267pt;}
.y27{bottom:1053.625200pt;}
.y28{bottom:1084.897600pt;}
.h4{height:33.600000pt;}
.h6{height:50.400000pt;}
.h2{height:55.488000pt;}
.h9{height:56.000000pt;}
.h3{height:57.198000pt;}
.h8{height:60.000000pt;}
.h5{height:61.600000pt;}
.ha{height:64.000000pt;}
.hc{height:80.000000pt;}
.h7{height:112.000000pt;}
.hb{height:161.235760pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:314.870667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:18.897600pt;}
.xd{left:46.923600pt;}
.x1{left:48.000000pt;}
.x5{left:51.023600pt;}
.x4{left:53.877467pt;}
.xe{left:94.488133pt;}
.x2{left:138.580000pt;}
.x3{left:186.580000pt;}
.x9{left:188.976400pt;}
.x6{left:196.850400pt;}
.x7{left:198.558267pt;}
.x8{left:212.560667pt;}
.xa{left:733.542933pt;}
.xf{left:737.315600pt;}
.x10{left:738.669067pt;}
.xb{left:742.337733pt;}
}

