
    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_66264384232475010e408bbf.woff')format("woff");}.ff1{font-family:ff1;line-height:0.977000;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_f8eb85bc2e556bd711565a1e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_a096479ce5ace3bdba8e015c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_c8e518199463f9445741b04a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.934000;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_3b4208166cc92439a2ab2e1c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.971000;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_7bb9e2dbad8ecb9aaec8b4e2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.929000;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_d156ed09f12f2ab7f515c43a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910000;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_4492ef27f0a732c37b4765f0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.963000;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_af2d8f2346124f6e4db1b2e5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.730000;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_e9e2e592209391d14ec13d7b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.738000;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:ffb;src:url('chunks/assets/font_32abab1d0841ea9105a89bb0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.964511;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:ffc;src:url('chunks/assets/font_4b1fe656707081c890fb2fd7.woff')format("woff");}.ffc{font-family:ffc;line-height:0.902000;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:ffd;src:url('chunks/assets/font_900f90a4dc191eee8b56793d.woff')format("woff");}.ffd{font-family:ffd;line-height:1.104000;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:ffe;src:url('chunks/assets/font_786e67932844fe1d9b2ca43d.woff')format("woff");}.ffe{font-family:ffe;line-height:1.117000;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:fff;src:url('chunks/assets/font_aaacaa13c98e30c0bc497697.woff')format("woff");}.fff{font-family:fff;line-height:1.251000;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:ff10;src:url('chunks/assets/font_2898108f7eb0c8a2b98b91dc.woff')format("woff");}.ff10{font-family:ff10;line-height:0.994000;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:ff11;src:url('chunks/assets/font_7f663487ebc21d3ad5ca3cf3.woff')format("woff");}.ff11{font-family:ff11;line-height:0.994000;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;}
.ff12{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff13;src:url('chunks/assets/font_43a5cf9da2e571a74ecb84f0.woff')format("woff");}.ff13{font-family:ff13;line-height:0.660000;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:ff14;src:url('chunks/assets/font_9b22407b2fb56fdfa228ec6d.woff')format("woff");}.ff14{font-family:ff14;line-height:1.129000;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:ff15;src:url('chunks/assets/font_7b72cf8e85867ee7208136ea.woff')format("woff");}.ff15{font-family:ff15;line-height:1.132000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.216000px;}
.ls2{letter-spacing:-0.780000px;}
.ls6{letter-spacing:-0.648000px;}
.ls3{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.324000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.594000px;}
.ls4{letter-spacing:0.702000px;}
.ls0{letter-spacing:5.460000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-15.498000px;}
.ws53{word-spacing:-11.376000px;}
.ws1{word-spacing:-10.800000px;}
.ws2{word-spacing:-10.260000px;}
.ws42{word-spacing:-7.461234px;}
.ws38{word-spacing:-3.888000px;}
.ws43{word-spacing:-3.564000px;}
.ws47{word-spacing:-3.294000px;}
.ws2f{word-spacing:-3.078000px;}
.ws4c{word-spacing:-2.916000px;}
.ws39{word-spacing:-2.430000px;}
.ws3a{word-spacing:-2.322000px;}
.ws19{word-spacing:-1.620000px;}
.ws45{word-spacing:-1.134000px;}
.ws23{word-spacing:-0.702000px;}
.ws31{word-spacing:-0.594000px;}
.wsa{word-spacing:-0.540000px;}
.ws4a{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws26{word-spacing:0.054000px;}
.ws4f{word-spacing:0.108000px;}
.ws51{word-spacing:0.324000px;}
.ws49{word-spacing:0.540000px;}
.ws3c{word-spacing:0.594000px;}
.ws22{word-spacing:0.648000px;}
.ws16{word-spacing:0.702000px;}
.ws37{word-spacing:0.918000px;}
.ws3d{word-spacing:0.972000px;}
.ws50{word-spacing:1.296000px;}
.ws5{word-spacing:1.566000px;}
.ws25{word-spacing:1.728000px;}
.ws3b{word-spacing:2.052000px;}
.ws28{word-spacing:2.214000px;}
.ws14{word-spacing:2.268000px;}
.ws32{word-spacing:2.592000px;}
.ws1d{word-spacing:2.646000px;}
.wsf{word-spacing:2.808000px;}
.ws1f{word-spacing:2.862000px;}
.ws24{word-spacing:3.294000px;}
.ws2e{word-spacing:3.402000px;}
.wse{word-spacing:3.510000px;}
.ws1e{word-spacing:3.564000px;}
.wsd{word-spacing:3.618000px;}
.wsb{word-spacing:3.672000px;}
.ws40{word-spacing:3.780000px;}
.ws3e{word-spacing:3.834000px;}
.ws52{word-spacing:3.942000px;}
.ws20{word-spacing:4.104000px;}
.ws3f{word-spacing:4.158000px;}
.ws12{word-spacing:4.266000px;}
.ws18{word-spacing:4.320000px;}
.ws46{word-spacing:4.374000px;}
.wsc{word-spacing:4.644000px;}
.ws2b{word-spacing:4.698000px;}
.ws13{word-spacing:4.968000px;}
.ws7{word-spacing:5.130000px;}
.ws6{word-spacing:5.238000px;}
.ws21{word-spacing:5.508000px;}
.ws30{word-spacing:5.778000px;}
.ws1b{word-spacing:5.832000px;}
.ws44{word-spacing:6.156000px;}
.ws4{word-spacing:6.210000px;}
.ws9{word-spacing:6.696000px;}
.ws1a{word-spacing:6.804000px;}
.ws36{word-spacing:7.938000px;}
.ws33{word-spacing:8.640000px;}
.ws2d{word-spacing:9.288000px;}
.ws29{word-spacing:9.396000px;}
.ws15{word-spacing:9.612000px;}
.ws48{word-spacing:9.882000px;}
.ws1c{word-spacing:10.314000px;}
.ws8{word-spacing:10.368000px;}
.ws27{word-spacing:10.638000px;}
.ws2a{word-spacing:10.692000px;}
.ws11{word-spacing:11.070000px;}
.ws2c{word-spacing:11.178000px;}
.ws34{word-spacing:11.502000px;}
.ws35{word-spacing:11.610000px;}
.ws4d{word-spacing:12.042000px;}
.ws41{word-spacing:12.528000px;}
.ws17{word-spacing:13.068000px;}
.ws10{word-spacing:13.176000px;}
.ws4b{word-spacing:13.500000px;}
.ws4e{word-spacing:16.902000px;}
._4{margin-left:-15.493800px;}
._12{margin-left:-9.562126px;}
._3{margin-left:-6.304200px;}
._5{margin-left:-5.208000px;}
._6{margin-left:-3.666000px;}
._1{margin-left:-2.520000px;}
._2{margin-left:-1.260000px;}
._0{width:1.260000px;}
._a{width:2.343600px;}
._b{width:3.348000px;}
._7{width:4.357800px;}
._8{width:5.358600px;}
._9{width:7.165800px;}
._c{width:8.170200px;}
._13{width:9.196200px;}
._e{width:10.206000px;}
._d{width:11.507400px;}
._f{width:14.007600px;}
._15{width:15.039000px;}
._10{width:16.070400px;}
._14{width:18.106200px;}
._17{width:19.602000px;}
._11{width:21.265200px;}
._16{width:27.599400px;}
.fc8{color:transparent;}
.fc7{color:rgb(79,76,77);}
.fc6{color:rgb(231,132,92);}
.fc5{color:rgb(234,150,113);}
.fc3{color:rgb(123,121,121);}
.fc2{color:rgb(218,67,33);}
.fc4{color:rgb(227,114,74);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(174,174,174);}
.fs8{font-size:31.482000px;}
.fs1{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:120.000000px;}
.fs0{font-size:127.392600px;}
.y0{bottom:0.000000px;}
.y1{bottom:35.251350px;}
.y2b{bottom:53.621700px;}
.y29{bottom:53.624700px;}
.y2a{bottom:67.124700px;}
.y26{bottom:79.718250px;}
.y25{bottom:97.713750px;}
.yd1{bottom:112.882950px;}
.y55{bottom:112.891950px;}
.ya8{bottom:112.896450px;}
.y126{bottom:112.945950px;}
.y109{bottom:112.959450px;}
.y136{bottom:112.986450px;}
.y183{bottom:126.614700px;}
.yd0{bottom:135.387450px;}
.y54{bottom:135.396450px;}
.ya7{bottom:135.400950px;}
.y125{bottom:135.450450px;}
.yc9{bottom:135.459450px;}
.y108{bottom:135.463950px;}
.y94{bottom:135.472950px;}
.y135{bottom:135.490950px;}
.yee{bottom:135.513450px;}
.y1ac{bottom:136.478700px;}
.y182{bottom:146.114700px;}
.y1ab{bottom:155.978700px;}
.ycf{bottom:157.891950px;}
.y53{bottom:157.900950px;}
.y7b{bottom:157.905450px;}
.y124{bottom:157.954950px;}
.yc8{bottom:157.963950px;}
.y107{bottom:157.968450px;}
.y93{bottom:157.977450px;}
.y134{bottom:157.995450px;}
.yb3{bottom:158.013450px;}
.yed{bottom:158.017950px;}
.y15a{bottom:169.227450px;}
.y181{bottom:178.370700px;}
.y24{bottom:178.673250px;}
.yce{bottom:180.396450px;}
.y7a{bottom:180.409950px;}
.yc7{bottom:180.468450px;}
.y92{bottom:180.481950px;}
.yb2{bottom:180.517950px;}
.yec{bottom:180.522450px;}
.y1aa{bottom:186.110700px;}
.y159{bottom:188.727450px;}
.y180{bottom:197.870700px;}
.y52{bottom:202.896450px;}
.ycd{bottom:202.900950px;}
.y79{bottom:202.914450px;}
.y123{bottom:202.950450px;}
.y106{bottom:202.963950px;}
.yc6{bottom:202.972950px;}
.y91{bottom:202.986450px;}
.y133{bottom:202.990950px;}
.yb1{bottom:203.022450px;}
.yeb{bottom:203.026950px;}
.y1a9{bottom:205.610700px;}
.y158{bottom:220.983450px;}
.y23{bottom:223.668750px;}
.y1a8{bottom:225.110700px;}
.y51{bottom:225.400950px;}
.ycc{bottom:225.405450px;}
.y78{bottom:225.418950px;}
.y122{bottom:225.454950px;}
.y105{bottom:225.468450px;}
.yea{bottom:225.472950px;}
.yc5{bottom:225.477450px;}
.y90{bottom:225.490950px;}
.y132{bottom:225.495450px;}
.yb0{bottom:225.526950px;}
.y139{bottom:225.531450px;}
.y17f{bottom:230.126700px;}
.y157{bottom:240.483450px;}
.y22{bottom:246.173250px;}
.y50{bottom:247.905450px;}
.ya6{bottom:247.909950px;}
.y77{bottom:247.923450px;}
.y121{bottom:247.959450px;}
.y104{bottom:247.972950px;}
.ye9{bottom:247.977450px;}
.yc4{bottom:247.981950px;}
.y8f{bottom:247.995450px;}
.y131{bottom:247.999950px;}
.yaf{bottom:248.031450px;}
.y17e{bottom:249.626700px;}
.y1a7{bottom:255.242700px;}
.y21{bottom:268.677750px;}
.y4f{bottom:270.409950px;}
.ya5{bottom:270.414450px;}
.y76{bottom:270.427950px;}
.y120{bottom:270.463950px;}
.y103{bottom:270.477450px;}
.ye8{bottom:270.481950px;}
.yc3{bottom:270.486450px;}
.y8e{bottom:270.499950px;}
.y130{bottom:270.504450px;}
.y138{bottom:270.531450px;}
.y156{bottom:272.739450px;}
.y1a6{bottom:274.742700px;}
.y17d{bottom:281.882700px;}
.y20{bottom:291.182250px;}
.y155{bottom:292.239450px;}
.y4e{bottom:292.914450px;}
.ya4{bottom:292.918950px;}
.y75{bottom:292.932450px;}
.y11f{bottom:292.968450px;}
.y102{bottom:292.981950px;}
.ye7{bottom:292.986450px;}
.y8d{bottom:293.004450px;}
.y12f{bottom:293.008950px;}
.y17c{bottom:301.382700px;}
.y1a5{bottom:304.874700px;}
.y1f{bottom:313.686750px;}
.y4d{bottom:315.418950px;}
.ya3{bottom:315.423450px;}
.y74{bottom:315.436950px;}
.yc2{bottom:315.481950px;}
.y101{bottom:315.486450px;}
.ye6{bottom:315.490950px;}
.y12e{bottom:315.513450px;}
.y1a4{bottom:324.374700px;}
.y154{bottom:324.495450px;}
.yae{bottom:326.427000px;}
.y17b{bottom:333.638700px;}
.y1e{bottom:336.191250px;}
.y137{bottom:337.914450px;}
.ya2{bottom:337.927950px;}
.y73{bottom:337.941450px;}
.y11e{bottom:337.963950px;}
.yc1{bottom:337.986450px;}
.y100{bottom:337.990950px;}
.ye5{bottom:337.995450px;}
.y8c{bottom:337.999950px;}
.y12d{bottom:338.017950px;}
.y153{bottom:343.995450px;}
.y17a{bottom:353.138700px;}
.y1a3{bottom:354.506700px;}
.y1d{bottom:358.695750px;}
.y4c{bottom:360.414450px;}
.ycb{bottom:360.418950px;}
.y11d{bottom:360.468450px;}
.yc0{bottom:360.490950px;}
.yff{bottom:360.495450px;}
.y8b{bottom:360.504450px;}
.y12c{bottom:360.522450px;}
.y152{bottom:363.495450px;}
.y1a2{bottom:374.006700px;}
.y1c{bottom:381.200250px;}
.y4b{bottom:382.918950px;}
.ya1{bottom:382.923450px;}
.y72{bottom:382.936950px;}
.y11c{bottom:382.972950px;}
.ye4{bottom:382.990950px;}
.ybf{bottom:382.995450px;}
.yfe{bottom:382.999950px;}
.y8a{bottom:383.008950px;}
.y12b{bottom:383.026950px;}
.y179{bottom:385.394700px;}
.y1a1{bottom:393.506700px;}
.y151{bottom:395.751450px;}
.y1b{bottom:403.704750px;}
.y178{bottom:404.894700px;}
.y4a{bottom:405.423450px;}
.ya0{bottom:405.427950px;}
.y71{bottom:405.441450px;}
.y11b{bottom:405.477450px;}
.ye3{bottom:405.495450px;}
.ybe{bottom:405.499950px;}
.y89{bottom:405.513450px;}
.y12a{bottom:405.531450px;}
.y150{bottom:415.251450px;}
.y1a0{bottom:423.638700px;}
.y1a{bottom:426.209250px;}
.y49{bottom:427.927950px;}
.y9f{bottom:427.932450px;}
.y70{bottom:427.945950px;}
.y11a{bottom:427.981950px;}
.yfd{bottom:427.995450px;}
.ye2{bottom:427.999950px;}
.ybd{bottom:428.004450px;}
.y88{bottom:428.017950px;}
.y14f{bottom:434.751450px;}
.y177{bottom:437.150700px;}
.y19f{bottom:443.138700px;}
.y19{bottom:448.713750px;}
.y48{bottom:450.432450px;}
.y9e{bottom:450.436950px;}
.y6f{bottom:450.450450px;}
.y119{bottom:450.486450px;}
.yfc{bottom:450.499950px;}
.ye1{bottom:450.504450px;}
.ybc{bottom:450.508950px;}
.y87{bottom:450.522450px;}
.y129{bottom:450.531450px;}
.y176{bottom:456.650700px;}
.y19e{bottom:462.638700px;}
.y14e{bottom:467.007450px;}
.y18{bottom:471.218250px;}
.y47{bottom:472.936950px;}
.y9d{bottom:472.941450px;}
.y6e{bottom:472.954950px;}
.y118{bottom:472.990950px;}
.yfb{bottom:473.004450px;}
.ye0{bottom:473.008950px;}
.y86{bottom:473.026950px;}
.y175{bottom:476.150700px;}
.y14d{bottom:486.507450px;}
.y19d{bottom:492.770700px;}
.y9c{bottom:495.445950px;}
.y6d{bottom:495.459450px;}
.ybb{bottom:495.504450px;}
.yfa{bottom:495.508950px;}
.ydf{bottom:495.513450px;}
.y85{bottom:495.531450px;}
.y14c{bottom:506.007450px;}
.y174{bottom:508.406700px;}
.y19c{bottom:512.270700px;}
.y17{bottom:516.213750px;}
.y46{bottom:517.932450px;}
.y9b{bottom:517.950450px;}
.y117{bottom:517.986450px;}
.yba{bottom:518.008950px;}
.yf9{bottom:518.013450px;}
.yde{bottom:518.017950px;}
.y173{bottom:527.906700px;}
.y14b{bottom:538.263450px;}
.y45{bottom:540.436950px;}
.y128{bottom:540.441450px;}
.y6c{bottom:540.454950px;}
.y116{bottom:540.490950px;}
.yb9{bottom:540.513450px;}
.yf8{bottom:540.517950px;}
.ydd{bottom:540.522450px;}
.y84{bottom:540.531450px;}
.y19b{bottom:542.402700px;}
.y14a{bottom:557.763450px;}
.y172{bottom:560.162700px;}
.y16{bottom:561.209250px;}
.y19a{bottom:561.902700px;}
.y44{bottom:562.941450px;}
.y127{bottom:562.945950px;}
.y6b{bottom:562.959450px;}
.y115{bottom:562.995450px;}
.yb8{bottom:563.017950px;}
.yf7{bottom:563.022450px;}
.ydc{bottom:563.026950px;}
.y171{bottom:579.662700px;}
.y15{bottom:583.713750px;}
.y43{bottom:585.445950px;}
.y9a{bottom:585.450450px;}
.y6a{bottom:585.463950px;}
.y114{bottom:585.499950px;}
.yb7{bottom:585.522450px;}
.yf6{bottom:585.526950px;}
.ydb{bottom:585.531450px;}
.y149{bottom:590.019450px;}
.y199{bottom:592.034700px;}
.y14{bottom:606.218250px;}
.y42{bottom:607.950450px;}
.y83{bottom:607.954950px;}
.y69{bottom:607.968450px;}
.y113{bottom:608.004450px;}
.yb6{bottom:608.026950px;}
.yf5{bottom:608.031450px;}
.y148{bottom:609.519450px;}
.y198{bottom:611.534700px;}
.y170{bottom:611.918700px;}
.y13{bottom:628.722750px;}
.y41{bottom:630.454950px;}
.y82{bottom:630.459450px;}
.y68{bottom:630.472950px;}
.y112{bottom:630.508950px;}
.yb5{bottom:630.531450px;}
.y16f{bottom:631.418700px;}
.y197{bottom:641.666700px;}
.y147{bottom:641.775450px;}
.y12{bottom:651.227250px;}
.y40{bottom:652.959450px;}
.y81{bottom:652.963950px;}
.y67{bottom:652.977450px;}
.yda{bottom:658.396650px;}
.y196{bottom:661.166700px;}
.y146{bottom:661.275450px;}
.y16e{bottom:663.674700px;}
.yd9{bottom:673.396650px;}
.y11{bottom:673.731750px;}
.y80{bottom:675.468450px;}
.y66{bottom:675.481950px;}
.y111{bottom:675.504450px;}
.yb4{bottom:675.531450px;}
.yf4{bottom:678.160950px;}
.y195{bottom:680.666700px;}
.y145{bottom:680.775450px;}
.y16d{bottom:683.174700px;}
.yd8{bottom:688.396650px;}
.yf3{bottom:693.160950px;}
.y10{bottom:696.236250px;}
.y3f{bottom:697.954950px;}
.y7f{bottom:697.972950px;}
.y110{bottom:698.008950px;}
.yd7{bottom:703.396650px;}
.yf2{bottom:708.160950px;}
.y194{bottom:710.798700px;}
.y144{bottom:713.031450px;}
.y16c{bottom:715.430700px;}
.yd6{bottom:718.396650px;}
.yf{bottom:718.740750px;}
.y3e{bottom:720.459450px;}
.y65{bottom:720.477450px;}
.y10f{bottom:720.513450px;}
.yf1{bottom:723.160950px;}
.y193{bottom:730.298700px;}
.y143{bottom:732.531450px;}
.yd5{bottom:733.396650px;}
.y16b{bottom:734.930700px;}
.yf0{bottom:738.160950px;}
.ye{bottom:741.245250px;}
.y3d{bottom:742.963950px;}
.y99{bottom:742.968450px;}
.y64{bottom:742.981950px;}
.y10e{bottom:743.017950px;}
.y192{bottom:749.798700px;}
.yef{bottom:753.160950px;}
.yad{bottom:759.735450px;}
.yd{bottom:763.749750px;}
.y3c{bottom:765.468450px;}
.y98{bottom:765.472950px;}
.y63{bottom:765.486450px;}
.y10d{bottom:765.522450px;}
.y142{bottom:765.531450px;}
.y16a{bottom:767.186700px;}
.y191{bottom:779.930700px;}
.yac{bottom:780.484950px;}
.yc{bottom:786.254250px;}
.y169{bottom:786.686700px;}
.y3b{bottom:787.972950px;}
.y97{bottom:787.977450px;}
.y62{bottom:787.990950px;}
.y10c{bottom:788.026950px;}
.y190{bottom:799.430700px;}
.y3a{bottom:810.477450px;}
.y96{bottom:810.481950px;}
.y61{bottom:810.495450px;}
.y10b{bottom:810.531450px;}
.y168{bottom:818.942700px;}
.y18f{bottom:829.562700px;}
.y39{bottom:832.981950px;}
.y7e{bottom:832.986450px;}
.y60{bottom:832.999950px;}
.y141{bottom:833.004450px;}
.y167{bottom:838.442700px;}
.yb{bottom:843.548250px;}
.y18e{bottom:849.062700px;}
.y38{bottom:855.486450px;}
.y7d{bottom:855.490950px;}
.y5f{bottom:855.504450px;}
.y140{bottom:855.508950px;}
.y10a{bottom:855.531450px;}
.y166{bottom:870.698700px;}
.y37{bottom:877.990950px;}
.y7c{bottom:877.995450px;}
.y13f{bottom:878.013450px;}
.y18d{bottom:879.194700px;}
.y165{bottom:890.198700px;}
.y18c{bottom:898.694700px;}
.y36{bottom:900.495450px;}
.y5e{bottom:900.499950px;}
.y13e{bottom:900.517950px;}
.ya{bottom:904.315950px;}
.y18b{bottom:918.194700px;}
.y9{bottom:920.815950px;}
.y164{bottom:922.454700px;}
.y35{bottom:922.999950px;}
.y5d{bottom:923.004450px;}
.y13d{bottom:923.022450px;}
.y163{bottom:941.954700px;}
.y8{bottom:943.693950px;}
.y34{bottom:945.504450px;}
.y5c{bottom:945.508950px;}
.y13c{bottom:945.526950px;}
.y18a{bottom:948.326700px;}
.y162{bottom:961.454700px;}
.y189{bottom:967.826700px;}
.y33{bottom:968.008950px;}
.y5b{bottom:968.013450px;}
.y13b{bottom:968.031450px;}
.y95{bottom:990.504450px;}
.y32{bottom:990.513450px;}
.yab{bottom:990.517950px;}
.y161{bottom:993.710700px;}
.y188{bottom:997.958700px;}
.y7{bottom:1003.717500px;}
.y5a{bottom:1013.008950px;}
.y31{bottom:1013.017950px;}
.yaa{bottom:1013.022450px;}
.y13a{bottom:1013.031450px;}
.y160{bottom:1013.210700px;}
.y187{bottom:1017.458700px;}
.y59{bottom:1035.513450px;}
.y30{bottom:1035.522450px;}
.ya9{bottom:1035.526950px;}
.y6{bottom:1038.973500px;}
.y15f{bottom:1045.466700px;}
.y186{bottom:1047.590700px;}
.y58{bottom:1058.017950px;}
.y2f{bottom:1058.026950px;}
.yca{bottom:1058.031450px;}
.y15e{bottom:1064.966700px;}
.y185{bottom:1067.090700px;}
.y5{bottom:1071.973500px;}
.y57{bottom:1080.522450px;}
.y2e{bottom:1080.531450px;}
.y184{bottom:1086.590700px;}
.y15d{bottom:1097.222700px;}
.yd4{bottom:1097.284950px;}
.y56{bottom:1103.026950px;}
.yd3{bottom:1113.781950px;}
.y15c{bottom:1116.722700px;}
.y2d{bottom:1125.531450px;}
.yd2{bottom:1134.531450px;}
.y15b{bottom:1136.222700px;}
.y4{bottom:1150.626300px;}
.y3{bottom:1162.743300px;}
.y2{bottom:1174.860300px;}
.y28{bottom:1182.887700px;}
.y2c{bottom:1197.026700px;}
.y27{bottom:1199.384700px;}
.h3{height:33.012000px;}
.h14{height:34.080000px;}
.h7{height:36.480000px;}
.h13{height:36.624000px;}
.he{height:36.816000px;}
.hb{height:38.340000px;}
.h9{height:39.420000px;}
.h18{height:40.656000px;}
.h8{height:41.040000px;}
.ha{height:41.202000px;}
.hd{height:42.444000px;}
.h12{height:43.524000px;}
.h6{height:43.800000px;}
.h16{height:45.600000px;}
.h10{height:45.738000px;}
.h15{height:45.972000px;}
.h17{height:47.088000px;}
.hc{height:48.276000px;}
.h11{height:52.974000px;}
.hf{height:55.044000px;}
.h5{height:59.514000px;}
.h4{height:88.440000px;}
.h2{height:97.710124px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:114.803100px;}
.x6{left:127.009050px;}
.x10{left:148.811100px;}
.x9{left:209.303100px;}
.xb{left:280.629900px;}
.xc{left:351.235500px;}
.xd{left:363.229632px;}
.x3{left:585.416250px;}
.x4{left:621.431250px;}
.x1{left:642.762450px;}
.x2{left:656.553750px;}
.xe{left:724.733400px;}
.xf{left:727.536000px;}
.xa{left:730.211100px;}
.x8{left:732.390750px;}
.x7{left:734.924550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.192000pt;}
.ls2{letter-spacing:-0.693333pt;}
.ls6{letter-spacing:-0.576000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.288000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.528000pt;}
.ls4{letter-spacing:0.624000pt;}
.ls0{letter-spacing:4.853333pt;}
.ws0{word-spacing:-13.776000pt;}
.ws53{word-spacing:-10.112000pt;}
.ws1{word-spacing:-9.600000pt;}
.ws2{word-spacing:-9.120000pt;}
.ws42{word-spacing:-6.632208pt;}
.ws38{word-spacing:-3.456000pt;}
.ws43{word-spacing:-3.168000pt;}
.ws47{word-spacing:-2.928000pt;}
.ws2f{word-spacing:-2.736000pt;}
.ws4c{word-spacing:-2.592000pt;}
.ws39{word-spacing:-2.160000pt;}
.ws3a{word-spacing:-2.064000pt;}
.ws19{word-spacing:-1.440000pt;}
.ws45{word-spacing:-1.008000pt;}
.ws23{word-spacing:-0.624000pt;}
.ws31{word-spacing:-0.528000pt;}
.wsa{word-spacing:-0.480000pt;}
.ws4a{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws26{word-spacing:0.048000pt;}
.ws4f{word-spacing:0.096000pt;}
.ws51{word-spacing:0.288000pt;}
.ws49{word-spacing:0.480000pt;}
.ws3c{word-spacing:0.528000pt;}
.ws22{word-spacing:0.576000pt;}
.ws16{word-spacing:0.624000pt;}
.ws37{word-spacing:0.816000pt;}
.ws3d{word-spacing:0.864000pt;}
.ws50{word-spacing:1.152000pt;}
.ws5{word-spacing:1.392000pt;}
.ws25{word-spacing:1.536000pt;}
.ws3b{word-spacing:1.824000pt;}
.ws28{word-spacing:1.968000pt;}
.ws14{word-spacing:2.016000pt;}
.ws32{word-spacing:2.304000pt;}
.ws1d{word-spacing:2.352000pt;}
.wsf{word-spacing:2.496000pt;}
.ws1f{word-spacing:2.544000pt;}
.ws24{word-spacing:2.928000pt;}
.ws2e{word-spacing:3.024000pt;}
.wse{word-spacing:3.120000pt;}
.ws1e{word-spacing:3.168000pt;}
.wsd{word-spacing:3.216000pt;}
.wsb{word-spacing:3.264000pt;}
.ws40{word-spacing:3.360000pt;}
.ws3e{word-spacing:3.408000pt;}
.ws52{word-spacing:3.504000pt;}
.ws20{word-spacing:3.648000pt;}
.ws3f{word-spacing:3.696000pt;}
.ws12{word-spacing:3.792000pt;}
.ws18{word-spacing:3.840000pt;}
.ws46{word-spacing:3.888000pt;}
.wsc{word-spacing:4.128000pt;}
.ws2b{word-spacing:4.176000pt;}
.ws13{word-spacing:4.416000pt;}
.ws7{word-spacing:4.560000pt;}
.ws6{word-spacing:4.656000pt;}
.ws21{word-spacing:4.896000pt;}
.ws30{word-spacing:5.136000pt;}
.ws1b{word-spacing:5.184000pt;}
.ws44{word-spacing:5.472000pt;}
.ws4{word-spacing:5.520000pt;}
.ws9{word-spacing:5.952000pt;}
.ws1a{word-spacing:6.048000pt;}
.ws36{word-spacing:7.056000pt;}
.ws33{word-spacing:7.680000pt;}
.ws2d{word-spacing:8.256000pt;}
.ws29{word-spacing:8.352000pt;}
.ws15{word-spacing:8.544000pt;}
.ws48{word-spacing:8.784000pt;}
.ws1c{word-spacing:9.168000pt;}
.ws8{word-spacing:9.216000pt;}
.ws27{word-spacing:9.456000pt;}
.ws2a{word-spacing:9.504000pt;}
.ws11{word-spacing:9.840000pt;}
.ws2c{word-spacing:9.936000pt;}
.ws34{word-spacing:10.224000pt;}
.ws35{word-spacing:10.320000pt;}
.ws4d{word-spacing:10.704000pt;}
.ws41{word-spacing:11.136000pt;}
.ws17{word-spacing:11.616000pt;}
.ws10{word-spacing:11.712000pt;}
.ws4b{word-spacing:12.000000pt;}
.ws4e{word-spacing:15.024000pt;}
._4{margin-left:-13.772267pt;}
._12{margin-left:-8.499668pt;}
._3{margin-left:-5.603733pt;}
._5{margin-left:-4.629333pt;}
._6{margin-left:-3.258667pt;}
._1{margin-left:-2.240000pt;}
._2{margin-left:-1.120000pt;}
._0{width:1.120000pt;}
._a{width:2.083200pt;}
._b{width:2.976000pt;}
._7{width:3.873600pt;}
._8{width:4.763200pt;}
._9{width:6.369600pt;}
._c{width:7.262400pt;}
._13{width:8.174400pt;}
._e{width:9.072000pt;}
._d{width:10.228800pt;}
._f{width:12.451200pt;}
._15{width:13.368000pt;}
._10{width:14.284800pt;}
._14{width:16.094400pt;}
._17{width:17.424000pt;}
._11{width:18.902400pt;}
._16{width:24.532800pt;}
.fs8{font-size:27.984000pt;}
.fs1{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:106.666667pt;}
.fs0{font-size:113.237867pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:31.334533pt;}
.y2b{bottom:47.663733pt;}
.y29{bottom:47.666400pt;}
.y2a{bottom:59.666400pt;}
.y26{bottom:70.860667pt;}
.y25{bottom:86.856667pt;}
.yd1{bottom:100.340400pt;}
.y55{bottom:100.348400pt;}
.ya8{bottom:100.352400pt;}
.y126{bottom:100.396400pt;}
.y109{bottom:100.408400pt;}
.y136{bottom:100.432400pt;}
.y183{bottom:112.546400pt;}
.yd0{bottom:120.344400pt;}
.y54{bottom:120.352400pt;}
.ya7{bottom:120.356400pt;}
.y125{bottom:120.400400pt;}
.yc9{bottom:120.408400pt;}
.y108{bottom:120.412400pt;}
.y94{bottom:120.420400pt;}
.y135{bottom:120.436400pt;}
.yee{bottom:120.456400pt;}
.y1ac{bottom:121.314400pt;}
.y182{bottom:129.879733pt;}
.y1ab{bottom:138.647733pt;}
.ycf{bottom:140.348400pt;}
.y53{bottom:140.356400pt;}
.y7b{bottom:140.360400pt;}
.y124{bottom:140.404400pt;}
.yc8{bottom:140.412400pt;}
.y107{bottom:140.416400pt;}
.y93{bottom:140.424400pt;}
.y134{bottom:140.440400pt;}
.yb3{bottom:140.456400pt;}
.yed{bottom:140.460400pt;}
.y15a{bottom:150.424400pt;}
.y181{bottom:158.551733pt;}
.y24{bottom:158.820667pt;}
.yce{bottom:160.352400pt;}
.y7a{bottom:160.364400pt;}
.yc7{bottom:160.416400pt;}
.y92{bottom:160.428400pt;}
.yb2{bottom:160.460400pt;}
.yec{bottom:160.464400pt;}
.y1aa{bottom:165.431733pt;}
.y159{bottom:167.757733pt;}
.y180{bottom:175.885067pt;}
.y52{bottom:180.352400pt;}
.ycd{bottom:180.356400pt;}
.y79{bottom:180.368400pt;}
.y123{bottom:180.400400pt;}
.y106{bottom:180.412400pt;}
.yc6{bottom:180.420400pt;}
.y91{bottom:180.432400pt;}
.y133{bottom:180.436400pt;}
.yb1{bottom:180.464400pt;}
.yeb{bottom:180.468400pt;}
.y1a9{bottom:182.765067pt;}
.y158{bottom:196.429733pt;}
.y23{bottom:198.816667pt;}
.y1a8{bottom:200.098400pt;}
.y51{bottom:200.356400pt;}
.ycc{bottom:200.360400pt;}
.y78{bottom:200.372400pt;}
.y122{bottom:200.404400pt;}
.y105{bottom:200.416400pt;}
.yea{bottom:200.420400pt;}
.yc5{bottom:200.424400pt;}
.y90{bottom:200.436400pt;}
.y132{bottom:200.440400pt;}
.yb0{bottom:200.468400pt;}
.y139{bottom:200.472400pt;}
.y17f{bottom:204.557067pt;}
.y157{bottom:213.763067pt;}
.y22{bottom:218.820667pt;}
.y50{bottom:220.360400pt;}
.ya6{bottom:220.364400pt;}
.y77{bottom:220.376400pt;}
.y121{bottom:220.408400pt;}
.y104{bottom:220.420400pt;}
.ye9{bottom:220.424400pt;}
.yc4{bottom:220.428400pt;}
.y8f{bottom:220.440400pt;}
.y131{bottom:220.444400pt;}
.yaf{bottom:220.472400pt;}
.y17e{bottom:221.890400pt;}
.y1a7{bottom:226.882400pt;}
.y21{bottom:238.824667pt;}
.y4f{bottom:240.364400pt;}
.ya5{bottom:240.368400pt;}
.y76{bottom:240.380400pt;}
.y120{bottom:240.412400pt;}
.y103{bottom:240.424400pt;}
.ye8{bottom:240.428400pt;}
.yc3{bottom:240.432400pt;}
.y8e{bottom:240.444400pt;}
.y130{bottom:240.448400pt;}
.y138{bottom:240.472400pt;}
.y156{bottom:242.435067pt;}
.y1a6{bottom:244.215733pt;}
.y17d{bottom:250.562400pt;}
.y20{bottom:258.828667pt;}
.y155{bottom:259.768400pt;}
.y4e{bottom:260.368400pt;}
.ya4{bottom:260.372400pt;}
.y75{bottom:260.384400pt;}
.y11f{bottom:260.416400pt;}
.y102{bottom:260.428400pt;}
.ye7{bottom:260.432400pt;}
.y8d{bottom:260.448400pt;}
.y12f{bottom:260.452400pt;}
.y17c{bottom:267.895733pt;}
.y1a5{bottom:270.999733pt;}
.y1f{bottom:278.832667pt;}
.y4d{bottom:280.372400pt;}
.ya3{bottom:280.376400pt;}
.y74{bottom:280.388400pt;}
.yc2{bottom:280.428400pt;}
.y101{bottom:280.432400pt;}
.ye6{bottom:280.436400pt;}
.y12e{bottom:280.456400pt;}
.y1a4{bottom:288.333067pt;}
.y154{bottom:288.440400pt;}
.yae{bottom:290.157333pt;}
.y17b{bottom:296.567733pt;}
.y1e{bottom:298.836667pt;}
.y137{bottom:300.368400pt;}
.ya2{bottom:300.380400pt;}
.y73{bottom:300.392400pt;}
.y11e{bottom:300.412400pt;}
.yc1{bottom:300.432400pt;}
.y100{bottom:300.436400pt;}
.ye5{bottom:300.440400pt;}
.y8c{bottom:300.444400pt;}
.y12d{bottom:300.460400pt;}
.y153{bottom:305.773733pt;}
.y17a{bottom:313.901067pt;}
.y1a3{bottom:315.117067pt;}
.y1d{bottom:318.840667pt;}
.y4c{bottom:320.368400pt;}
.ycb{bottom:320.372400pt;}
.y11d{bottom:320.416400pt;}
.yc0{bottom:320.436400pt;}
.yff{bottom:320.440400pt;}
.y8b{bottom:320.448400pt;}
.y12c{bottom:320.464400pt;}
.y152{bottom:323.107067pt;}
.y1a2{bottom:332.450400pt;}
.y1c{bottom:338.844667pt;}
.y4b{bottom:340.372400pt;}
.ya1{bottom:340.376400pt;}
.y72{bottom:340.388400pt;}
.y11c{bottom:340.420400pt;}
.ye4{bottom:340.436400pt;}
.ybf{bottom:340.440400pt;}
.yfe{bottom:340.444400pt;}
.y8a{bottom:340.452400pt;}
.y12b{bottom:340.468400pt;}
.y179{bottom:342.573067pt;}
.y1a1{bottom:349.783733pt;}
.y151{bottom:351.779067pt;}
.y1b{bottom:358.848667pt;}
.y178{bottom:359.906400pt;}
.y4a{bottom:360.376400pt;}
.ya0{bottom:360.380400pt;}
.y71{bottom:360.392400pt;}
.y11b{bottom:360.424400pt;}
.ye3{bottom:360.440400pt;}
.ybe{bottom:360.444400pt;}
.y89{bottom:360.456400pt;}
.y12a{bottom:360.472400pt;}
.y150{bottom:369.112400pt;}
.y1a0{bottom:376.567733pt;}
.y1a{bottom:378.852667pt;}
.y49{bottom:380.380400pt;}
.y9f{bottom:380.384400pt;}
.y70{bottom:380.396400pt;}
.y11a{bottom:380.428400pt;}
.yfd{bottom:380.440400pt;}
.ye2{bottom:380.444400pt;}
.ybd{bottom:380.448400pt;}
.y88{bottom:380.460400pt;}
.y14f{bottom:386.445733pt;}
.y177{bottom:388.578400pt;}
.y19f{bottom:393.901067pt;}
.y19{bottom:398.856667pt;}
.y48{bottom:400.384400pt;}
.y9e{bottom:400.388400pt;}
.y6f{bottom:400.400400pt;}
.y119{bottom:400.432400pt;}
.yfc{bottom:400.444400pt;}
.ye1{bottom:400.448400pt;}
.ybc{bottom:400.452400pt;}
.y87{bottom:400.464400pt;}
.y129{bottom:400.472400pt;}
.y176{bottom:405.911733pt;}
.y19e{bottom:411.234400pt;}
.y14e{bottom:415.117733pt;}
.y18{bottom:418.860667pt;}
.y47{bottom:420.388400pt;}
.y9d{bottom:420.392400pt;}
.y6e{bottom:420.404400pt;}
.y118{bottom:420.436400pt;}
.yfb{bottom:420.448400pt;}
.ye0{bottom:420.452400pt;}
.y86{bottom:420.468400pt;}
.y175{bottom:423.245067pt;}
.y14d{bottom:432.451067pt;}
.y19d{bottom:438.018400pt;}
.y9c{bottom:440.396400pt;}
.y6d{bottom:440.408400pt;}
.ybb{bottom:440.448400pt;}
.yfa{bottom:440.452400pt;}
.ydf{bottom:440.456400pt;}
.y85{bottom:440.472400pt;}
.y14c{bottom:449.784400pt;}
.y174{bottom:451.917067pt;}
.y19c{bottom:455.351733pt;}
.y17{bottom:458.856667pt;}
.y46{bottom:460.384400pt;}
.y9b{bottom:460.400400pt;}
.y117{bottom:460.432400pt;}
.yba{bottom:460.452400pt;}
.yf9{bottom:460.456400pt;}
.yde{bottom:460.460400pt;}
.y173{bottom:469.250400pt;}
.y14b{bottom:478.456400pt;}
.y45{bottom:480.388400pt;}
.y128{bottom:480.392400pt;}
.y6c{bottom:480.404400pt;}
.y116{bottom:480.436400pt;}
.yb9{bottom:480.456400pt;}
.yf8{bottom:480.460400pt;}
.ydd{bottom:480.464400pt;}
.y84{bottom:480.472400pt;}
.y19b{bottom:482.135733pt;}
.y14a{bottom:495.789733pt;}
.y172{bottom:497.922400pt;}
.y16{bottom:498.852667pt;}
.y19a{bottom:499.469067pt;}
.y44{bottom:500.392400pt;}
.y127{bottom:500.396400pt;}
.y6b{bottom:500.408400pt;}
.y115{bottom:500.440400pt;}
.yb8{bottom:500.460400pt;}
.yf7{bottom:500.464400pt;}
.ydc{bottom:500.468400pt;}
.y171{bottom:515.255733pt;}
.y15{bottom:518.856667pt;}
.y43{bottom:520.396400pt;}
.y9a{bottom:520.400400pt;}
.y6a{bottom:520.412400pt;}
.y114{bottom:520.444400pt;}
.yb7{bottom:520.464400pt;}
.yf6{bottom:520.468400pt;}
.ydb{bottom:520.472400pt;}
.y149{bottom:524.461733pt;}
.y199{bottom:526.253067pt;}
.y14{bottom:538.860667pt;}
.y42{bottom:540.400400pt;}
.y83{bottom:540.404400pt;}
.y69{bottom:540.416400pt;}
.y113{bottom:540.448400pt;}
.yb6{bottom:540.468400pt;}
.yf5{bottom:540.472400pt;}
.y148{bottom:541.795067pt;}
.y198{bottom:543.586400pt;}
.y170{bottom:543.927733pt;}
.y13{bottom:558.864667pt;}
.y41{bottom:560.404400pt;}
.y82{bottom:560.408400pt;}
.y68{bottom:560.420400pt;}
.y112{bottom:560.452400pt;}
.yb5{bottom:560.472400pt;}
.y16f{bottom:561.261067pt;}
.y197{bottom:570.370400pt;}
.y147{bottom:570.467067pt;}
.y12{bottom:578.868667pt;}
.y40{bottom:580.408400pt;}
.y81{bottom:580.412400pt;}
.y67{bottom:580.424400pt;}
.yda{bottom:585.241467pt;}
.y196{bottom:587.703733pt;}
.y146{bottom:587.800400pt;}
.y16e{bottom:589.933067pt;}
.yd9{bottom:598.574800pt;}
.y11{bottom:598.872667pt;}
.y80{bottom:600.416400pt;}
.y66{bottom:600.428400pt;}
.y111{bottom:600.448400pt;}
.yb4{bottom:600.472400pt;}
.yf4{bottom:602.809733pt;}
.y195{bottom:605.037067pt;}
.y145{bottom:605.133733pt;}
.y16d{bottom:607.266400pt;}
.yd8{bottom:611.908133pt;}
.yf3{bottom:616.143067pt;}
.y10{bottom:618.876667pt;}
.y3f{bottom:620.404400pt;}
.y7f{bottom:620.420400pt;}
.y110{bottom:620.452400pt;}
.yd7{bottom:625.241467pt;}
.yf2{bottom:629.476400pt;}
.y194{bottom:631.821067pt;}
.y144{bottom:633.805733pt;}
.y16c{bottom:635.938400pt;}
.yd6{bottom:638.574800pt;}
.yf{bottom:638.880667pt;}
.y3e{bottom:640.408400pt;}
.y65{bottom:640.424400pt;}
.y10f{bottom:640.456400pt;}
.yf1{bottom:642.809733pt;}
.y193{bottom:649.154400pt;}
.y143{bottom:651.139067pt;}
.yd5{bottom:651.908133pt;}
.y16b{bottom:653.271733pt;}
.yf0{bottom:656.143067pt;}
.ye{bottom:658.884667pt;}
.y3d{bottom:660.412400pt;}
.y99{bottom:660.416400pt;}
.y64{bottom:660.428400pt;}
.y10e{bottom:660.460400pt;}
.y192{bottom:666.487733pt;}
.yef{bottom:669.476400pt;}
.yad{bottom:675.320400pt;}
.yd{bottom:678.888667pt;}
.y3c{bottom:680.416400pt;}
.y98{bottom:680.420400pt;}
.y63{bottom:680.432400pt;}
.y10d{bottom:680.464400pt;}
.y142{bottom:680.472400pt;}
.y16a{bottom:681.943733pt;}
.y191{bottom:693.271733pt;}
.yac{bottom:693.764400pt;}
.yc{bottom:698.892667pt;}
.y169{bottom:699.277067pt;}
.y3b{bottom:700.420400pt;}
.y97{bottom:700.424400pt;}
.y62{bottom:700.436400pt;}
.y10c{bottom:700.468400pt;}
.y190{bottom:710.605067pt;}
.y3a{bottom:720.424400pt;}
.y96{bottom:720.428400pt;}
.y61{bottom:720.440400pt;}
.y10b{bottom:720.472400pt;}
.y168{bottom:727.949067pt;}
.y18f{bottom:737.389067pt;}
.y39{bottom:740.428400pt;}
.y7e{bottom:740.432400pt;}
.y60{bottom:740.444400pt;}
.y141{bottom:740.448400pt;}
.y167{bottom:745.282400pt;}
.yb{bottom:749.820667pt;}
.y18e{bottom:754.722400pt;}
.y38{bottom:760.432400pt;}
.y7d{bottom:760.436400pt;}
.y5f{bottom:760.448400pt;}
.y140{bottom:760.452400pt;}
.y10a{bottom:760.472400pt;}
.y166{bottom:773.954400pt;}
.y37{bottom:780.436400pt;}
.y7c{bottom:780.440400pt;}
.y13f{bottom:780.456400pt;}
.y18d{bottom:781.506400pt;}
.y165{bottom:791.287733pt;}
.y18c{bottom:798.839733pt;}
.y36{bottom:800.440400pt;}
.y5e{bottom:800.444400pt;}
.y13e{bottom:800.460400pt;}
.ya{bottom:803.836400pt;}
.y18b{bottom:816.173067pt;}
.y9{bottom:818.503067pt;}
.y164{bottom:819.959733pt;}
.y35{bottom:820.444400pt;}
.y5d{bottom:820.448400pt;}
.y13d{bottom:820.464400pt;}
.y163{bottom:837.293067pt;}
.y8{bottom:838.839067pt;}
.y34{bottom:840.448400pt;}
.y5c{bottom:840.452400pt;}
.y13c{bottom:840.468400pt;}
.y18a{bottom:842.957067pt;}
.y162{bottom:854.626400pt;}
.y189{bottom:860.290400pt;}
.y33{bottom:860.452400pt;}
.y5b{bottom:860.456400pt;}
.y13b{bottom:860.472400pt;}
.y95{bottom:880.448400pt;}
.y32{bottom:880.456400pt;}
.yab{bottom:880.460400pt;}
.y161{bottom:883.298400pt;}
.y188{bottom:887.074400pt;}
.y7{bottom:892.193333pt;}
.y5a{bottom:900.452400pt;}
.y31{bottom:900.460400pt;}
.yaa{bottom:900.464400pt;}
.y13a{bottom:900.472400pt;}
.y160{bottom:900.631733pt;}
.y187{bottom:904.407733pt;}
.y59{bottom:920.456400pt;}
.y30{bottom:920.464400pt;}
.ya9{bottom:920.468400pt;}
.y6{bottom:923.532000pt;}
.y15f{bottom:929.303733pt;}
.y186{bottom:931.191733pt;}
.y58{bottom:940.460400pt;}
.y2f{bottom:940.468400pt;}
.yca{bottom:940.472400pt;}
.y15e{bottom:946.637067pt;}
.y185{bottom:948.525067pt;}
.y5{bottom:952.865333pt;}
.y57{bottom:960.464400pt;}
.y2e{bottom:960.472400pt;}
.y184{bottom:965.858400pt;}
.y15d{bottom:975.309067pt;}
.yd4{bottom:975.364400pt;}
.y56{bottom:980.468400pt;}
.yd3{bottom:990.028400pt;}
.y15c{bottom:992.642400pt;}
.y2d{bottom:1000.472400pt;}
.yd2{bottom:1008.472400pt;}
.y15b{bottom:1009.975733pt;}
.y4{bottom:1022.778933pt;}
.y3{bottom:1033.549600pt;}
.y2{bottom:1044.320267pt;}
.y28{bottom:1051.455733pt;}
.y2c{bottom:1064.023733pt;}
.y27{bottom:1066.119733pt;}
.h3{height:29.344000pt;}
.h14{height:30.293333pt;}
.h7{height:32.426667pt;}
.h13{height:32.554667pt;}
.he{height:32.725333pt;}
.hb{height:34.080000pt;}
.h9{height:35.040000pt;}
.h18{height:36.138667pt;}
.h8{height:36.480000pt;}
.ha{height:36.624000pt;}
.hd{height:37.728000pt;}
.h12{height:38.688000pt;}
.h6{height:38.933333pt;}
.h16{height:40.533333pt;}
.h10{height:40.656000pt;}
.h15{height:40.864000pt;}
.h17{height:41.856000pt;}
.hc{height:42.912000pt;}
.h11{height:47.088000pt;}
.hf{height:48.928000pt;}
.h5{height:52.901333pt;}
.h4{height:78.613333pt;}
.h2{height:86.853444pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:102.047200pt;}
.x6{left:112.896933pt;}
.x10{left:132.276533pt;}
.x9{left:186.047200pt;}
.xb{left:249.448800pt;}
.xc{left:312.209333pt;}
.xd{left:322.870784pt;}
.x3{left:520.370000pt;}
.x4{left:552.383333pt;}
.x1{left:571.344400pt;}
.x2{left:583.603333pt;}
.xe{left:644.207467pt;}
.xf{left:646.698667pt;}
.xa{left:649.076533pt;}
.x8{left:651.014000pt;}
.x7{left:653.266267pt;}
}

