
    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_a2c9a1e24d4a3cbfacd88a57.woff')format("woff");}.ff1{font-family:ff1;line-height:0.948242;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_eef4cddeb5addd700e22ab43.woff')format("woff");}.ff2{font-family:ff2;line-height:1.083008;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_6face5df6e4f525eb396b0ff.woff')format("woff");}.ff3{font-family:ff3;line-height:0.718262;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_434c895b374be5036f43351d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9a0c4d40b1e72559baa6e55c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.800337;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_5668fbc1b9906c89d738cecc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.965820;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_16353f0bc0a35429c4e6e861.woff')format("woff");}.ff7{font-family:ff7;line-height:1.097168;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_d3be0833ff75e8efffafe5d9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.113281;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_5fd02c5626ea482bda24abbd.woff')format("woff");}.ff9{font-family:ff9;line-height:1.104492;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_7ed34831e5af66b5bb9e1039.woff')format("woff");}.ffa{font-family:ffa;line-height:1.165527;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_d21dc027c4b8bf73d6d24bfb.woff')format("woff");}.ffb{font-family:ffb;line-height:0.965820;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_9a0c4d40b1e72559baa6e55c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.800337;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_10c3c19606e8f60fb9fc63d8.woff')format("woff");}.ffd{font-family:ffd;line-height:0.940918;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_9a0c4d40b1e72559baa6e55c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.800337;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_d21dc027c4b8bf73d6d24bfb.woff')format("woff");}.fff{font-family:fff;line-height:0.965820;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_45ae81d54ed7ef90596a4edd.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_d3010f577ee8473abd875516.woff')format("woff");}.ff11{font-family:ff11;line-height:0.943848;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_795272c0f5590f346ebc8525.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_fde45d5acddba21ee076628d.woff')format("woff");}.ff13{font-family:ff13;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.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;}
.ls9{letter-spacing:-4.172860px;}
.ls8{letter-spacing:-3.943582px;}
.lsb{letter-spacing:-0.171789px;}
.lsc{letter-spacing:-0.091645px;}
.ls7{letter-spacing:-0.045856px;}
.ls5{letter-spacing:-0.025199px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.103073px;}
.ls6{letter-spacing:0.137567px;}
.lsa{letter-spacing:0.596123px;}
.ls3{letter-spacing:2.567914px;}
.ls2{letter-spacing:2.659625px;}
.ls1{letter-spacing:16.370449px;}
.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:-19.602000px;}
.ws14{word-spacing:-13.344000px;}
.ws24{word-spacing:-13.343980px;}
.ws25{word-spacing:-9.654542px;}
.ws23{word-spacing:-8.574997px;}
.ws1{word-spacing:-8.142811px;}
.ws4{word-spacing:-8.026208px;}
.ws3{word-spacing:-7.328530px;}
.ws0{word-spacing:-7.223587px;}
.ws2{word-spacing:-6.420966px;}
.ws10{word-spacing:-3.180000px;}
.ws17{word-spacing:-2.880000px;}
.ws11{word-spacing:-2.760000px;}
.ws22{word-spacing:-2.640000px;}
.ws18{word-spacing:-2.220000px;}
.ws13{word-spacing:-2.100000px;}
.ws1a{word-spacing:-1.860000px;}
.ws20{word-spacing:-1.440000px;}
.ws8{word-spacing:-0.840000px;}
.ws1f{word-spacing:-0.660000px;}
.ws2a{word-spacing:-0.596123px;}
.wse{word-spacing:-0.480000px;}
.ws12{word-spacing:-0.420000px;}
.wsf{word-spacing:-0.300000px;}
.ws2b{word-spacing:-0.274862px;}
.ws16{word-spacing:-0.240000px;}
.ws27{word-spacing:-0.137567px;}
.ws1d{word-spacing:-0.120000px;}
.ws2c{word-spacing:-0.103073px;}
.ws2f{word-spacing:-0.018000px;}
.ws5{word-spacing:0.000000px;}
.ws26{word-spacing:0.025199px;}
.ws28{word-spacing:0.045856px;}
.ws2e{word-spacing:0.091645px;}
.ws1e{word-spacing:0.120000px;}
.ws2d{word-spacing:0.171789px;}
.ws1c{word-spacing:0.540000px;}
.wsb{word-spacing:0.900000px;}
.ws21{word-spacing:0.960000px;}
.ws9{word-spacing:1.140000px;}
.wsc{word-spacing:1.680000px;}
.ws19{word-spacing:1.740000px;}
.ws15{word-spacing:2.280000px;}
.ws29{word-spacing:3.943582px;}
.wsd{word-spacing:4.140000px;}
.wsa{word-spacing:4.440000px;}
.ws1b{word-spacing:5.460000px;}
.ws7{word-spacing:5.760000px;}
._9{margin-left:-15.096000px;}
._8{margin-left:-3.658204px;}
._3{margin-left:-2.541224px;}
._0{margin-left:-1.346776px;}
._4{width:1.037849px;}
._5{width:2.358000px;}
._2{width:3.468000px;}
._b{width:5.799711px;}
._15{width:7.491426px;}
._14{width:10.725625px;}
._c{width:14.293191px;}
._a{width:19.484044px;}
._11{width:23.565959px;}
._10{width:25.114040px;}
._e{width:27.141930px;}
._f{width:28.247050px;}
._12{width:32.644602px;}
._13{width:33.887288px;}
._d{width:43.787512px;}
._1{width:81.597600px;}
._6{width:171.018000px;}
._7{width:196.992000px;}
.fc6{color:rgb(0,0,10);}
.fc5{color:rgb(79,92,214);}
.fc4{color:rgb(138,149,151);}
.fc1{color:rgb(56,116,161);}
.fc8{color:rgb(180,180,180);}
.fc7{color:rgb(255,151,47);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:24.000000px;}
.fsd{font-size:25.199400px;}
.fs3{font-size:31.840529px;}
.fsf{font-size:34.357800px;}
.fs0{font-size:35.820595px;}
.fs2{font-size:39.800661px;}
.fsc{font-size:41.243400px;}
.fs5{font-size:45.000000px;}
.fse{font-size:45.855600px;}
.fs4{font-size:47.760793px;}
.fsb{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs1{font-size:79.601322px;}
.fsa{font-size:84.000000px;}
.fs10{font-size:91.644600px;}
.fs9{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.440054px;}
.y9{bottom:3.980057px;}
.y61{bottom:7.500000px;}
.ye{bottom:24.875406px;}
.yd{bottom:47.760786px;}
.y10{bottom:54.000000px;}
.yf{bottom:56.179800px;}
.y5d{bottom:116.371790px;}
.y5c{bottom:125.871721px;}
.y5b{bottom:135.431779px;}
.y5a{bottom:154.508948px;}
.y59{bottom:164.069006px;}
.y58{bottom:173.646242px;}
.y57{bottom:192.706232px;}
.y56{bottom:200.453916px;}
.y55{bottom:210.013974px;}
.y54{bottom:219.574032px;}
.y53{bottom:238.651200px;}
.y2b{bottom:327.000000px;}
.y3f{bottom:351.000000px;}
.y2a{bottom:369.000000px;}
.y3e{bottom:370.500000px;}
.y3d{bottom:385.500000px;}
.y29{bottom:390.000000px;}
.y3c{bottom:400.500000px;}
.y28{bottom:411.000000px;}
.y27{bottom:432.000000px;}
.y3b{bottom:439.500000px;}
.y26{bottom:453.000000px;}
.y25{bottom:474.000000px;}
.y24{bottom:495.000000px;}
.y23{bottom:516.000000px;}
.y22{bottom:537.000000px;}
.y3a{bottom:538.200000px;}
.y21{bottom:558.000000px;}
.y60{bottom:574.945950px;}
.y20{bottom:579.000000px;}
.y1f{bottom:600.000000px;}
.y1e{bottom:621.000000px;}
.y1d{bottom:642.000000px;}
.y52{bottom:648.951542px;}
.y51{bottom:659.326371px;}
.y1c{bottom:663.000000px;}
.y50{bottom:672.085692px;}
.y1b{bottom:684.000000px;}
.y1a{bottom:705.000000px;}
.y4f{bottom:710.409510px;}
.y4e{bottom:723.191758px;}
.y19{bottom:726.000000px;}
.y4d{bottom:735.974007px;}
.y18{bottom:747.000000px;}
.y4c{bottom:748.733327px;}
.y4b{bottom:761.572895px;}
.y17{bottom:768.000000px;}
.y4a{bottom:787.114465px;}
.y39{bottom:789.000000px;}
.y49{bottom:799.896713px;}
.y38{bottom:810.000000px;}
.yc{bottom:811.933475px;}
.y48{bottom:812.656034px;}
.y47{bottom:825.438282px;}
.y37{bottom:831.000000px;}
.yb{bottom:835.813872px;}
.y46{bottom:838.220531px;}
.ya{bottom:850.184165px;}
.y45{bottom:850.979851px;}
.y36{bottom:852.000000px;}
.y44{bottom:863.762100px;}
.y8{bottom:866.104430px;}
.y35{bottom:873.000000px;}
.y34{bottom:894.000000px;}
.y7{bottom:896.509880px;}
.y33{bottom:915.000000px;}
.y16{bottom:932.027400px;}
.y5f{bottom:933.299634px;}
.y6{bottom:934.320508px;}
.y32{bottom:936.000000px;}
.y15{bottom:950.027400px;}
.y5{bottom:950.240772px;}
.y31{bottom:957.000000px;}
.y5e{bottom:958.914300px;}
.y14{bottom:972.527400px;}
.y30{bottom:978.000000px;}
.y4{bottom:998.996582px;}
.y2f{bottom:999.000000px;}
.y13{bottom:1040.027400px;}
.y3{bottom:1040.787276px;}
.y43{bottom:1042.651530px;}
.y2e{bottom:1045.211400px;}
.y42{bottom:1050.217650px;}
.y41{bottom:1058.579700px;}
.y12{bottom:1070.027400px;}
.y2d{bottom:1072.211400px;}
.y2{bottom:1081.582953px;}
.y2c{bottom:1129.748550px;}
.y40{bottom:1129.870650px;}
.y11{bottom:1132.937550px;}
.h9{height:12.935214px;}
.h18{height:18.358157px;}
.h6{height:23.056398px;}
.h1a{height:25.013418px;}
.h1b{height:25.030194px;}
.h1e{height:25.031250px;}
.h1c{height:25.298614px;}
.h3{height:25.938448px;}
.h8{height:28.101443px;}
.h5{height:28.820498px;}
.h17{height:30.046461px;}
.h19{height:33.764768px;}
.h7{height:34.584598px;}
.hb{height:40.341797px;}
.h16{height:43.031250px;}
.h15{height:43.335938px;}
.hd{height:51.082031px;}
.h11{height:53.642578px;}
.hc{height:53.789062px;}
.h14{height:59.167969px;}
.h10{height:59.586914px;}
.h4{height:65.608902px;}
.h1d{height:66.719775px;}
.h12{height:74.484375px;}
.h13{height:75.837891px;}
.he{height:85.125000px;}
.hf{height:86.671875px;}
.h2{height:1197.999886px;}
.h0{height:1198.439940px;}
.h1{height:1198.500000px;}
.ha{height:1200.000000px;}
.w3{width:739.297229px;}
.w2{width:898.499951px;}
.w1{width:898.500000px;}
.w0{width:898.559970px;}
.w4{width:900.000000px;}
.x0{left:0.000000px;}
.x1{left:59.700991px;}
.x5{left:64.676074px;}
.x13{left:75.000000px;}
.x3{left:99.501652px;}
.x4{left:110.446834px;}
.x7{left:112.500000px;}
.x9{left:132.000000px;}
.xf{left:158.926800px;}
.x6{left:162.000000px;}
.x10{left:208.304700px;}
.x11{left:255.570402px;}
.x12{left:381.022950px;}
.x2{left:448.752452px;}
.xd{left:475.996350px;}
.xe{left:517.965688px;}
.xa{left:588.668400px;}
.xb{left:590.145750px;}
.xc{left:593.018482px;}
.x8{left:762.473100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-3.709209pt;}
.ls8{letter-spacing:-3.505406pt;}
.lsb{letter-spacing:-0.152701pt;}
.lsc{letter-spacing:-0.081462pt;}
.ls7{letter-spacing:-0.040761pt;}
.ls5{letter-spacing:-0.022399pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.091621pt;}
.ls6{letter-spacing:0.122282pt;}
.lsa{letter-spacing:0.529887pt;}
.ls3{letter-spacing:2.282590pt;}
.ls2{letter-spacing:2.364111pt;}
.ls1{letter-spacing:14.551510pt;}
.ws6{word-spacing:-17.424000pt;}
.ws14{word-spacing:-11.861333pt;}
.ws24{word-spacing:-11.861315pt;}
.ws25{word-spacing:-8.581815pt;}
.ws23{word-spacing:-7.622220pt;}
.ws1{word-spacing:-7.238054pt;}
.ws4{word-spacing:-7.134407pt;}
.ws3{word-spacing:-6.514249pt;}
.ws0{word-spacing:-6.420966pt;}
.ws2{word-spacing:-5.707525pt;}
.ws10{word-spacing:-2.826667pt;}
.ws17{word-spacing:-2.560000pt;}
.ws11{word-spacing:-2.453333pt;}
.ws22{word-spacing:-2.346667pt;}
.ws18{word-spacing:-1.973333pt;}
.ws13{word-spacing:-1.866667pt;}
.ws1a{word-spacing:-1.653333pt;}
.ws20{word-spacing:-1.280000pt;}
.ws8{word-spacing:-0.746667pt;}
.ws1f{word-spacing:-0.586667pt;}
.ws2a{word-spacing:-0.529887pt;}
.wse{word-spacing:-0.426667pt;}
.ws12{word-spacing:-0.373333pt;}
.wsf{word-spacing:-0.266667pt;}
.ws2b{word-spacing:-0.244322pt;}
.ws16{word-spacing:-0.213333pt;}
.ws27{word-spacing:-0.122282pt;}
.ws1d{word-spacing:-0.106667pt;}
.ws2c{word-spacing:-0.091621pt;}
.ws2f{word-spacing:-0.016000pt;}
.ws5{word-spacing:0.000000pt;}
.ws26{word-spacing:0.022399pt;}
.ws28{word-spacing:0.040761pt;}
.ws2e{word-spacing:0.081462pt;}
.ws1e{word-spacing:0.106667pt;}
.ws2d{word-spacing:0.152701pt;}
.ws1c{word-spacing:0.480000pt;}
.wsb{word-spacing:0.800000pt;}
.ws21{word-spacing:0.853333pt;}
.ws9{word-spacing:1.013333pt;}
.wsc{word-spacing:1.493333pt;}
.ws19{word-spacing:1.546667pt;}
.ws15{word-spacing:2.026667pt;}
.ws29{word-spacing:3.505406pt;}
.wsd{word-spacing:3.680000pt;}
.wsa{word-spacing:3.946667pt;}
.ws1b{word-spacing:4.853333pt;}
.ws7{word-spacing:5.120000pt;}
._9{margin-left:-13.418667pt;}
._8{margin-left:-3.251737pt;}
._3{margin-left:-2.258866pt;}
._0{margin-left:-1.197134pt;}
._4{width:0.922532pt;}
._5{width:2.096000pt;}
._2{width:3.082667pt;}
._b{width:5.155299pt;}
._15{width:6.659045pt;}
._14{width:9.533889pt;}
._c{width:12.705058pt;}
._a{width:17.319151pt;}
._11{width:20.947519pt;}
._10{width:22.323591pt;}
._e{width:24.126160pt;}
._f{width:25.108489pt;}
._12{width:29.017424pt;}
._13{width:30.122034pt;}
._d{width:38.922233pt;}
._1{width:72.531200pt;}
._6{width:152.016000pt;}
._7{width:175.104000pt;}
.fs11{font-size:21.333333pt;}
.fsd{font-size:22.399467pt;}
.fs3{font-size:28.302692pt;}
.fsf{font-size:30.540267pt;}
.fs0{font-size:31.840529pt;}
.fs2{font-size:35.378365pt;}
.fsc{font-size:36.660800pt;}
.fs5{font-size:40.000000pt;}
.fse{font-size:40.760533pt;}
.fs4{font-size:42.454038pt;}
.fsb{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs1{font-size:70.756730pt;}
.fsa{font-size:74.666667pt;}
.fs10{font-size:81.461867pt;}
.fs9{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.391159pt;}
.y9{bottom:3.537829pt;}
.y61{bottom:6.666667pt;}
.ye{bottom:22.111472pt;}
.yd{bottom:42.454032pt;}
.y10{bottom:48.000000pt;}
.yf{bottom:49.937600pt;}
.y5d{bottom:103.441591pt;}
.y5c{bottom:111.885975pt;}
.y5b{bottom:120.383804pt;}
.y5a{bottom:137.341287pt;}
.y59{bottom:145.839116pt;}
.y58{bottom:154.352215pt;}
.y57{bottom:171.294428pt;}
.y56{bottom:178.181259pt;}
.y55{bottom:186.679088pt;}
.y54{bottom:195.176917pt;}
.y53{bottom:212.134400pt;}
.y2b{bottom:290.666667pt;}
.y3f{bottom:312.000000pt;}
.y2a{bottom:328.000000pt;}
.y3e{bottom:329.333333pt;}
.y3d{bottom:342.666667pt;}
.y29{bottom:346.666667pt;}
.y3c{bottom:356.000000pt;}
.y28{bottom:365.333333pt;}
.y27{bottom:384.000000pt;}
.y3b{bottom:390.666667pt;}
.y26{bottom:402.666667pt;}
.y25{bottom:421.333333pt;}
.y24{bottom:440.000000pt;}
.y23{bottom:458.666667pt;}
.y22{bottom:477.333333pt;}
.y3a{bottom:478.400000pt;}
.y21{bottom:496.000000pt;}
.y60{bottom:511.063067pt;}
.y20{bottom:514.666667pt;}
.y1f{bottom:533.333333pt;}
.y1e{bottom:552.000000pt;}
.y1d{bottom:570.666667pt;}
.y52{bottom:576.845815pt;}
.y51{bottom:586.067886pt;}
.y1c{bottom:589.333333pt;}
.y50{bottom:597.409504pt;}
.y1b{bottom:608.000000pt;}
.y1a{bottom:626.666667pt;}
.y4f{bottom:631.475120pt;}
.y4e{bottom:642.837118pt;}
.y19{bottom:645.333333pt;}
.y4d{bottom:654.199117pt;}
.y18{bottom:664.000000pt;}
.y4c{bottom:665.540735pt;}
.y4b{bottom:676.953685pt;}
.y17{bottom:682.666667pt;}
.y4a{bottom:699.657302pt;}
.y39{bottom:701.333333pt;}
.y49{bottom:711.019301pt;}
.y38{bottom:720.000000pt;}
.yc{bottom:721.718645pt;}
.y48{bottom:722.360919pt;}
.y47{bottom:733.722918pt;}
.y37{bottom:738.666667pt;}
.yb{bottom:742.945664pt;}
.y46{bottom:745.084916pt;}
.ya{bottom:755.719258pt;}
.y45{bottom:756.426535pt;}
.y36{bottom:757.333333pt;}
.y44{bottom:767.788533pt;}
.y8{bottom:769.870605pt;}
.y35{bottom:776.000000pt;}
.y34{bottom:794.666667pt;}
.y7{bottom:796.897671pt;}
.y33{bottom:813.333333pt;}
.y16{bottom:828.468800pt;}
.y5f{bottom:829.599675pt;}
.y6{bottom:830.507118pt;}
.y32{bottom:832.000000pt;}
.y15{bottom:844.468800pt;}
.y5{bottom:844.658464pt;}
.y31{bottom:850.666667pt;}
.y5e{bottom:852.368267pt;}
.y14{bottom:864.468800pt;}
.y30{bottom:869.333333pt;}
.y4{bottom:887.996961pt;}
.y2f{bottom:888.000000pt;}
.y13{bottom:924.468800pt;}
.y3{bottom:925.144245pt;}
.y43{bottom:926.801360pt;}
.y2e{bottom:929.076800pt;}
.y42{bottom:933.526800pt;}
.y41{bottom:940.959733pt;}
.y12{bottom:951.135467pt;}
.y2d{bottom:953.076800pt;}
.y2{bottom:961.407069pt;}
.y2c{bottom:1004.220933pt;}
.y40{bottom:1004.329467pt;}
.y11{bottom:1007.055600pt;}
.h9{height:11.497968pt;}
.h18{height:16.318361pt;}
.h6{height:20.494576pt;}
.h1a{height:22.234149pt;}
.h1b{height:22.249061pt;}
.h1e{height:22.250000pt;}
.h1c{height:22.487657pt;}
.h3{height:23.056398pt;}
.h8{height:24.979061pt;}
.h5{height:25.618221pt;}
.h17{height:26.707966pt;}
.h19{height:30.013127pt;}
.h7{height:30.741865pt;}
.hb{height:35.859375pt;}
.h16{height:38.250000pt;}
.h15{height:38.520833pt;}
.hd{height:45.406250pt;}
.h11{height:47.682292pt;}
.hc{height:47.812500pt;}
.h14{height:52.593750pt;}
.h10{height:52.966146pt;}
.h4{height:58.319024pt;}
.h1d{height:59.306466pt;}
.h12{height:66.208333pt;}
.h13{height:67.411458pt;}
.he{height:75.666667pt;}
.hf{height:77.041667pt;}
.h2{height:1064.888788pt;}
.h0{height:1065.279947pt;}
.h1{height:1065.333333pt;}
.ha{height:1066.666667pt;}
.w3{width:657.153093pt;}
.w2{width:798.666623pt;}
.w1{width:798.666667pt;}
.w0{width:798.719973pt;}
.w4{width:800.000000pt;}
.x0{left:0.000000pt;}
.x1{left:53.067548pt;}
.x5{left:57.489844pt;}
.x13{left:66.666667pt;}
.x3{left:88.445913pt;}
.x4{left:98.174964pt;}
.x7{left:100.000000pt;}
.x9{left:117.333333pt;}
.xf{left:141.268267pt;}
.x6{left:144.000000pt;}
.x10{left:185.159733pt;}
.x11{left:227.173691pt;}
.x12{left:338.687067pt;}
.x2{left:398.891068pt;}
.xd{left:423.107867pt;}
.xe{left:460.413945pt;}
.xa{left:523.260800pt;}
.xb{left:524.574000pt;}
.xc{left:527.127539pt;}
.x8{left:677.753867pt;}
}

