
    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_b94df2ccde531fccc7256248.woff')format("woff");}.ff1{font-family:ff1;line-height:1.091309;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_bef46986a2ceb283982db6f2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_33b2961dba55e1b51ef17e35.woff')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_f6a19ff78bf27a598c506dbe.woff')format("woff");}.ff4{font-family:ff4;line-height:0.727000;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_c5e65b7527d77dce97bf7c10.woff')format("woff");}.ff5{font-family:ff5;line-height:0.940000;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_0b11455fb5720eba83b1ac7c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.894531;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_8f67bb60eb5fa88e69b19bf6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.091309;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;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.v2{vertical-align:-23.576400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.451600px;}
.ls5{letter-spacing:-2.124000px;}
.ls0{letter-spacing:-2.058252px;}
.ls8{letter-spacing:-1.710000px;}
.ls4{letter-spacing:-1.416000px;}
.lsb{letter-spacing:-1.140000px;}
.ls7{letter-spacing:-0.708000px;}
.ls9{letter-spacing:-0.570000px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.708000px;}
.ls3{letter-spacing:0.778800px;}
.ls2{letter-spacing:2.194800px;}
.ls6{letter-spacing:6.442800px;}
.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;}
}
.ws1f{word-spacing:-16.284000px;}
.ws20{word-spacing:-15.576000px;}
.ws16{word-spacing:-14.250000px;}
.ws12{word-spacing:-13.680000px;}
.wsd{word-spacing:-10.319100px;}
.ws17{word-spacing:-9.975000px;}
.ws9{word-spacing:-3.115200px;}
.ws1a{word-spacing:-3.044400px;}
.ws8{word-spacing:-2.265600px;}
.ws23{word-spacing:-2.124000px;}
.ws15{word-spacing:-1.254000px;}
.ws0{word-spacing:-1.029126px;}
.ws14{word-spacing:-0.855000px;}
.ws1d{word-spacing:-0.708000px;}
.ws22{word-spacing:-0.513000px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:0.283200px;}
.ws18{word-spacing:0.399000px;}
.ws13{word-spacing:0.570000px;}
.wse{word-spacing:0.708000px;}
.ws1e{word-spacing:1.140000px;}
.wsa{word-spacing:1.203600px;}
.ws4{word-spacing:1.416000px;}
.ws10{word-spacing:1.710000px;}
.ws1c{word-spacing:1.770000px;}
.ws7{word-spacing:2.124000px;}
.ws1{word-spacing:2.572815px;}
.ws11{word-spacing:2.907000px;}
.ws19{word-spacing:2.973600px;}
.ws5{word-spacing:3.540000px;}
.wsb{word-spacing:4.106400px;}
.ws1b{word-spacing:4.177200px;}
.ws21{word-spacing:4.218000px;}
.wsf{word-spacing:5.168400px;}
.wsc{word-spacing:7.858800px;}
.ws24{word-spacing:28.249200px;}
.ws3{word-spacing:630.021000px;}
._e{margin-left:-1260.919200px;}
._6{margin-left:-1233.613488px;}
._1b{margin-left:-17.073120px;}
._5{margin-left:-11.117496px;}
._b{margin-left:-8.962255px;}
._d{margin-left:-7.084800px;}
._9{margin-left:-5.795496px;}
._2{margin-left:-4.116504px;}
._4{margin-left:-2.856000px;}
._3{margin-left:-1.836000px;}
._7{width:1.036740px;}
._1{width:2.058252px;}
._0{width:3.704854px;}
._8{width:5.522400px;}
._a{width:7.363200px;}
._c{width:9.204000px;}
._19{width:10.266000px;}
._1a{width:11.970000px;}
._1d{width:14.938800px;}
._1c{width:16.213200px;}
._13{width:20.744400px;}
._12{width:24.921600px;}
._1e{width:28.249200px;}
._11{width:33.724800px;}
._18{width:96.807600px;}
._16{width:111.580800px;}
._15{width:119.156400px;}
._17{width:174.238800px;}
._f{width:180.044400px;}
._10{width:198.169200px;}
._14{width:277.290000px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:39.900000px;}
.fs8{font-size:41.276400px;}
.fs1{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs4{font-size:70.800000px;}
.fs6{font-size:77.127600px;}
.fs5{font-size:84.000000px;}
.fs2{font-size:90.000000px;}
.fs0{font-size:102.912600px;}
.y0{bottom:0.000000px;}
.ya5{bottom:76.528650px;}
.yfa{bottom:76.533150px;}
.y24{bottom:76.535400px;}
.y6e{bottom:77.353500px;}
.y8d{bottom:77.760600px;}
.y4b{bottom:79.926300px;}
.y121{bottom:84.646350px;}
.yd0{bottom:84.663600px;}
.ya4{bottom:93.329400px;}
.yf9{bottom:93.333900px;}
.yc4{bottom:93.635400px;}
.y23{bottom:94.535400px;}
.y6d{bottom:97.602300px;}
.y8c{bottom:98.310300px;}
.y4a{bottom:100.175100px;}
.y120{bottom:104.895150px;}
.ycf{bottom:104.912400px;}
.ya3{bottom:110.130150px;}
.yf8{bottom:110.134650px;}
.yc3{bottom:110.735400px;}
.y6c{bottom:117.851100px;}
.y8b{bottom:118.860000px;}
.y49{bottom:119.981400px;}
.y11f{bottom:125.143950px;}
.yce{bottom:125.161200px;}
.ya2{bottom:126.930900px;}
.yf7{bottom:126.935400px;}
.yc2{bottom:127.835400px;}
.y6b{bottom:138.099900px;}
.y8a{bottom:139.409700px;}
.y48{bottom:139.787700px;}
.y1f{bottom:139.816200px;}
.ya1{bottom:143.731650px;}
.yc1{bottom:144.935400px;}
.y11e{bottom:145.392750px;}
.ycd{bottom:145.410000px;}
.y47{bottom:159.594000px;}
.y1e{bottom:160.065000px;}
.ya0{bottom:160.532400px;}
.yc0{bottom:162.035400px;}
.y11d{bottom:165.641550px;}
.yf6{bottom:165.644400px;}
.ycc{bottom:165.658800px;}
.y6a{bottom:171.110400px;}
.y89{bottom:176.969100px;}
.y9f{bottom:177.333150px;}
.ybf{bottom:179.135400px;}
.y46{bottom:179.400300px;}
.y1d{bottom:180.313800px;}
.ye1{bottom:185.889600px;}
.y11c{bottom:185.890350px;}
.yf5{bottom:185.893200px;}
.ycb{bottom:185.907600px;}
.y69{bottom:191.359200px;}
.y9e{bottom:194.133900px;}
.y88{bottom:197.518800px;}
.y45{bottom:199.206600px;}
.y1c{bottom:200.562600px;}
.ye0{bottom:206.138400px;}
.y11b{bottom:206.139150px;}
.yf4{bottom:206.142000px;}
.yca{bottom:206.156400px;}
.y9d{bottom:210.934650px;}
.y68{bottom:211.608000px;}
.y87{bottom:218.068500px;}
.y44{bottom:219.012900px;}
.y1b{bottom:220.811400px;}
.y134{bottom:226.374750px;}
.ydf{bottom:226.387200px;}
.y11a{bottom:226.387950px;}
.yf3{bottom:226.390800px;}
.ybe{bottom:226.399200px;}
.yc9{bottom:226.405200px;}
.y9c{bottom:227.735400px;}
.y67{bottom:231.856800px;}
.y86{bottom:238.618200px;}
.y43{bottom:238.819200px;}
.y1a{bottom:241.060200px;}
.y133{bottom:246.623550px;}
.yde{bottom:246.636000px;}
.y119{bottom:246.636750px;}
.yf2{bottom:246.639600px;}
.ybd{bottom:246.648000px;}
.yc8{bottom:246.654000px;}
.y42{bottom:258.625500px;}
.y19{bottom:261.309000px;}
.y66{bottom:264.867300px;}
.y9b{bottom:266.871600px;}
.y132{bottom:266.872350px;}
.ydd{bottom:266.884800px;}
.y118{bottom:266.885550px;}
.yf1{bottom:266.888400px;}
.ybc{bottom:266.896800px;}
.yc7{bottom:266.902800px;}
.y85{bottom:276.177600px;}
.y41{bottom:278.431800px;}
.y18{bottom:281.557800px;}
.y65{bottom:285.116100px;}
.y9a{bottom:287.120400px;}
.y131{bottom:287.121150px;}
.ydc{bottom:287.133600px;}
.y117{bottom:287.134350px;}
.yf0{bottom:287.137200px;}
.ybb{bottom:287.145600px;}
.yc6{bottom:287.151600px;}
.y84{bottom:296.727300px;}
.y40{bottom:298.238100px;}
.y17{bottom:301.806600px;}
.y64{bottom:305.364900px;}
.y130{bottom:307.369950px;}
.ydb{bottom:307.382400px;}
.y116{bottom:307.383150px;}
.yef{bottom:307.386000px;}
.yba{bottom:307.394400px;}
.y99{bottom:307.400400px;}
.y83{bottom:317.277000px;}
.y3f{bottom:318.044400px;}
.y16{bottom:322.055400px;}
.y63{bottom:325.613700px;}
.y12f{bottom:327.618750px;}
.yda{bottom:327.631200px;}
.y115{bottom:327.631950px;}
.yee{bottom:327.634800px;}
.yb9{bottom:327.643200px;}
.y98{bottom:327.649200px;}
.y82{bottom:337.826700px;}
.y3e{bottom:337.850700px;}
.y15{bottom:342.304200px;}
.y12e{bottom:347.867550px;}
.yd9{bottom:347.880000px;}
.y114{bottom:347.880750px;}
.yed{bottom:347.883600px;}
.yb8{bottom:347.892000px;}
.y97{bottom:347.898000px;}
.y3d{bottom:357.657000px;}
.y62{bottom:358.624200px;}
.y14{bottom:362.553000px;}
.y6{bottom:365.300400px;}
.y12d{bottom:368.116350px;}
.yd8{bottom:368.128800px;}
.y113{bottom:368.129550px;}
.yec{bottom:368.132400px;}
.yb7{bottom:368.140800px;}
.y96{bottom:368.146800px;}
.y81{bottom:375.386100px;}
.y3c{bottom:377.463300px;}
.y61{bottom:378.873000px;}
.y13{bottom:382.801800px;}
.y12c{bottom:388.365150px;}
.yd7{bottom:388.377600px;}
.y112{bottom:388.378350px;}
.yeb{bottom:388.381200px;}
.yb6{bottom:388.389600px;}
.y95{bottom:388.395600px;}
.y80{bottom:395.935800px;}
.y3b{bottom:397.269600px;}
.y60{bottom:399.121800px;}
.y12{bottom:403.050600px;}
.y12b{bottom:408.613950px;}
.yd6{bottom:408.626400px;}
.y111{bottom:408.627150px;}
.yea{bottom:408.630000px;}
.yb5{bottom:408.638400px;}
.y94{bottom:408.644400px;}
.y7f{bottom:416.485500px;}
.y3a{bottom:417.075900px;}
.y5{bottom:419.304150px;}
.y5f{bottom:419.370600px;}
.y11{bottom:423.299400px;}
.y12a{bottom:428.862750px;}
.yd5{bottom:428.875200px;}
.y110{bottom:428.875950px;}
.ye9{bottom:428.878800px;}
.yb4{bottom:428.887200px;}
.y93{bottom:428.893200px;}
.y39{bottom:436.882200px;}
.y7e{bottom:437.035200px;}
.y10{bottom:443.548200px;}
.y129{bottom:449.111550px;}
.yd4{bottom:449.124000px;}
.y10f{bottom:449.124750px;}
.ye8{bottom:449.127600px;}
.yb3{bottom:449.136000px;}
.y92{bottom:449.142000px;}
.y5e{bottom:452.381100px;}
.y38{bottom:456.688500px;}
.yf{bottom:463.797000px;}
.y128{bottom:469.360350px;}
.yd3{bottom:469.372800px;}
.y10e{bottom:469.373550px;}
.ye7{bottom:469.376400px;}
.yb2{bottom:469.384800px;}
.y91{bottom:469.390800px;}
.y5d{bottom:472.629900px;}
.y4{bottom:473.300400px;}
.y7d{bottom:474.594600px;}
.y37{bottom:476.494800px;}
.ye{bottom:484.045800px;}
.y127{bottom:489.609150px;}
.yd2{bottom:489.621600px;}
.y10d{bottom:489.622350px;}
.ye6{bottom:489.625200px;}
.yb1{bottom:489.633600px;}
.y90{bottom:489.639600px;}
.y5c{bottom:492.878700px;}
.y7c{bottom:495.144300px;}
.y36{bottom:496.301100px;}
.y3{bottom:503.900400px;}
.yd{bottom:504.294600px;}
.y126{bottom:509.857950px;}
.yd1{bottom:509.870400px;}
.y10c{bottom:509.871150px;}
.ye5{bottom:509.874000px;}
.yb0{bottom:509.882400px;}
.y8f{bottom:509.888400px;}
.y5b{bottom:513.127500px;}
.y7b{bottom:515.694000px;}
.y35{bottom:516.107400px;}
.yc{bottom:524.543400px;}
.y125{bottom:530.106750px;}
.y10b{bottom:530.119950px;}
.ye4{bottom:530.122800px;}
.yaf{bottom:530.131200px;}
.y8e{bottom:530.137200px;}
.y34{bottom:535.913700px;}
.y7a{bottom:536.243700px;}
.yb{bottom:544.792200px;}
.y124{bottom:550.355550px;}
.y10a{bottom:550.368750px;}
.ye3{bottom:550.371600px;}
.yae{bottom:550.380000px;}
.y5a{bottom:550.386000px;}
.y33{bottom:555.720000px;}
.ya{bottom:565.041000px;}
.y2{bottom:568.244970px;}
.y123{bottom:570.604350px;}
.y109{bottom:570.617550px;}
.ye2{bottom:570.620400px;}
.yad{bottom:570.628800px;}
.y59{bottom:570.634800px;}
.y79{bottom:573.803100px;}
.y32{bottom:575.526300px;}
.y9{bottom:585.289800px;}
.y122{bottom:590.853150px;}
.y108{bottom:590.866350px;}
.yac{bottom:590.877600px;}
.y58{bottom:590.883600px;}
.y78{bottom:594.352800px;}
.y31{bottom:595.332600px;}
.y1{bottom:599.118750px;}
.y8{bottom:605.538600px;}
.y107{bottom:611.115150px;}
.yab{bottom:611.126400px;}
.y57{bottom:611.132400px;}
.y77{bottom:614.902500px;}
.y30{bottom:615.138900px;}
.y106{bottom:631.363950px;}
.yaa{bottom:631.375200px;}
.y56{bottom:631.381200px;}
.y2f{bottom:634.945200px;}
.y76{bottom:635.452200px;}
.y105{bottom:651.612750px;}
.ya9{bottom:651.624000px;}
.y55{bottom:651.630000px;}
.y2e{bottom:654.751500px;}
.y104{bottom:671.861550px;}
.ya8{bottom:671.872800px;}
.y54{bottom:671.878800px;}
.y75{bottom:673.011600px;}
.y2d{bottom:674.557800px;}
.y22{bottom:678.481650px;}
.y103{bottom:692.110350px;}
.ya7{bottom:692.121600px;}
.y53{bottom:692.127600px;}
.y74{bottom:693.561300px;}
.y2c{bottom:694.364100px;}
.y21{bottom:699.721650px;}
.y102{bottom:712.359150px;}
.ya6{bottom:712.370400px;}
.y52{bottom:712.376400px;}
.y73{bottom:714.111000px;}
.y2b{bottom:714.170400px;}
.y101{bottom:732.607950px;}
.y51{bottom:732.625200px;}
.y2a{bottom:733.976700px;}
.y72{bottom:734.660700px;}
.y100{bottom:752.856750px;}
.y50{bottom:752.874000px;}
.y29{bottom:753.783000px;}
.y20{bottom:761.423700px;}
.y71{bottom:772.220100px;}
.yff{bottom:773.105550px;}
.y4f{bottom:773.122800px;}
.y28{bottom:773.589300px;}
.y70{bottom:792.769800px;}
.yfe{bottom:793.354350px;}
.y4e{bottom:793.371600px;}
.y27{bottom:793.395600px;}
.y26{bottom:813.201900px;}
.y6f{bottom:813.319500px;}
.yfd{bottom:813.603150px;}
.y4d{bottom:813.620400px;}
.y25{bottom:833.008200px;}
.yfc{bottom:833.851950px;}
.y4c{bottom:833.869200px;}
.yfb{bottom:878.779650px;}
.y7{bottom:878.781000px;}
.yc5{bottom:878.781900px;}
.hc{height:42.000000px;}
.hb{height:42.720000px;}
.h3{height:44.749512px;}
.h6{height:50.014160px;}
.h7{height:62.122852px;}
.h8{height:62.295703px;}
.ha{height:67.674950px;}
.h9{height:73.705078px;}
.h4{height:78.954727px;}
.h5{height:78.969727px;}
.h2{height:90.299776px;}
.h0{height:965.197500px;}
.h1{height:965.250000px;}
.w1{width:688.500000px;}
.w0{width:688.819500px;}
.x0{left:0.000000px;}
.xd{left:114.803100px;}
.x8{left:119.059350px;}
.x13{left:120.472500px;}
.xa{left:134.541000px;}
.x12{left:136.062900px;}
.x11{left:140.314950px;}
.xe{left:157.318500px;}
.x7{left:161.574750px;}
.x14{left:162.987900px;}
.x1{left:195.827400px;}
.x10{left:203.390700px;}
.x3{left:208.295550px;}
.x2{left:216.847299px;}
.x4{left:245.474550px;}
.xf{left:253.288050px;}
.x6{left:260.079150px;}
.x9{left:294.373650px;}
.x5{left:303.678300px;}
.xc{left:321.502050px;}
.xb{left:564.260250px;}
@media print{
.v2{vertical-align:-20.956800pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.845867pt;}
.ls5{letter-spacing:-1.888000pt;}
.ls0{letter-spacing:-1.829557pt;}
.ls8{letter-spacing:-1.520000pt;}
.ls4{letter-spacing:-1.258667pt;}
.lsb{letter-spacing:-1.013333pt;}
.ls7{letter-spacing:-0.629333pt;}
.ls9{letter-spacing:-0.506667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.629333pt;}
.ls3{letter-spacing:0.692267pt;}
.ls2{letter-spacing:1.950933pt;}
.ls6{letter-spacing:5.726933pt;}
.ws1f{word-spacing:-14.474667pt;}
.ws20{word-spacing:-13.845333pt;}
.ws16{word-spacing:-12.666667pt;}
.ws12{word-spacing:-12.160000pt;}
.wsd{word-spacing:-9.172533pt;}
.ws17{word-spacing:-8.866667pt;}
.ws9{word-spacing:-2.769067pt;}
.ws1a{word-spacing:-2.706133pt;}
.ws8{word-spacing:-2.013867pt;}
.ws23{word-spacing:-1.888000pt;}
.ws15{word-spacing:-1.114667pt;}
.ws0{word-spacing:-0.914779pt;}
.ws14{word-spacing:-0.760000pt;}
.ws1d{word-spacing:-0.629333pt;}
.ws22{word-spacing:-0.456000pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:0.251733pt;}
.ws18{word-spacing:0.354667pt;}
.ws13{word-spacing:0.506667pt;}
.wse{word-spacing:0.629333pt;}
.ws1e{word-spacing:1.013333pt;}
.wsa{word-spacing:1.069867pt;}
.ws4{word-spacing:1.258667pt;}
.ws10{word-spacing:1.520000pt;}
.ws1c{word-spacing:1.573333pt;}
.ws7{word-spacing:1.888000pt;}
.ws1{word-spacing:2.286947pt;}
.ws11{word-spacing:2.584000pt;}
.ws19{word-spacing:2.643200pt;}
.ws5{word-spacing:3.146667pt;}
.wsb{word-spacing:3.650133pt;}
.ws1b{word-spacing:3.713067pt;}
.ws21{word-spacing:3.749333pt;}
.wsf{word-spacing:4.594133pt;}
.wsc{word-spacing:6.985600pt;}
.ws24{word-spacing:25.110400pt;}
.ws3{word-spacing:560.018667pt;}
._e{margin-left:-1120.817067pt;}
._6{margin-left:-1096.545323pt;}
._1b{margin-left:-15.176107pt;}
._5{margin-left:-9.882219pt;}
._b{margin-left:-7.966449pt;}
._d{margin-left:-6.297600pt;}
._9{margin-left:-5.151552pt;}
._2{margin-left:-3.659115pt;}
._4{margin-left:-2.538667pt;}
._3{margin-left:-1.632000pt;}
._7{width:0.921547pt;}
._1{width:1.829557pt;}
._0{width:3.293203pt;}
._8{width:4.908800pt;}
._a{width:6.545067pt;}
._c{width:8.181333pt;}
._19{width:9.125333pt;}
._1a{width:10.640000pt;}
._1d{width:13.278933pt;}
._1c{width:14.411733pt;}
._13{width:18.439467pt;}
._12{width:22.152533pt;}
._1e{width:25.110400pt;}
._11{width:29.977600pt;}
._18{width:86.051200pt;}
._16{width:99.182933pt;}
._15{width:105.916800pt;}
._17{width:154.878933pt;}
._f{width:160.039467pt;}
._10{width:176.150400pt;}
._14{width:246.480000pt;}
.fs9{font-size:35.466667pt;}
.fs8{font-size:36.690133pt;}
.fs1{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs4{font-size:62.933333pt;}
.fs6{font-size:68.557867pt;}
.fs5{font-size:74.666667pt;}
.fs2{font-size:80.000000pt;}
.fs0{font-size:91.477867pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:68.025467pt;}
.yfa{bottom:68.029467pt;}
.y24{bottom:68.031467pt;}
.y6e{bottom:68.758667pt;}
.y8d{bottom:69.120533pt;}
.y4b{bottom:71.045600pt;}
.y121{bottom:75.241200pt;}
.yd0{bottom:75.256533pt;}
.ya4{bottom:82.959467pt;}
.yf9{bottom:82.963467pt;}
.yc4{bottom:83.231467pt;}
.y23{bottom:84.031467pt;}
.y6d{bottom:86.757600pt;}
.y8c{bottom:87.386933pt;}
.y4a{bottom:89.044533pt;}
.y120{bottom:93.240133pt;}
.ycf{bottom:93.255467pt;}
.ya3{bottom:97.893467pt;}
.yf8{bottom:97.897467pt;}
.yc3{bottom:98.431467pt;}
.y6c{bottom:104.756533pt;}
.y8b{bottom:105.653333pt;}
.y49{bottom:106.650133pt;}
.y11f{bottom:111.239067pt;}
.yce{bottom:111.254400pt;}
.ya2{bottom:112.827467pt;}
.yf7{bottom:112.831467pt;}
.yc2{bottom:113.631467pt;}
.y6b{bottom:122.755467pt;}
.y8a{bottom:123.919733pt;}
.y48{bottom:124.255733pt;}
.y1f{bottom:124.281067pt;}
.ya1{bottom:127.761467pt;}
.yc1{bottom:128.831467pt;}
.y11e{bottom:129.238000pt;}
.ycd{bottom:129.253333pt;}
.y47{bottom:141.861333pt;}
.y1e{bottom:142.280000pt;}
.ya0{bottom:142.695467pt;}
.yc0{bottom:144.031467pt;}
.y11d{bottom:147.236933pt;}
.yf6{bottom:147.239467pt;}
.ycc{bottom:147.252267pt;}
.y6a{bottom:152.098133pt;}
.y89{bottom:157.305867pt;}
.y9f{bottom:157.629467pt;}
.ybf{bottom:159.231467pt;}
.y46{bottom:159.466933pt;}
.y1d{bottom:160.278933pt;}
.ye1{bottom:165.235200pt;}
.y11c{bottom:165.235867pt;}
.yf5{bottom:165.238400pt;}
.ycb{bottom:165.251200pt;}
.y69{bottom:170.097067pt;}
.y9e{bottom:172.563467pt;}
.y88{bottom:175.572267pt;}
.y45{bottom:177.072533pt;}
.y1c{bottom:178.277867pt;}
.ye0{bottom:183.234133pt;}
.y11b{bottom:183.234800pt;}
.yf4{bottom:183.237333pt;}
.yca{bottom:183.250133pt;}
.y9d{bottom:187.497467pt;}
.y68{bottom:188.096000pt;}
.y87{bottom:193.838667pt;}
.y44{bottom:194.678133pt;}
.y1b{bottom:196.276800pt;}
.y134{bottom:201.222000pt;}
.ydf{bottom:201.233067pt;}
.y11a{bottom:201.233733pt;}
.yf3{bottom:201.236267pt;}
.ybe{bottom:201.243733pt;}
.yc9{bottom:201.249067pt;}
.y9c{bottom:202.431467pt;}
.y67{bottom:206.094933pt;}
.y86{bottom:212.105067pt;}
.y43{bottom:212.283733pt;}
.y1a{bottom:214.275733pt;}
.y133{bottom:219.220933pt;}
.yde{bottom:219.232000pt;}
.y119{bottom:219.232667pt;}
.yf2{bottom:219.235200pt;}
.ybd{bottom:219.242667pt;}
.yc8{bottom:219.248000pt;}
.y42{bottom:229.889333pt;}
.y19{bottom:232.274667pt;}
.y66{bottom:235.437600pt;}
.y9b{bottom:237.219200pt;}
.y132{bottom:237.219867pt;}
.ydd{bottom:237.230933pt;}
.y118{bottom:237.231600pt;}
.yf1{bottom:237.234133pt;}
.ybc{bottom:237.241600pt;}
.yc7{bottom:237.246933pt;}
.y85{bottom:245.491200pt;}
.y41{bottom:247.494933pt;}
.y18{bottom:250.273600pt;}
.y65{bottom:253.436533pt;}
.y9a{bottom:255.218133pt;}
.y131{bottom:255.218800pt;}
.ydc{bottom:255.229867pt;}
.y117{bottom:255.230533pt;}
.yf0{bottom:255.233067pt;}
.ybb{bottom:255.240533pt;}
.yc6{bottom:255.245867pt;}
.y84{bottom:263.757600pt;}
.y40{bottom:265.100533pt;}
.y17{bottom:268.272533pt;}
.y64{bottom:271.435467pt;}
.y130{bottom:273.217733pt;}
.ydb{bottom:273.228800pt;}
.y116{bottom:273.229467pt;}
.yef{bottom:273.232000pt;}
.yba{bottom:273.239467pt;}
.y99{bottom:273.244800pt;}
.y83{bottom:282.024000pt;}
.y3f{bottom:282.706133pt;}
.y16{bottom:286.271467pt;}
.y63{bottom:289.434400pt;}
.y12f{bottom:291.216667pt;}
.yda{bottom:291.227733pt;}
.y115{bottom:291.228400pt;}
.yee{bottom:291.230933pt;}
.yb9{bottom:291.238400pt;}
.y98{bottom:291.243733pt;}
.y82{bottom:300.290400pt;}
.y3e{bottom:300.311733pt;}
.y15{bottom:304.270400pt;}
.y12e{bottom:309.215600pt;}
.yd9{bottom:309.226667pt;}
.y114{bottom:309.227333pt;}
.yed{bottom:309.229867pt;}
.yb8{bottom:309.237333pt;}
.y97{bottom:309.242667pt;}
.y3d{bottom:317.917333pt;}
.y62{bottom:318.777067pt;}
.y14{bottom:322.269333pt;}
.y6{bottom:324.711467pt;}
.y12d{bottom:327.214533pt;}
.yd8{bottom:327.225600pt;}
.y113{bottom:327.226267pt;}
.yec{bottom:327.228800pt;}
.yb7{bottom:327.236267pt;}
.y96{bottom:327.241600pt;}
.y81{bottom:333.676533pt;}
.y3c{bottom:335.522933pt;}
.y61{bottom:336.776000pt;}
.y13{bottom:340.268267pt;}
.y12c{bottom:345.213467pt;}
.yd7{bottom:345.224533pt;}
.y112{bottom:345.225200pt;}
.yeb{bottom:345.227733pt;}
.yb6{bottom:345.235200pt;}
.y95{bottom:345.240533pt;}
.y80{bottom:351.942933pt;}
.y3b{bottom:353.128533pt;}
.y60{bottom:354.774933pt;}
.y12{bottom:358.267200pt;}
.y12b{bottom:363.212400pt;}
.yd6{bottom:363.223467pt;}
.y111{bottom:363.224133pt;}
.yea{bottom:363.226667pt;}
.yb5{bottom:363.234133pt;}
.y94{bottom:363.239467pt;}
.y7f{bottom:370.209333pt;}
.y3a{bottom:370.734133pt;}
.y5{bottom:372.714800pt;}
.y5f{bottom:372.773867pt;}
.y11{bottom:376.266133pt;}
.y12a{bottom:381.211333pt;}
.yd5{bottom:381.222400pt;}
.y110{bottom:381.223067pt;}
.ye9{bottom:381.225600pt;}
.yb4{bottom:381.233067pt;}
.y93{bottom:381.238400pt;}
.y39{bottom:388.339733pt;}
.y7e{bottom:388.475733pt;}
.y10{bottom:394.265067pt;}
.y129{bottom:399.210267pt;}
.yd4{bottom:399.221333pt;}
.y10f{bottom:399.222000pt;}
.ye8{bottom:399.224533pt;}
.yb3{bottom:399.232000pt;}
.y92{bottom:399.237333pt;}
.y5e{bottom:402.116533pt;}
.y38{bottom:405.945333pt;}
.yf{bottom:412.264000pt;}
.y128{bottom:417.209200pt;}
.yd3{bottom:417.220267pt;}
.y10e{bottom:417.220933pt;}
.ye7{bottom:417.223467pt;}
.yb2{bottom:417.230933pt;}
.y91{bottom:417.236267pt;}
.y5d{bottom:420.115467pt;}
.y4{bottom:420.711467pt;}
.y7d{bottom:421.861867pt;}
.y37{bottom:423.550933pt;}
.ye{bottom:430.262933pt;}
.y127{bottom:435.208133pt;}
.yd2{bottom:435.219200pt;}
.y10d{bottom:435.219867pt;}
.ye6{bottom:435.222400pt;}
.yb1{bottom:435.229867pt;}
.y90{bottom:435.235200pt;}
.y5c{bottom:438.114400pt;}
.y7c{bottom:440.128267pt;}
.y36{bottom:441.156533pt;}
.y3{bottom:447.911467pt;}
.yd{bottom:448.261867pt;}
.y126{bottom:453.207067pt;}
.yd1{bottom:453.218133pt;}
.y10c{bottom:453.218800pt;}
.ye5{bottom:453.221333pt;}
.yb0{bottom:453.228800pt;}
.y8f{bottom:453.234133pt;}
.y5b{bottom:456.113333pt;}
.y7b{bottom:458.394667pt;}
.y35{bottom:458.762133pt;}
.yc{bottom:466.260800pt;}
.y125{bottom:471.206000pt;}
.y10b{bottom:471.217733pt;}
.ye4{bottom:471.220267pt;}
.yaf{bottom:471.227733pt;}
.y8e{bottom:471.233067pt;}
.y34{bottom:476.367733pt;}
.y7a{bottom:476.661067pt;}
.yb{bottom:484.259733pt;}
.y124{bottom:489.204933pt;}
.y10a{bottom:489.216667pt;}
.ye3{bottom:489.219200pt;}
.yae{bottom:489.226667pt;}
.y5a{bottom:489.232000pt;}
.y33{bottom:493.973333pt;}
.ya{bottom:502.258667pt;}
.y2{bottom:505.106640pt;}
.y123{bottom:507.203867pt;}
.y109{bottom:507.215600pt;}
.ye2{bottom:507.218133pt;}
.yad{bottom:507.225600pt;}
.y59{bottom:507.230933pt;}
.y79{bottom:510.047200pt;}
.y32{bottom:511.578933pt;}
.y9{bottom:520.257600pt;}
.y122{bottom:525.202800pt;}
.y108{bottom:525.214533pt;}
.yac{bottom:525.224533pt;}
.y58{bottom:525.229867pt;}
.y78{bottom:528.313600pt;}
.y31{bottom:529.184533pt;}
.y1{bottom:532.550000pt;}
.y8{bottom:538.256533pt;}
.y107{bottom:543.213467pt;}
.yab{bottom:543.223467pt;}
.y57{bottom:543.228800pt;}
.y77{bottom:546.580000pt;}
.y30{bottom:546.790133pt;}
.y106{bottom:561.212400pt;}
.yaa{bottom:561.222400pt;}
.y56{bottom:561.227733pt;}
.y2f{bottom:564.395733pt;}
.y76{bottom:564.846400pt;}
.y105{bottom:579.211333pt;}
.ya9{bottom:579.221333pt;}
.y55{bottom:579.226667pt;}
.y2e{bottom:582.001333pt;}
.y104{bottom:597.210267pt;}
.ya8{bottom:597.220267pt;}
.y54{bottom:597.225600pt;}
.y75{bottom:598.232533pt;}
.y2d{bottom:599.606933pt;}
.y22{bottom:603.094800pt;}
.y103{bottom:615.209200pt;}
.ya7{bottom:615.219200pt;}
.y53{bottom:615.224533pt;}
.y74{bottom:616.498933pt;}
.y2c{bottom:617.212533pt;}
.y21{bottom:621.974800pt;}
.y102{bottom:633.208133pt;}
.ya6{bottom:633.218133pt;}
.y52{bottom:633.223467pt;}
.y73{bottom:634.765333pt;}
.y2b{bottom:634.818133pt;}
.y101{bottom:651.207067pt;}
.y51{bottom:651.222400pt;}
.y2a{bottom:652.423733pt;}
.y72{bottom:653.031733pt;}
.y100{bottom:669.206000pt;}
.y50{bottom:669.221333pt;}
.y29{bottom:670.029333pt;}
.y20{bottom:676.821067pt;}
.y71{bottom:686.417867pt;}
.yff{bottom:687.204933pt;}
.y4f{bottom:687.220267pt;}
.y28{bottom:687.634933pt;}
.y70{bottom:704.684267pt;}
.yfe{bottom:705.203867pt;}
.y4e{bottom:705.219200pt;}
.y27{bottom:705.240533pt;}
.y26{bottom:722.846133pt;}
.y6f{bottom:722.950667pt;}
.yfd{bottom:723.202800pt;}
.y4d{bottom:723.218133pt;}
.y25{bottom:740.451733pt;}
.yfc{bottom:741.201733pt;}
.y4c{bottom:741.217067pt;}
.yfb{bottom:781.137467pt;}
.y7{bottom:781.138667pt;}
.yc5{bottom:781.139467pt;}
.hc{height:37.333333pt;}
.hb{height:37.973333pt;}
.h3{height:39.777344pt;}
.h6{height:44.457031pt;}
.h7{height:55.220313pt;}
.h8{height:55.373958pt;}
.ha{height:60.155511pt;}
.h9{height:65.515625pt;}
.h4{height:70.181979pt;}
.h5{height:70.195312pt;}
.h2{height:80.266468pt;}
.h0{height:857.953333pt;}
.h1{height:858.000000pt;}
.w1{width:612.000000pt;}
.w0{width:612.284000pt;}
.x0{left:0.000000pt;}
.xd{left:102.047200pt;}
.x8{left:105.830533pt;}
.x13{left:107.086667pt;}
.xa{left:119.592000pt;}
.x12{left:120.944800pt;}
.x11{left:124.724400pt;}
.xe{left:139.838667pt;}
.x7{left:143.622000pt;}
.x14{left:144.878133pt;}
.x1{left:174.068800pt;}
.x10{left:180.791733pt;}
.x3{left:185.151600pt;}
.x2{left:192.753154pt;}
.x4{left:218.199600pt;}
.xf{left:225.144933pt;}
.x6{left:231.181467pt;}
.x9{left:261.665467pt;}
.x5{left:269.936267pt;}
.xc{left:285.779600pt;}
.xb{left:501.564667pt;}
}

