
    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_a0bf4d1e93645fb9bacdf41d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.668261;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_99efb25bd64461d49930dd68.woff')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_3bc74d6e54029e62ba5028a4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_abbf6f2197f111fb31ca5477.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_df37aa12687312e92de8b290.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_52801ca716826f3325567e52.woff')format("woff");}.ff6{font-family:ff6;line-height:1.100098;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_5aab643c0de2394ef6bf2b8e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.100098;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_ddc211684fc2a075dcbcdc43.woff')format("woff");}.ff8{font-family:ff8;line-height:1.102051;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e21256201dbcf0c1050980f8.woff')format("woff");}.ffa{font-family:ffa;line-height:1.372070;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_bdff35bd3a1fef0a3eca808e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.922852;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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(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);}
.v2{vertical-align:-38.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.880000px;}
.lsf{letter-spacing:-0.331800px;}
.ls1{letter-spacing:-0.299400px;}
.ls2{letter-spacing:-0.271200px;}
.ls12{letter-spacing:-0.091200px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.028080px;}
.lse{letter-spacing:0.118200px;}
.lsb{letter-spacing:0.122400px;}
.ls6{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.299520px;}
.ls7{letter-spacing:0.327600px;}
.ls4{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.630000px;}
.ls11{letter-spacing:0.672000px;}
.ls13{letter-spacing:0.720000px;}
.lsa{letter-spacing:1.019520px;}
.ls15{letter-spacing:10.620000px;}
.ls10{letter-spacing:11.340000px;}
.lsc{letter-spacing:15.138720px;}
.ls16{letter-spacing:24.300000px;}
.ls14{letter-spacing:35.100000px;}
.ls5{letter-spacing:98.100000px;}
.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;}
}
.ws1{word-spacing:-70.272000px;}
.ws0{word-spacing:-52.704000px;}
.ws6{word-spacing:-24.300000px;}
.ws7{word-spacing:-24.062400px;}
.ws8{word-spacing:-24.058200px;}
.ws5{word-spacing:-23.940000px;}
.ws2{word-spacing:-23.668800px;}
.ws9{word-spacing:-23.608200px;}
.ws4{word-spacing:-15.300000px;}
.wsa{word-spacing:-14.892000px;}
.wsb{word-spacing:-0.095760px;}
.ws3{word-spacing:0.000000px;}
._3f{margin-left:-2.358960px;}
._0{margin-left:-1.080000px;}
._2{width:1.053360px;}
._5{width:2.948400px;}
._22{width:4.803600px;}
._4{width:5.920560px;}
._3{width:6.991920px;}
._e{width:8.329680px;}
._8{width:9.856080px;}
._9{width:10.936080px;}
._17{width:11.970000px;}
._18{width:13.151520px;}
._1a{width:14.173920px;}
._6{width:15.415920px;}
._7{width:16.580160px;}
._1c{width:17.781600px;}
._21{width:18.924240px;}
._2d{width:20.070240px;}
._24{width:21.258720px;}
._14{width:22.886640px;}
._2c{width:24.993360px;}
._1e{width:26.046720px;}
._16{width:27.195840px;}
._15{width:28.632240px;}
._29{width:30.068640px;}
._34{width:31.627440px;}
._1d{width:32.654160px;}
._b{width:33.803280px;}
._26{width:35.526960px;}
._2b{width:36.580320px;}
._2a{width:37.817040px;}
._27{width:38.832720px;}
._c{width:40.793760px;}
._d{width:41.942880px;}
._25{width:43.257360px;}
._f{width:44.815680px;}
._13{width:45.990960px;}
._12{width:47.113920px;}
._23{width:48.741840px;}
._32{width:49.795200px;}
._20{width:51.806160px;}
._1f{width:52.859520px;}
._38{width:54.035280px;}
._28{width:55.253520px;}
._19{width:56.689920px;}
._2e{width:58.030560px;}
._37{width:59.275440px;}
._10{width:60.328800px;}
._11{width:61.382160px;}
._3c{width:63.554640px;}
._a{width:64.668000px;}
._35{width:66.397440px;}
._31{width:67.415040px;}
._3b{width:69.234480px;}
._39{width:71.724240px;}
._3a{width:74.118240px;}
._3d{width:75.554640px;}
._36{width:78.618960px;}
._33{width:88.386480px;}
._1b{width:90.493200px;}
._2f{width:98.441280px;}
._30{width:99.781920px;}
._1{width:128.316000px;}
._3e{width:129.374160px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fsb{font-size:100.938894px;}
.fs6{font-size:144.000000px;}
.fs7{font-size:151.787810px;}
.fs0{font-size:216.000000px;}
.fs9{font-size:285.120000px;}
.fs2{font-size:288.000000px;}
.fs1{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.y31{bottom:3.600000px;}
.y79{bottom:6.300000px;}
.y5{bottom:24.840000px;}
.y2f{bottom:56.700000px;}
.y30{bottom:70.200000px;}
.y2e{bottom:73.980000px;}
.y4{bottom:99.540000px;}
.y10c{bottom:118.296000px;}
.y54{bottom:119.016000px;}
.ycf{bottom:120.096000px;}
.y99{bottom:126.036000px;}
.yc6{bottom:131.976000px;}
.y11a{bottom:132.156000px;}
.y115{bottom:139.356000px;}
.y77{bottom:140.976000px;}
.y10b{bottom:145.296000px;}
.y53{bottom:146.016000px;}
.yce{bottom:147.096000px;}
.ya6{bottom:147.276000px;}
.y98{bottom:153.030000px;}
.yc5{bottom:158.970000px;}
.y114{bottom:166.350000px;}
.y76{bottom:167.970000px;}
.y10a{bottom:172.290000px;}
.y52{bottom:173.010000px;}
.ycc{bottom:174.090000px;}
.y12e{bottom:174.270000px;}
.y3{bottom:174.420000px;}
.y97{bottom:180.030000px;}
.yc4{bottom:185.970000px;}
.y143{bottom:189.210000px;}
.y113{bottom:193.350000px;}
.y75{bottom:194.970000px;}
.ya5{bottom:195.150000px;}
.y109{bottom:199.290000px;}
.y51{bottom:200.010000px;}
.ycb{bottom:201.090000px;}
.y96{bottom:207.030000px;}
.y119{bottom:207.210000px;}
.yd8{bottom:212.970000px;}
.y112{bottom:220.350000px;}
.y74{bottom:221.970000px;}
.y108{bottom:226.290000px;}
.y50{bottom:227.010000px;}
.yca{bottom:228.090000px;}
.y95{bottom:234.030000px;}
.yc3{bottom:234.210000px;}
.y142{bottom:237.270000px;}
.yd7{bottom:239.970000px;}
.y2{bottom:243.000000px;}
.y111{bottom:247.350000px;}
.y73{bottom:248.970000px;}
.y107{bottom:253.290000px;}
.y4f{bottom:254.010000px;}
.yc9{bottom:255.090000px;}
.y94{bottom:261.030000px;}
.yd6{bottom:266.970000px;}
.ye{bottom:267.330000px;}
.y110{bottom:274.350000px;}
.y72{bottom:275.970000px;}
.y12d{bottom:276.150000px;}
.y106{bottom:280.290000px;}
.y4e{bottom:281.010000px;}
.yc2{bottom:282.090000px;}
.y118{bottom:282.270000px;}
.y141{bottom:285.150000px;}
.y93{bottom:288.030000px;}
.yd5{bottom:293.970000px;}
.y10f{bottom:301.350000px;}
.y71{bottom:302.970000px;}
.y4d{bottom:308.010000px;}
.yc1{bottom:309.090000px;}
.y140{bottom:311.970000px;}
.y92{bottom:315.030000px;}
.yd4{bottom:320.970000px;}
.yd{bottom:323.310000px;}
.y10e{bottom:328.350000px;}
.y105{bottom:328.530000px;}
.y70{bottom:329.970000px;}
.y117{bottom:330.150000px;}
.y4c{bottom:335.010000px;}
.yc0{bottom:336.090000px;}
.yb0{bottom:336.270000px;}
.y13f{bottom:338.970000px;}
.y91{bottom:342.030000px;}
.yd3{bottom:348.015000px;}
.y104{bottom:355.395000px;}
.ya4{bottom:357.015000px;}
.y6f{bottom:357.195000px;}
.y4b{bottom:362.055000px;}
.yaf{bottom:363.135000px;}
.yf2{bottom:363.315000px;}
.y13e{bottom:366.015000px;}
.y90{bottom:369.075000px;}
.ye6{bottom:369.255000px;}
.yee{bottom:375.015000px;}
.y12c{bottom:378.255000px;}
.y103{bottom:382.395000px;}
.ya3{bottom:384.015000px;}
.y2d{bottom:386.175000px;}
.y4a{bottom:389.055000px;}
.yae{bottom:390.135000px;}
.y8f{bottom:396.075000px;}
.yd2{bottom:396.255000px;}
.yed{bottom:402.015000px;}
.yc{bottom:405.075000px;}
.y102{bottom:409.395000px;}
.ya2{bottom:411.015000px;}
.yc8{bottom:411.195000px;}
.y13d{bottom:414.255000px;}
.y49{bottom:416.055000px;}
.yad{bottom:417.135000px;}
.y8e{bottom:423.075000px;}
.y12b{bottom:426.315000px;}
.yec{bottom:429.015000px;}
.y2c{bottom:430.815000px;}
.y6e{bottom:432.075000px;}
.y101{bottom:436.395000px;}
.ya1{bottom:438.015000px;}
.yf1{bottom:438.195000px;}
.y13c{bottom:441.075000px;}
.y48{bottom:443.055000px;}
.yac{bottom:444.135000px;}
.yd1{bottom:444.315000px;}
.y8d{bottom:450.075000px;}
.y12a{bottom:453.135000px;}
.y2b{bottom:454.215000px;}
.yeb{bottom:456.015000px;}
.y6d{bottom:459.075000px;}
.y100{bottom:463.395000px;}
.ya0{bottom:465.015000px;}
.y13b{bottom:468.075000px;}
.y47{bottom:470.055000px;}
.ybf{bottom:471.135000px;}
.y8c{bottom:477.075000px;}
.y2a{bottom:477.975000px;}
.y129{bottom:480.135000px;}
.yea{bottom:483.015000px;}
.y6c{bottom:486.075000px;}
.yb{bottom:486.795000px;}
.yff{bottom:490.395000px;}
.y9f{bottom:492.015000px;}
.yab{bottom:492.195000px;}
.y13a{bottom:495.075000px;}
.y46{bottom:497.055000px;}
.ybe{bottom:498.135000px;}
.y29{bottom:501.555000px;}
.y8b{bottom:504.075000px;}
.y6b{bottom:513.075000px;}
.yfe{bottom:517.395000px;}
.y9e{bottom:519.015000px;}
.y139{bottom:522.075000px;}
.y28{bottom:525.135000px;}
.y128{bottom:528.195000px;}
.ye5{bottom:531.075000px;}
.ye9{bottom:531.255000px;}
.y6a{bottom:540.075000px;}
.yfd{bottom:544.395000px;}
.y45{bottom:545.295000px;}
.y9d{bottom:546.015000px;}
.y27{bottom:548.895000px;}
.ybd{bottom:552.135000px;}
.y8a{bottom:552.315000px;}
.ye4{bottom:558.075000px;}
.ya{bottom:560.775000px;}
.y69{bottom:567.075000px;}
.y138{bottom:570.315000px;}
.yfc{bottom:571.395000px;}
.y9c{bottom:573.015000px;}
.y127{bottom:576.255000px;}
.ybc{bottom:579.135000px;}
.ye8{bottom:579.315000px;}
.ye3{bottom:585.075000px;}
.y44{bottom:593.175000px;}
.y26{bottom:593.355000px;}
.y68{bottom:594.075000px;}
.y137{bottom:597.135000px;}
.yfb{bottom:598.395000px;}
.y9b{bottom:600.015000px;}
.y89{bottom:600.195000px;}
.y126{bottom:603.075000px;}
.ybb{bottom:606.135000px;}
.ye2{bottom:612.105000px;}
.y9{bottom:616.785000px;}
.y25{bottom:616.965000px;}
.y67{bottom:621.105000px;}
.y10d{bottom:621.285000px;}
.y136{bottom:624.165000px;}
.yfa{bottom:625.425000px;}
.y88{bottom:627.045000px;}
.yba{bottom:633.165000px;}
.ye1{bottom:639.105000px;}
.y24{bottom:640.725000px;}
.y43{bottom:641.265000px;}
.y66{bottom:648.105000px;}
.y135{bottom:651.165000px;}
.y125{bottom:651.345000px;}
.yf9{bottom:652.425000px;}
.y87{bottom:654.045000px;}
.yc7{bottom:654.225000px;}
.yb9{bottom:660.165000px;}
.y23{bottom:664.305000px;}
.ye0{bottom:666.105000px;}
.y65{bottom:675.105000px;}
.y124{bottom:678.165000px;}
.yf8{bottom:679.425000px;}
.y86{bottom:681.045000px;}
.yb8{bottom:687.165000px;}
.y22{bottom:687.885000px;}
.ydf{bottom:693.105000px;}
.y42{bottom:696.345000px;}
.y8{bottom:698.325000px;}
.y134{bottom:699.225000px;}
.y64{bottom:702.105000px;}
.yf7{bottom:706.425000px;}
.y85{bottom:708.045000px;}
.y21{bottom:711.465000px;}
.yb7{bottom:714.165000px;}
.y3a{bottom:716.325000px;}
.yde{bottom:720.105000px;}
.y133{bottom:726.045000px;}
.y123{bottom:726.225000px;}
.y63{bottom:729.105000px;}
.yf6{bottom:733.425000px;}
.y84{bottom:735.045000px;}
.y20{bottom:735.225000px;}
.yb6{bottom:741.165000px;}
.y122{bottom:753.045000px;}
.y62{bottom:756.105000px;}
.y116{bottom:756.285000px;}
.y41{bottom:757.725000px;}
.y1f{bottom:758.805000px;}
.y7{bottom:759.165000px;}
.yf5{bottom:760.425000px;}
.y83{bottom:762.045000px;}
.y39{bottom:762.765000px;}
.yb5{bottom:768.165000px;}
.ydd{bottom:768.345000px;}
.y132{bottom:780.045000px;}
.y1e{bottom:782.385000px;}
.y61{bottom:783.105000px;}
.yd0{bottom:783.285000px;}
.yf4{bottom:787.425000px;}
.y82{bottom:789.045000px;}
.yb4{bottom:795.165000px;}
.y40{bottom:798.045000px;}
.y121{bottom:801.285000px;}
.y1d{bottom:805.965000px;}
.y131{bottom:807.045000px;}
.y60{bottom:810.105000px;}
.y9a{bottom:810.285000px;}
.y81{bottom:816.045000px;}
.yb3{bottom:822.165000px;}
.y38{bottom:824.145000px;}
.y120{bottom:828.105000px;}
.y1c{bottom:829.725000px;}
.y6{bottom:832.965000px;}
.y5f{bottom:837.105000px;}
.y3f{bottom:838.545000px;}
.y80{bottom:843.045000px;}
.ydc{bottom:849.165000px;}
.y1b{bottom:853.305000px;}
.y130{bottom:855.285000px;}
.y5e{bottom:864.105000px;}
.y7f{bottom:870.090000px;}
.yb2{bottom:870.270000px;}
.y1{bottom:874.590000px;}
.ydb{bottom:876.210000px;}
.y11f{bottom:876.390000px;}
.y1a{bottom:876.930000px;}
.y37{bottom:885.930000px;}
.y5d{bottom:891.150000px;}
.y3e{bottom:897.090000px;}
.y19{bottom:900.510000px;}
.yda{bottom:903.210000px;}
.y12f{bottom:903.390000px;}
.y5c{bottom:918.150000px;}
.yf3{bottom:918.330000px;}
.y7e{bottom:924.090000px;}
.y18{bottom:924.270000px;}
.yd9{bottom:930.210000px;}
.y3d{bottom:938.850000px;}
.y36{bottom:942.090000px;}
.y5b{bottom:945.150000px;}
.yef{bottom:945.330000px;}
.y17{bottom:947.850000px;}
.y7d{bottom:951.090000px;}
.y11e{bottom:957.210000px;}
.y16{bottom:971.430000px;}
.y5a{bottom:972.150000px;}
.y7c{bottom:978.090000px;}
.ycd{bottom:978.270000px;}
.y11d{bottom:984.210000px;}
.y35{bottom:990.330000px;}
.y15{bottom:995.010000px;}
.y59{bottom:999.150000px;}
.yf0{bottom:999.330000px;}
.y7b{bottom:1005.090000px;}
.y14{bottom:1018.770000px;}
.y58{bottom:1026.150000px;}
.yb1{bottom:1026.330000px;}
.yaa{bottom:1032.090000px;}
.y11c{bottom:1032.270000px;}
.y3c{bottom:1034.250000px;}
.y34{bottom:1038.390000px;}
.y13{bottom:1042.350000px;}
.y78{bottom:1046.850000px;}
.y57{bottom:1053.150000px;}
.y7a{bottom:1053.330000px;}
.ya9{bottom:1059.090000px;}
.y12{bottom:1065.930000px;}
.y56{bottom:1080.150000px;}
.ye7{bottom:1080.330000px;}
.y3b{bottom:1082.130000px;}
.ya8{bottom:1086.090000px;}
.y33{bottom:1086.270000px;}
.y11{bottom:1089.510000px;}
.y55{bottom:1107.150000px;}
.y11b{bottom:1107.330000px;}
.y10{bottom:1113.270000px;}
.y32{bottom:1134.180000px;}
.ya7{bottom:1134.360000px;}
.yf{bottom:1136.880000px;}
.hd{height:17.136000px;}
.h11{height:54.000000px;}
.hc{height:58.651172px;}
.hb{height:70.501641px;}
.ha{height:80.142891px;}
.h9{height:80.236406px;}
.h13{height:80.984531px;}
.h16{height:84.575753px;}
.h15{height:86.483672px;}
.h18{height:93.983203px;}
.h17{height:95.526211px;}
.h14{height:99.874688px;}
.h10{height:120.515625px;}
.he{height:120.656250px;}
.hf{height:127.181583px;}
.h5{height:138.902344px;}
.h8{height:180.773438px;}
.h7{height:180.984375px;}
.h4{height:185.203125px;}
.h3{height:216.224648px;}
.h12{height:238.620937px;}
.h2{height:280.290000px;}
.h6{height:281.403984px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:22.500000px;}
.w5{width:22.536000px;}
.w6{width:49.500000px;}
.w3{width:324.210000px;}
.w2{width:324.255000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:4.320000px;}
.x2{left:8.100000px;}
.x19{left:103.716000px;}
.x8{left:108.036000px;}
.x1{left:126.936000px;}
.x4{left:135.036000px;}
.x18{left:153.210000px;}
.x1b{left:161.130000px;}
.x10{left:173.010000px;}
.x11{left:178.770000px;}
.x5{left:180.750000px;}
.xb{left:189.030000px;}
.x6{left:231.510000px;}
.x7{left:235.650000px;}
.xe{left:256.890000px;}
.xd{left:271.695000px;}
.x15{left:282.495000px;}
.xc{left:357.915000px;}
.x1c{left:389.775000px;}
.x17{left:421.815000px;}
.x16{left:432.975000px;}
.xa{left:448.845000px;}
.x3{left:451.185000px;}
.x9{left:460.005000px;}
.x12{left:472.605000px;}
.xf{left:523.905000px;}
.x14{left:648.690000px;}
.x13{left:714.930000px;}
@media print{
.v2{vertical-align:-34.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.560000pt;}
.lsf{letter-spacing:-0.294933pt;}
.ls1{letter-spacing:-0.266133pt;}
.ls2{letter-spacing:-0.241067pt;}
.ls12{letter-spacing:-0.081067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.024960pt;}
.lse{letter-spacing:0.105067pt;}
.lsb{letter-spacing:0.108800pt;}
.ls6{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.266240pt;}
.ls7{letter-spacing:0.291200pt;}
.ls4{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.560000pt;}
.ls11{letter-spacing:0.597333pt;}
.ls13{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.906240pt;}
.ls15{letter-spacing:9.440000pt;}
.ls10{letter-spacing:10.080000pt;}
.lsc{letter-spacing:13.456640pt;}
.ls16{letter-spacing:21.600000pt;}
.ls14{letter-spacing:31.200000pt;}
.ls5{letter-spacing:87.200000pt;}
.ws1{word-spacing:-62.464000pt;}
.ws0{word-spacing:-46.848000pt;}
.ws6{word-spacing:-21.600000pt;}
.ws7{word-spacing:-21.388800pt;}
.ws8{word-spacing:-21.385067pt;}
.ws5{word-spacing:-21.280000pt;}
.ws2{word-spacing:-21.038933pt;}
.ws9{word-spacing:-20.985067pt;}
.ws4{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.237333pt;}
.wsb{word-spacing:-0.085120pt;}
.ws3{word-spacing:0.000000pt;}
._3f{margin-left:-2.096853pt;}
._0{margin-left:-0.960000pt;}
._2{width:0.936320pt;}
._5{width:2.620800pt;}
._22{width:4.269867pt;}
._4{width:5.262720pt;}
._3{width:6.215040pt;}
._e{width:7.404160pt;}
._8{width:8.760960pt;}
._9{width:9.720960pt;}
._17{width:10.640000pt;}
._18{width:11.690240pt;}
._1a{width:12.599040pt;}
._6{width:13.703040pt;}
._7{width:14.737920pt;}
._1c{width:15.805867pt;}
._21{width:16.821547pt;}
._2d{width:17.840213pt;}
._24{width:18.896640pt;}
._14{width:20.343680pt;}
._2c{width:22.216320pt;}
._1e{width:23.152640pt;}
._16{width:24.174080pt;}
._15{width:25.450880pt;}
._29{width:26.727680pt;}
._34{width:28.113280pt;}
._1d{width:29.025920pt;}
._b{width:30.047360pt;}
._26{width:31.579520pt;}
._2b{width:32.515840pt;}
._2a{width:33.615147pt;}
._27{width:34.517973pt;}
._c{width:36.261120pt;}
._d{width:37.282560pt;}
._25{width:38.450987pt;}
._f{width:39.836160pt;}
._13{width:40.880853pt;}
._12{width:41.879040pt;}
._23{width:43.326080pt;}
._32{width:44.262400pt;}
._20{width:46.049920pt;}
._1f{width:46.986240pt;}
._38{width:48.031360pt;}
._28{width:49.114240pt;}
._19{width:50.391040pt;}
._2e{width:51.582720pt;}
._37{width:52.689280pt;}
._10{width:53.625600pt;}
._11{width:54.561920pt;}
._3c{width:56.493013pt;}
._a{width:57.482667pt;}
._35{width:59.019947pt;}
._31{width:59.924480pt;}
._3b{width:61.541760pt;}
._39{width:63.754880pt;}
._3a{width:65.882880pt;}
._3d{width:67.159680pt;}
._36{width:69.883520pt;}
._33{width:78.565760pt;}
._1b{width:80.438400pt;}
._2f{width:87.503360pt;}
._30{width:88.695040pt;}
._1{width:114.058667pt;}
._3e{width:114.999253pt;}
.fsa{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fsb{font-size:89.723461pt;}
.fs6{font-size:128.000000pt;}
.fs7{font-size:134.922498pt;}
.fs0{font-size:192.000000pt;}
.fs9{font-size:253.440000pt;}
.fs2{font-size:256.000000pt;}
.fs1{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:3.200000pt;}
.y79{bottom:5.600000pt;}
.y5{bottom:22.080000pt;}
.y2f{bottom:50.400000pt;}
.y30{bottom:62.400000pt;}
.y2e{bottom:65.760000pt;}
.y4{bottom:88.480000pt;}
.y10c{bottom:105.152000pt;}
.y54{bottom:105.792000pt;}
.ycf{bottom:106.752000pt;}
.y99{bottom:112.032000pt;}
.yc6{bottom:117.312000pt;}
.y11a{bottom:117.472000pt;}
.y115{bottom:123.872000pt;}
.y77{bottom:125.312000pt;}
.y10b{bottom:129.152000pt;}
.y53{bottom:129.792000pt;}
.yce{bottom:130.752000pt;}
.ya6{bottom:130.912000pt;}
.y98{bottom:136.026667pt;}
.yc5{bottom:141.306667pt;}
.y114{bottom:147.866667pt;}
.y76{bottom:149.306667pt;}
.y10a{bottom:153.146667pt;}
.y52{bottom:153.786667pt;}
.ycc{bottom:154.746667pt;}
.y12e{bottom:154.906667pt;}
.y3{bottom:155.040000pt;}
.y97{bottom:160.026667pt;}
.yc4{bottom:165.306667pt;}
.y143{bottom:168.186667pt;}
.y113{bottom:171.866667pt;}
.y75{bottom:173.306667pt;}
.ya5{bottom:173.466667pt;}
.y109{bottom:177.146667pt;}
.y51{bottom:177.786667pt;}
.ycb{bottom:178.746667pt;}
.y96{bottom:184.026667pt;}
.y119{bottom:184.186667pt;}
.yd8{bottom:189.306667pt;}
.y112{bottom:195.866667pt;}
.y74{bottom:197.306667pt;}
.y108{bottom:201.146667pt;}
.y50{bottom:201.786667pt;}
.yca{bottom:202.746667pt;}
.y95{bottom:208.026667pt;}
.yc3{bottom:208.186667pt;}
.y142{bottom:210.906667pt;}
.yd7{bottom:213.306667pt;}
.y2{bottom:216.000000pt;}
.y111{bottom:219.866667pt;}
.y73{bottom:221.306667pt;}
.y107{bottom:225.146667pt;}
.y4f{bottom:225.786667pt;}
.yc9{bottom:226.746667pt;}
.y94{bottom:232.026667pt;}
.yd6{bottom:237.306667pt;}
.ye{bottom:237.626667pt;}
.y110{bottom:243.866667pt;}
.y72{bottom:245.306667pt;}
.y12d{bottom:245.466667pt;}
.y106{bottom:249.146667pt;}
.y4e{bottom:249.786667pt;}
.yc2{bottom:250.746667pt;}
.y118{bottom:250.906667pt;}
.y141{bottom:253.466667pt;}
.y93{bottom:256.026667pt;}
.yd5{bottom:261.306667pt;}
.y10f{bottom:267.866667pt;}
.y71{bottom:269.306667pt;}
.y4d{bottom:273.786667pt;}
.yc1{bottom:274.746667pt;}
.y140{bottom:277.306667pt;}
.y92{bottom:280.026667pt;}
.yd4{bottom:285.306667pt;}
.yd{bottom:287.386667pt;}
.y10e{bottom:291.866667pt;}
.y105{bottom:292.026667pt;}
.y70{bottom:293.306667pt;}
.y117{bottom:293.466667pt;}
.y4c{bottom:297.786667pt;}
.yc0{bottom:298.746667pt;}
.yb0{bottom:298.906667pt;}
.y13f{bottom:301.306667pt;}
.y91{bottom:304.026667pt;}
.yd3{bottom:309.346667pt;}
.y104{bottom:315.906667pt;}
.ya4{bottom:317.346667pt;}
.y6f{bottom:317.506667pt;}
.y4b{bottom:321.826667pt;}
.yaf{bottom:322.786667pt;}
.yf2{bottom:322.946667pt;}
.y13e{bottom:325.346667pt;}
.y90{bottom:328.066667pt;}
.ye6{bottom:328.226667pt;}
.yee{bottom:333.346667pt;}
.y12c{bottom:336.226667pt;}
.y103{bottom:339.906667pt;}
.ya3{bottom:341.346667pt;}
.y2d{bottom:343.266667pt;}
.y4a{bottom:345.826667pt;}
.yae{bottom:346.786667pt;}
.y8f{bottom:352.066667pt;}
.yd2{bottom:352.226667pt;}
.yed{bottom:357.346667pt;}
.yc{bottom:360.066667pt;}
.y102{bottom:363.906667pt;}
.ya2{bottom:365.346667pt;}
.yc8{bottom:365.506667pt;}
.y13d{bottom:368.226667pt;}
.y49{bottom:369.826667pt;}
.yad{bottom:370.786667pt;}
.y8e{bottom:376.066667pt;}
.y12b{bottom:378.946667pt;}
.yec{bottom:381.346667pt;}
.y2c{bottom:382.946667pt;}
.y6e{bottom:384.066667pt;}
.y101{bottom:387.906667pt;}
.ya1{bottom:389.346667pt;}
.yf1{bottom:389.506667pt;}
.y13c{bottom:392.066667pt;}
.y48{bottom:393.826667pt;}
.yac{bottom:394.786667pt;}
.yd1{bottom:394.946667pt;}
.y8d{bottom:400.066667pt;}
.y12a{bottom:402.786667pt;}
.y2b{bottom:403.746667pt;}
.yeb{bottom:405.346667pt;}
.y6d{bottom:408.066667pt;}
.y100{bottom:411.906667pt;}
.ya0{bottom:413.346667pt;}
.y13b{bottom:416.066667pt;}
.y47{bottom:417.826667pt;}
.ybf{bottom:418.786667pt;}
.y8c{bottom:424.066667pt;}
.y2a{bottom:424.866667pt;}
.y129{bottom:426.786667pt;}
.yea{bottom:429.346667pt;}
.y6c{bottom:432.066667pt;}
.yb{bottom:432.706667pt;}
.yff{bottom:435.906667pt;}
.y9f{bottom:437.346667pt;}
.yab{bottom:437.506667pt;}
.y13a{bottom:440.066667pt;}
.y46{bottom:441.826667pt;}
.ybe{bottom:442.786667pt;}
.y29{bottom:445.826667pt;}
.y8b{bottom:448.066667pt;}
.y6b{bottom:456.066667pt;}
.yfe{bottom:459.906667pt;}
.y9e{bottom:461.346667pt;}
.y139{bottom:464.066667pt;}
.y28{bottom:466.786667pt;}
.y128{bottom:469.506667pt;}
.ye5{bottom:472.066667pt;}
.ye9{bottom:472.226667pt;}
.y6a{bottom:480.066667pt;}
.yfd{bottom:483.906667pt;}
.y45{bottom:484.706667pt;}
.y9d{bottom:485.346667pt;}
.y27{bottom:487.906667pt;}
.ybd{bottom:490.786667pt;}
.y8a{bottom:490.946667pt;}
.ye4{bottom:496.066667pt;}
.ya{bottom:498.466667pt;}
.y69{bottom:504.066667pt;}
.y138{bottom:506.946667pt;}
.yfc{bottom:507.906667pt;}
.y9c{bottom:509.346667pt;}
.y127{bottom:512.226667pt;}
.ybc{bottom:514.786667pt;}
.ye8{bottom:514.946667pt;}
.ye3{bottom:520.066667pt;}
.y44{bottom:527.266667pt;}
.y26{bottom:527.426667pt;}
.y68{bottom:528.066667pt;}
.y137{bottom:530.786667pt;}
.yfb{bottom:531.906667pt;}
.y9b{bottom:533.346667pt;}
.y89{bottom:533.506667pt;}
.y126{bottom:536.066667pt;}
.ybb{bottom:538.786667pt;}
.ye2{bottom:544.093333pt;}
.y9{bottom:548.253333pt;}
.y25{bottom:548.413333pt;}
.y67{bottom:552.093333pt;}
.y10d{bottom:552.253333pt;}
.y136{bottom:554.813333pt;}
.yfa{bottom:555.933333pt;}
.y88{bottom:557.373333pt;}
.yba{bottom:562.813333pt;}
.ye1{bottom:568.093333pt;}
.y24{bottom:569.533333pt;}
.y43{bottom:570.013333pt;}
.y66{bottom:576.093333pt;}
.y135{bottom:578.813333pt;}
.y125{bottom:578.973333pt;}
.yf9{bottom:579.933333pt;}
.y87{bottom:581.373333pt;}
.yc7{bottom:581.533333pt;}
.yb9{bottom:586.813333pt;}
.y23{bottom:590.493333pt;}
.ye0{bottom:592.093333pt;}
.y65{bottom:600.093333pt;}
.y124{bottom:602.813333pt;}
.yf8{bottom:603.933333pt;}
.y86{bottom:605.373333pt;}
.yb8{bottom:610.813333pt;}
.y22{bottom:611.453333pt;}
.ydf{bottom:616.093333pt;}
.y42{bottom:618.973333pt;}
.y8{bottom:620.733333pt;}
.y134{bottom:621.533333pt;}
.y64{bottom:624.093333pt;}
.yf7{bottom:627.933333pt;}
.y85{bottom:629.373333pt;}
.y21{bottom:632.413333pt;}
.yb7{bottom:634.813333pt;}
.y3a{bottom:636.733333pt;}
.yde{bottom:640.093333pt;}
.y133{bottom:645.373333pt;}
.y123{bottom:645.533333pt;}
.y63{bottom:648.093333pt;}
.yf6{bottom:651.933333pt;}
.y84{bottom:653.373333pt;}
.y20{bottom:653.533333pt;}
.yb6{bottom:658.813333pt;}
.y122{bottom:669.373333pt;}
.y62{bottom:672.093333pt;}
.y116{bottom:672.253333pt;}
.y41{bottom:673.533333pt;}
.y1f{bottom:674.493333pt;}
.y7{bottom:674.813333pt;}
.yf5{bottom:675.933333pt;}
.y83{bottom:677.373333pt;}
.y39{bottom:678.013333pt;}
.yb5{bottom:682.813333pt;}
.ydd{bottom:682.973333pt;}
.y132{bottom:693.373333pt;}
.y1e{bottom:695.453333pt;}
.y61{bottom:696.093333pt;}
.yd0{bottom:696.253333pt;}
.yf4{bottom:699.933333pt;}
.y82{bottom:701.373333pt;}
.yb4{bottom:706.813333pt;}
.y40{bottom:709.373333pt;}
.y121{bottom:712.253333pt;}
.y1d{bottom:716.413333pt;}
.y131{bottom:717.373333pt;}
.y60{bottom:720.093333pt;}
.y9a{bottom:720.253333pt;}
.y81{bottom:725.373333pt;}
.yb3{bottom:730.813333pt;}
.y38{bottom:732.573333pt;}
.y120{bottom:736.093333pt;}
.y1c{bottom:737.533333pt;}
.y6{bottom:740.413333pt;}
.y5f{bottom:744.093333pt;}
.y3f{bottom:745.373333pt;}
.y80{bottom:749.373333pt;}
.ydc{bottom:754.813333pt;}
.y1b{bottom:758.493333pt;}
.y130{bottom:760.253333pt;}
.y5e{bottom:768.093333pt;}
.y7f{bottom:773.413333pt;}
.yb2{bottom:773.573333pt;}
.y1{bottom:777.413333pt;}
.ydb{bottom:778.853333pt;}
.y11f{bottom:779.013333pt;}
.y1a{bottom:779.493333pt;}
.y37{bottom:787.493333pt;}
.y5d{bottom:792.133333pt;}
.y3e{bottom:797.413333pt;}
.y19{bottom:800.453333pt;}
.yda{bottom:802.853333pt;}
.y12f{bottom:803.013333pt;}
.y5c{bottom:816.133333pt;}
.yf3{bottom:816.293333pt;}
.y7e{bottom:821.413333pt;}
.y18{bottom:821.573333pt;}
.yd9{bottom:826.853333pt;}
.y3d{bottom:834.533333pt;}
.y36{bottom:837.413333pt;}
.y5b{bottom:840.133333pt;}
.yef{bottom:840.293333pt;}
.y17{bottom:842.533333pt;}
.y7d{bottom:845.413333pt;}
.y11e{bottom:850.853333pt;}
.y16{bottom:863.493333pt;}
.y5a{bottom:864.133333pt;}
.y7c{bottom:869.413333pt;}
.ycd{bottom:869.573333pt;}
.y11d{bottom:874.853333pt;}
.y35{bottom:880.293333pt;}
.y15{bottom:884.453333pt;}
.y59{bottom:888.133333pt;}
.yf0{bottom:888.293333pt;}
.y7b{bottom:893.413333pt;}
.y14{bottom:905.573333pt;}
.y58{bottom:912.133333pt;}
.yb1{bottom:912.293333pt;}
.yaa{bottom:917.413333pt;}
.y11c{bottom:917.573333pt;}
.y3c{bottom:919.333333pt;}
.y34{bottom:923.013333pt;}
.y13{bottom:926.533333pt;}
.y78{bottom:930.533333pt;}
.y57{bottom:936.133333pt;}
.y7a{bottom:936.293333pt;}
.ya9{bottom:941.413333pt;}
.y12{bottom:947.493333pt;}
.y56{bottom:960.133333pt;}
.ye7{bottom:960.293333pt;}
.y3b{bottom:961.893333pt;}
.ya8{bottom:965.413333pt;}
.y33{bottom:965.573333pt;}
.y11{bottom:968.453333pt;}
.y55{bottom:984.133333pt;}
.y11b{bottom:984.293333pt;}
.y10{bottom:989.573333pt;}
.y32{bottom:1008.160000pt;}
.ya7{bottom:1008.320000pt;}
.yf{bottom:1010.560000pt;}
.hd{height:15.232000pt;}
.h11{height:48.000000pt;}
.hc{height:52.134375pt;}
.hb{height:62.668125pt;}
.ha{height:71.238125pt;}
.h9{height:71.321250pt;}
.h13{height:71.986250pt;}
.h16{height:75.178447pt;}
.h15{height:76.874375pt;}
.h18{height:83.540625pt;}
.h17{height:84.912188pt;}
.h14{height:88.777500pt;}
.h10{height:107.125000pt;}
.he{height:107.250000pt;}
.hf{height:113.050296pt;}
.h5{height:123.468750pt;}
.h8{height:160.687500pt;}
.h7{height:160.875000pt;}
.h4{height:164.625000pt;}
.h3{height:192.199688pt;}
.h12{height:212.107500pt;}
.h2{height:249.146667pt;}
.h6{height:250.136875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:20.000000pt;}
.w5{width:20.032000pt;}
.w6{width:44.000000pt;}
.w3{width:288.186667pt;}
.w2{width:288.226667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:3.840000pt;}
.x2{left:7.200000pt;}
.x19{left:92.192000pt;}
.x8{left:96.032000pt;}
.x1{left:112.832000pt;}
.x4{left:120.032000pt;}
.x18{left:136.186667pt;}
.x1b{left:143.226667pt;}
.x10{left:153.786667pt;}
.x11{left:158.906667pt;}
.x5{left:160.666667pt;}
.xb{left:168.026667pt;}
.x6{left:205.786667pt;}
.x7{left:209.466667pt;}
.xe{left:228.346667pt;}
.xd{left:241.506667pt;}
.x15{left:251.106667pt;}
.xc{left:318.146667pt;}
.x1c{left:346.466667pt;}
.x17{left:374.946667pt;}
.x16{left:384.866667pt;}
.xa{left:398.973333pt;}
.x3{left:401.053333pt;}
.x9{left:408.893333pt;}
.x12{left:420.093333pt;}
.xf{left:465.693333pt;}
.x14{left:576.613333pt;}
.x13{left:635.493333pt;}
}

