
    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_54949df2722a52420a81472e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_f109aebc5a1faf1706df55f8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_edd0f5fcbc8c99fb7c1eed96.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_1b546e28ef134368756b5c09.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_1bcabcefe07b966fc5edbdc5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f3175933042d021a0f60155d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.740234;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_292be1dd798c540359776ae3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.835449;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_ae17842c6b595024530f2ccb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.211914;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_ea35117ec0e688e4e3d04d9f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.207031;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_073f087716fe2438b6b6eac6.woff')format("woff");}.ffa{font-family:ffa;line-height:1.211914;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_9bb55dae5cdc4b1658f1a590.woff')format("woff");}.ffb{font-family:ffb;line-height:1.207031;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_7b61c34329fedf4eacd91110.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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;}
.ls3{letter-spacing:-0.152400px;}
.ls2{letter-spacing:-0.097800px;}
.ls8{letter-spacing:-0.046800px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.044640px;}
.lsb{letter-spacing:0.084000px;}
.lsf{letter-spacing:0.109200px;}
.ls9{letter-spacing:0.152400px;}
.lsd{letter-spacing:0.209400px;}
.lsc{letter-spacing:0.228960px;}
.ls10{letter-spacing:0.245520px;}
.ls7{letter-spacing:0.564480px;}
.ls6{letter-spacing:0.567360px;}
.ls5{letter-spacing:0.567600px;}
.lse{letter-spacing:0.624000px;}
.ls0{letter-spacing:0.774720px;}
.ls4{letter-spacing:1.026000px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws5{word-spacing:-22.061520px;}
.ws8{word-spacing:-21.244920px;}
.ws3{word-spacing:-21.035520px;}
.ws7{word-spacing:-20.391120px;}
.ws1{word-spacing:-16.613280px;}
.ws0{word-spacing:-14.970240px;}
.ws2{word-spacing:-13.625280px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-3.057840px;}
._2{margin-left:-1.833840px;}
._0{width:1.761840px;}
._4{width:2.829840px;}
._3{width:4.055280px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(102,51,0);}
.fc1{color:rgb(128,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:2.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.yf{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.180000px;}
.y9{bottom:1.620000px;}
.y98{bottom:3.051000px;}
.y172{bottom:3.075000px;}
.y176{bottom:3.420000px;}
.y7{bottom:4.140000px;}
.y3{bottom:4.680000px;}
.y12{bottom:6.840000px;}
.yd{bottom:7.920000px;}
.y175{bottom:20.700000px;}
.y97{bottom:21.231000px;}
.y171{bottom:21.435000px;}
.yc4{bottom:24.111000px;}
.y11{bottom:24.120000px;}
.y35{bottom:24.291000px;}
.yc{bottom:25.200000px;}
.y99{bottom:34.425000px;}
.y6a{bottom:37.125000px;}
.y14b{bottom:39.411000px;}
.y96{bottom:39.591000px;}
.y170{bottom:39.615000px;}
.y69{bottom:42.291000px;}
.y104{bottom:42.471000px;}
.yb{bottom:42.480000px;}
.y105{bottom:42.705000px;}
.y95{bottom:57.771000px;}
.y16f{bottom:57.795000px;}
.y14{bottom:57.825000px;}
.y68{bottom:60.471000px;}
.y103{bottom:60.651000px;}
.y34{bottom:63.531000px;}
.y36{bottom:68.085000px;}
.yd6{bottom:73.485000px;}
.y94{bottom:75.951000px;}
.y67{bottom:78.651000px;}
.y102{bottom:78.825000px;}
.y33{bottom:81.531000px;}
.y139{bottom:94.131000px;}
.y93{bottom:94.311000px;}
.y66{bottom:97.005000px;}
.yc3{bottom:97.011000px;}
.y101{bottom:97.185000px;}
.y16e{bottom:97.245000px;}
.y32{bottom:99.705000px;}
.y14a{bottom:112.311000px;}
.y138{bottom:112.485000px;}
.y92{bottom:112.491000px;}
.y65{bottom:115.185000px;}
.yc2{bottom:115.191000px;}
.y100{bottom:115.365000px;}
.y31{bottom:117.885000px;}
.y91{bottom:130.665000px;}
.y64{bottom:133.365000px;}
.yff{bottom:133.545000px;}
.y30{bottom:136.245000px;}
.yd5{bottom:136.425000px;}
.y16d{bottom:136.485000px;}
.y90{bottom:148.845000px;}
.yc1{bottom:151.545000px;}
.y63{bottom:151.725000px;}
.y2f{bottom:154.425000px;}
.y16c{bottom:154.485000px;}
.y137{bottom:167.025000px;}
.y8f{bottom:167.205000px;}
.y62{bottom:169.905000px;}
.y2e{bottom:172.605000px;}
.y16b{bottom:172.845000px;}
.y8e{bottom:185.385000px;}
.y61{bottom:188.085000px;}
.y149{bottom:188.265000px;}
.y2d{bottom:190.785000px;}
.yd4{bottom:190.965000px;}
.y16a{bottom:191.025000px;}
.yfe{bottom:191.145000px;}
.y136{bottom:203.565000px;}
.yc0{bottom:206.265000px;}
.y60{bottom:206.310000px;}
.y2c{bottom:209.145000px;}
.yd3{bottom:209.190000px;}
.y169{bottom:209.205000px;}
.y135{bottom:221.745000px;}
.ybf{bottom:224.625000px;}
.y5f{bottom:224.670000px;}
.y8d{bottom:224.805000px;}
.y2b{bottom:227.370000px;}
.y168{bottom:227.385000px;}
.y148{bottom:227.505000px;}
.yfd{bottom:230.430000px;}
.y134{bottom:240.150000px;}
.y5e{bottom:242.850000px;}
.y2a{bottom:245.550000px;}
.y167{bottom:245.745000px;}
.yfc{bottom:248.610000px;}
.y133{bottom:258.330000px;}
.y5d{bottom:261.030000px;}
.y147{bottom:263.730000px;}
.y29{bottom:263.910000px;}
.y166{bottom:263.925000px;}
.y8c{bottom:264.090000px;}
.yfb{bottom:266.790000px;}
.y132{bottom:276.510000px;}
.y5c{bottom:279.390000px;}
.y28{bottom:282.090000px;}
.y165{bottom:282.105000px;}
.ybe{bottom:282.270000px;}
.yfa{bottom:284.970000px;}
.y131{bottom:294.690000px;}
.y5b{bottom:297.570000px;}
.y27{bottom:300.270000px;}
.yf9{bottom:303.150000px;}
.y130{bottom:313.050000px;}
.y5a{bottom:315.750000px;}
.y26{bottom:318.450000px;}
.y8b{bottom:318.630000px;}
.ybd{bottom:321.510000px;}
.y164{bottom:321.525000px;}
.y12f{bottom:331.230000px;}
.y59{bottom:333.930000px;}
.y25{bottom:336.810000px;}
.ybc{bottom:339.510000px;}
.yf8{bottom:339.690000px;}
.y163{bottom:339.705000px;}
.y12e{bottom:349.410000px;}
.y24{bottom:354.990000px;}
.ybb{bottom:357.690000px;}
.yf7{bottom:357.870000px;}
.y162{bottom:357.885000px;}
.y12d{bottom:367.770000px;}
.y23{bottom:373.170000px;}
.y58{bottom:373.350000px;}
.yba{bottom:376.050000px;}
.y161{bottom:376.065000px;}
.y12c{bottom:385.950000px;}
.y177{bottom:391.395000px;}
.y22{bottom:391.530000px;}
.yb9{bottom:394.230000px;}
.y160{bottom:394.290000px;}
.yf6{bottom:394.410000px;}
.y12b{bottom:404.130000px;}
.y174{bottom:406.875000px;}
.y21{bottom:409.710000px;}
.yb8{bottom:412.410000px;}
.yf5{bottom:412.590000px;}
.y15f{bottom:412.650000px;}
.y12a{bottom:422.310000px;}
.yd2{bottom:427.890000px;}
.yb7{bottom:430.590000px;}
.yf4{bottom:430.770000px;}
.y15e{bottom:430.830000px;}
.y57{bottom:430.950000px;}
.y129{bottom:440.670000px;}
.y173{bottom:441.255000px;}
.y56{bottom:448.950000px;}
.y15d{bottom:449.010000px;}
.y20{bottom:449.130000px;}
.y146{bottom:451.830000px;}
.y128{bottom:458.850000px;}
.y14f{bottom:461.940000px;}
.y14c{bottom:461.955000px;}
.y1f{bottom:467.130000px;}
.y15c{bottom:467.190000px;}
.yd1{bottom:467.310000px;}
.y145{bottom:469.830000px;}
.y8a{bottom:470.190000px;}
.y127{bottom:477.030000px;}
.y55{bottom:485.310000px;}
.yf3{bottom:485.520000px;}
.y15b{bottom:485.550000px;}
.y89{bottom:488.190000px;}
.yb6{bottom:503.490000px;}
.y54{bottom:503.700000px;}
.y15a{bottom:503.730000px;}
.y88{bottom:506.370000px;}
.y1e{bottom:506.580000px;}
.y126{bottom:516.480000px;}
.y53{bottom:521.880000px;}
.y159{bottom:521.910000px;}
.yf2{bottom:522.060000px;}
.y1d{bottom:524.580000px;}
.y87{bottom:524.760000px;}
.yb5{bottom:540.060000px;}
.yf1{bottom:540.240000px;}
.y158{bottom:540.270000px;}
.y144{bottom:542.760000px;}
.y1c{bottom:542.940000px;}
.y125{bottom:555.720000px;}
.yb4{bottom:558.240000px;}
.yf0{bottom:558.420000px;}
.y157{bottom:558.450000px;}
.y1b{bottom:561.120000px;}
.y52{bottom:561.300000px;}
.y124{bottom:573.720000px;}
.yb3{bottom:576.600000px;}
.y156{bottom:576.630000px;}
.yef{bottom:576.780000px;}
.y1a{bottom:579.300000px;}
.yd0{bottom:579.480000px;}
.y123{bottom:592.080000px;}
.y155{bottom:594.810000px;}
.y19{bottom:597.480000px;}
.y86{bottom:597.660000px;}
.y51{bottom:600.540000px;}
.y122{bottom:610.260000px;}
.y154{bottom:613.170000px;}
.y18{bottom:615.840000px;}
.yb2{bottom:616.020000px;}
.y50{bottom:618.540000px;}
.y121{bottom:628.440000px;}
.y153{bottom:631.350000px;}
.y17{bottom:634.020000px;}
.yee{bottom:634.200000px;}
.y4f{bottom:636.720000px;}
.y120{bottom:646.620000px;}
.y152{bottom:649.530000px;}
.y85{bottom:652.200000px;}
.yed{bottom:652.380000px;}
.y4e{bottom:655.080000px;}
.y11f{bottom:664.980000px;}
.y151{bottom:667.920000px;}
.y143{bottom:670.380000px;}
.y84{bottom:670.560000px;}
.y4d{bottom:673.260000px;}
.y16{bottom:673.440000px;}
.y11e{bottom:683.160000px;}
.y83{bottom:688.740000px;}
.y15{bottom:691.440000px;}
.yec{bottom:691.800000px;}
.y11d{bottom:701.340000px;}
.y82{bottom:706.920000px;}
.y150{bottom:707.160000px;}
.yb1{bottom:709.620000px;}
.yeb{bottom:709.800000px;}
.y4c{bottom:712.680000px;}
.y11c{bottom:719.700000px;}
.y142{bottom:725.100000px;}
.y81{bottom:725.280000px;}
.yb0{bottom:727.980000px;}
.yea{bottom:728.160000px;}
.y4b{bottom:730.680000px;}
.y11b{bottom:737.880000px;}
.y141{bottom:743.280000px;}
.y80{bottom:743.460000px;}
.yaf{bottom:746.160000px;}
.ycf{bottom:746.340000px;}
.y14e{bottom:746.385000px;}
.y4a{bottom:748.860000px;}
.y11a{bottom:756.060000px;}
.y7f{bottom:761.640000px;}
.yae{bottom:764.340000px;}
.y13{bottom:764.385000px;}
.ye9{bottom:764.520000px;}
.y14d{bottom:764.565000px;}
.y119{bottom:774.240000px;}
.y7e{bottom:779.820000px;}
.yad{bottom:782.520000px;}
.ye8{bottom:782.745000px;}
.y10{bottom:785.085000px;}
.ye{bottom:785.100000px;}
.yce{bottom:785.625000px;}
.y49{bottom:788.325000px;}
.y118{bottom:792.600000px;}
.y140{bottom:798.000000px;}
.y7d{bottom:798.180000px;}
.yac{bottom:800.880000px;}
.ye7{bottom:801.105000px;}
.ycd{bottom:803.625000px;}
.y48{bottom:806.505000px;}
.y117{bottom:810.825000px;}
.y13f{bottom:816.405000px;}
.ye6{bottom:819.285000px;}
.ycc{bottom:821.985000px;}
.y116{bottom:829.005000px;}
.ye5{bottom:837.465000px;}
.y7c{bottom:837.645000px;}
.ycb{bottom:840.165000px;}
.yab{bottom:840.345000px;}
.y47{bottom:845.925000px;}
.y115{bottom:847.365000px;}
.ye4{bottom:855.645000px;}
.y13e{bottom:855.825000px;}
.yaa{bottom:858.345000px;}
.y114{bottom:865.545000px;}
.ye3{bottom:874.005000px;}
.ya9{bottom:876.525000px;}
.y7b{bottom:876.885000px;}
.y113{bottom:883.725000px;}
.y46{bottom:885.165000px;}
.ye2{bottom:892.185000px;}
.y7a{bottom:894.885000px;}
.y112{bottom:901.905000px;}
.y45{bottom:903.165000px;}
.ye1{bottom:910.365000px;}
.y79{bottom:913.065000px;}
.ya8{bottom:915.945000px;}
.y111{bottom:920.265000px;}
.y44{bottom:921.345000px;}
.ye0{bottom:928.725000px;}
.y78{bottom:931.245000px;}
.ya7{bottom:933.945000px;}
.y43{bottom:939.525000px;}
.ydf{bottom:946.905000px;}
.yca{bottom:949.425000px;}
.y77{bottom:949.605000px;}
.ya6{bottom:952.305000px;}
.y42{bottom:957.885000px;}
.y110{bottom:959.685000px;}
.yde{bottom:965.085000px;}
.y76{bottom:967.785000px;}
.ya5{bottom:970.485000px;}
.y41{bottom:976.065000px;}
.ydd{bottom:983.265000px;}
.y75{bottom:985.965000px;}
.y40{bottom:994.245000px;}
.y10f{bottom:998.925000px;}
.ydc{bottom:1001.625000px;}
.y13d{bottom:1004.145000px;}
.y74{bottom:1004.325000px;}
.yc9{bottom:1007.205000px;}
.ya4{bottom:1009.905000px;}
.y3f{bottom:1012.425000px;}
.y10e{bottom:1016.925000px;}
.y13c{bottom:1022.325000px;}
.y73{bottom:1022.505000px;}
.ya3{bottom:1027.905000px;}
.y3e{bottom:1030.785000px;}
.y10d{bottom:1035.105000px;}
.y72{bottom:1040.685000px;}
.ydb{bottom:1041.045000px;}
.ya2{bottom:1046.085000px;}
.yc8{bottom:1046.445000px;}
.y3d{bottom:1048.965000px;}
.y10c{bottom:1053.285000px;}
.y71{bottom:1058.865000px;}
.ya{bottom:1061.970000px;}
.ya1{bottom:1064.445000px;}
.yc7{bottom:1064.475000px;}
.y3c{bottom:1067.175000px;}
.y10b{bottom:1071.645000px;}
.y13b{bottom:1077.045000px;}
.y70{bottom:1077.225000px;}
.yda{bottom:1080.315000px;}
.ya0{bottom:1082.625000px;}
.yc6{bottom:1082.655000px;}
.y3b{bottom:1085.535000px;}
.y10a{bottom:1089.855000px;}
.y6f{bottom:1095.435000px;}
.yd9{bottom:1098.315000px;}
.y9f{bottom:1100.835000px;}
.y3a{bottom:1103.715000px;}
.y109{bottom:1108.035000px;}
.y6e{bottom:1113.615000px;}
.yd8{bottom:1116.495000px;}
.y9e{bottom:1119.195000px;}
.y39{bottom:1121.895000px;}
.y8{bottom:1122.660000px;}
.yd7{bottom:1134.675000px;}
.y9d{bottom:1137.375000px;}
.y38{bottom:1140.075000px;}
.y6{bottom:1146.240000px;}
.y108{bottom:1147.455000px;}
.y6d{bottom:1153.035000px;}
.y9c{bottom:1155.555000px;}
.y13a{bottom:1155.735000px;}
.y37{bottom:1158.435000px;}
.yc5{bottom:1158.615000px;}
.y107{bottom:1165.455000px;}
.y4{bottom:1166.940000px;}
.y6c{bottom:1171.035000px;}
.y9b{bottom:1173.735000px;}
.y106{bottom:1183.815000px;}
.y2{bottom:1187.640000px;}
.y6b{bottom:1189.395000px;}
.y9a{bottom:1192.095000px;}
.y1{bottom:1226.160000px;}
.h6{height:2.960186px;}
.h3{height:20.160000px;}
.he{height:20.695500px;}
.h5{height:20.700000px;}
.h8{height:23.580000px;}
.h19{height:34.365000px;}
.hd{height:43.506914px;}
.h2{height:50.229844px;}
.h10{height:59.789180px;}
.h9{height:60.690000px;}
.ha{height:62.327813px;}
.h4{height:74.004654px;}
.h7{height:75.093750px;}
.hc{height:276.870000px;}
.hb{height:337.560000px;}
.hf{height:706.560000px;}
.h11{height:706.575000px;}
.h17{height:779.685000px;}
.h18{height:779.700000px;}
.h15{height:1168.155000px;}
.h12{height:1173.555000px;}
.h16{height:1198.935000px;}
.h13{height:1204.515000px;}
.h14{height:1207.215000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:345.315000px;}
.w4{width:488.235000px;}
.w2{width:833.535000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:4.500000px;}
.x6{left:6.840000px;}
.x1{left:29.700000px;}
.x7{left:92.736000px;}
.x4{left:375.015000px;}
.x5{left:488.235000px;}
.x2{left:937.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.135467pt;}
.ls2{letter-spacing:-0.086933pt;}
.ls8{letter-spacing:-0.041600pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.039680pt;}
.lsb{letter-spacing:0.074667pt;}
.lsf{letter-spacing:0.097067pt;}
.ls9{letter-spacing:0.135467pt;}
.lsd{letter-spacing:0.186133pt;}
.lsc{letter-spacing:0.203520pt;}
.ls10{letter-spacing:0.218240pt;}
.ls7{letter-spacing:0.501760pt;}
.ls6{letter-spacing:0.504320pt;}
.ls5{letter-spacing:0.504533pt;}
.lse{letter-spacing:0.554667pt;}
.ls0{letter-spacing:0.688640pt;}
.ls4{letter-spacing:0.912000pt;}
.ws6{word-spacing:-53.120000pt;}
.ws5{word-spacing:-19.610240pt;}
.ws8{word-spacing:-18.884373pt;}
.ws3{word-spacing:-18.698240pt;}
.ws7{word-spacing:-18.125440pt;}
.ws1{word-spacing:-14.767360pt;}
.ws0{word-spacing:-13.306880pt;}
.ws2{word-spacing:-12.111360pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-2.718080pt;}
._2{margin-left:-1.630080pt;}
._0{width:1.566080pt;}
._4{width:2.515413pt;}
._3{width:3.604693pt;}
.fs3{font-size:2.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.yf{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.160000pt;}
.y9{bottom:1.440000pt;}
.y98{bottom:2.712000pt;}
.y172{bottom:2.733333pt;}
.y176{bottom:3.040000pt;}
.y7{bottom:3.680000pt;}
.y3{bottom:4.160000pt;}
.y12{bottom:6.080000pt;}
.yd{bottom:7.040000pt;}
.y175{bottom:18.400000pt;}
.y97{bottom:18.872000pt;}
.y171{bottom:19.053333pt;}
.yc4{bottom:21.432000pt;}
.y11{bottom:21.440000pt;}
.y35{bottom:21.592000pt;}
.yc{bottom:22.400000pt;}
.y99{bottom:30.600000pt;}
.y6a{bottom:33.000000pt;}
.y14b{bottom:35.032000pt;}
.y96{bottom:35.192000pt;}
.y170{bottom:35.213333pt;}
.y69{bottom:37.592000pt;}
.y104{bottom:37.752000pt;}
.yb{bottom:37.760000pt;}
.y105{bottom:37.960000pt;}
.y95{bottom:51.352000pt;}
.y16f{bottom:51.373333pt;}
.y14{bottom:51.400000pt;}
.y68{bottom:53.752000pt;}
.y103{bottom:53.912000pt;}
.y34{bottom:56.472000pt;}
.y36{bottom:60.520000pt;}
.yd6{bottom:65.320000pt;}
.y94{bottom:67.512000pt;}
.y67{bottom:69.912000pt;}
.y102{bottom:70.066667pt;}
.y33{bottom:72.472000pt;}
.y139{bottom:83.672000pt;}
.y93{bottom:83.832000pt;}
.y66{bottom:86.226667pt;}
.yc3{bottom:86.232000pt;}
.y101{bottom:86.386667pt;}
.y16e{bottom:86.440000pt;}
.y32{bottom:88.626667pt;}
.y14a{bottom:99.832000pt;}
.y138{bottom:99.986667pt;}
.y92{bottom:99.992000pt;}
.y65{bottom:102.386667pt;}
.yc2{bottom:102.392000pt;}
.y100{bottom:102.546667pt;}
.y31{bottom:104.786667pt;}
.y91{bottom:116.146667pt;}
.y64{bottom:118.546667pt;}
.yff{bottom:118.706667pt;}
.y30{bottom:121.106667pt;}
.yd5{bottom:121.266667pt;}
.y16d{bottom:121.320000pt;}
.y90{bottom:132.306667pt;}
.yc1{bottom:134.706667pt;}
.y63{bottom:134.866667pt;}
.y2f{bottom:137.266667pt;}
.y16c{bottom:137.320000pt;}
.y137{bottom:148.466667pt;}
.y8f{bottom:148.626667pt;}
.y62{bottom:151.026667pt;}
.y2e{bottom:153.426667pt;}
.y16b{bottom:153.640000pt;}
.y8e{bottom:164.786667pt;}
.y61{bottom:167.186667pt;}
.y149{bottom:167.346667pt;}
.y2d{bottom:169.586667pt;}
.yd4{bottom:169.746667pt;}
.y16a{bottom:169.800000pt;}
.yfe{bottom:169.906667pt;}
.y136{bottom:180.946667pt;}
.yc0{bottom:183.346667pt;}
.y60{bottom:183.386667pt;}
.y2c{bottom:185.906667pt;}
.yd3{bottom:185.946667pt;}
.y169{bottom:185.960000pt;}
.y135{bottom:197.106667pt;}
.ybf{bottom:199.666667pt;}
.y5f{bottom:199.706667pt;}
.y8d{bottom:199.826667pt;}
.y2b{bottom:202.106667pt;}
.y168{bottom:202.120000pt;}
.y148{bottom:202.226667pt;}
.yfd{bottom:204.826667pt;}
.y134{bottom:213.466667pt;}
.y5e{bottom:215.866667pt;}
.y2a{bottom:218.266667pt;}
.y167{bottom:218.440000pt;}
.yfc{bottom:220.986667pt;}
.y133{bottom:229.626667pt;}
.y5d{bottom:232.026667pt;}
.y147{bottom:234.426667pt;}
.y29{bottom:234.586667pt;}
.y166{bottom:234.600000pt;}
.y8c{bottom:234.746667pt;}
.yfb{bottom:237.146667pt;}
.y132{bottom:245.786667pt;}
.y5c{bottom:248.346667pt;}
.y28{bottom:250.746667pt;}
.y165{bottom:250.760000pt;}
.ybe{bottom:250.906667pt;}
.yfa{bottom:253.306667pt;}
.y131{bottom:261.946667pt;}
.y5b{bottom:264.506667pt;}
.y27{bottom:266.906667pt;}
.yf9{bottom:269.466667pt;}
.y130{bottom:278.266667pt;}
.y5a{bottom:280.666667pt;}
.y26{bottom:283.066667pt;}
.y8b{bottom:283.226667pt;}
.ybd{bottom:285.786667pt;}
.y164{bottom:285.800000pt;}
.y12f{bottom:294.426667pt;}
.y59{bottom:296.826667pt;}
.y25{bottom:299.386667pt;}
.ybc{bottom:301.786667pt;}
.yf8{bottom:301.946667pt;}
.y163{bottom:301.960000pt;}
.y12e{bottom:310.586667pt;}
.y24{bottom:315.546667pt;}
.ybb{bottom:317.946667pt;}
.yf7{bottom:318.106667pt;}
.y162{bottom:318.120000pt;}
.y12d{bottom:326.906667pt;}
.y23{bottom:331.706667pt;}
.y58{bottom:331.866667pt;}
.yba{bottom:334.266667pt;}
.y161{bottom:334.280000pt;}
.y12c{bottom:343.066667pt;}
.y177{bottom:347.906667pt;}
.y22{bottom:348.026667pt;}
.yb9{bottom:350.426667pt;}
.y160{bottom:350.480000pt;}
.yf6{bottom:350.586667pt;}
.y12b{bottom:359.226667pt;}
.y174{bottom:361.666667pt;}
.y21{bottom:364.186667pt;}
.yb8{bottom:366.586667pt;}
.yf5{bottom:366.746667pt;}
.y15f{bottom:366.800000pt;}
.y12a{bottom:375.386667pt;}
.yd2{bottom:380.346667pt;}
.yb7{bottom:382.746667pt;}
.yf4{bottom:382.906667pt;}
.y15e{bottom:382.960000pt;}
.y57{bottom:383.066667pt;}
.y129{bottom:391.706667pt;}
.y173{bottom:392.226667pt;}
.y56{bottom:399.066667pt;}
.y15d{bottom:399.120000pt;}
.y20{bottom:399.226667pt;}
.y146{bottom:401.626667pt;}
.y128{bottom:407.866667pt;}
.y14f{bottom:410.613333pt;}
.y14c{bottom:410.626667pt;}
.y1f{bottom:415.226667pt;}
.y15c{bottom:415.280000pt;}
.yd1{bottom:415.386667pt;}
.y145{bottom:417.626667pt;}
.y8a{bottom:417.946667pt;}
.y127{bottom:424.026667pt;}
.y55{bottom:431.386667pt;}
.yf3{bottom:431.573333pt;}
.y15b{bottom:431.600000pt;}
.y89{bottom:433.946667pt;}
.yb6{bottom:447.546667pt;}
.y54{bottom:447.733333pt;}
.y15a{bottom:447.760000pt;}
.y88{bottom:450.106667pt;}
.y1e{bottom:450.293333pt;}
.y126{bottom:459.093333pt;}
.y53{bottom:463.893333pt;}
.y159{bottom:463.920000pt;}
.yf2{bottom:464.053333pt;}
.y1d{bottom:466.293333pt;}
.y87{bottom:466.453333pt;}
.yb5{bottom:480.053333pt;}
.yf1{bottom:480.213333pt;}
.y158{bottom:480.240000pt;}
.y144{bottom:482.453333pt;}
.y1c{bottom:482.613333pt;}
.y125{bottom:493.973333pt;}
.yb4{bottom:496.213333pt;}
.yf0{bottom:496.373333pt;}
.y157{bottom:496.400000pt;}
.y1b{bottom:498.773333pt;}
.y52{bottom:498.933333pt;}
.y124{bottom:509.973333pt;}
.yb3{bottom:512.533333pt;}
.y156{bottom:512.560000pt;}
.yef{bottom:512.693333pt;}
.y1a{bottom:514.933333pt;}
.yd0{bottom:515.093333pt;}
.y123{bottom:526.293333pt;}
.y155{bottom:528.720000pt;}
.y19{bottom:531.093333pt;}
.y86{bottom:531.253333pt;}
.y51{bottom:533.813333pt;}
.y122{bottom:542.453333pt;}
.y154{bottom:545.040000pt;}
.y18{bottom:547.413333pt;}
.yb2{bottom:547.573333pt;}
.y50{bottom:549.813333pt;}
.y121{bottom:558.613333pt;}
.y153{bottom:561.200000pt;}
.y17{bottom:563.573333pt;}
.yee{bottom:563.733333pt;}
.y4f{bottom:565.973333pt;}
.y120{bottom:574.773333pt;}
.y152{bottom:577.360000pt;}
.y85{bottom:579.733333pt;}
.yed{bottom:579.893333pt;}
.y4e{bottom:582.293333pt;}
.y11f{bottom:591.093333pt;}
.y151{bottom:593.706667pt;}
.y143{bottom:595.893333pt;}
.y84{bottom:596.053333pt;}
.y4d{bottom:598.453333pt;}
.y16{bottom:598.613333pt;}
.y11e{bottom:607.253333pt;}
.y83{bottom:612.213333pt;}
.y15{bottom:614.613333pt;}
.yec{bottom:614.933333pt;}
.y11d{bottom:623.413333pt;}
.y82{bottom:628.373333pt;}
.y150{bottom:628.586667pt;}
.yb1{bottom:630.773333pt;}
.yeb{bottom:630.933333pt;}
.y4c{bottom:633.493333pt;}
.y11c{bottom:639.733333pt;}
.y142{bottom:644.533333pt;}
.y81{bottom:644.693333pt;}
.yb0{bottom:647.093333pt;}
.yea{bottom:647.253333pt;}
.y4b{bottom:649.493333pt;}
.y11b{bottom:655.893333pt;}
.y141{bottom:660.693333pt;}
.y80{bottom:660.853333pt;}
.yaf{bottom:663.253333pt;}
.ycf{bottom:663.413333pt;}
.y14e{bottom:663.453333pt;}
.y4a{bottom:665.653333pt;}
.y11a{bottom:672.053333pt;}
.y7f{bottom:677.013333pt;}
.yae{bottom:679.413333pt;}
.y13{bottom:679.453333pt;}
.ye9{bottom:679.573333pt;}
.y14d{bottom:679.613333pt;}
.y119{bottom:688.213333pt;}
.y7e{bottom:693.173333pt;}
.yad{bottom:695.573333pt;}
.ye8{bottom:695.773333pt;}
.y10{bottom:697.853333pt;}
.ye{bottom:697.866667pt;}
.yce{bottom:698.333333pt;}
.y49{bottom:700.733333pt;}
.y118{bottom:704.533333pt;}
.y140{bottom:709.333333pt;}
.y7d{bottom:709.493333pt;}
.yac{bottom:711.893333pt;}
.ye7{bottom:712.093333pt;}
.ycd{bottom:714.333333pt;}
.y48{bottom:716.893333pt;}
.y117{bottom:720.733333pt;}
.y13f{bottom:725.693333pt;}
.ye6{bottom:728.253333pt;}
.ycc{bottom:730.653333pt;}
.y116{bottom:736.893333pt;}
.ye5{bottom:744.413333pt;}
.y7c{bottom:744.573333pt;}
.ycb{bottom:746.813333pt;}
.yab{bottom:746.973333pt;}
.y47{bottom:751.933333pt;}
.y115{bottom:753.213333pt;}
.ye4{bottom:760.573333pt;}
.y13e{bottom:760.733333pt;}
.yaa{bottom:762.973333pt;}
.y114{bottom:769.373333pt;}
.ye3{bottom:776.893333pt;}
.ya9{bottom:779.133333pt;}
.y7b{bottom:779.453333pt;}
.y113{bottom:785.533333pt;}
.y46{bottom:786.813333pt;}
.ye2{bottom:793.053333pt;}
.y7a{bottom:795.453333pt;}
.y112{bottom:801.693333pt;}
.y45{bottom:802.813333pt;}
.ye1{bottom:809.213333pt;}
.y79{bottom:811.613333pt;}
.ya8{bottom:814.173333pt;}
.y111{bottom:818.013333pt;}
.y44{bottom:818.973333pt;}
.ye0{bottom:825.533333pt;}
.y78{bottom:827.773333pt;}
.ya7{bottom:830.173333pt;}
.y43{bottom:835.133333pt;}
.ydf{bottom:841.693333pt;}
.yca{bottom:843.933333pt;}
.y77{bottom:844.093333pt;}
.ya6{bottom:846.493333pt;}
.y42{bottom:851.453333pt;}
.y110{bottom:853.053333pt;}
.yde{bottom:857.853333pt;}
.y76{bottom:860.253333pt;}
.ya5{bottom:862.653333pt;}
.y41{bottom:867.613333pt;}
.ydd{bottom:874.013333pt;}
.y75{bottom:876.413333pt;}
.y40{bottom:883.773333pt;}
.y10f{bottom:887.933333pt;}
.ydc{bottom:890.333333pt;}
.y13d{bottom:892.573333pt;}
.y74{bottom:892.733333pt;}
.yc9{bottom:895.293333pt;}
.ya4{bottom:897.693333pt;}
.y3f{bottom:899.933333pt;}
.y10e{bottom:903.933333pt;}
.y13c{bottom:908.733333pt;}
.y73{bottom:908.893333pt;}
.ya3{bottom:913.693333pt;}
.y3e{bottom:916.253333pt;}
.y10d{bottom:920.093333pt;}
.y72{bottom:925.053333pt;}
.ydb{bottom:925.373333pt;}
.ya2{bottom:929.853333pt;}
.yc8{bottom:930.173333pt;}
.y3d{bottom:932.413333pt;}
.y10c{bottom:936.253333pt;}
.y71{bottom:941.213333pt;}
.ya{bottom:943.973333pt;}
.ya1{bottom:946.173333pt;}
.yc7{bottom:946.200000pt;}
.y3c{bottom:948.600000pt;}
.y10b{bottom:952.573333pt;}
.y13b{bottom:957.373333pt;}
.y70{bottom:957.533333pt;}
.yda{bottom:960.280000pt;}
.ya0{bottom:962.333333pt;}
.yc6{bottom:962.360000pt;}
.y3b{bottom:964.920000pt;}
.y10a{bottom:968.760000pt;}
.y6f{bottom:973.720000pt;}
.yd9{bottom:976.280000pt;}
.y9f{bottom:978.520000pt;}
.y3a{bottom:981.080000pt;}
.y109{bottom:984.920000pt;}
.y6e{bottom:989.880000pt;}
.yd8{bottom:992.440000pt;}
.y9e{bottom:994.840000pt;}
.y39{bottom:997.240000pt;}
.y8{bottom:997.920000pt;}
.yd7{bottom:1008.600000pt;}
.y9d{bottom:1011.000000pt;}
.y38{bottom:1013.400000pt;}
.y6{bottom:1018.880000pt;}
.y108{bottom:1019.960000pt;}
.y6d{bottom:1024.920000pt;}
.y9c{bottom:1027.160000pt;}
.y13a{bottom:1027.320000pt;}
.y37{bottom:1029.720000pt;}
.yc5{bottom:1029.880000pt;}
.y107{bottom:1035.960000pt;}
.y4{bottom:1037.280000pt;}
.y6c{bottom:1040.920000pt;}
.y9b{bottom:1043.320000pt;}
.y106{bottom:1052.280000pt;}
.y2{bottom:1055.680000pt;}
.y6b{bottom:1057.240000pt;}
.y9a{bottom:1059.640000pt;}
.y1{bottom:1089.920000pt;}
.h6{height:2.631277pt;}
.h3{height:17.920000pt;}
.he{height:18.396000pt;}
.h5{height:18.400000pt;}
.h8{height:20.960000pt;}
.h19{height:30.546667pt;}
.hd{height:38.672812pt;}
.h2{height:44.648750pt;}
.h10{height:53.145938pt;}
.h9{height:53.946667pt;}
.ha{height:55.402500pt;}
.h4{height:65.781915pt;}
.h7{height:66.750000pt;}
.hc{height:246.106667pt;}
.hb{height:300.053333pt;}
.hf{height:628.053333pt;}
.h11{height:628.066667pt;}
.h17{height:693.053333pt;}
.h18{height:693.066667pt;}
.h15{height:1038.360000pt;}
.h12{height:1043.160000pt;}
.h16{height:1065.720000pt;}
.h13{height:1070.680000pt;}
.h14{height:1073.080000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:306.946667pt;}
.w4{width:433.986667pt;}
.w2{width:740.920000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:4.000000pt;}
.x6{left:6.080000pt;}
.x1{left:26.400000pt;}
.x7{left:82.432000pt;}
.x4{left:333.346667pt;}
.x5{left:433.986667pt;}
.x2{left:833.440000pt;}
}

