
    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_063cf31dbf2098028f9c6fd7.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7162d221c7553d0273ad7d41.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8064316b42aef084f006e11e.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_64762aa06d6df9d5d61cbd5a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_54d0d9add231b91b3b874de3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_6c462ed4893baa735a3cb0ea.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_00ed3d2b441a029495a17c7d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.800000px;}
.lsa{letter-spacing:-1.494000px;}
.lse{letter-spacing:-0.259800px;}
.ls4{letter-spacing:-0.106800px;}
.ls2{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.305400px;}
.ls9{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.612000px;}
.lsb{letter-spacing:0.613440px;}
.ls6{letter-spacing:0.666720px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.ws8{word-spacing:-17.225280px;}
.ws6{word-spacing:-16.973280px;}
.ws7{word-spacing:-16.873080px;}
.ws3{word-spacing:-16.666560px;}
.ws0{word-spacing:-16.613280px;}
.ws4{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.506480px;}
.wsa{word-spacing:-16.353480px;}
.ws9{word-spacing:-14.813280px;}
.ws2{word-spacing:0.000000px;}
._1f{margin-left:-5.271840px;}
._4{margin-left:-3.937680px;}
._5{margin-left:-2.761920px;}
._0{margin-left:-1.059840px;}
._2{width:1.015920px;}
._6{width:2.091600px;}
._1{width:3.107520px;}
._3{width:4.738080px;}
._a{width:5.980560px;}
._8{width:7.828560px;}
._9{width:9.183360px;}
._b{width:11.154000px;}
._c{width:12.609360px;}
._d{width:13.744800px;}
._e{width:15.179040px;}
._7{width:18.014160px;}
._17{width:19.946640px;}
._16{width:21.035520px;}
._f{width:22.589280px;}
._10{width:23.784480px;}
._1d{width:24.979680px;}
._18{width:25.995600px;}
._1e{width:28.853760px;}
._14{width:30.243360px;}
._13{width:31.374000px;}
._15{width:32.460480px;}
._1c{width:33.922080px;}
._1b{width:37.708560px;}
._11{width:38.784240px;}
._12{width:40.045440px;}
._19{width:46.612800px;}
._1a{width:64.016640px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y76{bottom:111.780000px;}
.y4f{bottom:113.220000px;}
.ycf{bottom:118.080000px;}
.y118{bottom:120.780000px;}
.y2a{bottom:122.220000px;}
.y153{bottom:129.600000px;}
.y75{bottom:131.580000px;}
.yb0{bottom:131.940000px;}
.y29{bottom:142.020000px;}
.y137{bottom:143.820000px;}
.yce{bottom:144.000000px;}
.y117{bottom:146.700000px;}
.y4e{bottom:148.140000px;}
.y152{bottom:149.580000px;}
.y74{bottom:151.560000px;}
.yaf{bottom:157.680000px;}
.ye8{bottom:160.200000px;}
.y28{bottom:161.820000px;}
.yfd{bottom:162.720000px;}
.y120{bottom:163.440000px;}
.y136{bottom:163.620000px;}
.y111{bottom:167.580000px;}
.ycd{bottom:169.920000px;}
.y116{bottom:172.470000px;}
.y93{bottom:177.690000px;}
.y27{bottom:181.830000px;}
.y4d{bottom:182.910000px;}
.y135{bottom:183.450000px;}
.yae{bottom:183.630000px;}
.y151{bottom:184.350000px;}
.ye7{bottom:185.970000px;}
.y73{bottom:186.330000px;}
.yfc{bottom:188.670000px;}
.y110{bottom:193.530000px;}
.ycc{bottom:195.870000px;}
.y92{bottom:197.490000px;}
.y115{bottom:198.390000px;}
.y134{bottom:203.250000px;}
.y150{bottom:204.150000px;}
.y72{bottom:206.130000px;}
.yad{bottom:209.730000px;}
.ye6{bottom:211.890000px;}
.yfb{bottom:214.590000px;}
.y91{bottom:217.290000px;}
.y26{bottom:217.470000px;}
.y4c{bottom:217.830000px;}
.y10f{bottom:219.450000px;}
.ycb{bottom:221.610000px;}
.y133{bottom:223.230000px;}
.y114{bottom:224.310000px;}
.y71{bottom:225.930000px;}
.y90{bottom:237.090000px;}
.y14f{bottom:239.070000px;}
.y132{bottom:243.030000px;}
.y10e{bottom:245.370000px;}
.y70{bottom:245.910000px;}
.yac{bottom:247.890000px;}
.y4b{bottom:252.750000px;}
.y25{bottom:253.470000px;}
.ye5{bottom:258.870000px;}
.yca{bottom:260.130000px;}
.yfa{bottom:261.390000px;}
.y131{bottom:262.830000px;}
.yab{bottom:264.990000px;}
.y6f{bottom:265.710000px;}
.y10d{bottom:271.110000px;}
.y8f{bottom:272.010000px;}
.y24{bottom:273.270000px;}
.yaa{bottom:282.450000px;}
.y130{bottom:282.630000px;}
.ye4{bottom:284.610000px;}
.y6e{bottom:285.510000px;}
.yf9{bottom:287.310000px;}
.y4a{bottom:287.490000px;}
.y8e{bottom:291.810000px;}
.y11f{bottom:292.170000px;}
.y23{bottom:293.070000px;}
.y14e{bottom:293.790000px;}
.y10c{bottom:297.030000px;}
.y12f{bottom:302.430000px;}
.yc9{bottom:306.750000px;}
.ye3{bottom:310.530000px;}
.y8d{bottom:311.610000px;}
.y22{bottom:312.870000px;}
.yf8{bottom:313.230000px;}
.y14d{bottom:313.590000px;}
.y11e{bottom:318.090000px;}
.y6d{bottom:320.610000px;}
.y49{bottom:322.410000px;}
.ya9{bottom:329.250000px;}
.y21{bottom:332.670000px;}
.y14c{bottom:333.390000px;}
.ye2{bottom:336.450000px;}
.yf7{bottom:338.970000px;}
.y10b{bottom:343.830000px;}
.y8c{bottom:346.530000px;}
.y20{bottom:352.650000px;}
.y6c{bottom:355.170000px;}
.y48{bottom:357.150000px;}
.ye1{bottom:362.190000px;}
.yf6{bottom:364.890000px;}
.y14b{bottom:368.130000px;}
.y10a{bottom:369.750000px;}
.y1f{bottom:372.450000px;}
.y6b{bottom:374.970000px;}
.yc8{bottom:379.470000px;}
.y8b{bottom:381.270000px;}
.y14a{bottom:388.110000px;}
.yf5{bottom:390.810000px;}
.y47{bottom:392.070000px;}
.y6a{bottom:394.950000px;}
.y109{bottom:395.670000px;}
.ye0{bottom:400.710000px;}
.ya8{bottom:401.970000px;}
.yc7{bottom:405.390000px;}
.y1e{bottom:407.190000px;}
.y46{bottom:411.870000px;}
.y8a{bottom:416.235000px;}
.yf4{bottom:416.775000px;}
.y108{bottom:421.635000px;}
.y149{bottom:422.895000px;}
.y12e{bottom:426.855000px;}
.y1d{bottom:427.215000px;}
.ya7{bottom:427.755000px;}
.y69{bottom:429.735000px;}
.yc6{bottom:431.355000px;}
.yf3{bottom:442.515000px;}
.y45{bottom:446.655000px;}
.y1c{bottom:447.015000px;}
.ydf{bottom:447.375000px;}
.y68{bottom:449.535000px;}
.y89{bottom:451.155000px;}
.ya6{bottom:453.675000px;}
.y148{bottom:457.815000px;}
.y12d{bottom:461.775000px;}
.y44{bottom:466.635000px;}
.y1b{bottom:466.815000px;}
.y107{bottom:468.435000px;}
.y67{bottom:469.335000px;}
.yde{bottom:473.295000px;}
.y147{bottom:477.615000px;}
.yc5{bottom:478.155000px;}
.ya5{bottom:479.595000px;}
.y12c{bottom:481.575000px;}
.y88{bottom:485.895000px;}
.y1a{bottom:486.615000px;}
.yf2{bottom:489.495000px;}
.y106{bottom:494.355000px;}
.y146{bottom:497.415000px;}
.ydd{bottom:499.215000px;}
.y43{bottom:501.375000px;}
.yc4{bottom:504.075000px;}
.y66{bottom:504.255000px;}
.y19{bottom:506.415000px;}
.yf1{bottom:515.235000px;}
.y12b{bottom:516.315000px;}
.y105{bottom:520.095000px;}
.y87{bottom:520.815000px;}
.y65{bottom:524.055000px;}
.ydc{bottom:525.135000px;}
.ya4{bottom:526.395000px;}
.y145{bottom:532.335000px;}
.y42{bottom:536.295000px;}
.yf0{bottom:541.155000px;}
.y18{bottom:541.515000px;}
.y64{bottom:543.855000px;}
.y104{bottom:546.015000px;}
.yc3{bottom:550.875000px;}
.ya3{bottom:552.315000px;}
.y86{bottom:555.555000px;}
.y12a{bottom:556.095000px;}
.y63{bottom:563.835000px;}
.y11d{bottom:567.075000px;}
.y41{bottom:571.035000px;}
.ydb{bottom:571.935000px;}
.y17{bottom:576.075000px;}
.yc2{bottom:576.795000px;}
.ya2{bottom:578.235000px;}
.y144{bottom:586.875000px;}
.yef{bottom:588.135000px;}
.y85{bottom:590.475000px;}
.y40{bottom:590.835000px;}
.y11c{bottom:592.995000px;}
.y16{bottom:596.055000px;}
.yda{bottom:597.855000px;}
.y62{bottom:598.575000px;}
.y3f{bottom:610.815000px;}
.yee{bottom:613.875000px;}
.y15{bottom:615.855000px;}
.y61{bottom:618.375000px;}
.y11b{bottom:618.735000px;}
.y143{bottom:621.795000px;}
.yc1{bottom:623.595000px;}
.ya1{bottom:625.035000px;}
.y84{bottom:625.215000px;}
.y129{bottom:625.755000px;}
.y3e{bottom:630.615000px;}
.y14{bottom:635.655000px;}
.yed{bottom:639.795000px;}
.y142{bottom:641.595000px;}
.yd9{bottom:644.655000px;}
.y128{bottom:645.555000px;}
.yc0{bottom:649.515000px;}
.ya0{bottom:651.135000px;}
.y60{bottom:653.295000px;}
.y13{bottom:655.455000px;}
.y83{bottom:660.165000px;}
.y141{bottom:661.425000px;}
.y3d{bottom:665.385000px;}
.yec{bottom:665.745000px;}
.yd8{bottom:670.605000px;}
.y5f{bottom:673.125000px;}
.y12{bottom:675.285000px;}
.ybf{bottom:675.465000px;}
.y82{bottom:679.965000px;}
.y3c{bottom:685.365000px;}
.yeb{bottom:691.665000px;}
.y5e{bottom:692.925000px;}
.y11{bottom:695.265000px;}
.y140{bottom:696.345000px;}
.y103{bottom:696.525000px;}
.y9f{bottom:697.785000px;}
.y127{bottom:700.305000px;}
.y81{bottom:714.705000px;}
.y10{bottom:715.065000px;}
.y13f{bottom:716.145000px;}
.yd7{bottom:717.405000px;}
.y3b{bottom:720.105000px;}
.ybe{bottom:722.265000px;}
.y5d{bottom:727.845000px;}
.y3a{bottom:739.905000px;}
.yd6{bottom:743.325000px;}
.y11a{bottom:743.505000px;}
.y9e{bottom:744.945000px;}
.y5c{bottom:747.645000px;}
.y80{bottom:749.625000px;}
.yf{bottom:749.985000px;}
.y13e{bottom:751.065000px;}
.ybd{bottom:769.245000px;}
.y13d{bottom:770.865000px;}
.y39{bottom:774.825000px;}
.y5b{bottom:782.565000px;}
.y7f{bottom:784.545000px;}
.ye{bottom:785.445000px;}
.y119{bottom:790.125000px;}
.y13c{bottom:790.665000px;}
.y9d{bottom:791.565000px;}
.y38{bottom:794.625000px;}
.yea{bottom:794.985000px;}
.ybc{bottom:795.165000px;}
.y5a{bottom:802.365000px;}
.y7e{bottom:804.345000px;}
.y126{bottom:809.565000px;}
.yd5{bottom:816.045000px;}
.y9c{bottom:817.485000px;}
.y102{bottom:820.905000px;}
.yd{bottom:821.445000px;}
.y59{bottom:822.165000px;}
.y13b{bottom:825.405000px;}
.y37{bottom:829.545000px;}
.y7d{bottom:839.085000px;}
.yc{bottom:841.425000px;}
.ybb{bottom:841.965000px;}
.y9b{bottom:843.405000px;}
.y13a{bottom:845.385000px;}
.y101{bottom:846.825000px;}
.y125{bottom:849.345000px;}
.y58{bottom:856.905000px;}
.y7c{bottom:858.885000px;}
.y36{bottom:864.285000px;}
.y139{bottom:865.185000px;}
.yba{bottom:867.885000px;}
.y9a{bottom:869.145000px;}
.y100{bottom:872.745000px;}
.yb{bottom:876.165000px;}
.y57{bottom:876.885000px;}
.yb9{bottom:893.625000px;}
.y7b{bottom:893.805000px;}
.y99{bottom:895.065000px;}
.ya{bottom:895.965000px;}
.y56{bottom:896.685000px;}
.y35{bottom:899.205000px;}
.y138{bottom:901.185000px;}
.y124{bottom:903.885000px;}
.yd4{bottom:914.730000px;}
.y9{bottom:915.990000px;}
.yb8{bottom:919.590000px;}
.y98{bottom:921.030000px;}
.y7a{bottom:928.770000px;}
.y55{bottom:932.370000px;}
.y34{bottom:933.990000px;}
.y8{bottom:935.790000px;}
.y123{bottom:938.850000px;}
.yd3{bottom:940.650000px;}
.ye9{bottom:945.510000px;}
.y33{bottom:953.790000px;}
.y122{bottom:958.650000px;}
.y79{bottom:963.510000px;}
.yb7{bottom:966.390000px;}
.y97{bottom:968.190000px;}
.y54{bottom:968.370000px;}
.y7{bottom:970.530000px;}
.yff{bottom:971.430000px;}
.y32{bottom:973.770000px;}
.y121{bottom:978.450000px;}
.y6{bottom:990.510000px;}
.yb6{bottom:992.310000px;}
.y31{bottom:993.570000px;}
.y113{bottom:997.170000px;}
.y78{bottom:998.430000px;}
.y53{bottom:1003.110000px;}
.y96{bottom:1008.510000px;}
.y5{bottom:1010.310000px;}
.y30{bottom:1013.370000px;}
.yd2{bottom:1018.230000px;}
.yfe{bottom:1018.410000px;}
.y95{bottom:1028.310000px;}
.y77{bottom:1033.170000px;}
.y52{bottom:1038.030000px;}
.yb5{bottom:1039.290000px;}
.yd1{bottom:1044.150000px;}
.y112{bottom:1044.330000px;}
.y4{bottom:1045.950000px;}
.y2f{bottom:1048.110000px;}
.y154{bottom:1052.970000px;}
.yb4{bottom:1065.030000px;}
.y2e{bottom:1068.090000px;}
.yd0{bottom:1069.890000px;}
.y51{bottom:1072.950000px;}
.y3{bottom:1082.850000px;}
.y2d{bottom:1087.890000px;}
.yb3{bottom:1090.950000px;}
.y94{bottom:1102.830000px;}
.y50{bottom:1107.690000px;}
.yb2{bottom:1116.870000px;}
.y2{bottom:1119.570000px;}
.y2c{bottom:1122.630000px;}
.y1{bottom:1141.530000px;}
.y2b{bottom:1142.610000px;}
.yb1{bottom:1142.790000px;}
.h4{height:53.573906px;}
.h3{height:62.327813px;}
.h2{height:69.086250px;}
.h5{height:75.093750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:100.655987px;}
.x4{left:106.415987px;}
.x1{left:127.655987px;}
.x3{left:641.264987px;}
.x2{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.600000pt;}
.lsa{letter-spacing:-1.328000pt;}
.lse{letter-spacing:-0.230933pt;}
.ls4{letter-spacing:-0.094933pt;}
.ls2{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.271467pt;}
.ls9{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.544000pt;}
.lsb{letter-spacing:0.545280pt;}
.ls6{letter-spacing:0.592640pt;}
.ws5{word-spacing:-53.120000pt;}
.ws8{word-spacing:-15.311360pt;}
.ws6{word-spacing:-15.087360pt;}
.ws7{word-spacing:-14.998293pt;}
.ws3{word-spacing:-14.814720pt;}
.ws0{word-spacing:-14.767360pt;}
.ws4{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.672427pt;}
.wsa{word-spacing:-14.536427pt;}
.ws9{word-spacing:-13.167360pt;}
.ws2{word-spacing:0.000000pt;}
._1f{margin-left:-4.686080pt;}
._4{margin-left:-3.500160pt;}
._5{margin-left:-2.455040pt;}
._0{margin-left:-0.942080pt;}
._2{width:0.903040pt;}
._6{width:1.859200pt;}
._1{width:2.762240pt;}
._3{width:4.211627pt;}
._a{width:5.316053pt;}
._8{width:6.958720pt;}
._9{width:8.162987pt;}
._b{width:9.914667pt;}
._c{width:11.208320pt;}
._d{width:12.217600pt;}
._e{width:13.492480pt;}
._7{width:16.012587pt;}
._17{width:17.730347pt;}
._16{width:18.698240pt;}
._f{width:20.079360pt;}
._10{width:21.141760pt;}
._1d{width:22.204160pt;}
._18{width:23.107200pt;}
._1e{width:25.647787pt;}
._14{width:26.882987pt;}
._13{width:27.888000pt;}
._15{width:28.853760pt;}
._1c{width:30.152960pt;}
._1b{width:33.518720pt;}
._11{width:34.474880pt;}
._12{width:35.595947pt;}
._19{width:41.433600pt;}
._1a{width:56.903680pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:99.360000pt;}
.y4f{bottom:100.640000pt;}
.ycf{bottom:104.960000pt;}
.y118{bottom:107.360000pt;}
.y2a{bottom:108.640000pt;}
.y153{bottom:115.200000pt;}
.y75{bottom:116.960000pt;}
.yb0{bottom:117.280000pt;}
.y29{bottom:126.240000pt;}
.y137{bottom:127.840000pt;}
.yce{bottom:128.000000pt;}
.y117{bottom:130.400000pt;}
.y4e{bottom:131.680000pt;}
.y152{bottom:132.960000pt;}
.y74{bottom:134.720000pt;}
.yaf{bottom:140.160000pt;}
.ye8{bottom:142.400000pt;}
.y28{bottom:143.840000pt;}
.yfd{bottom:144.640000pt;}
.y120{bottom:145.280000pt;}
.y136{bottom:145.440000pt;}
.y111{bottom:148.960000pt;}
.ycd{bottom:151.040000pt;}
.y116{bottom:153.306667pt;}
.y93{bottom:157.946667pt;}
.y27{bottom:161.626667pt;}
.y4d{bottom:162.586667pt;}
.y135{bottom:163.066667pt;}
.yae{bottom:163.226667pt;}
.y151{bottom:163.866667pt;}
.ye7{bottom:165.306667pt;}
.y73{bottom:165.626667pt;}
.yfc{bottom:167.706667pt;}
.y110{bottom:172.026667pt;}
.ycc{bottom:174.106667pt;}
.y92{bottom:175.546667pt;}
.y115{bottom:176.346667pt;}
.y134{bottom:180.666667pt;}
.y150{bottom:181.466667pt;}
.y72{bottom:183.226667pt;}
.yad{bottom:186.426667pt;}
.ye6{bottom:188.346667pt;}
.yfb{bottom:190.746667pt;}
.y91{bottom:193.146667pt;}
.y26{bottom:193.306667pt;}
.y4c{bottom:193.626667pt;}
.y10f{bottom:195.066667pt;}
.ycb{bottom:196.986667pt;}
.y133{bottom:198.426667pt;}
.y114{bottom:199.386667pt;}
.y71{bottom:200.826667pt;}
.y90{bottom:210.746667pt;}
.y14f{bottom:212.506667pt;}
.y132{bottom:216.026667pt;}
.y10e{bottom:218.106667pt;}
.y70{bottom:218.586667pt;}
.yac{bottom:220.346667pt;}
.y4b{bottom:224.666667pt;}
.y25{bottom:225.306667pt;}
.ye5{bottom:230.106667pt;}
.yca{bottom:231.226667pt;}
.yfa{bottom:232.346667pt;}
.y131{bottom:233.626667pt;}
.yab{bottom:235.546667pt;}
.y6f{bottom:236.186667pt;}
.y10d{bottom:240.986667pt;}
.y8f{bottom:241.786667pt;}
.y24{bottom:242.906667pt;}
.yaa{bottom:251.066667pt;}
.y130{bottom:251.226667pt;}
.ye4{bottom:252.986667pt;}
.y6e{bottom:253.786667pt;}
.yf9{bottom:255.386667pt;}
.y4a{bottom:255.546667pt;}
.y8e{bottom:259.386667pt;}
.y11f{bottom:259.706667pt;}
.y23{bottom:260.506667pt;}
.y14e{bottom:261.146667pt;}
.y10c{bottom:264.026667pt;}
.y12f{bottom:268.826667pt;}
.yc9{bottom:272.666667pt;}
.ye3{bottom:276.026667pt;}
.y8d{bottom:276.986667pt;}
.y22{bottom:278.106667pt;}
.yf8{bottom:278.426667pt;}
.y14d{bottom:278.746667pt;}
.y11e{bottom:282.746667pt;}
.y6d{bottom:284.986667pt;}
.y49{bottom:286.586667pt;}
.ya9{bottom:292.666667pt;}
.y21{bottom:295.706667pt;}
.y14c{bottom:296.346667pt;}
.ye2{bottom:299.066667pt;}
.yf7{bottom:301.306667pt;}
.y10b{bottom:305.626667pt;}
.y8c{bottom:308.026667pt;}
.y20{bottom:313.466667pt;}
.y6c{bottom:315.706667pt;}
.y48{bottom:317.466667pt;}
.ye1{bottom:321.946667pt;}
.yf6{bottom:324.346667pt;}
.y14b{bottom:327.226667pt;}
.y10a{bottom:328.666667pt;}
.y1f{bottom:331.066667pt;}
.y6b{bottom:333.306667pt;}
.yc8{bottom:337.306667pt;}
.y8b{bottom:338.906667pt;}
.y14a{bottom:344.986667pt;}
.yf5{bottom:347.386667pt;}
.y47{bottom:348.506667pt;}
.y6a{bottom:351.066667pt;}
.y109{bottom:351.706667pt;}
.ye0{bottom:356.186667pt;}
.ya8{bottom:357.306667pt;}
.yc7{bottom:360.346667pt;}
.y1e{bottom:361.946667pt;}
.y46{bottom:366.106667pt;}
.y8a{bottom:369.986667pt;}
.yf4{bottom:370.466667pt;}
.y108{bottom:374.786667pt;}
.y149{bottom:375.906667pt;}
.y12e{bottom:379.426667pt;}
.y1d{bottom:379.746667pt;}
.ya7{bottom:380.226667pt;}
.y69{bottom:381.986667pt;}
.yc6{bottom:383.426667pt;}
.yf3{bottom:393.346667pt;}
.y45{bottom:397.026667pt;}
.y1c{bottom:397.346667pt;}
.ydf{bottom:397.666667pt;}
.y68{bottom:399.586667pt;}
.y89{bottom:401.026667pt;}
.ya6{bottom:403.266667pt;}
.y148{bottom:406.946667pt;}
.y12d{bottom:410.466667pt;}
.y44{bottom:414.786667pt;}
.y1b{bottom:414.946667pt;}
.y107{bottom:416.386667pt;}
.y67{bottom:417.186667pt;}
.yde{bottom:420.706667pt;}
.y147{bottom:424.546667pt;}
.yc5{bottom:425.026667pt;}
.ya5{bottom:426.306667pt;}
.y12c{bottom:428.066667pt;}
.y88{bottom:431.906667pt;}
.y1a{bottom:432.546667pt;}
.yf2{bottom:435.106667pt;}
.y106{bottom:439.426667pt;}
.y146{bottom:442.146667pt;}
.ydd{bottom:443.746667pt;}
.y43{bottom:445.666667pt;}
.yc4{bottom:448.066667pt;}
.y66{bottom:448.226667pt;}
.y19{bottom:450.146667pt;}
.yf1{bottom:457.986667pt;}
.y12b{bottom:458.946667pt;}
.y105{bottom:462.306667pt;}
.y87{bottom:462.946667pt;}
.y65{bottom:465.826667pt;}
.ydc{bottom:466.786667pt;}
.ya4{bottom:467.906667pt;}
.y145{bottom:473.186667pt;}
.y42{bottom:476.706667pt;}
.yf0{bottom:481.026667pt;}
.y18{bottom:481.346667pt;}
.y64{bottom:483.426667pt;}
.y104{bottom:485.346667pt;}
.yc3{bottom:489.666667pt;}
.ya3{bottom:490.946667pt;}
.y86{bottom:493.826667pt;}
.y12a{bottom:494.306667pt;}
.y63{bottom:501.186667pt;}
.y11d{bottom:504.066667pt;}
.y41{bottom:507.586667pt;}
.ydb{bottom:508.386667pt;}
.y17{bottom:512.066667pt;}
.yc2{bottom:512.706667pt;}
.ya2{bottom:513.986667pt;}
.y144{bottom:521.666667pt;}
.yef{bottom:522.786667pt;}
.y85{bottom:524.866667pt;}
.y40{bottom:525.186667pt;}
.y11c{bottom:527.106667pt;}
.y16{bottom:529.826667pt;}
.yda{bottom:531.426667pt;}
.y62{bottom:532.066667pt;}
.y3f{bottom:542.946667pt;}
.yee{bottom:545.666667pt;}
.y15{bottom:547.426667pt;}
.y61{bottom:549.666667pt;}
.y11b{bottom:549.986667pt;}
.y143{bottom:552.706667pt;}
.yc1{bottom:554.306667pt;}
.ya1{bottom:555.586667pt;}
.y84{bottom:555.746667pt;}
.y129{bottom:556.226667pt;}
.y3e{bottom:560.546667pt;}
.y14{bottom:565.026667pt;}
.yed{bottom:568.706667pt;}
.y142{bottom:570.306667pt;}
.yd9{bottom:573.026667pt;}
.y128{bottom:573.826667pt;}
.yc0{bottom:577.346667pt;}
.ya0{bottom:578.786667pt;}
.y60{bottom:580.706667pt;}
.y13{bottom:582.626667pt;}
.y83{bottom:586.813333pt;}
.y141{bottom:587.933333pt;}
.y3d{bottom:591.453333pt;}
.yec{bottom:591.773333pt;}
.yd8{bottom:596.093333pt;}
.y5f{bottom:598.333333pt;}
.y12{bottom:600.253333pt;}
.ybf{bottom:600.413333pt;}
.y82{bottom:604.413333pt;}
.y3c{bottom:609.213333pt;}
.yeb{bottom:614.813333pt;}
.y5e{bottom:615.933333pt;}
.y11{bottom:618.013333pt;}
.y140{bottom:618.973333pt;}
.y103{bottom:619.133333pt;}
.y9f{bottom:620.253333pt;}
.y127{bottom:622.493333pt;}
.y81{bottom:635.293333pt;}
.y10{bottom:635.613333pt;}
.y13f{bottom:636.573333pt;}
.yd7{bottom:637.693333pt;}
.y3b{bottom:640.093333pt;}
.ybe{bottom:642.013333pt;}
.y5d{bottom:646.973333pt;}
.y3a{bottom:657.693333pt;}
.yd6{bottom:660.733333pt;}
.y11a{bottom:660.893333pt;}
.y9e{bottom:662.173333pt;}
.y5c{bottom:664.573333pt;}
.y80{bottom:666.333333pt;}
.yf{bottom:666.653333pt;}
.y13e{bottom:667.613333pt;}
.ybd{bottom:683.773333pt;}
.y13d{bottom:685.213333pt;}
.y39{bottom:688.733333pt;}
.y5b{bottom:695.613333pt;}
.y7f{bottom:697.373333pt;}
.ye{bottom:698.173333pt;}
.y119{bottom:702.333333pt;}
.y13c{bottom:702.813333pt;}
.y9d{bottom:703.613333pt;}
.y38{bottom:706.333333pt;}
.yea{bottom:706.653333pt;}
.ybc{bottom:706.813333pt;}
.y5a{bottom:713.213333pt;}
.y7e{bottom:714.973333pt;}
.y126{bottom:719.613333pt;}
.yd5{bottom:725.373333pt;}
.y9c{bottom:726.653333pt;}
.y102{bottom:729.693333pt;}
.yd{bottom:730.173333pt;}
.y59{bottom:730.813333pt;}
.y13b{bottom:733.693333pt;}
.y37{bottom:737.373333pt;}
.y7d{bottom:745.853333pt;}
.yc{bottom:747.933333pt;}
.ybb{bottom:748.413333pt;}
.y9b{bottom:749.693333pt;}
.y13a{bottom:751.453333pt;}
.y101{bottom:752.733333pt;}
.y125{bottom:754.973333pt;}
.y58{bottom:761.693333pt;}
.y7c{bottom:763.453333pt;}
.y36{bottom:768.253333pt;}
.y139{bottom:769.053333pt;}
.yba{bottom:771.453333pt;}
.y9a{bottom:772.573333pt;}
.y100{bottom:775.773333pt;}
.yb{bottom:778.813333pt;}
.y57{bottom:779.453333pt;}
.yb9{bottom:794.333333pt;}
.y7b{bottom:794.493333pt;}
.y99{bottom:795.613333pt;}
.ya{bottom:796.413333pt;}
.y56{bottom:797.053333pt;}
.y35{bottom:799.293333pt;}
.y138{bottom:801.053333pt;}
.y124{bottom:803.453333pt;}
.yd4{bottom:813.093333pt;}
.y9{bottom:814.213333pt;}
.yb8{bottom:817.413333pt;}
.y98{bottom:818.693333pt;}
.y7a{bottom:825.573333pt;}
.y55{bottom:828.773333pt;}
.y34{bottom:830.213333pt;}
.y8{bottom:831.813333pt;}
.y123{bottom:834.533333pt;}
.yd3{bottom:836.133333pt;}
.ye9{bottom:840.453333pt;}
.y33{bottom:847.813333pt;}
.y122{bottom:852.133333pt;}
.y79{bottom:856.453333pt;}
.yb7{bottom:859.013333pt;}
.y97{bottom:860.613333pt;}
.y54{bottom:860.773333pt;}
.y7{bottom:862.693333pt;}
.yff{bottom:863.493333pt;}
.y32{bottom:865.573333pt;}
.y121{bottom:869.733333pt;}
.y6{bottom:880.453333pt;}
.yb6{bottom:882.053333pt;}
.y31{bottom:883.173333pt;}
.y113{bottom:886.373333pt;}
.y78{bottom:887.493333pt;}
.y53{bottom:891.653333pt;}
.y96{bottom:896.453333pt;}
.y5{bottom:898.053333pt;}
.y30{bottom:900.773333pt;}
.yd2{bottom:905.093333pt;}
.yfe{bottom:905.253333pt;}
.y95{bottom:914.053333pt;}
.y77{bottom:918.373333pt;}
.y52{bottom:922.693333pt;}
.yb5{bottom:923.813333pt;}
.yd1{bottom:928.133333pt;}
.y112{bottom:928.293333pt;}
.y4{bottom:929.733333pt;}
.y2f{bottom:931.653333pt;}
.y154{bottom:935.973333pt;}
.yb4{bottom:946.693333pt;}
.y2e{bottom:949.413333pt;}
.yd0{bottom:951.013333pt;}
.y51{bottom:953.733333pt;}
.y3{bottom:962.533333pt;}
.y2d{bottom:967.013333pt;}
.yb3{bottom:969.733333pt;}
.y94{bottom:980.293333pt;}
.y50{bottom:984.613333pt;}
.yb2{bottom:992.773333pt;}
.y2{bottom:995.173333pt;}
.y2c{bottom:997.893333pt;}
.y1{bottom:1014.693333pt;}
.y2b{bottom:1015.653333pt;}
.yb1{bottom:1015.813333pt;}
.h4{height:47.621250pt;}
.h3{height:55.402500pt;}
.h2{height:61.410000pt;}
.h5{height:66.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:89.471988pt;}
.x4{left:94.591988pt;}
.x1{left:113.471988pt;}
.x3{left:570.013322pt;}
.x2{left:680.453322pt;}
}

