
    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_dac432a58316d012c5979c34.woff')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_7075637bcc5095d47b495df9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_a1917193b2e60f79e1aaa742.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_91fbc8dbd9c3f83d03bd7a86.woff')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_027430b88f5ae1425b2cd864.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d85e795a16f13928046fd8a1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942000;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_1f1f446ede3065bf0dcac935.woff')format("woff");}.ff7{font-family:ff7;line-height:0.934000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3653a2f2187e1abfad3e6e84.woff')format("woff");}.ff8{font-family:ff8;line-height:0.942000;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_65903f5be5b020ee4e0b39b0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.933000;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_3463f352b9bc7815a8833920.woff')format("woff");}.ffa{font-family:ffa;line-height:0.711000;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_845bd0ae36de4a3f64d4cd5e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.932000;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_cb87c66f77f507921c0b7011.woff')format("woff");}.ffc{font-family:ffc;line-height:0.942000;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_ba7c1558d07d8d2d7408a7a8.woff')format("woff");}.ffd{font-family:ffd;line-height:0.973000;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_dae7d81774b6aff6238e3f34.woff')format("woff");}.ffe{font-family:ffe;line-height:0.924000;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_0ad615a07035aa78bf52de41.woff')format("woff");}.fff{font-family:fff;line-height:0.969000;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_47a4773351e0879a741e3aaa.woff')format("woff");}.ff10{font-family:ff10;line-height:0.935000;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_c1830f748ef978b1ba5fe476.woff')format("woff");}.ff11{font-family:ff11;line-height:0.953000;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);}
.m2{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,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;}
.ls8{letter-spacing:-1.197000px;}
.lsa{letter-spacing:-1.083000px;}
.ls9{letter-spacing:-0.945000px;}
.ls6{letter-spacing:-0.819000px;}
.ls4{letter-spacing:-0.630000px;}
.ls7{letter-spacing:-0.570000px;}
.ls2{letter-spacing:-0.540000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000015px;}
.ls5{letter-spacing:0.025200px;}
.ls3{letter-spacing:0.809989px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-28.080000px;}
.ws5{word-spacing:-14.427000px;}
.ws6{word-spacing:-14.301000px;}
.ws1{word-spacing:-13.986000px;}
.ws4{word-spacing:-13.671000px;}
.ws7{word-spacing:-13.482000px;}
.wsa{word-spacing:-13.104000px;}
.wsc{word-spacing:-12.939000px;}
.wsb{word-spacing:-11.856000px;}
.ws9{word-spacing:-11.172000px;}
.ws3{word-spacing:-8.903110px;}
.ws2{word-spacing:0.000000px;}
.wsd{word-spacing:1.482000px;}
.ws8{word-spacing:7.593000px;}
._1c{margin-left:-7.202929px;}
._1a{margin-left:-5.257800px;}
._2{margin-left:-4.140000px;}
._1{margin-left:-2.880000px;}
._0{margin-left:-1.800000px;}
._5{width:1.125600px;}
._4{width:2.520000px;}
._3{width:3.645600px;}
._9{width:4.853400px;}
._6{width:5.913600px;}
._18{width:7.022064px;}
._7{width:8.038800px;}
._e{width:9.361800px;}
._16{width:10.432800px;}
._8{width:11.718000px;}
._c{width:12.765600px;}
._13{width:14.137200px;}
._b{width:15.978600px;}
._10{width:17.253000px;}
._11{width:18.516600px;}
._17{width:20.334600px;}
._12{width:21.573000px;}
._1e{width:22.590000px;}
._a{width:23.900400px;}
._21{width:25.151400px;}
._f{width:26.838000px;}
._14{width:28.976400px;}
._15{width:30.061800px;}
._1d{width:32.054400px;}
._20{width:36.036000px;}
._1f{width:39.034800px;}
._d{width:40.705200px;}
._23{width:46.905300px;}
._22{width:71.782200px;}
._19{width:81.195173px;}
._1b{width:145.698457px;}
.fc2{color:rgb(1,1,129);}
.fc1{color:rgb(26,27,68);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.995200px;}
.fs8{font-size:41.995800px;}
.fsd{font-size:41.998800px;}
.fsa{font-size:44.999400px;}
.fsb{font-size:47.999400px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fsc{font-size:66.000600px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs0{font-size:90.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y15{bottom:67.597501px;}
.y49{bottom:72.963320px;}
.y14{bottom:84.097501px;}
.y48{bottom:84.953978px;}
.ye0{bottom:86.435869px;}
.y1fa{bottom:86.473350px;}
.y129{bottom:86.484900px;}
.y1a1{bottom:86.485500px;}
.y141{bottom:86.495250px;}
.y161{bottom:86.498400px;}
.y10c{bottom:86.500650px;}
.y1be{bottom:86.501550px;}
.y174{bottom:86.505450px;}
.y7a{bottom:86.509350px;}
.yba{bottom:86.509500px;}
.y1e3{bottom:86.514450px;}
.y178{bottom:86.578500px;}
.y23c{bottom:90.276000px;}
.y230{bottom:90.461250px;}
.ya8{bottom:95.790750px;}
.y47{bottom:96.944635px;}
.ydf{bottom:99.875701px;}
.y1f9{bottom:102.974850px;}
.y160{bottom:105.965400px;}
.y1a0{bottom:105.966750px;}
.y10b{bottom:105.967650px;}
.y1bd{bottom:105.968550px;}
.y173{bottom:105.972450px;}
.y140{bottom:105.974850px;}
.y79{bottom:105.976350px;}
.yb9{bottom:105.976500px;}
.y1e2{bottom:105.981450px;}
.y177{bottom:106.045500px;}
.y23b{bottom:106.777500px;}
.y22f{bottom:106.962750px;}
.y46{bottom:108.935293px;}
.yde{bottom:113.399532px;}
.ya7{bottom:115.257750px;}
.y1f8{bottom:119.476350px;}
.y45{bottom:120.925950px;}
.y23a{bottom:123.279000px;}
.y22e{bottom:123.464250px;}
.y172{bottom:125.439450px;}
.y19f{bottom:125.440050px;}
.y1e1{bottom:125.448450px;}
.y13f{bottom:125.452950px;}
.y10a{bottom:125.474100px;}
.y176{bottom:125.518800px;}
.y1bc{bottom:125.526900px;}
.y78{bottom:125.537850px;}
.y15f{bottom:125.541150px;}
.ydd{bottom:126.923362px;}
.yb8{bottom:134.468250px;}
.ya6{bottom:134.724750px;}
.y1f7{bottom:135.977850px;}
.y4a{bottom:137.083350px;}
.y239{bottom:139.780500px;}
.y22d{bottom:139.965750px;}
.ydc{bottom:140.447193px;}
.y171{bottom:144.906450px;}
.y19e{bottom:144.907050px;}
.y1e0{bottom:144.915450px;}
.y13e{bottom:144.919950px;}
.y109{bottom:144.941100px;}
.y175{bottom:144.992100px;}
.y77{bottom:145.004850px;}
.y15e{bottom:145.008150px;}
.y1bb{bottom:145.019100px;}
.ydb{bottom:153.887025px;}
.ya5{bottom:154.286250px;}
.y238{bottom:156.282000px;}
.y22c{bottom:156.467250px;}
.y1f6{bottom:162.169500px;}
.y170{bottom:164.467950px;}
.y76{bottom:164.471850px;}
.y15d{bottom:164.475150px;}
.y1df{bottom:164.476950px;}
.y13d{bottom:164.481450px;}
.y1ba{bottom:164.486100px;}
.y108{bottom:164.502600px;}
.yda{bottom:167.410856px;}
.y44{bottom:172.306200px;}
.yb7{bottom:172.315500px;}
.y237{bottom:172.783500px;}
.y22b{bottom:172.968750px;}
.ya4{bottom:173.753250px;}
.y19d{bottom:174.166322px;}
.y182{bottom:178.918500px;}
.yd9{bottom:180.934687px;}
.y16f{bottom:183.947400px;}
.y13c{bottom:183.948450px;}
.y1de{bottom:183.955050px;}
.y107{bottom:183.969600px;}
.y75{bottom:184.033350px;}
.y15c{bottom:184.039800px;}
.y1b9{bottom:184.047600px;}
.y236{bottom:189.285000px;}
.y22a{bottom:189.470250px;}
.yb6{bottom:191.782500px;}
.y43{bottom:191.867700px;}
.ya3{bottom:193.220250px;}
.y19c{bottom:193.719000px;}
.yd8{bottom:194.458518px;}
.y181{bottom:195.420000px;}
.y179{bottom:202.563000px;}
.y1dd{bottom:203.422050px;}
.y16e{bottom:203.425500px;}
.y13b{bottom:203.434350px;}
.y106{bottom:203.436600px;}
.y74{bottom:203.506800px;}
.y1b8{bottom:203.514600px;}
.y15b{bottom:203.517750px;}
.y235{bottom:205.786500px;}
.y229{bottom:205.971750px;}
.yd7{bottom:207.898350px;}
.y42{bottom:211.334700px;}
.yb5{bottom:211.344000px;}
.ya2{bottom:212.781750px;}
.y1f5{bottom:213.959700px;}
.yd6{bottom:221.422181px;}
.y234{bottom:222.288000px;}
.y228{bottom:222.454650px;}
.y1b7{bottom:222.981600px;}
.y1dc{bottom:222.983550px;}
.y73{bottom:222.984750px;}
.y16d{bottom:222.987000px;}
.y105{bottom:222.998100px;}
.y1f4{bottom:230.456700px;}
.y41{bottom:230.801700px;}
.yb4{bottom:230.811000px;}
.y13a{bottom:232.004850px;}
.ya1{bottom:232.248750px;}
.yd5{bottom:234.946012px;}
.y233{bottom:238.789500px;}
.y227{bottom:238.956150px;}
.y1db{bottom:242.450550px;}
.y72{bottom:242.451750px;}
.y16c{bottom:242.454000px;}
.y1b6{bottom:242.454900px;}
.y104{bottom:242.465100px;}
.y1f3{bottom:246.954000px;}
.y19b{bottom:247.106850px;}
.yd4{bottom:248.469843px;}
.yb3{bottom:250.278000px;}
.y40{bottom:250.363200px;}
.y139{bottom:251.471850px;}
.ya0{bottom:251.756700px;}
.y232{bottom:255.291000px;}
.y226{bottom:255.457650px;}
.yd3{bottom:261.909675px;}
.y16b{bottom:261.921000px;}
.y1da{bottom:261.923850px;}
.y103{bottom:261.932100px;}
.y71{bottom:262.013250px;}
.y1b5{bottom:262.021200px;}
.y15a{bottom:262.032150px;}
.y19a{bottom:266.573850px;}
.y3f{bottom:269.830200px;}
.yb2{bottom:269.839500px;}
.y9f{bottom:271.318200px;}
.y231{bottom:271.792500px;}
.y225{bottom:271.959150px;}
.y1f2{bottom:273.231000px;}
.yd2{bottom:275.433506px;}
.y70{bottom:281.491350px;}
.y102{bottom:281.493600px;}
.y159{bottom:281.499150px;}
.y128{bottom:281.502300px;}
.y1d9{bottom:281.529450px;}
.y199{bottom:286.040850px;}
.y224{bottom:288.294000px;}
.yd1{bottom:288.957337px;}
.y3e{bottom:289.303500px;}
.yb1{bottom:289.317450px;}
.y9e{bottom:290.785200px;}
.y16a{bottom:291.181322px;}
.y6f{bottom:300.958350px;}
.y101{bottom:300.960600px;}
.y158{bottom:300.966150px;}
.y127{bottom:300.969300px;}
.y1d8{bottom:300.996450px;}
.y13{bottom:301.276501px;}
.yd0{bottom:302.481168px;}
.y223{bottom:304.795500px;}
.y198{bottom:305.602350px;}
.yb0{bottom:308.784450px;}
.y9d{bottom:310.252200px;}
.y169{bottom:310.734000px;}
.ycf{bottom:315.921000px;}
.y3d{bottom:318.560823px;}
.y100{bottom:320.427600px;}
.y1d7{bottom:320.463450px;}
.y6e{bottom:320.519850px;}
.y157{bottom:320.527650px;}
.y126{bottom:320.530800px;}
.y222{bottom:321.297000px;}
.y1f1{bottom:324.924000px;}
.y197{bottom:325.069350px;}
.yaf{bottom:328.345950px;}
.y9c{bottom:329.719200px;}
.y221{bottom:337.798500px;}
.y3c{bottom:338.031000px;}
.y156{bottom:339.994650px;}
.y125{bottom:339.997800px;}
.y1b4{bottom:340.000950px;}
.y6d{bottom:340.023000px;}
.y1d6{bottom:340.024950px;}
.y1f0{bottom:341.425500px;}
.y196{bottom:344.536350px;}
.yae{bottom:347.812950px;}
.yff{bottom:348.919350px;}
.y9b{bottom:349.280700px;}
.yce{bottom:354.192750px;}
.y220{bottom:354.300000px;}
.y1ef{bottom:357.927000px;}
.y124{bottom:359.464800px;}
.y1b3{bottom:359.467950px;}
.y155{bottom:359.472750px;}
.y6c{bottom:359.490000px;}
.y1d5{bottom:359.491950px;}
.y195{bottom:364.003350px;}
.y12{bottom:365.626501px;}
.yad{bottom:367.294200px;}
.yfe{bottom:368.480850px;}
.y9a{bottom:368.747700px;}
.y21f{bottom:370.801500px;}
.ycd{bottom:373.666050px;}
.y1ee{bottom:374.428500px;}
.y1d4{bottom:378.958950px;}
.y123{bottom:379.026300px;}
.y154{bottom:379.034250px;}
.y6b{bottom:379.051500px;}
.y194{bottom:383.564850px;}
.yac{bottom:386.761200px;}
.y21e{bottom:387.388500px;}
.y99{bottom:388.214700px;}
.y38{bottom:391.036500px;}
.ycc{bottom:393.232350px;}
.y1d3{bottom:398.425950px;}
.y168{bottom:398.501250px;}
.y122{bottom:398.507550px;}
.y138{bottom:398.512200px;}
.y6a{bottom:398.518500px;}
.y153{bottom:398.534250px;}
.y1ed{bottom:400.705500px;}
.y193{bottom:403.031850px;}
.y21d{bottom:403.890000px;}
.y37{bottom:406.089000px;}
.y98{bottom:407.776200px;}
.ycb{bottom:412.699350px;}
.yab{bottom:415.338000px;}
.y167{bottom:417.971400px;}
.y121{bottom:417.974550px;}
.y137{bottom:417.979200px;}
.y69{bottom:417.985500px;}
.y1d2{bottom:417.987450px;}
.y152{bottom:418.001250px;}
.yfd{bottom:420.274800px;}
.y21c{bottom:420.391500px;}
.y36{bottom:421.060500px;}
.y192{bottom:422.498850px;}
.y97{bottom:427.243200px;}
.yca{bottom:432.201000px;}
.y11{bottom:432.907500px;}
.y35{bottom:436.113000px;}
.y21b{bottom:436.893000px;}
.y1d1{bottom:437.454450px;}
.y136{bottom:437.540700px;}
.y68{bottom:437.547000px;}
.y151{bottom:437.562750px;}
.y120{bottom:437.564400px;}
.yfc{bottom:439.836300px;}
.y191{bottom:442.060350px;}
.y96{bottom:446.716500px;}
.y34{bottom:451.084500px;}
.yc9{bottom:451.762500px;}
.y1ec{bottom:452.494500px;}
.y21a{bottom:453.394500px;}
.yaa{bottom:454.618500px;}
.y1d0{bottom:456.921450px;}
.y67{bottom:457.014000px;}
.y150{bottom:457.029750px;}
.y11f{bottom:457.031400px;}
.yfb{bottom:459.303300px;}
.y190{bottom:461.527350px;}
.y33{bottom:466.056000px;}
.y95{bottom:466.300050px;}
.y219{bottom:469.896000px;}
.yc8{bottom:471.229500px;}
.ya9{bottom:474.180000px;}
.y1cf{bottom:476.482950px;}
.y14f{bottom:476.496750px;}
.y11e{bottom:476.498400px;}
.y1b2{bottom:476.507850px;}
.y66{bottom:476.512500px;}
.y1eb{bottom:478.686000px;}
.yfa{bottom:478.773300px;}
.y18f{bottom:480.994350px;}
.y32{bottom:481.108500px;}
.y94{bottom:485.767050px;}
.y218{bottom:486.397500px;}
.yc7{bottom:490.696500px;}
.y10{bottom:494.326501px;}
.y1ce{bottom:495.957900px;}
.y14e{bottom:495.963750px;}
.y11d{bottom:495.965400px;}
.y1b1{bottom:495.974850px;}
.y65{bottom:495.979500px;}
.y31{bottom:496.080000px;}
.yf9{bottom:498.334800px;}
.y18e{bottom:500.555850px;}
.y217{bottom:502.899000px;}
.y93{bottom:505.234050px;}
.yc6{bottom:510.258000px;}
.y30{bottom:511.132500px;}
.y1cd{bottom:515.424900px;}
.y14d{bottom:515.525250px;}
.y11c{bottom:515.526900px;}
.y1b0{bottom:515.536350px;}
.y64{bottom:515.541000px;}
.yf8{bottom:517.809750px;}
.y216{bottom:519.400500px;}
.y18d{bottom:520.022850px;}
.y92{bottom:524.701050px;}
.y2f{bottom:526.104000px;}
.yc5{bottom:529.725000px;}
.y1ea{bottom:530.464500px;}
.ybb{bottom:532.686000px;}
.y14c{bottom:534.992250px;}
.y11b{bottom:534.993900px;}
.y1cc{bottom:534.997350px;}
.y1af{bottom:535.003350px;}
.y63{bottom:535.008000px;}
.y215{bottom:535.902000px;}
.yf7{bottom:537.287850px;}
.y18c{bottom:539.489850px;}
.y2e{bottom:541.075500px;}
.y91{bottom:544.262550px;}
.y1e9{bottom:546.966000px;}
.yc4{bottom:549.192000px;}
.y214{bottom:552.403500px;}
.y11a{bottom:554.459250px;}
.y135{bottom:554.460900px;}
.y1cb{bottom:554.464350px;}
.y1ae{bottom:554.470350px;}
.y62{bottom:554.475000px;}
.y2d{bottom:556.128000px;}
.yf6{bottom:556.754850px;}
.y18b{bottom:559.057650px;}
.yf{bottom:561.607500px;}
.y1e8{bottom:563.467500px;}
.y90{bottom:563.756250px;}
.yc3{bottom:568.659000px;}
.y213{bottom:568.905000px;}
.y2c{bottom:571.099500px;}
.y1ca{bottom:573.931350px;}
.y119{bottom:574.020750px;}
.y14b{bottom:574.027050px;}
.y1ad{bottom:574.031850px;}
.y61{bottom:574.036500px;}
.yf5{bottom:576.321000px;}
.y18a{bottom:578.524650px;}
.y1e7{bottom:579.969000px;}
.y8f{bottom:583.223250px;}
.y212{bottom:585.406500px;}
.y2b{bottom:586.152000px;}
.y1c9{bottom:593.401500px;}
.y14a{bottom:593.494050px;}
.y118{bottom:593.498850px;}
.y60{bottom:593.503500px;}
.yf4{bottom:595.811550px;}
.ye{bottom:595.957501px;}
.yc2{bottom:597.912000px;}
.y189{bottom:598.002600px;}
.y2a{bottom:601.123500px;}
.y211{bottom:601.908000px;}
.y8e{bottom:602.784750px;}
.y1e6{bottom:606.246000px;}
.yd{bottom:610.957501px;}
.y1c8{bottom:612.963000px;}
.y117{bottom:612.965850px;}
.y5f{bottom:612.970500px;}
.yf3{bottom:615.278550px;}
.y29{bottom:616.095000px;}
.y188{bottom:617.469600px;}
.y210{bottom:618.409500px;}
.y8d{bottom:622.251750px;}
.yc{bottom:625.957500px;}
.y28{bottom:631.147500px;}
.y116{bottom:632.527350px;}
.y5e{bottom:632.532000px;}
.y1ac{bottom:632.533650px;}
.y134{bottom:632.544600px;}
.yf2{bottom:634.840050px;}
.y20f{bottom:634.911000px;}
.y187{bottom:637.031100px;}
.y8c{bottom:641.718750px;}
.y1c7{bottom:642.220323px;}
.y27{bottom:646.119000px;}
.yc1{bottom:646.219050px;}
.y20e{bottom:651.412500px;}
.y1ab{bottom:652.000650px;}
.y5d{bottom:652.006950px;}
.y133{bottom:652.011600px;}
.y115{bottom:652.014750px;}
.yf1{bottom:654.307050px;}
.y186{bottom:656.515500px;}
.y26{bottom:661.090500px;}
.y8b{bottom:661.280250px;}
.y1c6{bottom:661.690500px;}
.y3b{bottom:665.598338px;}
.yc0{bottom:665.780550px;}
.y20d{bottom:667.914000px;}
.y1aa{bottom:671.473950px;}
.y132{bottom:671.478600px;}
.y5c{bottom:671.481750px;}
.y166{bottom:671.489700px;}
.yf0{bottom:673.774050px;}
.y185{bottom:675.982500px;}
.y25{bottom:676.143000px;}
.y3a{bottom:679.122169px;}
.y8a{bottom:680.747250px;}
.y20c{bottom:684.415500px;}
.ybf{bottom:685.247550px;}
.y131{bottom:690.945600px;}
.y5b{bottom:690.948750px;}
.y165{bottom:690.956700px;}
.y114{bottom:690.959850px;}
.y1a9{bottom:690.963000px;}
.y24{bottom:691.114500px;}
.y39{bottom:692.646000px;}
.yef{bottom:693.335550px;}
.y184{bottom:695.544000px;}
.y89{bottom:700.214250px;}
.y20b{bottom:700.917000px;}
.ybe{bottom:704.725500px;}
.y23{bottom:705.231000px;}
.yb{bottom:707.317498px;}
.y5a{bottom:710.507100px;}
.y164{bottom:710.518200px;}
.y113{bottom:710.521350px;}
.y1a8{bottom:710.524500px;}
.yee{bottom:712.802550px;}
.y183{bottom:715.011000px;}
.y20a{bottom:717.418500px;}
.y88{bottom:719.775750px;}
.ybd{bottom:724.192500px;}
.y180{bottom:727.433700px;}
.y163{bottom:729.985200px;}
.y59{bottom:729.988350px;}
.y1a7{bottom:729.991500px;}
.y1e5{bottom:730.002450px;}
.yed{bottom:732.286950px;}
.y209{bottom:733.920000px;}
.ya{bottom:737.317498px;}
.y87{bottom:739.255350px;}
.ybc{bottom:743.754000px;}
.y17f{bottom:746.900700px;}
.y20{bottom:748.767000px;}
.y22{bottom:748.771500px;}
.y149{bottom:749.452200px;}
.y58{bottom:749.455350px;}
.y1a6{bottom:749.458500px;}
.y1e4{bottom:749.469450px;}
.y208{bottom:750.421500px;}
.yec{bottom:751.753950px;}
.y21{bottom:754.725000px;}
.y9{bottom:755.317498px;}
.y86{bottom:758.749200px;}
.y1d{bottom:763.734000px;}
.y1f{bottom:763.738500px;}
.y17e{bottom:766.462200px;}
.y207{bottom:766.923000px;}
.y148{bottom:769.013700px;}
.y112{bottom:769.020000px;}
.y57{bottom:769.021500px;}
.y130{bottom:769.030950px;}
.y1e{bottom:769.776000px;}
.yeb{bottom:771.315450px;}
.y8{bottom:773.317498px;}
.y85{bottom:778.216200px;}
.y1c{bottom:778.705500px;}
.y206{bottom:783.424500px;}
.y1b{bottom:784.743000px;}
.y1a5{bottom:788.487000px;}
.y56{bottom:788.488500px;}
.y147{bottom:788.494800px;}
.y12f{bottom:788.497950px;}
.y111{bottom:788.505900px;}
.ye1{bottom:790.270500px;}
.yea{bottom:790.790400px;}
.y7{bottom:791.317498px;}
.y84{bottom:797.777700px;}
.y205{bottom:799.926000px;}
.y19{bottom:805.747500px;}
.y55{bottom:807.955500px;}
.y146{bottom:807.958650px;}
.y162{bottom:807.961800px;}
.y12e{bottom:807.964950px;}
.y110{bottom:807.972900px;}
.ye9{bottom:810.257400px;}
.y1a{bottom:812.721000px;}
.y204{bottom:816.427500px;}
.y83{bottom:817.244700px;}
.y145{bottom:827.520150px;}
.y12d{bottom:827.526450px;}
.y54{bottom:827.531250px;}
.y10f{bottom:827.534400px;}
.y17d{bottom:827.537400px;}
.y1c5{bottom:827.551650px;}
.ye8{bottom:829.821900px;}
.y203{bottom:832.929000px;}
.y18{bottom:835.000500px;}
.y82{bottom:836.711700px;}
.y6{bottom:843.789002px;}
.y144{bottom:846.993450px;}
.y53{bottom:846.998250px;}
.y10e{bottom:847.001400px;}
.y17c{bottom:847.004400px;}
.y12c{bottom:847.015500px;}
.y1c4{bottom:847.018650px;}
.ye7{bottom:849.288900px;}
.y202{bottom:849.430500px;}
.y1a3{bottom:850.984500px;}
.y81{bottom:856.273200px;}
.y17{bottom:858.982500px;}
.y201{bottom:865.932000px;}
.y52{bottom:866.465250px;}
.y1a4{bottom:866.468400px;}
.y143{bottom:866.471400px;}
.y12b{bottom:866.482500px;}
.y1c3{bottom:866.485650px;}
.y1a2{bottom:867.486000px;}
.ye6{bottom:868.767000px;}
.y80{bottom:875.740200px;}
.y200{bottom:882.433500px;}
.y16{bottom:882.964500px;}
.y51{bottom:886.026750px;}
.y142{bottom:886.032900px;}
.y12a{bottom:886.044000px;}
.y1c2{bottom:886.047150px;}
.ye5{bottom:888.328500px;}
.y7f{bottom:895.207200px;}
.y1ff{bottom:898.935000px;}
.y17b{bottom:905.499900px;}
.y10d{bottom:905.507850px;}
.y50{bottom:905.511000px;}
.y1c1{bottom:905.514150px;}
.y5{bottom:907.440000px;}
.ye4{bottom:907.795500px;}
.y7e{bottom:914.768700px;}
.y1fe{bottom:915.436500px;}
.y17a{bottom:924.974850px;}
.y4f{bottom:924.978000px;}
.y1c0{bottom:924.981150px;}
.y1fd{bottom:932.023500px;}
.y7d{bottom:934.242000px;}
.y4{bottom:938.940000px;}
.y4e{bottom:944.445000px;}
.y1bf{bottom:944.448150px;}
.ye3{bottom:947.506669px;}
.y1fc{bottom:948.525000px;}
.y4c{bottom:955.501680px;}
.ye2{bottom:961.030500px;}
.y7c{bottom:963.496500px;}
.y4d{bottom:964.006500px;}
.y1fb{bottom:965.026500px;}
.y4b{bottom:969.024000px;}
.y3{bottom:970.440000px;}
.y7b{bottom:1004.995500px;}
.y2{bottom:1035.546001px;}
.y1{bottom:1165.122003px;}
.hd{height:25.736568px;}
.h14{height:30.029142px;}
.hc{height:30.278972px;}
.hf{height:31.499580px;}
.h15{height:32.174571px;}
.h16{height:32.444567px;}
.h11{height:34.319571px;}
.h3{height:36.726562px;}
.he{height:38.610000px;}
.h10{height:38.934000px;}
.h22{height:40.584000px;}
.h18{height:40.755000px;}
.h1e{height:40.771800px;}
.h1d{height:40.772400px;}
.h21{height:40.807200px;}
.h1f{height:40.812000px;}
.h20{height:40.813200px;}
.h24{height:40.829400px;}
.h25{height:40.886400px;}
.h7{height:41.317383px;}
.h23{height:41.461800px;}
.h1b{height:44.604000px;}
.h17{height:44.730000px;}
.h13{height:45.108000px;}
.h1c{height:45.114000px;}
.h1a{height:45.114600px;}
.h19{height:45.120600px;}
.hb{height:45.423000px;}
.h6{height:45.908203px;}
.h12{height:47.586433px;}
.h5{height:55.089844px;}
.ha{height:60.564000px;}
.h2{height:68.862305px;}
.h4{height:82.620000px;}
.h8{height:1054.488000px;}
.h9{height:1054.500000px;}
.h1{height:1249.500000px;}
.h0{height:1249.560000px;}
.w3{width:739.500000px;}
.w2{width:739.842000px;}
.w0{width:951.480000px;}
.w1{width:951.750000px;}
.x0{left:0.000000px;}
.x6{left:89.971650px;}
.xc{left:94.563750px;}
.x16{left:99.751050px;}
.x18{left:105.019650px;}
.x13{left:108.000000px;}
.x2{left:145.650000px;}
.x1{left:191.880000px;}
.x3{left:197.700000px;}
.x11{left:205.881000px;}
.x12{left:211.068000px;}
.x5{left:234.608995px;}
.x7{left:244.828500px;}
.x8{left:250.525500px;}
.x17{left:282.841500px;}
.x15{left:288.793500px;}
.x4{left:293.590494px;}
.xf{left:381.316500px;}
.x10{left:385.398000px;}
.x9{left:436.507500px;}
.xa{left:447.987000px;}
.xd{left:461.253000px;}
.xe{left:466.525500px;}
.x14{left:514.828500px;}
.xb{left:578.523000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-1.064000pt;}
.lsa{letter-spacing:-0.962667pt;}
.ls9{letter-spacing:-0.840000pt;}
.ls6{letter-spacing:-0.728000pt;}
.ls4{letter-spacing:-0.560000pt;}
.ls7{letter-spacing:-0.506667pt;}
.ls2{letter-spacing:-0.480000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000013pt;}
.ls5{letter-spacing:0.022400pt;}
.ls3{letter-spacing:0.719990pt;}
.ws0{word-spacing:-24.960000pt;}
.ws5{word-spacing:-12.824000pt;}
.ws6{word-spacing:-12.712000pt;}
.ws1{word-spacing:-12.432000pt;}
.ws4{word-spacing:-12.152000pt;}
.ws7{word-spacing:-11.984000pt;}
.wsa{word-spacing:-11.648000pt;}
.wsc{word-spacing:-11.501333pt;}
.wsb{word-spacing:-10.538667pt;}
.ws9{word-spacing:-9.930667pt;}
.ws3{word-spacing:-7.913875pt;}
.ws2{word-spacing:0.000000pt;}
.wsd{word-spacing:1.317333pt;}
.ws8{word-spacing:6.749333pt;}
._1c{margin-left:-6.402604pt;}
._1a{margin-left:-4.673600pt;}
._2{margin-left:-3.680000pt;}
._1{margin-left:-2.560000pt;}
._0{margin-left:-1.600000pt;}
._5{width:1.000533pt;}
._4{width:2.240000pt;}
._3{width:3.240533pt;}
._9{width:4.314133pt;}
._6{width:5.256533pt;}
._18{width:6.241835pt;}
._7{width:7.145600pt;}
._e{width:8.321600pt;}
._16{width:9.273600pt;}
._8{width:10.416000pt;}
._c{width:11.347200pt;}
._13{width:12.566400pt;}
._b{width:14.203200pt;}
._10{width:15.336000pt;}
._11{width:16.459200pt;}
._17{width:18.075200pt;}
._12{width:19.176000pt;}
._1e{width:20.080000pt;}
._a{width:21.244800pt;}
._21{width:22.356800pt;}
._f{width:23.856000pt;}
._14{width:25.756800pt;}
._15{width:26.721600pt;}
._1d{width:28.492800pt;}
._20{width:32.032000pt;}
._1f{width:34.697600pt;}
._d{width:36.182400pt;}
._23{width:41.693600pt;}
._22{width:63.806400pt;}
._19{width:72.173487pt;}
._1b{width:129.509739pt;}
.fs9{font-size:31.995733pt;}
.fs8{font-size:37.329600pt;}
.fsd{font-size:37.332267pt;}
.fsa{font-size:39.999467pt;}
.fsb{font-size:42.666133pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fsc{font-size:58.667200pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs0{font-size:80.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:60.086668pt;}
.y49{bottom:64.856285pt;}
.y14{bottom:74.753335pt;}
.y48{bottom:75.514647pt;}
.ye0{bottom:76.831883pt;}
.y1fa{bottom:76.865200pt;}
.y129{bottom:76.875467pt;}
.y1a1{bottom:76.876000pt;}
.y141{bottom:76.884667pt;}
.y161{bottom:76.887467pt;}
.y10c{bottom:76.889467pt;}
.y1be{bottom:76.890267pt;}
.y174{bottom:76.893733pt;}
.y7a{bottom:76.897200pt;}
.yba{bottom:76.897333pt;}
.y1e3{bottom:76.901733pt;}
.y178{bottom:76.958667pt;}
.y23c{bottom:80.245333pt;}
.y230{bottom:80.410000pt;}
.ya8{bottom:85.147333pt;}
.y47{bottom:86.173009pt;}
.ydf{bottom:88.778401pt;}
.y1f9{bottom:91.533200pt;}
.y160{bottom:94.191467pt;}
.y1a0{bottom:94.192667pt;}
.y10b{bottom:94.193467pt;}
.y1bd{bottom:94.194267pt;}
.y173{bottom:94.197733pt;}
.y140{bottom:94.199867pt;}
.y79{bottom:94.201200pt;}
.yb9{bottom:94.201333pt;}
.y1e2{bottom:94.205733pt;}
.y177{bottom:94.262667pt;}
.y23b{bottom:94.913333pt;}
.y22f{bottom:95.078000pt;}
.y46{bottom:96.831371pt;}
.yde{bottom:100.799584pt;}
.ya7{bottom:102.451333pt;}
.y1f8{bottom:106.201200pt;}
.y45{bottom:107.489733pt;}
.y23a{bottom:109.581333pt;}
.y22e{bottom:109.746000pt;}
.y172{bottom:111.501733pt;}
.y19f{bottom:111.502267pt;}
.y1e1{bottom:111.509733pt;}
.y13f{bottom:111.513733pt;}
.y10a{bottom:111.532533pt;}
.y176{bottom:111.572267pt;}
.y1bc{bottom:111.579467pt;}
.y78{bottom:111.589200pt;}
.y15f{bottom:111.592133pt;}
.ydd{bottom:112.820767pt;}
.yb8{bottom:119.527333pt;}
.ya6{bottom:119.755333pt;}
.y1f7{bottom:120.869200pt;}
.y4a{bottom:121.851867pt;}
.y239{bottom:124.249333pt;}
.y22d{bottom:124.414000pt;}
.ydc{bottom:124.841950pt;}
.y171{bottom:128.805733pt;}
.y19e{bottom:128.806267pt;}
.y1e0{bottom:128.813733pt;}
.y13e{bottom:128.817733pt;}
.y109{bottom:128.836533pt;}
.y175{bottom:128.881867pt;}
.y77{bottom:128.893200pt;}
.y15e{bottom:128.896133pt;}
.y1bb{bottom:128.905867pt;}
.ydb{bottom:136.788467pt;}
.ya5{bottom:137.143333pt;}
.y238{bottom:138.917333pt;}
.y22c{bottom:139.082000pt;}
.y1f6{bottom:144.150667pt;}
.y170{bottom:146.193733pt;}
.y76{bottom:146.197200pt;}
.y15d{bottom:146.200133pt;}
.y1df{bottom:146.201733pt;}
.y13d{bottom:146.205733pt;}
.y1ba{bottom:146.209867pt;}
.y108{bottom:146.224533pt;}
.yda{bottom:148.809650pt;}
.y44{bottom:153.161067pt;}
.yb7{bottom:153.169333pt;}
.y237{bottom:153.585333pt;}
.y22b{bottom:153.750000pt;}
.ya4{bottom:154.447333pt;}
.y19d{bottom:154.814509pt;}
.y182{bottom:159.038667pt;}
.yd9{bottom:160.830833pt;}
.y16f{bottom:163.508800pt;}
.y13c{bottom:163.509733pt;}
.y1de{bottom:163.515600pt;}
.y107{bottom:163.528533pt;}
.y75{bottom:163.585200pt;}
.y15c{bottom:163.590933pt;}
.y1b9{bottom:163.597867pt;}
.y236{bottom:168.253333pt;}
.y22a{bottom:168.418000pt;}
.yb6{bottom:170.473333pt;}
.y43{bottom:170.549067pt;}
.ya3{bottom:171.751333pt;}
.y19c{bottom:172.194667pt;}
.yd8{bottom:172.852016pt;}
.y181{bottom:173.706667pt;}
.y179{bottom:180.056000pt;}
.y1dd{bottom:180.819600pt;}
.y16e{bottom:180.822667pt;}
.y13b{bottom:180.830533pt;}
.y106{bottom:180.832533pt;}
.y74{bottom:180.894933pt;}
.y1b8{bottom:180.901867pt;}
.y15b{bottom:180.904667pt;}
.y235{bottom:182.921333pt;}
.y229{bottom:183.086000pt;}
.yd7{bottom:184.798534pt;}
.y42{bottom:187.853067pt;}
.yb5{bottom:187.861333pt;}
.ya2{bottom:189.139333pt;}
.y1f5{bottom:190.186400pt;}
.yd6{bottom:196.819717pt;}
.y234{bottom:197.589333pt;}
.y228{bottom:197.737467pt;}
.y1b7{bottom:198.205867pt;}
.y1dc{bottom:198.207600pt;}
.y73{bottom:198.208667pt;}
.y16d{bottom:198.210667pt;}
.y105{bottom:198.220533pt;}
.y1f4{bottom:204.850400pt;}
.y41{bottom:205.157067pt;}
.yb4{bottom:205.165333pt;}
.y13a{bottom:206.226533pt;}
.ya1{bottom:206.443333pt;}
.yd5{bottom:208.840900pt;}
.y233{bottom:212.257333pt;}
.y227{bottom:212.405467pt;}
.y1db{bottom:215.511600pt;}
.y72{bottom:215.512667pt;}
.y16c{bottom:215.514667pt;}
.y1b6{bottom:215.515467pt;}
.y104{bottom:215.524533pt;}
.y1f3{bottom:219.514667pt;}
.y19b{bottom:219.650533pt;}
.yd4{bottom:220.862083pt;}
.yb3{bottom:222.469333pt;}
.y40{bottom:222.545067pt;}
.y139{bottom:223.530533pt;}
.ya0{bottom:223.783733pt;}
.y232{bottom:226.925333pt;}
.y226{bottom:227.073467pt;}
.yd3{bottom:232.808600pt;}
.y16b{bottom:232.818667pt;}
.y1da{bottom:232.821200pt;}
.y103{bottom:232.828533pt;}
.y71{bottom:232.900667pt;}
.y1b5{bottom:232.907733pt;}
.y15a{bottom:232.917467pt;}
.y19a{bottom:236.954533pt;}
.y3f{bottom:239.849067pt;}
.yb2{bottom:239.857333pt;}
.y9f{bottom:241.171733pt;}
.y231{bottom:241.593333pt;}
.y225{bottom:241.741467pt;}
.y1f2{bottom:242.872000pt;}
.yd2{bottom:244.829783pt;}
.y70{bottom:250.214533pt;}
.y102{bottom:250.216533pt;}
.y159{bottom:250.221467pt;}
.y128{bottom:250.224267pt;}
.y1d9{bottom:250.248400pt;}
.y199{bottom:254.258533pt;}
.y224{bottom:256.261333pt;}
.yd1{bottom:256.850966pt;}
.y3e{bottom:257.158667pt;}
.yb1{bottom:257.171067pt;}
.y9e{bottom:258.475733pt;}
.y16a{bottom:258.827842pt;}
.y6f{bottom:267.518533pt;}
.y101{bottom:267.520533pt;}
.y158{bottom:267.525467pt;}
.y127{bottom:267.528267pt;}
.y1d8{bottom:267.552400pt;}
.y13{bottom:267.801334pt;}
.yd0{bottom:268.872149pt;}
.y223{bottom:270.929333pt;}
.y198{bottom:271.646533pt;}
.yb0{bottom:274.475067pt;}
.y9d{bottom:275.779733pt;}
.y169{bottom:276.208000pt;}
.ycf{bottom:280.818667pt;}
.y3d{bottom:283.165176pt;}
.y100{bottom:284.824533pt;}
.y1d7{bottom:284.856400pt;}
.y6e{bottom:284.906533pt;}
.y157{bottom:284.913467pt;}
.y126{bottom:284.916267pt;}
.y222{bottom:285.597333pt;}
.y1f1{bottom:288.821333pt;}
.y197{bottom:288.950533pt;}
.yaf{bottom:291.863067pt;}
.y9c{bottom:293.083733pt;}
.y221{bottom:300.265333pt;}
.y3c{bottom:300.472000pt;}
.y156{bottom:302.217467pt;}
.y125{bottom:302.220267pt;}
.y1b4{bottom:302.223067pt;}
.y6d{bottom:302.242667pt;}
.y1d6{bottom:302.244400pt;}
.y1f0{bottom:303.489333pt;}
.y196{bottom:306.254533pt;}
.yae{bottom:309.167067pt;}
.yff{bottom:310.150533pt;}
.y9b{bottom:310.471733pt;}
.yce{bottom:314.838000pt;}
.y220{bottom:314.933333pt;}
.y1ef{bottom:318.157333pt;}
.y124{bottom:319.524267pt;}
.y1b3{bottom:319.527067pt;}
.y155{bottom:319.531333pt;}
.y6c{bottom:319.546667pt;}
.y1d5{bottom:319.548400pt;}
.y195{bottom:323.558533pt;}
.y12{bottom:325.001334pt;}
.yad{bottom:326.483733pt;}
.yfe{bottom:327.538533pt;}
.y9a{bottom:327.775733pt;}
.y21f{bottom:329.601333pt;}
.ycd{bottom:332.147600pt;}
.y1ee{bottom:332.825333pt;}
.y1d4{bottom:336.852400pt;}
.y123{bottom:336.912267pt;}
.y154{bottom:336.919333pt;}
.y6b{bottom:336.934667pt;}
.y194{bottom:340.946533pt;}
.yac{bottom:343.787733pt;}
.y21e{bottom:344.345333pt;}
.y99{bottom:345.079733pt;}
.y38{bottom:347.588000pt;}
.ycc{bottom:349.539867pt;}
.y1d3{bottom:354.156400pt;}
.y168{bottom:354.223333pt;}
.y122{bottom:354.228933pt;}
.y138{bottom:354.233067pt;}
.y6a{bottom:354.238667pt;}
.y153{bottom:354.252667pt;}
.y1ed{bottom:356.182667pt;}
.y193{bottom:358.250533pt;}
.y21d{bottom:359.013333pt;}
.y37{bottom:360.968000pt;}
.y98{bottom:362.467733pt;}
.ycb{bottom:366.843867pt;}
.yab{bottom:369.189333pt;}
.y167{bottom:371.530133pt;}
.y121{bottom:371.532933pt;}
.y137{bottom:371.537067pt;}
.y69{bottom:371.542667pt;}
.y1d2{bottom:371.544400pt;}
.y152{bottom:371.556667pt;}
.yfd{bottom:373.577600pt;}
.y21c{bottom:373.681333pt;}
.y36{bottom:374.276000pt;}
.y192{bottom:375.554533pt;}
.y97{bottom:379.771733pt;}
.yca{bottom:384.178667pt;}
.y11{bottom:384.806667pt;}
.y35{bottom:387.656000pt;}
.y21b{bottom:388.349333pt;}
.y1d1{bottom:388.848400pt;}
.y136{bottom:388.925067pt;}
.y68{bottom:388.930667pt;}
.y151{bottom:388.944667pt;}
.y120{bottom:388.946133pt;}
.yfc{bottom:390.965600pt;}
.y191{bottom:392.942533pt;}
.y96{bottom:397.081333pt;}
.y34{bottom:400.964000pt;}
.yc9{bottom:401.566667pt;}
.y1ec{bottom:402.217333pt;}
.y21a{bottom:403.017333pt;}
.yaa{bottom:404.105333pt;}
.y1d0{bottom:406.152400pt;}
.y67{bottom:406.234667pt;}
.y150{bottom:406.248667pt;}
.y11f{bottom:406.250133pt;}
.yfb{bottom:408.269600pt;}
.y190{bottom:410.246533pt;}
.y33{bottom:414.272000pt;}
.y95{bottom:414.488933pt;}
.y219{bottom:417.685333pt;}
.yc8{bottom:418.870667pt;}
.ya9{bottom:421.493333pt;}
.y1cf{bottom:423.540400pt;}
.y14f{bottom:423.552667pt;}
.y11e{bottom:423.554133pt;}
.y1b2{bottom:423.562533pt;}
.y66{bottom:423.566667pt;}
.y1eb{bottom:425.498667pt;}
.yfa{bottom:425.576267pt;}
.y18f{bottom:427.550533pt;}
.y32{bottom:427.652000pt;}
.y94{bottom:431.792933pt;}
.y218{bottom:432.353333pt;}
.yc7{bottom:436.174667pt;}
.y10{bottom:439.401334pt;}
.y1ce{bottom:440.851467pt;}
.y14e{bottom:440.856667pt;}
.y11d{bottom:440.858133pt;}
.y1b1{bottom:440.866533pt;}
.y65{bottom:440.870667pt;}
.y31{bottom:440.960000pt;}
.yf9{bottom:442.964267pt;}
.y18e{bottom:444.938533pt;}
.y217{bottom:447.021333pt;}
.y93{bottom:449.096933pt;}
.yc6{bottom:453.562667pt;}
.y30{bottom:454.340000pt;}
.y1cd{bottom:458.155467pt;}
.y14d{bottom:458.244667pt;}
.y11c{bottom:458.246133pt;}
.y1b0{bottom:458.254533pt;}
.y64{bottom:458.258667pt;}
.yf8{bottom:460.275333pt;}
.y216{bottom:461.689333pt;}
.y18d{bottom:462.242533pt;}
.y92{bottom:466.400933pt;}
.y2f{bottom:467.648000pt;}
.yc5{bottom:470.866667pt;}
.y1ea{bottom:471.524000pt;}
.ybb{bottom:473.498667pt;}
.y14c{bottom:475.548667pt;}
.y11b{bottom:475.550133pt;}
.y1cc{bottom:475.553200pt;}
.y1af{bottom:475.558533pt;}
.y63{bottom:475.562667pt;}
.y215{bottom:476.357333pt;}
.yf7{bottom:477.589200pt;}
.y18c{bottom:479.546533pt;}
.y2e{bottom:480.956000pt;}
.y91{bottom:483.788933pt;}
.y1e9{bottom:486.192000pt;}
.yc4{bottom:488.170667pt;}
.y214{bottom:491.025333pt;}
.y11a{bottom:492.852667pt;}
.y135{bottom:492.854133pt;}
.y1cb{bottom:492.857200pt;}
.y1ae{bottom:492.862533pt;}
.y62{bottom:492.866667pt;}
.y2d{bottom:494.336000pt;}
.yf6{bottom:494.893200pt;}
.y18b{bottom:496.940133pt;}
.yf{bottom:499.206667pt;}
.y1e8{bottom:500.860000pt;}
.y90{bottom:501.116667pt;}
.yc3{bottom:505.474667pt;}
.y213{bottom:505.693333pt;}
.y2c{bottom:507.644000pt;}
.y1ca{bottom:510.161200pt;}
.y119{bottom:510.240667pt;}
.y14b{bottom:510.246267pt;}
.y1ad{bottom:510.250533pt;}
.y61{bottom:510.254667pt;}
.yf5{bottom:512.285333pt;}
.y18a{bottom:514.244133pt;}
.y1e7{bottom:515.528000pt;}
.y8f{bottom:518.420667pt;}
.y212{bottom:520.361333pt;}
.y2b{bottom:521.024000pt;}
.y1c9{bottom:527.468000pt;}
.y14a{bottom:527.550267pt;}
.y118{bottom:527.554533pt;}
.y60{bottom:527.558667pt;}
.yf4{bottom:529.610267pt;}
.ye{bottom:529.740001pt;}
.yc2{bottom:531.477333pt;}
.y189{bottom:531.557867pt;}
.y2a{bottom:534.332000pt;}
.y211{bottom:535.029333pt;}
.y8e{bottom:535.808667pt;}
.y1e6{bottom:538.885333pt;}
.yd{bottom:543.073335pt;}
.y1c8{bottom:544.856000pt;}
.y117{bottom:544.858533pt;}
.y5f{bottom:544.862667pt;}
.yf3{bottom:546.914267pt;}
.y29{bottom:547.640000pt;}
.y188{bottom:548.861867pt;}
.y210{bottom:549.697333pt;}
.y8d{bottom:553.112667pt;}
.yc{bottom:556.406667pt;}
.y28{bottom:561.020000pt;}
.y116{bottom:562.246533pt;}
.y5e{bottom:562.250667pt;}
.y1ac{bottom:562.252133pt;}
.y134{bottom:562.261867pt;}
.yf2{bottom:564.302267pt;}
.y20f{bottom:564.365333pt;}
.y187{bottom:566.249867pt;}
.y8c{bottom:570.416667pt;}
.y1c7{bottom:570.862509pt;}
.y27{bottom:574.328000pt;}
.yc1{bottom:574.416933pt;}
.y20e{bottom:579.033333pt;}
.y1ab{bottom:579.556133pt;}
.y5d{bottom:579.561733pt;}
.y133{bottom:579.565867pt;}
.y115{bottom:579.568667pt;}
.yf1{bottom:581.606267pt;}
.y186{bottom:583.569333pt;}
.y26{bottom:587.636000pt;}
.y8b{bottom:587.804667pt;}
.y1c6{bottom:588.169333pt;}
.y3b{bottom:591.642967pt;}
.yc0{bottom:591.804933pt;}
.y20d{bottom:593.701333pt;}
.y1aa{bottom:596.865733pt;}
.y132{bottom:596.869867pt;}
.y5c{bottom:596.872667pt;}
.y166{bottom:596.879733pt;}
.yf0{bottom:598.910267pt;}
.y185{bottom:600.873333pt;}
.y25{bottom:601.016000pt;}
.y3a{bottom:603.664150pt;}
.y8a{bottom:605.108667pt;}
.y20c{bottom:608.369333pt;}
.ybf{bottom:609.108933pt;}
.y131{bottom:614.173867pt;}
.y5b{bottom:614.176667pt;}
.y165{bottom:614.183733pt;}
.y114{bottom:614.186533pt;}
.y1a9{bottom:614.189333pt;}
.y24{bottom:614.324000pt;}
.y39{bottom:615.685333pt;}
.yef{bottom:616.298267pt;}
.y184{bottom:618.261333pt;}
.y89{bottom:622.412667pt;}
.y20b{bottom:623.037333pt;}
.ybe{bottom:626.422667pt;}
.y23{bottom:626.872000pt;}
.yb{bottom:628.726665pt;}
.y5a{bottom:631.561867pt;}
.y164{bottom:631.571733pt;}
.y113{bottom:631.574533pt;}
.y1a8{bottom:631.577333pt;}
.yee{bottom:633.602267pt;}
.y183{bottom:635.565333pt;}
.y20a{bottom:637.705333pt;}
.y88{bottom:639.800667pt;}
.ybd{bottom:643.726667pt;}
.y180{bottom:646.607733pt;}
.y163{bottom:648.875733pt;}
.y59{bottom:648.878533pt;}
.y1a7{bottom:648.881333pt;}
.y1e5{bottom:648.891067pt;}
.yed{bottom:650.921733pt;}
.y209{bottom:652.373333pt;}
.ya{bottom:655.393332pt;}
.y87{bottom:657.115867pt;}
.ybc{bottom:661.114667pt;}
.y17f{bottom:663.911733pt;}
.y20{bottom:665.570667pt;}
.y22{bottom:665.574667pt;}
.y149{bottom:666.179733pt;}
.y58{bottom:666.182533pt;}
.y1a6{bottom:666.185333pt;}
.y1e4{bottom:666.195067pt;}
.y208{bottom:667.041333pt;}
.yec{bottom:668.225733pt;}
.y21{bottom:670.866667pt;}
.y9{bottom:671.393332pt;}
.y86{bottom:674.443733pt;}
.y1d{bottom:678.874667pt;}
.y1f{bottom:678.878667pt;}
.y17e{bottom:681.299733pt;}
.y207{bottom:681.709333pt;}
.y148{bottom:683.567733pt;}
.y112{bottom:683.573333pt;}
.y57{bottom:683.574667pt;}
.y130{bottom:683.583067pt;}
.y1e{bottom:684.245333pt;}
.yeb{bottom:685.613733pt;}
.y8{bottom:687.393332pt;}
.y85{bottom:691.747733pt;}
.y1c{bottom:692.182667pt;}
.y206{bottom:696.377333pt;}
.y1b{bottom:697.549333pt;}
.y1a5{bottom:700.877333pt;}
.y56{bottom:700.878667pt;}
.y147{bottom:700.884267pt;}
.y12f{bottom:700.887067pt;}
.y111{bottom:700.894133pt;}
.ye1{bottom:702.462667pt;}
.yea{bottom:702.924800pt;}
.y7{bottom:703.393332pt;}
.y84{bottom:709.135733pt;}
.y205{bottom:711.045333pt;}
.y19{bottom:716.220000pt;}
.y55{bottom:718.182667pt;}
.y146{bottom:718.185467pt;}
.y162{bottom:718.188267pt;}
.y12e{bottom:718.191067pt;}
.y110{bottom:718.198133pt;}
.ye9{bottom:720.228800pt;}
.y1a{bottom:722.418667pt;}
.y204{bottom:725.713333pt;}
.y83{bottom:726.439733pt;}
.y145{bottom:735.573467pt;}
.y12d{bottom:735.579067pt;}
.y54{bottom:735.583333pt;}
.y10f{bottom:735.586133pt;}
.y17d{bottom:735.588800pt;}
.y1c5{bottom:735.601467pt;}
.ye8{bottom:737.619467pt;}
.y203{bottom:740.381333pt;}
.y18{bottom:742.222667pt;}
.y82{bottom:743.743733pt;}
.y6{bottom:750.034669pt;}
.y144{bottom:752.883067pt;}
.y53{bottom:752.887333pt;}
.y10e{bottom:752.890133pt;}
.y17c{bottom:752.892800pt;}
.y12c{bottom:752.902667pt;}
.y1c4{bottom:752.905467pt;}
.ye7{bottom:754.923467pt;}
.y202{bottom:755.049333pt;}
.y1a3{bottom:756.430667pt;}
.y81{bottom:761.131733pt;}
.y17{bottom:763.540000pt;}
.y201{bottom:769.717333pt;}
.y52{bottom:770.191333pt;}
.y1a4{bottom:770.194133pt;}
.y143{bottom:770.196800pt;}
.y12b{bottom:770.206667pt;}
.y1c3{bottom:770.209467pt;}
.y1a2{bottom:771.098667pt;}
.ye6{bottom:772.237333pt;}
.y80{bottom:778.435733pt;}
.y200{bottom:784.385333pt;}
.y16{bottom:784.857333pt;}
.y51{bottom:787.579333pt;}
.y142{bottom:787.584800pt;}
.y12a{bottom:787.594667pt;}
.y1c2{bottom:787.597467pt;}
.ye5{bottom:789.625333pt;}
.y7f{bottom:795.739733pt;}
.y1ff{bottom:799.053333pt;}
.y17b{bottom:804.888800pt;}
.y10d{bottom:804.895867pt;}
.y50{bottom:804.898667pt;}
.y1c1{bottom:804.901467pt;}
.y5{bottom:806.613333pt;}
.ye4{bottom:806.929333pt;}
.y7e{bottom:813.127733pt;}
.y1fe{bottom:813.721333pt;}
.y17a{bottom:822.199867pt;}
.y4f{bottom:822.202667pt;}
.y1c0{bottom:822.205467pt;}
.y1fd{bottom:828.465333pt;}
.y7d{bottom:830.437333pt;}
.y4{bottom:834.613333pt;}
.y4e{bottom:839.506667pt;}
.y1bf{bottom:839.509467pt;}
.ye3{bottom:842.228150pt;}
.y1fc{bottom:843.133333pt;}
.y4c{bottom:849.334827pt;}
.ye2{bottom:854.249333pt;}
.y7c{bottom:856.441333pt;}
.y4d{bottom:856.894667pt;}
.y1fb{bottom:857.801333pt;}
.y4b{bottom:861.354667pt;}
.y3{bottom:862.613333pt;}
.y7b{bottom:893.329333pt;}
.y2{bottom:920.485335pt;}
.y1{bottom:1035.664002pt;}
.hd{height:22.876949pt;}
.h14{height:26.692571pt;}
.hc{height:26.914642pt;}
.hf{height:27.999627pt;}
.h15{height:28.599619pt;}
.h16{height:28.839615pt;}
.h11{height:30.506285pt;}
.h3{height:32.645833pt;}
.he{height:34.320000pt;}
.h10{height:34.608000pt;}
.h22{height:36.074667pt;}
.h18{height:36.226667pt;}
.h1e{height:36.241600pt;}
.h1d{height:36.242133pt;}
.h21{height:36.273067pt;}
.h1f{height:36.277333pt;}
.h20{height:36.278400pt;}
.h24{height:36.292800pt;}
.h25{height:36.343467pt;}
.h7{height:36.726562pt;}
.h23{height:36.854933pt;}
.h1b{height:39.648000pt;}
.h17{height:39.760000pt;}
.h13{height:40.096000pt;}
.h1c{height:40.101333pt;}
.h1a{height:40.101867pt;}
.h19{height:40.107200pt;}
.hb{height:40.376000pt;}
.h6{height:40.807292pt;}
.h12{height:42.299051pt;}
.h5{height:48.968750pt;}
.ha{height:53.834667pt;}
.h2{height:61.210938pt;}
.h4{height:73.440000pt;}
.h8{height:937.322667pt;}
.h9{height:937.333333pt;}
.h1{height:1110.666667pt;}
.h0{height:1110.720000pt;}
.w3{width:657.333333pt;}
.w2{width:657.637333pt;}
.w0{width:845.760000pt;}
.w1{width:846.000000pt;}
.x0{left:0.000000pt;}
.x6{left:79.974800pt;}
.xc{left:84.056667pt;}
.x16{left:88.667600pt;}
.x18{left:93.350800pt;}
.x13{left:96.000000pt;}
.x2{left:129.466667pt;}
.x1{left:170.560000pt;}
.x3{left:175.733333pt;}
.x11{left:183.005333pt;}
.x12{left:187.616000pt;}
.x5{left:208.541329pt;}
.x7{left:217.625333pt;}
.x8{left:222.689333pt;}
.x17{left:251.414667pt;}
.x15{left:256.705333pt;}
.x4{left:260.969328pt;}
.xf{left:338.948000pt;}
.x10{left:342.576000pt;}
.x9{left:388.006667pt;}
.xa{left:398.210667pt;}
.xd{left:410.002667pt;}
.xe{left:414.689333pt;}
.x14{left:457.625333pt;}
.xb{left:514.242667pt;}
}

