
    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_11a743955cdbf078e2d7a3fc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.186035;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_8a3eafbacabf605cd83041ee.woff')format("woff");}.ff2{font-family:ff2;line-height:0.966309;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_6c6acf3ba5ea5205cc38c6cf.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_5623dad7355e0b13e16edd81.woff')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_10764f758c882d0f6c5d8d7d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9c03ae6533c548be8d2680f7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.181152;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_2bb91ec1e0eaa9e99b858d2e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.181152;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_a8a739679b9a7ce1477a82c3.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a9a964baa0561a2a9696fc0f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.186035;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_e949d3c418c210d2e515c145.woff')format("woff");}.ffc{font-family:ffc;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;}
.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:20.880000px;}
.lsa{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.301200px;}
.ls8{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.252000px;}
.ls9{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.181200px;}
.ls15{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.054000px;}
.ls16{letter-spacing:-0.051840px;}
.ls18{letter-spacing:-0.036000px;}
.ls7{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.228960px;}
.ls2{letter-spacing:0.252000px;}
.lsf{letter-spacing:0.269400px;}
.lsb{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.472320px;}
.ls6{letter-spacing:0.564480px;}
.ls10{letter-spacing:1.152000px;}
.ls13{letter-spacing:11.542320px;}
.ls12{letter-spacing:11.620800px;}
.ls11{letter-spacing:68.508000px;}
.ls0{letter-spacing:196.992000px;}
.ls3{letter-spacing:197.585280px;}
.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;}
}
.wsb{word-spacing:-54.000000px;}
.wsc{word-spacing:-27.371520px;}
.ws8{word-spacing:-19.224000px;}
.wsd{word-spacing:-19.170000px;}
.ws0{word-spacing:-19.008000px;}
.ws10{word-spacing:-18.972000px;}
.ws9{word-spacing:-18.954000px;}
.wsa{word-spacing:-18.864000px;}
.ws1{word-spacing:-18.792000px;}
.wse{word-spacing:-18.756000px;}
.ws2{word-spacing:-18.504000px;}
.ws4{word-spacing:-16.980480px;}
.wsf{word-spacing:-16.679280px;}
.ws3{word-spacing:-15.228000px;}
.ws6{word-spacing:-13.410720px;}
.ws7{word-spacing:-13.229520px;}
.ws5{word-spacing:0.000000px;}
._28{margin-left:-2.274480px;}
._1{margin-left:-1.026000px;}
._0{width:1.235760px;}
._5{width:2.376000px;}
._4{width:3.726000px;}
._3{width:5.238000px;}
._6{width:6.264480px;}
._10{width:7.295760px;}
._d{width:8.370000px;}
._c{width:9.882000px;}
._8{width:11.124000px;}
._7{width:12.312000px;}
._13{width:13.824000px;}
._2c{width:14.862000px;}
._9{width:15.876000px;}
._2{width:16.956000px;}
._27{width:20.142000px;}
._b{width:21.708000px;}
._a{width:22.896000px;}
._2e{width:24.029520px;}
._11{width:25.176960px;}
._f{width:26.946000px;}
._e{width:28.296000px;}
._26{width:29.430000px;}
._1e{width:31.104000px;}
._17{width:32.508000px;}
._16{width:33.588000px;}
._15{width:34.614000px;}
._1b{width:36.288000px;}
._14{width:37.422000px;}
._20{width:39.096000px;}
._1f{width:40.554000px;}
._21{width:42.420000px;}
._2d{width:44.388000px;}
._25{width:45.414000px;}
._24{width:46.872000px;}
._31{width:49.248000px;}
._1a{width:52.974000px;}
._19{width:54.216000px;}
._29{width:55.482480px;}
._23{width:56.693760px;}
._18{width:58.326240px;}
._1c{width:59.724000px;}
._30{width:61.614000px;}
._2f{width:62.640000px;}
._32{width:66.522000px;}
._22{width:76.302000px;}
._1d{width:77.436000px;}
._2b{width:79.164000px;}
._2a{width:80.190000px;}
._34{width:81.270000px;}
._35{width:87.804000px;}
._33{width:116.802000px;}
._37{width:157.464000px;}
._36{width:223.716000px;}
._12{width:1426.188000px;}
.fc8{color:rgb(33,88,104);}
.fc6{color:transparent;}
.fc9{color:rgb(0,0,255);}
.fc4{color:rgb(49,132,155);}
.fc7{color:rgb(128,128,128);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs9{font-size:77.904000px;}
.fs7{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:1.080000px;}
.y147{bottom:2.520000px;}
.y156{bottom:2.550000px;}
.y40{bottom:2.880000px;}
.y8{bottom:3.600000px;}
.y7{bottom:3.960000px;}
.y146{bottom:17.100000px;}
.y155{bottom:17.130000px;}
.y109{bottom:18.720000px;}
.yb{bottom:19.620000px;}
.y107{bottom:20.340000px;}
.y145{bottom:31.680000px;}
.y154{bottom:31.710000px;}
.y9{bottom:43.920000px;}
.y17c{bottom:43.956000px;}
.y144{bottom:46.260000px;}
.y153{bottom:46.290000px;}
.y108{bottom:49.320000px;}
.y106{bottom:50.760000px;}
.y41{bottom:51.660000px;}
.ya{bottom:52.560000px;}
.y143{bottom:60.840000px;}
.y152{bottom:60.870000px;}
.y14c{bottom:60.885000px;}
.y103{bottom:64.800000px;}
.yf9{bottom:66.030000px;}
.y6{bottom:68.400000px;}
.y17b{bottom:68.436000px;}
.y14f{bottom:75.420000px;}
.y151{bottom:75.450000px;}
.y14b{bottom:75.465000px;}
.y102{bottom:86.220000px;}
.yf8{bottom:87.450000px;}
.y14e{bottom:90.000000px;}
.y14a{bottom:90.045000px;}
.y149{bottom:104.625000px;}
.y101{bottom:107.460000px;}
.yf7{bottom:108.690000px;}
.y3a{bottom:117.000000px;}
.yd4{bottom:121.500000px;}
.yec{bottom:125.280000px;}
.y7c{bottom:126.720000px;}
.y13c{bottom:127.620000px;}
.y100{bottom:132.300000px;}
.yf6{bottom:133.560000px;}
.yb3{bottom:134.460000px;}
.y12c{bottom:135.180000px;}
.yd3{bottom:137.880000px;}
.yeb{bottom:141.660000px;}
.y7b{bottom:143.100000px;}
.y13b{bottom:144.180000px;}
.y17e{bottom:148.176000px;}
.yb2{bottom:150.840000px;}
.y12b{bottom:151.560000px;}
.yff{bottom:153.720000px;}
.y177{bottom:153.900000px;}
.yd2{bottom:154.260000px;}
.yf5{bottom:154.980000px;}
.yea{bottom:158.040000px;}
.y7a{bottom:159.480000px;}
.y39{bottom:160.590000px;}
.y38{bottom:165.810000px;}
.yb1{bottom:167.250000px;}
.y12a{bottom:167.970000px;}
.y16d{bottom:170.310000px;}
.yd1{bottom:170.670000px;}
.ye9{bottom:174.450000px;}
.yfe{bottom:174.960000px;}
.y79{bottom:175.890000px;}
.yf4{bottom:176.220000px;}
.y13a{bottom:176.970000px;}
.y176{bottom:183.630000px;}
.yb0{bottom:183.810000px;}
.y129{bottom:184.350000px;}
.y16c{bottom:186.870000px;}
.yd0{bottom:187.050000px;}
.y37{bottom:187.590000px;}
.ye8{bottom:191.010000px;}
.y78{bottom:192.450000px;}
.y139{bottom:193.350000px;}
.yfd{bottom:196.410000px;}
.yf3{bottom:197.640000px;}
.y175{bottom:200.010000px;}
.yaf{bottom:200.190000px;}
.y128{bottom:200.730000px;}
.y16b{bottom:203.250000px;}
.ye7{bottom:207.390000px;}
.y77{bottom:208.830000px;}
.y138{bottom:209.730000px;}
.y36{bottom:213.330000px;}
.ycf{bottom:213.510000px;}
.yae{bottom:216.570000px;}
.y127{bottom:217.110000px;}
.y16a{bottom:219.630000px;}
.yfc{bottom:221.250000px;}
.yf2{bottom:222.480000px;}
.y76{bottom:225.210000px;}
.y137{bottom:226.110000px;}
.ye6{bottom:232.770000px;}
.yad{bottom:232.950000px;}
.y126{bottom:233.490000px;}
.yce{bottom:234.210000px;}
.y35{bottom:240.330000px;}
.y75{bottom:241.590000px;}
.y136{bottom:242.490000px;}
.yfb{bottom:242.670000px;}
.yf1{bottom:243.900000px;}
.y169{bottom:245.010000px;}
.ye5{bottom:249.150000px;}
.yac{bottom:249.330000px;}
.y125{bottom:250.050000px;}
.y34{bottom:256.710000px;}
.y74{bottom:257.970000px;}
.y135{bottom:259.050000px;}
.y168{bottom:261.390000px;}
.ycd{bottom:263.010000px;}
.yfa{bottom:263.910000px;}
.yf0{bottom:265.140000px;}
.ye4{bottom:265.530000px;}
.yab{bottom:265.710000px;}
.y124{bottom:266.430000px;}
.y33{bottom:273.090000px;}
.y73{bottom:274.350000px;}
.y134{bottom:275.430000px;}
.y167{bottom:277.770000px;}
.yaa{bottom:282.090000px;}
.y123{bottom:282.810000px;}
.ycc{bottom:288.390000px;}
.y32{bottom:289.470000px;}
.y72{bottom:290.910000px;}
.y133{bottom:291.810000px;}
.ye3{bottom:291.990000px;}
.y166{bottom:294.330000px;}
.ya9{bottom:298.650000px;}
.y122{bottom:299.190000px;}
.ycb{bottom:304.770000px;}
.y31{bottom:305.850000px;}
.y71{bottom:307.290000px;}
.y174{bottom:307.470000px;}
.y132{bottom:308.190000px;}
.y165{bottom:310.710000px;}
.ya8{bottom:315.030000px;}
.ye2{bottom:320.610000px;}
.yca{bottom:321.150000px;}
.y30{bottom:322.410000px;}
.y70{bottom:323.670000px;}
.y173{bottom:324.030000px;}
.y131{bottom:324.570000px;}
.y121{bottom:325.650000px;}
.y164{bottom:327.090000px;}
.yef{bottom:328.500000px;}
.ya7{bottom:331.410000px;}
.yc9{bottom:337.530000px;}
.y2f{bottom:338.790000px;}
.y172{bottom:340.410000px;}
.ye1{bottom:345.990000px;}
.y6f{bottom:349.050000px;}
.y130{bottom:351.030000px;}
.y163{bottom:352.470000px;}
.yc8{bottom:353.910000px;}
.y120{bottom:354.270000px;}
.y2e{bottom:355.170000px;}
.ya6{bottom:356.790000px;}
.yee{bottom:360.360000px;}
.ye0{bottom:362.550000px;}
.y6e{bottom:365.430000px;}
.y162{bottom:368.850000px;}
.yc7{bottom:370.290000px;}
.y2d{bottom:371.550000px;}
.ya5{bottom:373.170000px;}
.ydf{bottom:378.930000px;}
.y11f{bottom:379.650000px;}
.y6d{bottom:381.810000px;}
.y161{bottom:385.230000px;}
.yc6{bottom:386.850000px;}
.ya4{bottom:389.550000px;}
.yde{bottom:395.310000px;}
.y11e{bottom:396.210000px;}
.y6c{bottom:398.190000px;}
.y171{bottom:398.550000px;}
.y2c{bottom:399.990000px;}
.y160{bottom:401.610000px;}
.y12f{bottom:405.255000px;}
.ya3{bottom:406.155000px;}
.y3d{bottom:406.515000px;}
.yc5{bottom:412.275000px;}
.y6b{bottom:414.795000px;}
.y170{bottom:414.975000px;}
.y15f{bottom:418.215000px;}
.ydd{bottom:420.735000px;}
.y11d{bottom:421.635000px;}
.ya2{bottom:422.535000px;}
.yc4{bottom:428.655000px;}
.y6a{bottom:431.175000px;}
.y16f{bottom:431.355000px;}
.y11c{bottom:438.015000px;}
.ya1{bottom:438.915000px;}
.y2b{bottom:441.975000px;}
.y15e{bottom:444.675000px;}
.yc3{bottom:445.035000px;}
.ydc{bottom:446.115000px;}
.y69{bottom:447.555000px;}
.y16e{bottom:447.915000px;}
.y11b{bottom:454.395000px;}
.ya0{bottom:455.295000px;}
.yc2{bottom:461.415000px;}
.y68{bottom:463.935000px;}
.y2a{bottom:467.715000px;}
.y11a{bottom:470.775000px;}
.ydb{bottom:471.495000px;}
.y9f{bottom:471.675000px;}
.y15d{bottom:472.935000px;}
.yc1{bottom:477.795000px;}
.y67{bottom:480.315000px;}
.y29{bottom:485.715000px;}
.y119{bottom:487.155000px;}
.yc0{bottom:494.175000px;}
.y66{bottom:496.695000px;}
.yda{bottom:496.875000px;}
.y9e{bottom:498.135000px;}
.y15c{bottom:500.655000px;}
.y118{bottom:503.535000px;}
.ybf{bottom:510.735000px;}
.y28{bottom:511.095000px;}
.y65{bottom:513.075000px;}
.yd9{bottom:513.435000px;}
.y15b{bottom:516.315000px;}
.y9d{bottom:517.755000px;}
.y117{bottom:520.095000px;}
.ybe{bottom:527.115000px;}
.y27{bottom:527.475000px;}
.y12e{bottom:529.095000px;}
.y64{bottom:529.635000px;}
.y15a{bottom:532.155000px;}
.y116{bottom:536.475000px;}
.yd8{bottom:538.815000px;}
.y9c{bottom:543.135000px;}
.ybd{bottom:543.495000px;}
.y26{bottom:543.855000px;}
.y12d{bottom:545.475000px;}
.y63{bottom:546.015000px;}
.y159{bottom:547.815000px;}
.y9b{bottom:559.695000px;}
.ybc{bottom:559.875000px;}
.y25{bottom:560.235000px;}
.y115{bottom:561.855000px;}
.y62{bottom:562.395000px;}
.y158{bottom:563.475000px;}
.yd7{bottom:564.195000px;}
.y9a{bottom:576.075000px;}
.ybb{bottom:576.255000px;}
.y157{bottom:576.435000px;}
.y24{bottom:576.615000px;}
.y114{bottom:578.235000px;}
.y61{bottom:578.775000px;}
.yd6{bottom:589.575000px;}
.y99{bottom:592.455000px;}
.y23{bottom:593.175000px;}
.y113{bottom:594.615000px;}
.yba{bottom:602.715000px;}
.y60{bottom:604.155000px;}
.yd5{bottom:605.955000px;}
.y98{bottom:608.835000px;}
.y22{bottom:609.555000px;}
.y112{bottom:610.995000px;}
.y5f{bottom:620.535000px;}
.y97{bottom:625.215000px;}
.y21{bottom:625.935000px;}
.y111{bottom:627.375000px;}
.yb9{bottom:632.055000px;}
.y5e{bottom:637.095000px;}
.y96{bottom:641.595000px;}
.y20{bottom:642.315000px;}
.y110{bottom:643.935000px;}
.y150{bottom:650.055000px;}
.y5d{bottom:653.505000px;}
.y95{bottom:658.005000px;}
.y1f{bottom:658.725000px;}
.yb8{bottom:659.085000px;}
.y10f{bottom:669.345000px;}
.y5c{bottom:669.885000px;}
.yb7{bottom:673.665000px;}
.y94{bottom:674.565000px;}
.y1e{bottom:675.105000px;}
.y5b{bottom:686.265000px;}
.yb6{bottom:688.245000px;}
.y1d{bottom:691.485000px;}
.y10e{bottom:694.365000px;}
.y93{bottom:701.025000px;}
.y5a{bottom:702.645000px;}
.yb5{bottom:702.825000px;}
.y1c{bottom:708.045000px;}
.y10d{bottom:708.945000px;}
.yed{bottom:714.960000px;}
.y59{bottom:719.025000px;}
.y92{bottom:721.725000px;}
.y10c{bottom:723.525000px;}
.y1b{bottom:724.425000px;}
.yb4{bottom:733.245000px;}
.y58{bottom:735.405000px;}
.y10b{bottom:738.105000px;}
.y14d{bottom:738.285000px;}
.y1a{bottom:740.805000px;}
.y91{bottom:750.345000px;}
.y17d{bottom:751.650000px;}
.y57{bottom:751.965000px;}
.y10a{bottom:752.685000px;}
.y19{bottom:757.185000px;}
.y105{bottom:764.745000px;}
.y56{bottom:768.345000px;}
.y18{bottom:773.565000px;}
.y90{bottom:775.725000px;}
.y17a{bottom:780.810000px;}
.y55{bottom:784.725000px;}
.y8f{bottom:792.105000px;}
.y54{bottom:801.105000px;}
.y17{bottom:806.145000px;}
.y8e{bottom:808.485000px;}
.y3b{bottom:812.625000px;}
.y179{bottom:814.680000px;}
.y53{bottom:817.485000px;}
.y8d{bottom:824.865000px;}
.y52{bottom:833.865000px;}
.y178{bottom:835.920000px;}
.y8c{bottom:841.245000px;}
.y16{bottom:848.265000px;}
.y8b{bottom:857.805000px;}
.y51{bottom:859.245000px;}
.y15{bottom:870.765000px;}
.y8a{bottom:874.185000px;}
.y50{bottom:875.805000px;}
.y14{bottom:888.945000px;}
.y89{bottom:890.565000px;}
.y4f{bottom:892.185000px;}
.y88{bottom:906.990000px;}
.y13{bottom:907.170000px;}
.y4e{bottom:908.610000px;}
.y87{bottom:923.370000px;}
.y4d{bottom:924.990000px;}
.y12{bottom:925.170000px;}
.y86{bottom:939.750000px;}
.y4c{bottom:941.370000px;}
.y11{bottom:943.530000px;}
.y85{bottom:956.310000px;}
.y4b{bottom:957.750000px;}
.y148{bottom:958.650000px;}
.y10{bottom:961.710000px;}
.y4a{bottom:974.310000px;}
.yf{bottom:980.250000px;}
.y84{bottom:982.770000px;}
.y49{bottom:990.690000px;}
.ye{bottom:1000.770000px;}
.y142{bottom:1003.110000px;}
.y48{bottom:1007.070000px;}
.y83{bottom:1011.390000px;}
.y104{bottom:1019.490000px;}
.y47{bottom:1023.450000px;}
.yd{bottom:1026.330000px;}
.y82{bottom:1036.770000px;}
.y46{bottom:1039.830000px;}
.yc{bottom:1051.890000px;}
.y81{bottom:1053.150000px;}
.y45{bottom:1056.210000px;}
.y80{bottom:1069.530000px;}
.y44{bottom:1072.590000px;}
.y7f{bottom:1085.910000px;}
.y43{bottom:1089.150000px;}
.y141{bottom:1092.390000px;}
.y7e{bottom:1102.290000px;}
.y5{bottom:1114.890000px;}
.y42{bottom:1115.610000px;}
.y7d{bottom:1118.850000px;}
.y140{bottom:1120.290000px;}
.y4{bottom:1140.270000px;}
.y13f{bottom:1150.740000px;}
.y3{bottom:1166.040000px;}
.y13e{bottom:1184.580000px;}
.y3f{bottom:1185.840000px;}
.y2{bottom:1202.400000px;}
.y13d{bottom:1205.820000px;}
.y3e{bottom:1206.540000px;}
.y1{bottom:1238.760000px;}
.he{height:17.640000px;}
.h10{height:24.480000px;}
.h5{height:25.560000px;}
.h19{height:36.651094px;}
.hd{height:37.892813px;}
.h1f{height:41.027344px;}
.h8{height:41.220000px;}
.h1b{height:43.740000px;}
.h12{height:47.015156px;}
.hf{height:50.312812px;}
.h3{height:52.628906px;}
.h7{height:53.709961px;}
.h6{height:56.320312px;}
.h2{height:58.242656px;}
.ha{height:58.772813px;}
.hb{height:64.558125px;}
.h18{height:66.078281px;}
.h9{height:68.378906px;}
.h4{height:69.086250px;}
.hc{height:70.171875px;}
.h11{height:70.664062px;}
.h1a{height:72.900000px;}
.h15{height:75.785625px;}
.h16{height:75.925969px;}
.h14{height:82.101094px;}
.h1e{height:87.516000px;}
.h1d{height:102.060000px;}
.h1c{height:116.676000px;}
.h17{height:242.850000px;}
.h13{height:400.860000px;}
.h20{height:892.980000px;}
.h21{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:14.940000px;}
.w4{width:25.560000px;}
.w10{width:38.340000px;}
.w7{width:120.420000px;}
.wa{width:148.896000px;}
.w8{width:318.630000px;}
.w9{width:318.675000px;}
.wb{width:488.265000px;}
.w3{width:681.810000px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.wf{width:1014.840000px;}
.we{width:1262.879981px;}
.wc{width:1262.880000px;}
.wd{width:1263.000000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.xb{left:15.840000px;}
.xa{left:19.260000px;}
.x20{left:34.740000px;}
.x1f{left:58.494000px;}
.x2a{left:87.120000px;}
.x27{left:95.759987px;}
.x3{left:97.740000px;}
.x2{left:106.415987px;}
.x21{left:108.935987px;}
.x9{left:112.535987px;}
.x11{left:115.055987px;}
.x16{left:123.875987px;}
.x1d{left:133.236000px;}
.x10{left:142.235987px;}
.x12{left:145.655987px;}
.x22{left:155.369987px;}
.x23{left:156.989987px;}
.x17{left:172.874987px;}
.x18{left:186.374987px;}
.x15{left:209.054987px;}
.x8{left:229.349987px;}
.x2d{left:233.129981px;}
.x26{left:247.170000px;}
.x13{left:280.469987px;}
.x1e{left:305.499000px;}
.x4{left:363.855000px;}
.x1{left:387.974987px;}
.xc{left:451.874987px;}
.xe{left:467.714987px;}
.x1a{left:488.129987px;}
.xd{left:494.534987px;}
.x14{left:521.744987px;}
.x1b{left:537.374987px;}
.x1c{left:550.874987px;}
.x19{left:573.269987px;}
.x24{left:660.704987px;}
.x2b{left:696.705000px;}
.xf{left:747.689987px;}
.x5{left:780.450000px;}
.x7{left:782.430000px;}
.x25{left:797.369987px;}
.x29{left:829.724981px;}
.x2e{left:1059.629981px;}
.x2c{left:1102.680000px;}
.x28{left:1132.559981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.267733pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.224000pt;}
.ls9{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.161067pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.048000pt;}
.ls16{letter-spacing:-0.046080pt;}
.ls18{letter-spacing:-0.032000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.203520pt;}
.ls2{letter-spacing:0.224000pt;}
.lsf{letter-spacing:0.239467pt;}
.lsb{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.419840pt;}
.ls6{letter-spacing:0.501760pt;}
.ls10{letter-spacing:1.024000pt;}
.ls13{letter-spacing:10.259840pt;}
.ls12{letter-spacing:10.329600pt;}
.ls11{letter-spacing:60.896000pt;}
.ls0{letter-spacing:175.104000pt;}
.ls3{letter-spacing:175.631360pt;}
.wsb{word-spacing:-48.000000pt;}
.wsc{word-spacing:-24.330240pt;}
.ws8{word-spacing:-17.088000pt;}
.wsd{word-spacing:-17.040000pt;}
.ws0{word-spacing:-16.896000pt;}
.ws10{word-spacing:-16.864000pt;}
.ws9{word-spacing:-16.848000pt;}
.wsa{word-spacing:-16.768000pt;}
.ws1{word-spacing:-16.704000pt;}
.wse{word-spacing:-16.672000pt;}
.ws2{word-spacing:-16.448000pt;}
.ws4{word-spacing:-15.093760pt;}
.wsf{word-spacing:-14.826027pt;}
.ws3{word-spacing:-13.536000pt;}
.ws6{word-spacing:-11.920640pt;}
.ws7{word-spacing:-11.759573pt;}
.ws5{word-spacing:0.000000pt;}
._28{margin-left:-2.021760pt;}
._1{margin-left:-0.912000pt;}
._0{width:1.098453pt;}
._5{width:2.112000pt;}
._4{width:3.312000pt;}
._3{width:4.656000pt;}
._6{width:5.568427pt;}
._10{width:6.485120pt;}
._d{width:7.440000pt;}
._c{width:8.784000pt;}
._8{width:9.888000pt;}
._7{width:10.944000pt;}
._13{width:12.288000pt;}
._2c{width:13.210667pt;}
._9{width:14.112000pt;}
._2{width:15.072000pt;}
._27{width:17.904000pt;}
._b{width:19.296000pt;}
._a{width:20.352000pt;}
._2e{width:21.359573pt;}
._11{width:22.379520pt;}
._f{width:23.952000pt;}
._e{width:25.152000pt;}
._26{width:26.160000pt;}
._1e{width:27.648000pt;}
._17{width:28.896000pt;}
._16{width:29.856000pt;}
._15{width:30.768000pt;}
._1b{width:32.256000pt;}
._14{width:33.264000pt;}
._20{width:34.752000pt;}
._1f{width:36.048000pt;}
._21{width:37.706667pt;}
._2d{width:39.456000pt;}
._25{width:40.368000pt;}
._24{width:41.664000pt;}
._31{width:43.776000pt;}
._1a{width:47.088000pt;}
._19{width:48.192000pt;}
._29{width:49.317760pt;}
._23{width:50.394453pt;}
._18{width:51.845547pt;}
._1c{width:53.088000pt;}
._30{width:54.768000pt;}
._2f{width:55.680000pt;}
._32{width:59.130667pt;}
._22{width:67.824000pt;}
._1d{width:68.832000pt;}
._2b{width:70.368000pt;}
._2a{width:71.280000pt;}
._34{width:72.240000pt;}
._35{width:78.048000pt;}
._33{width:103.824000pt;}
._37{width:139.968000pt;}
._36{width:198.858667pt;}
._12{width:1267.722667pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs9{font-size:69.248000pt;}
.fs7{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:0.960000pt;}
.y147{bottom:2.240000pt;}
.y156{bottom:2.266667pt;}
.y40{bottom:2.560000pt;}
.y8{bottom:3.200000pt;}
.y7{bottom:3.520000pt;}
.y146{bottom:15.200000pt;}
.y155{bottom:15.226667pt;}
.y109{bottom:16.640000pt;}
.yb{bottom:17.440000pt;}
.y107{bottom:18.080000pt;}
.y145{bottom:28.160000pt;}
.y154{bottom:28.186667pt;}
.y9{bottom:39.040000pt;}
.y17c{bottom:39.072000pt;}
.y144{bottom:41.120000pt;}
.y153{bottom:41.146667pt;}
.y108{bottom:43.840000pt;}
.y106{bottom:45.120000pt;}
.y41{bottom:45.920000pt;}
.ya{bottom:46.720000pt;}
.y143{bottom:54.080000pt;}
.y152{bottom:54.106667pt;}
.y14c{bottom:54.120000pt;}
.y103{bottom:57.600000pt;}
.yf9{bottom:58.693333pt;}
.y6{bottom:60.800000pt;}
.y17b{bottom:60.832000pt;}
.y14f{bottom:67.040000pt;}
.y151{bottom:67.066667pt;}
.y14b{bottom:67.080000pt;}
.y102{bottom:76.640000pt;}
.yf8{bottom:77.733333pt;}
.y14e{bottom:80.000000pt;}
.y14a{bottom:80.040000pt;}
.y149{bottom:93.000000pt;}
.y101{bottom:95.520000pt;}
.yf7{bottom:96.613333pt;}
.y3a{bottom:104.000000pt;}
.yd4{bottom:108.000000pt;}
.yec{bottom:111.360000pt;}
.y7c{bottom:112.640000pt;}
.y13c{bottom:113.440000pt;}
.y100{bottom:117.600000pt;}
.yf6{bottom:118.720000pt;}
.yb3{bottom:119.520000pt;}
.y12c{bottom:120.160000pt;}
.yd3{bottom:122.560000pt;}
.yeb{bottom:125.920000pt;}
.y7b{bottom:127.200000pt;}
.y13b{bottom:128.160000pt;}
.y17e{bottom:131.712000pt;}
.yb2{bottom:134.080000pt;}
.y12b{bottom:134.720000pt;}
.yff{bottom:136.640000pt;}
.y177{bottom:136.800000pt;}
.yd2{bottom:137.120000pt;}
.yf5{bottom:137.760000pt;}
.yea{bottom:140.480000pt;}
.y7a{bottom:141.760000pt;}
.y39{bottom:142.746667pt;}
.y38{bottom:147.386667pt;}
.yb1{bottom:148.666667pt;}
.y12a{bottom:149.306667pt;}
.y16d{bottom:151.386667pt;}
.yd1{bottom:151.706667pt;}
.ye9{bottom:155.066667pt;}
.yfe{bottom:155.520000pt;}
.y79{bottom:156.346667pt;}
.yf4{bottom:156.640000pt;}
.y13a{bottom:157.306667pt;}
.y176{bottom:163.226667pt;}
.yb0{bottom:163.386667pt;}
.y129{bottom:163.866667pt;}
.y16c{bottom:166.106667pt;}
.yd0{bottom:166.266667pt;}
.y37{bottom:166.746667pt;}
.ye8{bottom:169.786667pt;}
.y78{bottom:171.066667pt;}
.y139{bottom:171.866667pt;}
.yfd{bottom:174.586667pt;}
.yf3{bottom:175.680000pt;}
.y175{bottom:177.786667pt;}
.yaf{bottom:177.946667pt;}
.y128{bottom:178.426667pt;}
.y16b{bottom:180.666667pt;}
.ye7{bottom:184.346667pt;}
.y77{bottom:185.626667pt;}
.y138{bottom:186.426667pt;}
.y36{bottom:189.626667pt;}
.ycf{bottom:189.786667pt;}
.yae{bottom:192.506667pt;}
.y127{bottom:192.986667pt;}
.y16a{bottom:195.226667pt;}
.yfc{bottom:196.666667pt;}
.yf2{bottom:197.760000pt;}
.y76{bottom:200.186667pt;}
.y137{bottom:200.986667pt;}
.ye6{bottom:206.906667pt;}
.yad{bottom:207.066667pt;}
.y126{bottom:207.546667pt;}
.yce{bottom:208.186667pt;}
.y35{bottom:213.626667pt;}
.y75{bottom:214.746667pt;}
.y136{bottom:215.546667pt;}
.yfb{bottom:215.706667pt;}
.yf1{bottom:216.800000pt;}
.y169{bottom:217.786667pt;}
.ye5{bottom:221.466667pt;}
.yac{bottom:221.626667pt;}
.y125{bottom:222.266667pt;}
.y34{bottom:228.186667pt;}
.y74{bottom:229.306667pt;}
.y135{bottom:230.266667pt;}
.y168{bottom:232.346667pt;}
.ycd{bottom:233.786667pt;}
.yfa{bottom:234.586667pt;}
.yf0{bottom:235.680000pt;}
.ye4{bottom:236.026667pt;}
.yab{bottom:236.186667pt;}
.y124{bottom:236.826667pt;}
.y33{bottom:242.746667pt;}
.y73{bottom:243.866667pt;}
.y134{bottom:244.826667pt;}
.y167{bottom:246.906667pt;}
.yaa{bottom:250.746667pt;}
.y123{bottom:251.386667pt;}
.ycc{bottom:256.346667pt;}
.y32{bottom:257.306667pt;}
.y72{bottom:258.586667pt;}
.y133{bottom:259.386667pt;}
.ye3{bottom:259.546667pt;}
.y166{bottom:261.626667pt;}
.ya9{bottom:265.466667pt;}
.y122{bottom:265.946667pt;}
.ycb{bottom:270.906667pt;}
.y31{bottom:271.866667pt;}
.y71{bottom:273.146667pt;}
.y174{bottom:273.306667pt;}
.y132{bottom:273.946667pt;}
.y165{bottom:276.186667pt;}
.ya8{bottom:280.026667pt;}
.ye2{bottom:284.986667pt;}
.yca{bottom:285.466667pt;}
.y30{bottom:286.586667pt;}
.y70{bottom:287.706667pt;}
.y173{bottom:288.026667pt;}
.y131{bottom:288.506667pt;}
.y121{bottom:289.466667pt;}
.y164{bottom:290.746667pt;}
.yef{bottom:292.000000pt;}
.ya7{bottom:294.586667pt;}
.yc9{bottom:300.026667pt;}
.y2f{bottom:301.146667pt;}
.y172{bottom:302.586667pt;}
.ye1{bottom:307.546667pt;}
.y6f{bottom:310.266667pt;}
.y130{bottom:312.026667pt;}
.y163{bottom:313.306667pt;}
.yc8{bottom:314.586667pt;}
.y120{bottom:314.906667pt;}
.y2e{bottom:315.706667pt;}
.ya6{bottom:317.146667pt;}
.yee{bottom:320.320000pt;}
.ye0{bottom:322.266667pt;}
.y6e{bottom:324.826667pt;}
.y162{bottom:327.866667pt;}
.yc7{bottom:329.146667pt;}
.y2d{bottom:330.266667pt;}
.ya5{bottom:331.706667pt;}
.ydf{bottom:336.826667pt;}
.y11f{bottom:337.466667pt;}
.y6d{bottom:339.386667pt;}
.y161{bottom:342.426667pt;}
.yc6{bottom:343.866667pt;}
.ya4{bottom:346.266667pt;}
.yde{bottom:351.386667pt;}
.y11e{bottom:352.186667pt;}
.y6c{bottom:353.946667pt;}
.y171{bottom:354.266667pt;}
.y2c{bottom:355.546667pt;}
.y160{bottom:356.986667pt;}
.y12f{bottom:360.226667pt;}
.ya3{bottom:361.026667pt;}
.y3d{bottom:361.346667pt;}
.yc5{bottom:366.466667pt;}
.y6b{bottom:368.706667pt;}
.y170{bottom:368.866667pt;}
.y15f{bottom:371.746667pt;}
.ydd{bottom:373.986667pt;}
.y11d{bottom:374.786667pt;}
.ya2{bottom:375.586667pt;}
.yc4{bottom:381.026667pt;}
.y6a{bottom:383.266667pt;}
.y16f{bottom:383.426667pt;}
.y11c{bottom:389.346667pt;}
.ya1{bottom:390.146667pt;}
.y2b{bottom:392.866667pt;}
.y15e{bottom:395.266667pt;}
.yc3{bottom:395.586667pt;}
.ydc{bottom:396.546667pt;}
.y69{bottom:397.826667pt;}
.y16e{bottom:398.146667pt;}
.y11b{bottom:403.906667pt;}
.ya0{bottom:404.706667pt;}
.yc2{bottom:410.146667pt;}
.y68{bottom:412.386667pt;}
.y2a{bottom:415.746667pt;}
.y11a{bottom:418.466667pt;}
.ydb{bottom:419.106667pt;}
.y9f{bottom:419.266667pt;}
.y15d{bottom:420.386667pt;}
.yc1{bottom:424.706667pt;}
.y67{bottom:426.946667pt;}
.y29{bottom:431.746667pt;}
.y119{bottom:433.026667pt;}
.yc0{bottom:439.266667pt;}
.y66{bottom:441.506667pt;}
.yda{bottom:441.666667pt;}
.y9e{bottom:442.786667pt;}
.y15c{bottom:445.026667pt;}
.y118{bottom:447.586667pt;}
.ybf{bottom:453.986667pt;}
.y28{bottom:454.306667pt;}
.y65{bottom:456.066667pt;}
.yd9{bottom:456.386667pt;}
.y15b{bottom:458.946667pt;}
.y9d{bottom:460.226667pt;}
.y117{bottom:462.306667pt;}
.ybe{bottom:468.546667pt;}
.y27{bottom:468.866667pt;}
.y12e{bottom:470.306667pt;}
.y64{bottom:470.786667pt;}
.y15a{bottom:473.026667pt;}
.y116{bottom:476.866667pt;}
.yd8{bottom:478.946667pt;}
.y9c{bottom:482.786667pt;}
.ybd{bottom:483.106667pt;}
.y26{bottom:483.426667pt;}
.y12d{bottom:484.866667pt;}
.y63{bottom:485.346667pt;}
.y159{bottom:486.946667pt;}
.y9b{bottom:497.506667pt;}
.ybc{bottom:497.666667pt;}
.y25{bottom:497.986667pt;}
.y115{bottom:499.426667pt;}
.y62{bottom:499.906667pt;}
.y158{bottom:500.866667pt;}
.yd7{bottom:501.506667pt;}
.y9a{bottom:512.066667pt;}
.ybb{bottom:512.226667pt;}
.y157{bottom:512.386667pt;}
.y24{bottom:512.546667pt;}
.y114{bottom:513.986667pt;}
.y61{bottom:514.466667pt;}
.yd6{bottom:524.066667pt;}
.y99{bottom:526.626667pt;}
.y23{bottom:527.266667pt;}
.y113{bottom:528.546667pt;}
.yba{bottom:535.746667pt;}
.y60{bottom:537.026667pt;}
.yd5{bottom:538.626667pt;}
.y98{bottom:541.186667pt;}
.y22{bottom:541.826667pt;}
.y112{bottom:543.106667pt;}
.y5f{bottom:551.586667pt;}
.y97{bottom:555.746667pt;}
.y21{bottom:556.386667pt;}
.y111{bottom:557.666667pt;}
.yb9{bottom:561.826667pt;}
.y5e{bottom:566.306667pt;}
.y96{bottom:570.306667pt;}
.y20{bottom:570.946667pt;}
.y110{bottom:572.386667pt;}
.y150{bottom:577.826667pt;}
.y5d{bottom:580.893333pt;}
.y95{bottom:584.893333pt;}
.y1f{bottom:585.533333pt;}
.yb8{bottom:585.853333pt;}
.y10f{bottom:594.973333pt;}
.y5c{bottom:595.453333pt;}
.yb7{bottom:598.813333pt;}
.y94{bottom:599.613333pt;}
.y1e{bottom:600.093333pt;}
.y5b{bottom:610.013333pt;}
.yb6{bottom:611.773333pt;}
.y1d{bottom:614.653333pt;}
.y10e{bottom:617.213333pt;}
.y93{bottom:623.133333pt;}
.y5a{bottom:624.573333pt;}
.yb5{bottom:624.733333pt;}
.y1c{bottom:629.373333pt;}
.y10d{bottom:630.173333pt;}
.yed{bottom:635.520000pt;}
.y59{bottom:639.133333pt;}
.y92{bottom:641.533333pt;}
.y10c{bottom:643.133333pt;}
.y1b{bottom:643.933333pt;}
.yb4{bottom:651.773333pt;}
.y58{bottom:653.693333pt;}
.y10b{bottom:656.093333pt;}
.y14d{bottom:656.253333pt;}
.y1a{bottom:658.493333pt;}
.y91{bottom:666.973333pt;}
.y17d{bottom:668.133333pt;}
.y57{bottom:668.413333pt;}
.y10a{bottom:669.053333pt;}
.y19{bottom:673.053333pt;}
.y105{bottom:679.773333pt;}
.y56{bottom:682.973333pt;}
.y18{bottom:687.613333pt;}
.y90{bottom:689.533333pt;}
.y17a{bottom:694.053333pt;}
.y55{bottom:697.533333pt;}
.y8f{bottom:704.093333pt;}
.y54{bottom:712.093333pt;}
.y17{bottom:716.573333pt;}
.y8e{bottom:718.653333pt;}
.y3b{bottom:722.333333pt;}
.y179{bottom:724.160000pt;}
.y53{bottom:726.653333pt;}
.y8d{bottom:733.213333pt;}
.y52{bottom:741.213333pt;}
.y178{bottom:743.040000pt;}
.y8c{bottom:747.773333pt;}
.y16{bottom:754.013333pt;}
.y8b{bottom:762.493333pt;}
.y51{bottom:763.773333pt;}
.y15{bottom:774.013333pt;}
.y8a{bottom:777.053333pt;}
.y50{bottom:778.493333pt;}
.y14{bottom:790.173333pt;}
.y89{bottom:791.613333pt;}
.y4f{bottom:793.053333pt;}
.y88{bottom:806.213333pt;}
.y13{bottom:806.373333pt;}
.y4e{bottom:807.653333pt;}
.y87{bottom:820.773333pt;}
.y4d{bottom:822.213333pt;}
.y12{bottom:822.373333pt;}
.y86{bottom:835.333333pt;}
.y4c{bottom:836.773333pt;}
.y11{bottom:838.693333pt;}
.y85{bottom:850.053333pt;}
.y4b{bottom:851.333333pt;}
.y148{bottom:852.133333pt;}
.y10{bottom:854.853333pt;}
.y4a{bottom:866.053333pt;}
.yf{bottom:871.333333pt;}
.y84{bottom:873.573333pt;}
.y49{bottom:880.613333pt;}
.ye{bottom:889.573333pt;}
.y142{bottom:891.653333pt;}
.y48{bottom:895.173333pt;}
.y83{bottom:899.013333pt;}
.y104{bottom:906.213333pt;}
.y47{bottom:909.733333pt;}
.yd{bottom:912.293333pt;}
.y82{bottom:921.573333pt;}
.y46{bottom:924.293333pt;}
.yc{bottom:935.013333pt;}
.y81{bottom:936.133333pt;}
.y45{bottom:938.853333pt;}
.y80{bottom:950.693333pt;}
.y44{bottom:953.413333pt;}
.y7f{bottom:965.253333pt;}
.y43{bottom:968.133333pt;}
.y141{bottom:971.013333pt;}
.y7e{bottom:979.813333pt;}
.y5{bottom:991.013333pt;}
.y42{bottom:991.653333pt;}
.y7d{bottom:994.533333pt;}
.y140{bottom:995.813333pt;}
.y4{bottom:1013.573333pt;}
.y13f{bottom:1022.880000pt;}
.y3{bottom:1036.480000pt;}
.y13e{bottom:1052.960000pt;}
.y3f{bottom:1054.080000pt;}
.y2{bottom:1068.800000pt;}
.y13d{bottom:1071.840000pt;}
.y3e{bottom:1072.480000pt;}
.y1{bottom:1101.120000pt;}
.he{height:15.680000pt;}
.h10{height:21.760000pt;}
.h5{height:22.720000pt;}
.h19{height:32.578750pt;}
.hd{height:33.682500pt;}
.h1f{height:36.468750pt;}
.h8{height:36.640000pt;}
.h1b{height:38.880000pt;}
.h12{height:41.791250pt;}
.hf{height:44.722500pt;}
.h3{height:46.781250pt;}
.h7{height:47.742188pt;}
.h6{height:50.062500pt;}
.h2{height:51.771250pt;}
.ha{height:52.242500pt;}
.hb{height:57.385000pt;}
.h18{height:58.736250pt;}
.h9{height:60.781250pt;}
.h4{height:61.410000pt;}
.hc{height:62.375000pt;}
.h11{height:62.812500pt;}
.h1a{height:64.800000pt;}
.h15{height:67.365000pt;}
.h16{height:67.489750pt;}
.h14{height:72.978750pt;}
.h1e{height:77.792000pt;}
.h1d{height:90.720000pt;}
.h1c{height:103.712000pt;}
.h17{height:215.866667pt;}
.h13{height:356.320000pt;}
.h20{height:793.760000pt;}
.h21{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:13.280000pt;}
.w4{width:22.720000pt;}
.w10{width:34.080000pt;}
.w7{width:107.040000pt;}
.wa{width:132.352000pt;}
.w8{width:283.226667pt;}
.w9{width:283.266667pt;}
.wb{width:434.013333pt;}
.w3{width:606.053333pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.wf{width:902.080000pt;}
.we{width:1122.559983pt;}
.wc{width:1122.560000pt;}
.wd{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.xb{left:14.080000pt;}
.xa{left:17.120000pt;}
.x20{left:30.880000pt;}
.x1f{left:51.994667pt;}
.x2a{left:77.440000pt;}
.x27{left:85.119988pt;}
.x3{left:86.880000pt;}
.x2{left:94.591988pt;}
.x21{left:96.831988pt;}
.x9{left:100.031988pt;}
.x11{left:102.271988pt;}
.x16{left:110.111988pt;}
.x1d{left:118.432000pt;}
.x10{left:126.431988pt;}
.x12{left:129.471988pt;}
.x22{left:138.106655pt;}
.x23{left:139.546655pt;}
.x17{left:153.666655pt;}
.x18{left:165.666655pt;}
.x15{left:185.826655pt;}
.x8{left:203.866655pt;}
.x2d{left:207.226650pt;}
.x26{left:219.706667pt;}
.x13{left:249.306655pt;}
.x1e{left:271.554667pt;}
.x4{left:323.426667pt;}
.x1{left:344.866655pt;}
.xc{left:401.666655pt;}
.xe{left:415.746655pt;}
.x1a{left:433.893322pt;}
.xd{left:439.586655pt;}
.x14{left:463.773322pt;}
.x1b{left:477.666655pt;}
.x1c{left:489.666655pt;}
.x19{left:509.573322pt;}
.x24{left:587.293322pt;}
.x2b{left:619.293333pt;}
.xf{left:664.613322pt;}
.x5{left:693.733333pt;}
.x7{left:695.493333pt;}
.x25{left:708.773322pt;}
.x29{left:737.533317pt;}
.x2e{left:941.893317pt;}
.x2c{left:980.160000pt;}
.x28{left:1006.719983pt;}
}

