
    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_c1d79da9b1c0d88dfd3092bf.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_7920277d02e724ad7b180b31.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_064b29b823b5629b8d908b28.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_9fe9490ec92eb0da91007db6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ec1f051219331513cb4a18ac.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_9fbeaf4e0e40dc05f40daa5a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.575000;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_6303125266f0b647bef04e6b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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:-37.160055px;}
.v3{vertical-align:-30.966713px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:6.193343px;}
.v5{vertical-align:61.933425px;}
.v2{vertical-align:74.320110px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:90.670535px;}
.ls2{letter-spacing:2690.721063px;}
.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:0.000000px;}
.ws3{word-spacing:338.404236px;}
.ws2{word-spacing:2258.340418px;}
.ws1{word-spacing:2424.785122px;}
._0{width:21.984000px;}
._1{width:90.670535px;}
._2{width:112.780767px;}
._8{width:196.886359px;}
._6{width:516.029299px;}
._5{width:682.939880px;}
._7{width:1126.569005px;}
._a{width:1253.780261px;}
._9{width:1498.231490px;}
._4{width:1888.412069px;}
._c{width:2019.029663px;}
._3{width:2383.879471px;}
._b{width:2415.031984px;}
.fc4{color:transparent;}
.fc3{color:rgb(180,42,42);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(132,132,132);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.000000px;}
.fs6{font-size:48.661654px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:61.933425px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y54{bottom:16.277187px;}
.ydd{bottom:22.692640px;}
.y8d{bottom:23.250159px;}
.y115{bottom:23.380286px;}
.yc4{bottom:23.575334px;}
.y53{bottom:34.857215px;}
.ydc{bottom:41.272668px;}
.y8c{bottom:41.830187px;}
.y114{bottom:41.960313px;}
.yc3{bottom:42.155362px;}
.y52{bottom:53.437242px;}
.ydb{bottom:59.852695px;}
.y8b{bottom:60.410215px;}
.y113{bottom:60.540341px;}
.yc2{bottom:60.735390px;}
.y51{bottom:72.017270px;}
.yda{bottom:78.432723px;}
.y8a{bottom:78.990242px;}
.y112{bottom:79.120369px;}
.yc1{bottom:79.315417px;}
.y1e{bottom:79.500000px;}
.y50{bottom:90.597297px;}
.yd9{bottom:97.012751px;}
.y89{bottom:97.570270px;}
.y111{bottom:97.700396px;}
.yc0{bottom:97.895445px;}
.y1d{bottom:99.000000px;}
.y4f{bottom:109.177325px;}
.yd8{bottom:115.592778px;}
.y88{bottom:116.150297px;}
.y110{bottom:116.280424px;}
.ybf{bottom:116.475472px;}
.y4e{bottom:127.757353px;}
.yd7{bottom:134.172806px;}
.y87{bottom:134.730325px;}
.y10f{bottom:134.860451px;}
.ybe{bottom:135.055500px;}
.y17{bottom:141.450000px;}
.y4d{bottom:146.337380px;}
.yd6{bottom:152.752833px;}
.y86{bottom:153.310352px;}
.y10e{bottom:153.440479px;}
.ybd{bottom:153.635527px;}
.y4c{bottom:164.917408px;}
.yd5{bottom:171.332861px;}
.y85{bottom:171.890380px;}
.y10d{bottom:172.020506px;}
.ybc{bottom:172.215555px;}
.y4b{bottom:183.497435px;}
.yd4{bottom:189.912888px;}
.y84{bottom:190.470408px;}
.y10c{bottom:190.600534px;}
.ybb{bottom:190.795583px;}
.y4a{bottom:202.077463px;}
.yd3{bottom:203.213091px;}
.y83{bottom:209.050435px;}
.y10b{bottom:209.180562px;}
.yba{bottom:209.375610px;}
.y49{bottom:220.657490px;}
.y82{bottom:227.630463px;}
.y10a{bottom:227.760589px;}
.yb9{bottom:227.955638px;}
.y48{bottom:239.237518px;}
.y81{bottom:246.210490px;}
.y109{bottom:246.340617px;}
.yb8{bottom:246.535665px;}
.y47{bottom:257.817546px;}
.y80{bottom:264.790518px;}
.y108{bottom:264.920644px;}
.yb7{bottom:265.115693px;}
.y68{bottom:274.080532px;}
.y116{bottom:274.405707px;}
.y46{bottom:276.397573px;}
.y7f{bottom:283.370545px;}
.y107{bottom:283.500672px;}
.yb6{bottom:283.695720px;}
.y45{bottom:294.977601px;}
.y7e{bottom:301.950573px;}
.y106{bottom:302.080699px;}
.yb5{bottom:302.275748px;}
.y44{bottom:313.557628px;}
.y7d{bottom:320.530601px;}
.y105{bottom:320.660727px;}
.yb4{bottom:320.855776px;}
.y43{bottom:332.137656px;}
.y7c{bottom:339.110628px;}
.y104{bottom:339.240755px;}
.yb3{bottom:339.435803px;}
.y42{bottom:350.717683px;}
.y7b{bottom:357.690656px;}
.ydf{bottom:357.820782px;}
.yb2{bottom:358.015831px;}
.y41{bottom:369.297711px;}
.y7a{bottom:376.270683px;}
.y103{bottom:376.400810px;}
.yb1{bottom:376.595858px;}
.y122{bottom:377.927427px;}
.y40{bottom:387.877739px;}
.y79{bottom:394.850711px;}
.y102{bottom:394.980837px;}
.yb0{bottom:395.175886px;}
.y121{bottom:396.507454px;}
.y2c{bottom:406.457766px;}
.y78{bottom:413.430738px;}
.y101{bottom:413.560865px;}
.yaf{bottom:413.755913px;}
.y120{bottom:415.087482px;}
.y1c{bottom:424.365000px;}
.y3f{bottom:425.037794px;}
.y11f{bottom:430.570838px;}
.y77{bottom:432.010766px;}
.y100{bottom:432.140892px;}
.yae{bottom:432.335941px;}
.y3e{bottom:443.617821px;}
.y1b{bottom:444.615000px;}
.y11e{bottom:449.150866px;}
.y76{bottom:450.590794px;}
.yff{bottom:450.720920px;}
.yad{bottom:450.915969px;}
.y3d{bottom:462.197849px;}
.y1a{bottom:464.865000px;}
.y11d{bottom:467.730894px;}
.y75{bottom:469.170821px;}
.yfe{bottom:469.300948px;}
.yac{bottom:469.495996px;}
.y3c{bottom:480.777876px;}
.y19{bottom:485.115000px;}
.y11c{bottom:486.310921px;}
.y74{bottom:487.750849px;}
.yfd{bottom:487.880975px;}
.yab{bottom:488.076024px;}
.y3b{bottom:499.357904px;}
.y18{bottom:505.365000px;}
.y73{bottom:506.330876px;}
.yfc{bottom:506.461003px;}
.yaa{bottom:506.656051px;}
.y3a{bottom:517.937932px;}
.yd2{bottom:524.793952px;}
.y72{bottom:524.910904px;}
.yfb{bottom:525.041030px;}
.ya9{bottom:525.236079px;}
.y119{bottom:525.901863px;}
.yf{bottom:528.615000px;}
.y39{bottom:536.517959px;}
.yd1{bottom:543.373979px;}
.y71{bottom:543.490931px;}
.yfa{bottom:543.621058px;}
.ya8{bottom:543.816106px;}
.y11b{bottom:544.481891px;}
.y38{bottom:555.097987px;}
.ye{bottom:555.615000px;}
.yd0{bottom:561.954007px;}
.y70{bottom:562.070959px;}
.yf9{bottom:562.201085px;}
.ya7{bottom:562.396134px;}
.y37{bottom:573.678014px;}
.ycf{bottom:580.534034px;}
.y6f{bottom:580.650987px;}
.yf8{bottom:580.781113px;}
.ya6{bottom:580.976162px;}
.yd{bottom:582.615000px;}
.y11a{bottom:584.072833px;}
.y36{bottom:592.258042px;}
.yce{bottom:599.114062px;}
.y6e{bottom:599.231014px;}
.yf7{bottom:599.361141px;}
.ya5{bottom:599.556189px;}
.y118{bottom:602.652860px;}
.y35{bottom:610.838069px;}
.ycd{bottom:612.414265px;}
.y6d{bottom:617.811042px;}
.yf6{bottom:617.941168px;}
.ya4{bottom:618.136217px;}
.y117{bottom:621.232888px;}
.y34{bottom:629.418097px;}
.y16{bottom:630.015000px;}
.y6c{bottom:636.391069px;}
.yf5{bottom:636.521196px;}
.ya3{bottom:636.716244px;}
.y33{bottom:647.998125px;}
.y15{bottom:654.765000px;}
.y6b{bottom:654.971097px;}
.yf4{bottom:655.101223px;}
.ya2{bottom:655.296272px;}
.y32{bottom:666.578152px;}
.y6a{bottom:673.551124px;}
.yf3{bottom:673.681251px;}
.ya1{bottom:673.876299px;}
.y14{bottom:679.515000px;}
.y31{bottom:685.158180px;}
.y69{bottom:692.131152px;}
.yf2{bottom:692.261278px;}
.ya0{bottom:692.456327px;}
.y30{bottom:703.738207px;}
.y13{bottom:704.265000px;}
.y67{bottom:710.711180px;}
.yf1{bottom:710.841306px;}
.y9f{bottom:711.036355px;}
.y2f{bottom:722.318235px;}
.y12{bottom:729.015000px;}
.y66{bottom:729.291207px;}
.yf0{bottom:729.421334px;}
.y9e{bottom:729.616382px;}
.y2e{bottom:740.898262px;}
.y65{bottom:747.871235px;}
.yef{bottom:748.001361px;}
.y9d{bottom:748.196410px;}
.y2d{bottom:759.478290px;}
.y64{bottom:766.451262px;}
.yee{bottom:766.581389px;}
.y9c{bottom:766.776437px;}
.y2b{bottom:778.058318px;}
.yc{bottom:782.250000px;}
.y62{bottom:785.031290px;}
.yed{bottom:785.161416px;}
.y9b{bottom:785.356465px;}
.y2a{bottom:796.638317px;}
.y63{bottom:803.611317px;}
.yec{bottom:803.741444px;}
.y9a{bottom:803.936492px;}
.yb{bottom:809.250000px;}
.y29{bottom:815.218175px;}
.y61{bottom:822.191345px;}
.yeb{bottom:822.321471px;}
.y99{bottom:822.516520px;}
.y28{bottom:833.803887px;}
.ya{bottom:836.250000px;}
.y60{bottom:840.771373px;}
.yea{bottom:840.901499px;}
.y98{bottom:841.096548px;}
.y27{bottom:852.383914px;}
.y5f{bottom:859.351400px;}
.ye9{bottom:859.481527px;}
.y97{bottom:859.676575px;}
.y9{bottom:863.250000px;}
.y26{bottom:870.963942px;}
.y5e{bottom:877.931428px;}
.ye8{bottom:878.061554px;}
.y96{bottom:878.256603px;}
.y8{bottom:890.250000px;}
.y5d{bottom:896.511455px;}
.ye7{bottom:896.641582px;}
.y95{bottom:896.836630px;}
.y25{bottom:910.554884px;}
.y5c{bottom:915.091483px;}
.ye6{bottom:915.221609px;}
.y94{bottom:915.416658px;}
.y7{bottom:917.250000px;}
.y24{bottom:929.134912px;}
.y5b{bottom:933.671510px;}
.ye5{bottom:933.801637px;}
.y93{bottom:933.996685px;}
.ycc{bottom:933.999224px;}
.y6{bottom:944.250000px;}
.y23{bottom:947.714939px;}
.y20{bottom:948.922641px;}
.y5a{bottom:952.251538px;}
.ye4{bottom:952.381664px;}
.y92{bottom:952.576713px;}
.ycb{bottom:952.579251px;}
.y22{bottom:966.294967px;}
.yc5{bottom:970.168344px;}
.y56{bottom:970.831566px;}
.ye3{bottom:970.961692px;}
.y91{bottom:971.156741px;}
.yca{bottom:971.159279px;}
.y5{bottom:971.250000px;}
.y59{bottom:989.411593px;}
.ye2{bottom:989.541720px;}
.y90{bottom:989.736768px;}
.yc9{bottom:989.739306px;}
.y4{bottom:998.250000px;}
.y21{bottom:1005.885909px;}
.y58{bottom:1007.991621px;}
.ye1{bottom:1008.121747px;}
.y8f{bottom:1008.316796px;}
.yc8{bottom:1008.319334px;}
.y57{bottom:1026.571648px;}
.ye0{bottom:1026.701775px;}
.y8e{bottom:1026.896823px;}
.yc7{bottom:1026.899361px;}
.y11{bottom:1028.250000px;}
.y55{bottom:1045.151676px;}
.yde{bottom:1045.281802px;}
.y1f{bottom:1045.476851px;}
.yc6{bottom:1045.479389px;}
.y10{bottom:1048.500000px;}
.y3{bottom:1069.500000px;}
.y2{bottom:1096.500000px;}
.y1{bottom:1123.500000px;}
.h3{height:50.062500px;}
.h2{height:56.320312px;}
.h7{height:60.784270px;}
.ha{height:60.784383px;}
.h9{height:60.784947px;}
.h8{height:62.417280px;}
.hc{height:66.977612px;}
.h4{height:68.835938px;}
.h1{height:75.093750px;}
.h5{height:87.609375px;}
.hd{height:122.717695px;}
.hb{height:135.104380px;}
.h6{height:1087.530000px;}
.h0{height:1188.000000px;}
.w1{width:811.620000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:11.059480px;}
.x1{left:54.000000px;}
.x10{left:64.136425px;}
.x11{left:90.674898px;}
.x1b{left:92.379396px;}
.x1a{left:93.679998px;}
.x1c{left:99.486257px;}
.x19{left:103.775146px;}
.xe{left:106.380000px;}
.x6{left:158.220000px;}
.xa{left:175.500000px;}
.xd{left:202.020000px;}
.x12{left:219.233205px;}
.x14{left:229.994138px;}
.x2{left:271.605000px;}
.x1d{left:321.796286px;}
.x16{left:340.328535px;}
.x5{left:355.530000px;}
.x7{left:361.785000px;}
.x13{left:372.332633px;}
.xc{left:377.220000px;}
.x15{left:380.941379px;}
.x3{left:383.295000px;}
.x8{left:393.900000px;}
.x9{left:431.025000px;}
.xb{left:451.590000px;}
.x4{left:588.300000px;}
.x1e{left:631.496843px;}
.x18{left:699.512764px;}
.x17{left:767.529819px;}
@media print{
.v1{vertical-align:-33.031160pt;}
.v3{vertical-align:-27.525967pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.505193pt;}
.v5{vertical-align:55.051934pt;}
.v2{vertical-align:66.062320pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:80.596031pt;}
.ls2{letter-spacing:2391.752056pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:300.803765pt;}
.ws2{word-spacing:2007.413705pt;}
.ws1{word-spacing:2155.364553pt;}
._0{width:19.541333pt;}
._1{width:80.596031pt;}
._2{width:100.249571pt;}
._8{width:175.010097pt;}
._6{width:458.692710pt;}
._5{width:607.057671pt;}
._7{width:1001.394671pt;}
._a{width:1114.471343pt;}
._9{width:1331.761324pt;}
._4{width:1678.588506pt;}
._c{width:1794.693034pt;}
._3{width:2119.003974pt;}
._b{width:2146.695097pt;}
.fs2{font-size:42.666667pt;}
.fs6{font-size:43.254804pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:55.051934pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:14.468611pt;}
.ydd{bottom:20.171236pt;}
.y8d{bottom:20.666808pt;}
.y115{bottom:20.782476pt;}
.yc4{bottom:20.955853pt;}
.y53{bottom:30.984191pt;}
.ydc{bottom:36.686816pt;}
.y8c{bottom:37.182388pt;}
.y114{bottom:37.298056pt;}
.yc3{bottom:37.471433pt;}
.y52{bottom:47.499771pt;}
.ydb{bottom:53.202396pt;}
.y8b{bottom:53.697968pt;}
.y113{bottom:53.813636pt;}
.yc2{bottom:53.987013pt;}
.y51{bottom:64.015351pt;}
.yda{bottom:69.717976pt;}
.y8a{bottom:70.213549pt;}
.y112{bottom:70.329216pt;}
.yc1{bottom:70.502593pt;}
.y1e{bottom:70.666667pt;}
.y50{bottom:80.530931pt;}
.yd9{bottom:86.233556pt;}
.y89{bottom:86.729129pt;}
.y111{bottom:86.844797pt;}
.yc0{bottom:87.018173pt;}
.y1d{bottom:88.000000pt;}
.y4f{bottom:97.046511pt;}
.yd8{bottom:102.749136pt;}
.y88{bottom:103.244709pt;}
.y110{bottom:103.360377pt;}
.ybf{bottom:103.533753pt;}
.y4e{bottom:113.562091pt;}
.yd7{bottom:119.264716pt;}
.y87{bottom:119.760289pt;}
.y10f{bottom:119.875957pt;}
.ybe{bottom:120.049333pt;}
.y17{bottom:125.733333pt;}
.y4d{bottom:130.077671pt;}
.yd6{bottom:135.780296pt;}
.y86{bottom:136.275869pt;}
.y10e{bottom:136.391537pt;}
.ybd{bottom:136.564913pt;}
.y4c{bottom:146.593251pt;}
.yd5{bottom:152.295876pt;}
.y85{bottom:152.791449pt;}
.y10d{bottom:152.907117pt;}
.ybc{bottom:153.080493pt;}
.y4b{bottom:163.108831pt;}
.yd4{bottom:168.811456pt;}
.y84{bottom:169.307029pt;}
.y10c{bottom:169.422697pt;}
.ybb{bottom:169.596073pt;}
.y4a{bottom:179.624411pt;}
.yd3{bottom:180.633859pt;}
.y83{bottom:185.822609pt;}
.y10b{bottom:185.938277pt;}
.yba{bottom:186.111653pt;}
.y49{bottom:196.139991pt;}
.y82{bottom:202.338189pt;}
.y10a{bottom:202.453857pt;}
.yb9{bottom:202.627234pt;}
.y48{bottom:212.655572pt;}
.y81{bottom:218.853769pt;}
.y109{bottom:218.969437pt;}
.yb8{bottom:219.142814pt;}
.y47{bottom:229.171152pt;}
.y80{bottom:235.369349pt;}
.y108{bottom:235.485017pt;}
.yb7{bottom:235.658394pt;}
.y68{bottom:243.627139pt;}
.y116{bottom:243.916184pt;}
.y46{bottom:245.686732pt;}
.y7f{bottom:251.884929pt;}
.y107{bottom:252.000597pt;}
.yb6{bottom:252.173974pt;}
.y45{bottom:262.202312pt;}
.y7e{bottom:268.400509pt;}
.y106{bottom:268.516177pt;}
.yb5{bottom:268.689554pt;}
.y44{bottom:278.717892pt;}
.y7d{bottom:284.916089pt;}
.y105{bottom:285.031757pt;}
.yb4{bottom:285.205134pt;}
.y43{bottom:295.233472pt;}
.y7c{bottom:301.431669pt;}
.y104{bottom:301.547337pt;}
.yb3{bottom:301.720714pt;}
.y42{bottom:311.749052pt;}
.y7b{bottom:317.947249pt;}
.ydf{bottom:318.062917pt;}
.yb2{bottom:318.236294pt;}
.y41{bottom:328.264632pt;}
.y7a{bottom:334.462830pt;}
.y103{bottom:334.578498pt;}
.yb1{bottom:334.751874pt;}
.y122{bottom:335.935491pt;}
.y40{bottom:344.780212pt;}
.y79{bottom:350.978410pt;}
.y102{bottom:351.094078pt;}
.yb0{bottom:351.267454pt;}
.y121{bottom:352.451071pt;}
.y2c{bottom:361.295792pt;}
.y78{bottom:367.493990pt;}
.y101{bottom:367.609658pt;}
.yaf{bottom:367.783034pt;}
.y120{bottom:368.966651pt;}
.y1c{bottom:377.213333pt;}
.y3f{bottom:377.811372pt;}
.y11f{bottom:382.729634pt;}
.y77{bottom:384.009570pt;}
.y100{bottom:384.125238pt;}
.yae{bottom:384.298614pt;}
.y3e{bottom:394.326952pt;}
.y1b{bottom:395.213333pt;}
.y11e{bottom:399.245214pt;}
.y76{bottom:400.525150pt;}
.yff{bottom:400.640818pt;}
.yad{bottom:400.814194pt;}
.y3d{bottom:410.842532pt;}
.y1a{bottom:413.213333pt;}
.y11d{bottom:415.760794pt;}
.y75{bottom:417.040730pt;}
.yfe{bottom:417.156398pt;}
.yac{bottom:417.329774pt;}
.y3c{bottom:427.358112pt;}
.y19{bottom:431.213333pt;}
.y11c{bottom:432.276374pt;}
.y74{bottom:433.556310pt;}
.yfd{bottom:433.671978pt;}
.yab{bottom:433.845354pt;}
.y3b{bottom:443.873692pt;}
.y18{bottom:449.213333pt;}
.y73{bottom:450.071890pt;}
.yfc{bottom:450.187558pt;}
.yaa{bottom:450.360934pt;}
.y3a{bottom:460.389272pt;}
.yd2{bottom:466.483513pt;}
.y72{bottom:466.587470pt;}
.yfb{bottom:466.703138pt;}
.ya9{bottom:466.876515pt;}
.y119{bottom:467.468323pt;}
.yf{bottom:469.880000pt;}
.y39{bottom:476.904853pt;}
.yd1{bottom:482.999093pt;}
.y71{bottom:483.103050pt;}
.yfa{bottom:483.218718pt;}
.ya8{bottom:483.392095pt;}
.y11b{bottom:483.983903pt;}
.y38{bottom:493.420433pt;}
.ye{bottom:493.880000pt;}
.yd0{bottom:499.514673pt;}
.y70{bottom:499.618630pt;}
.yf9{bottom:499.734298pt;}
.ya7{bottom:499.907675pt;}
.y37{bottom:509.936013pt;}
.ycf{bottom:516.030253pt;}
.y6f{bottom:516.134210pt;}
.yf8{bottom:516.249878pt;}
.ya6{bottom:516.423255pt;}
.yd{bottom:517.880000pt;}
.y11a{bottom:519.175851pt;}
.y36{bottom:526.451593pt;}
.yce{bottom:532.545833pt;}
.y6e{bottom:532.649790pt;}
.yf7{bottom:532.765458pt;}
.ya5{bottom:532.938835pt;}
.y118{bottom:535.691431pt;}
.y35{bottom:542.967173pt;}
.ycd{bottom:544.368236pt;}
.y6d{bottom:549.165370pt;}
.yf6{bottom:549.281038pt;}
.ya4{bottom:549.454415pt;}
.y117{bottom:552.207012pt;}
.y34{bottom:559.482753pt;}
.y16{bottom:560.013333pt;}
.y6c{bottom:565.680950pt;}
.yf5{bottom:565.796618pt;}
.ya3{bottom:565.969995pt;}
.y33{bottom:575.998333pt;}
.y15{bottom:582.013333pt;}
.y6b{bottom:582.196530pt;}
.yf4{bottom:582.312198pt;}
.ya2{bottom:582.485575pt;}
.y32{bottom:592.513913pt;}
.y6a{bottom:598.712111pt;}
.yf3{bottom:598.827779pt;}
.ya1{bottom:599.001155pt;}
.y14{bottom:604.013333pt;}
.y31{bottom:609.029493pt;}
.y69{bottom:615.227691pt;}
.yf2{bottom:615.343359pt;}
.ya0{bottom:615.516735pt;}
.y30{bottom:625.545073pt;}
.y13{bottom:626.013333pt;}
.y67{bottom:631.743271pt;}
.yf1{bottom:631.858939pt;}
.y9f{bottom:632.032315pt;}
.y2f{bottom:642.060653pt;}
.y12{bottom:648.013333pt;}
.y66{bottom:648.258851pt;}
.yf0{bottom:648.374519pt;}
.y9e{bottom:648.547895pt;}
.y2e{bottom:658.576233pt;}
.y65{bottom:664.774431pt;}
.yef{bottom:664.890099pt;}
.y9d{bottom:665.063475pt;}
.y2d{bottom:675.091813pt;}
.y64{bottom:681.290011pt;}
.yee{bottom:681.405679pt;}
.y9c{bottom:681.579055pt;}
.y2b{bottom:691.607393pt;}
.yc{bottom:695.333333pt;}
.y62{bottom:697.805591pt;}
.yed{bottom:697.921259pt;}
.y9b{bottom:698.094635pt;}
.y2a{bottom:708.122948pt;}
.y63{bottom:714.321171pt;}
.yec{bottom:714.436839pt;}
.y9a{bottom:714.610215pt;}
.yb{bottom:719.333333pt;}
.y29{bottom:724.638378pt;}
.y61{bottom:730.836751pt;}
.yeb{bottom:730.952419pt;}
.y99{bottom:731.125796pt;}
.y28{bottom:741.159010pt;}
.ya{bottom:743.333333pt;}
.y60{bottom:747.352331pt;}
.yea{bottom:747.467999pt;}
.y98{bottom:747.641376pt;}
.y27{bottom:757.674591pt;}
.y5f{bottom:763.867911pt;}
.ye9{bottom:763.983579pt;}
.y97{bottom:764.156956pt;}
.y9{bottom:767.333333pt;}
.y26{bottom:774.190171pt;}
.y5e{bottom:780.383491pt;}
.ye8{bottom:780.499159pt;}
.y96{bottom:780.672536pt;}
.y8{bottom:791.333333pt;}
.y5d{bottom:796.899071pt;}
.ye7{bottom:797.014739pt;}
.y95{bottom:797.188116pt;}
.y25{bottom:809.382119pt;}
.y5c{bottom:813.414651pt;}
.ye6{bottom:813.530319pt;}
.y94{bottom:813.703696pt;}
.y7{bottom:815.333333pt;}
.y24{bottom:825.897699pt;}
.y5b{bottom:829.930231pt;}
.ye5{bottom:830.045899pt;}
.y93{bottom:830.219276pt;}
.ycc{bottom:830.221532pt;}
.y6{bottom:839.333333pt;}
.y23{bottom:842.413279pt;}
.y20{bottom:843.486792pt;}
.y5a{bottom:846.445812pt;}
.ye4{bottom:846.561479pt;}
.y92{bottom:846.734856pt;}
.ycb{bottom:846.737112pt;}
.y22{bottom:858.928859pt;}
.yc5{bottom:862.371861pt;}
.y56{bottom:862.961392pt;}
.ye3{bottom:863.077060pt;}
.y91{bottom:863.250436pt;}
.yca{bottom:863.252692pt;}
.y5{bottom:863.333333pt;}
.y59{bottom:879.476972pt;}
.ye2{bottom:879.592640pt;}
.y90{bottom:879.766016pt;}
.yc9{bottom:879.768272pt;}
.y4{bottom:887.333333pt;}
.y21{bottom:894.120808pt;}
.y58{bottom:895.992552pt;}
.ye1{bottom:896.108220pt;}
.y8f{bottom:896.281596pt;}
.yc8{bottom:896.283852pt;}
.y57{bottom:912.508132pt;}
.ye0{bottom:912.623800pt;}
.y8e{bottom:912.797176pt;}
.yc7{bottom:912.799432pt;}
.y11{bottom:914.000000pt;}
.y55{bottom:929.023712pt;}
.yde{bottom:929.139380pt;}
.y1f{bottom:929.312756pt;}
.yc6{bottom:929.315012pt;}
.y10{bottom:932.000000pt;}
.y3{bottom:950.666667pt;}
.y2{bottom:974.666667pt;}
.y1{bottom:998.666667pt;}
.h3{height:44.500000pt;}
.h2{height:50.062500pt;}
.h7{height:54.030462pt;}
.ha{height:54.030562pt;}
.h9{height:54.031064pt;}
.h8{height:55.482027pt;}
.hc{height:59.535655pt;}
.h4{height:61.187500pt;}
.h1{height:66.750000pt;}
.h5{height:77.875000pt;}
.hd{height:109.082396pt;}
.hb{height:120.092782pt;}
.h6{height:966.693333pt;}
.h0{height:1056.000000pt;}
.w1{width:721.440000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:9.830649pt;}
.x1{left:48.000000pt;}
.x10{left:57.010156pt;}
.x11{left:80.599909pt;}
.x1b{left:82.115019pt;}
.x1a{left:83.271109pt;}
.x1c{left:88.432228pt;}
.x19{left:92.244574pt;}
.xe{left:94.560000pt;}
.x6{left:140.640000pt;}
.xa{left:156.000000pt;}
.xd{left:179.573333pt;}
.x12{left:194.873960pt;}
.x14{left:204.439234pt;}
.x2{left:241.426667pt;}
.x1d{left:286.041144pt;}
.x16{left:302.514253pt;}
.x5{left:316.026667pt;}
.x7{left:321.586667pt;}
.x13{left:330.962340pt;}
.xc{left:335.306667pt;}
.x15{left:338.614559pt;}
.x3{left:340.706667pt;}
.x8{left:350.133333pt;}
.x9{left:383.133333pt;}
.xb{left:401.413333pt;}
.x4{left:522.933333pt;}
.x1e{left:561.330527pt;}
.x18{left:621.789123pt;}
.x17{left:682.248728pt;}
}

