
    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_19bd5b34f1774f970b59473c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.007812;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_1e39914c5d92735e1b1e7aac.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2bc6c2c886e745692fc7a8e5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.098145;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_844def9b59d21984dd0d044f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_ff6132a81f8d49c22c25b36f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_eed539c7b9f43539bee40fd0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.931641;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);}
.v1{vertical-align:-7.200000px;}
.v2{vertical-align:-5.400000px;}
.v3{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:9.000000px;}
.v4{vertical-align:31.200000px;}
.v5{vertical-align:62.400000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.084000px;}
.lsb{letter-spacing:0.264000px;}
.lsf{letter-spacing:2.208000px;}
.lse{letter-spacing:7.608000px;}
.ls6{letter-spacing:13.884000px;}
.lsd{letter-spacing:14.808000px;}
.ls9{letter-spacing:15.084000px;}
.ls7{letter-spacing:24.084000px;}
.ls5{letter-spacing:30.684000px;}
.ls2{letter-spacing:34.884000px;}
.ls4{letter-spacing:42.084000px;}
.ls3{letter-spacing:64.200000px;}
.ls1{letter-spacing:64.800000px;}
.lsa{letter-spacing:68.400000px;}
.lsc{letter-spacing:218.400000px;}
.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;}
}
.ws0{word-spacing:-45.936000px;}
.ws2{word-spacing:-36.564000px;}
.ws5{word-spacing:-33.240000px;}
.ws3{word-spacing:-29.916000px;}
.ws4{word-spacing:-26.592000px;}
.ws7{word-spacing:-16.620000px;}
.wse{word-spacing:-0.096000px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:206.940000px;}
.ws9{word-spacing:224.340000px;}
.wsa{word-spacing:638.940000px;}
.ws6{word-spacing:643.200000px;}
.wsb{word-spacing:1261.260000px;}
.ws8{word-spacing:1293.660000px;}
.wsd{word-spacing:1344.660000px;}
._34{margin-left:-17.004000px;}
._21{margin-left:-10.416000px;}
._1{margin-left:-8.232000px;}
._39{margin-left:-7.104000px;}
._17{margin-left:-5.748000px;}
._13{margin-left:-4.452000px;}
._19{margin-left:-2.376000px;}
._0{margin-left:-1.056000px;}
._2{width:1.188000px;}
._7{width:2.484000px;}
._20{width:3.660000px;}
._3c{width:5.112000px;}
._1a{width:6.144000px;}
._1b{width:7.296000px;}
._38{width:9.000000px;}
._37{width:10.008000px;}
._15{width:11.424000px;}
._f{width:12.984000px;}
._e{width:14.016000px;}
._14{width:15.432000px;}
._5{width:16.884000px;}
._6{width:18.060000px;}
._35{width:19.200000px;}
._9{width:21.192000px;}
._8{width:22.548000px;}
._a{width:24.384000px;}
._11{width:25.812000px;}
._10{width:26.892000px;}
._3b{width:28.932000px;}
._16{width:29.964000px;}
._d{width:31.236000px;}
._12{width:33.264000px;}
._3{width:34.776000px;}
._4{width:37.032000px;}
._36{width:40.128000px;}
._c{width:41.160000px;}
._b{width:42.648000px;}
._40{width:47.040000px;}
._1c{width:48.384000px;}
._18{width:50.112000px;}
._1f{width:51.360000px;}
._3f{width:54.708000px;}
._3e{width:57.216000px;}
._3d{width:58.608000px;}
._1d{width:64.896000px;}
._1e{width:66.048000px;}
._33{width:285.072000px;}
._3a{width:322.584000px;}
._2c{width:538.404000px;}
._22{width:543.468000px;}
._2d{width:642.708000px;}
._2e{width:655.920000px;}
._29{width:739.428000px;}
._25{width:771.828000px;}
._23{width:820.740000px;}
._30{width:822.828000px;}
._2a{width:903.696000px;}
._26{width:937.152000px;}
._28{width:942.732000px;}
._24{width:975.132000px;}
._31{width:987.096000px;}
._2b{width:993.756000px;}
._2f{width:1026.132000px;}
._27{width:1044.012000px;}
._32{width:1077.156000px;}
.fc9{color:rgb(255,0,0);}
.fc7{color:rgb(0,0,204);}
.fc6{color:rgb(204,204,255);}
.fc4{color:rgb(51,51,204);}
.fc2{color:rgb(81,53,140);}
.fc1{color:rgb(204,0,0);}
.fc8{color:rgb(153,0,204);}
.fc5{color:rgb(77,77,77);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:60.000000px;}
.fs2{font-size:96.000000px;}
.fs1{font-size:108.000000px;}
.fs3{font-size:120.000000px;}
.fs0{font-size:132.000000px;}
.fs5{font-size:156.000000px;}
.fs6{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y43{bottom:35.850000px;}
.y31{bottom:47.250000px;}
.y3a{bottom:51.000000px;}
.y4f{bottom:57.900000px;}
.y5c{bottom:72.600000px;}
.y4{bottom:81.000000px;}
.y39{bottom:83.400000px;}
.y13{bottom:172.950000px;}
.y76{bottom:173.700000px;}
.y81{bottom:178.800000px;}
.y1e{bottom:182.550000px;}
.y8c{bottom:191.700000px;}
.y70{bottom:194.700000px;}
.y75{bottom:201.300000px;}
.ye{bottom:205.350000px;}
.y5b{bottom:206.550000px;}
.y80{bottom:216.000000px;}
.y8b{bottom:218.400000px;}
.y6f{bottom:222.300000px;}
.yd{bottom:237.750000px;}
.y74{bottom:238.500000px;}
.y12{bottom:239.550000px;}
.y1d{bottom:243.000000px;}
.y8a{bottom:246.000000px;}
.y7f{bottom:252.300000px;}
.y30{bottom:254.550000px;}
.y5a{bottom:255.750000px;}
.y6e{bottom:258.600000px;}
.y27{bottom:269.100000px;}
.yc{bottom:270.150000px;}
.y1c{bottom:271.650000px;}
.y14{bottom:271.950000px;}
.y66{bottom:275.400000px;}
.y73{bottom:275.700000px;}
.y42{bottom:275.850000px;}
.y7e{bottom:279.900000px;}
.y89{bottom:282.300000px;}
.y6d{bottom:285.300000px;}
.y38{bottom:285.600000px;}
.y8e{bottom:289.500000px;}
.y2f{bottom:291.750000px;}
.y4e{bottom:298.950000px;}
.y1b{bottom:301.800000px;}
.y11{bottom:302.550000px;}
.y65{bottom:302.850000px;}
.y26{bottom:303.150000px;}
.yb{bottom:304.350000px;}
.y59{bottom:304.800000px;}
.y88{bottom:309.000000px;}
.y72{bottom:312.000000px;}
.y37{bottom:312.300000px;}
.y6c{bottom:312.900000px;}
.y7d{bottom:316.200000px;}
.y4d{bottom:326.550000px;}
.y2e{bottom:328.950000px;}
.y41{bottom:330.150000px;}
.y64{bottom:330.450000px;}
.ya{bottom:334.950000px;}
.y87{bottom:336.600000px;}
.y58{bottom:338.400000px;}
.y71{bottom:339.600000px;}
.y36{bottom:339.900000px;}
.y25{bottom:342.900000px;}
.y6b{bottom:349.350000px;}
.y4c{bottom:354.000000px;}
.y63{bottom:358.050000px;}
.y1a{bottom:362.100000px;}
.y2d{bottom:365.250000px;}
.y40{bottom:367.350000px;}
.y9{bottom:369.150000px;}
.y7c{bottom:370.500000px;}
.y86{bottom:372.900000px;}
.y6a{bottom:376.050000px;}
.y35{bottom:376.350000px;}
.y24{bottom:376.950000px;}
.y8d{bottom:378.300000px;}
.y4b{bottom:381.600000px;}
.y62{bottom:386.700000px;}
.y19{bottom:390.900000px;}
.y2c{bottom:391.950000px;}
.y8{bottom:399.750000px;}
.y85{bottom:400.500000px;}
.y61{bottom:402.300000px;}
.y69{bottom:402.750000px;}
.y57{bottom:403.200000px;}
.y3f{bottom:403.650000px;}
.y34{bottom:403.800000px;}
.y7b{bottom:406.800000px;}
.y4a{bottom:410.250000px;}
.y23{bottom:416.700000px;}
.y2b{bottom:418.650000px;}
.y18{bottom:419.700000px;}
.y49{bottom:425.850000px;}
.y60{bottom:429.750000px;}
.y3e{bottom:430.350000px;}
.y7{bottom:433.950000px;}
.y7a{bottom:434.400000px;}
.y84{bottom:436.800000px;}
.y33{bottom:441.150000px;}
.y2a{bottom:446.250000px;}
.y17{bottom:450.750000px;}
.y56{bottom:452.400000px;}
.y48{bottom:453.450000px;}
.y5f{bottom:456.750000px;}
.y3d{bottom:457.950000px;}
.y3{bottom:463.950000px;}
.y83{bottom:464.400000px;}
.y79{bottom:470.700000px;}
.y68{bottom:477.750000px;}
.y47{bottom:480.900000px;}
.y29{bottom:483.450000px;}
.y46{bottom:488.700000px;}
.y10{bottom:496.800000px;}
.y78{bottom:498.300000px;}
.y55{bottom:501.450000px;}
.y2{bottom:503.850000px;}
.y6{bottom:505.050000px;}
.y16{bottom:507.450000px;}
.y82{bottom:511.800000px;}
.y22{bottom:511.950000px;}
.y67{bottom:525.000000px;}
.y3c{bottom:535.500000px;}
.yf{bottom:536.850000px;}
.y20{bottom:537.300000px;}
.y1{bottom:543.900000px;}
.y5{bottom:545.100000px;}
.y32{bottom:546.900000px;}
.y15{bottom:547.500000px;}
.y5e{bottom:549.600000px;}
.y54{bottom:550.500000px;}
.y45{bottom:551.100000px;}
.y21{bottom:551.850000px;}
.y28{bottom:563.850000px;}
.y77{bottom:565.800000px;}
.y3b{bottom:568.950000px;}
.y1f{bottom:577.200000px;}
.y5d{bottom:578.250000px;}
.y53{bottom:580.500000px;}
.y44{bottom:583.500000px;}
.y52{bottom:588.300000px;}
.y51{bottom:667.050000px;}
.y50{bottom:695.850000px;}
.he{height:53.173828px;}
.h12{height:70.406250px;}
.h14{height:70.687500px;}
.h7{height:78.478125px;}
.h3{height:79.207031px;}
.h9{height:79.678125px;}
.hb{height:81.478125px;}
.hc{height:82.078125px;}
.hf{height:84.373828px;}
.h8{height:85.078125px;}
.h5{height:88.512891px;}
.ha{height:89.112891px;}
.h6{height:95.712891px;}
.h13{height:104.712891px;}
.h2{height:105.574219px;}
.hd{height:106.347656px;}
.h10{height:115.573828px;}
.h4{height:116.982422px;}
.h11{height:124.769531px;}
.h15{height:148.886719px;}
.h0{height:809.957480px;}
.h1{height:810.000000px;}
.w0{width:1079.957480px;}
.w1{width:1080.000000px;}
.x0{left:0.000000px;}
.x22{left:40.350000px;}
.x11{left:65.850000px;}
.x37{left:72.150000px;}
.x9{left:74.250000px;}
.x1b{left:80.850000px;}
.x21{left:89.250000px;}
.x12{left:91.350000px;}
.xa{left:99.900000px;}
.x31{left:122.100000px;}
.xb{left:125.400000px;}
.x18{left:142.500000px;}
.x1c{left:143.850000px;}
.x3e{left:149.100000px;}
.x20{left:150.600000px;}
.xf{left:152.250000px;}
.x2a{left:162.150000px;}
.x13{left:166.950000px;}
.x19{left:168.000000px;}
.x14{left:169.650000px;}
.x35{left:177.150000px;}
.x23{left:178.350000px;}
.x16{left:192.600000px;}
.x8{left:197.100000px;}
.x3a{left:200.700000px;}
.x1a{left:207.900000px;}
.x3c{left:227.400000px;}
.x38{left:231.450000px;}
.x1e{left:240.900000px;}
.x39{left:253.950000px;}
.x3f{left:276.900000px;}
.x30{left:284.550000px;}
.x1d{left:294.600000px;}
.x15{left:305.250000px;}
.x29{left:308.700000px;}
.x3b{left:333.750000px;}
.x17{left:354.000000px;}
.x24{left:357.150000px;}
.x10{left:370.350000px;}
.x4{left:378.150000px;}
.x3d{left:389.700000px;}
.x27{left:396.000000px;}
.x33{left:403.200000px;}
.x2e{left:406.200000px;}
.x2b{left:412.500000px;}
.xc{left:443.250000px;}
.x5{left:446.700000px;}
.xd{left:453.450000px;}
.x6{left:469.350000px;}
.x2{left:471.000000px;}
.x1{left:483.150000px;}
.x7{left:523.050000px;}
.x25{left:537.600000px;}
.x32{left:545.850000px;}
.x2c{left:547.050000px;}
.x3{left:556.500000px;}
.x34{left:570.300000px;}
.xe{left:578.250000px;}
.x36{left:589.350000px;}
.x1f{left:674.550000px;}
.x28{left:707.700000px;}
.x2f{left:716.250000px;}
.x26{left:835.800000px;}
.x2d{left:844.200000px;}
@media print{
.v1{vertical-align:-6.400000pt;}
.v2{vertical-align:-4.800000pt;}
.v3{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.000000pt;}
.v4{vertical-align:27.733333pt;}
.v5{vertical-align:55.466667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.074667pt;}
.lsb{letter-spacing:0.234667pt;}
.lsf{letter-spacing:1.962667pt;}
.lse{letter-spacing:6.762667pt;}
.ls6{letter-spacing:12.341333pt;}
.lsd{letter-spacing:13.162667pt;}
.ls9{letter-spacing:13.408000pt;}
.ls7{letter-spacing:21.408000pt;}
.ls5{letter-spacing:27.274667pt;}
.ls2{letter-spacing:31.008000pt;}
.ls4{letter-spacing:37.408000pt;}
.ls3{letter-spacing:57.066667pt;}
.ls1{letter-spacing:57.600000pt;}
.lsa{letter-spacing:60.800000pt;}
.lsc{letter-spacing:194.133333pt;}
.ws0{word-spacing:-40.832000pt;}
.ws2{word-spacing:-32.501333pt;}
.ws5{word-spacing:-29.546667pt;}
.ws3{word-spacing:-26.592000pt;}
.ws4{word-spacing:-23.637333pt;}
.ws7{word-spacing:-14.773333pt;}
.wse{word-spacing:-0.085333pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:183.946667pt;}
.ws9{word-spacing:199.413333pt;}
.wsa{word-spacing:567.946667pt;}
.ws6{word-spacing:571.733333pt;}
.wsb{word-spacing:1121.120000pt;}
.ws8{word-spacing:1149.920000pt;}
.wsd{word-spacing:1195.253333pt;}
._34{margin-left:-15.114667pt;}
._21{margin-left:-9.258667pt;}
._1{margin-left:-7.317333pt;}
._39{margin-left:-6.314667pt;}
._17{margin-left:-5.109333pt;}
._13{margin-left:-3.957333pt;}
._19{margin-left:-2.112000pt;}
._0{margin-left:-0.938667pt;}
._2{width:1.056000pt;}
._7{width:2.208000pt;}
._20{width:3.253333pt;}
._3c{width:4.544000pt;}
._1a{width:5.461333pt;}
._1b{width:6.485333pt;}
._38{width:8.000000pt;}
._37{width:8.896000pt;}
._15{width:10.154667pt;}
._f{width:11.541333pt;}
._e{width:12.458667pt;}
._14{width:13.717333pt;}
._5{width:15.008000pt;}
._6{width:16.053333pt;}
._35{width:17.066667pt;}
._9{width:18.837333pt;}
._8{width:20.042667pt;}
._a{width:21.674667pt;}
._11{width:22.944000pt;}
._10{width:23.904000pt;}
._3b{width:25.717333pt;}
._16{width:26.634667pt;}
._d{width:27.765333pt;}
._12{width:29.568000pt;}
._3{width:30.912000pt;}
._4{width:32.917333pt;}
._36{width:35.669333pt;}
._c{width:36.586667pt;}
._b{width:37.909333pt;}
._40{width:41.813333pt;}
._1c{width:43.008000pt;}
._18{width:44.544000pt;}
._1f{width:45.653333pt;}
._3f{width:48.629333pt;}
._3e{width:50.858667pt;}
._3d{width:52.096000pt;}
._1d{width:57.685333pt;}
._1e{width:58.709333pt;}
._33{width:253.397333pt;}
._3a{width:286.741333pt;}
._2c{width:478.581333pt;}
._22{width:483.082667pt;}
._2d{width:571.296000pt;}
._2e{width:583.040000pt;}
._29{width:657.269333pt;}
._25{width:686.069333pt;}
._23{width:729.546667pt;}
._30{width:731.402667pt;}
._2a{width:803.285333pt;}
._26{width:833.024000pt;}
._28{width:837.984000pt;}
._24{width:866.784000pt;}
._31{width:877.418667pt;}
._2b{width:883.338667pt;}
._2f{width:912.117333pt;}
._27{width:928.010667pt;}
._32{width:957.472000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:85.333333pt;}
.fs1{font-size:96.000000pt;}
.fs3{font-size:106.666667pt;}
.fs0{font-size:117.333333pt;}
.fs5{font-size:138.666667pt;}
.fs6{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:31.866667pt;}
.y31{bottom:42.000000pt;}
.y3a{bottom:45.333333pt;}
.y4f{bottom:51.466667pt;}
.y5c{bottom:64.533333pt;}
.y4{bottom:72.000000pt;}
.y39{bottom:74.133333pt;}
.y13{bottom:153.733333pt;}
.y76{bottom:154.400000pt;}
.y81{bottom:158.933333pt;}
.y1e{bottom:162.266667pt;}
.y8c{bottom:170.400000pt;}
.y70{bottom:173.066667pt;}
.y75{bottom:178.933333pt;}
.ye{bottom:182.533333pt;}
.y5b{bottom:183.600000pt;}
.y80{bottom:192.000000pt;}
.y8b{bottom:194.133333pt;}
.y6f{bottom:197.600000pt;}
.yd{bottom:211.333333pt;}
.y74{bottom:212.000000pt;}
.y12{bottom:212.933333pt;}
.y1d{bottom:216.000000pt;}
.y8a{bottom:218.666667pt;}
.y7f{bottom:224.266667pt;}
.y30{bottom:226.266667pt;}
.y5a{bottom:227.333333pt;}
.y6e{bottom:229.866667pt;}
.y27{bottom:239.200000pt;}
.yc{bottom:240.133333pt;}
.y1c{bottom:241.466667pt;}
.y14{bottom:241.733333pt;}
.y66{bottom:244.800000pt;}
.y73{bottom:245.066667pt;}
.y42{bottom:245.200000pt;}
.y7e{bottom:248.800000pt;}
.y89{bottom:250.933333pt;}
.y6d{bottom:253.600000pt;}
.y38{bottom:253.866667pt;}
.y8e{bottom:257.333333pt;}
.y2f{bottom:259.333333pt;}
.y4e{bottom:265.733333pt;}
.y1b{bottom:268.266667pt;}
.y11{bottom:268.933333pt;}
.y65{bottom:269.200000pt;}
.y26{bottom:269.466667pt;}
.yb{bottom:270.533333pt;}
.y59{bottom:270.933333pt;}
.y88{bottom:274.666667pt;}
.y72{bottom:277.333333pt;}
.y37{bottom:277.600000pt;}
.y6c{bottom:278.133333pt;}
.y7d{bottom:281.066667pt;}
.y4d{bottom:290.266667pt;}
.y2e{bottom:292.400000pt;}
.y41{bottom:293.466667pt;}
.y64{bottom:293.733333pt;}
.ya{bottom:297.733333pt;}
.y87{bottom:299.200000pt;}
.y58{bottom:300.800000pt;}
.y71{bottom:301.866667pt;}
.y36{bottom:302.133333pt;}
.y25{bottom:304.800000pt;}
.y6b{bottom:310.533333pt;}
.y4c{bottom:314.666667pt;}
.y63{bottom:318.266667pt;}
.y1a{bottom:321.866667pt;}
.y2d{bottom:324.666667pt;}
.y40{bottom:326.533333pt;}
.y9{bottom:328.133333pt;}
.y7c{bottom:329.333333pt;}
.y86{bottom:331.466667pt;}
.y6a{bottom:334.266667pt;}
.y35{bottom:334.533333pt;}
.y24{bottom:335.066667pt;}
.y8d{bottom:336.266667pt;}
.y4b{bottom:339.200000pt;}
.y62{bottom:343.733333pt;}
.y19{bottom:347.466667pt;}
.y2c{bottom:348.400000pt;}
.y8{bottom:355.333333pt;}
.y85{bottom:356.000000pt;}
.y61{bottom:357.600000pt;}
.y69{bottom:358.000000pt;}
.y57{bottom:358.400000pt;}
.y3f{bottom:358.800000pt;}
.y34{bottom:358.933333pt;}
.y7b{bottom:361.600000pt;}
.y4a{bottom:364.666667pt;}
.y23{bottom:370.400000pt;}
.y2b{bottom:372.133333pt;}
.y18{bottom:373.066667pt;}
.y49{bottom:378.533333pt;}
.y60{bottom:382.000000pt;}
.y3e{bottom:382.533333pt;}
.y7{bottom:385.733333pt;}
.y7a{bottom:386.133333pt;}
.y84{bottom:388.266667pt;}
.y33{bottom:392.133333pt;}
.y2a{bottom:396.666667pt;}
.y17{bottom:400.666667pt;}
.y56{bottom:402.133333pt;}
.y48{bottom:403.066667pt;}
.y5f{bottom:406.000000pt;}
.y3d{bottom:407.066667pt;}
.y3{bottom:412.400000pt;}
.y83{bottom:412.800000pt;}
.y79{bottom:418.400000pt;}
.y68{bottom:424.666667pt;}
.y47{bottom:427.466667pt;}
.y29{bottom:429.733333pt;}
.y46{bottom:434.400000pt;}
.y10{bottom:441.600000pt;}
.y78{bottom:442.933333pt;}
.y55{bottom:445.733333pt;}
.y2{bottom:447.866667pt;}
.y6{bottom:448.933333pt;}
.y16{bottom:451.066667pt;}
.y82{bottom:454.933333pt;}
.y22{bottom:455.066667pt;}
.y67{bottom:466.666667pt;}
.y3c{bottom:476.000000pt;}
.yf{bottom:477.200000pt;}
.y20{bottom:477.600000pt;}
.y1{bottom:483.466667pt;}
.y5{bottom:484.533333pt;}
.y32{bottom:486.133333pt;}
.y15{bottom:486.666667pt;}
.y5e{bottom:488.533333pt;}
.y54{bottom:489.333333pt;}
.y45{bottom:489.866667pt;}
.y21{bottom:490.533333pt;}
.y28{bottom:501.200000pt;}
.y77{bottom:502.933333pt;}
.y3b{bottom:505.733333pt;}
.y1f{bottom:513.066667pt;}
.y5d{bottom:514.000000pt;}
.y53{bottom:516.000000pt;}
.y44{bottom:518.666667pt;}
.y52{bottom:522.933333pt;}
.y51{bottom:592.933333pt;}
.y50{bottom:618.533333pt;}
.he{height:47.265625pt;}
.h12{height:62.583333pt;}
.h14{height:62.833333pt;}
.h7{height:69.758333pt;}
.h3{height:70.406250pt;}
.h9{height:70.825000pt;}
.hb{height:72.425000pt;}
.hc{height:72.958333pt;}
.hf{height:74.998958pt;}
.h8{height:75.625000pt;}
.h5{height:78.678125pt;}
.ha{height:79.211458pt;}
.h6{height:85.078125pt;}
.h13{height:93.078125pt;}
.h2{height:93.843750pt;}
.hd{height:94.531250pt;}
.h10{height:102.732292pt;}
.h4{height:103.984375pt;}
.h11{height:110.906250pt;}
.h15{height:132.343750pt;}
.h0{height:719.962205pt;}
.h1{height:720.000000pt;}
.w0{width:959.962205pt;}
.w1{width:960.000000pt;}
.x0{left:0.000000pt;}
.x22{left:35.866667pt;}
.x11{left:58.533333pt;}
.x37{left:64.133333pt;}
.x9{left:66.000000pt;}
.x1b{left:71.866667pt;}
.x21{left:79.333333pt;}
.x12{left:81.200000pt;}
.xa{left:88.800000pt;}
.x31{left:108.533333pt;}
.xb{left:111.466667pt;}
.x18{left:126.666667pt;}
.x1c{left:127.866667pt;}
.x3e{left:132.533333pt;}
.x20{left:133.866667pt;}
.xf{left:135.333333pt;}
.x2a{left:144.133333pt;}
.x13{left:148.400000pt;}
.x19{left:149.333333pt;}
.x14{left:150.800000pt;}
.x35{left:157.466667pt;}
.x23{left:158.533333pt;}
.x16{left:171.200000pt;}
.x8{left:175.200000pt;}
.x3a{left:178.400000pt;}
.x1a{left:184.800000pt;}
.x3c{left:202.133333pt;}
.x38{left:205.733333pt;}
.x1e{left:214.133333pt;}
.x39{left:225.733333pt;}
.x3f{left:246.133333pt;}
.x30{left:252.933333pt;}
.x1d{left:261.866667pt;}
.x15{left:271.333333pt;}
.x29{left:274.400000pt;}
.x3b{left:296.666667pt;}
.x17{left:314.666667pt;}
.x24{left:317.466667pt;}
.x10{left:329.200000pt;}
.x4{left:336.133333pt;}
.x3d{left:346.400000pt;}
.x27{left:352.000000pt;}
.x33{left:358.400000pt;}
.x2e{left:361.066667pt;}
.x2b{left:366.666667pt;}
.xc{left:394.000000pt;}
.x5{left:397.066667pt;}
.xd{left:403.066667pt;}
.x6{left:417.200000pt;}
.x2{left:418.666667pt;}
.x1{left:429.466667pt;}
.x7{left:464.933333pt;}
.x25{left:477.866667pt;}
.x32{left:485.200000pt;}
.x2c{left:486.266667pt;}
.x3{left:494.666667pt;}
.x34{left:506.933333pt;}
.xe{left:514.000000pt;}
.x36{left:523.866667pt;}
.x1f{left:599.600000pt;}
.x28{left:629.066667pt;}
.x2f{left:636.666667pt;}
.x26{left:742.933333pt;}
.x2d{left:750.400000pt;}
}

