
    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_0a8156038dd1cd8591133ac7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_2a803df078c2f742ba358632.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_47b5968554f6b0a56dd8b8be.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_d747fb374f1df3ee0645e52b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_8cecec5b52a4d6fc8053b418.woff')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_97cf1c1476396a69e1821f16.woff')format("woff");}.ff6{font-family:ff6;line-height:1.313477;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_511d97a0743f95ce47e25ded.woff')format("woff");}.ff7{font-family:ff7;line-height:1.033691;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_e68847c91385a196bf04d8f1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_c70fce1107563410510ab377.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_ba06ef418b262de3613cc259.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_10e8565f45b2800a63bfdd6b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.715820;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;}
.m4{transform:matrix(0.000000,-0.249850,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249850,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249850,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m6{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.260450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260450,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-48.240000px;}
.v1{vertical-align:-33.120000px;}
.v6{vertical-align:-9.360000px;}
.v4{vertical-align:-5.760000px;}
.v5{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.v7{vertical-align:62.640000px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.090000px;}
.lsf{letter-spacing:0.099000px;}
.ls7{letter-spacing:0.114000px;}
.ls9{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.150000px;}
.ls10{letter-spacing:0.171000px;}
.ls1c{letter-spacing:0.179262px;}
.ls13{letter-spacing:0.189000px;}
.ls14{letter-spacing:0.207000px;}
.ls2{letter-spacing:0.214902px;}
.ls1{letter-spacing:0.492000px;}
.ls0{letter-spacing:0.587136px;}
.ls11{letter-spacing:4.613472px;}
.ls8{letter-spacing:58.470000px;}
.lsd{letter-spacing:68.556000px;}
.lsa{letter-spacing:85.848000px;}
.lse{letter-spacing:95.934000px;}
.ls5{letter-spacing:106.740000px;}
.ls6{letter-spacing:109.626000px;}
.lsb{letter-spacing:116.826000px;}
.lsc{letter-spacing:119.706000px;}
.ls17{letter-spacing:150.684000px;}
.ls19{letter-spacing:152.844000px;}
.ls1a{letter-spacing:156.444000px;}
.ls1b{letter-spacing:157.890000px;}
.ls4{letter-spacing:158.783472px;}
.ls16{letter-spacing:162.930000px;}
.ls12{letter-spacing:832.373472px;}
.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;}
}
.wsd{word-spacing:-19.528944px;}
.ws9{word-spacing:-19.156980px;}
.ws8{word-spacing:-18.123402px;}
.ws2{word-spacing:-17.967000px;}
.ws1{word-spacing:-17.908500px;}
.ws0{word-spacing:-15.425664px;}
.ws6{word-spacing:-15.012000px;}
.ws10{word-spacing:-14.938500px;}
.ws4{word-spacing:-14.838528px;}
.wsf{word-spacing:-14.641704px;}
.wsc{word-spacing:-14.361480px;}
.wsa{word-spacing:-12.771876px;}
.ws7{word-spacing:-12.000000px;}
.ws5{word-spacing:-10.008000px;}
.ws3{word-spacing:0.000000px;}
.wse{word-spacing:167.640822px;}
.wsb{word-spacing:201.298500px;}
._0{margin-left:-1.263600px;}
._1{width:1.010880px;}
._2{width:2.347914px;}
._d{width:3.615294px;}
._c{width:4.648206px;}
._e{width:5.659086px;}
._13{width:6.922686px;}
._3{width:8.166276px;}
._8{width:9.598554px;}
._14{width:10.865094px;}
._b{width:11.992758px;}
._a{width:13.029384px;}
._7{width:15.210420px;}
._6{width:16.467816px;}
._29{width:19.261542px;}
._4{width:21.840366px;}
._5{width:23.281050px;}
._26{width:24.992262px;}
._10{width:27.894252px;}
._f{width:29.202132px;}
._9{width:30.500076px;}
._12{width:35.259936px;}
._11{width:36.525336px;}
._24{width:45.449280px;}
._1d{width:46.562880px;}
._23{width:51.565440px;}
._1e{width:53.652240px;}
._22{width:61.563600px;}
._1f{width:63.734400px;}
._25{width:65.193600px;}
._20{width:66.628800px;}
._21{width:69.474960px;}
._2c{width:158.824656px;}
._2b{width:162.624000px;}
._28{width:188.713794px;}
._27{width:217.033248px;}
._2f{width:227.224896px;}
._17{width:248.282784px;}
._2e{width:252.361728px;}
._18{width:256.471680px;}
._2d{width:257.489088px;}
._1c{width:263.360448px;}
._19{width:266.506368px;}
._1a{width:269.410032px;}
._1b{width:272.256000px;}
._15{width:530.691264px;}
._16{width:547.201584px;}
._2a{width:827.477808px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:22.968000px;}
.fs10{font-size:23.412000px;}
.fsd{font-size:28.692000px;}
.fs8{font-size:36.000000px;}
.fs11{font-size:40.998000px;}
.fsc{font-size:45.942000px;}
.fs5{font-size:48.000000px;}
.fs9{font-size:48.239998px;}
.fs6{font-size:48.240000px;}
.fse{font-size:51.660000px;}
.fs12{font-size:52.668000px;}
.fs2{font-size:53.375998px;}
.fs1{font-size:53.376000px;}
.fs7{font-size:54.000000px;}
.fs13{font-size:59.754000px;}
.fsa{font-size:68.910000px;}
.fsf{font-size:70.248000px;}
.fs0{font-size:71.634000px;}
.fs4{font-size:71.868000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:1.202530px;}
.y92{bottom:1.203986px;}
.y36{bottom:2.590500px;}
.y50{bottom:2.661975px;}
.y54{bottom:2.664969px;}
.y58{bottom:2.666452px;}
.yaf{bottom:2.865524px;}
.yb6{bottom:2.867353px;}
.yb3{bottom:2.867633px;}
.yb9{bottom:2.870061px;}
.ybc{bottom:2.871281px;}
.y6{bottom:2.876283px;}
.y3{bottom:57.720000px;}
.y5{bottom:58.443865px;}
.y4{bottom:61.320150px;}
.y6d{bottom:99.300000px;}
.y34{bottom:106.860000px;}
.y6c{bottom:120.000000px;}
.y33{bottom:127.560000px;}
.y6b{bottom:140.700000px;}
.ybb{bottom:142.869014px;}
.yba{bottom:145.740300px;}
.y32{bottom:148.260000px;}
.y6a{bottom:161.400000px;}
.yb8{bottom:162.849933px;}
.yb7{bottom:165.720000px;}
.y31{bottom:168.960000px;}
.y69{bottom:182.100000px;}
.yb5{bottom:182.652641px;}
.yb4{bottom:185.520000px;}
.yb2{bottom:202.632360px;}
.y68{bottom:202.800000px;}
.yb1{bottom:205.500000px;}
.y30{bottom:207.660000px;}
.y67{bottom:223.500000px;}
.yb0{bottom:225.480000px;}
.y2f{bottom:228.360000px;}
.yae{bottom:237.194468px;}
.yad{bottom:240.060000px;}
.y66{bottom:244.200000px;}
.y2e{bottom:249.060000px;}
.yac{bottom:251.940000px;}
.y65{bottom:264.900000px;}
.y2d{bottom:269.760000px;}
.y64{bottom:285.600000px;}
.yab{bottom:287.940000px;}
.y2c{bottom:290.460000px;}
.y63{bottom:306.300000px;}
.y2b{bottom:311.160000px;}
.yaa{bottom:322.680000px;}
.y62{bottom:327.000000px;}
.y2a{bottom:331.860000px;}
.ya9{bottom:343.380000px;}
.y61{bottom:347.700000px;}
.y29{bottom:352.560000px;}
.ya8{bottom:364.080000px;}
.y60{bottom:368.400000px;}
.ya7{bottom:384.780000px;}
.y28{bottom:390.900000px;}
.ya6{bottom:405.480000px;}
.y5f{bottom:406.380000px;}
.ya5{bottom:426.180000px;}
.y27{bottom:429.960000px;}
.y5e{bottom:430.860000px;}
.ya4{bottom:446.880000px;}
.y26{bottom:450.660000px;}
.y5d{bottom:455.160000px;}
.ya3{bottom:467.580000px;}
.y25{bottom:471.360000px;}
.y5c{bottom:479.640000px;}
.ya2{bottom:488.280000px;}
.y24{bottom:492.060000px;}
.yd3{bottom:492.960000px;}
.y5b{bottom:503.940000px;}
.ya1{bottom:508.980000px;}
.yd2{bottom:512.400000px;}
.y23{bottom:512.760000px;}
.yd1{bottom:527.520000px;}
.y5a{bottom:528.420000px;}
.ya0{bottom:529.680000px;}
.y22{bottom:533.460000px;}
.yd0{bottom:542.460000px;}
.y57{bottom:549.693529px;}
.y59{bottom:552.360000px;}
.y56{bottom:552.720000px;}
.y21{bottom:554.160000px;}
.ycf{bottom:557.400000px;}
.yce{bottom:572.520000px;}
.y53{bottom:573.995012px;}
.y20{bottom:574.860000px;}
.y55{bottom:576.660000px;}
.y52{bottom:577.020000px;}
.y9f{bottom:584.940000px;}
.ycd{bottom:587.460000px;}
.y1f{bottom:595.560000px;}
.y4f{bottom:598.478005px;}
.y9e{bottom:600.600000px;}
.y51{bottom:601.140000px;}
.y4e{bottom:601.500000px;}
.ycc{bottom:602.400000px;}
.y1e{bottom:616.260000px;}
.ycb{bottom:617.520000px;}
.y4d{bottom:625.800000px;}
.yca{bottom:632.460000px;}
.y1d{bottom:636.960000px;}
.yc9{bottom:647.400000px;}
.y9d{bottom:649.020000px;}
.y87{bottom:654.780000px;}
.y1c{bottom:657.660000px;}
.y4c{bottom:662.520000px;}
.y71{bottom:663.060000px;}
.y4b{bottom:670.260000px;}
.yc8{bottom:677.460000px;}
.y1b{bottom:678.360000px;}
.y98{bottom:682.860000px;}
.y82{bottom:684.300000px;}
.y7e{bottom:691.140000px;}
.y93{bottom:693.120000px;}
.y73{bottom:698.160000px;}
.y4a{bottom:698.880000px;}
.y1a{bottom:699.060000px;}
.y89{bottom:699.240000px;}
.yc7{bottom:711.660000px;}
.y49{bottom:714.540000px;}
.y74{bottom:736.320000px;}
.y19{bottom:737.400000px;}
.y48{bottom:749.280000px;}
.yc6{bottom:750.720000px;}
.y94{bottom:752.340000px;}
.y7f{bottom:754.680000px;}
.y47{bottom:769.980000px;}
.yc5{bottom:771.420000px;}
.y75{bottom:773.400000px;}
.y8a{bottom:774.480000px;}
.y18{bottom:776.460000px;}
.y46{bottom:790.680000px;}
.yc4{bottom:792.120000px;}
.y17{bottom:797.160000px;}
.y88{bottom:804.180000px;}
.y72{bottom:807.060000px;}
.y76{bottom:808.140000px;}
.y8b{bottom:809.220000px;}
.y45{bottom:811.380000px;}
.y95{bottom:811.560000px;}
.yc3{bottom:812.820000px;}
.y16{bottom:817.680000px;}
.y80{bottom:818.220000px;}
.y44{bottom:832.080000px;}
.yc2{bottom:833.520000px;}
.y15{bottom:838.380000px;}
.y77{bottom:839.640000px;}
.y8c{bottom:840.540000px;}
.y43{bottom:852.780000px;}
.yc1{bottom:854.220000px;}
.y14{bottom:859.080000px;}
.y9c{bottom:865.560000px;}
.y78{bottom:866.820000px;}
.y8d{bottom:867.540000px;}
.y96{bottom:870.600000px;}
.y42{bottom:873.480000px;}
.yc0{bottom:874.920000px;}
.y86{bottom:876.720000px;}
.y13{bottom:879.780000px;}
.y9b{bottom:881.580000px;}
.y81{bottom:881.760000px;}
.y79{bottom:888.780000px;}
.y8e{bottom:889.500000px;}
.y85{bottom:892.380000px;}
.y41{bottom:894.180000px;}
.y9a{bottom:897.600000px;}
.y12{bottom:900.120000px;}
.y7a{bottom:904.980000px;}
.y8f{bottom:905.700000px;}
.y84{bottom:908.040000px;}
.ybf{bottom:913.260000px;}
.y99{bottom:913.620000px;}
.y40{bottom:914.880000px;}
.y7b{bottom:915.060000px;}
.y90{bottom:915.600000px;}
.y7c{bottom:917.097440px;}
.y91{bottom:917.815983px;}
.y11{bottom:921.180000px;}
.y83{bottom:923.700000px;}
.y97{bottom:929.820000px;}
.y3f{bottom:935.580000px;}
.y10{bottom:941.880000px;}
.ybe{bottom:952.320000px;}
.yf{bottom:970.860000px;}
.ybd{bottom:973.020000px;}
.y3e{bottom:973.920000px;}
.ye{bottom:991.560000px;}
.y70{bottom:993.720000px;}
.yd{bottom:1003.980000px;}
.y3d{bottom:1012.980000px;}
.y6f{bottom:1014.420000px;}
.yb{bottom:1024.680000px;}
.yc{bottom:1032.960000px;}
.y3b{bottom:1033.680000px;}
.y6e{bottom:1035.120000px;}
.y3c{bottom:1041.960000px;}
.ya{bottom:1045.380000px;}
.y3a{bottom:1055.820000px;}
.y9{bottom:1066.440000px;}
.y39{bottom:1076.520000px;}
.y8{bottom:1090.560000px;}
.y38{bottom:1097.220000px;}
.y7{bottom:1114.680000px;}
.y37{bottom:1117.920000px;}
.y2{bottom:1138.620000px;}
.y1{bottom:1154.820000px;}
.y35{bottom:1177.960327px;}
.h13{height:6.478895px;}
.h19{height:6.840417px;}
.ha{height:13.200073px;}
.he{height:13.500823px;}
.h1e{height:14.939411px;}
.h1f{height:14.940611px;}
.h1d{height:14.940911px;}
.h3{height:14.941061px;}
.h12{height:23.954906px;}
.h18{height:24.417984px;}
.h15{height:29.924859px;}
.h7{height:42.117188px;}
.h1a{height:42.759633px;}
.hc{height:44.683242px;}
.h14{height:47.916070px;}
.hb{height:48.328125px;}
.hf{height:50.312811px;}
.h10{height:50.312812px;}
.h21{height:52.430634px;}
.h20{height:52.576518px;}
.h16{height:53.879766px;}
.h1b{height:54.931078px;}
.h4{height:55.669498px;}
.h2{height:55.669500px;}
.hd{height:56.320312px;}
.h1{height:62.854638px;}
.h9{height:63.029525px;}
.h6{height:63.831979px;}
.h11{height:71.870977px;}
.h17{height:73.266469px;}
.h5{height:74.820586px;}
.h8{height:75.237187px;}
.h1c{height:118.960312px;}
.h0{height:1263.000000px;}
.w1{width:0.180011px;}
.w7{width:4.860296px;}
.w8{width:5.040307px;}
.w3{width:5.760351px;}
.w4{width:5.760801px;}
.w5{width:6.120373px;}
.w6{width:7.020428px;}
.w2{width:308.983500px;}
.w0{width:892.500000px;}
.x24{left:-5.228156px;}
.x0{left:0.000000px;}
.x2{left:93.569172px;}
.x13{left:97.740300px;}
.x7{left:100.079850px;}
.x12{left:103.140300px;}
.x19{left:114.659700px;}
.x54{left:120.598791px;}
.x5{left:121.681572px;}
.x26{left:125.999916px;}
.x3d{left:129.959700px;}
.x25{left:132.300000px;}
.xe{left:136.079850px;}
.x3b{left:139.140300px;}
.x27{left:141.300000px;}
.x23{left:143.468451px;}
.x50{left:148.859700px;}
.x3f{left:150.300000px;}
.x4{left:156.780000px;}
.x22{left:176.577768px;}
.x3e{left:187.211419px;}
.xb{left:191.337680px;}
.xa{left:197.997349px;}
.x8{left:202.680000px;}
.xf{left:207.900000px;}
.x21{left:213.839352px;}
.xd{left:215.460000px;}
.x10{left:240.840000px;}
.x16{left:245.520000px;}
.x18{left:246.960000px;}
.x20{left:248.939496px;}
.x11{left:250.380000px;}
.x9{left:252.522566px;}
.x40{left:261.375943px;}
.x6{left:278.995627px;}
.x1f{left:280.440432px;}
.xc{left:301.682480px;}
.x1e{left:307.800432px;}
.x3c{left:313.016412px;}
.x1d{left:329.940144px;}
.x17{left:331.740000px;}
.x41{left:333.380335px;}
.x1c{left:346.140000px;}
.x28{left:349.560000px;}
.x1b{left:356.220792px;}
.x1a{left:363.240000px;}
.x53{left:371.340000px;}
.x51{left:374.400000px;}
.x42{left:378.900000px;}
.x29{left:392.040000px;}
.x43{left:405.384727px;}
.x3a{left:439.020416px;}
.x44{left:446.400000px;}
.x4d{left:450.900000px;}
.x2b{left:460.260000px;}
.x37{left:471.959483px;}
.x45{left:477.389119px;}
.x36{left:478.440000px;}
.x38{left:486.720000px;}
.x35{left:489.809877px;}
.x34{left:523.625743px;}
.x46{left:549.393511px;}
.x33{left:561.605467px;}
.x47{left:587.160000px;}
.x52{left:591.660000px;}
.x2a{left:595.260000px;}
.x32{left:597.243430px;}
.x48{left:618.157705px;}
.x31{left:629.461769px;}
.x30{left:657.360438px;}
.x4e{left:660.600000px;}
.x49{left:665.100000px;}
.x2f{left:679.860203px;}
.x4a{left:691.602185px;}
.x14{left:692.862262px;}
.x2e{left:696.419395px;}
.x2d{left:706.679638px;}
.x15{left:708.120000px;}
.x2c{left:713.880000px;}
.x4f{left:734.400000px;}
.x4b{left:738.900000px;}
.x39{left:743.220000px;}
.x4c{left:765.406687px;}
.x3{left:776.880000px;}
.x1{left:799.560000px;}
@media print{
.v3{vertical-align:-42.880000pt;}
.v1{vertical-align:-29.440000pt;}
.v6{vertical-align:-8.320000pt;}
.v4{vertical-align:-5.120000pt;}
.v5{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.v7{vertical-align:55.680000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.080000pt;}
.lsf{letter-spacing:0.088000pt;}
.ls7{letter-spacing:0.101333pt;}
.ls9{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.133333pt;}
.ls10{letter-spacing:0.152000pt;}
.ls1c{letter-spacing:0.159344pt;}
.ls13{letter-spacing:0.168000pt;}
.ls14{letter-spacing:0.184000pt;}
.ls2{letter-spacing:0.191024pt;}
.ls1{letter-spacing:0.437333pt;}
.ls0{letter-spacing:0.521899pt;}
.ls11{letter-spacing:4.100864pt;}
.ls8{letter-spacing:51.973333pt;}
.lsd{letter-spacing:60.938667pt;}
.lsa{letter-spacing:76.309333pt;}
.lse{letter-spacing:85.274667pt;}
.ls5{letter-spacing:94.880000pt;}
.ls6{letter-spacing:97.445333pt;}
.lsb{letter-spacing:103.845333pt;}
.lsc{letter-spacing:106.405333pt;}
.ls17{letter-spacing:133.941333pt;}
.ls19{letter-spacing:135.861333pt;}
.ls1a{letter-spacing:139.061333pt;}
.ls1b{letter-spacing:140.346667pt;}
.ls4{letter-spacing:141.140864pt;}
.ls16{letter-spacing:144.826667pt;}
.ls12{letter-spacing:739.887531pt;}
.wsd{word-spacing:-17.359061pt;}
.ws9{word-spacing:-17.028427pt;}
.ws8{word-spacing:-16.109691pt;}
.ws2{word-spacing:-15.970667pt;}
.ws1{word-spacing:-15.918667pt;}
.ws0{word-spacing:-13.711701pt;}
.ws6{word-spacing:-13.344000pt;}
.ws10{word-spacing:-13.278667pt;}
.ws4{word-spacing:-13.189803pt;}
.wsf{word-spacing:-13.014848pt;}
.wsc{word-spacing:-12.765760pt;}
.wsa{word-spacing:-11.352779pt;}
.ws7{word-spacing:-10.666667pt;}
.ws5{word-spacing:-8.896000pt;}
.ws3{word-spacing:0.000000pt;}
.wse{word-spacing:149.014064pt;}
.wsb{word-spacing:178.932000pt;}
._0{margin-left:-1.123200pt;}
._1{width:0.898560pt;}
._2{width:2.087035pt;}
._d{width:3.213595pt;}
._c{width:4.131739pt;}
._e{width:5.030299pt;}
._13{width:6.153499pt;}
._3{width:7.258912pt;}
._8{width:8.532048pt;}
._14{width:9.657861pt;}
._b{width:10.660229pt;}
._a{width:11.581675pt;}
._7{width:13.520373pt;}
._6{width:14.638059pt;}
._29{width:17.121371pt;}
._4{width:19.413659pt;}
._5{width:20.694267pt;}
._26{width:22.215344pt;}
._10{width:24.794891pt;}
._f{width:25.957451pt;}
._9{width:27.111179pt;}
._12{width:31.342165pt;}
._11{width:32.466965pt;}
._24{width:40.399360pt;}
._1d{width:41.389227pt;}
._23{width:45.835947pt;}
._1e{width:47.690880pt;}
._22{width:54.723200pt;}
._1f{width:56.652800pt;}
._25{width:57.949867pt;}
._20{width:59.225600pt;}
._21{width:61.755520pt;}
._2c{width:141.177472pt;}
._2b{width:144.554667pt;}
._28{width:167.745595pt;}
._27{width:192.918443pt;}
._2f{width:201.977685pt;}
._17{width:220.695808pt;}
._2e{width:224.321536pt;}
._18{width:227.974827pt;}
._2d{width:228.879189pt;}
._1c{width:234.098176pt;}
._19{width:236.894549pt;}
._1a{width:239.475584pt;}
._1b{width:242.005333pt;}
._15{width:471.725568pt;}
._16{width:486.401408pt;}
._2a{width:735.535829pt;}
.fsb{font-size:20.416000pt;}
.fs10{font-size:20.810667pt;}
.fsd{font-size:25.504000pt;}
.fs8{font-size:32.000000pt;}
.fs11{font-size:36.442667pt;}
.fsc{font-size:40.837333pt;}
.fs5{font-size:42.666667pt;}
.fs9{font-size:42.879999pt;}
.fs6{font-size:42.880000pt;}
.fse{font-size:45.920000pt;}
.fs12{font-size:46.816000pt;}
.fs2{font-size:47.445332pt;}
.fs1{font-size:47.445333pt;}
.fs7{font-size:48.000000pt;}
.fs13{font-size:53.114667pt;}
.fsa{font-size:61.253333pt;}
.fsf{font-size:62.442667pt;}
.fs0{font-size:63.674667pt;}
.fs4{font-size:63.882667pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:1.068915pt;}
.y92{bottom:1.070209pt;}
.y36{bottom:2.302667pt;}
.y50{bottom:2.366200pt;}
.y54{bottom:2.368861pt;}
.y58{bottom:2.370180pt;}
.yaf{bottom:2.547132pt;}
.yb6{bottom:2.548758pt;}
.yb3{bottom:2.549007pt;}
.yb9{bottom:2.551165pt;}
.ybc{bottom:2.552249pt;}
.y6{bottom:2.556696pt;}
.y3{bottom:51.306667pt;}
.y5{bottom:51.950102pt;}
.y4{bottom:54.506800pt;}
.y6d{bottom:88.266667pt;}
.y34{bottom:94.986667pt;}
.y6c{bottom:106.666667pt;}
.y33{bottom:113.386667pt;}
.y6b{bottom:125.066667pt;}
.ybb{bottom:126.994680pt;}
.yba{bottom:129.546933pt;}
.y32{bottom:131.786667pt;}
.y6a{bottom:143.466667pt;}
.yb8{bottom:144.755496pt;}
.yb7{bottom:147.306667pt;}
.y31{bottom:150.186667pt;}
.y69{bottom:161.866667pt;}
.yb5{bottom:162.357903pt;}
.yb4{bottom:164.906667pt;}
.yb2{bottom:180.117653pt;}
.y68{bottom:180.266667pt;}
.yb1{bottom:182.666667pt;}
.y30{bottom:184.586667pt;}
.y67{bottom:198.666667pt;}
.yb0{bottom:200.426667pt;}
.y2f{bottom:202.986667pt;}
.yae{bottom:210.839527pt;}
.yad{bottom:213.386667pt;}
.y66{bottom:217.066667pt;}
.y2e{bottom:221.386667pt;}
.yac{bottom:223.946667pt;}
.y65{bottom:235.466667pt;}
.y2d{bottom:239.786667pt;}
.y64{bottom:253.866667pt;}
.yab{bottom:255.946667pt;}
.y2c{bottom:258.186667pt;}
.y63{bottom:272.266667pt;}
.y2b{bottom:276.586667pt;}
.yaa{bottom:286.826667pt;}
.y62{bottom:290.666667pt;}
.y2a{bottom:294.986667pt;}
.ya9{bottom:305.226667pt;}
.y61{bottom:309.066667pt;}
.y29{bottom:313.386667pt;}
.ya8{bottom:323.626667pt;}
.y60{bottom:327.466667pt;}
.ya7{bottom:342.026667pt;}
.y28{bottom:347.466667pt;}
.ya6{bottom:360.426667pt;}
.y5f{bottom:361.226667pt;}
.ya5{bottom:378.826667pt;}
.y27{bottom:382.186667pt;}
.y5e{bottom:382.986667pt;}
.ya4{bottom:397.226667pt;}
.y26{bottom:400.586667pt;}
.y5d{bottom:404.586667pt;}
.ya3{bottom:415.626667pt;}
.y25{bottom:418.986667pt;}
.y5c{bottom:426.346667pt;}
.ya2{bottom:434.026667pt;}
.y24{bottom:437.386667pt;}
.yd3{bottom:438.186667pt;}
.y5b{bottom:447.946667pt;}
.ya1{bottom:452.426667pt;}
.yd2{bottom:455.466667pt;}
.y23{bottom:455.786667pt;}
.yd1{bottom:468.906667pt;}
.y5a{bottom:469.706667pt;}
.ya0{bottom:470.826667pt;}
.y22{bottom:474.186667pt;}
.yd0{bottom:482.186667pt;}
.y57{bottom:488.616470pt;}
.y59{bottom:490.986667pt;}
.y56{bottom:491.306667pt;}
.y21{bottom:492.586667pt;}
.ycf{bottom:495.466667pt;}
.yce{bottom:508.906667pt;}
.y53{bottom:510.217788pt;}
.y20{bottom:510.986667pt;}
.y55{bottom:512.586667pt;}
.y52{bottom:512.906667pt;}
.y9f{bottom:519.946667pt;}
.ycd{bottom:522.186667pt;}
.y1f{bottom:529.386667pt;}
.y4f{bottom:531.980449pt;}
.y9e{bottom:533.866667pt;}
.y51{bottom:534.346667pt;}
.y4e{bottom:534.666667pt;}
.ycc{bottom:535.466667pt;}
.y1e{bottom:547.786667pt;}
.ycb{bottom:548.906667pt;}
.y4d{bottom:556.266667pt;}
.yca{bottom:562.186667pt;}
.y1d{bottom:566.186667pt;}
.yc9{bottom:575.466667pt;}
.y9d{bottom:576.906667pt;}
.y87{bottom:582.026667pt;}
.y1c{bottom:584.586667pt;}
.y4c{bottom:588.906667pt;}
.y71{bottom:589.386667pt;}
.y4b{bottom:595.786667pt;}
.yc8{bottom:602.186667pt;}
.y1b{bottom:602.986667pt;}
.y98{bottom:606.986667pt;}
.y82{bottom:608.266667pt;}
.y7e{bottom:614.346667pt;}
.y93{bottom:616.106667pt;}
.y73{bottom:620.586667pt;}
.y4a{bottom:621.226667pt;}
.y1a{bottom:621.386667pt;}
.y89{bottom:621.546667pt;}
.yc7{bottom:632.586667pt;}
.y49{bottom:635.146667pt;}
.y74{bottom:654.506667pt;}
.y19{bottom:655.466667pt;}
.y48{bottom:666.026667pt;}
.yc6{bottom:667.306667pt;}
.y94{bottom:668.746667pt;}
.y7f{bottom:670.826667pt;}
.y47{bottom:684.426667pt;}
.yc5{bottom:685.706667pt;}
.y75{bottom:687.466667pt;}
.y8a{bottom:688.426667pt;}
.y18{bottom:690.186667pt;}
.y46{bottom:702.826667pt;}
.yc4{bottom:704.106667pt;}
.y17{bottom:708.586667pt;}
.y88{bottom:714.826667pt;}
.y72{bottom:717.386667pt;}
.y76{bottom:718.346667pt;}
.y8b{bottom:719.306667pt;}
.y45{bottom:721.226667pt;}
.y95{bottom:721.386667pt;}
.yc3{bottom:722.506667pt;}
.y16{bottom:726.826667pt;}
.y80{bottom:727.306667pt;}
.y44{bottom:739.626667pt;}
.yc2{bottom:740.906667pt;}
.y15{bottom:745.226667pt;}
.y77{bottom:746.346667pt;}
.y8c{bottom:747.146667pt;}
.y43{bottom:758.026667pt;}
.yc1{bottom:759.306667pt;}
.y14{bottom:763.626667pt;}
.y9c{bottom:769.386667pt;}
.y78{bottom:770.506667pt;}
.y8d{bottom:771.146667pt;}
.y96{bottom:773.866667pt;}
.y42{bottom:776.426667pt;}
.yc0{bottom:777.706667pt;}
.y86{bottom:779.306667pt;}
.y13{bottom:782.026667pt;}
.y9b{bottom:783.626667pt;}
.y81{bottom:783.786667pt;}
.y79{bottom:790.026667pt;}
.y8e{bottom:790.666667pt;}
.y85{bottom:793.226667pt;}
.y41{bottom:794.826667pt;}
.y9a{bottom:797.866667pt;}
.y12{bottom:800.106667pt;}
.y7a{bottom:804.426667pt;}
.y8f{bottom:805.066667pt;}
.y84{bottom:807.146667pt;}
.ybf{bottom:811.786667pt;}
.y99{bottom:812.106667pt;}
.y40{bottom:813.226667pt;}
.y7b{bottom:813.386667pt;}
.y90{bottom:813.866667pt;}
.y7c{bottom:815.197724pt;}
.y91{bottom:815.836430pt;}
.y11{bottom:818.826667pt;}
.y83{bottom:821.066667pt;}
.y97{bottom:826.506667pt;}
.y3f{bottom:831.626667pt;}
.y10{bottom:837.226667pt;}
.ybe{bottom:846.506667pt;}
.yf{bottom:862.986667pt;}
.ybd{bottom:864.906667pt;}
.y3e{bottom:865.706667pt;}
.ye{bottom:881.386667pt;}
.y70{bottom:883.306667pt;}
.yd{bottom:892.426667pt;}
.y3d{bottom:900.426667pt;}
.y6f{bottom:901.706667pt;}
.yb{bottom:910.826667pt;}
.yc{bottom:918.186667pt;}
.y3b{bottom:918.826667pt;}
.y6e{bottom:920.106667pt;}
.y3c{bottom:926.186667pt;}
.ya{bottom:929.226667pt;}
.y3a{bottom:938.506667pt;}
.y9{bottom:947.946667pt;}
.y39{bottom:956.906667pt;}
.y8{bottom:969.386667pt;}
.y38{bottom:975.306667pt;}
.y7{bottom:990.826667pt;}
.y37{bottom:993.706667pt;}
.y2{bottom:1012.106667pt;}
.y1{bottom:1026.506667pt;}
.y35{bottom:1047.075846pt;}
.h13{height:5.759018pt;}
.h19{height:6.080371pt;}
.ha{height:11.733399pt;}
.he{height:12.000732pt;}
.h1e{height:13.279477pt;}
.h1f{height:13.280543pt;}
.h1d{height:13.280810pt;}
.h3{height:13.280943pt;}
.h12{height:21.293250pt;}
.h18{height:21.704875pt;}
.h15{height:26.599875pt;}
.h7{height:37.437500pt;}
.h1a{height:38.008562pt;}
.hc{height:39.718437pt;}
.h14{height:42.592062pt;}
.hb{height:42.958333pt;}
.hf{height:44.722498pt;}
.h10{height:44.722500pt;}
.h21{height:46.605008pt;}
.h20{height:46.734682pt;}
.h16{height:47.893125pt;}
.h1b{height:48.827625pt;}
.h4{height:49.483998pt;}
.h2{height:49.484000pt;}
.hd{height:50.062500pt;}
.h1{height:55.870789pt;}
.h9{height:56.026245pt;}
.h6{height:56.739536pt;}
.h11{height:63.885312pt;}
.h17{height:65.125750pt;}
.h5{height:66.507188pt;}
.h8{height:66.877500pt;}
.h1c{height:105.742500pt;}
.h0{height:1122.666667pt;}
.w1{width:0.160010pt;}
.w7{width:4.320264pt;}
.w8{width:4.480273pt;}
.w3{width:5.120312pt;}
.w4{width:5.120712pt;}
.w5{width:5.440332pt;}
.w6{width:6.240381pt;}
.w2{width:274.652000pt;}
.w0{width:793.333333pt;}
.x24{left:-4.647250pt;}
.x0{left:0.000000pt;}
.x2{left:83.172597pt;}
.x13{left:86.880267pt;}
.x7{left:88.959867pt;}
.x12{left:91.680267pt;}
.x19{left:101.919733pt;}
.x54{left:107.198925pt;}
.x5{left:108.161397pt;}
.x26{left:111.999925pt;}
.x3d{left:115.519733pt;}
.x25{left:117.600000pt;}
.xe{left:120.959867pt;}
.x3b{left:123.680267pt;}
.x27{left:125.600000pt;}
.x23{left:127.527512pt;}
.x50{left:132.319733pt;}
.x3f{left:133.600000pt;}
.x4{left:139.360000pt;}
.x22{left:156.958016pt;}
.x3e{left:166.410150pt;}
.xb{left:170.077938pt;}
.xa{left:175.997643pt;}
.x8{left:180.160000pt;}
.xf{left:184.800000pt;}
.x21{left:190.079424pt;}
.xd{left:191.520000pt;}
.x10{left:214.080000pt;}
.x16{left:218.240000pt;}
.x18{left:219.520000pt;}
.x20{left:221.279552pt;}
.x11{left:222.560000pt;}
.x9{left:224.464503pt;}
.x40{left:232.334172pt;}
.x6{left:247.996113pt;}
.x1f{left:249.280384pt;}
.xc{left:268.162205pt;}
.x1e{left:273.600384pt;}
.x3c{left:278.236810pt;}
.x1d{left:293.280128pt;}
.x17{left:294.880000pt;}
.x41{left:296.338076pt;}
.x1c{left:307.680000pt;}
.x28{left:310.720000pt;}
.x1b{left:316.640704pt;}
.x1a{left:322.880000pt;}
.x53{left:330.080000pt;}
.x51{left:332.800000pt;}
.x42{left:336.800000pt;}
.x29{left:348.480000pt;}
.x43{left:360.341980pt;}
.x3a{left:390.240369pt;}
.x44{left:396.800000pt;}
.x4d{left:400.800000pt;}
.x2b{left:409.120000pt;}
.x37{left:419.519541pt;}
.x45{left:424.345884pt;}
.x36{left:425.280000pt;}
.x38{left:432.640000pt;}
.x35{left:435.386557pt;}
.x34{left:465.445105pt;}
.x46{left:488.349788pt;}
.x33{left:499.204859pt;}
.x47{left:521.920000pt;}
.x52{left:525.920000pt;}
.x2a{left:529.120000pt;}
.x32{left:530.883049pt;}
.x48{left:549.473516pt;}
.x31{left:559.521573pt;}
.x30{left:584.320389pt;}
.x4e{left:587.200000pt;}
.x49{left:591.200000pt;}
.x2f{left:604.320180pt;}
.x4a{left:614.757498pt;}
.x14{left:615.877566pt;}
.x2e{left:619.039462pt;}
.x2d{left:628.159678pt;}
.x15{left:629.440000pt;}
.x2c{left:634.560000pt;}
.x4f{left:652.800000pt;}
.x4b{left:656.800000pt;}
.x39{left:660.640000pt;}
.x4c{left:680.361500pt;}
.x3{left:690.560000pt;}
.x1{left:710.720000pt;}
}

