
    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_0947fe9aba112ef8d844a953.woff')format("woff");}.ff1{font-family:ff1;line-height:0.962000;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_6a10816f9c6293458d74d452.woff')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_5e84b7296c68a042fe25ba59.woff')format("woff");}.ff3{font-family:ff3;line-height:0.962000;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_f4b8e1a7cf031e843676aa1c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.113281;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_65f397fb6c9492495eb861d3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_1a167f0659b563d29386851a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.104492;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_bea1c123b12c2354c8a1c816.woff')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_5c0c2337ba03d469a651bb5c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.114258;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_d908e95aa52205ef9d96c829.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_95a3e53f277a391f2274df79.woff')format("woff");}.ffa{font-family:ffa;line-height:0.962000;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_e0e6618a3b4614051e12d4d8.woff')format("woff");}.ffb{font-family:ffb;line-height:1.106934;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_f42ae0ec754f78707df469de.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.570000px;}
.ls0{letter-spacing:0.000000px;}
.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:-4.161000px;}
.ws65{word-spacing:-4.104000px;}
.ws1e{word-spacing:-4.047000px;}
.ws15{word-spacing:-3.819000px;}
.ws80{word-spacing:-3.135000px;}
.ws7{word-spacing:-2.964000px;}
.ws1b{word-spacing:-2.907000px;}
.ws46{word-spacing:-2.736000px;}
.ws6b{word-spacing:-2.679000px;}
.ws7b{word-spacing:-2.565000px;}
.ws62{word-spacing:-2.508000px;}
.ws34{word-spacing:-2.394000px;}
.ws77{word-spacing:-2.337000px;}
.ws44{word-spacing:-2.223000px;}
.wsb{word-spacing:-2.109000px;}
.ws70{word-spacing:-1.995000px;}
.ws6f{word-spacing:-1.938000px;}
.ws55{word-spacing:-1.881000px;}
.ws57{word-spacing:-1.824000px;}
.ws50{word-spacing:-1.767000px;}
.ws81{word-spacing:-1.710000px;}
.wsd{word-spacing:-1.653000px;}
.ws43{word-spacing:-1.596000px;}
.ws5c{word-spacing:-1.482000px;}
.ws7a{word-spacing:-1.425000px;}
.ws40{word-spacing:-1.311000px;}
.ws74{word-spacing:-1.254000px;}
.ws72{word-spacing:-1.197000px;}
.ws3c{word-spacing:-1.140000px;}
.ws5d{word-spacing:-1.083000px;}
.ws2e{word-spacing:-1.026000px;}
.ws31{word-spacing:-0.969000px;}
.ws7c{word-spacing:-0.912000px;}
.ws3a{word-spacing:-0.855000px;}
.ws78{word-spacing:-0.798000px;}
.ws47{word-spacing:-0.684000px;}
.ws5f{word-spacing:-0.570000px;}
.ws42{word-spacing:-0.513000px;}
.ws67{word-spacing:-0.456000px;}
.ws1f{word-spacing:-0.399000px;}
.ws33{word-spacing:-0.228000px;}
.ws32{word-spacing:-0.171000px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:0.171000px;}
.ws8{word-spacing:0.228000px;}
.ws36{word-spacing:0.285000px;}
.ws5{word-spacing:0.342000px;}
.ws71{word-spacing:0.399000px;}
.ws49{word-spacing:0.513000px;}
.ws25{word-spacing:0.627000px;}
.ws4{word-spacing:0.741000px;}
.ws66{word-spacing:0.798000px;}
.ws54{word-spacing:0.969000px;}
.ws2d{word-spacing:1.026000px;}
.ws3e{word-spacing:1.083000px;}
.ws63{word-spacing:1.197000px;}
.ws37{word-spacing:1.311000px;}
.ws4f{word-spacing:1.368000px;}
.ws5a{word-spacing:1.425000px;}
.ws75{word-spacing:1.539000px;}
.ws41{word-spacing:1.596000px;}
.ws2c{word-spacing:1.653000px;}
.ws29{word-spacing:1.824000px;}
.ws2f{word-spacing:1.938000px;}
.ws5e{word-spacing:2.109000px;}
.ws4d{word-spacing:2.223000px;}
.ws7f{word-spacing:2.280000px;}
.ws30{word-spacing:2.337000px;}
.ws6a{word-spacing:2.394000px;}
.ws4e{word-spacing:2.451000px;}
.ws7e{word-spacing:2.622000px;}
.wsf{word-spacing:2.679000px;}
.ws10{word-spacing:2.850000px;}
.wsc{word-spacing:2.907000px;}
.ws3f{word-spacing:3.078000px;}
.ws59{word-spacing:3.192000px;}
.ws22{word-spacing:3.420000px;}
.ws3b{word-spacing:3.477000px;}
.ws48{word-spacing:3.762000px;}
.ws53{word-spacing:3.819000px;}
.ws73{word-spacing:3.933000px;}
.ws2a{word-spacing:3.990000px;}
.ws51{word-spacing:4.047000px;}
.ws52{word-spacing:4.218000px;}
.ws7d{word-spacing:4.389000px;}
.ws61{word-spacing:4.446000px;}
.ws39{word-spacing:4.503000px;}
.ws2b{word-spacing:4.560000px;}
.ws56{word-spacing:4.617000px;}
.ws23{word-spacing:4.902000px;}
.ws64{word-spacing:5.073000px;}
.ws6d{word-spacing:5.187000px;}
.ws26{word-spacing:5.301000px;}
.ws69{word-spacing:5.358000px;}
.ws38{word-spacing:5.415000px;}
.ws6c{word-spacing:5.472000px;}
.ws76{word-spacing:5.529000px;}
.ws45{word-spacing:5.814000px;}
.ws6e{word-spacing:5.871000px;}
.ws68{word-spacing:5.928000px;}
.ws60{word-spacing:6.042000px;}
.ws82{word-spacing:6.099000px;}
.ws35{word-spacing:6.327000px;}
.ws4b{word-spacing:6.897000px;}
.ws4c{word-spacing:7.182000px;}
.ws17{word-spacing:7.296000px;}
.ws4a{word-spacing:7.410000px;}
.ws79{word-spacing:7.638000px;}
.ws9{word-spacing:7.866000px;}
.ws58{word-spacing:8.208000px;}
.ws1d{word-spacing:8.493000px;}
.ws24{word-spacing:8.664000px;}
.ws5b{word-spacing:8.721000px;}
.ws3d{word-spacing:8.778000px;}
.wsa{word-spacing:9.006000px;}
.ws1{word-spacing:9.120000px;}
.wse{word-spacing:9.804000px;}
.ws21{word-spacing:10.374000px;}
.ws2{word-spacing:10.773000px;}
.ws27{word-spacing:11.400000px;}
.ws19{word-spacing:12.255000px;}
.ws20{word-spacing:14.193000px;}
.ws14{word-spacing:18.354000px;}
.ws6{word-spacing:19.266000px;}
.ws11{word-spacing:19.323000px;}
.ws1c{word-spacing:19.437000px;}
.ws18{word-spacing:20.520000px;}
.ws16{word-spacing:21.489000px;}
.ws12{word-spacing:27.531000px;}
.ws1a{word-spacing:28.956000px;}
.ws13{word-spacing:52.953000px;}
._1{margin-left:-7.848000px;}
._c{margin-left:-6.042000px;}
._0{margin-left:-3.996000px;}
._4{margin-left:-2.832000px;}
._2{margin-left:-1.728000px;}
._3{width:1.368000px;}
._a{width:2.907000px;}
._b{width:3.933000px;}
._7{width:4.959000px;}
._d{width:6.327000px;}
._8{width:7.988400px;}
._9{width:9.168600px;}
._5{width:14.820000px;}
._6{width:983.923200px;}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:25.397100px;}
.y2{bottom:44.880750px;}
.yc6{bottom:90.029400px;}
.y53{bottom:93.525450px;}
.yc5{bottom:106.529400px;}
.ya0{bottom:108.052950px;}
.y52{bottom:110.025450px;}
.y80{bottom:118.023300px;}
.yc4{bottom:123.029400px;}
.y9f{bottom:124.552950px;}
.y51{bottom:126.525450px;}
.y7f{bottom:134.523300px;}
.y9e{bottom:141.052950px;}
.yc3{bottom:148.033350px;}
.y7e{bottom:151.023300px;}
.y50{bottom:151.529400px;}
.y9d{bottom:157.552950px;}
.y7d{bottom:167.523300px;}
.y4f{bottom:168.029400px;}
.yc2{bottom:173.037300px;}
.y9c{bottom:174.052950px;}
.y7c{bottom:184.023300px;}
.y4e{bottom:184.529400px;}
.yc1{bottom:189.537300px;}
.y9b{bottom:190.552950px;}
.yc0{bottom:206.037300px;}
.y9a{bottom:207.052950px;}
.y7b{bottom:209.027250px;}
.y4d{bottom:209.533350px;}
.ybf{bottom:222.537300px;}
.y99{bottom:223.552950px;}
.y7a{bottom:225.527250px;}
.y4c{bottom:226.033350px;}
.ybe{bottom:239.037300px;}
.y98{bottom:240.052950px;}
.y79{bottom:242.027250px;}
.y4b{bottom:251.037300px;}
.y25{bottom:251.818500px;}
.ybd{bottom:255.537300px;}
.y97{bottom:256.552950px;}
.y78{bottom:258.527250px;}
.y4a{bottom:267.537300px;}
.y24{bottom:268.318500px;}
.y96{bottom:273.052950px;}
.y77{bottom:275.027250px;}
.ybc{bottom:280.541250px;}
.y23{bottom:284.818500px;}
.y76{bottom:291.527250px;}
.y49{bottom:292.541250px;}
.ybb{bottom:297.041250px;}
.y95{bottom:298.057050px;}
.y22{bottom:301.318500px;}
.y75{bottom:308.027250px;}
.y48{bottom:309.041250px;}
.yba{bottom:313.541250px;}
.y94{bottom:314.557050px;}
.y21{bottom:317.818500px;}
.y74{bottom:324.527250px;}
.y47{bottom:325.541250px;}
.yb9{bottom:330.041250px;}
.y93{bottom:331.057050px;}
.y20{bottom:334.318500px;}
.y73{bottom:341.027250px;}
.y46{bottom:342.041250px;}
.yb8{bottom:346.541250px;}
.y92{bottom:347.557050px;}
.y1f{bottom:350.818500px;}
.y45{bottom:358.541250px;}
.y91{bottom:364.057050px;}
.y72{bottom:366.031200px;}
.y26{bottom:367.318500px;}
.yb7{bottom:371.545200px;}
.y1e{bottom:375.822300px;}
.y90{bottom:380.557050px;}
.y71{bottom:382.531200px;}
.y44{bottom:383.545200px;}
.y1d{bottom:392.322450px;}
.yb6{bottom:396.549150px;}
.y8f{bottom:397.057050px;}
.y70{bottom:399.031200px;}
.y43{bottom:400.045200px;}
.y1c{bottom:408.822450px;}
.yb5{bottom:413.049150px;}
.y8e{bottom:413.557050px;}
.y6f{bottom:415.531200px;}
.y42{bottom:416.545200px;}
.y1b{bottom:425.322450px;}
.yb4{bottom:429.549150px;}
.y8d{bottom:430.057050px;}
.y6e{bottom:432.031200px;}
.y41{bottom:433.045200px;}
.y1a{bottom:441.822450px;}
.yb3{bottom:446.049150px;}
.y8c{bottom:446.557050px;}
.y6d{bottom:448.531200px;}
.y40{bottom:449.545200px;}
.y19{bottom:458.322450px;}
.yb2{bottom:462.549150px;}
.y8b{bottom:463.057050px;}
.y6c{bottom:465.031200px;}
.y3f{bottom:466.045200px;}
.y18{bottom:474.822450px;}
.yb1{bottom:479.049150px;}
.y6b{bottom:481.531200px;}
.y8a{bottom:488.060850px;}
.y17{bottom:491.322450px;}
.y3e{bottom:495.301050px;}
.yb0{bottom:504.052950px;}
.y89{bottom:504.560850px;}
.y16{bottom:507.822450px;}
.y6a{bottom:510.787050px;}
.yaf{bottom:520.552950px;}
.y88{bottom:521.060850px;}
.y15{bottom:524.322450px;}
.yae{bottom:537.052950px;}
.y87{bottom:537.560850px;}
.y14{bottom:540.822450px;}
.yd9{bottom:544.035150px;}
.y3d{bottom:546.064800px;}
.yad{bottom:553.552950px;}
.y86{bottom:554.060850px;}
.y13{bottom:557.322450px;}
.yd8{bottom:560.535150px;}
.y69{bottom:561.550800px;}
.y3c{bottom:562.564800px;}
.y12{bottom:573.822450px;}
.yd7{bottom:577.035150px;}
.y68{bottom:578.050800px;}
.yac{bottom:578.557050px;}
.y3b{bottom:579.064800px;}
.y11{bottom:590.322450px;}
.yd6{bottom:593.535150px;}
.y67{bottom:594.550800px;}
.y3a{bottom:595.564800px;}
.yab{bottom:603.560850px;}
.y10{bottom:606.822450px;}
.y66{bottom:611.050800px;}
.y39{bottom:612.064800px;}
.yd5{bottom:618.539100px;}
.yaa{bottom:620.060850px;}
.y65{bottom:627.550800px;}
.y38{bottom:628.564800px;}
.yf{bottom:631.826400px;}
.ya9{bottom:636.560850px;}
.yd4{bottom:643.542900px;}
.y64{bottom:644.050800px;}
.y37{bottom:645.064800px;}
.ye{bottom:648.326400px;}
.ye4{bottom:650.523300px;}
.ya8{bottom:653.060850px;}
.y85{bottom:653.568750px;}
.yd3{bottom:660.042900px;}
.y63{bottom:660.550800px;}
.y36{bottom:661.564800px;}
.yd{bottom:664.826400px;}
.y84{bottom:670.068750px;}
.ye3{bottom:675.527250px;}
.yd2{bottom:676.542900px;}
.y35{bottom:678.064800px;}
.yc{bottom:681.326400px;}
.y62{bottom:685.554750px;}
.y83{bottom:686.568750px;}
.yd1{bottom:693.042900px;}
.y34{bottom:694.564800px;}
.yb{bottom:697.826400px;}
.ye2{bottom:700.531200px;}
.y61{bottom:702.054750px;}
.y82{bottom:703.068750px;}
.yd0{bottom:709.542900px;}
.ya7{bottom:711.064800px;}
.ya{bottom:714.326400px;}
.y60{bottom:718.554750px;}
.y33{bottom:719.568750px;}
.ye1{bottom:725.535150px;}
.ycf{bottom:726.042900px;}
.ya6{bottom:727.564800px;}
.y9{bottom:730.826400px;}
.y5f{bottom:735.054750px;}
.y32{bottom:736.068750px;}
.ye0{bottom:742.035150px;}
.yce{bottom:742.542900px;}
.ya5{bottom:744.064800px;}
.y5e{bottom:751.554750px;}
.y31{bottom:752.568750px;}
.y8{bottom:755.830350px;}
.ycd{bottom:759.043050px;}
.ya4{bottom:760.564800px;}
.ydf{bottom:767.038950px;}
.y5d{bottom:768.054750px;}
.y30{bottom:769.068750px;}
.ya3{bottom:777.064800px;}
.yde{bottom:783.539100px;}
.ycc{bottom:784.046850px;}
.y2f{bottom:785.568750px;}
.y5c{bottom:793.058700px;}
.ya2{bottom:793.564800px;}
.y2e{bottom:802.068750px;}
.y6{bottom:806.500800px;}
.ydd{bottom:808.542900px;}
.ycb{bottom:809.050800px;}
.y5b{bottom:809.558700px;}
.y81{bottom:810.572700px;}
.ya1{bottom:818.568750px;}
.y5{bottom:824.500800px;}
.yca{bottom:825.550800px;}
.y5a{bottom:826.058700px;}
.y2d{bottom:827.072700px;}
.ydc{bottom:833.546850px;}
.yc9{bottom:842.050800px;}
.y4{bottom:842.500800px;}
.y59{bottom:842.558700px;}
.y2c{bottom:843.572700px;}
.yc8{bottom:858.550800px;}
.y58{bottom:859.058700px;}
.y2b{bottom:860.072700px;}
.ydb{bottom:875.050800px;}
.y57{bottom:875.558700px;}
.y2a{bottom:876.572700px;}
.y27{bottom:881.760600px;}
.yc7{bottom:883.554750px;}
.y56{bottom:892.058700px;}
.y29{bottom:893.072700px;}
.yda{bottom:900.054750px;}
.y55{bottom:908.558700px;}
.y3{bottom:915.776400px;}
.y28{bottom:922.328550px;}
.y54{bottom:925.058700px;}
.y1{bottom:968.712900px;}
.hc{height:41.497559px;}
.h3{height:41.580000px;}
.h2{height:43.031250px;}
.h7{height:48.410156px;}
.hb{height:50.960449px;}
.h9{height:51.099609px;}
.h8{height:51.461426px;}
.ha{height:51.517090px;}
.h6{height:53.642578px;}
.h5{height:64.546875px;}
.he{height:65.003906px;}
.h4{height:97.505859px;}
.hd{height:97.611328px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:85.039350px;}
.xc{left:97.795350px;}
.x3{left:106.299150px;}
.xd{left:110.551200px;}
.x7{left:137.961750px;}
.x1{left:282.143400px;}
.x8{left:290.400150px;}
.xb{left:333.534600px;}
.x2{left:354.794400px;}
.x9{left:384.803100px;}
.x4{left:447.714150px;}
.x5{left:501.044700px;}
.x6{left:539.267700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.506667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws28{word-spacing:-3.698667pt;}
.ws65{word-spacing:-3.648000pt;}
.ws1e{word-spacing:-3.597333pt;}
.ws15{word-spacing:-3.394667pt;}
.ws80{word-spacing:-2.786667pt;}
.ws7{word-spacing:-2.634667pt;}
.ws1b{word-spacing:-2.584000pt;}
.ws46{word-spacing:-2.432000pt;}
.ws6b{word-spacing:-2.381333pt;}
.ws7b{word-spacing:-2.280000pt;}
.ws62{word-spacing:-2.229333pt;}
.ws34{word-spacing:-2.128000pt;}
.ws77{word-spacing:-2.077333pt;}
.ws44{word-spacing:-1.976000pt;}
.wsb{word-spacing:-1.874667pt;}
.ws70{word-spacing:-1.773333pt;}
.ws6f{word-spacing:-1.722667pt;}
.ws55{word-spacing:-1.672000pt;}
.ws57{word-spacing:-1.621333pt;}
.ws50{word-spacing:-1.570667pt;}
.ws81{word-spacing:-1.520000pt;}
.wsd{word-spacing:-1.469333pt;}
.ws43{word-spacing:-1.418667pt;}
.ws5c{word-spacing:-1.317333pt;}
.ws7a{word-spacing:-1.266667pt;}
.ws40{word-spacing:-1.165333pt;}
.ws74{word-spacing:-1.114667pt;}
.ws72{word-spacing:-1.064000pt;}
.ws3c{word-spacing:-1.013333pt;}
.ws5d{word-spacing:-0.962667pt;}
.ws2e{word-spacing:-0.912000pt;}
.ws31{word-spacing:-0.861333pt;}
.ws7c{word-spacing:-0.810667pt;}
.ws3a{word-spacing:-0.760000pt;}
.ws78{word-spacing:-0.709333pt;}
.ws47{word-spacing:-0.608000pt;}
.ws5f{word-spacing:-0.506667pt;}
.ws42{word-spacing:-0.456000pt;}
.ws67{word-spacing:-0.405333pt;}
.ws1f{word-spacing:-0.354667pt;}
.ws33{word-spacing:-0.202667pt;}
.ws32{word-spacing:-0.152000pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:0.152000pt;}
.ws8{word-spacing:0.202667pt;}
.ws36{word-spacing:0.253333pt;}
.ws5{word-spacing:0.304000pt;}
.ws71{word-spacing:0.354667pt;}
.ws49{word-spacing:0.456000pt;}
.ws25{word-spacing:0.557333pt;}
.ws4{word-spacing:0.658667pt;}
.ws66{word-spacing:0.709333pt;}
.ws54{word-spacing:0.861333pt;}
.ws2d{word-spacing:0.912000pt;}
.ws3e{word-spacing:0.962667pt;}
.ws63{word-spacing:1.064000pt;}
.ws37{word-spacing:1.165333pt;}
.ws4f{word-spacing:1.216000pt;}
.ws5a{word-spacing:1.266667pt;}
.ws75{word-spacing:1.368000pt;}
.ws41{word-spacing:1.418667pt;}
.ws2c{word-spacing:1.469333pt;}
.ws29{word-spacing:1.621333pt;}
.ws2f{word-spacing:1.722667pt;}
.ws5e{word-spacing:1.874667pt;}
.ws4d{word-spacing:1.976000pt;}
.ws7f{word-spacing:2.026667pt;}
.ws30{word-spacing:2.077333pt;}
.ws6a{word-spacing:2.128000pt;}
.ws4e{word-spacing:2.178667pt;}
.ws7e{word-spacing:2.330667pt;}
.wsf{word-spacing:2.381333pt;}
.ws10{word-spacing:2.533333pt;}
.wsc{word-spacing:2.584000pt;}
.ws3f{word-spacing:2.736000pt;}
.ws59{word-spacing:2.837333pt;}
.ws22{word-spacing:3.040000pt;}
.ws3b{word-spacing:3.090667pt;}
.ws48{word-spacing:3.344000pt;}
.ws53{word-spacing:3.394667pt;}
.ws73{word-spacing:3.496000pt;}
.ws2a{word-spacing:3.546667pt;}
.ws51{word-spacing:3.597333pt;}
.ws52{word-spacing:3.749333pt;}
.ws7d{word-spacing:3.901333pt;}
.ws61{word-spacing:3.952000pt;}
.ws39{word-spacing:4.002667pt;}
.ws2b{word-spacing:4.053333pt;}
.ws56{word-spacing:4.104000pt;}
.ws23{word-spacing:4.357333pt;}
.ws64{word-spacing:4.509333pt;}
.ws6d{word-spacing:4.610667pt;}
.ws26{word-spacing:4.712000pt;}
.ws69{word-spacing:4.762667pt;}
.ws38{word-spacing:4.813333pt;}
.ws6c{word-spacing:4.864000pt;}
.ws76{word-spacing:4.914667pt;}
.ws45{word-spacing:5.168000pt;}
.ws6e{word-spacing:5.218667pt;}
.ws68{word-spacing:5.269333pt;}
.ws60{word-spacing:5.370667pt;}
.ws82{word-spacing:5.421333pt;}
.ws35{word-spacing:5.624000pt;}
.ws4b{word-spacing:6.130667pt;}
.ws4c{word-spacing:6.384000pt;}
.ws17{word-spacing:6.485333pt;}
.ws4a{word-spacing:6.586667pt;}
.ws79{word-spacing:6.789333pt;}
.ws9{word-spacing:6.992000pt;}
.ws58{word-spacing:7.296000pt;}
.ws1d{word-spacing:7.549333pt;}
.ws24{word-spacing:7.701333pt;}
.ws5b{word-spacing:7.752000pt;}
.ws3d{word-spacing:7.802667pt;}
.wsa{word-spacing:8.005333pt;}
.ws1{word-spacing:8.106667pt;}
.wse{word-spacing:8.714667pt;}
.ws21{word-spacing:9.221333pt;}
.ws2{word-spacing:9.576000pt;}
.ws27{word-spacing:10.133333pt;}
.ws19{word-spacing:10.893333pt;}
.ws20{word-spacing:12.616000pt;}
.ws14{word-spacing:16.314667pt;}
.ws6{word-spacing:17.125333pt;}
.ws11{word-spacing:17.176000pt;}
.ws1c{word-spacing:17.277333pt;}
.ws18{word-spacing:18.240000pt;}
.ws16{word-spacing:19.101333pt;}
.ws12{word-spacing:24.472000pt;}
.ws1a{word-spacing:25.738667pt;}
.ws13{word-spacing:47.069333pt;}
._1{margin-left:-6.976000pt;}
._c{margin-left:-5.370667pt;}
._0{margin-left:-3.552000pt;}
._4{margin-left:-2.517333pt;}
._2{margin-left:-1.536000pt;}
._3{width:1.216000pt;}
._a{width:2.584000pt;}
._b{width:3.496000pt;}
._7{width:4.408000pt;}
._d{width:5.624000pt;}
._8{width:7.100800pt;}
._9{width:8.149867pt;}
._5{width:13.173333pt;}
._6{width:874.598400pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:22.575200pt;}
.y2{bottom:39.894000pt;}
.yc6{bottom:80.026133pt;}
.y53{bottom:83.133733pt;}
.yc5{bottom:94.692800pt;}
.ya0{bottom:96.047067pt;}
.y52{bottom:97.800400pt;}
.y80{bottom:104.909600pt;}
.yc4{bottom:109.359467pt;}
.y9f{bottom:110.713733pt;}
.y51{bottom:112.467067pt;}
.y7f{bottom:119.576267pt;}
.y9e{bottom:125.380400pt;}
.yc3{bottom:131.585200pt;}
.y7e{bottom:134.242933pt;}
.y50{bottom:134.692800pt;}
.y9d{bottom:140.047067pt;}
.y7d{bottom:148.909600pt;}
.y4f{bottom:149.359467pt;}
.yc2{bottom:153.810933pt;}
.y9c{bottom:154.713733pt;}
.y7c{bottom:163.576267pt;}
.y4e{bottom:164.026133pt;}
.yc1{bottom:168.477600pt;}
.y9b{bottom:169.380400pt;}
.yc0{bottom:183.144267pt;}
.y9a{bottom:184.047067pt;}
.y7b{bottom:185.802000pt;}
.y4d{bottom:186.251867pt;}
.ybf{bottom:197.810933pt;}
.y99{bottom:198.713733pt;}
.y7a{bottom:200.468667pt;}
.y4c{bottom:200.918533pt;}
.ybe{bottom:212.477600pt;}
.y98{bottom:213.380400pt;}
.y79{bottom:215.135333pt;}
.y4b{bottom:223.144267pt;}
.y25{bottom:223.838667pt;}
.ybd{bottom:227.144267pt;}
.y97{bottom:228.047067pt;}
.y78{bottom:229.802000pt;}
.y4a{bottom:237.810933pt;}
.y24{bottom:238.505333pt;}
.y96{bottom:242.713733pt;}
.y77{bottom:244.468667pt;}
.ybc{bottom:249.370000pt;}
.y23{bottom:253.172000pt;}
.y76{bottom:259.135333pt;}
.y49{bottom:260.036667pt;}
.ybb{bottom:264.036667pt;}
.y95{bottom:264.939600pt;}
.y22{bottom:267.838667pt;}
.y75{bottom:273.802000pt;}
.y48{bottom:274.703333pt;}
.yba{bottom:278.703333pt;}
.y94{bottom:279.606267pt;}
.y21{bottom:282.505333pt;}
.y74{bottom:288.468667pt;}
.y47{bottom:289.370000pt;}
.yb9{bottom:293.370000pt;}
.y93{bottom:294.272933pt;}
.y20{bottom:297.172000pt;}
.y73{bottom:303.135333pt;}
.y46{bottom:304.036667pt;}
.yb8{bottom:308.036667pt;}
.y92{bottom:308.939600pt;}
.y1f{bottom:311.838667pt;}
.y45{bottom:318.703333pt;}
.y91{bottom:323.606267pt;}
.y72{bottom:325.361067pt;}
.y26{bottom:326.505333pt;}
.yb7{bottom:330.262400pt;}
.y1e{bottom:334.064267pt;}
.y90{bottom:338.272933pt;}
.y71{bottom:340.027733pt;}
.y44{bottom:340.929067pt;}
.y1d{bottom:348.731067pt;}
.yb6{bottom:352.488133pt;}
.y8f{bottom:352.939600pt;}
.y70{bottom:354.694400pt;}
.y43{bottom:355.595733pt;}
.y1c{bottom:363.397733pt;}
.yb5{bottom:367.154800pt;}
.y8e{bottom:367.606267pt;}
.y6f{bottom:369.361067pt;}
.y42{bottom:370.262400pt;}
.y1b{bottom:378.064400pt;}
.yb4{bottom:381.821467pt;}
.y8d{bottom:382.272933pt;}
.y6e{bottom:384.027733pt;}
.y41{bottom:384.929067pt;}
.y1a{bottom:392.731067pt;}
.yb3{bottom:396.488133pt;}
.y8c{bottom:396.939600pt;}
.y6d{bottom:398.694400pt;}
.y40{bottom:399.595733pt;}
.y19{bottom:407.397733pt;}
.yb2{bottom:411.154800pt;}
.y8b{bottom:411.606267pt;}
.y6c{bottom:413.361067pt;}
.y3f{bottom:414.262400pt;}
.y18{bottom:422.064400pt;}
.yb1{bottom:425.821467pt;}
.y6b{bottom:428.027733pt;}
.y8a{bottom:433.831867pt;}
.y17{bottom:436.731067pt;}
.y3e{bottom:440.267600pt;}
.yb0{bottom:448.047067pt;}
.y89{bottom:448.498533pt;}
.y16{bottom:451.397733pt;}
.y6a{bottom:454.032933pt;}
.yaf{bottom:462.713733pt;}
.y88{bottom:463.165200pt;}
.y15{bottom:466.064400pt;}
.yae{bottom:477.380400pt;}
.y87{bottom:477.831867pt;}
.y14{bottom:480.731067pt;}
.yd9{bottom:483.586800pt;}
.y3d{bottom:485.390933pt;}
.yad{bottom:492.047067pt;}
.y86{bottom:492.498533pt;}
.y13{bottom:495.397733pt;}
.yd8{bottom:498.253467pt;}
.y69{bottom:499.156267pt;}
.y3c{bottom:500.057600pt;}
.y12{bottom:510.064400pt;}
.yd7{bottom:512.920133pt;}
.y68{bottom:513.822933pt;}
.yac{bottom:514.272933pt;}
.y3b{bottom:514.724267pt;}
.y11{bottom:524.731067pt;}
.yd6{bottom:527.586800pt;}
.y67{bottom:528.489600pt;}
.y3a{bottom:529.390933pt;}
.yab{bottom:536.498533pt;}
.y10{bottom:539.397733pt;}
.y66{bottom:543.156267pt;}
.y39{bottom:544.057600pt;}
.yd5{bottom:549.812533pt;}
.yaa{bottom:551.165200pt;}
.y65{bottom:557.822933pt;}
.y38{bottom:558.724267pt;}
.yf{bottom:561.623467pt;}
.ya9{bottom:565.831867pt;}
.yd4{bottom:572.038133pt;}
.y64{bottom:572.489600pt;}
.y37{bottom:573.390933pt;}
.ye{bottom:576.290133pt;}
.ye4{bottom:578.242933pt;}
.ya8{bottom:580.498533pt;}
.y85{bottom:580.950000pt;}
.yd3{bottom:586.704800pt;}
.y63{bottom:587.156267pt;}
.y36{bottom:588.057600pt;}
.yd{bottom:590.956800pt;}
.y84{bottom:595.616667pt;}
.ye3{bottom:600.468667pt;}
.yd2{bottom:601.371467pt;}
.y35{bottom:602.724267pt;}
.yc{bottom:605.623467pt;}
.y62{bottom:609.382000pt;}
.y83{bottom:610.283333pt;}
.yd1{bottom:616.038133pt;}
.y34{bottom:617.390933pt;}
.yb{bottom:620.290133pt;}
.ye2{bottom:622.694400pt;}
.y61{bottom:624.048667pt;}
.y82{bottom:624.950000pt;}
.yd0{bottom:630.704800pt;}
.ya7{bottom:632.057600pt;}
.ya{bottom:634.956800pt;}
.y60{bottom:638.715333pt;}
.y33{bottom:639.616667pt;}
.ye1{bottom:644.920133pt;}
.ycf{bottom:645.371467pt;}
.ya6{bottom:646.724267pt;}
.y9{bottom:649.623467pt;}
.y5f{bottom:653.382000pt;}
.y32{bottom:654.283333pt;}
.ye0{bottom:659.586800pt;}
.yce{bottom:660.038133pt;}
.ya5{bottom:661.390933pt;}
.y5e{bottom:668.048667pt;}
.y31{bottom:668.950000pt;}
.y8{bottom:671.849200pt;}
.ycd{bottom:674.704933pt;}
.ya4{bottom:676.057600pt;}
.ydf{bottom:681.812400pt;}
.y5d{bottom:682.715333pt;}
.y30{bottom:683.616667pt;}
.ya3{bottom:690.724267pt;}
.yde{bottom:696.479200pt;}
.ycc{bottom:696.930533pt;}
.y2f{bottom:698.283333pt;}
.y5c{bottom:704.941067pt;}
.ya2{bottom:705.390933pt;}
.y2e{bottom:712.950000pt;}
.y6{bottom:716.889600pt;}
.ydd{bottom:718.704800pt;}
.ycb{bottom:719.156267pt;}
.y5b{bottom:719.607733pt;}
.y81{bottom:720.509067pt;}
.ya1{bottom:727.616667pt;}
.y5{bottom:732.889600pt;}
.yca{bottom:733.822933pt;}
.y5a{bottom:734.274400pt;}
.y2d{bottom:735.175733pt;}
.ydc{bottom:740.930533pt;}
.yc9{bottom:748.489600pt;}
.y4{bottom:748.889600pt;}
.y59{bottom:748.941067pt;}
.y2c{bottom:749.842400pt;}
.yc8{bottom:763.156267pt;}
.y58{bottom:763.607733pt;}
.y2b{bottom:764.509067pt;}
.ydb{bottom:777.822933pt;}
.y57{bottom:778.274400pt;}
.y2a{bottom:779.175733pt;}
.y27{bottom:783.787200pt;}
.yc7{bottom:785.382000pt;}
.y56{bottom:792.941067pt;}
.y29{bottom:793.842400pt;}
.yda{bottom:800.048667pt;}
.y55{bottom:807.607733pt;}
.y3{bottom:814.023467pt;}
.y28{bottom:819.847600pt;}
.y54{bottom:822.274400pt;}
.y1{bottom:861.078133pt;}
.hc{height:36.886719pt;}
.h3{height:36.960000pt;}
.h2{height:38.250000pt;}
.h7{height:43.031250pt;}
.hb{height:45.298177pt;}
.h9{height:45.421875pt;}
.h8{height:45.743490pt;}
.ha{height:45.792969pt;}
.h6{height:47.682292pt;}
.h5{height:57.375000pt;}
.he{height:57.781250pt;}
.h4{height:86.671875pt;}
.hd{height:86.765625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:75.590533pt;}
.xc{left:86.929200pt;}
.x3{left:94.488133pt;}
.xd{left:98.267733pt;}
.x7{left:122.632667pt;}
.x1{left:250.794133pt;}
.x8{left:258.133467pt;}
.xb{left:296.475200pt;}
.x2{left:315.372800pt;}
.x9{left:342.047200pt;}
.x4{left:397.968133pt;}
.x5{left:445.373067pt;}
.x6{left:479.349067pt;}
}

