
    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_17dd1c2415b836fda4ba927c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.163086;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_66c0eef18d1871d84726c38f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.159668;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_48f15a99997516dedf14d528.woff')format("woff");}.ff3{font-family:ff3;line-height:1.154000;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_f445ac1a09257a3d6248336b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.697000;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;}
.m2{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.185162,0.000000,-0.039358,0.246882,0,0);-ms-transform:matrix(0.185162,0.000000,-0.039358,0.246882,0,0);-webkit-transform:matrix(0.185162,0.000000,-0.039358,0.246882,0,0);}
.m0{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-37.929600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.004800px;}
.v1{vertical-align:53.299200px;}
.ls11{letter-spacing:-0.307800px;}
.ls4{letter-spacing:-0.033600px;}
.ls2{letter-spacing:-0.028800px;}
.ls1{letter-spacing:-0.014400px;}
.lsa{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.254400px;}
.ls8{letter-spacing:0.264000px;}
.ls12{letter-spacing:0.286200px;}
.ls10{letter-spacing:0.291600px;}
.ls6{letter-spacing:0.297000px;}
.ls0{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.328091px;}
.ls5{letter-spacing:0.334167px;}
.lsd{letter-spacing:0.450000px;}
.ls7{letter-spacing:0.654000px;}
.lsb{letter-spacing:0.990000px;}
.lse{letter-spacing:17.904000px;}
.lsf{letter-spacing:20.556000px;}
.lsc{letter-spacing:22.914000px;}
.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;}
}
.ws49{word-spacing:-13.344000px;}
.ws58{word-spacing:-2.388000px;}
.ws1c{word-spacing:-2.370000px;}
.ws2d{word-spacing:-2.202000px;}
.ws36{word-spacing:-2.136000px;}
.ws73{word-spacing:-2.118000px;}
.ws60{word-spacing:-2.088000px;}
.ws6e{word-spacing:-2.058000px;}
.ws33{word-spacing:-1.980000px;}
.ws4c{word-spacing:-1.968000px;}
.ws57{word-spacing:-1.842000px;}
.wsb3{word-spacing:-1.656000px;}
.ws4e{word-spacing:-1.650000px;}
.ws2b{word-spacing:-1.422000px;}
.ws53{word-spacing:-1.291200px;}
.wsb0{word-spacing:-1.200000px;}
.wsa1{word-spacing:-1.194000px;}
.ws24{word-spacing:-1.116000px;}
.ws70{word-spacing:-1.080000px;}
.ws69{word-spacing:-0.942000px;}
.ws16{word-spacing:-0.936000px;}
.ws71{word-spacing:-0.918000px;}
.wsbc{word-spacing:-0.907200px;}
.ws8e{word-spacing:-0.900000px;}
.ws25{word-spacing:-0.822000px;}
.wsb4{word-spacing:-0.738000px;}
.ws4d{word-spacing:-0.654000px;}
.ws8a{word-spacing:-0.642000px;}
.ws8b{word-spacing:-0.594000px;}
.wsbd{word-spacing:-0.577800px;}
.wsa3{word-spacing:-0.552000px;}
.ws91{word-spacing:-0.492000px;}
.ws7{word-spacing:-0.486000px;}
.ws1e{word-spacing:-0.396000px;}
.ws18{word-spacing:-0.306000px;}
.ws37{word-spacing:-0.258000px;}
.ws2f{word-spacing:-0.210000px;}
.wsbf{word-spacing:-0.097200px;}
.ws72{word-spacing:-0.054000px;}
.ws3d{word-spacing:-0.048000px;}
.ws7e{word-spacing:-0.006000px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:0.012000px;}
.ws3a{word-spacing:0.282000px;}
.ws39{word-spacing:0.348000px;}
.wsba{word-spacing:0.442800px;}
.ws64{word-spacing:0.444000px;}
.ws98{word-spacing:0.450000px;}
.ws96{word-spacing:0.486000px;}
.wse{word-spacing:0.540000px;}
.ws2e{word-spacing:0.630000px;}
.ws78{word-spacing:0.636000px;}
.wsa4{word-spacing:0.702000px;}
.ws89{word-spacing:0.714000px;}
.ws6b{word-spacing:0.720000px;}
.ws9f{word-spacing:0.738000px;}
.ws85{word-spacing:0.744000px;}
.wsa9{word-spacing:0.756000px;}
.ws38{word-spacing:0.762000px;}
.ws99{word-spacing:0.786000px;}
.wsb2{word-spacing:0.798000px;}
.ws28{word-spacing:0.906000px;}
.ws51{word-spacing:0.942000px;}
.ws1b{word-spacing:0.966000px;}
.ws86{word-spacing:1.014000px;}
.ws82{word-spacing:1.032000px;}
.ws3b{word-spacing:1.068000px;}
.ws95{word-spacing:1.074000px;}
.wsb1{word-spacing:1.080000px;}
.ws88{word-spacing:1.092000px;}
.ws66{word-spacing:1.140000px;}
.ws59{word-spacing:1.146000px;}
.ws7c{word-spacing:1.260000px;}
.ws77{word-spacing:1.284000px;}
.wsaa{word-spacing:1.326000px;}
.ws7b{word-spacing:1.329600px;}
.ws44{word-spacing:1.334400px;}
.ws12{word-spacing:1.350000px;}
.ws29{word-spacing:1.374000px;}
.ws9d{word-spacing:1.458000px;}
.wsc{word-spacing:1.482000px;}
.wsb8{word-spacing:1.495800px;}
.ws4f{word-spacing:1.500000px;}
.ws45{word-spacing:1.501200px;}
.ws6a{word-spacing:1.572000px;}
.ws62{word-spacing:1.578000px;}
.ws2c{word-spacing:1.614000px;}
.ws9a{word-spacing:1.662000px;}
.ws2{word-spacing:1.668000px;}
.ws52{word-spacing:1.682987px;}
.ws3{word-spacing:1.689063px;}
.ws2a{word-spacing:1.722000px;}
.ws1d{word-spacing:1.776000px;}
.ws23{word-spacing:1.806000px;}
.wsb5{word-spacing:1.830000px;}
.wsa7{word-spacing:1.884000px;}
.wsae{word-spacing:1.932000px;}
.wsac{word-spacing:1.986000px;}
.ws9{word-spacing:2.010000px;}
.ws5b{word-spacing:2.022000px;}
.ws42{word-spacing:2.088000px;}
.ws8d{word-spacing:2.094000px;}
.wsad{word-spacing:2.112000px;}
.ws6{word-spacing:2.220000px;}
.wsbb{word-spacing:2.268000px;}
.ws19{word-spacing:2.292000px;}
.ws4{word-spacing:2.316000px;}
.ws74{word-spacing:2.328000px;}
.wsab{word-spacing:2.430000px;}
.wsb6{word-spacing:2.442000px;}
.ws56{word-spacing:2.466000px;}
.ws97{word-spacing:2.538000px;}
.ws80{word-spacing:2.562000px;}
.ws10{word-spacing:2.568000px;}
.ws67{word-spacing:2.610000px;}
.wsaf{word-spacing:2.616000px;}
.ws68{word-spacing:2.622000px;}
.ws8f{word-spacing:2.652000px;}
.ws90{word-spacing:2.658000px;}
.ws8{word-spacing:2.772000px;}
.ws63{word-spacing:2.874000px;}
.ws11{word-spacing:2.934000px;}
.ws3f{word-spacing:2.982000px;}
.wsa6{word-spacing:3.018000px;}
.ws30{word-spacing:3.084000px;}
.ws83{word-spacing:3.096000px;}
.wsa5{word-spacing:3.102000px;}
.ws81{word-spacing:3.108000px;}
.ws32{word-spacing:3.138000px;}
.ws13{word-spacing:3.156000px;}
.ws75{word-spacing:3.162000px;}
.ws14{word-spacing:3.189777px;}
.ws40{word-spacing:3.330000px;}
.ws1f{word-spacing:3.366000px;}
.wsb9{word-spacing:3.423600px;}
.ws9c{word-spacing:3.546000px;}
.ws6f{word-spacing:3.570000px;}
.ws55{word-spacing:3.600000px;}
.ws92{word-spacing:3.606000px;}
.ws4b{word-spacing:3.654000px;}
.ws6c{word-spacing:3.726000px;}
.ws7d{word-spacing:3.834000px;}
.ws27{word-spacing:3.930000px;}
.ws50{word-spacing:3.972000px;}
.ws0{word-spacing:4.003200px;}
.wsb7{word-spacing:4.086000px;}
.ws65{word-spacing:4.146000px;}
.ws94{word-spacing:4.188000px;}
.ws26{word-spacing:4.428000px;}
.ws22{word-spacing:4.506000px;}
.ws5e{word-spacing:4.584000px;}
.ws61{word-spacing:4.770000px;}
.ws5{word-spacing:4.884000px;}
.wsb{word-spacing:4.896000px;}
.ws9b{word-spacing:4.992000px;}
.ws93{word-spacing:5.160000px;}
.wsa0{word-spacing:5.460000px;}
.ws87{word-spacing:5.874000px;}
.wsa8{word-spacing:5.970000px;}
.ws17{word-spacing:5.994000px;}
.wsd{word-spacing:6.048000px;}
.ws84{word-spacing:6.222000px;}
.ws9e{word-spacing:6.324000px;}
.wsbe{word-spacing:6.469200px;}
.ws54{word-spacing:6.516000px;}
.ws5d{word-spacing:6.534000px;}
.ws41{word-spacing:7.038000px;}
.ws35{word-spacing:7.218000px;}
.wsa{word-spacing:7.566000px;}
.ws6d{word-spacing:7.584000px;}
.ws5f{word-spacing:7.632000px;}
.wsa2{word-spacing:7.710000px;}
.ws15{word-spacing:7.824000px;}
.ws79{word-spacing:8.112000px;}
.ws5a{word-spacing:8.340000px;}
.ws7a{word-spacing:8.574000px;}
.ws1a{word-spacing:8.766000px;}
.ws21{word-spacing:9.138000px;}
.ws8c{word-spacing:9.408000px;}
.ws43{word-spacing:10.073620px;}
.ws34{word-spacing:10.380000px;}
.ws5c{word-spacing:10.848000px;}
.ws7f{word-spacing:11.400000px;}
.ws3e{word-spacing:11.616000px;}
.ws31{word-spacing:12.948000px;}
.ws20{word-spacing:13.050000px;}
.ws3c{word-spacing:13.188000px;}
.ws4a{word-spacing:73.159200px;}
.ws47{word-spacing:235.406400px;}
.ws76{word-spacing:331.268400px;}
.ws46{word-spacing:333.096000px;}
.ws48{word-spacing:404.059200px;}
._7{margin-left:-6.642000px;}
._8{margin-left:-5.583629px;}
._1{margin-left:-4.434000px;}
._4{margin-left:-3.288000px;}
._5{margin-left:-2.214000px;}
._6{margin-left:-1.068000px;}
._1a{width:12.321600px;}
._1d{width:13.845600px;}
._2{width:15.396000px;}
._0{width:16.464000px;}
._3{width:17.610000px;}
._13{width:92.064600px;}
._15{width:96.487800px;}
._9{width:122.385600px;}
._1b{width:350.281800px;}
._1c{width:354.277800px;}
._12{width:498.792600px;}
._19{width:783.399600px;}
._10{width:794.469600px;}
._d{width:801.041400px;}
._e{width:865.188000px;}
._16{width:892.674000px;}
._17{width:913.069800px;}
._18{width:1022.992200px;}
._a{width:1050.316200px;}
._f{width:1078.169400px;}
._11{width:1095.562800px;}
._14{width:1110.483000px;}
._b{width:1126.213200px;}
._c{width:1291.820400px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:60.757658px;}
.fs3{font-size:84.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y77{bottom:11.463150px;}
.yaa{bottom:12.796500px;}
.ya2{bottom:35.510250px;}
.y6b{bottom:36.260250px;}
.y1c{bottom:57.538650px;}
.ya3{bottom:72.878250px;}
.y6c{bottom:73.628250px;}
.y1{bottom:83.764500px;}
.ya4{bottom:110.246250px;}
.y6d{bottom:110.996250px;}
.y1b{bottom:129.645750px;}
.yb9{bottom:131.083800px;}
.y44{bottom:132.217350px;}
.y50{bottom:133.209000px;}
.y7e{bottom:136.030500px;}
.ya5{bottom:147.614250px;}
.y19{bottom:147.645600px;}
.y1a{bottom:147.645750px;}
.y6e{bottom:148.364250px;}
.yb8{bottom:149.083800px;}
.y73{bottom:149.859000px;}
.y43{bottom:150.217350px;}
.y4f{bottom:151.209000px;}
.y7d{bottom:154.030500px;}
.y18{bottom:165.645600px;}
.yb7{bottom:167.083800px;}
.y42{bottom:168.217350px;}
.y4e{bottom:169.209000px;}
.y7c{bottom:172.030500px;}
.yea{bottom:174.595500px;}
.ycf{bottom:180.973500px;}
.y17{bottom:183.645600px;}
.ya6{bottom:184.982250px;}
.y6f{bottom:185.732250px;}
.y41{bottom:186.217350px;}
.y4d{bottom:187.209000px;}
.y7b{bottom:190.030500px;}
.yb6{bottom:191.461800px;}
.ye9{bottom:192.595500px;}
.yce{bottom:198.973500px;}
.y16{bottom:201.645600px;}
.y4c{bottom:205.209000px;}
.y7a{bottom:208.030500px;}
.yb5{bottom:209.461800px;}
.y40{bottom:210.595350px;}
.ye8{bottom:210.595500px;}
.y98{bottom:214.989000px;}
.ycd{bottom:216.973500px;}
.ya7{bottom:222.350250px;}
.y70{bottom:223.100250px;}
.y4b{bottom:223.209000px;}
.y15{bottom:226.023600px;}
.yb4{bottom:227.461800px;}
.y76{bottom:227.931000px;}
.ye7{bottom:228.595500px;}
.y79{bottom:232.408500px;}
.y74{bottom:232.769400px;}
.y97{bottom:232.989000px;}
.ycc{bottom:234.973500px;}
.y4a{bottom:241.209000px;}
.y14{bottom:244.023600px;}
.yb3{bottom:245.461800px;}
.ye6{bottom:246.595500px;}
.y78{bottom:250.408500px;}
.y96{bottom:250.989000px;}
.y49{bottom:259.209000px;}
.y3f{bottom:259.351350px;}
.ycb{bottom:259.351500px;}
.ya8{bottom:259.718250px;}
.y71{bottom:260.468250px;}
.y13{bottom:262.023600px;}
.yb2{bottom:263.461800px;}
.ye5{bottom:264.595500px;}
.y75{bottom:268.413000px;}
.y95{bottom:268.989000px;}
.y48{bottom:277.209000px;}
.y3e{bottom:277.351350px;}
.yca{bottom:277.351500px;}
.y12{bottom:280.023600px;}
.yb1{bottom:281.461800px;}
.ye4{bottom:282.595500px;}
.y94{bottom:286.989000px;}
.y47{bottom:295.209000px;}
.y3d{bottom:295.351350px;}
.yc9{bottom:295.351500px;}
.ya9{bottom:297.086250px;}
.yaf{bottom:297.143850px;}
.y72{bottom:297.836250px;}
.y11{bottom:298.023600px;}
.yb0{bottom:299.461800px;}
.ye3{bottom:300.595500px;}
.y93{bottom:304.989000px;}
.y69{bottom:306.381600px;}
.y3c{bottom:313.351350px;}
.y3b{bottom:313.351500px;}
.yae{bottom:315.611850px;}
.y10{bottom:316.023600px;}
.ye2{bottom:318.595500px;}
.y92{bottom:329.367000px;}
.y3a{bottom:331.351500px;}
.yf{bottom:334.023600px;}
.yad{bottom:334.079850px;}
.yab{bottom:334.587600px;}
.ye1{bottom:336.595500px;}
.yc8{bottom:337.729500px;}
.y91{bottom:347.367000px;}
.y39{bottom:349.351500px;}
.y53{bottom:350.976600px;}
.yac{bottom:352.547850px;}
.ya0{bottom:354.012300px;}
.ye0{bottom:354.595500px;}
.yc7{bottom:355.729500px;}
.ye{bottom:358.401600px;}
.y90{bottom:365.367000px;}
.y38{bottom:367.351500px;}
.ydf{bottom:372.595500px;}
.yc6{bottom:373.729500px;}
.yd{bottom:376.401600px;}
.y61{bottom:379.877700px;}
.y8f{bottom:383.367000px;}
.y37{bottom:385.351500px;}
.yc5{bottom:391.729500px;}
.yc{bottom:394.401600px;}
.y6a{bottom:399.637500px;}
.y8e{bottom:401.367000px;}
.y60{bottom:402.378150px;}
.y36{bottom:403.351500px;}
.yc4{bottom:409.729500px;}
.yb{bottom:412.401600px;}
.y8d{bottom:419.367000px;}
.y5f{bottom:424.878600px;}
.y35{bottom:427.729500px;}
.ya{bottom:430.401600px;}
.y8c{bottom:437.367000px;}
.y34{bottom:445.729500px;}
.ya1{bottom:446.518500px;}
.y5e{bottom:447.379050px;}
.y9{bottom:448.401600px;}
.y8b{bottom:455.367000px;}
.yde{bottom:460.611000px;}
.y33{bottom:463.729500px;}
.y8{bottom:466.401600px;}
.y5d{bottom:469.879500px;}
.y8a{bottom:473.367000px;}
.ydd{bottom:478.611000px;}
.y32{bottom:481.729500px;}
.y89{bottom:491.367000px;}
.y5c{bottom:492.379950px;}
.ydc{bottom:496.611000px;}
.y7{bottom:497.157600px;}
.y31{bottom:499.729500px;}
.y88{bottom:509.367000px;}
.ydb{bottom:514.611000px;}
.y5b{bottom:514.880400px;}
.y30{bottom:517.729500px;}
.y87{bottom:527.367000px;}
.yc3{bottom:530.485500px;}
.yda{bottom:532.611000px;}
.y2f{bottom:535.729500px;}
.y5a{bottom:537.380850px;}
.yd9{bottom:550.611000px;}
.y86{bottom:551.745000px;}
.y2e{bottom:553.729500px;}
.yfc{bottom:557.340600px;}
.y59{bottom:559.881300px;}
.y85{bottom:569.745000px;}
.y2d{bottom:571.729500px;}
.yfb{bottom:573.840300px;}
.yd8{bottom:574.989000px;}
.y58{bottom:582.381750px;}
.y84{bottom:587.745000px;}
.y2c{bottom:589.729500px;}
.yfa{bottom:590.340000px;}
.yd7{bottom:592.989000px;}
.y57{bottom:604.882200px;}
.y83{bottom:605.745000px;}
.yd6{bottom:610.989000px;}
.yf9{bottom:613.218450px;}
.y2b{bottom:614.107500px;}
.y82{bottom:623.745000px;}
.y56{bottom:627.382650px;}
.yf8{bottom:629.718150px;}
.yd5{bottom:635.367000px;}
.y81{bottom:641.745000px;}
.y2a{bottom:644.863500px;}
.y55{bottom:649.883100px;}
.yf7{bottom:652.596600px;}
.yd4{bottom:653.367000px;}
.y80{bottom:659.745000px;}
.y68{bottom:662.695200px;}
.yf6{bottom:669.096300px;}
.yd3{bottom:671.367000px;}
.y54{bottom:672.383550px;}
.yc2{bottom:677.745000px;}
.y7f{bottom:684.123000px;}
.yd2{bottom:689.367000px;}
.yf5{bottom:691.974750px;}
.yc1{bottom:695.745000px;}
.y29{bottom:702.123000px;}
.yd1{bottom:707.367000px;}
.y52{bottom:708.040350px;}
.yf4{bottom:708.474450px;}
.y67{bottom:710.485500px;}
.yc0{bottom:713.745000px;}
.y28{bottom:720.123000px;}
.y51{bottom:726.040350px;}
.y66{bottom:728.485500px;}
.yf3{bottom:731.352900px;}
.ybf{bottom:731.745000px;}
.y27{bottom:738.123000px;}
.y65{bottom:746.485500px;}
.y9f{bottom:747.076050px;}
.ybe{bottom:749.745000px;}
.yf2{bottom:754.231350px;}
.y26{bottom:756.123000px;}
.y64{bottom:764.485500px;}
.ybd{bottom:767.745000px;}
.y25{bottom:774.123000px;}
.yf1{bottom:777.109800px;}
.y63{bottom:782.485500px;}
.ybc{bottom:785.745000px;}
.y24{bottom:792.123000px;}
.yf0{bottom:793.609500px;}
.y6{bottom:794.819100px;}
.y9e{bottom:797.367000px;}
.yd0{bottom:803.745000px;}
.y46{bottom:810.123000px;}
.y5{bottom:812.819100px;}
.y62{bottom:813.241500px;}
.yef{bottom:816.487950px;}
.y23{bottom:816.501000px;}
.y9d{bottom:821.745000px;}
.y45{bottom:828.123000px;}
.y4{bottom:830.819100px;}
.yee{bottom:832.987650px;}
.y22{bottom:834.501000px;}
.y9c{bottom:839.745000px;}
.ybb{bottom:846.123000px;}
.y21{bottom:852.501000px;}
.yed{bottom:855.866100px;}
.y9b{bottom:857.745000px;}
.yba{bottom:864.123000px;}
.y20{bottom:870.501000px;}
.y3{bottom:873.197100px;}
.y9a{bottom:875.745000px;}
.yec{bottom:878.744550px;}
.y1f{bottom:888.501000px;}
.y99{bottom:893.745000px;}
.yeb{bottom:901.623000px;}
.y1e{bottom:906.501000px;}
.y2{bottom:909.197100px;}
.y1d{bottom:924.501000px;}
.h7{height:44.859375px;}
.h8{height:50.466797px;}
.hb{height:50.864175px;}
.h3{height:56.074219px;}
.h4{height:56.443865px;}
.h5{height:56.718750px;}
.h6{height:79.406250px;}
.ha{height:98.158575px;}
.h2{height:136.125000px;}
.h9{height:337.848000px;}
.hc{height:375.348000px;}
.h1{height:1020.471000px;}
.h0{height:1188.000000px;}
.w3{width:504.636000px;}
.w2{width:507.000000px;}
.w1{width:722.835000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:10.989225px;}
.xb{left:15.060000px;}
.x13{left:16.590375px;}
.xa{left:31.426050px;}
.x12{left:32.926050px;}
.x10{left:54.083250px;}
.xc{left:70.230150px;}
.x15{left:89.009437px;}
.x1{left:96.082500px;}
.x2{left:119.055300px;}
.x16{left:125.250000px;}
.x8{left:127.305300px;}
.x6{left:131.335050px;}
.x7{left:156.865800px;}
.xd{left:196.156350px;}
.x9{left:201.832500px;}
.x11{left:204.196500px;}
.x5{left:349.159650px;}
.xe{left:392.013450px;}
.x3{left:456.557400px;}
.xf{left:472.071150px;}
.x4{left:559.615800px;}
@media print{
.v3{vertical-align:-33.715200pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.337600pt;}
.v1{vertical-align:47.377067pt;}
.ls11{letter-spacing:-0.273600pt;}
.ls4{letter-spacing:-0.029867pt;}
.ls2{letter-spacing:-0.025600pt;}
.ls1{letter-spacing:-0.012800pt;}
.lsa{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.226133pt;}
.ls8{letter-spacing:0.234667pt;}
.ls12{letter-spacing:0.254400pt;}
.ls10{letter-spacing:0.259200pt;}
.ls6{letter-spacing:0.264000pt;}
.ls0{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.291637pt;}
.ls5{letter-spacing:0.297037pt;}
.lsd{letter-spacing:0.400000pt;}
.ls7{letter-spacing:0.581333pt;}
.lsb{letter-spacing:0.880000pt;}
.lse{letter-spacing:15.914667pt;}
.lsf{letter-spacing:18.272000pt;}
.lsc{letter-spacing:20.368000pt;}
.ws49{word-spacing:-11.861333pt;}
.ws58{word-spacing:-2.122667pt;}
.ws1c{word-spacing:-2.106667pt;}
.ws2d{word-spacing:-1.957333pt;}
.ws36{word-spacing:-1.898667pt;}
.ws73{word-spacing:-1.882667pt;}
.ws60{word-spacing:-1.856000pt;}
.ws6e{word-spacing:-1.829333pt;}
.ws33{word-spacing:-1.760000pt;}
.ws4c{word-spacing:-1.749333pt;}
.ws57{word-spacing:-1.637333pt;}
.wsb3{word-spacing:-1.472000pt;}
.ws4e{word-spacing:-1.466667pt;}
.ws2b{word-spacing:-1.264000pt;}
.ws53{word-spacing:-1.147733pt;}
.wsb0{word-spacing:-1.066667pt;}
.wsa1{word-spacing:-1.061333pt;}
.ws24{word-spacing:-0.992000pt;}
.ws70{word-spacing:-0.960000pt;}
.ws69{word-spacing:-0.837333pt;}
.ws16{word-spacing:-0.832000pt;}
.ws71{word-spacing:-0.816000pt;}
.wsbc{word-spacing:-0.806400pt;}
.ws8e{word-spacing:-0.800000pt;}
.ws25{word-spacing:-0.730667pt;}
.wsb4{word-spacing:-0.656000pt;}
.ws4d{word-spacing:-0.581333pt;}
.ws8a{word-spacing:-0.570667pt;}
.ws8b{word-spacing:-0.528000pt;}
.wsbd{word-spacing:-0.513600pt;}
.wsa3{word-spacing:-0.490667pt;}
.ws91{word-spacing:-0.437333pt;}
.ws7{word-spacing:-0.432000pt;}
.ws1e{word-spacing:-0.352000pt;}
.ws18{word-spacing:-0.272000pt;}
.ws37{word-spacing:-0.229333pt;}
.ws2f{word-spacing:-0.186667pt;}
.wsbf{word-spacing:-0.086400pt;}
.ws72{word-spacing:-0.048000pt;}
.ws3d{word-spacing:-0.042667pt;}
.ws7e{word-spacing:-0.005333pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:0.010667pt;}
.ws3a{word-spacing:0.250667pt;}
.ws39{word-spacing:0.309333pt;}
.wsba{word-spacing:0.393600pt;}
.ws64{word-spacing:0.394667pt;}
.ws98{word-spacing:0.400000pt;}
.ws96{word-spacing:0.432000pt;}
.wse{word-spacing:0.480000pt;}
.ws2e{word-spacing:0.560000pt;}
.ws78{word-spacing:0.565333pt;}
.wsa4{word-spacing:0.624000pt;}
.ws89{word-spacing:0.634667pt;}
.ws6b{word-spacing:0.640000pt;}
.ws9f{word-spacing:0.656000pt;}
.ws85{word-spacing:0.661333pt;}
.wsa9{word-spacing:0.672000pt;}
.ws38{word-spacing:0.677333pt;}
.ws99{word-spacing:0.698667pt;}
.wsb2{word-spacing:0.709333pt;}
.ws28{word-spacing:0.805333pt;}
.ws51{word-spacing:0.837333pt;}
.ws1b{word-spacing:0.858667pt;}
.ws86{word-spacing:0.901333pt;}
.ws82{word-spacing:0.917333pt;}
.ws3b{word-spacing:0.949333pt;}
.ws95{word-spacing:0.954667pt;}
.wsb1{word-spacing:0.960000pt;}
.ws88{word-spacing:0.970667pt;}
.ws66{word-spacing:1.013333pt;}
.ws59{word-spacing:1.018667pt;}
.ws7c{word-spacing:1.120000pt;}
.ws77{word-spacing:1.141333pt;}
.wsaa{word-spacing:1.178667pt;}
.ws7b{word-spacing:1.181867pt;}
.ws44{word-spacing:1.186133pt;}
.ws12{word-spacing:1.200000pt;}
.ws29{word-spacing:1.221333pt;}
.ws9d{word-spacing:1.296000pt;}
.wsc{word-spacing:1.317333pt;}
.wsb8{word-spacing:1.329600pt;}
.ws4f{word-spacing:1.333333pt;}
.ws45{word-spacing:1.334400pt;}
.ws6a{word-spacing:1.397333pt;}
.ws62{word-spacing:1.402667pt;}
.ws2c{word-spacing:1.434667pt;}
.ws9a{word-spacing:1.477333pt;}
.ws2{word-spacing:1.482667pt;}
.ws52{word-spacing:1.495989pt;}
.ws3{word-spacing:1.501389pt;}
.ws2a{word-spacing:1.530667pt;}
.ws1d{word-spacing:1.578667pt;}
.ws23{word-spacing:1.605333pt;}
.wsb5{word-spacing:1.626667pt;}
.wsa7{word-spacing:1.674667pt;}
.wsae{word-spacing:1.717333pt;}
.wsac{word-spacing:1.765333pt;}
.ws9{word-spacing:1.786667pt;}
.ws5b{word-spacing:1.797333pt;}
.ws42{word-spacing:1.856000pt;}
.ws8d{word-spacing:1.861333pt;}
.wsad{word-spacing:1.877333pt;}
.ws6{word-spacing:1.973333pt;}
.wsbb{word-spacing:2.016000pt;}
.ws19{word-spacing:2.037333pt;}
.ws4{word-spacing:2.058667pt;}
.ws74{word-spacing:2.069333pt;}
.wsab{word-spacing:2.160000pt;}
.wsb6{word-spacing:2.170667pt;}
.ws56{word-spacing:2.192000pt;}
.ws97{word-spacing:2.256000pt;}
.ws80{word-spacing:2.277333pt;}
.ws10{word-spacing:2.282667pt;}
.ws67{word-spacing:2.320000pt;}
.wsaf{word-spacing:2.325333pt;}
.ws68{word-spacing:2.330667pt;}
.ws8f{word-spacing:2.357333pt;}
.ws90{word-spacing:2.362667pt;}
.ws8{word-spacing:2.464000pt;}
.ws63{word-spacing:2.554667pt;}
.ws11{word-spacing:2.608000pt;}
.ws3f{word-spacing:2.650667pt;}
.wsa6{word-spacing:2.682667pt;}
.ws30{word-spacing:2.741333pt;}
.ws83{word-spacing:2.752000pt;}
.wsa5{word-spacing:2.757333pt;}
.ws81{word-spacing:2.762667pt;}
.ws32{word-spacing:2.789333pt;}
.ws13{word-spacing:2.805333pt;}
.ws75{word-spacing:2.810667pt;}
.ws14{word-spacing:2.835357pt;}
.ws40{word-spacing:2.960000pt;}
.ws1f{word-spacing:2.992000pt;}
.wsb9{word-spacing:3.043200pt;}
.ws9c{word-spacing:3.152000pt;}
.ws6f{word-spacing:3.173333pt;}
.ws55{word-spacing:3.200000pt;}
.ws92{word-spacing:3.205333pt;}
.ws4b{word-spacing:3.248000pt;}
.ws6c{word-spacing:3.312000pt;}
.ws7d{word-spacing:3.408000pt;}
.ws27{word-spacing:3.493333pt;}
.ws50{word-spacing:3.530667pt;}
.ws0{word-spacing:3.558400pt;}
.wsb7{word-spacing:3.632000pt;}
.ws65{word-spacing:3.685333pt;}
.ws94{word-spacing:3.722667pt;}
.ws26{word-spacing:3.936000pt;}
.ws22{word-spacing:4.005333pt;}
.ws5e{word-spacing:4.074667pt;}
.ws61{word-spacing:4.240000pt;}
.ws5{word-spacing:4.341333pt;}
.wsb{word-spacing:4.352000pt;}
.ws9b{word-spacing:4.437333pt;}
.ws93{word-spacing:4.586667pt;}
.wsa0{word-spacing:4.853333pt;}
.ws87{word-spacing:5.221333pt;}
.wsa8{word-spacing:5.306667pt;}
.ws17{word-spacing:5.328000pt;}
.wsd{word-spacing:5.376000pt;}
.ws84{word-spacing:5.530667pt;}
.ws9e{word-spacing:5.621333pt;}
.wsbe{word-spacing:5.750400pt;}
.ws54{word-spacing:5.792000pt;}
.ws5d{word-spacing:5.808000pt;}
.ws41{word-spacing:6.256000pt;}
.ws35{word-spacing:6.416000pt;}
.wsa{word-spacing:6.725333pt;}
.ws6d{word-spacing:6.741333pt;}
.ws5f{word-spacing:6.784000pt;}
.wsa2{word-spacing:6.853333pt;}
.ws15{word-spacing:6.954667pt;}
.ws79{word-spacing:7.210667pt;}
.ws5a{word-spacing:7.413333pt;}
.ws7a{word-spacing:7.621333pt;}
.ws1a{word-spacing:7.792000pt;}
.ws21{word-spacing:8.122667pt;}
.ws8c{word-spacing:8.362667pt;}
.ws43{word-spacing:8.954329pt;}
.ws34{word-spacing:9.226667pt;}
.ws5c{word-spacing:9.642667pt;}
.ws7f{word-spacing:10.133333pt;}
.ws3e{word-spacing:10.325333pt;}
.ws31{word-spacing:11.509333pt;}
.ws20{word-spacing:11.600000pt;}
.ws3c{word-spacing:11.722667pt;}
.ws4a{word-spacing:65.030400pt;}
.ws47{word-spacing:209.250133pt;}
.ws76{word-spacing:294.460800pt;}
.ws46{word-spacing:296.085333pt;}
.ws48{word-spacing:359.163733pt;}
._7{margin-left:-5.904000pt;}
._8{margin-left:-4.963226pt;}
._1{margin-left:-3.941333pt;}
._4{margin-left:-2.922667pt;}
._5{margin-left:-1.968000pt;}
._6{margin-left:-0.949333pt;}
._1a{width:10.952533pt;}
._1d{width:12.307200pt;}
._2{width:13.685333pt;}
._0{width:14.634667pt;}
._3{width:15.653333pt;}
._13{width:81.835200pt;}
._15{width:85.766933pt;}
._9{width:108.787200pt;}
._1b{width:311.361600pt;}
._1c{width:314.913600pt;}
._12{width:443.371200pt;}
._19{width:696.355200pt;}
._10{width:706.195200pt;}
._d{width:712.036800pt;}
._e{width:769.056000pt;}
._16{width:793.488000pt;}
._17{width:811.617600pt;}
._18{width:909.326400pt;}
._a{width:933.614400pt;}
._f{width:958.372800pt;}
._11{width:973.833600pt;}
._14{width:987.096000pt;}
._b{width:1001.078400pt;}
._c{width:1148.284800pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:54.006807pt;}
.fs3{font-size:74.666667pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:10.189467pt;}
.yaa{bottom:11.374667pt;}
.ya2{bottom:31.564667pt;}
.y6b{bottom:32.231333pt;}
.y1c{bottom:51.145467pt;}
.ya3{bottom:64.780667pt;}
.y6c{bottom:65.447333pt;}
.y1{bottom:74.457333pt;}
.ya4{bottom:97.996667pt;}
.y6d{bottom:98.663333pt;}
.y1b{bottom:115.240667pt;}
.yb9{bottom:116.518933pt;}
.y44{bottom:117.526533pt;}
.y50{bottom:118.408000pt;}
.y7e{bottom:120.916000pt;}
.ya5{bottom:131.212667pt;}
.y19{bottom:131.240533pt;}
.y1a{bottom:131.240667pt;}
.y6e{bottom:131.879333pt;}
.yb8{bottom:132.518933pt;}
.y73{bottom:133.208000pt;}
.y43{bottom:133.526533pt;}
.y4f{bottom:134.408000pt;}
.y7d{bottom:136.916000pt;}
.y18{bottom:147.240533pt;}
.yb7{bottom:148.518933pt;}
.y42{bottom:149.526533pt;}
.y4e{bottom:150.408000pt;}
.y7c{bottom:152.916000pt;}
.yea{bottom:155.196000pt;}
.ycf{bottom:160.865333pt;}
.y17{bottom:163.240533pt;}
.ya6{bottom:164.428667pt;}
.y6f{bottom:165.095333pt;}
.y41{bottom:165.526533pt;}
.y4d{bottom:166.408000pt;}
.y7b{bottom:168.916000pt;}
.yb6{bottom:170.188267pt;}
.ye9{bottom:171.196000pt;}
.yce{bottom:176.865333pt;}
.y16{bottom:179.240533pt;}
.y4c{bottom:182.408000pt;}
.y7a{bottom:184.916000pt;}
.yb5{bottom:186.188267pt;}
.y40{bottom:187.195867pt;}
.ye8{bottom:187.196000pt;}
.y98{bottom:191.101333pt;}
.ycd{bottom:192.865333pt;}
.ya7{bottom:197.644667pt;}
.y70{bottom:198.311333pt;}
.y4b{bottom:198.408000pt;}
.y15{bottom:200.909867pt;}
.yb4{bottom:202.188267pt;}
.y76{bottom:202.605333pt;}
.ye7{bottom:203.196000pt;}
.y79{bottom:206.585333pt;}
.y74{bottom:206.906133pt;}
.y97{bottom:207.101333pt;}
.ycc{bottom:208.865333pt;}
.y4a{bottom:214.408000pt;}
.y14{bottom:216.909867pt;}
.yb3{bottom:218.188267pt;}
.ye6{bottom:219.196000pt;}
.y78{bottom:222.585333pt;}
.y96{bottom:223.101333pt;}
.y49{bottom:230.408000pt;}
.y3f{bottom:230.534533pt;}
.ycb{bottom:230.534667pt;}
.ya8{bottom:230.860667pt;}
.y71{bottom:231.527333pt;}
.y13{bottom:232.909867pt;}
.yb2{bottom:234.188267pt;}
.ye5{bottom:235.196000pt;}
.y75{bottom:238.589333pt;}
.y95{bottom:239.101333pt;}
.y48{bottom:246.408000pt;}
.y3e{bottom:246.534533pt;}
.yca{bottom:246.534667pt;}
.y12{bottom:248.909867pt;}
.yb1{bottom:250.188267pt;}
.ye4{bottom:251.196000pt;}
.y94{bottom:255.101333pt;}
.y47{bottom:262.408000pt;}
.y3d{bottom:262.534533pt;}
.yc9{bottom:262.534667pt;}
.ya9{bottom:264.076667pt;}
.yaf{bottom:264.127867pt;}
.y72{bottom:264.743333pt;}
.y11{bottom:264.909867pt;}
.yb0{bottom:266.188267pt;}
.ye3{bottom:267.196000pt;}
.y93{bottom:271.101333pt;}
.y69{bottom:272.339200pt;}
.y3c{bottom:278.534533pt;}
.y3b{bottom:278.534667pt;}
.yae{bottom:280.543867pt;}
.y10{bottom:280.909867pt;}
.ye2{bottom:283.196000pt;}
.y92{bottom:292.770667pt;}
.y3a{bottom:294.534667pt;}
.yf{bottom:296.909867pt;}
.yad{bottom:296.959867pt;}
.yab{bottom:297.411200pt;}
.ye1{bottom:299.196000pt;}
.yc8{bottom:300.204000pt;}
.y91{bottom:308.770667pt;}
.y39{bottom:310.534667pt;}
.y53{bottom:311.979200pt;}
.yac{bottom:313.375867pt;}
.ya0{bottom:314.677600pt;}
.ye0{bottom:315.196000pt;}
.yc7{bottom:316.204000pt;}
.ye{bottom:318.579200pt;}
.y90{bottom:324.770667pt;}
.y38{bottom:326.534667pt;}
.ydf{bottom:331.196000pt;}
.yc6{bottom:332.204000pt;}
.yd{bottom:334.579200pt;}
.y61{bottom:337.669067pt;}
.y8f{bottom:340.770667pt;}
.y37{bottom:342.534667pt;}
.yc5{bottom:348.204000pt;}
.yc{bottom:350.579200pt;}
.y6a{bottom:355.233333pt;}
.y8e{bottom:356.770667pt;}
.y60{bottom:357.669467pt;}
.y36{bottom:358.534667pt;}
.yc4{bottom:364.204000pt;}
.yb{bottom:366.579200pt;}
.y8d{bottom:372.770667pt;}
.y5f{bottom:377.669867pt;}
.y35{bottom:380.204000pt;}
.ya{bottom:382.579200pt;}
.y8c{bottom:388.770667pt;}
.y34{bottom:396.204000pt;}
.ya1{bottom:396.905333pt;}
.y5e{bottom:397.670267pt;}
.y9{bottom:398.579200pt;}
.y8b{bottom:404.770667pt;}
.yde{bottom:409.432000pt;}
.y33{bottom:412.204000pt;}
.y8{bottom:414.579200pt;}
.y5d{bottom:417.670667pt;}
.y8a{bottom:420.770667pt;}
.ydd{bottom:425.432000pt;}
.y32{bottom:428.204000pt;}
.y89{bottom:436.770667pt;}
.y5c{bottom:437.671067pt;}
.ydc{bottom:441.432000pt;}
.y7{bottom:441.917867pt;}
.y31{bottom:444.204000pt;}
.y88{bottom:452.770667pt;}
.ydb{bottom:457.432000pt;}
.y5b{bottom:457.671467pt;}
.y30{bottom:460.204000pt;}
.y87{bottom:468.770667pt;}
.yc3{bottom:471.542667pt;}
.yda{bottom:473.432000pt;}
.y2f{bottom:476.204000pt;}
.y5a{bottom:477.671867pt;}
.yd9{bottom:489.432000pt;}
.y86{bottom:490.440000pt;}
.y2e{bottom:492.204000pt;}
.yfc{bottom:495.413867pt;}
.y59{bottom:497.672267pt;}
.y85{bottom:506.440000pt;}
.y2d{bottom:508.204000pt;}
.yfb{bottom:510.080267pt;}
.yd8{bottom:511.101333pt;}
.y58{bottom:517.672667pt;}
.y84{bottom:522.440000pt;}
.y2c{bottom:524.204000pt;}
.yfa{bottom:524.746667pt;}
.yd7{bottom:527.101333pt;}
.y57{bottom:537.673067pt;}
.y83{bottom:538.440000pt;}
.yd6{bottom:543.101333pt;}
.yf9{bottom:545.083067pt;}
.y2b{bottom:545.873333pt;}
.y82{bottom:554.440000pt;}
.y56{bottom:557.673467pt;}
.yf8{bottom:559.749467pt;}
.yd5{bottom:564.770667pt;}
.y81{bottom:570.440000pt;}
.y2a{bottom:573.212000pt;}
.y55{bottom:577.673867pt;}
.yf7{bottom:580.085867pt;}
.yd4{bottom:580.770667pt;}
.y80{bottom:586.440000pt;}
.y68{bottom:589.062400pt;}
.yf6{bottom:594.752267pt;}
.yd3{bottom:596.770667pt;}
.y54{bottom:597.674267pt;}
.yc2{bottom:602.440000pt;}
.y7f{bottom:608.109333pt;}
.yd2{bottom:612.770667pt;}
.yf5{bottom:615.088667pt;}
.yc1{bottom:618.440000pt;}
.y29{bottom:624.109333pt;}
.yd1{bottom:628.770667pt;}
.y52{bottom:629.369200pt;}
.yf4{bottom:629.755067pt;}
.y67{bottom:631.542667pt;}
.yc0{bottom:634.440000pt;}
.y28{bottom:640.109333pt;}
.y51{bottom:645.369200pt;}
.y66{bottom:647.542667pt;}
.yf3{bottom:650.091467pt;}
.ybf{bottom:650.440000pt;}
.y27{bottom:656.109333pt;}
.y65{bottom:663.542667pt;}
.y9f{bottom:664.067600pt;}
.ybe{bottom:666.440000pt;}
.yf2{bottom:670.427867pt;}
.y26{bottom:672.109333pt;}
.y64{bottom:679.542667pt;}
.ybd{bottom:682.440000pt;}
.y25{bottom:688.109333pt;}
.yf1{bottom:690.764267pt;}
.y63{bottom:695.542667pt;}
.ybc{bottom:698.440000pt;}
.y24{bottom:704.109333pt;}
.yf0{bottom:705.430667pt;}
.y6{bottom:706.505867pt;}
.y9e{bottom:708.770667pt;}
.yd0{bottom:714.440000pt;}
.y46{bottom:720.109333pt;}
.y5{bottom:722.505867pt;}
.y62{bottom:722.881333pt;}
.yef{bottom:725.767067pt;}
.y23{bottom:725.778667pt;}
.y9d{bottom:730.440000pt;}
.y45{bottom:736.109333pt;}
.y4{bottom:738.505867pt;}
.yee{bottom:740.433467pt;}
.y22{bottom:741.778667pt;}
.y9c{bottom:746.440000pt;}
.ybb{bottom:752.109333pt;}
.y21{bottom:757.778667pt;}
.yed{bottom:760.769867pt;}
.y9b{bottom:762.440000pt;}
.yba{bottom:768.109333pt;}
.y20{bottom:773.778667pt;}
.y3{bottom:776.175200pt;}
.y9a{bottom:778.440000pt;}
.yec{bottom:781.106267pt;}
.y1f{bottom:789.778667pt;}
.y99{bottom:794.440000pt;}
.yeb{bottom:801.442667pt;}
.y1e{bottom:805.778667pt;}
.y2{bottom:808.175200pt;}
.y1d{bottom:821.778667pt;}
.h7{height:39.875000pt;}
.h8{height:44.859375pt;}
.hb{height:45.212600pt;}
.h3{height:49.843750pt;}
.h4{height:50.172324pt;}
.h5{height:50.416667pt;}
.h6{height:70.583333pt;}
.ha{height:87.252067pt;}
.h2{height:121.000000pt;}
.h9{height:300.309333pt;}
.hc{height:333.642667pt;}
.h1{height:907.085333pt;}
.h0{height:1056.000000pt;}
.w3{width:448.565333pt;}
.w2{width:450.666667pt;}
.w1{width:642.520000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:9.768200pt;}
.xb{left:13.386667pt;}
.x13{left:14.747000pt;}
.xa{left:27.934267pt;}
.x12{left:29.267600pt;}
.x10{left:48.074000pt;}
.xc{left:62.426800pt;}
.x15{left:79.119500pt;}
.x1{left:85.406667pt;}
.x2{left:105.826933pt;}
.x16{left:111.333333pt;}
.x8{left:113.160267pt;}
.x6{left:116.742267pt;}
.x7{left:139.436267pt;}
.xd{left:174.361200pt;}
.x9{left:179.406667pt;}
.x11{left:181.508000pt;}
.x5{left:310.364133pt;}
.xe{left:348.456400pt;}
.x3{left:405.828800pt;}
.xf{left:419.618800pt;}
.x4{left:497.436267pt;}
}

