
    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_40ab4011072ed37623eb81c7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.717285;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_cf79e58b3a96cf5b983df8df.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d0689d9fe5036f869cd5a09c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.716000;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_a21765f7e7fa5d46237726d1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.105000;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_6e820e9eb3e06c8c993183f7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.731000;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_9e9f5038214dc09085e838d9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.725000;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_a570af933bd5fff0a07752e1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.991000;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_45a953307bd9c4d1f59166e0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.721000;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_8c53366ecbf352911fcd02b2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.105000;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_874733c74280fb617f9af93e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.127000;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_1f3f44670053c3708dd10b13.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_fbc118fb6b2b131a51b6a3c5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.918000;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_66c4fee20e9b0cd39f4e3e0c.woff')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_544e822ae7dd007a1f397856.woff')format("woff");}.ffe{font-family:ffe;line-height:0.924053;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_90c46280e583bfae99eca70b.woff')format("woff");}.fff{font-family:fff;line-height:0.873000;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_506386bff1a53270e6c3e7ea.woff')format("woff");}.ff10{font-family:ff10;line-height:0.995000;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_7d4f5a9ca805a83711a5f1fb.woff')format("woff");}.ff11{font-family:ff11;line-height:0.917000;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:ff12;src:url('chunks/assets/font_a133280a0bcc3ed33fdf3281.woff')format("woff");}.ff12{font-family:ff12;line-height:1.105000;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;}
.ls9{letter-spacing:-1.596000px;}
.ls8{letter-spacing:-1.140000px;}
.ls7{letter-spacing:-0.342000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.171000px;}
.lsc{letter-spacing:0.267900px;}
.lsb{letter-spacing:0.285000px;}
.lsd{letter-spacing:0.302100px;}
.lsf{letter-spacing:0.558600px;}
.lse{letter-spacing:0.570000px;}
.lsa{letter-spacing:1.680000px;}
.ls1{letter-spacing:2.250000px;}
.ls3{letter-spacing:4.050000px;}
.ls0{letter-spacing:5.400000px;}
.ls4{letter-spacing:5.700000px;}
.ls5{letter-spacing:43.200000px;}
.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;}
}
.wsb{word-spacing:-43.200000px;}
.ws1{word-spacing:-28.800000px;}
.ws3{word-spacing:-16.800000px;}
.ws5c{word-spacing:-11.628000px;}
.wsa{word-spacing:-11.400000px;}
.ws4{word-spacing:-8.400000px;}
.ws15{word-spacing:-8.208000px;}
.wsc{word-spacing:-7.866000px;}
.ws32{word-spacing:-2.352000px;}
.ws1c{word-spacing:-2.223000px;}
.ws53{word-spacing:-2.166000px;}
.ws56{word-spacing:-2.109000px;}
.ws31{word-spacing:-1.881000px;}
.ws6c{word-spacing:-1.596000px;}
.ws58{word-spacing:-1.539000px;}
.ws36{word-spacing:-1.425000px;}
.ws70{word-spacing:-1.311000px;}
.ws5e{word-spacing:-1.254000px;}
.ws37{word-spacing:-1.197000px;}
.ws4a{word-spacing:-1.140000px;}
.ws71{word-spacing:-0.969000px;}
.ws26{word-spacing:-0.912000px;}
.ws23{word-spacing:-0.855000px;}
.ws5f{word-spacing:-0.798000px;}
.ws6d{word-spacing:-0.741000px;}
.ws59{word-spacing:-0.684000px;}
.ws34{word-spacing:-0.570000px;}
.ws1d{word-spacing:-0.513000px;}
.ws43{word-spacing:-0.456000px;}
.ws6b{word-spacing:-0.399000px;}
.ws2f{word-spacing:-0.342000px;}
.ws0{word-spacing:-0.291861px;}
.ws38{word-spacing:-0.285000px;}
.ws1e{word-spacing:-0.228000px;}
.ws76{word-spacing:-0.114000px;}
.ws49{word-spacing:-0.057000px;}
.ws2{word-spacing:0.000000px;}
.ws2c{word-spacing:0.057000px;}
.ws4d{word-spacing:0.114000px;}
.ws33{word-spacing:0.342000px;}
.ws28{word-spacing:0.399000px;}
.ws3f{word-spacing:0.456000px;}
.ws44{word-spacing:0.570000px;}
.ws30{word-spacing:0.627000px;}
.ws7c{word-spacing:0.663000px;}
.ws24{word-spacing:0.684000px;}
.ws35{word-spacing:0.855000px;}
.ws25{word-spacing:1.026000px;}
.ws21{word-spacing:1.083000px;}
.ws12{word-spacing:1.140000px;}
.ws3d{word-spacing:1.311000px;}
.ws40{word-spacing:1.368000px;}
.wse{word-spacing:1.425000px;}
.ws39{word-spacing:1.482000px;}
.ws4f{word-spacing:1.539000px;}
.ws1b{word-spacing:1.596000px;}
.ws52{word-spacing:1.710000px;}
.ws68{word-spacing:1.881000px;}
.ws29{word-spacing:1.938000px;}
.ws72{word-spacing:1.995000px;}
.ws50{word-spacing:2.052000px;}
.ws75{word-spacing:2.109000px;}
.ws51{word-spacing:2.166000px;}
.ws69{word-spacing:2.223000px;}
.ws45{word-spacing:2.280000px;}
.ws73{word-spacing:2.337000px;}
.ws5{word-spacing:2.352000px;}
.ws4b{word-spacing:2.394000px;}
.ws22{word-spacing:2.451000px;}
.ws5d{word-spacing:2.508000px;}
.ws62{word-spacing:2.679000px;}
.ws6e{word-spacing:2.736000px;}
.ws3b{word-spacing:2.850000px;}
.ws4e{word-spacing:2.964000px;}
.ws78{word-spacing:3.021000px;}
.ws3c{word-spacing:3.135000px;}
.ws18{word-spacing:3.192000px;}
.ws3a{word-spacing:3.249000px;}
.ws48{word-spacing:3.306000px;}
.ws57{word-spacing:3.363000px;}
.ws60{word-spacing:3.477000px;}
.ws6a{word-spacing:3.648000px;}
.ws7e{word-spacing:3.705000px;}
.ws6f{word-spacing:3.819000px;}
.ws47{word-spacing:3.876000px;}
.ws65{word-spacing:3.990000px;}
.ws2a{word-spacing:4.047000px;}
.ws7{word-spacing:4.158000px;}
.ws4c{word-spacing:4.161000px;}
.ws5b{word-spacing:4.218000px;}
.ws27{word-spacing:4.332000px;}
.ws41{word-spacing:4.446000px;}
.ws8{word-spacing:4.494000px;}
.ws55{word-spacing:4.503000px;}
.ws20{word-spacing:4.560000px;}
.ws2b{word-spacing:4.617000px;}
.ws67{word-spacing:4.845000px;}
.ws3e{word-spacing:4.902000px;}
.ws42{word-spacing:5.073000px;}
.ws79{word-spacing:5.130000px;}
.ws74{word-spacing:5.187000px;}
.ws5a{word-spacing:5.415000px;}
.ws54{word-spacing:5.643000px;}
.ws19{word-spacing:5.928000px;}
.ws2e{word-spacing:6.099000px;}
.ws64{word-spacing:6.213000px;}
.ws46{word-spacing:6.270000px;}
.ws63{word-spacing:6.384000px;}
.ws7b{word-spacing:6.612000px;}
.ws7a{word-spacing:6.726000px;}
.ws7f{word-spacing:7.068000px;}
.ws61{word-spacing:7.752000px;}
.ws17{word-spacing:7.809000px;}
.ws1a{word-spacing:8.778000px;}
.ws66{word-spacing:9.519000px;}
.ws2d{word-spacing:9.861000px;}
.ws10{word-spacing:11.400000px;}
.ws1f{word-spacing:11.970000px;}
.ws7d{word-spacing:12.291000px;}
.ws13{word-spacing:13.623000px;}
.ws6{word-spacing:14.574000px;}
.ws77{word-spacing:16.245000px;}
.ws11{word-spacing:37.392000px;}
.ws14{word-spacing:37.563000px;}
.ws9{word-spacing:42.630000px;}
.wsf{word-spacing:49.704000px;}
.ws16{word-spacing:50.160000px;}
.wsd{word-spacing:56.373000px;}
._7{margin-left:-42.699612px;}
._1{margin-left:-9.230400px;}
._3{margin-left:-6.099624px;}
._e{margin-left:-4.736712px;}
._4{margin-left:-3.639924px;}
._0{margin-left:-1.869588px;}
._2{width:1.872000px;}
._b{width:3.688800px;}
._5{width:5.586000px;}
._a{width:6.851400px;}
._c{width:8.125800px;}
._d{width:9.134724px;}
._f{width:16.003200px;}
._10{width:17.012124px;}
._8{width:22.458000px;}
._9{width:28.807704px;}
._6{width:42.630000px;}
.fc4{color:rgb(248,156,73);}
.fc2{color:rgb(87,87,86);}
.fc1{color:rgb(240,131,0);}
.fc5{color:rgb(35,31,32);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:42.000000px;}
.fsa{font-size:51.000000px;}
.fsc{font-size:57.000000px;}
.fs8{font-size:72.000000px;}
.fs6{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs2{font-size:108.000000px;}
.fs7{font-size:117.000000px;}
.fs1{font-size:144.000000px;}
.fs3{font-size:156.000000px;}
.fsb{font-size:216.000000px;}
.fs0{font-size:291.861000px;}
.y0{bottom:0.000000px;}
.y30{bottom:26.165250px;}
.y48{bottom:36.654600px;}
.y3a{bottom:36.795300px;}
.ye{bottom:44.326800px;}
.y1f{bottom:72.283500px;}
.y82{bottom:88.519950px;}
.y6f{bottom:89.462550px;}
.y94{bottom:90.017700px;}
.y1e{bottom:91.535400px;}
.y81{bottom:106.517700px;}
.y6e{bottom:107.460300px;}
.y93{bottom:108.015450px;}
.ya4{bottom:109.513200px;}
.y47{bottom:111.486150px;}
.y1d{bottom:119.291250px;}
.y80{bottom:124.515450px;}
.y6d{bottom:125.458050px;}
.y92{bottom:126.013200px;}
.ya3{bottom:127.510950px;}
.y46{bottom:129.483900px;}
.y1c{bottom:134.291250px;}
.y7f{bottom:142.513200px;}
.y6c{bottom:143.455800px;}
.y91{bottom:144.010950px;}
.ya2{bottom:145.508700px;}
.y45{bottom:147.481650px;}
.y7e{bottom:160.510950px;}
.y6b{bottom:161.453550px;}
.y90{bottom:162.008700px;}
.y1b{bottom:162.047250px;}
.ya1{bottom:163.506450px;}
.y44{bottom:165.479400px;}
.y7d{bottom:178.508700px;}
.y6a{bottom:179.451300px;}
.y8f{bottom:180.006450px;}
.y1a{bottom:181.299150px;}
.ya0{bottom:181.504200px;}
.y43{bottom:183.477150px;}
.y19{bottom:196.299150px;}
.y7c{bottom:196.506450px;}
.y69{bottom:197.449050px;}
.y8e{bottom:198.004200px;}
.y9f{bottom:199.501950px;}
.y42{bottom:201.474900px;}
.y18{bottom:211.299150px;}
.y7b{bottom:214.504200px;}
.y68{bottom:215.446800px;}
.y8d{bottom:216.001950px;}
.y9e{bottom:217.499700px;}
.y41{bottom:219.472650px;}
.y17{bottom:226.299150px;}
.y7a{bottom:232.501950px;}
.y67{bottom:233.444550px;}
.y8c{bottom:233.999700px;}
.y9d{bottom:235.497450px;}
.y40{bottom:237.470400px;}
.y16{bottom:241.299150px;}
.y79{bottom:250.499700px;}
.y66{bottom:251.442300px;}
.y8b{bottom:251.997450px;}
.y9c{bottom:253.495200px;}
.y3f{bottom:255.468150px;}
.y78{bottom:268.497450px;}
.y65{bottom:269.440050px;}
.y8a{bottom:269.995200px;}
.y9b{bottom:271.492950px;}
.y77{bottom:286.495200px;}
.y64{bottom:287.437800px;}
.y89{bottom:287.992950px;}
.y9a{bottom:289.490700px;}
.y76{bottom:304.492950px;}
.y63{bottom:305.435550px;}
.y88{bottom:305.990700px;}
.y99{bottom:307.488450px;}
.y3e{bottom:309.468150px;}
.y75{bottom:322.490700px;}
.y62{bottom:323.433300px;}
.y87{bottom:323.988450px;}
.y98{bottom:325.486200px;}
.y74{bottom:340.488450px;}
.y61{bottom:341.431050px;}
.y86{bottom:341.986200px;}
.y97{bottom:343.483950px;}
.y39{bottom:353.578950px;}
.y15{bottom:353.897250px;}
.y73{bottom:358.486200px;}
.y60{bottom:359.428800px;}
.y85{bottom:359.983950px;}
.y96{bottom:361.481700px;}
.y14{bottom:368.897250px;}
.y38{bottom:371.576700px;}
.y72{bottom:376.483950px;}
.y5f{bottom:377.426550px;}
.y84{bottom:377.981700px;}
.y13{bottom:383.897250px;}
.y71{bottom:394.481700px;}
.y5e{bottom:395.424300px;}
.y12{bottom:398.897250px;}
.ya5{bottom:400.709700px;}
.y5d{bottom:413.422050px;}
.y11{bottom:413.897250px;}
.y5{bottom:414.992100px;}
.y95{bottom:417.208200px;}
.y37{bottom:425.569950px;}
.y5c{bottom:431.419800px;}
.y83{bottom:433.706700px;}
.yd{bottom:440.225250px;}
.y36{bottom:443.567700px;}
.y5b{bottom:449.417550px;}
.y4{bottom:457.972350px;}
.yc{bottom:465.425250px;}
.y5a{bottom:467.415300px;}
.y59{bottom:485.413050px;}
.y3{bottom:486.755850px;}
.y2f{bottom:492.599250px;}
.y35{bottom:497.560950px;}
.yb{bottom:502.192950px;}
.y58{bottom:503.410800px;}
.y2e{bottom:507.599250px;}
.y34{bottom:515.558700px;}
.y57{bottom:521.408550px;}
.y2d{bottom:522.599250px;}
.y2{bottom:525.755850px;}
.ya{bottom:530.976450px;}
.y2c{bottom:537.599250px;}
.y7{bottom:538.573800px;}
.y56{bottom:539.406300px;}
.y2b{bottom:552.599400px;}
.y55{bottom:557.404050px;}
.y2a{bottom:567.599400px;}
.y6{bottom:567.823800px;}
.y33{bottom:569.551950px;}
.y9{bottom:569.976450px;}
.y54{bottom:575.401800px;}
.y29{bottom:582.599400px;}
.y53{bottom:593.399550px;}
.y28{bottom:597.599400px;}
.y52{bottom:611.397300px;}
.y27{bottom:612.599400px;}
.y1{bottom:623.177400px;}
.y32{bottom:623.545200px;}
.y26{bottom:627.599400px;}
.y51{bottom:629.395050px;}
.y25{bottom:646.851300px;}
.y50{bottom:647.392800px;}
.y24{bottom:661.851300px;}
.y4f{bottom:665.390550px;}
.y23{bottom:676.851300px;}
.y4e{bottom:683.388300px;}
.y22{bottom:691.851300px;}
.y4d{bottom:701.386050px;}
.y21{bottom:711.103200px;}
.y4c{bottom:719.383800px;}
.y20{bottom:726.103200px;}
.y31{bottom:733.359150px;}
.y8{bottom:733.728600px;}
.y3d{bottom:734.111100px;}
.y4b{bottom:737.381550px;}
.y4a{bottom:755.379300px;}
.y3c{bottom:762.608100px;}
.y3b{bottom:791.105100px;}
.y10{bottom:794.279550px;}
.yf{bottom:809.279550px;}
.y70{bottom:832.687200px;}
.y49{bottom:833.325000px;}
.hb{height:33.991699px;}
.h11{height:37.485000px;}
.ha{height:37.632000px;}
.hf{height:38.913000px;}
.hd{height:43.491000px;}
.h10{height:51.072000px;}
.h9{height:51.120000px;}
.he{height:62.160000px;}
.h5{height:64.530000px;}
.h7{height:72.576000px;}
.h6{height:74.844000px;}
.h8{height:84.591000px;}
.h3{height:96.768000px;}
.h4{height:112.788000px;}
.hc{height:187.272000px;}
.h2{height:194.526497px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x0{left:0.000000px;}
.x14{left:85.039350px;}
.xc{left:93.543300px;}
.xd{left:97.795200px;}
.x15{left:102.047250px;}
.x5{left:105.425400px;}
.x17{left:108.226200px;}
.x12{left:110.551200px;}
.x11{left:113.326200px;}
.x13{left:122.031450px;}
.x1{left:130.278150px;}
.x9{left:140.904600px;}
.x8{left:153.070800px;}
.xf{left:165.826800px;}
.x2{left:168.252750px;}
.x4{left:192.810150px;}
.x6{left:205.914000px;}
.x3{left:208.295400px;}
.x7{left:235.946100px;}
.xb{left:280.739850px;}
.xa{left:285.510600px;}
.x18{left:291.150450px;}
.x10{left:315.180150px;}
.x16{left:501.739050px;}
.xe{left:591.237600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.418667pt;}
.ls8{letter-spacing:-1.013333pt;}
.ls7{letter-spacing:-0.304000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.152000pt;}
.lsc{letter-spacing:0.238133pt;}
.lsb{letter-spacing:0.253333pt;}
.lsd{letter-spacing:0.268533pt;}
.lsf{letter-spacing:0.496533pt;}
.lse{letter-spacing:0.506667pt;}
.lsa{letter-spacing:1.493333pt;}
.ls1{letter-spacing:2.000000pt;}
.ls3{letter-spacing:3.600000pt;}
.ls0{letter-spacing:4.800000pt;}
.ls4{letter-spacing:5.066667pt;}
.ls5{letter-spacing:38.400000pt;}
.wsb{word-spacing:-38.400000pt;}
.ws1{word-spacing:-25.600000pt;}
.ws3{word-spacing:-14.933333pt;}
.ws5c{word-spacing:-10.336000pt;}
.wsa{word-spacing:-10.133333pt;}
.ws4{word-spacing:-7.466667pt;}
.ws15{word-spacing:-7.296000pt;}
.wsc{word-spacing:-6.992000pt;}
.ws32{word-spacing:-2.090667pt;}
.ws1c{word-spacing:-1.976000pt;}
.ws53{word-spacing:-1.925333pt;}
.ws56{word-spacing:-1.874667pt;}
.ws31{word-spacing:-1.672000pt;}
.ws6c{word-spacing:-1.418667pt;}
.ws58{word-spacing:-1.368000pt;}
.ws36{word-spacing:-1.266667pt;}
.ws70{word-spacing:-1.165333pt;}
.ws5e{word-spacing:-1.114667pt;}
.ws37{word-spacing:-1.064000pt;}
.ws4a{word-spacing:-1.013333pt;}
.ws71{word-spacing:-0.861333pt;}
.ws26{word-spacing:-0.810667pt;}
.ws23{word-spacing:-0.760000pt;}
.ws5f{word-spacing:-0.709333pt;}
.ws6d{word-spacing:-0.658667pt;}
.ws59{word-spacing:-0.608000pt;}
.ws34{word-spacing:-0.506667pt;}
.ws1d{word-spacing:-0.456000pt;}
.ws43{word-spacing:-0.405333pt;}
.ws6b{word-spacing:-0.354667pt;}
.ws2f{word-spacing:-0.304000pt;}
.ws0{word-spacing:-0.259432pt;}
.ws38{word-spacing:-0.253333pt;}
.ws1e{word-spacing:-0.202667pt;}
.ws76{word-spacing:-0.101333pt;}
.ws49{word-spacing:-0.050667pt;}
.ws2{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.050667pt;}
.ws4d{word-spacing:0.101333pt;}
.ws33{word-spacing:0.304000pt;}
.ws28{word-spacing:0.354667pt;}
.ws3f{word-spacing:0.405333pt;}
.ws44{word-spacing:0.506667pt;}
.ws30{word-spacing:0.557333pt;}
.ws7c{word-spacing:0.589333pt;}
.ws24{word-spacing:0.608000pt;}
.ws35{word-spacing:0.760000pt;}
.ws25{word-spacing:0.912000pt;}
.ws21{word-spacing:0.962667pt;}
.ws12{word-spacing:1.013333pt;}
.ws3d{word-spacing:1.165333pt;}
.ws40{word-spacing:1.216000pt;}
.wse{word-spacing:1.266667pt;}
.ws39{word-spacing:1.317333pt;}
.ws4f{word-spacing:1.368000pt;}
.ws1b{word-spacing:1.418667pt;}
.ws52{word-spacing:1.520000pt;}
.ws68{word-spacing:1.672000pt;}
.ws29{word-spacing:1.722667pt;}
.ws72{word-spacing:1.773333pt;}
.ws50{word-spacing:1.824000pt;}
.ws75{word-spacing:1.874667pt;}
.ws51{word-spacing:1.925333pt;}
.ws69{word-spacing:1.976000pt;}
.ws45{word-spacing:2.026667pt;}
.ws73{word-spacing:2.077333pt;}
.ws5{word-spacing:2.090667pt;}
.ws4b{word-spacing:2.128000pt;}
.ws22{word-spacing:2.178667pt;}
.ws5d{word-spacing:2.229333pt;}
.ws62{word-spacing:2.381333pt;}
.ws6e{word-spacing:2.432000pt;}
.ws3b{word-spacing:2.533333pt;}
.ws4e{word-spacing:2.634667pt;}
.ws78{word-spacing:2.685333pt;}
.ws3c{word-spacing:2.786667pt;}
.ws18{word-spacing:2.837333pt;}
.ws3a{word-spacing:2.888000pt;}
.ws48{word-spacing:2.938667pt;}
.ws57{word-spacing:2.989333pt;}
.ws60{word-spacing:3.090667pt;}
.ws6a{word-spacing:3.242667pt;}
.ws7e{word-spacing:3.293333pt;}
.ws6f{word-spacing:3.394667pt;}
.ws47{word-spacing:3.445333pt;}
.ws65{word-spacing:3.546667pt;}
.ws2a{word-spacing:3.597333pt;}
.ws7{word-spacing:3.696000pt;}
.ws4c{word-spacing:3.698667pt;}
.ws5b{word-spacing:3.749333pt;}
.ws27{word-spacing:3.850667pt;}
.ws41{word-spacing:3.952000pt;}
.ws8{word-spacing:3.994667pt;}
.ws55{word-spacing:4.002667pt;}
.ws20{word-spacing:4.053333pt;}
.ws2b{word-spacing:4.104000pt;}
.ws67{word-spacing:4.306667pt;}
.ws3e{word-spacing:4.357333pt;}
.ws42{word-spacing:4.509333pt;}
.ws79{word-spacing:4.560000pt;}
.ws74{word-spacing:4.610667pt;}
.ws5a{word-spacing:4.813333pt;}
.ws54{word-spacing:5.016000pt;}
.ws19{word-spacing:5.269333pt;}
.ws2e{word-spacing:5.421333pt;}
.ws64{word-spacing:5.522667pt;}
.ws46{word-spacing:5.573333pt;}
.ws63{word-spacing:5.674667pt;}
.ws7b{word-spacing:5.877333pt;}
.ws7a{word-spacing:5.978667pt;}
.ws7f{word-spacing:6.282667pt;}
.ws61{word-spacing:6.890667pt;}
.ws17{word-spacing:6.941333pt;}
.ws1a{word-spacing:7.802667pt;}
.ws66{word-spacing:8.461333pt;}
.ws2d{word-spacing:8.765333pt;}
.ws10{word-spacing:10.133333pt;}
.ws1f{word-spacing:10.640000pt;}
.ws7d{word-spacing:10.925333pt;}
.ws13{word-spacing:12.109333pt;}
.ws6{word-spacing:12.954667pt;}
.ws77{word-spacing:14.440000pt;}
.ws11{word-spacing:33.237333pt;}
.ws14{word-spacing:33.389333pt;}
.ws9{word-spacing:37.893333pt;}
.wsf{word-spacing:44.181333pt;}
.ws16{word-spacing:44.586667pt;}
.wsd{word-spacing:50.109333pt;}
._7{margin-left:-37.955211pt;}
._1{margin-left:-8.204800pt;}
._3{margin-left:-5.421888pt;}
._e{margin-left:-4.210411pt;}
._4{margin-left:-3.235488pt;}
._0{margin-left:-1.661856pt;}
._2{width:1.664000pt;}
._b{width:3.278933pt;}
._5{width:4.965333pt;}
._a{width:6.090133pt;}
._c{width:7.222933pt;}
._d{width:8.119755pt;}
._f{width:14.225067pt;}
._10{width:15.121888pt;}
._8{width:19.962667pt;}
._9{width:25.606848pt;}
._6{width:37.893333pt;}
.fs9{font-size:37.333333pt;}
.fsa{font-size:45.333333pt;}
.fsc{font-size:50.666667pt;}
.fs8{font-size:64.000000pt;}
.fs6{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs2{font-size:96.000000pt;}
.fs7{font-size:104.000000pt;}
.fs1{font-size:128.000000pt;}
.fs3{font-size:138.666667pt;}
.fsb{font-size:192.000000pt;}
.fs0{font-size:259.432000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:23.258000pt;}
.y48{bottom:32.581867pt;}
.y3a{bottom:32.706933pt;}
.ye{bottom:39.401600pt;}
.y1f{bottom:64.252000pt;}
.y82{bottom:78.684400pt;}
.y6f{bottom:79.522267pt;}
.y94{bottom:80.015733pt;}
.y1e{bottom:81.364800pt;}
.y81{bottom:94.682400pt;}
.y6e{bottom:95.520267pt;}
.y93{bottom:96.013733pt;}
.ya4{bottom:97.345067pt;}
.y47{bottom:99.098800pt;}
.y1d{bottom:106.036667pt;}
.y80{bottom:110.680400pt;}
.y6d{bottom:111.518267pt;}
.y92{bottom:112.011733pt;}
.ya3{bottom:113.343067pt;}
.y46{bottom:115.096800pt;}
.y1c{bottom:119.370000pt;}
.y7f{bottom:126.678400pt;}
.y6c{bottom:127.516267pt;}
.y91{bottom:128.009733pt;}
.ya2{bottom:129.341067pt;}
.y45{bottom:131.094800pt;}
.y7e{bottom:142.676400pt;}
.y6b{bottom:143.514267pt;}
.y90{bottom:144.007733pt;}
.y1b{bottom:144.042000pt;}
.ya1{bottom:145.339067pt;}
.y44{bottom:147.092800pt;}
.y7d{bottom:158.674400pt;}
.y6a{bottom:159.512267pt;}
.y8f{bottom:160.005733pt;}
.y1a{bottom:161.154800pt;}
.ya0{bottom:161.337067pt;}
.y43{bottom:163.090800pt;}
.y19{bottom:174.488133pt;}
.y7c{bottom:174.672400pt;}
.y69{bottom:175.510267pt;}
.y8e{bottom:176.003733pt;}
.y9f{bottom:177.335067pt;}
.y42{bottom:179.088800pt;}
.y18{bottom:187.821467pt;}
.y7b{bottom:190.670400pt;}
.y68{bottom:191.508267pt;}
.y8d{bottom:192.001733pt;}
.y9e{bottom:193.333067pt;}
.y41{bottom:195.086800pt;}
.y17{bottom:201.154800pt;}
.y7a{bottom:206.668400pt;}
.y67{bottom:207.506267pt;}
.y8c{bottom:207.999733pt;}
.y9d{bottom:209.331067pt;}
.y40{bottom:211.084800pt;}
.y16{bottom:214.488133pt;}
.y79{bottom:222.666400pt;}
.y66{bottom:223.504267pt;}
.y8b{bottom:223.997733pt;}
.y9c{bottom:225.329067pt;}
.y3f{bottom:227.082800pt;}
.y78{bottom:238.664400pt;}
.y65{bottom:239.502267pt;}
.y8a{bottom:239.995733pt;}
.y9b{bottom:241.327067pt;}
.y77{bottom:254.662400pt;}
.y64{bottom:255.500267pt;}
.y89{bottom:255.993733pt;}
.y9a{bottom:257.325067pt;}
.y76{bottom:270.660400pt;}
.y63{bottom:271.498267pt;}
.y88{bottom:271.991733pt;}
.y99{bottom:273.323067pt;}
.y3e{bottom:275.082800pt;}
.y75{bottom:286.658400pt;}
.y62{bottom:287.496267pt;}
.y87{bottom:287.989733pt;}
.y98{bottom:289.321067pt;}
.y74{bottom:302.656400pt;}
.y61{bottom:303.494267pt;}
.y86{bottom:303.987733pt;}
.y97{bottom:305.319067pt;}
.y39{bottom:314.292400pt;}
.y15{bottom:314.575333pt;}
.y73{bottom:318.654400pt;}
.y60{bottom:319.492267pt;}
.y85{bottom:319.985733pt;}
.y96{bottom:321.317067pt;}
.y14{bottom:327.908667pt;}
.y38{bottom:330.290400pt;}
.y72{bottom:334.652400pt;}
.y5f{bottom:335.490267pt;}
.y84{bottom:335.983733pt;}
.y13{bottom:341.242000pt;}
.y71{bottom:350.650400pt;}
.y5e{bottom:351.488267pt;}
.y12{bottom:354.575333pt;}
.ya5{bottom:356.186400pt;}
.y5d{bottom:367.486267pt;}
.y11{bottom:367.908667pt;}
.y5{bottom:368.881867pt;}
.y95{bottom:370.851733pt;}
.y37{bottom:378.284400pt;}
.y5c{bottom:383.484267pt;}
.y83{bottom:385.517067pt;}
.yd{bottom:391.311333pt;}
.y36{bottom:394.282400pt;}
.y5b{bottom:399.482267pt;}
.y4{bottom:407.086533pt;}
.yc{bottom:413.711333pt;}
.y5a{bottom:415.480267pt;}
.y59{bottom:431.478267pt;}
.y3{bottom:432.671867pt;}
.y2f{bottom:437.866000pt;}
.y35{bottom:442.276400pt;}
.yb{bottom:446.393733pt;}
.y58{bottom:447.476267pt;}
.y2e{bottom:451.199333pt;}
.y34{bottom:458.274400pt;}
.y57{bottom:463.474267pt;}
.y2d{bottom:464.532667pt;}
.y2{bottom:467.338533pt;}
.ya{bottom:471.979067pt;}
.y2c{bottom:477.866000pt;}
.y7{bottom:478.732267pt;}
.y56{bottom:479.472267pt;}
.y2b{bottom:491.199467pt;}
.y55{bottom:495.470267pt;}
.y2a{bottom:504.532800pt;}
.y6{bottom:504.732267pt;}
.y33{bottom:506.268400pt;}
.y9{bottom:506.645733pt;}
.y54{bottom:511.468267pt;}
.y29{bottom:517.866133pt;}
.y53{bottom:527.466267pt;}
.y28{bottom:531.199467pt;}
.y52{bottom:543.464267pt;}
.y27{bottom:544.532800pt;}
.y1{bottom:553.935467pt;}
.y32{bottom:554.262400pt;}
.y26{bottom:557.866133pt;}
.y51{bottom:559.462267pt;}
.y25{bottom:574.978933pt;}
.y50{bottom:575.460267pt;}
.y24{bottom:588.312267pt;}
.y4f{bottom:591.458267pt;}
.y23{bottom:601.645600pt;}
.y4e{bottom:607.456267pt;}
.y22{bottom:614.978933pt;}
.y4d{bottom:623.454267pt;}
.y21{bottom:632.091733pt;}
.y4c{bottom:639.452267pt;}
.y20{bottom:645.425067pt;}
.y31{bottom:651.874800pt;}
.y8{bottom:652.203200pt;}
.y3d{bottom:652.543200pt;}
.y4b{bottom:655.450267pt;}
.y4a{bottom:671.448267pt;}
.y3c{bottom:677.873867pt;}
.y3b{bottom:703.204533pt;}
.y10{bottom:706.026267pt;}
.yf{bottom:719.359600pt;}
.y70{bottom:740.166400pt;}
.y49{bottom:740.733333pt;}
.hb{height:30.214844pt;}
.h11{height:33.320000pt;}
.ha{height:33.450667pt;}
.hf{height:34.589333pt;}
.hd{height:38.658667pt;}
.h10{height:45.397333pt;}
.h9{height:45.440000pt;}
.he{height:55.253333pt;}
.h5{height:57.360000pt;}
.h7{height:64.512000pt;}
.h6{height:66.528000pt;}
.h8{height:75.192000pt;}
.h3{height:86.016000pt;}
.h4{height:100.256000pt;}
.hc{height:166.464000pt;}
.h2{height:172.912441pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x0{left:0.000000pt;}
.x14{left:75.590533pt;}
.xc{left:83.149600pt;}
.xd{left:86.929067pt;}
.x15{left:90.708667pt;}
.x5{left:93.711467pt;}
.x17{left:96.201067pt;}
.x12{left:98.267733pt;}
.x11{left:100.734400pt;}
.x13{left:108.472400pt;}
.x1{left:115.802800pt;}
.x9{left:125.248533pt;}
.x8{left:136.062933pt;}
.xf{left:147.401600pt;}
.x2{left:149.558000pt;}
.x4{left:171.386800pt;}
.x6{left:183.034667pt;}
.x3{left:185.151467pt;}
.x7{left:209.729867pt;}
.xb{left:249.546533pt;}
.xa{left:253.787200pt;}
.x18{left:258.800400pt;}
.x10{left:280.160133pt;}
.x16{left:445.990267pt;}
.xe{left:525.544533pt;}
}

