
    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_6888dcafc7690bf695913808.woff')format("woff");}.ff1{font-family:ff1;line-height:1.056152;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_b02f814d8481e28e61db486a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.890625;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_44462d3ced491a6b56b947f4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_7313bbb760edbdefcaeda8a9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.905762;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_5c2dc501b59f8af4f072bfe4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_bc8a85055f920d6a411b5ab6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.937500;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_c5bed6ceb5441c24b966479b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.927246;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:ff8;src:url('chunks/assets/font_1f65d5ad016cec832ffd31ac.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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:ff9;src:url('chunks/assets/font_66c338e89218563da79d66a8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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:ffa;src:url('chunks/assets/font_5b140f4f2675cb787a5924ba.woff')format("woff");}.ffa{font-family:ffa;line-height:0.930664;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(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-1.710000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-4.440000px;}
.ls9{letter-spacing:-3.825000px;}
.lsa{letter-spacing:-1.392000px;}
.ls6{letter-spacing:-1.344000px;}
.ls8{letter-spacing:-1.296000px;}
.ls5{letter-spacing:-1.104000px;}
.ls3{letter-spacing:-0.290730px;}
.ls2{letter-spacing:-0.026430px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.020400px;}
.ls4{letter-spacing:0.422880px;}
.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;}
}
.ws70{word-spacing:-12.000000px;}
.ws1c{word-spacing:-11.250000px;}
.ws5b{word-spacing:-10.704000px;}
.ws6f{word-spacing:-10.608000px;}
.ws0{word-spacing:-9.000000px;}
.ws2f{word-spacing:-7.500000px;}
.ws5c{word-spacing:-7.425000px;}
.ws7c{word-spacing:-5.100000px;}
.ws33{word-spacing:-3.120000px;}
.ws5d{word-spacing:-3.030000px;}
.ws66{word-spacing:-2.995200px;}
.ws34{word-spacing:-2.870400px;}
.wsa{word-spacing:-2.683200px;}
.ws57{word-spacing:-2.640000px;}
.ws4f{word-spacing:-2.558400px;}
.ws41{word-spacing:-2.433600px;}
.ws4e{word-spacing:-2.308800px;}
.ws65{word-spacing:-2.184000px;}
.ws50{word-spacing:-1.934400px;}
.ws5a{word-spacing:-1.800000px;}
.ws27{word-spacing:-1.747200px;}
.ws5e{word-spacing:-1.696800px;}
.ws36{word-spacing:-1.684800px;}
.ws73{word-spacing:-1.680000px;}
.ws16{word-spacing:-1.638660px;}
.ws4a{word-spacing:-1.575000px;}
.ws37{word-spacing:-1.497600px;}
.ws67{word-spacing:-1.435200px;}
.ws2b{word-spacing:-1.310400px;}
.ws51{word-spacing:-1.125000px;}
.ws60{word-spacing:-1.123200px;}
.ws6{word-spacing:-0.873600px;}
.ws1f{word-spacing:-0.811200px;}
.wsb{word-spacing:-0.748800px;}
.ws74{word-spacing:-0.714000px;}
.ws26{word-spacing:-0.686400px;}
.ws2c{word-spacing:-0.561600px;}
.ws77{word-spacing:-0.459000px;}
.ws2{word-spacing:-0.312000px;}
.ws3a{word-spacing:-0.225000px;}
.ws7{word-spacing:-0.187200px;}
.ws4b{word-spacing:-0.180000px;}
.ws62{word-spacing:-0.062400px;}
.ws1{word-spacing:0.000000px;}
.ws1b{word-spacing:0.026430px;}
.ws7b{word-spacing:0.051000px;}
.ws2e{word-spacing:0.062400px;}
.ws19{word-spacing:0.105720px;}
.ws15{word-spacing:0.185010px;}
.ws3c{word-spacing:0.249600px;}
.ws17{word-spacing:0.264300px;}
.ws29{word-spacing:0.312000px;}
.ws39{word-spacing:0.374400px;}
.ws22{word-spacing:0.499200px;}
.ws18{word-spacing:0.502170px;}
.ws3d{word-spacing:0.561600px;}
.ws3e{word-spacing:0.624000px;}
.ws3f{word-spacing:0.686400px;}
.ws68{word-spacing:0.748800px;}
.ws9{word-spacing:0.811200px;}
.ws61{word-spacing:0.873600px;}
.ws40{word-spacing:0.936000px;}
.ws56{word-spacing:1.020000px;}
.ws3b{word-spacing:1.060800px;}
.ws30{word-spacing:1.104000px;}
.ws7d{word-spacing:1.173000px;}
.ws20{word-spacing:1.185600px;}
.ws4{word-spacing:1.310400px;}
.ws47{word-spacing:1.344000px;}
.ws28{word-spacing:1.435200px;}
.ws55{word-spacing:1.680000px;}
.ws72{word-spacing:1.684800px;}
.ws35{word-spacing:1.809600px;}
.ws44{word-spacing:1.872000px;}
.ws5{word-spacing:1.996800px;}
.ws75{word-spacing:2.244000px;}
.ws52{word-spacing:2.295000px;}
.ws4c{word-spacing:2.340000px;}
.ws48{word-spacing:2.385000px;}
.ws6c{word-spacing:2.558400px;}
.ws2a{word-spacing:2.683200px;}
.ws58{word-spacing:2.820000px;}
.ws38{word-spacing:2.870400px;}
.ws24{word-spacing:2.932800px;}
.ws1a{word-spacing:3.303750px;}
.ws31{word-spacing:3.307200px;}
.ws79{word-spacing:3.366000px;}
.ws69{word-spacing:3.432000px;}
.ws63{word-spacing:3.494400px;}
.ws6d{word-spacing:3.556800px;}
.ws78{word-spacing:3.876000px;}
.ws2d{word-spacing:3.993600px;}
.ws8{word-spacing:4.056000px;}
.ws6a{word-spacing:4.118400px;}
.ws42{word-spacing:4.368000px;}
.ws1d{word-spacing:4.804800px;}
.ws7e{word-spacing:4.998000px;}
.ws4d{word-spacing:5.054400px;}
.ws53{word-spacing:5.100000px;}
.ws6b{word-spacing:5.116800px;}
.ws59{word-spacing:5.220000px;}
.ws43{word-spacing:5.241600px;}
.ws46{word-spacing:5.304000px;}
.ws64{word-spacing:5.553600px;}
.ws32{word-spacing:5.678400px;}
.ws13{word-spacing:5.865600px;}
.ws23{word-spacing:5.928000px;}
.ws76{word-spacing:6.273000px;}
.ws11{word-spacing:6.302400px;}
.ws54{word-spacing:6.360000px;}
.ws21{word-spacing:6.427200px;}
.ws10{word-spacing:6.489600px;}
.ws71{word-spacing:6.864000px;}
.ws7a{word-spacing:7.140000px;}
.ws5f{word-spacing:7.425600px;}
.ws1e{word-spacing:7.488000px;}
.wsc{word-spacing:7.612800px;}
.wsf{word-spacing:8.112000px;}
.ws25{word-spacing:8.299200px;}
.ws3{word-spacing:8.361600px;}
.ws6e{word-spacing:8.486400px;}
.ws45{word-spacing:9.172800px;}
.ws49{word-spacing:10.845000px;}
.wse{word-spacing:11.419200px;}
.wsd{word-spacing:13.228800px;}
.ws12{word-spacing:16.910400px;}
.ws14{word-spacing:17.284800px;}
._c{margin-left:-7.044000px;}
._d{margin-left:-5.469600px;}
._6{margin-left:-4.296000px;}
._1{margin-left:-2.880000px;}
._0{margin-left:-1.764600px;}
._2{width:1.035000px;}
._4{width:2.121600px;}
._3{width:3.244800px;}
._5{width:5.179200px;}
._7{width:7.051200px;}
._9{width:8.548800px;}
._a{width:10.670400px;}
._8{width:14.476800px;}
._b{width:767.385000px;}
.fc3{color:transparent;}
.fc1{color:rgb(210,32,39);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:26.430000px;}
.fs8{font-size:30.000000px;}
.fs2{font-size:36.000000px;}
.fs4{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs6{font-size:60.000000px;}
.fs9{font-size:60.600000px;}
.fs5{font-size:62.400000px;}
.fs0{font-size:96.000000px;}
.fs1{font-size:378.000000px;}
.y34{bottom:-350.615362px;}
.y30{bottom:-189.061987px;}
.y3d{bottom:-187.625512px;}
.y2f{bottom:-181.132987px;}
.y33{bottom:-33.158025px;}
.y39{bottom:-26.072137px;}
.y32{bottom:-25.229025px;}
.y46{bottom:-22.985813px;}
.y38{bottom:-18.143137px;}
.y31{bottom:-17.300025px;}
.y0{bottom:0.000000px;}
.y4{bottom:87.267000px;}
.y7e{bottom:87.862200px;}
.yac{bottom:118.938300px;}
.y89{bottom:123.185100px;}
.yb{bottom:126.795150px;}
.y3c{bottom:129.831825px;}
.y2b{bottom:130.176900px;}
.yd3{bottom:131.025600px;}
.yb7{bottom:131.800050px;}
.yab{bottom:132.438300px;}
.y84{bottom:132.439350px;}
.y81{bottom:132.867000px;}
.ya4{bottom:136.007850px;}
.y88{bottom:136.685100px;}
.y3b{bottom:137.760825px;}
.y42{bottom:138.567562px;}
.y2e{bottom:138.703050px;}
.ya{bottom:140.295150px;}
.y7d{bottom:141.722400px;}
.yb6{bottom:145.300050px;}
.y3a{bottom:145.689825px;}
.y80{bottom:146.367000px;}
.y41{bottom:146.496562px;}
.y2d{bottom:146.632050px;}
.y2a{bottom:148.896900px;}
.ya3{bottom:154.727850px;}
.y101{bottom:158.047050px;}
.yb5{bottom:158.800050px;}
.y7f{bottom:159.867000px;}
.y7c{bottom:160.442400px;}
.ye7{bottom:163.086750px;}
.y3e{bottom:163.701000px;}
.yb3{bottom:165.711300px;}
.y29{bottom:167.616900px;}
.yb4{bottom:172.300050px;}
.ya2{bottom:173.447850px;}
.y100{bottom:174.545550px;}
.y7b{bottom:179.162400px;}
.yb2{bottom:179.211300px;}
.yaa{bottom:186.224550px;}
.y28{bottom:186.336900px;}
.yff{bottom:191.044050px;}
.ya1{bottom:192.167850px;}
.y7a{bottom:197.882400px;}
.ya9{bottom:199.724550px;}
.y27{bottom:205.056900px;}
.ya0{bottom:210.887850px;}
.ya8{bottom:213.224550px;}
.yfe{bottom:213.547800px;}
.y79{bottom:216.602400px;}
.y112{bottom:219.183300px;}
.y26{bottom:223.776900px;}
.y9f{bottom:229.607850px;}
.yfd{bottom:230.046300px;}
.y78{bottom:235.322400px;}
.y111{bottom:240.182550px;}
.y25{bottom:242.496900px;}
.yfc{bottom:246.544800px;}
.y9e{bottom:248.327850px;}
.y77{bottom:254.042400px;}
.y110{bottom:256.681050px;}
.y24{bottom:261.216900px;}
.y9d{bottom:267.047850px;}
.yfb{bottom:269.048550px;}
.y76{bottom:272.762400px;}
.y10f{bottom:273.179550px;}
.y23{bottom:279.936900px;}
.yfa{bottom:285.547050px;}
.y9c{bottom:285.767850px;}
.y75{bottom:291.482400px;}
.y45{bottom:294.471525px;}
.y10e{bottom:295.683300px;}
.y22{bottom:298.656900px;}
.y37{bottom:301.692900px;}
.yf9{bottom:302.045550px;}
.y44{bottom:302.400525px;}
.y9b{bottom:304.487850px;}
.y36{bottom:309.621900px;}
.y74{bottom:310.202400px;}
.y43{bottom:310.329525px;}
.y10d{bottom:312.181800px;}
.y21{bottom:317.376900px;}
.yf8{bottom:318.544050px;}
.y9a{bottom:323.207850px;}
.y87{bottom:326.540100px;}
.y10c{bottom:328.680300px;}
.y73{bottom:328.922400px;}
.y20{bottom:336.096900px;}
.y86{bottom:340.040100px;}
.yf7{bottom:341.047800px;}
.y9{bottom:341.523900px;}
.y99{bottom:341.927850px;}
.y72{bottom:347.642400px;}
.y10b{bottom:351.184050px;}
.y85{bottom:353.540100px;}
.y1f{bottom:354.816900px;}
.y8{bottom:355.023900px;}
.yf6{bottom:357.546300px;}
.yd2{bottom:357.690600px;}
.y98{bottom:360.647850px;}
.y71{bottom:366.362400px;}
.y10a{bottom:367.682550px;}
.yd1{bottom:371.190600px;}
.y1e{bottom:373.536900px;}
.yf5{bottom:374.044800px;}
.y35{bottom:378.424500px;}
.y97{bottom:379.367850px;}
.y70{bottom:385.082400px;}
.y109{bottom:390.186300px;}
.yf4{bottom:390.543300px;}
.y1d{bottom:392.256900px;}
.y96{bottom:398.087850px;}
.y6f{bottom:403.802400px;}
.y108{bottom:406.684800px;}
.y1c{bottom:410.976900px;}
.y50{bottom:411.473250px;}
.yf3{bottom:413.047050px;}
.y95{bottom:416.807850px;}
.y6e{bottom:422.522400px;}
.y107{bottom:423.183300px;}
.y4f{bottom:424.973250px;}
.yf2{bottom:429.545550px;}
.y1b{bottom:429.696900px;}
.y94{bottom:435.527850px;}
.y4e{bottom:438.473250px;}
.ye6{bottom:438.685800px;}
.y6d{bottom:441.242400px;}
.y106{bottom:445.687050px;}
.yf1{bottom:446.044050px;}
.y1a{bottom:448.416900px;}
.y4d{bottom:451.973250px;}
.ye5{bottom:452.185800px;}
.y93{bottom:454.247850px;}
.y6c{bottom:459.962400px;}
.y105{bottom:462.185550px;}
.y4c{bottom:465.473250px;}
.ye4{bottom:465.685800px;}
.y40{bottom:466.332600px;}
.y19{bottom:467.136900px;}
.yf0{bottom:468.547800px;}
.y92{bottom:472.967850px;}
.y3f{bottom:474.261600px;}
.y6b{bottom:478.682400px;}
.y4b{bottom:478.973250px;}
.ye3{bottom:479.185800px;}
.y104{bottom:484.689300px;}
.yef{bottom:485.046300px;}
.y18{bottom:485.856900px;}
.y91{bottom:491.687850px;}
.y4a{bottom:492.473250px;}
.ye2{bottom:492.685800px;}
.y6a{bottom:497.402400px;}
.y103{bottom:501.187800px;}
.yee{bottom:501.544800px;}
.y17{bottom:504.576900px;}
.y49{bottom:505.973250px;}
.ye1{bottom:506.185800px;}
.y90{bottom:510.407850px;}
.y69{bottom:516.122400px;}
.y102{bottom:517.686300px;}
.yed{bottom:518.043300px;}
.y48{bottom:519.473250px;}
.ye0{bottom:519.685800px;}
.y16{bottom:523.296900px;}
.y8f{bottom:529.127850px;}
.y47{bottom:532.973250px;}
.ydf{bottom:533.185800px;}
.y68{bottom:534.842400px;}
.yec{bottom:539.047350px;}
.y15{bottom:542.016900px;}
.y8e{bottom:547.847850px;}
.y67{bottom:553.562400px;}
.y7{bottom:556.252650px;}
.y14{bottom:560.736900px;}
.y8d{bottom:566.567850px;}
.y6{bottom:569.752650px;}
.y66{bottom:572.282400px;}
.yaf{bottom:573.157050px;}
.yeb{bottom:575.047350px;}
.yd0{bottom:575.918100px;}
.y13{bottom:579.456900px;}
.yae{bottom:586.657050px;}
.ycf{bottom:589.418100px;}
.y65{bottom:591.002400px;}
.yea{bottom:591.547350px;}
.y2c{bottom:593.149500px;}
.y12{bottom:598.176900px;}
.yad{bottom:600.157050px;}
.yce{bottom:602.918100px;}
.ye9{bottom:608.047350px;}
.y64{bottom:609.722400px;}
.ycd{bottom:616.418100px;}
.y11{bottom:616.896900px;}
.y8c{bottom:617.791350px;}
.ycb{bottom:623.132400px;}
.y63{bottom:628.442400px;}
.ye8{bottom:628.795350px;}
.ycc{bottom:629.918100px;}
.y8b{bottom:631.291350px;}
.y10{bottom:635.616900px;}
.yb1{bottom:636.827550px;}
.ya7{bottom:641.185800px;}
.yca{bottom:641.852400px;}
.y8a{bottom:644.791350px;}
.y62{bottom:647.162400px;}
.yb0{bottom:650.327550px;}
.yf{bottom:654.336900px;}
.ya6{bottom:654.685800px;}
.yc9{bottom:659.852400px;}
.y61{bottom:665.882400px;}
.ya5{bottom:668.185800px;}
.ye{bottom:673.056900px;}
.yc8{bottom:677.852400px;}
.y60{bottom:684.602400px;}
.yd{bottom:691.776900px;}
.yc7{bottom:695.852400px;}
.y5f{bottom:703.322400px;}
.yc{bottom:710.496900px;}
.yc6{bottom:713.852400px;}
.y5e{bottom:722.042400px;}
.yc5{bottom:731.852400px;}
.y5d{bottom:740.762400px;}
.yc4{bottom:749.852400px;}
.y5c{bottom:759.482400px;}
.yc3{bottom:767.852400px;}
.y83{bottom:772.890600px;}
.y5b{bottom:778.202400px;}
.yde{bottom:783.939900px;}
.yc2{bottom:785.852400px;}
.y82{bottom:786.390600px;}
.y5a{bottom:796.922400px;}
.ydd{bottom:802.119900px;}
.yc1{bottom:803.852400px;}
.y59{bottom:815.642400px;}
.ydc{bottom:820.299900px;}
.yc0{bottom:821.852400px;}
.y58{bottom:834.362400px;}
.ydb{bottom:838.479900px;}
.ybf{bottom:839.852400px;}
.y57{bottom:853.082400px;}
.yda{bottom:856.659900px;}
.ybe{bottom:857.852400px;}
.y5{bottom:871.755000px;}
.y56{bottom:871.802400px;}
.yd9{bottom:874.839900px;}
.ybd{bottom:875.852400px;}
.y55{bottom:890.522400px;}
.yd8{bottom:893.019900px;}
.ybc{bottom:893.852400px;}
.y54{bottom:909.242400px;}
.yd7{bottom:911.199900px;}
.ybb{bottom:911.852400px;}
.y3{bottom:917.188050px;}
.y53{bottom:927.962400px;}
.yd6{bottom:929.379900px;}
.yba{bottom:929.852400px;}
.y2{bottom:935.962200px;}
.y52{bottom:946.682400px;}
.yd5{bottom:947.559900px;}
.yb9{bottom:947.852400px;}
.y1{bottom:964.762200px;}
.y51{bottom:965.402400px;}
.yd4{bottom:965.739900px;}
.yb8{bottom:965.852400px;}
.ha{height:18.351299px;}
.h14{height:32.906250px;}
.h15{height:32.976562px;}
.hc{height:33.750000px;}
.h17{height:34.937988px;}
.h18{height:34.962891px;}
.h16{height:35.037598px;}
.h6{height:39.550781px;}
.h10{height:41.103516px;}
.hf{height:41.132812px;}
.he{height:41.220703px;}
.h13{height:41.514551px;}
.h12{height:41.544141px;}
.h11{height:41.632910px;}
.h5{height:42.117188px;}
.h4{height:42.187500px;}
.hd{height:42.747656px;}
.h7{height:42.778125px;}
.h8{height:42.869531px;}
.h2{height:84.375000px;}
.hb{height:148.479000px;}
.h9{height:148.563000px;}
.h3{height:332.226562px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w2{width:229.606500px;}
.w1{width:884.250000px;}
.w0{width:884.409000px;}
.x0{left:0.000000px;}
.xe{left:52.618200px;}
.xa{left:54.000000px;}
.xc{left:55.275600px;}
.x6{left:59.527500px;}
.xd{left:68.031450px;}
.x11{left:148.818900px;}
.x12{left:153.070800px;}
.x9{left:205.314150px;}
.x8{left:245.752050px;}
.x3{left:312.094500px;}
.x7{left:318.897600px;}
.x13{left:501.719550px;}
.x1{left:526.696350px;}
.xf{left:564.235200px;}
.x2{left:567.640350px;}
.xb{left:608.031450px;}
.x5{left:647.359350px;}
.x4{left:702.850500px;}
.x10{left:704.126100px;}
@media print{
.v1{vertical-align:-1.520000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-3.946667pt;}
.ls9{letter-spacing:-3.400000pt;}
.lsa{letter-spacing:-1.237333pt;}
.ls6{letter-spacing:-1.194667pt;}
.ls8{letter-spacing:-1.152000pt;}
.ls5{letter-spacing:-0.981333pt;}
.ls3{letter-spacing:-0.258427pt;}
.ls2{letter-spacing:-0.023493pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.018133pt;}
.ls4{letter-spacing:0.375893pt;}
.ws70{word-spacing:-10.666667pt;}
.ws1c{word-spacing:-10.000000pt;}
.ws5b{word-spacing:-9.514667pt;}
.ws6f{word-spacing:-9.429333pt;}
.ws0{word-spacing:-8.000000pt;}
.ws2f{word-spacing:-6.666667pt;}
.ws5c{word-spacing:-6.600000pt;}
.ws7c{word-spacing:-4.533333pt;}
.ws33{word-spacing:-2.773333pt;}
.ws5d{word-spacing:-2.693333pt;}
.ws66{word-spacing:-2.662400pt;}
.ws34{word-spacing:-2.551467pt;}
.wsa{word-spacing:-2.385067pt;}
.ws57{word-spacing:-2.346667pt;}
.ws4f{word-spacing:-2.274133pt;}
.ws41{word-spacing:-2.163200pt;}
.ws4e{word-spacing:-2.052267pt;}
.ws65{word-spacing:-1.941333pt;}
.ws50{word-spacing:-1.719467pt;}
.ws5a{word-spacing:-1.600000pt;}
.ws27{word-spacing:-1.553067pt;}
.ws5e{word-spacing:-1.508267pt;}
.ws36{word-spacing:-1.497600pt;}
.ws73{word-spacing:-1.493333pt;}
.ws16{word-spacing:-1.456587pt;}
.ws4a{word-spacing:-1.400000pt;}
.ws37{word-spacing:-1.331200pt;}
.ws67{word-spacing:-1.275733pt;}
.ws2b{word-spacing:-1.164800pt;}
.ws51{word-spacing:-1.000000pt;}
.ws60{word-spacing:-0.998400pt;}
.ws6{word-spacing:-0.776533pt;}
.ws1f{word-spacing:-0.721067pt;}
.wsb{word-spacing:-0.665600pt;}
.ws74{word-spacing:-0.634667pt;}
.ws26{word-spacing:-0.610133pt;}
.ws2c{word-spacing:-0.499200pt;}
.ws77{word-spacing:-0.408000pt;}
.ws2{word-spacing:-0.277333pt;}
.ws3a{word-spacing:-0.200000pt;}
.ws7{word-spacing:-0.166400pt;}
.ws4b{word-spacing:-0.160000pt;}
.ws62{word-spacing:-0.055467pt;}
.ws1{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.023493pt;}
.ws7b{word-spacing:0.045333pt;}
.ws2e{word-spacing:0.055467pt;}
.ws19{word-spacing:0.093973pt;}
.ws15{word-spacing:0.164453pt;}
.ws3c{word-spacing:0.221867pt;}
.ws17{word-spacing:0.234933pt;}
.ws29{word-spacing:0.277333pt;}
.ws39{word-spacing:0.332800pt;}
.ws22{word-spacing:0.443733pt;}
.ws18{word-spacing:0.446373pt;}
.ws3d{word-spacing:0.499200pt;}
.ws3e{word-spacing:0.554667pt;}
.ws3f{word-spacing:0.610133pt;}
.ws68{word-spacing:0.665600pt;}
.ws9{word-spacing:0.721067pt;}
.ws61{word-spacing:0.776533pt;}
.ws40{word-spacing:0.832000pt;}
.ws56{word-spacing:0.906667pt;}
.ws3b{word-spacing:0.942933pt;}
.ws30{word-spacing:0.981333pt;}
.ws7d{word-spacing:1.042667pt;}
.ws20{word-spacing:1.053867pt;}
.ws4{word-spacing:1.164800pt;}
.ws47{word-spacing:1.194667pt;}
.ws28{word-spacing:1.275733pt;}
.ws55{word-spacing:1.493333pt;}
.ws72{word-spacing:1.497600pt;}
.ws35{word-spacing:1.608533pt;}
.ws44{word-spacing:1.664000pt;}
.ws5{word-spacing:1.774933pt;}
.ws75{word-spacing:1.994667pt;}
.ws52{word-spacing:2.040000pt;}
.ws4c{word-spacing:2.080000pt;}
.ws48{word-spacing:2.120000pt;}
.ws6c{word-spacing:2.274133pt;}
.ws2a{word-spacing:2.385067pt;}
.ws58{word-spacing:2.506667pt;}
.ws38{word-spacing:2.551467pt;}
.ws24{word-spacing:2.606933pt;}
.ws1a{word-spacing:2.936667pt;}
.ws31{word-spacing:2.939733pt;}
.ws79{word-spacing:2.992000pt;}
.ws69{word-spacing:3.050667pt;}
.ws63{word-spacing:3.106133pt;}
.ws6d{word-spacing:3.161600pt;}
.ws78{word-spacing:3.445333pt;}
.ws2d{word-spacing:3.549867pt;}
.ws8{word-spacing:3.605333pt;}
.ws6a{word-spacing:3.660800pt;}
.ws42{word-spacing:3.882667pt;}
.ws1d{word-spacing:4.270933pt;}
.ws7e{word-spacing:4.442667pt;}
.ws4d{word-spacing:4.492800pt;}
.ws53{word-spacing:4.533333pt;}
.ws6b{word-spacing:4.548267pt;}
.ws59{word-spacing:4.640000pt;}
.ws43{word-spacing:4.659200pt;}
.ws46{word-spacing:4.714667pt;}
.ws64{word-spacing:4.936533pt;}
.ws32{word-spacing:5.047467pt;}
.ws13{word-spacing:5.213867pt;}
.ws23{word-spacing:5.269333pt;}
.ws76{word-spacing:5.576000pt;}
.ws11{word-spacing:5.602133pt;}
.ws54{word-spacing:5.653333pt;}
.ws21{word-spacing:5.713067pt;}
.ws10{word-spacing:5.768533pt;}
.ws71{word-spacing:6.101333pt;}
.ws7a{word-spacing:6.346667pt;}
.ws5f{word-spacing:6.600533pt;}
.ws1e{word-spacing:6.656000pt;}
.wsc{word-spacing:6.766933pt;}
.wsf{word-spacing:7.210667pt;}
.ws25{word-spacing:7.377067pt;}
.ws3{word-spacing:7.432533pt;}
.ws6e{word-spacing:7.543467pt;}
.ws45{word-spacing:8.153600pt;}
.ws49{word-spacing:9.640000pt;}
.wse{word-spacing:10.150400pt;}
.wsd{word-spacing:11.758933pt;}
.ws12{word-spacing:15.031467pt;}
.ws14{word-spacing:15.364267pt;}
._c{margin-left:-6.261333pt;}
._d{margin-left:-4.861867pt;}
._6{margin-left:-3.818667pt;}
._1{margin-left:-2.560000pt;}
._0{margin-left:-1.568533pt;}
._2{width:0.920000pt;}
._4{width:1.885867pt;}
._3{width:2.884267pt;}
._5{width:4.603733pt;}
._7{width:6.267733pt;}
._9{width:7.598933pt;}
._a{width:9.484800pt;}
._8{width:12.868267pt;}
._b{width:682.120000pt;}
.fs7{font-size:23.493333pt;}
.fs8{font-size:26.666667pt;}
.fs2{font-size:32.000000pt;}
.fs4{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs6{font-size:53.333333pt;}
.fs9{font-size:53.866667pt;}
.fs5{font-size:55.466667pt;}
.fs0{font-size:85.333333pt;}
.fs1{font-size:336.000000pt;}
.y34{bottom:-311.658100pt;}
.y30{bottom:-168.055100pt;}
.y3d{bottom:-166.778233pt;}
.y2f{bottom:-161.007100pt;}
.y33{bottom:-29.473800pt;}
.y39{bottom:-23.175233pt;}
.y32{bottom:-22.425800pt;}
.y46{bottom:-20.431833pt;}
.y38{bottom:-16.127233pt;}
.y31{bottom:-15.377800pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:77.570667pt;}
.y7e{bottom:78.099733pt;}
.yac{bottom:105.722933pt;}
.y89{bottom:109.497867pt;}
.yb{bottom:112.706800pt;}
.y3c{bottom:115.406067pt;}
.y2b{bottom:115.712800pt;}
.yd3{bottom:116.467200pt;}
.yb7{bottom:117.155600pt;}
.yab{bottom:117.722933pt;}
.y84{bottom:117.723867pt;}
.y81{bottom:118.104000pt;}
.ya4{bottom:120.895867pt;}
.y88{bottom:121.497867pt;}
.y3b{bottom:122.454067pt;}
.y42{bottom:123.171167pt;}
.y2e{bottom:123.291600pt;}
.ya{bottom:124.706800pt;}
.y7d{bottom:125.975467pt;}
.yb6{bottom:129.155600pt;}
.y3a{bottom:129.502067pt;}
.y80{bottom:130.104000pt;}
.y41{bottom:130.219167pt;}
.y2d{bottom:130.339600pt;}
.y2a{bottom:132.352800pt;}
.ya3{bottom:137.535867pt;}
.y101{bottom:140.486267pt;}
.yb5{bottom:141.155600pt;}
.y7f{bottom:142.104000pt;}
.y7c{bottom:142.615467pt;}
.ye7{bottom:144.966000pt;}
.y3e{bottom:145.512000pt;}
.yb3{bottom:147.298933pt;}
.y29{bottom:148.992800pt;}
.yb4{bottom:153.155600pt;}
.ya2{bottom:154.175867pt;}
.y100{bottom:155.151600pt;}
.y7b{bottom:159.255467pt;}
.yb2{bottom:159.298933pt;}
.yaa{bottom:165.532933pt;}
.y28{bottom:165.632800pt;}
.yff{bottom:169.816933pt;}
.ya1{bottom:170.815867pt;}
.y7a{bottom:175.895467pt;}
.ya9{bottom:177.532933pt;}
.y27{bottom:182.272800pt;}
.ya0{bottom:187.455867pt;}
.ya8{bottom:189.532933pt;}
.yfe{bottom:189.820267pt;}
.y79{bottom:192.535467pt;}
.y112{bottom:194.829600pt;}
.y26{bottom:198.912800pt;}
.y9f{bottom:204.095867pt;}
.yfd{bottom:204.485600pt;}
.y78{bottom:209.175467pt;}
.y111{bottom:213.495600pt;}
.y25{bottom:215.552800pt;}
.yfc{bottom:219.150933pt;}
.y9e{bottom:220.735867pt;}
.y77{bottom:225.815467pt;}
.y110{bottom:228.160933pt;}
.y24{bottom:232.192800pt;}
.y9d{bottom:237.375867pt;}
.yfb{bottom:239.154267pt;}
.y76{bottom:242.455467pt;}
.y10f{bottom:242.826267pt;}
.y23{bottom:248.832800pt;}
.yfa{bottom:253.819600pt;}
.y9c{bottom:254.015867pt;}
.y75{bottom:259.095467pt;}
.y45{bottom:261.752467pt;}
.y10e{bottom:262.829600pt;}
.y22{bottom:265.472800pt;}
.y37{bottom:268.171467pt;}
.yf9{bottom:268.484933pt;}
.y44{bottom:268.800467pt;}
.y9b{bottom:270.655867pt;}
.y36{bottom:275.219467pt;}
.y74{bottom:275.735467pt;}
.y43{bottom:275.848467pt;}
.y10d{bottom:277.494933pt;}
.y21{bottom:282.112800pt;}
.yf8{bottom:283.150267pt;}
.y9a{bottom:287.295867pt;}
.y87{bottom:290.257867pt;}
.y10c{bottom:292.160267pt;}
.y73{bottom:292.375467pt;}
.y20{bottom:298.752800pt;}
.y86{bottom:302.257867pt;}
.yf7{bottom:303.153600pt;}
.y9{bottom:303.576800pt;}
.y99{bottom:303.935867pt;}
.y72{bottom:309.015467pt;}
.y10b{bottom:312.163600pt;}
.y85{bottom:314.257867pt;}
.y1f{bottom:315.392800pt;}
.y8{bottom:315.576800pt;}
.yf6{bottom:317.818933pt;}
.yd2{bottom:317.947200pt;}
.y98{bottom:320.575867pt;}
.y71{bottom:325.655467pt;}
.y10a{bottom:326.828933pt;}
.yd1{bottom:329.947200pt;}
.y1e{bottom:332.032800pt;}
.yf5{bottom:332.484267pt;}
.y35{bottom:336.377333pt;}
.y97{bottom:337.215867pt;}
.y70{bottom:342.295467pt;}
.y109{bottom:346.832267pt;}
.yf4{bottom:347.149600pt;}
.y1d{bottom:348.672800pt;}
.y96{bottom:353.855867pt;}
.y6f{bottom:358.935467pt;}
.y108{bottom:361.497600pt;}
.y1c{bottom:365.312800pt;}
.y50{bottom:365.754000pt;}
.yf3{bottom:367.152933pt;}
.y95{bottom:370.495867pt;}
.y6e{bottom:375.575467pt;}
.y107{bottom:376.162933pt;}
.y4f{bottom:377.754000pt;}
.yf2{bottom:381.818267pt;}
.y1b{bottom:381.952800pt;}
.y94{bottom:387.135867pt;}
.y4e{bottom:389.754000pt;}
.ye6{bottom:389.942933pt;}
.y6d{bottom:392.215467pt;}
.y106{bottom:396.166267pt;}
.yf1{bottom:396.483600pt;}
.y1a{bottom:398.592800pt;}
.y4d{bottom:401.754000pt;}
.ye5{bottom:401.942933pt;}
.y93{bottom:403.775867pt;}
.y6c{bottom:408.855467pt;}
.y105{bottom:410.831600pt;}
.y4c{bottom:413.754000pt;}
.ye4{bottom:413.942933pt;}
.y40{bottom:414.517867pt;}
.y19{bottom:415.232800pt;}
.yf0{bottom:416.486933pt;}
.y92{bottom:420.415867pt;}
.y3f{bottom:421.565867pt;}
.y6b{bottom:425.495467pt;}
.y4b{bottom:425.754000pt;}
.ye3{bottom:425.942933pt;}
.y104{bottom:430.834933pt;}
.yef{bottom:431.152267pt;}
.y18{bottom:431.872800pt;}
.y91{bottom:437.055867pt;}
.y4a{bottom:437.754000pt;}
.ye2{bottom:437.942933pt;}
.y6a{bottom:442.135467pt;}
.y103{bottom:445.500267pt;}
.yee{bottom:445.817600pt;}
.y17{bottom:448.512800pt;}
.y49{bottom:449.754000pt;}
.ye1{bottom:449.942933pt;}
.y90{bottom:453.695867pt;}
.y69{bottom:458.775467pt;}
.y102{bottom:460.165600pt;}
.yed{bottom:460.482933pt;}
.y48{bottom:461.754000pt;}
.ye0{bottom:461.942933pt;}
.y16{bottom:465.152800pt;}
.y8f{bottom:470.335867pt;}
.y47{bottom:473.754000pt;}
.ydf{bottom:473.942933pt;}
.y68{bottom:475.415467pt;}
.yec{bottom:479.153200pt;}
.y15{bottom:481.792800pt;}
.y8e{bottom:486.975867pt;}
.y67{bottom:492.055467pt;}
.y7{bottom:494.446800pt;}
.y14{bottom:498.432800pt;}
.y8d{bottom:503.615867pt;}
.y6{bottom:506.446800pt;}
.y66{bottom:508.695467pt;}
.yaf{bottom:509.472933pt;}
.yeb{bottom:511.153200pt;}
.yd0{bottom:511.927200pt;}
.y13{bottom:515.072800pt;}
.yae{bottom:521.472933pt;}
.ycf{bottom:523.927200pt;}
.y65{bottom:525.335467pt;}
.yea{bottom:525.819867pt;}
.y2c{bottom:527.244000pt;}
.y12{bottom:531.712800pt;}
.yad{bottom:533.472933pt;}
.yce{bottom:535.927200pt;}
.ye9{bottom:540.486533pt;}
.y64{bottom:541.975467pt;}
.ycd{bottom:547.927200pt;}
.y11{bottom:548.352800pt;}
.y8c{bottom:549.147867pt;}
.ycb{bottom:553.895467pt;}
.y63{bottom:558.615467pt;}
.ye8{bottom:558.929200pt;}
.ycc{bottom:559.927200pt;}
.y8b{bottom:561.147867pt;}
.y10{bottom:564.992800pt;}
.yb1{bottom:566.068933pt;}
.ya7{bottom:569.942933pt;}
.yca{bottom:570.535467pt;}
.y8a{bottom:573.147867pt;}
.y62{bottom:575.255467pt;}
.yb0{bottom:578.068933pt;}
.yf{bottom:581.632800pt;}
.ya6{bottom:581.942933pt;}
.yc9{bottom:586.535467pt;}
.y61{bottom:591.895467pt;}
.ya5{bottom:593.942933pt;}
.ye{bottom:598.272800pt;}
.yc8{bottom:602.535467pt;}
.y60{bottom:608.535467pt;}
.yd{bottom:614.912800pt;}
.yc7{bottom:618.535467pt;}
.y5f{bottom:625.175467pt;}
.yc{bottom:631.552800pt;}
.yc6{bottom:634.535467pt;}
.y5e{bottom:641.815467pt;}
.yc5{bottom:650.535467pt;}
.y5d{bottom:658.455467pt;}
.yc4{bottom:666.535467pt;}
.y5c{bottom:675.095467pt;}
.yc3{bottom:682.535467pt;}
.y83{bottom:687.013867pt;}
.y5b{bottom:691.735467pt;}
.yde{bottom:696.835467pt;}
.yc2{bottom:698.535467pt;}
.y82{bottom:699.013867pt;}
.y5a{bottom:708.375467pt;}
.ydd{bottom:712.995467pt;}
.yc1{bottom:714.535467pt;}
.y59{bottom:725.015467pt;}
.ydc{bottom:729.155467pt;}
.yc0{bottom:730.535467pt;}
.y58{bottom:741.655467pt;}
.ydb{bottom:745.315467pt;}
.ybf{bottom:746.535467pt;}
.y57{bottom:758.295467pt;}
.yda{bottom:761.475467pt;}
.ybe{bottom:762.535467pt;}
.y5{bottom:774.893333pt;}
.y56{bottom:774.935467pt;}
.yd9{bottom:777.635467pt;}
.ybd{bottom:778.535467pt;}
.y55{bottom:791.575467pt;}
.yd8{bottom:793.795467pt;}
.ybc{bottom:794.535467pt;}
.y54{bottom:808.215467pt;}
.yd7{bottom:809.955467pt;}
.ybb{bottom:810.535467pt;}
.y3{bottom:815.278267pt;}
.y53{bottom:824.855467pt;}
.yd6{bottom:826.115467pt;}
.yba{bottom:826.535467pt;}
.y2{bottom:831.966400pt;}
.y52{bottom:841.495467pt;}
.yd5{bottom:842.275467pt;}
.yb9{bottom:842.535467pt;}
.y1{bottom:857.566400pt;}
.y51{bottom:858.135467pt;}
.yd4{bottom:858.435467pt;}
.yb8{bottom:858.535467pt;}
.ha{height:16.312266pt;}
.h14{height:29.250000pt;}
.h15{height:29.312500pt;}
.hc{height:30.000000pt;}
.h17{height:31.055990pt;}
.h18{height:31.078125pt;}
.h16{height:31.144531pt;}
.h6{height:35.156250pt;}
.h10{height:36.536458pt;}
.hf{height:36.562500pt;}
.he{height:36.640625pt;}
.h13{height:36.901823pt;}
.h12{height:36.928125pt;}
.h11{height:37.007031pt;}
.h5{height:37.437500pt;}
.h4{height:37.500000pt;}
.hd{height:37.997917pt;}
.h7{height:38.025000pt;}
.h8{height:38.106250pt;}
.h2{height:75.000000pt;}
.hb{height:131.981333pt;}
.h9{height:132.056000pt;}
.h3{height:295.312500pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w2{width:204.094667pt;}
.w1{width:786.000000pt;}
.w0{width:786.141333pt;}
.x0{left:0.000000pt;}
.xe{left:46.771733pt;}
.xa{left:48.000000pt;}
.xc{left:49.133867pt;}
.x6{left:52.913333pt;}
.xd{left:60.472400pt;}
.x11{left:132.283467pt;}
.x12{left:136.062933pt;}
.x9{left:182.501467pt;}
.x8{left:218.446267pt;}
.x3{left:277.417333pt;}
.x7{left:283.464533pt;}
.x13{left:445.972933pt;}
.x1{left:468.174533pt;}
.xf{left:501.542400pt;}
.x2{left:504.569200pt;}
.xb{left:540.472400pt;}
.x5{left:575.430533pt;}
.x4{left:624.756000pt;}
.x10{left:625.889867pt;}
}

