
    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_58cdf05f0d99c59f164ca401.woff')format("woff");}.ff1{font-family:ff1;line-height:0.973333;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_72da39a80cef9ad1c966545c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.151000;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_34c1b2aa9c01dc2a47a91bb3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.149000;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_a80d8e162c161ef71bb911d9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.141000;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_906ea089cc80f3afb5ce0c97.woff')format("woff");}.ff5{font-family:ff5;line-height:1.151000;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_a0e9fd63dae4d852a6432d9a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.900000;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_1a39d08109f87f7bb2f4eaa8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.705000;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_782423e4aca5b9e0a5273f2a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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);}
.v4{vertical-align:-22.777200px;}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.579400px;}
.v1{vertical-align:22.777200px;}
.ls32{letter-spacing:-0.820800px;}
.ls33{letter-spacing:-0.752400px;}
.ls1a{letter-spacing:-0.684000px;}
.ls25{letter-spacing:-0.615600px;}
.ls1b{letter-spacing:-0.547200px;}
.ls3b{letter-spacing:-0.478800px;}
.ls2c{letter-spacing:-0.410400px;}
.ls3c{letter-spacing:-0.398772px;}
.ls2d{letter-spacing:-0.342000px;}
.ls24{letter-spacing:-0.273600px;}
.ls40{letter-spacing:-0.239263px;}
.lsb{letter-spacing:-0.205200px;}
.ls44{letter-spacing:-0.199386px;}
.ls43{letter-spacing:-0.159509px;}
.lsa{letter-spacing:-0.136800px;}
.ls30{letter-spacing:-0.119632px;}
.ls19{letter-spacing:-0.068400px;}
.ls3f{letter-spacing:-0.039877px;}
.ls9{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000300px;}
.ls1d{letter-spacing:0.034200px;}
.ls4b{letter-spacing:0.039877px;}
.ls7{letter-spacing:0.068400px;}
.ls45{letter-spacing:0.079754px;}
.ls2b{letter-spacing:0.098400px;}
.ls20{letter-spacing:0.102600px;}
.ls6{letter-spacing:0.114600px;}
.ls4f{letter-spacing:0.123600px;}
.ls18{letter-spacing:0.136800px;}
.ls29{letter-spacing:0.169200px;}
.ls28{letter-spacing:0.171000px;}
.ls21{letter-spacing:0.175800px;}
.ls22{letter-spacing:0.177000px;}
.ls5{letter-spacing:0.205200px;}
.ls14{letter-spacing:0.239400px;}
.ls1c{letter-spacing:0.273600px;}
.ls3a{letter-spacing:0.279140px;}
.ls42{letter-spacing:0.300000px;}
.ls34{letter-spacing:0.307800px;}
.ls23{letter-spacing:0.342000px;}
.ls56{letter-spacing:0.358895px;}
.ls1f{letter-spacing:0.376200px;}
.ls2f{letter-spacing:0.379800px;}
.ls57{letter-spacing:0.398772px;}
.ls1{letter-spacing:0.410400px;}
.ls35{letter-spacing:0.427200px;}
.ls16{letter-spacing:0.439200px;}
.ls37{letter-spacing:0.455400px;}
.ls48{letter-spacing:0.468000px;}
.ls36{letter-spacing:0.478800px;}
.ls39{letter-spacing:0.484800px;}
.lsf{letter-spacing:0.494400px;}
.ls13{letter-spacing:0.509400px;}
.ls2{letter-spacing:0.513000px;}
.ls2e{letter-spacing:0.518404px;}
.ls0{letter-spacing:0.547200px;}
.ls12{letter-spacing:0.565800px;}
.ls11{letter-spacing:0.566400px;}
.ls50{letter-spacing:0.581400px;}
.lsd{letter-spacing:0.604200px;}
.ls15{letter-spacing:0.615600px;}
.ls38{letter-spacing:0.638400px;}
.ls55{letter-spacing:0.649800px;}
.ls4d{letter-spacing:0.679800px;}
.ls3d{letter-spacing:0.684000px;}
.ls4e{letter-spacing:0.688200px;}
.ls17{letter-spacing:0.752400px;}
.ls4c{letter-spacing:0.786600px;}
.ls41{letter-spacing:0.820800px;}
.ls58{letter-spacing:0.837421px;}
.ls2a{letter-spacing:0.855000px;}
.lse{letter-spacing:0.865200px;}
.ls3{letter-spacing:0.889200px;}
.ls4{letter-spacing:0.894000px;}
.ls3e{letter-spacing:0.919200px;}
.ls4a{letter-spacing:0.923400px;}
.ls1e{letter-spacing:0.957600px;}
.lsc{letter-spacing:1.026000px;}
.ls26{letter-spacing:1.094400px;}
.ls27{letter-spacing:1.110000px;}
.ls31{letter-spacing:1.162800px;}
.ls49{letter-spacing:1.299600px;}
.ls52{letter-spacing:1.368000px;}
.ls54{letter-spacing:1.436400px;}
.ls51{letter-spacing:1.504800px;}
.ls46{letter-spacing:1.573200px;}
.ls47{letter-spacing:1.601400px;}
.ls53{letter-spacing:1.778400px;}
.ls8{letter-spacing:40.500000px;}
.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;}
}
.ws28{word-spacing:-18.194400px;}
.ws0{word-spacing:-18.000000px;}
.ws61{word-spacing:-17.715600px;}
.ws1c{word-spacing:-17.305200px;}
.ws29{word-spacing:-17.271000px;}
.ws2{word-spacing:-17.100000px;}
.ws45{word-spacing:-17.031600px;}
.ws1b{word-spacing:-16.963200px;}
.ws3a{word-spacing:-16.894800px;}
.ws4d{word-spacing:-16.826400px;}
.ws40{word-spacing:-16.416000px;}
.ws1d{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.600000px;}
.ws64{word-spacing:-10.806721px;}
.ws2a{word-spacing:-10.487704px;}
.ws63{word-spacing:-10.368072px;}
.ws62{word-spacing:-10.328195px;}
.ws3f{word-spacing:-10.248440px;}
.ws54{word-spacing:-10.049054px;}
.ws5a{word-spacing:-10.009177px;}
.ws3{word-spacing:-9.969300px;}
.ws46{word-spacing:-9.929423px;}
.ws34{word-spacing:-9.849668px;}
.ws4b{word-spacing:-9.809791px;}
.ws4c{word-spacing:-9.769914px;}
.ws47{word-spacing:-9.730037px;}
.ws41{word-spacing:-9.570528px;}
.ws33{word-spacing:-9.007350px;}
.ws4{word-spacing:-7.870500px;}
.ws1a{word-spacing:-3.294000px;}
.ws7{word-spacing:-1.710000px;}
.ws35{word-spacing:-1.641600px;}
.ws36{word-spacing:-1.504800px;}
.ws3c{word-spacing:-1.436400px;}
.ws48{word-spacing:-1.368000px;}
.wsc{word-spacing:-1.231200px;}
.ws52{word-spacing:-1.162800px;}
.ws3e{word-spacing:-1.134000px;}
.ws1f{word-spacing:-1.094400px;}
.ws11{word-spacing:-1.026000px;}
.ws43{word-spacing:-0.889200px;}
.ws32{word-spacing:-0.864000px;}
.ws3b{word-spacing:-0.820800px;}
.ws24{word-spacing:-0.810000px;}
.ws42{word-spacing:-0.684000px;}
.ws55{word-spacing:-0.615600px;}
.ws5d{word-spacing:-0.556200px;}
.ws51{word-spacing:-0.547200px;}
.ws67{word-spacing:-0.478800px;}
.ws25{word-spacing:-0.432000px;}
.ws30{word-spacing:-0.410400px;}
.ws37{word-spacing:-0.273600px;}
.ws69{word-spacing:-0.205200px;}
.ws65{word-spacing:-0.136800px;}
.ws17{word-spacing:-0.068400px;}
.ws5{word-spacing:0.000000px;}
.ws8{word-spacing:0.068400px;}
.ws5f{word-spacing:0.123600px;}
.ws6b{word-spacing:0.136800px;}
.ws50{word-spacing:0.205200px;}
.wsb{word-spacing:0.410400px;}
.ws2c{word-spacing:0.478800px;}
.ws49{word-spacing:0.540000px;}
.ws19{word-spacing:0.594000px;}
.wsd{word-spacing:0.615600px;}
.ws4e{word-spacing:0.684000px;}
.ws68{word-spacing:0.752400px;}
.ws2f{word-spacing:0.820800px;}
.ws6{word-spacing:0.957600px;}
.ws56{word-spacing:1.094400px;}
.ws3d{word-spacing:1.162800px;}
.ws16{word-spacing:1.231200px;}
.wse{word-spacing:1.296000px;}
.ws20{word-spacing:1.368000px;}
.ws21{word-spacing:1.436400px;}
.ws44{word-spacing:1.458000px;}
.ws14{word-spacing:1.504800px;}
.ws13{word-spacing:1.545000px;}
.ws27{word-spacing:1.620000px;}
.ws9{word-spacing:1.710000px;}
.ws5e{word-spacing:1.730400px;}
.ws57{word-spacing:1.778400px;}
.ws18{word-spacing:1.846800px;}
.ws22{word-spacing:1.915200px;}
.ws4f{word-spacing:2.052000px;}
.ws2e{word-spacing:2.120400px;}
.ws15{word-spacing:2.188800px;}
.ws39{word-spacing:2.214000px;}
.ws12{word-spacing:2.224800px;}
.wsa{word-spacing:2.257200px;}
.ws38{word-spacing:2.325600px;}
.ws1e{word-spacing:2.394000px;}
.ws10{word-spacing:2.599200px;}
.ws2d{word-spacing:2.667600px;}
.ws66{word-spacing:2.736000px;}
.ws2b{word-spacing:2.804400px;}
.ws5b{word-spacing:4.266000px;}
.ws59{word-spacing:4.536000px;}
.ws5c{word-spacing:5.832000px;}
.ws31{word-spacing:6.534000px;}
.ws58{word-spacing:6.966000px;}
.ws6a{word-spacing:7.884000px;}
.ws60{word-spacing:8.856000px;}
.ws23{word-spacing:12.474000px;}
.ws53{word-spacing:12.906000px;}
.wsf{word-spacing:16.632000px;}
.ws26{word-spacing:17.280000px;}
.ws4a{word-spacing:40.500000px;}
._e{margin-left:-31.659000px;}
._8{margin-left:-8.803080px;}
._3{margin-left:-5.409000px;}
._2{margin-left:-4.023000px;}
._9{margin-left:-2.510280px;}
._0{margin-left:-1.026000px;}
._5{width:1.130400px;}
._d{width:2.698200px;}
._4{width:3.975000px;}
._b{width:6.946800px;}
._f{width:8.839200px;}
._a{width:12.079800px;}
._7{width:33.966000px;}
._c{width:35.964000px;}
._1{width:39.204000px;}
._6{width:40.500000px;}
.fc1{color:rgb(22,22,22);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:31.482000px;}
.fs9{font-size:36.029400px;}
.fs5{font-size:39.877200px;}
.fs3{font-size:50.400000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:61.800000px;}
.fs4{font-size:68.400000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:42.519750px;}
.y18{bottom:85.039350px;}
.y33{bottom:89.534850px;}
.y50{bottom:101.239350px;}
.y17{bottom:105.734850px;}
.y16{bottom:117.439350px;}
.y4f{bottom:121.934850px;}
.y55{bottom:133.639350px;}
.y15{bottom:138.134850px;}
.y4e{bottom:149.839350px;}
.y54{bottom:154.334850px;}
.y4d{bottom:166.039350px;}
.yf9{bottom:175.725600px;}
.y14{bottom:176.047800px;}
.yd8{bottom:178.492800px;}
.y4c{bottom:186.734850px;}
.y32{bottom:190.725600px;}
.yc5{bottom:191.992800px;}
.y82{bottom:193.725600px;}
.ye8{bottom:195.225600px;}
.yf8{bottom:198.225600px;}
.y13{bottom:198.547800px;}
.yad{bottom:200.717850px;}
.yd7{bottom:200.992800px;}
.y6f{bottom:203.992800px;}
.y53{bottom:210.225600px;}
.y31{bottom:213.225600px;}
.yc4{bottom:214.492800px;}
.y81{bottom:216.225600px;}
.ye7{bottom:217.725600px;}
.y96{bottom:219.225600px;}
.y4b{bottom:220.725600px;}
.y12{bottom:221.047800px;}
.yac{bottom:223.217850px;}
.yd6{bottom:223.492800px;}
.y6e{bottom:226.492800px;}
.y52{bottom:229.725600px;}
.y30{bottom:235.725600px;}
.yc3{bottom:236.992800px;}
.y80{bottom:238.725600px;}
.ye6{bottom:240.225600px;}
.y95{bottom:241.725600px;}
.y4a{bottom:243.225600px;}
.y11{bottom:243.547800px;}
.yab{bottom:245.717850px;}
.yd5{bottom:245.992800px;}
.y6d{bottom:248.992800px;}
.y51{bottom:249.225600px;}
.yf7{bottom:256.492800px;}
.y2f{bottom:258.225600px;}
.yc2{bottom:259.492800px;}
.y7f{bottom:261.225600px;}
.ye5{bottom:262.725600px;}
.y94{bottom:264.225600px;}
.y49{bottom:265.725600px;}
.y10{bottom:266.047800px;}
.yaa{bottom:268.217850px;}
.yd4{bottom:268.492800px;}
.y6c{bottom:271.492800px;}
.yf6{bottom:275.992800px;}
.y2e{bottom:280.725600px;}
.yc1{bottom:281.992800px;}
.y7e{bottom:283.725600px;}
.ye4{bottom:285.225600px;}
.y93{bottom:286.725600px;}
.y48{bottom:288.225600px;}
.yf{bottom:288.547800px;}
.ya9{bottom:290.717850px;}
.yd3{bottom:290.992800px;}
.y6b{bottom:293.992800px;}
.yf5{bottom:295.492800px;}
.y2d{bottom:303.225600px;}
.yc0{bottom:304.492800px;}
.y7d{bottom:306.225600px;}
.ye3{bottom:307.725600px;}
.y92{bottom:309.225600px;}
.y47{bottom:310.725600px;}
.ye{bottom:311.047800px;}
.ya8{bottom:313.217850px;}
.yd2{bottom:313.492800px;}
.yf4{bottom:314.992800px;}
.y6a{bottom:316.492800px;}
.y2c{bottom:325.725600px;}
.ybf{bottom:326.992800px;}
.y7c{bottom:328.725600px;}
.ye2{bottom:330.225600px;}
.y91{bottom:331.725600px;}
.y46{bottom:333.225600px;}
.yd{bottom:333.547800px;}
.yf3{bottom:334.492800px;}
.ya7{bottom:335.717850px;}
.yd1{bottom:335.992800px;}
.y69{bottom:338.992800px;}
.y2b{bottom:348.225600px;}
.ybe{bottom:349.492800px;}
.y7b{bottom:351.225600px;}
.y90{bottom:354.225600px;}
.y45{bottom:355.725600px;}
.yc{bottom:356.047800px;}
.ya6{bottom:358.217850px;}
.yd0{bottom:358.492800px;}
.y68{bottom:361.492800px;}
.y2a{bottom:370.725600px;}
.ybd{bottom:371.992800px;}
.ye1{bottom:372.225600px;}
.yf2{bottom:373.492800px;}
.y7a{bottom:373.725600px;}
.y8f{bottom:376.725600px;}
.y44{bottom:378.225600px;}
.yb{bottom:378.547800px;}
.ya5{bottom:380.717850px;}
.ycf{bottom:380.992800px;}
.y67{bottom:383.992800px;}
.ye0{bottom:391.725750px;}
.y29{bottom:393.225750px;}
.ybc{bottom:394.492800px;}
.yf1{bottom:395.992800px;}
.y79{bottom:396.225750px;}
.y8e{bottom:399.225750px;}
.y43{bottom:400.725750px;}
.ya{bottom:401.047800px;}
.ya4{bottom:403.217700px;}
.yce{bottom:403.492800px;}
.y66{bottom:406.492800px;}
.ydf{bottom:411.225750px;}
.y28{bottom:415.725750px;}
.ybb{bottom:416.992800px;}
.yf0{bottom:418.492800px;}
.y78{bottom:418.725750px;}
.y8d{bottom:421.725750px;}
.y42{bottom:423.225750px;}
.y9{bottom:423.547800px;}
.ya3{bottom:425.717700px;}
.ycd{bottom:425.992800px;}
.y65{bottom:428.992800px;}
.yde{bottom:430.725750px;}
.y27{bottom:438.225750px;}
.yba{bottom:439.492800px;}
.yef{bottom:440.992800px;}
.y77{bottom:441.225750px;}
.y8c{bottom:444.225750px;}
.y41{bottom:445.725750px;}
.y8{bottom:446.047800px;}
.ycc{bottom:448.492800px;}
.ydd{bottom:450.225750px;}
.y64{bottom:451.492800px;}
.y26{bottom:460.725750px;}
.yb9{bottom:461.992800px;}
.yee{bottom:463.492800px;}
.y76{bottom:463.725750px;}
.y8b{bottom:466.725750px;}
.ya2{bottom:467.717700px;}
.y40{bottom:468.225750px;}
.y7{bottom:468.547800px;}
.ydc{bottom:469.725750px;}
.ycb{bottom:470.992800px;}
.y63{bottom:473.992800px;}
.y25{bottom:483.225750px;}
.yb8{bottom:484.492800px;}
.yed{bottom:485.992800px;}
.y75{bottom:486.225750px;}
.ya1{bottom:487.217700px;}
.y8a{bottom:489.225750px;}
.y3f{bottom:490.725750px;}
.y6{bottom:491.047800px;}
.yca{bottom:493.492800px;}
.y62{bottom:496.492800px;}
.y24{bottom:505.725750px;}
.ya0{bottom:506.717700px;}
.yb7{bottom:506.992800px;}
.y74{bottom:508.725750px;}
.y89{bottom:511.725750px;}
.y3e{bottom:513.225750px;}
.y5{bottom:513.547800px;}
.yc9{bottom:515.992800px;}
.y61{bottom:518.992800px;}
.yb0{bottom:525.225750px;}
.y9f{bottom:526.217700px;}
.yec{bottom:527.992800px;}
.y23{bottom:528.225750px;}
.yb6{bottom:529.492800px;}
.y73{bottom:531.225750px;}
.y88{bottom:534.225750px;}
.y3d{bottom:535.725750px;}
.yc8{bottom:538.492800px;}
.y60{bottom:541.492800px;}
.yaf{bottom:544.725750px;}
.y9e{bottom:545.717700px;}
.yeb{bottom:547.492800px;}
.y22{bottom:550.725750px;}
.yb5{bottom:551.992800px;}
.y87{bottom:556.725750px;}
.y3c{bottom:558.225750px;}
.yc7{bottom:560.992800px;}
.y5f{bottom:563.992800px;}
.yae{bottom:564.225750px;}
.y9d{bottom:565.217700px;}
.yea{bottom:566.992800px;}
.y21{bottom:573.225750px;}
.yb4{bottom:574.492800px;}
.y3b{bottom:580.725750px;}
.yc6{bottom:583.492800px;}
.y9c{bottom:584.717700px;}
.ye9{bottom:586.492800px;}
.y72{bottom:592.725600px;}
.y20{bottom:595.725600px;}
.yb3{bottom:596.992800px;}
.y86{bottom:598.725600px;}
.y3a{bottom:603.225600px;}
.y9b{bottom:604.217700px;}
.y5e{bottom:605.992800px;}
.y71{bottom:612.225600px;}
.ydb{bottom:615.225600px;}
.y1f{bottom:618.225600px;}
.yb2{bottom:619.492800px;}
.y4{bottom:621.087150px;}
.y5d{bottom:625.492800px;}
.y39{bottom:625.725600px;}
.y70{bottom:631.725600px;}
.yda{bottom:634.725600px;}
.y85{bottom:637.725600px;}
.yb1{bottom:641.992800px;}
.y9a{bottom:643.217700px;}
.y5c{bottom:644.992800px;}
.y38{bottom:648.225600px;}
.yd9{bottom:654.225600px;}
.y84{bottom:657.225600px;}
.y1e{bottom:660.225600px;}
.y99{bottom:662.717700px;}
.y5b{bottom:664.492800px;}
.y37{bottom:670.725600px;}
.y83{bottom:676.725600px;}
.y1d{bottom:679.725600px;}
.y98{bottom:682.217850px;}
.y5a{bottom:683.992800px;}
.y36{bottom:693.225600px;}
.y1c{bottom:699.225600px;}
.y97{bottom:701.717850px;}
.y59{bottom:703.492800px;}
.y35{bottom:715.725600px;}
.y3{bottom:720.122550px;}
.y58{bottom:722.992800px;}
.y1b{bottom:738.225600px;}
.y57{bottom:742.492800px;}
.y2{bottom:753.122550px;}
.y1a{bottom:760.725600px;}
.y56{bottom:761.992800px;}
.y19{bottom:799.369950px;}
.y34{bottom:799.370100px;}
.h6{height:32.184000px;}
.h2{height:42.980000px;}
.h9{height:49.626000px;}
.h7{height:50.166000px;}
.h8{height:57.412200px;}
.h5{height:63.543600px;}
.h4{height:66.744000px;}
.h3{height:100.332000px;}
.h0{height:850.393500px;}
.h1{height:850.500000px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x0{left:0.000000px;}
.x9{left:72.283500px;}
.x5{left:80.787450px;}
.xa{left:89.291250px;}
.x6{left:97.287450px;}
.x2{left:131.830500px;}
.xb{left:176.859000px;}
.x3{left:214.409700px;}
.x4{left:224.707650px;}
.x8{left:246.039900px;}
.x7{left:300.876150px;}
.x1{left:311.151750px;}
@media print{
.v4{vertical-align:-20.246400pt;}
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.292800pt;}
.v1{vertical-align:20.246400pt;}
.ls32{letter-spacing:-0.729600pt;}
.ls33{letter-spacing:-0.668800pt;}
.ls1a{letter-spacing:-0.608000pt;}
.ls25{letter-spacing:-0.547200pt;}
.ls1b{letter-spacing:-0.486400pt;}
.ls3b{letter-spacing:-0.425600pt;}
.ls2c{letter-spacing:-0.364800pt;}
.ls3c{letter-spacing:-0.354464pt;}
.ls2d{letter-spacing:-0.304000pt;}
.ls24{letter-spacing:-0.243200pt;}
.ls40{letter-spacing:-0.212678pt;}
.lsb{letter-spacing:-0.182400pt;}
.ls44{letter-spacing:-0.177232pt;}
.ls43{letter-spacing:-0.141786pt;}
.lsa{letter-spacing:-0.121600pt;}
.ls30{letter-spacing:-0.106339pt;}
.ls19{letter-spacing:-0.060800pt;}
.ls3f{letter-spacing:-0.035446pt;}
.ls9{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000267pt;}
.ls1d{letter-spacing:0.030400pt;}
.ls4b{letter-spacing:0.035446pt;}
.ls7{letter-spacing:0.060800pt;}
.ls45{letter-spacing:0.070893pt;}
.ls2b{letter-spacing:0.087467pt;}
.ls20{letter-spacing:0.091200pt;}
.ls6{letter-spacing:0.101867pt;}
.ls4f{letter-spacing:0.109867pt;}
.ls18{letter-spacing:0.121600pt;}
.ls29{letter-spacing:0.150400pt;}
.ls28{letter-spacing:0.152000pt;}
.ls21{letter-spacing:0.156267pt;}
.ls22{letter-spacing:0.157333pt;}
.ls5{letter-spacing:0.182400pt;}
.ls14{letter-spacing:0.212800pt;}
.ls1c{letter-spacing:0.243200pt;}
.ls3a{letter-spacing:0.248125pt;}
.ls42{letter-spacing:0.266667pt;}
.ls34{letter-spacing:0.273600pt;}
.ls23{letter-spacing:0.304000pt;}
.ls56{letter-spacing:0.319018pt;}
.ls1f{letter-spacing:0.334400pt;}
.ls2f{letter-spacing:0.337600pt;}
.ls57{letter-spacing:0.354464pt;}
.ls1{letter-spacing:0.364800pt;}
.ls35{letter-spacing:0.379733pt;}
.ls16{letter-spacing:0.390400pt;}
.ls37{letter-spacing:0.404800pt;}
.ls48{letter-spacing:0.416000pt;}
.ls36{letter-spacing:0.425600pt;}
.ls39{letter-spacing:0.430933pt;}
.lsf{letter-spacing:0.439467pt;}
.ls13{letter-spacing:0.452800pt;}
.ls2{letter-spacing:0.456000pt;}
.ls2e{letter-spacing:0.460803pt;}
.ls0{letter-spacing:0.486400pt;}
.ls12{letter-spacing:0.502933pt;}
.ls11{letter-spacing:0.503467pt;}
.ls50{letter-spacing:0.516800pt;}
.lsd{letter-spacing:0.537067pt;}
.ls15{letter-spacing:0.547200pt;}
.ls38{letter-spacing:0.567467pt;}
.ls55{letter-spacing:0.577600pt;}
.ls4d{letter-spacing:0.604267pt;}
.ls3d{letter-spacing:0.608000pt;}
.ls4e{letter-spacing:0.611733pt;}
.ls17{letter-spacing:0.668800pt;}
.ls4c{letter-spacing:0.699200pt;}
.ls41{letter-spacing:0.729600pt;}
.ls58{letter-spacing:0.744374pt;}
.ls2a{letter-spacing:0.760000pt;}
.lse{letter-spacing:0.769067pt;}
.ls3{letter-spacing:0.790400pt;}
.ls4{letter-spacing:0.794667pt;}
.ls3e{letter-spacing:0.817067pt;}
.ls4a{letter-spacing:0.820800pt;}
.ls1e{letter-spacing:0.851200pt;}
.lsc{letter-spacing:0.912000pt;}
.ls26{letter-spacing:0.972800pt;}
.ls27{letter-spacing:0.986667pt;}
.ls31{letter-spacing:1.033600pt;}
.ls49{letter-spacing:1.155200pt;}
.ls52{letter-spacing:1.216000pt;}
.ls54{letter-spacing:1.276800pt;}
.ls51{letter-spacing:1.337600pt;}
.ls46{letter-spacing:1.398400pt;}
.ls47{letter-spacing:1.423467pt;}
.ls53{letter-spacing:1.580800pt;}
.ls8{letter-spacing:36.000000pt;}
.ws28{word-spacing:-16.172800pt;}
.ws0{word-spacing:-16.000000pt;}
.ws61{word-spacing:-15.747200pt;}
.ws1c{word-spacing:-15.382400pt;}
.ws29{word-spacing:-15.352000pt;}
.ws2{word-spacing:-15.200000pt;}
.ws45{word-spacing:-15.139200pt;}
.ws1b{word-spacing:-15.078400pt;}
.ws3a{word-spacing:-15.017600pt;}
.ws4d{word-spacing:-14.956800pt;}
.ws40{word-spacing:-14.592000pt;}
.ws1d{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.200000pt;}
.ws64{word-spacing:-9.605974pt;}
.ws2a{word-spacing:-9.322403pt;}
.ws63{word-spacing:-9.216064pt;}
.ws62{word-spacing:-9.180618pt;}
.ws3f{word-spacing:-9.109725pt;}
.ws54{word-spacing:-8.932493pt;}
.ws5a{word-spacing:-8.897046pt;}
.ws3{word-spacing:-8.861600pt;}
.ws46{word-spacing:-8.826154pt;}
.ws34{word-spacing:-8.755261pt;}
.ws4b{word-spacing:-8.719814pt;}
.ws4c{word-spacing:-8.684368pt;}
.ws47{word-spacing:-8.648922pt;}
.ws41{word-spacing:-8.507136pt;}
.ws33{word-spacing:-8.006533pt;}
.ws4{word-spacing:-6.996000pt;}
.ws1a{word-spacing:-2.928000pt;}
.ws7{word-spacing:-1.520000pt;}
.ws35{word-spacing:-1.459200pt;}
.ws36{word-spacing:-1.337600pt;}
.ws3c{word-spacing:-1.276800pt;}
.ws48{word-spacing:-1.216000pt;}
.wsc{word-spacing:-1.094400pt;}
.ws52{word-spacing:-1.033600pt;}
.ws3e{word-spacing:-1.008000pt;}
.ws1f{word-spacing:-0.972800pt;}
.ws11{word-spacing:-0.912000pt;}
.ws43{word-spacing:-0.790400pt;}
.ws32{word-spacing:-0.768000pt;}
.ws3b{word-spacing:-0.729600pt;}
.ws24{word-spacing:-0.720000pt;}
.ws42{word-spacing:-0.608000pt;}
.ws55{word-spacing:-0.547200pt;}
.ws5d{word-spacing:-0.494400pt;}
.ws51{word-spacing:-0.486400pt;}
.ws67{word-spacing:-0.425600pt;}
.ws25{word-spacing:-0.384000pt;}
.ws30{word-spacing:-0.364800pt;}
.ws37{word-spacing:-0.243200pt;}
.ws69{word-spacing:-0.182400pt;}
.ws65{word-spacing:-0.121600pt;}
.ws17{word-spacing:-0.060800pt;}
.ws5{word-spacing:0.000000pt;}
.ws8{word-spacing:0.060800pt;}
.ws5f{word-spacing:0.109867pt;}
.ws6b{word-spacing:0.121600pt;}
.ws50{word-spacing:0.182400pt;}
.wsb{word-spacing:0.364800pt;}
.ws2c{word-spacing:0.425600pt;}
.ws49{word-spacing:0.480000pt;}
.ws19{word-spacing:0.528000pt;}
.wsd{word-spacing:0.547200pt;}
.ws4e{word-spacing:0.608000pt;}
.ws68{word-spacing:0.668800pt;}
.ws2f{word-spacing:0.729600pt;}
.ws6{word-spacing:0.851200pt;}
.ws56{word-spacing:0.972800pt;}
.ws3d{word-spacing:1.033600pt;}
.ws16{word-spacing:1.094400pt;}
.wse{word-spacing:1.152000pt;}
.ws20{word-spacing:1.216000pt;}
.ws21{word-spacing:1.276800pt;}
.ws44{word-spacing:1.296000pt;}
.ws14{word-spacing:1.337600pt;}
.ws13{word-spacing:1.373333pt;}
.ws27{word-spacing:1.440000pt;}
.ws9{word-spacing:1.520000pt;}
.ws5e{word-spacing:1.538133pt;}
.ws57{word-spacing:1.580800pt;}
.ws18{word-spacing:1.641600pt;}
.ws22{word-spacing:1.702400pt;}
.ws4f{word-spacing:1.824000pt;}
.ws2e{word-spacing:1.884800pt;}
.ws15{word-spacing:1.945600pt;}
.ws39{word-spacing:1.968000pt;}
.ws12{word-spacing:1.977600pt;}
.wsa{word-spacing:2.006400pt;}
.ws38{word-spacing:2.067200pt;}
.ws1e{word-spacing:2.128000pt;}
.ws10{word-spacing:2.310400pt;}
.ws2d{word-spacing:2.371200pt;}
.ws66{word-spacing:2.432000pt;}
.ws2b{word-spacing:2.492800pt;}
.ws5b{word-spacing:3.792000pt;}
.ws59{word-spacing:4.032000pt;}
.ws5c{word-spacing:5.184000pt;}
.ws31{word-spacing:5.808000pt;}
.ws58{word-spacing:6.192000pt;}
.ws6a{word-spacing:7.008000pt;}
.ws60{word-spacing:7.872000pt;}
.ws23{word-spacing:11.088000pt;}
.ws53{word-spacing:11.472000pt;}
.wsf{word-spacing:14.784000pt;}
.ws26{word-spacing:15.360000pt;}
.ws4a{word-spacing:36.000000pt;}
._e{margin-left:-28.141333pt;}
._8{margin-left:-7.824960pt;}
._3{margin-left:-4.808000pt;}
._2{margin-left:-3.576000pt;}
._9{margin-left:-2.231360pt;}
._0{margin-left:-0.912000pt;}
._5{width:1.004800pt;}
._d{width:2.398400pt;}
._4{width:3.533333pt;}
._b{width:6.174933pt;}
._f{width:7.857067pt;}
._a{width:10.737600pt;}
._7{width:30.192000pt;}
._c{width:31.968000pt;}
._1{width:34.848000pt;}
._6{width:36.000000pt;}
.fs6{font-size:27.984000pt;}
.fs9{font-size:32.026133pt;}
.fs5{font-size:35.446400pt;}
.fs3{font-size:44.800000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:54.933333pt;}
.fs4{font-size:60.800000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:37.795333pt;}
.y18{bottom:75.590533pt;}
.y33{bottom:79.586533pt;}
.y50{bottom:89.990533pt;}
.y17{bottom:93.986533pt;}
.y16{bottom:104.390533pt;}
.y4f{bottom:108.386533pt;}
.y55{bottom:118.790533pt;}
.y15{bottom:122.786533pt;}
.y4e{bottom:133.190533pt;}
.y54{bottom:137.186533pt;}
.y4d{bottom:147.590533pt;}
.yf9{bottom:156.200533pt;}
.y14{bottom:156.486933pt;}
.yd8{bottom:158.660267pt;}
.y4c{bottom:165.986533pt;}
.y32{bottom:169.533867pt;}
.yc5{bottom:170.660267pt;}
.y82{bottom:172.200533pt;}
.ye8{bottom:173.533867pt;}
.yf8{bottom:176.200533pt;}
.y13{bottom:176.486933pt;}
.yad{bottom:178.415867pt;}
.yd7{bottom:178.660267pt;}
.y6f{bottom:181.326933pt;}
.y53{bottom:186.867200pt;}
.y31{bottom:189.533867pt;}
.yc4{bottom:190.660267pt;}
.y81{bottom:192.200533pt;}
.ye7{bottom:193.533867pt;}
.y96{bottom:194.867200pt;}
.y4b{bottom:196.200533pt;}
.y12{bottom:196.486933pt;}
.yac{bottom:198.415867pt;}
.yd6{bottom:198.660267pt;}
.y6e{bottom:201.326933pt;}
.y52{bottom:204.200533pt;}
.y30{bottom:209.533867pt;}
.yc3{bottom:210.660267pt;}
.y80{bottom:212.200533pt;}
.ye6{bottom:213.533867pt;}
.y95{bottom:214.867200pt;}
.y4a{bottom:216.200533pt;}
.y11{bottom:216.486933pt;}
.yab{bottom:218.415867pt;}
.yd5{bottom:218.660267pt;}
.y6d{bottom:221.326933pt;}
.y51{bottom:221.533867pt;}
.yf7{bottom:227.993600pt;}
.y2f{bottom:229.533867pt;}
.yc2{bottom:230.660267pt;}
.y7f{bottom:232.200533pt;}
.ye5{bottom:233.533867pt;}
.y94{bottom:234.867200pt;}
.y49{bottom:236.200533pt;}
.y10{bottom:236.486933pt;}
.yaa{bottom:238.415867pt;}
.yd4{bottom:238.660267pt;}
.y6c{bottom:241.326933pt;}
.yf6{bottom:245.326933pt;}
.y2e{bottom:249.533867pt;}
.yc1{bottom:250.660267pt;}
.y7e{bottom:252.200533pt;}
.ye4{bottom:253.533867pt;}
.y93{bottom:254.867200pt;}
.y48{bottom:256.200533pt;}
.yf{bottom:256.486933pt;}
.ya9{bottom:258.415867pt;}
.yd3{bottom:258.660267pt;}
.y6b{bottom:261.326933pt;}
.yf5{bottom:262.660267pt;}
.y2d{bottom:269.533867pt;}
.yc0{bottom:270.660267pt;}
.y7d{bottom:272.200533pt;}
.ye3{bottom:273.533867pt;}
.y92{bottom:274.867200pt;}
.y47{bottom:276.200533pt;}
.ye{bottom:276.486933pt;}
.ya8{bottom:278.415867pt;}
.yd2{bottom:278.660267pt;}
.yf4{bottom:279.993600pt;}
.y6a{bottom:281.326933pt;}
.y2c{bottom:289.533867pt;}
.ybf{bottom:290.660267pt;}
.y7c{bottom:292.200533pt;}
.ye2{bottom:293.533867pt;}
.y91{bottom:294.867200pt;}
.y46{bottom:296.200533pt;}
.yd{bottom:296.486933pt;}
.yf3{bottom:297.326933pt;}
.ya7{bottom:298.415867pt;}
.yd1{bottom:298.660267pt;}
.y69{bottom:301.326933pt;}
.y2b{bottom:309.533867pt;}
.ybe{bottom:310.660267pt;}
.y7b{bottom:312.200533pt;}
.y90{bottom:314.867200pt;}
.y45{bottom:316.200533pt;}
.yc{bottom:316.486933pt;}
.ya6{bottom:318.415867pt;}
.yd0{bottom:318.660267pt;}
.y68{bottom:321.326933pt;}
.y2a{bottom:329.533867pt;}
.ybd{bottom:330.660267pt;}
.ye1{bottom:330.867200pt;}
.yf2{bottom:331.993600pt;}
.y7a{bottom:332.200533pt;}
.y8f{bottom:334.867200pt;}
.y44{bottom:336.200533pt;}
.yb{bottom:336.486933pt;}
.ya5{bottom:338.415867pt;}
.ycf{bottom:338.660267pt;}
.y67{bottom:341.326933pt;}
.ye0{bottom:348.200667pt;}
.y29{bottom:349.534000pt;}
.ybc{bottom:350.660267pt;}
.yf1{bottom:351.993600pt;}
.y79{bottom:352.200667pt;}
.y8e{bottom:354.867333pt;}
.y43{bottom:356.200667pt;}
.ya{bottom:356.486933pt;}
.ya4{bottom:358.415733pt;}
.yce{bottom:358.660267pt;}
.y66{bottom:361.326933pt;}
.ydf{bottom:365.534000pt;}
.y28{bottom:369.534000pt;}
.ybb{bottom:370.660267pt;}
.yf0{bottom:371.993600pt;}
.y78{bottom:372.200667pt;}
.y8d{bottom:374.867333pt;}
.y42{bottom:376.200667pt;}
.y9{bottom:376.486933pt;}
.ya3{bottom:378.415733pt;}
.ycd{bottom:378.660267pt;}
.y65{bottom:381.326933pt;}
.yde{bottom:382.867333pt;}
.y27{bottom:389.534000pt;}
.yba{bottom:390.660267pt;}
.yef{bottom:391.993600pt;}
.y77{bottom:392.200667pt;}
.y8c{bottom:394.867333pt;}
.y41{bottom:396.200667pt;}
.y8{bottom:396.486933pt;}
.ycc{bottom:398.660267pt;}
.ydd{bottom:400.200667pt;}
.y64{bottom:401.326933pt;}
.y26{bottom:409.534000pt;}
.yb9{bottom:410.660267pt;}
.yee{bottom:411.993600pt;}
.y76{bottom:412.200667pt;}
.y8b{bottom:414.867333pt;}
.ya2{bottom:415.749067pt;}
.y40{bottom:416.200667pt;}
.y7{bottom:416.486933pt;}
.ydc{bottom:417.534000pt;}
.ycb{bottom:418.660267pt;}
.y63{bottom:421.326933pt;}
.y25{bottom:429.534000pt;}
.yb8{bottom:430.660267pt;}
.yed{bottom:431.993600pt;}
.y75{bottom:432.200667pt;}
.ya1{bottom:433.082400pt;}
.y8a{bottom:434.867333pt;}
.y3f{bottom:436.200667pt;}
.y6{bottom:436.486933pt;}
.yca{bottom:438.660267pt;}
.y62{bottom:441.326933pt;}
.y24{bottom:449.534000pt;}
.ya0{bottom:450.415733pt;}
.yb7{bottom:450.660267pt;}
.y74{bottom:452.200667pt;}
.y89{bottom:454.867333pt;}
.y3e{bottom:456.200667pt;}
.y5{bottom:456.486933pt;}
.yc9{bottom:458.660267pt;}
.y61{bottom:461.326933pt;}
.yb0{bottom:466.867333pt;}
.y9f{bottom:467.749067pt;}
.yec{bottom:469.326933pt;}
.y23{bottom:469.534000pt;}
.yb6{bottom:470.660267pt;}
.y73{bottom:472.200667pt;}
.y88{bottom:474.867333pt;}
.y3d{bottom:476.200667pt;}
.yc8{bottom:478.660267pt;}
.y60{bottom:481.326933pt;}
.yaf{bottom:484.200667pt;}
.y9e{bottom:485.082400pt;}
.yeb{bottom:486.660267pt;}
.y22{bottom:489.534000pt;}
.yb5{bottom:490.660267pt;}
.y87{bottom:494.867333pt;}
.y3c{bottom:496.200667pt;}
.yc7{bottom:498.660267pt;}
.y5f{bottom:501.326933pt;}
.yae{bottom:501.534000pt;}
.y9d{bottom:502.415733pt;}
.yea{bottom:503.993600pt;}
.y21{bottom:509.534000pt;}
.yb4{bottom:510.660267pt;}
.y3b{bottom:516.200667pt;}
.yc6{bottom:518.660267pt;}
.y9c{bottom:519.749067pt;}
.ye9{bottom:521.326933pt;}
.y72{bottom:526.867200pt;}
.y20{bottom:529.533867pt;}
.yb3{bottom:530.660267pt;}
.y86{bottom:532.200533pt;}
.y3a{bottom:536.200533pt;}
.y9b{bottom:537.082400pt;}
.y5e{bottom:538.660267pt;}
.y71{bottom:544.200533pt;}
.ydb{bottom:546.867200pt;}
.y1f{bottom:549.533867pt;}
.yb2{bottom:550.660267pt;}
.y4{bottom:552.077467pt;}
.y5d{bottom:555.993600pt;}
.y39{bottom:556.200533pt;}
.y70{bottom:561.533867pt;}
.yda{bottom:564.200533pt;}
.y85{bottom:566.867200pt;}
.yb1{bottom:570.660267pt;}
.y9a{bottom:571.749067pt;}
.y5c{bottom:573.326933pt;}
.y38{bottom:576.200533pt;}
.yd9{bottom:581.533867pt;}
.y84{bottom:584.200533pt;}
.y1e{bottom:586.867200pt;}
.y99{bottom:589.082400pt;}
.y5b{bottom:590.660267pt;}
.y37{bottom:596.200533pt;}
.y83{bottom:601.533867pt;}
.y1d{bottom:604.200533pt;}
.y98{bottom:606.415867pt;}
.y5a{bottom:607.993600pt;}
.y36{bottom:616.200533pt;}
.y1c{bottom:621.533867pt;}
.y97{bottom:623.749200pt;}
.y59{bottom:625.326933pt;}
.y35{bottom:636.200533pt;}
.y3{bottom:640.108933pt;}
.y58{bottom:642.660267pt;}
.y1b{bottom:656.200533pt;}
.y57{bottom:659.993600pt;}
.y2{bottom:669.442267pt;}
.y1a{bottom:676.200533pt;}
.y56{bottom:677.326933pt;}
.y19{bottom:710.551067pt;}
.y34{bottom:710.551200pt;}
.h6{height:28.608000pt;}
.h2{height:38.204444pt;}
.h9{height:44.112000pt;}
.h7{height:44.592000pt;}
.h8{height:51.033067pt;}
.h5{height:56.483200pt;}
.h4{height:59.328000pt;}
.h3{height:89.184000pt;}
.h0{height:755.905333pt;}
.h1{height:756.000000pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x0{left:0.000000pt;}
.x9{left:64.252000pt;}
.x5{left:71.811067pt;}
.xa{left:79.370000pt;}
.x6{left:86.477733pt;}
.x2{left:117.182667pt;}
.xb{left:157.208000pt;}
.x3{left:190.586400pt;}
.x4{left:199.740133pt;}
.x8{left:218.702133pt;}
.x7{left:267.445467pt;}
.x1{left:276.579333pt;}
}

