
    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_c82e26d96b54a5e6c2c63ec2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_698bd468f6f78995c8731a89.woff')format("woff");}.ff2{font-family:ff2;line-height:0.897000;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_1874e73bce6d85bd778a3dee.woff')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_903de02c82be20c938b42ba9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.526000;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_ecd6cce7ae35f1a39f722458.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666000;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_d3424f927039eb10123adef5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.890000;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_362d044580b190c08de9dccc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_22694f069190ebf7ce92d7b0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.810000;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_84d266e841a1ec36d568580e.woff')format("woff");}.ff9{font-family:ff9;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;}
.m0{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.246585,0.000000,-0.041180,0.246585,0,0);-ms-transform:matrix(0.246585,0.000000,-0.041180,0.246585,0,0);-webkit-transform:matrix(0.246585,0.000000,-0.041180,0.246585,0,0);}
.m1{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);}
.m3{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);}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v2{vertical-align:21.600000px;}
.v1{vertical-align:34.560960px;}
.lsc{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.202881px;}
.lsf{letter-spacing:0.351120px;}
.ls14{letter-spacing:0.353460px;}
.ls10{letter-spacing:0.355860px;}
.ls13{letter-spacing:1.630151px;}
.ls11{letter-spacing:2.349671px;}
.ls7{letter-spacing:2.363460px;}
.ls0{letter-spacing:2.773260px;}
.lsd{letter-spacing:2.800380px;}
.ls1{letter-spacing:3.082980px;}
.ls12{letter-spacing:6.481132px;}
.ls5{letter-spacing:8.273692px;}
.ls3{letter-spacing:10.434652px;}
.lsa{letter-spacing:12.564825px;}
.lsb{letter-spacing:13.286745px;}
.ls6{letter-spacing:14.031600px;}
.ls8{letter-spacing:18.351120px;}
.ls4{letter-spacing:19.073040px;}
.lse{letter-spacing:19.073572px;}
.ls9{letter-spacing:21.071531px;}
.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;}
}
.ws29{word-spacing:-30.485664px;}
.ws3{word-spacing:-23.910300px;}
.wsf{word-spacing:-17.932800px;}
.ws2{word-spacing:-0.766182px;}
.ws0{word-spacing:-0.765799px;}
.ws1{word-spacing:-0.450374px;}
.ws8{word-spacing:-0.247115px;}
.ws2c{word-spacing:-0.204762px;}
.ws43{word-spacing:-0.203746px;}
.ws14{word-spacing:-0.059776px;}
.ws2e{word-spacing:-0.037599px;}
.ws2a{word-spacing:0.000000px;}
.ws46{word-spacing:0.514344px;}
.ws48{word-spacing:0.514750px;}
.ws5{word-spacing:6.910705px;}
.ws20{word-spacing:8.757280px;}
.wsa{word-spacing:11.091347px;}
.ws19{word-spacing:11.402182px;}
.wsd{word-spacing:11.403497px;}
.ws1a{word-spacing:11.560707px;}
.ws1b{word-spacing:11.812576px;}
.ws1c{word-spacing:11.812782px;}
.ws49{word-spacing:11.983457px;}
.ws41{word-spacing:12.445823px;}
.ws26{word-spacing:12.445925px;}
.ws4a{word-spacing:12.446331px;}
.ws44{word-spacing:12.446789px;}
.ws45{word-spacing:12.447246px;}
.ws2b{word-spacing:12.447652px;}
.ws25{word-spacing:12.447754px;}
.ws1d{word-spacing:12.531407px;}
.ws47{word-spacing:12.637720px;}
.ws2d{word-spacing:12.669283px;}
.ws40{word-spacing:12.670350px;}
.ws2f{word-spacing:12.705358px;}
.ws3a{word-spacing:12.843616px;}
.wsc{word-spacing:12.998459px;}
.ws22{word-spacing:12.999751px;}
.ws28{word-spacing:13.166301px;}
.ws24{word-spacing:13.167724px;}
.wse{word-spacing:13.194261px;}
.ws13{word-spacing:13.251407px;}
.ws15{word-spacing:13.253141px;}
.ws42{word-spacing:13.367249px;}
.ws23{word-spacing:13.562122px;}
.ws37{word-spacing:13.719273px;}
.ws38{word-spacing:13.873972px;}
.wsb{word-spacing:14.438794px;}
.ws3f{word-spacing:14.828837px;}
.ws4{word-spacing:15.235845px;}
.ws27{word-spacing:15.326820px;}
.ws3e{word-spacing:16.304902px;}
.ws39{word-spacing:16.599751px;}
.ws1f{word-spacing:16.851825px;}
.ws35{word-spacing:16.852304px;}
.ws21{word-spacing:17.571347px;}
.ws12{word-spacing:17.572244px;}
.ws3d{word-spacing:17.709834px;}
.ws32{word-spacing:17.882481px;}
.ws1e{word-spacing:18.039751px;}
.ws10{word-spacing:18.039769px;}
.ws36{word-spacing:18.292244px;}
.ws17{word-spacing:18.292363px;}
.ws11{word-spacing:18.760707px;}
.ws3b{word-spacing:19.372319px;}
.ws33{word-spacing:19.480229px;}
.ws18{word-spacing:20.451131px;}
.ws3c{word-spacing:20.624009px;}
.ws16{word-spacing:21.171740px;}
.ws34{word-spacing:21.638854px;}
.ws9{word-spacing:22.202182px;}
.ws7{word-spacing:22.360707px;}
.ws6{word-spacing:23.080229px;}
.ws30{word-spacing:24.363497px;}
.ws31{word-spacing:24.520289px;}
._14{margin-left:-21.239057px;}
._4{margin-left:-19.217934px;}
._12{margin-left:-14.633039px;}
._e{margin-left:-7.555876px;}
._1a{margin-left:-5.930478px;}
._6{margin-left:-4.789455px;}
._2{margin-left:-3.781204px;}
._a{margin-left:-2.545963px;}
._1{margin-left:-1.530694px;}
._5{width:1.100244px;}
._f{width:2.164469px;}
._13{width:4.123634px;}
._10{width:7.263504px;}
._8{width:9.894284px;}
._9{width:12.662034px;}
._3{width:14.161387px;}
._b{width:15.600200px;}
._11{width:16.710916px;}
._c{width:17.791733px;}
._d{width:19.053252px;}
._18{width:20.078527px;}
._7{width:21.161151px;}
._0{width:24.197794px;}
._16{width:25.848550px;}
._19{width:30.292892px;}
._17{width:34.360286px;}
._15{width:979.715280px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(128,128,128);}
.fs8{font-size:37.599240px;}
.fs4{font-size:44.234040px;}
.fs9{font-size:44.846661px;}
.fs7{font-size:50.809440px;}
.fsa{font-size:51.513144px;}
.fs3{font-size:59.775840px;}
.fs6{font-size:60.603628px;}
.fs2{font-size:70.775400px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:95.641200px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:187.199955px;}
.y1f{bottom:236.520105px;}
.y44{bottom:244.440000px;}
.y1e{bottom:251.460345px;}
.y43{bottom:258.840000px;}
.y42{bottom:258.840120px;}
.y1d{bottom:266.400000px;}
.y41{bottom:273.420000px;}
.y40{bottom:273.420120px;}
.y3f{bottom:288.000000px;}
.y3e{bottom:302.400000px;}
.y3d{bottom:302.400120px;}
.y3c{bottom:316.980000px;}
.y3a{bottom:331.379535px;}
.y3b{bottom:331.380000px;}
.y1c{bottom:340.019730px;}
.y39{bottom:345.960000px;}
.y38{bottom:345.960120px;}
.y37{bottom:360.540000px;}
.y1b{bottom:363.419730px;}
.y1{bottom:370.500000px;}
.y35{bottom:374.939895px;}
.y36{bottom:374.940000px;}
.y1a{bottom:375.839850px;}
.y19{bottom:393.839850px;}
.y18{bottom:411.660000px;}
.y17{bottom:411.660300px;}
.y34{bottom:413.819745px;}
.y16{bottom:429.660300px;}
.y15{bottom:447.660300px;}
.y14{bottom:465.479850px;}
.y33{bottom:475.199595px;}
.y13{bottom:483.479850px;}
.y32{bottom:490.319745px;}
.y12{bottom:501.479850px;}
.y31{bottom:505.259400px;}
.y11{bottom:519.300000px;}
.y30{bottom:520.199640px;}
.y2f{bottom:535.139880px;}
.yf{bottom:537.299850px;}
.y10{bottom:537.300000px;}
.ye{bottom:555.120000px;}
.yd{bottom:573.120300px;}
.y2e{bottom:575.459430px;}
.y2d{bottom:593.279580px;}
.y2c{bottom:611.279580px;}
.yc{bottom:614.880000px;}
.y2b{bottom:629.279580px;}
.y2a{bottom:647.099730px;}
.y29{bottom:665.099730px;}
.yb{bottom:680.760450px;}
.y28{bottom:682.919880px;}
.ya{bottom:698.580000px;}
.y27{bottom:700.919880px;}
.y9{bottom:716.580000px;}
.y26{bottom:718.919880px;}
.y8{bottom:734.580000px;}
.y24{bottom:736.740000px;}
.y25{bottom:742.320000px;}
.y7{bottom:752.400150px;}
.y6{bottom:770.400150px;}
.y23{bottom:778.679700px;}
.y22{bottom:830.520000px;}
.y5{bottom:917.820300px;}
.y4{bottom:969.840450px;}
.y3{bottom:996.660000px;}
.y2{bottom:1023.660000px;}
.y21{bottom:1062.000000px;}
.he{height:23.006337px;}
.ha{height:30.433020px;}
.h7{height:31.089661px;}
.h8{height:34.849315px;}
.hb{height:34.956895px;}
.h10{height:35.109323px;}
.h11{height:35.441043px;}
.h4{height:41.125778px;}
.hc{height:43.868277px;}
.h6{height:49.566259px;}
.h9{height:51.059871px;}
.hf{height:51.779391px;}
.h5{height:52.033020px;}
.hd{height:52.752540px;}
.h3{height:66.088069px;}
.h2{height:83.254435px;}
.h1{height:117.773438px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:48.000000px;}
.x2{left:202.140000px;}
.x14{left:208.440045px;}
.x3{left:215.280000px;}
.xc{left:220.139730px;}
.x4{left:229.500000px;}
.x5{left:242.641500px;}
.x21{left:258.300000px;}
.x1f{left:268.200000px;}
.x22{left:287.641500px;}
.x15{left:288.720000px;}
.x17{left:289.800000px;}
.x20{left:297.540000px;}
.x1b{left:299.700000px;}
.x19{left:316.620000px;}
.x16{left:318.060000px;}
.x18{left:319.141500px;}
.x1c{left:329.041500px;}
.x1a{left:345.960000px;}
.x1d{left:347.940000px;}
.x1e{left:377.100000px;}
.x6{left:386.460000px;}
.x7{left:399.060000px;}
.x8{left:412.740000px;}
.x9{left:426.960000px;}
.xa{left:443.160000px;}
.xb{left:455.760000px;}
.xd{left:465.841500px;}
.xe{left:478.981500px;}
.xf{left:493.201500px;}
.x10{left:506.341500px;}
.x12{left:563.760000px;}
.x13{left:576.360000px;}
.x11{left:693.360300px;}
@media print{
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v2{vertical-align:19.200000pt;}
.v1{vertical-align:30.720853pt;}
.lsc{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.180338pt;}
.lsf{letter-spacing:0.312107pt;}
.ls14{letter-spacing:0.314187pt;}
.ls10{letter-spacing:0.316320pt;}
.ls13{letter-spacing:1.449023pt;}
.ls11{letter-spacing:2.088596pt;}
.ls7{letter-spacing:2.100853pt;}
.ls0{letter-spacing:2.465120pt;}
.lsd{letter-spacing:2.489227pt;}
.ls1{letter-spacing:2.740427pt;}
.ls12{letter-spacing:5.761007pt;}
.ls5{letter-spacing:7.354393pt;}
.ls3{letter-spacing:9.275247pt;}
.lsa{letter-spacing:11.168733pt;}
.lsb{letter-spacing:11.810440pt;}
.ls6{letter-spacing:12.472533pt;}
.ls8{letter-spacing:16.312107pt;}
.ls4{letter-spacing:16.953813pt;}
.lse{letter-spacing:16.954287pt;}
.ls9{letter-spacing:18.730250pt;}
.ws29{word-spacing:-27.098368pt;}
.ws3{word-spacing:-21.253600pt;}
.wsf{word-spacing:-15.940267pt;}
.ws2{word-spacing:-0.681050pt;}
.ws0{word-spacing:-0.680710pt;}
.ws1{word-spacing:-0.400333pt;}
.ws8{word-spacing:-0.219658pt;}
.ws2c{word-spacing:-0.182011pt;}
.ws43{word-spacing:-0.181107pt;}
.ws14{word-spacing:-0.053134pt;}
.ws2e{word-spacing:-0.033422pt;}
.ws2a{word-spacing:0.000000pt;}
.ws46{word-spacing:0.457195pt;}
.ws48{word-spacing:0.457556pt;}
.ws5{word-spacing:6.142849pt;}
.ws20{word-spacing:7.784249pt;}
.wsa{word-spacing:9.858975pt;}
.ws19{word-spacing:10.135273pt;}
.wsd{word-spacing:10.136442pt;}
.ws1a{word-spacing:10.276184pt;}
.ws1b{word-spacing:10.500067pt;}
.ws1c{word-spacing:10.500251pt;}
.ws49{word-spacing:10.651962pt;}
.ws41{word-spacing:11.062954pt;}
.ws26{word-spacing:11.063044pt;}
.ws4a{word-spacing:11.063406pt;}
.ws44{word-spacing:11.063812pt;}
.ws45{word-spacing:11.064218pt;}
.ws2b{word-spacing:11.064580pt;}
.ws25{word-spacing:11.064670pt;}
.ws1d{word-spacing:11.139029pt;}
.ws47{word-spacing:11.233528pt;}
.ws2d{word-spacing:11.261585pt;}
.ws40{word-spacing:11.262533pt;}
.ws2f{word-spacing:11.293651pt;}
.ws3a{word-spacing:11.416548pt;}
.wsc{word-spacing:11.554186pt;}
.ws22{word-spacing:11.555334pt;}
.ws28{word-spacing:11.703379pt;}
.ws24{word-spacing:11.704643pt;}
.wse{word-spacing:11.728232pt;}
.ws13{word-spacing:11.779029pt;}
.ws15{word-spacing:11.780569pt;}
.ws42{word-spacing:11.881999pt;}
.ws23{word-spacing:12.055219pt;}
.ws37{word-spacing:12.194909pt;}
.ws38{word-spacing:12.332420pt;}
.wsb{word-spacing:12.834484pt;}
.ws3f{word-spacing:13.181188pt;}
.ws4{word-spacing:13.542974pt;}
.ws27{word-spacing:13.623840pt;}
.ws3e{word-spacing:14.493246pt;}
.ws39{word-spacing:14.755334pt;}
.ws1f{word-spacing:14.979400pt;}
.ws35{word-spacing:14.979826pt;}
.ws21{word-spacing:15.618975pt;}
.ws12{word-spacing:15.619772pt;}
.ws3d{word-spacing:15.742074pt;}
.ws32{word-spacing:15.895538pt;}
.ws1e{word-spacing:16.035334pt;}
.ws10{word-spacing:16.035350pt;}
.ws36{word-spacing:16.259772pt;}
.ws17{word-spacing:16.259879pt;}
.ws11{word-spacing:16.676184pt;}
.ws3b{word-spacing:17.219839pt;}
.ws33{word-spacing:17.315759pt;}
.ws18{word-spacing:18.178783pt;}
.ws3c{word-spacing:18.332452pt;}
.ws16{word-spacing:18.819324pt;}
.ws34{word-spacing:19.234537pt;}
.ws9{word-spacing:19.735273pt;}
.ws7{word-spacing:19.876184pt;}
.ws6{word-spacing:20.515759pt;}
.ws30{word-spacing:21.656441pt;}
.ws31{word-spacing:21.795812pt;}
._14{margin-left:-18.879162pt;}
._4{margin-left:-17.082608pt;}
._12{margin-left:-13.007145pt;}
._e{margin-left:-6.716334pt;}
._1a{margin-left:-5.271536pt;}
._6{margin-left:-4.257294pt;}
._2{margin-left:-3.361071pt;}
._a{margin-left:-2.263078pt;}
._1{margin-left:-1.360616pt;}
._5{width:0.977995pt;}
._f{width:1.923972pt;}
._13{width:3.665452pt;}
._10{width:6.456448pt;}
._8{width:8.794919pt;}
._9{width:11.255141pt;}
._3{width:12.587900pt;}
._b{width:13.866845pt;}
._11{width:14.854148pt;}
._c{width:15.814874pt;}
._d{width:16.936224pt;}
._18{width:17.847580pt;}
._7{width:18.809912pt;}
._0{width:21.509150pt;}
._16{width:22.976489pt;}
._19{width:26.927016pt;}
._17{width:30.542477pt;}
._15{width:870.858027pt;}
.fs8{font-size:33.421547pt;}
.fs4{font-size:39.319147pt;}
.fs9{font-size:39.863698pt;}
.fs7{font-size:45.163947pt;}
.fsa{font-size:45.789461pt;}
.fs3{font-size:53.134080pt;}
.fs6{font-size:53.869891pt;}
.fs2{font-size:62.911467pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:85.014400pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:166.399960pt;}
.y1f{bottom:210.240093pt;}
.y44{bottom:217.280000pt;}
.y1e{bottom:223.520307pt;}
.y43{bottom:230.080000pt;}
.y42{bottom:230.080107pt;}
.y1d{bottom:236.800000pt;}
.y41{bottom:243.040000pt;}
.y40{bottom:243.040107pt;}
.y3f{bottom:256.000000pt;}
.y3e{bottom:268.800000pt;}
.y3d{bottom:268.800107pt;}
.y3c{bottom:281.760000pt;}
.y3a{bottom:294.559587pt;}
.y3b{bottom:294.560000pt;}
.y1c{bottom:302.239760pt;}
.y39{bottom:307.520000pt;}
.y38{bottom:307.520107pt;}
.y37{bottom:320.480000pt;}
.y1b{bottom:323.039760pt;}
.y1{bottom:329.333333pt;}
.y35{bottom:333.279907pt;}
.y36{bottom:333.280000pt;}
.y1a{bottom:334.079867pt;}
.y19{bottom:350.079867pt;}
.y18{bottom:365.920000pt;}
.y17{bottom:365.920267pt;}
.y34{bottom:367.839773pt;}
.y16{bottom:381.920267pt;}
.y15{bottom:397.920267pt;}
.y14{bottom:413.759867pt;}
.y33{bottom:422.399640pt;}
.y13{bottom:429.759867pt;}
.y32{bottom:435.839773pt;}
.y12{bottom:445.759867pt;}
.y31{bottom:449.119467pt;}
.y11{bottom:461.600000pt;}
.y30{bottom:462.399680pt;}
.y2f{bottom:475.679893pt;}
.yf{bottom:477.599867pt;}
.y10{bottom:477.600000pt;}
.ye{bottom:493.440000pt;}
.yd{bottom:509.440267pt;}
.y2e{bottom:511.519493pt;}
.y2d{bottom:527.359627pt;}
.y2c{bottom:543.359627pt;}
.yc{bottom:546.560000pt;}
.y2b{bottom:559.359627pt;}
.y2a{bottom:575.199760pt;}
.y29{bottom:591.199760pt;}
.yb{bottom:605.120400pt;}
.y28{bottom:607.039893pt;}
.ya{bottom:620.960000pt;}
.y27{bottom:623.039893pt;}
.y9{bottom:636.960000pt;}
.y26{bottom:639.039893pt;}
.y8{bottom:652.960000pt;}
.y24{bottom:654.880000pt;}
.y25{bottom:659.840000pt;}
.y7{bottom:668.800133pt;}
.y6{bottom:684.800133pt;}
.y23{bottom:692.159733pt;}
.y22{bottom:738.240000pt;}
.y5{bottom:815.840267pt;}
.y4{bottom:862.080400pt;}
.y3{bottom:885.920000pt;}
.y2{bottom:909.920000pt;}
.y21{bottom:944.000000pt;}
.he{height:20.450077pt;}
.ha{height:27.051573pt;}
.h7{height:27.635254pt;}
.h8{height:30.977169pt;}
.hb{height:31.072795pt;}
.h10{height:31.208287pt;}
.h11{height:31.503149pt;}
.h4{height:36.556247pt;}
.hc{height:38.994024pt;}
.h6{height:44.058897pt;}
.h9{height:45.386552pt;}
.hf{height:46.026125pt;}
.h5{height:46.251573pt;}
.hd{height:46.891146pt;}
.h3{height:58.744950pt;}
.h2{height:74.003942pt;}
.h1{height:104.687500pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:42.666667pt;}
.x2{left:179.680000pt;}
.x14{left:185.280040pt;}
.x3{left:191.360000pt;}
.xc{left:195.679760pt;}
.x4{left:204.000000pt;}
.x5{left:215.681333pt;}
.x21{left:229.600000pt;}
.x1f{left:238.400000pt;}
.x22{left:255.681333pt;}
.x15{left:256.640000pt;}
.x17{left:257.600000pt;}
.x20{left:264.480000pt;}
.x1b{left:266.400000pt;}
.x19{left:281.440000pt;}
.x16{left:282.720000pt;}
.x18{left:283.681333pt;}
.x1c{left:292.481333pt;}
.x1a{left:307.520000pt;}
.x1d{left:309.280000pt;}
.x1e{left:335.200000pt;}
.x6{left:343.520000pt;}
.x7{left:354.720000pt;}
.x8{left:366.880000pt;}
.x9{left:379.520000pt;}
.xa{left:393.920000pt;}
.xb{left:405.120000pt;}
.xd{left:414.081333pt;}
.xe{left:425.761333pt;}
.xf{left:438.401333pt;}
.x10{left:450.081333pt;}
.x12{left:501.120000pt;}
.x13{left:512.320000pt;}
.x11{left:616.320267pt;}
}

