
    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_ad42ec61a02543dee379a736.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_73f1ed1afb122084a9e0c5a6.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4a19262e20b0ae122a46db1b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1d6883efa0125593370da074.woff')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_e51817762029cd9c67bb783d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.672000;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_fcc1f9858b969d62bfea9d40.woff')format("woff");}.ff6{font-family:ff6;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.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;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.002400px;}
.ls4{letter-spacing:16.022692px;}
.ls2{letter-spacing:16.227292px;}
.ls1{letter-spacing:17.930400px;}
.ls5{letter-spacing:22.820692px;}
.ls3{letter-spacing:23.199292px;}
.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;}
}
.ws2{word-spacing:-0.071731px;}
.ws32{word-spacing:-0.059776px;}
.ws58{word-spacing:-0.053798px;}
.ws44{word-spacing:0.000000px;}
.ws65{word-spacing:10.921075px;}
.ws83{word-spacing:11.728051px;}
.ws82{word-spacing:11.943245px;}
.ws15{word-spacing:11.955120px;}
.ws2e{word-spacing:12.014896px;}
.ws84{word-spacing:12.104640px;}
.ws7f{word-spacing:12.266035px;}
.ws56{word-spacing:12.493100px;}
.ws66{word-spacing:12.535027px;}
.ws11{word-spacing:12.552876px;}
.ws79{word-spacing:12.900970px;}
.ws7a{word-spacing:12.911616px;}
.ws75{word-spacing:13.019213px;}
.ws69{word-spacing:13.073011px;}
.ws6f{word-spacing:13.180608px;}
.ws52{word-spacing:13.329959px;}
.ws8{word-spacing:13.389734px;}
.ws5b{word-spacing:13.395802px;}
.ws7{word-spacing:13.509286px;}
.ws1a{word-spacing:13.748388px;}
.wsa{word-spacing:13.867939px;}
.ws2c{word-spacing:13.927715px;}
.ws6d{word-spacing:13.933786px;}
.ws1c{word-spacing:14.286368px;}
.ws72{word-spacing:14.417971px;}
.ws74{word-spacing:14.471770px;}
.ws53{word-spacing:14.525471px;}
.ws10{word-spacing:14.884124px;}
.ws6c{word-spacing:14.955955px;}
.ws3d{word-spacing:15.063451px;}
.ws3c{word-spacing:15.242778px;}
.ws18{word-spacing:15.362329px;}
.ws71{word-spacing:15.386342px;}
.ws46{word-spacing:15.422105px;}
.ws7b{word-spacing:15.440141px;}
.ws73{word-spacing:15.493939px;}
.ws4c{word-spacing:15.661207px;}
.ws5c{word-spacing:15.709133px;}
.ws1f{word-spacing:15.720983px;}
.ws61{word-spacing:15.816730px;}
.ws48{word-spacing:15.840534px;}
.ws6{word-spacing:15.900310px;}
.ws38{word-spacing:15.960085px;}
.ws40{word-spacing:16.079636px;}
.ws31{word-spacing:16.139412px;}
.ws33{word-spacing:16.199188px;}
.ws5{word-spacing:16.318739px;}
.ws2d{word-spacing:16.617617px;}
.ws50{word-spacing:16.796944px;}
.ws3f{word-spacing:16.856719px;}
.ws7e{word-spacing:16.883357px;}
.wsc{word-spacing:16.916495px;}
.ws19{word-spacing:17.215373px;}
.ws2f{word-spacing:17.334924px;}
.ws16{word-spacing:17.394700px;}
.ws70{word-spacing:17.484480px;}
.ws3b{word-spacing:17.574026px;}
.ws12{word-spacing:17.693578px;}
.ws1{word-spacing:17.861069px;}
.ws28{word-spacing:17.932680px;}
.ws4d{word-spacing:18.052231px;}
.ws6b{word-spacing:18.237658px;}
.wsb{word-spacing:18.291334px;}
.ws7d{word-spacing:18.291456px;}
.ws35{word-spacing:18.590212px;}
.ws6a{word-spacing:18.614246px;}
.ws34{word-spacing:18.649987px;}
.ws30{word-spacing:18.709763px;}
.ws67{word-spacing:18.721843px;}
.ws9{word-spacing:19.068416px;}
.ws76{word-spacing:19.098432px;}
.ws26{word-spacing:19.187968px;}
.ws25{word-spacing:19.197688px;}
.ws5a{word-spacing:19.206029px;}
.ws47{word-spacing:19.307519px;}
.ws4{word-spacing:19.367294px;}
.ws80{word-spacing:19.367424px;}
.ws77{word-spacing:19.421222px;}
.ws51{word-spacing:19.546621px;}
.ws3{word-spacing:19.606397px;}
.ws43{word-spacing:19.785724px;}
.ws24{word-spacing:19.845499px;}
.ws4e{word-spacing:19.905275px;}
.ws13{word-spacing:19.965050px;}
.ws55{word-spacing:20.084602px;}
.ws5f{word-spacing:20.228198px;}
.ws45{word-spacing:20.323704px;}
.ws17{word-spacing:20.383480px;}
.wsf{word-spacing:20.503031px;}
.wsd{word-spacing:20.622582px;}
.ws1e{word-spacing:20.742133px;}
.ws6e{word-spacing:20.819981px;}
.ws81{word-spacing:20.873779px;}
.ws1b{word-spacing:20.981236px;}
.ws7c{word-spacing:20.981376px;}
.ws78{word-spacing:21.088973px;}
.ws21{word-spacing:21.100787px;}
.ws22{word-spacing:21.220338px;}
.ws68{word-spacing:21.304166px;}
.ws49{word-spacing:21.339889px;}
.ws39{word-spacing:21.399665px;}
.ws0{word-spacing:21.433223px;}
.ws60{word-spacing:21.680755px;}
.wse{word-spacing:21.758318px;}
.ws4b{word-spacing:21.937645px;}
.ws1d{word-spacing:22.057196px;}
.ws14{word-spacing:22.415850px;}
.ws5e{word-spacing:22.487731px;}
.ws5d{word-spacing:22.541530px;}
.ws2b{word-spacing:22.714728px;}
.ws62{word-spacing:22.744884px;}
.ws63{word-spacing:22.756723px;}
.ws3a{word-spacing:22.774504px;}
.ws41{word-spacing:22.894055px;}
.ws3e{word-spacing:23.013606px;}
.ws36{word-spacing:23.024604px;}
.ws23{word-spacing:23.133157px;}
.ws37{word-spacing:23.141608px;}
.ws27{word-spacing:23.491811px;}
.ws42{word-spacing:23.790689px;}
.ws20{word-spacing:24.149342px;}
.ws4a{word-spacing:24.567772px;}
.ws4f{word-spacing:25.165528px;}
.ws29{word-spacing:26.181713px;}
.ws64{word-spacing:26.415014px;}
.ws54{word-spacing:27.556552px;}
.ws59{word-spacing:29.833267px;}
.ws2a{word-spacing:35.984911px;}
.ws57{word-spacing:164.730701px;}
._19{margin-left:-6.043385px;}
._b{margin-left:-4.662497px;}
._1{margin-left:-3.615242px;}
._5{margin-left:-2.570351px;}
._0{margin-left:-1.377235px;}
._11{width:2.094252px;}
._2{width:4.003332px;}
._1a{width:12.038869px;}
._1b{width:13.664794px;}
._12{width:16.321135px;}
._16{width:17.428199px;}
._6{width:18.530436px;}
._d{width:20.323704px;}
._3{width:22.236672px;}
._a{width:23.312484px;}
._15{width:24.390841px;}
._10{width:25.431250px;}
._13{width:27.197898px;}
._7{width:28.720994px;}
._e{width:30.007351px;}
._4{width:32.427082px;}
._9{width:34.251419px;}
._17{width:35.267604px;}
._8{width:36.702218px;}
._1d{width:38.375323px;}
._f{width:41.962471px;}
._c{width:43.339706px;}
._1c{width:44.611030px;}
._14{width:47.581378px;}
._18{width:49.344972px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y1{bottom:55.500000px;}
.y81{bottom:120.667680px;}
.y2a{bottom:120.667800px;}
.y52{bottom:120.668115px;}
.y80{bottom:137.106180px;}
.y29{bottom:138.600285px;}
.y51{bottom:138.600615px;}
.y7f{bottom:153.544665px;}
.y28{bottom:156.532815px;}
.y50{bottom:156.533115px;}
.y7e{bottom:169.453665px;}
.y4f{bottom:174.465615px;}
.y27{bottom:174.483315px;}
.y7d{bottom:185.892165px;}
.y4e{bottom:192.398115px;}
.y26{bottom:192.415815px;}
.y7c{bottom:202.330665px;}
.y4d{bottom:210.330615px;}
.y25{bottom:210.349815px;}
.y7b{bottom:218.767665px;}
.y4c{bottom:228.264615px;}
.y24{bottom:228.282315px;}
.y7a{bottom:234.678165px;}
.y4b{bottom:246.197115px;}
.y23{bottom:246.214815px;}
.y79{bottom:251.115165px;}
.y4a{bottom:264.129615px;}
.y22{bottom:264.147315px;}
.y78{bottom:267.025665px;}
.y49{bottom:282.062115px;}
.y21{bottom:282.079815px;}
.y77{bottom:283.462665px;}
.y48{bottom:299.994615px;}
.y20{bottom:300.012315px;}
.y47{bottom:317.928615px;}
.y1f{bottom:317.946315px;}
.y76{bottom:321.150165px;}
.yaf{bottom:333.463515px;}
.y1e{bottom:335.878815px;}
.y46{bottom:338.897115px;}
.yae{bottom:349.902015px;}
.y1d{bottom:353.811315px;}
.y45{bottom:356.829615px;}
.y75{bottom:363.319665px;}
.yad{bottom:366.340515px;}
.y1c{bottom:371.743815px;}
.y44{bottom:374.762115px;}
.y74{bottom:381.253665px;}
.yac{bottom:382.779015px;}
.y1b{bottom:389.676315px;}
.y43{bottom:392.694615px;}
.yab{bottom:398.469015px;}
.y73{bottom:399.186165px;}
.y1a{bottom:407.608815px;}
.y42{bottom:410.627115px;}
.yaa{bottom:414.907665px;}
.y72{bottom:417.118665px;}
.y19{bottom:425.542815px;}
.y41{bottom:428.561115px;}
.ya9{bottom:431.346165px;}
.y71{bottom:435.051165px;}
.y18{bottom:443.475315px;}
.y40{bottom:446.493615px;}
.ya8{bottom:447.037665px;}
.y17{bottom:461.407815px;}
.ya7{bottom:463.476165px;}
.y3f{bottom:464.426115px;}
.y70{bottom:474.232665px;}
.ya6{bottom:479.914665px;}
.y3e{bottom:482.358465px;}
.ya5{bottom:495.606165px;}
.y16{bottom:500.314665px;}
.y3d{bottom:503.327115px;}
.ya4{bottom:512.044665px;}
.y6f{bottom:516.402165px;}
.y3c{bottom:521.260965px;}
.ya3{bottom:528.481665px;}
.y6e{bottom:534.334665px;}
.y3b{bottom:539.193465px;}
.ya2{bottom:544.920165px;}
.y6d{bottom:552.268665px;}
.y3a{bottom:557.125965px;}
.y15{bottom:560.143665px;}
.ya1{bottom:561.358815px;}
.y6c{bottom:570.201165px;}
.y39{bottom:575.058465px;}
.ya0{bottom:577.050315px;}
.y14{bottom:578.076165px;}
.y6b{bottom:588.133515px;}
.y38{bottom:592.990965px;}
.y9f{bottom:593.488815px;}
.y13{bottom:596.010165px;}
.y6a{bottom:606.066015px;}
.y9e{bottom:609.927315px;}
.y37{bottom:610.923465px;}
.y12{bottom:613.942665px;}
.y69{bottom:624.108015px;}
.y9d{bottom:626.365815px;}
.y36{bottom:628.857465px;}
.y11{bottom:631.875165px;}
.y68{bottom:642.040515px;}
.y9c{bottom:642.804315px;}
.y35{bottom:646.789965px;}
.y10{bottom:649.807665px;}
.y9b{bottom:659.242815px;}
.y67{bottom:659.973015px;}
.y34{bottom:664.722315px;}
.yf{bottom:667.740165px;}
.y9a{bottom:674.932815px;}
.y66{bottom:677.907015px;}
.ye{bottom:685.674165px;}
.y33{bottom:685.690965px;}
.y99{bottom:691.371315px;}
.y65{bottom:695.839515px;}
.yd{bottom:703.606515px;}
.y32{bottom:703.623315px;}
.y98{bottom:707.809965px;}
.y64{bottom:713.772015px;}
.yc{bottom:721.539015px;}
.y31{bottom:721.557315px;}
.y97{bottom:724.248465px;}
.y63{bottom:731.704515px;}
.yb{bottom:739.471515px;}
.y30{bottom:739.489815px;}
.y96{bottom:739.939965px;}
.y62{bottom:749.637015px;}
.y95{bottom:756.378465px;}
.ya{bottom:757.404015px;}
.y2f{bottom:757.422315px;}
.y61{bottom:767.569365px;}
.y94{bottom:772.816965px;}
.y9{bottom:775.336515px;}
.y2e{bottom:775.354815px;}
.y60{bottom:785.503365px;}
.y93{bottom:789.255465px;}
.y8{bottom:793.270515px;}
.y2d{bottom:793.287315px;}
.y5f{bottom:803.436015px;}
.y92{bottom:805.692465px;}
.y2c{bottom:811.219815px;}
.y5e{bottom:821.368515px;}
.y91{bottom:821.383965px;}
.y7{bottom:829.153515px;}
.y2b{bottom:829.153815px;}
.y90{bottom:837.822465px;}
.y5d{bottom:839.301165px;}
.y8f{bottom:854.260965px;}
.y5c{bottom:857.233515px;}
.y8e{bottom:869.952465px;}
.y5b{bottom:875.275515px;}
.y8d{bottom:886.390815px;}
.y6{bottom:892.216515px;}
.y5a{bottom:893.208015px;}
.y8c{bottom:902.082315px;}
.y59{bottom:911.140665px;}
.y5{bottom:913.138515px;}
.y8b{bottom:918.519315px;}
.y58{bottom:929.074515px;}
.y4{bottom:934.060515px;}
.y8a{bottom:934.210815px;}
.y57{bottom:947.007165px;}
.y89{bottom:950.649315px;}
.y3{bottom:954.981015px;}
.y56{bottom:964.939665px;}
.y88{bottom:966.340815px;}
.y87{bottom:982.779315px;}
.y55{bottom:982.872165px;}
.y86{bottom:999.217815px;}
.y2{bottom:1011.768015px;}
.y85{bottom:1015.656315px;}
.y54{bottom:1022.053665px;}
.y84{bottom:1032.094815px;}
.y83{bottom:1047.784815px;}
.y53{bottom:1064.223015px;}
.y82{bottom:1064.223315px;}
.he{height:36.744307px;}
.hc{height:37.013299px;}
.hd{height:37.283299px;}
.h9{height:40.826735px;}
.ha{height:41.125613px;}
.hb{height:44.831700px;}
.h5{height:49.351066px;}
.h8{height:49.566259px;}
.h6{height:49.705066px;}
.h4{height:49.711066px;}
.h7{height:53.798400px;}
.h3{height:59.479345px;}
.h2{height:1186.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:892.500000px;}
.w0{width:892.935000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:62.635408px;}
.xd{left:71.849984px;}
.x9{left:80.567909px;}
.xe{left:95.003999px;}
.x2{left:179.465983px;}
.x1{left:197.347484px;}
.x8{left:206.459833px;}
.xf{left:246.037484px;}
.x7{left:258.557984px;}
.x4{left:285.170983px;}
.x6{left:359.752483px;}
.x3{left:432.620984px;}
.xb{left:450.760334px;}
.x12{left:453.250333px;}
.x11{left:459.974984px;}
.xc{left:468.692833px;}
.x10{left:483.128983px;}
.x5{left:540.763484px;}
.x13{left:672.901483px;}
.x14{left:765.917983px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.002133pt;}
.ls4{letter-spacing:14.242393pt;}
.ls2{letter-spacing:14.424259pt;}
.ls1{letter-spacing:15.938133pt;}
.ls5{letter-spacing:20.285059pt;}
.ls3{letter-spacing:20.621593pt;}
.ws2{word-spacing:-0.063761pt;}
.ws32{word-spacing:-0.053134pt;}
.ws58{word-spacing:-0.047821pt;}
.ws44{word-spacing:0.000000pt;}
.ws65{word-spacing:9.707622pt;}
.ws83{word-spacing:10.424934pt;}
.ws82{word-spacing:10.616218pt;}
.ws15{word-spacing:10.626773pt;}
.ws2e{word-spacing:10.679907pt;}
.ws84{word-spacing:10.759680pt;}
.ws7f{word-spacing:10.903142pt;}
.ws56{word-spacing:11.104978pt;}
.ws66{word-spacing:11.142246pt;}
.ws11{word-spacing:11.158112pt;}
.ws79{word-spacing:11.467529pt;}
.ws7a{word-spacing:11.476992pt;}
.ws75{word-spacing:11.572634pt;}
.ws69{word-spacing:11.620454pt;}
.ws6f{word-spacing:11.716096pt;}
.ws52{word-spacing:11.848852pt;}
.ws8{word-spacing:11.901986pt;}
.ws5b{word-spacing:11.907379pt;}
.ws7{word-spacing:12.008254pt;}
.ws1a{word-spacing:12.220789pt;}
.wsa{word-spacing:12.327057pt;}
.ws2c{word-spacing:12.380191pt;}
.ws6d{word-spacing:12.385587pt;}
.ws1c{word-spacing:12.698994pt;}
.ws72{word-spacing:12.815974pt;}
.ws74{word-spacing:12.863795pt;}
.ws53{word-spacing:12.911530pt;}
.ws10{word-spacing:13.230333pt;}
.ws6c{word-spacing:13.294182pt;}
.ws3d{word-spacing:13.389734pt;}
.ws3c{word-spacing:13.549136pt;}
.ws18{word-spacing:13.655404pt;}
.ws71{word-spacing:13.676749pt;}
.ws46{word-spacing:13.708538pt;}
.ws7b{word-spacing:13.724570pt;}
.ws73{word-spacing:13.772390pt;}
.ws4c{word-spacing:13.921073pt;}
.ws5c{word-spacing:13.963674pt;}
.ws1f{word-spacing:13.974207pt;}
.ws61{word-spacing:14.059315pt;}
.ws48{word-spacing:14.080475pt;}
.ws6{word-spacing:14.133609pt;}
.ws38{word-spacing:14.186742pt;}
.ws40{word-spacing:14.293010pt;}
.ws31{word-spacing:14.346144pt;}
.ws33{word-spacing:14.399278pt;}
.ws5{word-spacing:14.505546pt;}
.ws2d{word-spacing:14.771215pt;}
.ws50{word-spacing:14.930617pt;}
.ws3f{word-spacing:14.983750pt;}
.ws7e{word-spacing:15.007428pt;}
.wsc{word-spacing:15.036884pt;}
.ws19{word-spacing:15.302554pt;}
.ws2f{word-spacing:15.408821pt;}
.ws16{word-spacing:15.461955pt;}
.ws70{word-spacing:15.541760pt;}
.ws3b{word-spacing:15.621357pt;}
.ws12{word-spacing:15.727625pt;}
.ws1{word-spacing:15.876506pt;}
.ws28{word-spacing:15.940160pt;}
.ws4d{word-spacing:16.046428pt;}
.ws6b{word-spacing:16.211251pt;}
.wsb{word-spacing:16.258963pt;}
.ws7d{word-spacing:16.259072pt;}
.ws35{word-spacing:16.524633pt;}
.ws6a{word-spacing:16.545997pt;}
.ws34{word-spacing:16.577766pt;}
.ws30{word-spacing:16.630900pt;}
.ws67{word-spacing:16.641638pt;}
.ws9{word-spacing:16.949703pt;}
.ws76{word-spacing:16.976384pt;}
.ws26{word-spacing:17.055971pt;}
.ws25{word-spacing:17.064611pt;}
.ws5a{word-spacing:17.072026pt;}
.ws47{word-spacing:17.162239pt;}
.ws4{word-spacing:17.215373pt;}
.ws80{word-spacing:17.215488pt;}
.ws77{word-spacing:17.263309pt;}
.ws51{word-spacing:17.374774pt;}
.ws3{word-spacing:17.427908pt;}
.ws43{word-spacing:17.587310pt;}
.ws24{word-spacing:17.640444pt;}
.ws4e{word-spacing:17.693578pt;}
.ws13{word-spacing:17.746711pt;}
.ws55{word-spacing:17.852979pt;}
.ws5f{word-spacing:17.980621pt;}
.ws45{word-spacing:18.065515pt;}
.ws17{word-spacing:18.118649pt;}
.wsf{word-spacing:18.224916pt;}
.wsd{word-spacing:18.331184pt;}
.ws1e{word-spacing:18.437452pt;}
.ws6e{word-spacing:18.506650pt;}
.ws81{word-spacing:18.554470pt;}
.ws1b{word-spacing:18.649987pt;}
.ws7c{word-spacing:18.650112pt;}
.ws78{word-spacing:18.745754pt;}
.ws21{word-spacing:18.756255pt;}
.ws22{word-spacing:18.862523pt;}
.ws68{word-spacing:18.937037pt;}
.ws49{word-spacing:18.968790pt;}
.ws39{word-spacing:19.021924pt;}
.ws0{word-spacing:19.051754pt;}
.ws60{word-spacing:19.271782pt;}
.wse{word-spacing:19.340727pt;}
.ws4b{word-spacing:19.500129pt;}
.ws1d{word-spacing:19.606397pt;}
.ws14{word-spacing:19.925200pt;}
.ws5e{word-spacing:19.989094pt;}
.ws5d{word-spacing:20.036915pt;}
.ws2b{word-spacing:20.190869pt;}
.ws62{word-spacing:20.217675pt;}
.ws63{word-spacing:20.228198pt;}
.ws3a{word-spacing:20.244003pt;}
.ws41{word-spacing:20.350271pt;}
.ws3e{word-spacing:20.456539pt;}
.ws36{word-spacing:20.466315pt;}
.ws23{word-spacing:20.562806pt;}
.ws37{word-spacing:20.570318pt;}
.ws27{word-spacing:20.881610pt;}
.ws42{word-spacing:21.147279pt;}
.ws20{word-spacing:21.466082pt;}
.ws4a{word-spacing:21.838019pt;}
.ws4f{word-spacing:22.369358pt;}
.ws29{word-spacing:23.272634pt;}
.ws64{word-spacing:23.480013pt;}
.ws54{word-spacing:24.494713pt;}
.ws59{word-spacing:26.518460pt;}
.ws2a{word-spacing:31.986588pt;}
.ws57{word-spacing:146.427290pt;}
._19{margin-left:-5.371898pt;}
._b{margin-left:-4.144442pt;}
._1{margin-left:-3.213549pt;}
._5{margin-left:-2.284756pt;}
._0{margin-left:-1.224209pt;}
._11{width:1.861557pt;}
._2{width:3.558517pt;}
._1a{width:10.701217pt;}
._1b{width:12.146483pt;}
._12{width:14.507676pt;}
._16{width:15.491732pt;}
._6{width:16.471499pt;}
._d{width:18.065515pt;}
._3{width:19.765931pt;}
._a{width:20.722208pt;}
._15{width:21.680748pt;}
._10{width:22.605555pt;}
._13{width:24.175909pt;}
._7{width:25.529773pt;}
._e{width:26.673201pt;}
._4{width:28.824073pt;}
._9{width:30.445706pt;}
._17{width:31.348981pt;}
._8{width:32.624194pt;}
._1d{width:34.111398pt;}
._f{width:37.299974pt;}
._c{width:38.524183pt;}
._1c{width:39.654249pt;}
._14{width:42.294558pt;}
._18{width:43.862197pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:49.333333pt;}
.y81{bottom:107.260160pt;}
.y2a{bottom:107.260267pt;}
.y52{bottom:107.260547pt;}
.y80{bottom:121.872160pt;}
.y29{bottom:123.200253pt;}
.y51{bottom:123.200547pt;}
.y7f{bottom:136.484147pt;}
.y28{bottom:139.140280pt;}
.y50{bottom:139.140547pt;}
.y7e{bottom:150.625480pt;}
.y4f{bottom:155.080547pt;}
.y27{bottom:155.096280pt;}
.y7d{bottom:165.237480pt;}
.y4e{bottom:171.020547pt;}
.y26{bottom:171.036280pt;}
.y7c{bottom:179.849480pt;}
.y4d{bottom:186.960547pt;}
.y25{bottom:186.977613pt;}
.y7b{bottom:194.460147pt;}
.y4c{bottom:202.901880pt;}
.y24{bottom:202.917613pt;}
.y7a{bottom:208.602813pt;}
.y4b{bottom:218.841880pt;}
.y23{bottom:218.857613pt;}
.y79{bottom:223.213480pt;}
.y4a{bottom:234.781880pt;}
.y22{bottom:234.797613pt;}
.y78{bottom:237.356147pt;}
.y49{bottom:250.721880pt;}
.y21{bottom:250.737613pt;}
.y77{bottom:251.966813pt;}
.y48{bottom:266.661880pt;}
.y20{bottom:266.677613pt;}
.y47{bottom:282.603213pt;}
.y1f{bottom:282.618947pt;}
.y76{bottom:285.466813pt;}
.yaf{bottom:296.412013pt;}
.y1e{bottom:298.558947pt;}
.y46{bottom:301.241880pt;}
.yae{bottom:311.024013pt;}
.y1d{bottom:314.498947pt;}
.y45{bottom:317.181880pt;}
.y75{bottom:322.950813pt;}
.yad{bottom:325.636013pt;}
.y1c{bottom:330.438947pt;}
.y44{bottom:333.121880pt;}
.y74{bottom:338.892147pt;}
.yac{bottom:340.248013pt;}
.y1b{bottom:346.378947pt;}
.y43{bottom:349.061880pt;}
.yab{bottom:354.194680pt;}
.y73{bottom:354.832147pt;}
.y1a{bottom:362.318947pt;}
.y42{bottom:365.001880pt;}
.yaa{bottom:368.806813pt;}
.y72{bottom:370.772147pt;}
.y19{bottom:378.260280pt;}
.y41{bottom:380.943213pt;}
.ya9{bottom:383.418813pt;}
.y71{bottom:386.712147pt;}
.y18{bottom:394.200280pt;}
.y40{bottom:396.883213pt;}
.ya8{bottom:397.366813pt;}
.y17{bottom:410.140280pt;}
.ya7{bottom:411.978813pt;}
.y3f{bottom:412.823213pt;}
.y70{bottom:421.540147pt;}
.ya6{bottom:426.590813pt;}
.y3e{bottom:428.763080pt;}
.ya5{bottom:440.538813pt;}
.y16{bottom:444.724147pt;}
.y3d{bottom:447.401880pt;}
.ya4{bottom:455.150813pt;}
.y6f{bottom:459.024147pt;}
.y3c{bottom:463.343080pt;}
.ya3{bottom:469.761480pt;}
.y6e{bottom:474.964147pt;}
.y3b{bottom:479.283080pt;}
.ya2{bottom:484.373480pt;}
.y6d{bottom:490.905480pt;}
.y3a{bottom:495.223080pt;}
.y15{bottom:497.905480pt;}
.ya1{bottom:498.985613pt;}
.y6c{bottom:506.845480pt;}
.y39{bottom:511.163080pt;}
.ya0{bottom:512.933613pt;}
.y14{bottom:513.845480pt;}
.y6b{bottom:522.785347pt;}
.y38{bottom:527.103080pt;}
.y9f{bottom:527.545613pt;}
.y13{bottom:529.786813pt;}
.y6a{bottom:538.725347pt;}
.y9e{bottom:542.157613pt;}
.y37{bottom:543.043080pt;}
.y12{bottom:545.726813pt;}
.y69{bottom:554.762680pt;}
.y9d{bottom:556.769613pt;}
.y36{bottom:558.984413pt;}
.y11{bottom:561.666813pt;}
.y68{bottom:570.702680pt;}
.y9c{bottom:571.381613pt;}
.y35{bottom:574.924413pt;}
.y10{bottom:577.606813pt;}
.y9b{bottom:585.993613pt;}
.y67{bottom:586.642680pt;}
.y34{bottom:590.864280pt;}
.yf{bottom:593.546813pt;}
.y9a{bottom:599.940280pt;}
.y66{bottom:602.584013pt;}
.ye{bottom:609.488147pt;}
.y33{bottom:609.503080pt;}
.y99{bottom:614.552280pt;}
.y65{bottom:618.524013pt;}
.yd{bottom:625.428013pt;}
.y32{bottom:625.442947pt;}
.y98{bottom:629.164413pt;}
.y64{bottom:634.464013pt;}
.yc{bottom:641.368013pt;}
.y31{bottom:641.384280pt;}
.y97{bottom:643.776413pt;}
.y63{bottom:650.404013pt;}
.yb{bottom:657.308013pt;}
.y30{bottom:657.324280pt;}
.y96{bottom:657.724413pt;}
.y62{bottom:666.344013pt;}
.y95{bottom:672.336413pt;}
.ya{bottom:673.248013pt;}
.y2f{bottom:673.264280pt;}
.y61{bottom:682.283880pt;}
.y94{bottom:686.948413pt;}
.y9{bottom:689.188013pt;}
.y2e{bottom:689.204280pt;}
.y60{bottom:698.225213pt;}
.y93{bottom:701.560413pt;}
.y8{bottom:705.129347pt;}
.y2d{bottom:705.144280pt;}
.y5f{bottom:714.165347pt;}
.y92{bottom:716.171080pt;}
.y2c{bottom:721.084280pt;}
.y5e{bottom:730.105347pt;}
.y91{bottom:730.119080pt;}
.y7{bottom:737.025347pt;}
.y2b{bottom:737.025613pt;}
.y90{bottom:744.731080pt;}
.y5d{bottom:746.045480pt;}
.y8f{bottom:759.343080pt;}
.y5c{bottom:761.985347pt;}
.y8e{bottom:773.291080pt;}
.y5b{bottom:778.022680pt;}
.y8d{bottom:787.902947pt;}
.y6{bottom:793.081347pt;}
.y5a{bottom:793.962680pt;}
.y8c{bottom:801.850947pt;}
.y59{bottom:809.902813pt;}
.y5{bottom:811.678680pt;}
.y8b{bottom:816.461613pt;}
.y58{bottom:825.844013pt;}
.y4{bottom:830.276013pt;}
.y8a{bottom:830.409613pt;}
.y57{bottom:841.784147pt;}
.y89{bottom:845.021613pt;}
.y3{bottom:848.872013pt;}
.y56{bottom:857.724147pt;}
.y88{bottom:858.969613pt;}
.y87{bottom:873.581613pt;}
.y55{bottom:873.664147pt;}
.y86{bottom:888.193613pt;}
.y2{bottom:899.349347pt;}
.y85{bottom:902.805613pt;}
.y54{bottom:908.492147pt;}
.y84{bottom:917.417613pt;}
.y83{bottom:931.364280pt;}
.y53{bottom:945.976013pt;}
.y82{bottom:945.976280pt;}
.he{height:32.661606pt;}
.hc{height:32.900710pt;}
.hd{height:33.140710pt;}
.h9{height:36.290431pt;}
.ha{height:36.556100pt;}
.hb{height:39.850400pt;}
.h5{height:43.867614pt;}
.h8{height:44.058897pt;}
.h6{height:44.182281pt;}
.h4{height:44.187614pt;}
.h7{height:47.820800pt;}
.h3{height:52.870529pt;}
.h2{height:1054.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.333333pt;}
.w0{width:793.720000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:55.675919pt;}
.xd{left:63.866652pt;}
.x9{left:71.615919pt;}
.xe{left:84.447999pt;}
.x2{left:159.525319pt;}
.x1{left:175.419985pt;}
.x8{left:183.519852pt;}
.xf{left:218.699985pt;}
.x7{left:229.829319pt;}
.x4{left:253.485319pt;}
.x6{left:319.779985pt;}
.x3{left:384.551985pt;}
.xb{left:400.675852pt;}
.x12{left:402.889185pt;}
.x11{left:408.866652pt;}
.xc{left:416.615852pt;}
.x10{left:429.447985pt;}
.x5{left:480.678652pt;}
.x13{left:598.134652pt;}
.x14{left:680.815985pt;}
}

