
    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_edd075715f660db1a9f08ceb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_ea432513042307a973837680.woff')format("woff");}.ff2{font-family:ff2;line-height:1.401855;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_40a1e6ae73fbb3cf531e3a81.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_56912eeab300bc385f2d9be1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_9180000c3abb228012c436fe.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_1243e7f3c7816e66afd3151f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_e215c4b2ca298a75c5e85eac.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_919e42c9752eaee6c2dbfbd7.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_2c8b9ab9012041a9a479d320.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_0de34b66ba25b768ccb5631d.woff')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.lse{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.460200px;}
.ls4{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.106560px;}
.ls3{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.792000px;}
.ls7{letter-spacing:2.160000px;}
.ls6{letter-spacing:3.780000px;}
.lsc{letter-spacing:4.500000px;}
.ls13{letter-spacing:6.660000px;}
.ls11{letter-spacing:7.380000px;}
.ls14{letter-spacing:10.980000px;}
.lsd{letter-spacing:11.700000px;}
.lsb{letter-spacing:64.200000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-71.712000px;}
.ws7{word-spacing:-18.792000px;}
.wsa{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws0{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.ws8{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
._15{margin-left:-2.304000px;}
._1{margin-left:-1.258560px;}
._0{width:1.026000px;}
._2{width:2.712000px;}
._5{width:4.392000px;}
._6{width:5.472000px;}
._a{width:6.510000px;}
._8{width:7.714560px;}
._7{width:8.832000px;}
._9{width:9.900000px;}
._c{width:11.194560px;}
._b{width:12.240000px;}
._3{width:14.040000px;}
._4{width:15.606000px;}
._10{width:16.647120px;}
._d{width:19.042560px;}
._11{width:20.088000px;}
._12{width:21.240000px;}
._14{width:22.260000px;}
._16{width:24.180000px;}
._1b{width:25.791120px;}
._f{width:27.072000px;}
._13{width:28.314240px;}
._17{width:29.357760px;}
._1e{width:33.840000px;}
._1a{width:35.784000px;}
._1c{width:44.064000px;}
._1d{width:45.144000px;}
._e{width:83.736000px;}
._18{width:181.336560px;}
._19{width:194.376000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:66.384000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.570000px;}
.y5{bottom:5.580000px;}
.yb6{bottom:7.200000px;}
.yb8{bottom:13.140000px;}
.yd1{bottom:13.485000px;}
.yd7{bottom:13.486500px;}
.yba{bottom:13.500000px;}
.yd5{bottom:13.665000px;}
.yc2{bottom:13.680000px;}
.ybd{bottom:16.020000px;}
.y4{bottom:26.316000px;}
.y3{bottom:46.296000px;}
.y2a{bottom:98.856000px;}
.y7{bottom:99.900000px;}
.y6c{bottom:105.696000px;}
.y29{bottom:115.956000px;}
.yd8{bottom:116.856000px;}
.y47{bottom:122.796000px;}
.y28{bottom:133.236000px;}
.y46{bottom:133.956000px;}
.y27{bottom:140.076000px;}
.yd6{bottom:140.983500px;}
.y66{bottom:142.236000px;}
.y5e{bottom:150.510000px;}
.y26{bottom:151.230000px;}
.y65{bottom:154.650000px;}
.y5d{bottom:157.350000px;}
.y5c{bottom:167.790000px;}
.y6b{bottom:168.510000px;}
.yd4{bottom:170.145000px;}
.yae{bottom:174.630000px;}
.y100{bottom:181.110000px;}
.y109{bottom:182.370000px;}
.y118{bottom:184.170000px;}
.y5b{bottom:185.070000px;}
.yad{bottom:185.790000px;}
.y45{bottom:189.030000px;}
.y92{bottom:191.910000px;}
.y25{bottom:194.070000px;}
.y64{bottom:197.130000px;}
.yf5{bottom:198.210000px;}
.yd3{bottom:199.485000px;}
.y5a{bottom:202.350000px;}
.y91{bottom:203.070000px;}
.yb4{bottom:209.190000px;}
.y24{bottom:211.350000px;}
.y108{bottom:213.330000px;}
.y116{bottom:215.130000px;}
.y59{bottom:219.450000px;}
.y44{bottom:220.170000px;}
.y114{bottom:220.350000px;}
.y117{bottom:223.410000px;}
.y63{bottom:228.270000px;}
.y23{bottom:228.450000px;}
.yd2{bottom:228.645000px;}
.yf4{bottom:229.350000px;}
.yff{bottom:233.130000px;}
.y58{bottom:236.730000px;}
.yb3{bottom:243.570000px;}
.y107{bottom:244.470000px;}
.y8f{bottom:246.270000px;}
.y77{bottom:249.330000px;}
.y43{bottom:251.130000px;}
.y57{bottom:254.010000px;}
.y90{bottom:254.550000px;}
.yb2{bottom:254.730000px;}
.yd0{bottom:257.805000px;}
.y62{bottom:259.230000px;}
.yf3{bottom:260.310000px;}
.y56{bottom:260.850000px;}
.y115{bottom:263.910000px;}
.y9c{bottom:264.270000px;}
.yac{bottom:267.510000px;}
.y55{bottom:272.010000px;}
.y22{bottom:275.070000px;}
.y106{bottom:275.430000px;}
.y8e{bottom:277.230000px;}
.y75{bottom:280.335000px;}
.y42{bottom:282.315000px;}
.ycf{bottom:287.175000px;}
.y76{bottom:288.615000px;}
.y61{bottom:290.415000px;}
.y6a{bottom:290.595000px;}
.yf2{bottom:291.495000px;}
.y9b{bottom:295.275000px;}
.y105{bottom:306.615000px;}
.y8d{bottom:308.415000px;}
.y74{bottom:311.475000px;}
.y41{bottom:313.275000px;}
.yce{bottom:316.335000px;}
.yab{bottom:321.375000px;}
.y21{bottom:324.075000px;}
.y54{bottom:326.055000px;}
.y9a{bottom:326.415000px;}
.yfe{bottom:331.275000px;}
.y60{bottom:339.015000px;}
.y8c{bottom:339.375000px;}
.yf1{bottom:340.455000px;}
.y73{bottom:342.435000px;}
.y40{bottom:344.415000px;}
.ycd{bottom:345.495000px;}
.y104{bottom:351.255000px;}
.yaa{bottom:352.515000px;}
.y99{bottom:357.375000px;}
.yfd{bottom:362.415000px;}
.y8b{bottom:370.515000px;}
.yf0{bottom:371.595000px;}
.y20{bottom:373.215000px;}
.y72{bottom:373.575000px;}
.ycc{bottom:374.655000px;}
.y53{bottom:375.375000px;}
.ya9{bottom:383.475000px;}
.y69{bottom:383.655000px;}
.y5f{bottom:384.195000px;}
.y98{bottom:388.515000px;}
.y3f{bottom:393.375000px;}
.y89{bottom:401.475000px;}
.yef{bottom:402.555000px;}
.ycb{bottom:403.995000px;}
.y1f{bottom:404.175000px;}
.y71{bottom:404.535000px;}
.y52{bottom:406.515000px;}
.y8a{bottom:409.755000px;}
.ya8{bottom:414.615000px;}
.yb1{bottom:414.795000px;}
.y97{bottom:419.475000px;}
.y3e{bottom:424.515000px;}
.yca{bottom:433.155000px;}
.yee{bottom:433.695000px;}
.y1e{bottom:435.315000px;}
.y51{bottom:437.475000px;}
.ya7{bottom:445.575000px;}
.y87{bottom:450.615000px;}
.y70{bottom:451.155000px;}
.y3d{bottom:455.475000px;}
.y88{bottom:458.895000px;}
.yc9{bottom:462.315000px;}
.yed{bottom:464.655000px;}
.y1d{bottom:466.275000px;}
.y50{bottom:468.615000px;}
.ya6{bottom:476.715000px;}
.y113{bottom:476.895000px;}
.y86{bottom:481.575000px;}
.y3c{bottom:486.615000px;}
.yc8{bottom:491.475000px;}
.yb0{bottom:494.895000px;}
.yec{bottom:495.795000px;}
.y1c{bottom:497.415000px;}
.y68{bottom:499.575000px;}
.ya5{bottom:507.675000px;}
.y119{bottom:507.855000px;}
.y84{bottom:512.715000px;}
.y3b{bottom:517.575000px;}
.yc7{bottom:520.815000px;}
.y85{bottom:520.995000px;}
.yea{bottom:526.755000px;}
.y1b{bottom:528.375000px;}
.y112{bottom:530.715000px;}
.yeb{bottom:535.035000px;}
.yfb{bottom:535.575000px;}
.ya4{bottom:538.815000px;}
.y83{bottom:543.705000px;}
.yfc{bottom:543.885000px;}
.y3a{bottom:548.745000px;}
.yc6{bottom:550.005000px;}
.y67{bottom:557.025000px;}
.ye8{bottom:557.925000px;}
.y111{bottom:561.705000px;}
.ye9{bottom:566.205000px;}
.yfa{bottom:566.745000px;}
.y82{bottom:574.845000px;}
.y1a{bottom:577.545000px;}
.yc5{bottom:579.165000px;}
.y39{bottom:579.705000px;}
.ya2{bottom:587.805000px;}
.ye7{bottom:588.885000px;}
.y110{bottom:592.845000px;}
.ya3{bottom:596.085000px;}
.yf9{bottom:597.705000px;}
.y81{bottom:605.805000px;}
.y19{bottom:608.505000px;}
.y38{bottom:610.845000px;}
.y96{bottom:614.085000px;}
.ya1{bottom:618.945000px;}
.ye6{bottom:620.025000px;}
.y10f{bottom:623.805000px;}
.yf8{bottom:628.845000px;}
.y80{bottom:636.945000px;}
.yc4{bottom:637.665000px;}
.y18{bottom:639.645000px;}
.y37{bottom:641.805000px;}
.ye5{bottom:650.985000px;}
.y95{bottom:654.585000px;}
.y10d{bottom:654.945000px;}
.y4f{bottom:659.805000px;}
.y10e{bottom:663.225000px;}
.yc3{bottom:666.825000px;}
.y7f{bottom:667.905000px;}
.y17{bottom:670.605000px;}
.y36{bottom:672.945000px;}
.ya0{bottom:676.185000px;}
.ye4{bottom:682.125000px;}
.y10c{bottom:685.905000px;}
.y4e{bottom:690.945000px;}
.yc1{bottom:695.985000px;}
.y9f{bottom:699.045000px;}
.y16{bottom:701.745000px;}
.y35{bottom:703.905000px;}
.y94{bottom:712.185000px;}
.ye3{bottom:713.085000px;}
.y7e{bottom:717.045000px;}
.y4c{bottom:721.905000px;}
.yc0{bottom:725.325000px;}
.y4d{bottom:730.185000px;}
.y15{bottom:732.705000px;}
.y33{bottom:735.045000px;}
.y34{bottom:743.325000px;}
.ye2{bottom:744.225000px;}
.y7d{bottom:748.005000px;}
.y4b{bottom:753.045000px;}
.ybf{bottom:754.485000px;}
.y9e{bottom:756.285000px;}
.yf7{bottom:761.325000px;}
.y32{bottom:766.005000px;}
.ye0{bottom:775.185000px;}
.y7c{bottom:779.145000px;}
.y14{bottom:781.845000px;}
.ye1{bottom:783.465000px;}
.ybe{bottom:783.645000px;}
.y4a{bottom:784.005000px;}
.y31{bottom:797.145000px;}
.ydf{bottom:806.370000px;}
.y7b{bottom:810.150000px;}
.ybc{bottom:813.030000px;}
.y49{bottom:815.190000px;}
.y13{bottom:820.410000px;}
.y93{bottom:828.150000px;}
.y9d{bottom:836.430000px;}
.y12{bottom:841.110000px;}
.y10b{bottom:841.290000px;}
.ybb{bottom:844.890000px;}
.y30{bottom:846.150000px;}
.y6e{bottom:851.010000px;}
.yde{bottom:855.330000px;}
.y7a{bottom:859.290000px;}
.y6f{bottom:860.730000px;}
.ydd{bottom:872.430000px;}
.yb9{bottom:874.050000px;}
.y2f{bottom:877.290000px;}
.y6d{bottom:887.190000px;}
.y11{bottom:889.890000px;}
.y79{bottom:890.250000px;}
.ydc{bottom:901.770000px;}
.yb7{bottom:903.210000px;}
.y2e{bottom:908.250000px;}
.yaf{bottom:916.530000px;}
.y10{bottom:921.030000px;}
.y78{bottom:921.390000px;}
.ydb{bottom:930.930000px;}
.yb5{bottom:932.370000px;}
.y2d{bottom:939.390000px;}
.y10a{bottom:947.670000px;}
.yda{bottom:960.090000px;}
.y102{bottom:962.070000px;}
.ye{bottom:969.990000px;}
.y2c{bottom:970.350000px;}
.y103{bottom:971.790000px;}
.yf{bottom:978.270000px;}
.yf6{bottom:978.630000px;}
.yd9{bottom:989.250000px;}
.y101{bottom:998.430000px;}
.yd{bottom:1001.130000px;}
.y2b{bottom:1001.490000px;}
.y48{bottom:1009.770000px;}
.y6{bottom:1034.100000px;}
.yb{bottom:1058.190000px;}
.ya{bottom:1077.120000px;}
.y9{bottom:1096.020000px;}
.y2{bottom:1098.000000px;}
.y8{bottom:1114.920000px;}
.y1{bottom:1118.700000px;}
.h14{height:22.485000px;}
.h15{height:28.425000px;}
.h1e{height:28.432500px;}
.h19{height:28.440000px;}
.h1d{height:28.461000px;}
.h18{height:28.462500px;}
.h1b{height:28.470000px;}
.h1c{height:28.605000px;}
.h1a{height:28.620000px;}
.h17{height:30.945000px;}
.hd{height:38.158594px;}
.h20{height:47.321367px;}
.he{height:47.344922px;}
.ha{height:48.616875px;}
.h10{height:53.573906px;}
.h12{height:54.421875px;}
.h2{height:58.651172px;}
.hc{height:60.226875px;}
.hf{height:64.546875px;}
.h16{height:65.010937px;}
.h4{height:66.757500px;}
.h5{height:69.086250px;}
.h6{height:69.236437px;}
.hb{height:70.628906px;}
.h1{height:70.664062px;}
.h8{height:72.562500px;}
.h7{height:74.004654px;}
.h1f{height:80.464922px;}
.h13{height:82.676953px;}
.h11{height:84.898125px;}
.h3{height:113.400000px;}
.h9{height:1187.997990px;}
.h0{height:1188.000000px;}
.w5{width:157.140000px;}
.w7{width:159.135000px;}
.w6{width:161.130000px;}
.w4{width:190.279500px;}
.w1{width:605.340000px;}
.w3{width:668.790000px;}
.w2{width:917.998125px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4f{left:4.849500px;}
.x6{left:10.830000px;}
.x4e{left:34.905000px;}
.x4c{left:40.860000px;}
.x4d{left:46.290000px;}
.x4a{left:66.223500px;}
.x1{left:127.656000px;}
.x2f{left:131.434125px;}
.xe{left:132.516000px;}
.xa{left:134.676000px;}
.x27{left:137.376000px;}
.x30{left:141.156000px;}
.x35{left:154.650000px;}
.x7{left:180.030000px;}
.x41{left:208.108125px;}
.x22{left:215.850000px;}
.x42{left:220.350000px;}
.x3e{left:233.128125px;}
.x33{left:245.728125px;}
.x34{left:257.970000px;}
.x3{left:261.360000px;}
.x5{left:272.190000px;}
.x17{left:274.890000px;}
.x37{left:284.250000px;}
.x50{left:292.168125px;}
.x1d{left:297.568125px;}
.x1e{left:303.735000px;}
.x60{left:304.815000px;}
.x3a{left:317.053125px;}
.x4b{left:319.035000px;}
.x3b{left:329.295000px;}
.x49{left:334.288500px;}
.xd{left:343.695000px;}
.x4{left:349.305000px;}
.x1b{left:356.113125px;}
.x1c{left:362.235000px;}
.x2a{left:366.193125px;}
.x2b{left:378.435000px;}
.xf{left:387.253125px;}
.x10{left:393.375000px;}
.x3f{left:396.253125px;}
.x40{left:408.495000px;}
.x21{left:412.275000px;}
.x16{left:418.935000px;}
.x43{left:430.093125px;}
.x46{left:438.555000px;}
.x44{left:442.335000px;}
.x38{left:453.133125px;}
.x15{left:459.075000px;}
.xc{left:464.295000px;}
.x39{left:465.375000px;}
.x59{left:470.053125px;}
.x2e{left:477.435000px;}
.x5a{left:482.295000px;}
.x36{left:487.693125px;}
.x1f{left:499.963125px;}
.x20{left:506.085000px;}
.x61{left:512.923125px;}
.x62{left:525.165000px;}
.x56{left:534.523125px;}
.x53{left:547.483125px;}
.x51{left:553.603125px;}
.x2c{left:559.723125px;}
.x13{left:562.243125px;}
.x52{left:565.845000px;}
.x14{left:568.365000px;}
.x2d{left:571.965000px;}
.x11{left:573.583125px;}
.x12{left:579.705000px;}
.x28{left:587.083125px;}
.x29{left:599.325000px;}
.xb{left:621.465000px;}
.x57{left:631.543125px;}
.x5d{left:634.963125px;}
.x18{left:637.123125px;}
.x19{left:643.245000px;}
.x58{left:645.225000px;}
.x5e{left:647.205000px;}
.x45{left:656.385000px;}
.x31{left:667.543125px;}
.x5b{left:672.583125px;}
.x32{left:679.785000px;}
.x5c{left:684.825000px;}
.x54{left:690.223125px;}
.x25{left:691.665000px;}
.x23{left:695.443125px;}
.x24{left:702.330000px;}
.x26{left:714.030000px;}
.x5f{left:720.148125px;}
.x55{left:729.508125px;}
.x8{left:731.848125px;}
.x9{left:737.970000px;}
.x47{left:742.288125px;}
.x48{left:754.530000px;}
.x2{left:768.030000px;}
.x63{left:773.968125px;}
.x3c{left:778.288125px;}
.x1a{left:784.770000px;}
.x64{left:786.210000px;}
.x3d{left:790.530000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.lse{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.409067pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.094720pt;}
.ls3{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.704000pt;}
.ls7{letter-spacing:1.920000pt;}
.ls6{letter-spacing:3.360000pt;}
.lsc{letter-spacing:4.000000pt;}
.ls13{letter-spacing:5.920000pt;}
.ls11{letter-spacing:6.560000pt;}
.ls14{letter-spacing:9.760000pt;}
.lsd{letter-spacing:10.400000pt;}
.lsb{letter-spacing:57.066667pt;}
.ws3{word-spacing:-63.744000pt;}
.ws7{word-spacing:-16.704000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
._15{margin-left:-2.048000pt;}
._1{margin-left:-1.118720pt;}
._0{width:0.912000pt;}
._2{width:2.410667pt;}
._5{width:3.904000pt;}
._6{width:4.864000pt;}
._a{width:5.786667pt;}
._8{width:6.857387pt;}
._7{width:7.850667pt;}
._9{width:8.800000pt;}
._c{width:9.950720pt;}
._b{width:10.880000pt;}
._3{width:12.480000pt;}
._4{width:13.872000pt;}
._10{width:14.797440pt;}
._d{width:16.926720pt;}
._11{width:17.856000pt;}
._12{width:18.880000pt;}
._14{width:19.786667pt;}
._16{width:21.493333pt;}
._1b{width:22.925440pt;}
._f{width:24.064000pt;}
._13{width:25.168213pt;}
._17{width:26.095787pt;}
._1e{width:30.080000pt;}
._1a{width:31.808000pt;}
._1c{width:39.168000pt;}
._1d{width:40.128000pt;}
._e{width:74.432000pt;}
._18{width:161.188053pt;}
._19{width:172.778667pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:59.008000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.173333pt;}
.y5{bottom:4.960000pt;}
.yb6{bottom:6.400000pt;}
.yb8{bottom:11.680000pt;}
.yd1{bottom:11.986667pt;}
.yd7{bottom:11.988000pt;}
.yba{bottom:12.000000pt;}
.yd5{bottom:12.146667pt;}
.yc2{bottom:12.160000pt;}
.ybd{bottom:14.240000pt;}
.y4{bottom:23.392000pt;}
.y3{bottom:41.152000pt;}
.y2a{bottom:87.872000pt;}
.y7{bottom:88.800000pt;}
.y6c{bottom:93.952000pt;}
.y29{bottom:103.072000pt;}
.yd8{bottom:103.872000pt;}
.y47{bottom:109.152000pt;}
.y28{bottom:118.432000pt;}
.y46{bottom:119.072000pt;}
.y27{bottom:124.512000pt;}
.yd6{bottom:125.318667pt;}
.y66{bottom:126.432000pt;}
.y5e{bottom:133.786667pt;}
.y26{bottom:134.426667pt;}
.y65{bottom:137.466667pt;}
.y5d{bottom:139.866667pt;}
.y5c{bottom:149.146667pt;}
.y6b{bottom:149.786667pt;}
.yd4{bottom:151.240000pt;}
.yae{bottom:155.226667pt;}
.y100{bottom:160.986667pt;}
.y109{bottom:162.106667pt;}
.y118{bottom:163.706667pt;}
.y5b{bottom:164.506667pt;}
.yad{bottom:165.146667pt;}
.y45{bottom:168.026667pt;}
.y92{bottom:170.586667pt;}
.y25{bottom:172.506667pt;}
.y64{bottom:175.226667pt;}
.yf5{bottom:176.186667pt;}
.yd3{bottom:177.320000pt;}
.y5a{bottom:179.866667pt;}
.y91{bottom:180.506667pt;}
.yb4{bottom:185.946667pt;}
.y24{bottom:187.866667pt;}
.y108{bottom:189.626667pt;}
.y116{bottom:191.226667pt;}
.y59{bottom:195.066667pt;}
.y44{bottom:195.706667pt;}
.y114{bottom:195.866667pt;}
.y117{bottom:198.586667pt;}
.y63{bottom:202.906667pt;}
.y23{bottom:203.066667pt;}
.yd2{bottom:203.240000pt;}
.yf4{bottom:203.866667pt;}
.yff{bottom:207.226667pt;}
.y58{bottom:210.426667pt;}
.yb3{bottom:216.506667pt;}
.y107{bottom:217.306667pt;}
.y8f{bottom:218.906667pt;}
.y77{bottom:221.626667pt;}
.y43{bottom:223.226667pt;}
.y57{bottom:225.786667pt;}
.y90{bottom:226.266667pt;}
.yb2{bottom:226.426667pt;}
.yd0{bottom:229.160000pt;}
.y62{bottom:230.426667pt;}
.yf3{bottom:231.386667pt;}
.y56{bottom:231.866667pt;}
.y115{bottom:234.586667pt;}
.y9c{bottom:234.906667pt;}
.yac{bottom:237.786667pt;}
.y55{bottom:241.786667pt;}
.y22{bottom:244.506667pt;}
.y106{bottom:244.826667pt;}
.y8e{bottom:246.426667pt;}
.y75{bottom:249.186667pt;}
.y42{bottom:250.946667pt;}
.ycf{bottom:255.266667pt;}
.y76{bottom:256.546667pt;}
.y61{bottom:258.146667pt;}
.y6a{bottom:258.306667pt;}
.yf2{bottom:259.106667pt;}
.y9b{bottom:262.466667pt;}
.y105{bottom:272.546667pt;}
.y8d{bottom:274.146667pt;}
.y74{bottom:276.866667pt;}
.y41{bottom:278.466667pt;}
.yce{bottom:281.186667pt;}
.yab{bottom:285.666667pt;}
.y21{bottom:288.066667pt;}
.y54{bottom:289.826667pt;}
.y9a{bottom:290.146667pt;}
.yfe{bottom:294.466667pt;}
.y60{bottom:301.346667pt;}
.y8c{bottom:301.666667pt;}
.yf1{bottom:302.626667pt;}
.y73{bottom:304.386667pt;}
.y40{bottom:306.146667pt;}
.ycd{bottom:307.106667pt;}
.y104{bottom:312.226667pt;}
.yaa{bottom:313.346667pt;}
.y99{bottom:317.666667pt;}
.yfd{bottom:322.146667pt;}
.y8b{bottom:329.346667pt;}
.yf0{bottom:330.306667pt;}
.y20{bottom:331.746667pt;}
.y72{bottom:332.066667pt;}
.ycc{bottom:333.026667pt;}
.y53{bottom:333.666667pt;}
.ya9{bottom:340.866667pt;}
.y69{bottom:341.026667pt;}
.y5f{bottom:341.506667pt;}
.y98{bottom:345.346667pt;}
.y3f{bottom:349.666667pt;}
.y89{bottom:356.866667pt;}
.yef{bottom:357.826667pt;}
.ycb{bottom:359.106667pt;}
.y1f{bottom:359.266667pt;}
.y71{bottom:359.586667pt;}
.y52{bottom:361.346667pt;}
.y8a{bottom:364.226667pt;}
.ya8{bottom:368.546667pt;}
.yb1{bottom:368.706667pt;}
.y97{bottom:372.866667pt;}
.y3e{bottom:377.346667pt;}
.yca{bottom:385.026667pt;}
.yee{bottom:385.506667pt;}
.y1e{bottom:386.946667pt;}
.y51{bottom:388.866667pt;}
.ya7{bottom:396.066667pt;}
.y87{bottom:400.546667pt;}
.y70{bottom:401.026667pt;}
.y3d{bottom:404.866667pt;}
.y88{bottom:407.906667pt;}
.yc9{bottom:410.946667pt;}
.yed{bottom:413.026667pt;}
.y1d{bottom:414.466667pt;}
.y50{bottom:416.546667pt;}
.ya6{bottom:423.746667pt;}
.y113{bottom:423.906667pt;}
.y86{bottom:428.066667pt;}
.y3c{bottom:432.546667pt;}
.yc8{bottom:436.866667pt;}
.yb0{bottom:439.906667pt;}
.yec{bottom:440.706667pt;}
.y1c{bottom:442.146667pt;}
.y68{bottom:444.066667pt;}
.ya5{bottom:451.266667pt;}
.y119{bottom:451.426667pt;}
.y84{bottom:455.746667pt;}
.y3b{bottom:460.066667pt;}
.yc7{bottom:462.946667pt;}
.y85{bottom:463.106667pt;}
.yea{bottom:468.226667pt;}
.y1b{bottom:469.666667pt;}
.y112{bottom:471.746667pt;}
.yeb{bottom:475.586667pt;}
.yfb{bottom:476.066667pt;}
.ya4{bottom:478.946667pt;}
.y83{bottom:483.293333pt;}
.yfc{bottom:483.453333pt;}
.y3a{bottom:487.773333pt;}
.yc6{bottom:488.893333pt;}
.y67{bottom:495.133333pt;}
.ye8{bottom:495.933333pt;}
.y111{bottom:499.293333pt;}
.ye9{bottom:503.293333pt;}
.yfa{bottom:503.773333pt;}
.y82{bottom:510.973333pt;}
.y1a{bottom:513.373333pt;}
.yc5{bottom:514.813333pt;}
.y39{bottom:515.293333pt;}
.ya2{bottom:522.493333pt;}
.ye7{bottom:523.453333pt;}
.y110{bottom:526.973333pt;}
.ya3{bottom:529.853333pt;}
.yf9{bottom:531.293333pt;}
.y81{bottom:538.493333pt;}
.y19{bottom:540.893333pt;}
.y38{bottom:542.973333pt;}
.y96{bottom:545.853333pt;}
.ya1{bottom:550.173333pt;}
.ye6{bottom:551.133333pt;}
.y10f{bottom:554.493333pt;}
.yf8{bottom:558.973333pt;}
.y80{bottom:566.173333pt;}
.yc4{bottom:566.813333pt;}
.y18{bottom:568.573333pt;}
.y37{bottom:570.493333pt;}
.ye5{bottom:578.653333pt;}
.y95{bottom:581.853333pt;}
.y10d{bottom:582.173333pt;}
.y4f{bottom:586.493333pt;}
.y10e{bottom:589.533333pt;}
.yc3{bottom:592.733333pt;}
.y7f{bottom:593.693333pt;}
.y17{bottom:596.093333pt;}
.y36{bottom:598.173333pt;}
.ya0{bottom:601.053333pt;}
.ye4{bottom:606.333333pt;}
.y10c{bottom:609.693333pt;}
.y4e{bottom:614.173333pt;}
.yc1{bottom:618.653333pt;}
.y9f{bottom:621.373333pt;}
.y16{bottom:623.773333pt;}
.y35{bottom:625.693333pt;}
.y94{bottom:633.053333pt;}
.ye3{bottom:633.853333pt;}
.y7e{bottom:637.373333pt;}
.y4c{bottom:641.693333pt;}
.yc0{bottom:644.733333pt;}
.y4d{bottom:649.053333pt;}
.y15{bottom:651.293333pt;}
.y33{bottom:653.373333pt;}
.y34{bottom:660.733333pt;}
.ye2{bottom:661.533333pt;}
.y7d{bottom:664.893333pt;}
.y4b{bottom:669.373333pt;}
.ybf{bottom:670.653333pt;}
.y9e{bottom:672.253333pt;}
.yf7{bottom:676.733333pt;}
.y32{bottom:680.893333pt;}
.ye0{bottom:689.053333pt;}
.y7c{bottom:692.573333pt;}
.y14{bottom:694.973333pt;}
.ye1{bottom:696.413333pt;}
.ybe{bottom:696.573333pt;}
.y4a{bottom:696.893333pt;}
.y31{bottom:708.573333pt;}
.ydf{bottom:716.773333pt;}
.y7b{bottom:720.133333pt;}
.ybc{bottom:722.693333pt;}
.y49{bottom:724.613333pt;}
.y13{bottom:729.253333pt;}
.y93{bottom:736.133333pt;}
.y9d{bottom:743.493333pt;}
.y12{bottom:747.653333pt;}
.y10b{bottom:747.813333pt;}
.ybb{bottom:751.013333pt;}
.y30{bottom:752.133333pt;}
.y6e{bottom:756.453333pt;}
.yde{bottom:760.293333pt;}
.y7a{bottom:763.813333pt;}
.y6f{bottom:765.093333pt;}
.ydd{bottom:775.493333pt;}
.yb9{bottom:776.933333pt;}
.y2f{bottom:779.813333pt;}
.y6d{bottom:788.613333pt;}
.y11{bottom:791.013333pt;}
.y79{bottom:791.333333pt;}
.ydc{bottom:801.573333pt;}
.yb7{bottom:802.853333pt;}
.y2e{bottom:807.333333pt;}
.yaf{bottom:814.693333pt;}
.y10{bottom:818.693333pt;}
.y78{bottom:819.013333pt;}
.ydb{bottom:827.493333pt;}
.yb5{bottom:828.773333pt;}
.y2d{bottom:835.013333pt;}
.y10a{bottom:842.373333pt;}
.yda{bottom:853.413333pt;}
.y102{bottom:855.173333pt;}
.ye{bottom:862.213333pt;}
.y2c{bottom:862.533333pt;}
.y103{bottom:863.813333pt;}
.yf{bottom:869.573333pt;}
.yf6{bottom:869.893333pt;}
.yd9{bottom:879.333333pt;}
.y101{bottom:887.493333pt;}
.yd{bottom:889.893333pt;}
.y2b{bottom:890.213333pt;}
.y48{bottom:897.573333pt;}
.y6{bottom:919.200000pt;}
.yb{bottom:940.613333pt;}
.ya{bottom:957.440000pt;}
.y9{bottom:974.240000pt;}
.y2{bottom:976.000000pt;}
.y8{bottom:991.040000pt;}
.y1{bottom:994.400000pt;}
.h14{height:19.986667pt;}
.h15{height:25.266667pt;}
.h1e{height:25.273333pt;}
.h19{height:25.280000pt;}
.h1d{height:25.298667pt;}
.h18{height:25.300000pt;}
.h1b{height:25.306667pt;}
.h1c{height:25.426667pt;}
.h1a{height:25.440000pt;}
.h17{height:27.506667pt;}
.hd{height:33.918750pt;}
.h20{height:42.063437pt;}
.he{height:42.084375pt;}
.ha{height:43.215000pt;}
.h10{height:47.621250pt;}
.h12{height:48.375000pt;}
.h2{height:52.134375pt;}
.hc{height:53.535000pt;}
.hf{height:57.375000pt;}
.h16{height:57.787500pt;}
.h4{height:59.340000pt;}
.h5{height:61.410000pt;}
.h6{height:61.543500pt;}
.hb{height:62.781250pt;}
.h1{height:62.812500pt;}
.h8{height:64.500000pt;}
.h7{height:65.781915pt;}
.h1f{height:71.524375pt;}
.h13{height:73.490625pt;}
.h11{height:75.465000pt;}
.h3{height:100.800000pt;}
.h9{height:1055.998213pt;}
.h0{height:1056.000000pt;}
.w5{width:139.680000pt;}
.w7{width:141.453333pt;}
.w6{width:143.226667pt;}
.w4{width:169.137333pt;}
.w1{width:538.080000pt;}
.w3{width:594.480000pt;}
.w2{width:815.998333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4f{left:4.310667pt;}
.x6{left:9.626667pt;}
.x4e{left:31.026667pt;}
.x4c{left:36.320000pt;}
.x4d{left:41.146667pt;}
.x4a{left:58.865333pt;}
.x1{left:113.472000pt;}
.x2f{left:116.830333pt;}
.xe{left:117.792000pt;}
.xa{left:119.712000pt;}
.x27{left:122.112000pt;}
.x30{left:125.472000pt;}
.x35{left:137.466667pt;}
.x7{left:160.026667pt;}
.x41{left:184.985000pt;}
.x22{left:191.866667pt;}
.x42{left:195.866667pt;}
.x3e{left:207.225000pt;}
.x33{left:218.425000pt;}
.x34{left:229.306667pt;}
.x3{left:232.320000pt;}
.x5{left:241.946667pt;}
.x17{left:244.346667pt;}
.x37{left:252.666667pt;}
.x50{left:259.705000pt;}
.x1d{left:264.505000pt;}
.x1e{left:269.986667pt;}
.x60{left:270.946667pt;}
.x3a{left:281.825000pt;}
.x4b{left:283.586667pt;}
.x3b{left:292.706667pt;}
.x49{left:297.145333pt;}
.xd{left:305.506667pt;}
.x4{left:310.493333pt;}
.x1b{left:316.545000pt;}
.x1c{left:321.986667pt;}
.x2a{left:325.505000pt;}
.x2b{left:336.386667pt;}
.xf{left:344.225000pt;}
.x10{left:349.666667pt;}
.x3f{left:352.225000pt;}
.x40{left:363.106667pt;}
.x21{left:366.466667pt;}
.x16{left:372.386667pt;}
.x43{left:382.305000pt;}
.x46{left:389.826667pt;}
.x44{left:393.186667pt;}
.x38{left:402.785000pt;}
.x15{left:408.066667pt;}
.xc{left:412.706667pt;}
.x39{left:413.666667pt;}
.x59{left:417.825000pt;}
.x2e{left:424.386667pt;}
.x5a{left:428.706667pt;}
.x36{left:433.505000pt;}
.x1f{left:444.411667pt;}
.x20{left:449.853333pt;}
.x61{left:455.931667pt;}
.x62{left:466.813333pt;}
.x56{left:475.131667pt;}
.x53{left:486.651667pt;}
.x51{left:492.091667pt;}
.x2c{left:497.531667pt;}
.x13{left:499.771667pt;}
.x52{left:502.973333pt;}
.x14{left:505.213333pt;}
.x2d{left:508.413333pt;}
.x11{left:509.851667pt;}
.x12{left:515.293333pt;}
.x28{left:521.851667pt;}
.x29{left:532.733333pt;}
.xb{left:552.413333pt;}
.x57{left:561.371667pt;}
.x5d{left:564.411667pt;}
.x18{left:566.331667pt;}
.x19{left:571.773333pt;}
.x58{left:573.533333pt;}
.x5e{left:575.293333pt;}
.x45{left:583.453333pt;}
.x31{left:593.371667pt;}
.x5b{left:597.851667pt;}
.x32{left:604.253333pt;}
.x5c{left:608.733333pt;}
.x54{left:613.531667pt;}
.x25{left:614.813333pt;}
.x23{left:618.171667pt;}
.x24{left:624.293333pt;}
.x26{left:634.693333pt;}
.x5f{left:640.131667pt;}
.x55{left:648.451667pt;}
.x8{left:650.531667pt;}
.x9{left:655.973333pt;}
.x47{left:659.811667pt;}
.x48{left:670.693333pt;}
.x2{left:682.693333pt;}
.x63{left:687.971667pt;}
.x3c{left:691.811667pt;}
.x1a{left:697.573333pt;}
.x64{left:698.853333pt;}
.x3d{left:702.693333pt;}
}

