
    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_2d33c80b62a4b6861dc19d93.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e93a530f58b9d327271df180.woff')format("woff");}.ff2{font-family:ff2;line-height:1.120117;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_bba1a79ae43c72a7a479dc8e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_df9960c86b4de9af8c13dfa9.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ce71b9fb1a18f2c4aba802b4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_80fe937f64826b35809757d4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.120117;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_08df154c93eb73eb4394f298.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ed438f7c94e59d9e627c08af.woff')format("woff");}.ff8{font-family:ff8;line-height:1.107422;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_a3d655c9f3d81bb590e0a5ee.woff')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_70725ebecc0f8f0168a31118.woff')format("woff");}.ffa{font-family:ffa;line-height:1.142090;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_65ea3ee91d40b34114aab2dc.woff')format("woff");}.ffc{font-family:ffc;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_426f2862479f50d62cdd800b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.995117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3682ec5ee663e7a49fe7cead.woff')format("woff");}.ffe{font-family:ffe;line-height:1.107422;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.197802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197802,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222223,0.000000,0.000000,0.250000,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);}
.m4{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;}
.ls1{letter-spacing:-38.220000px;}
.ls4{letter-spacing:-1.326000px;}
.ls2{letter-spacing:-1.236000px;}
.ls3{letter-spacing:-0.666000px;}
.ls9{letter-spacing:-0.648000px;}
.ls12{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.132600px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.864000px;}
.lsb{letter-spacing:2.304000px;}
.lsf{letter-spacing:13.104000px;}
.ls7{letter-spacing:64.026720px;}
.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;}
}
.wse{word-spacing:-72.000000px;}
.wsc{word-spacing:-59.760000px;}
.ws0{word-spacing:-37.013280px;}
.ws3{word-spacing:-24.624000px;}
.ws1{word-spacing:-23.958000px;}
.ws2{word-spacing:-23.298000px;}
.ws9{word-spacing:-16.704000px;}
.wsd{word-spacing:-16.632000px;}
.wsa{word-spacing:-16.416000px;}
.wsb{word-spacing:-15.102720px;}
.ws7{word-spacing:-0.032082px;}
.ws4{word-spacing:0.000000px;}
.ws8{word-spacing:4.467934px;}
.ws5{word-spacing:4.470086px;}
.ws6{word-spacing:13.467934px;}
._5{margin-left:-37.426341px;}
._2{margin-left:-14.418814px;}
._1{margin-left:-13.052882px;}
._7{margin-left:-11.399072px;}
._3{margin-left:-8.632976px;}
._8{margin-left:-6.600041px;}
._6{margin-left:-5.346623px;}
._13{margin-left:-4.233813px;}
._4{margin-left:-3.142624px;}
._0{margin-left:-1.845360px;}
._9{width:1.080000px;}
._10{width:2.592000px;}
._12{width:3.912000px;}
._17{width:5.136000px;}
._1a{width:6.264000px;}
._19{width:7.416000px;}
._18{width:8.424000px;}
._16{width:10.326123px;}
._15{width:12.137877px;}
._14{width:13.163820px;}
._a{width:14.340180px;}
._b{width:15.588587px;}
._11{width:17.424000px;}
._e{width:19.404461px;}
._1c{width:20.754720px;}
._1b{width:21.816000px;}
._c{width:23.607509px;}
._d{width:25.004701px;}
._1d{width:27.072000px;}
._f{width:29.125251px;}
._1e{width:93.384000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(83,36,118);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:38.880000px;}
.fsa{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:66.000002px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs6{font-size:83.999997px;}
.fs9{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.fs1{font-size:167.760000px;}
.fs5{font-size:177.120000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:80.100000px;}
.y31{bottom:80.460000px;}
.y66{bottom:100.080000px;}
.y65{bottom:103.860000px;}
.y30{bottom:109.620000px;}
.ybe{bottom:111.600000px;}
.y92{bottom:114.300000px;}
.y64{bottom:117.360000px;}
.y63{bottom:121.140000px;}
.y12b{bottom:124.380000px;}
.ye5{bottom:131.760000px;}
.ybd{bottom:132.300000px;}
.y105{bottom:132.480000px;}
.y62{bottom:135.216000px;}
.y2f{bottom:138.636000px;}
.y12a{bottom:145.116000px;}
.y3a{bottom:146.743836px;}
.ye4{bottom:152.310000px;}
.y91{bottom:153.030000px;}
.y104{bottom:165.270000px;}
.y2e{bottom:171.210000px;}
.ye3{bottom:173.010000px;}
.ybc{bottom:173.550000px;}
.y129{bottom:177.870000px;}
.y90{bottom:191.730000px;}
.ye2{bottom:193.710000px;}
.ybb{bottom:194.250000px;}
.y103{bottom:197.850000px;}
.y128{bottom:198.390000px;}
.y61{bottom:210.270000px;}
.y39{bottom:212.063046px;}
.y8f{bottom:212.430000px;}
.ye1{bottom:214.410000px;}
.y102{bottom:218.370000px;}
.y2d{bottom:219.270000px;}
.yba{bottom:227.190000px;}
.y127{bottom:231.150000px;}
.y8e{bottom:233.130000px;}
.y38{bottom:233.836116px;}
.ye0{bottom:234.930000px;}
.y101{bottom:239.070000px;}
.yb9{bottom:247.710000px;}
.y60{bottom:248.790000px;}
.y126{bottom:251.670000px;}
.y2c{bottom:253.650000px;}
.y37{bottom:255.609381px;}
.ydf{bottom:255.630000px;}
.y100{bottom:259.770000px;}
.yb8{bottom:268.230000px;}
.y125{bottom:272.370000px;}
.yde{bottom:276.330000px;}
.y36{bottom:277.382451px;}
.yff{bottom:280.290000px;}
.y8d{bottom:286.590000px;}
.y5f{bottom:287.490000px;}
.y2b{bottom:287.850000px;}
.yb7{bottom:288.930000px;}
.y124{bottom:292.890000px;}
.ydd{bottom:297.030000px;}
.y35{bottom:299.155341px;}
.yfe{bottom:300.990000px;}
.y8c{bottom:307.110000px;}
.y5e{bottom:308.190000px;}
.yb6{bottom:309.630000px;}
.y123{bottom:313.590000px;}
.ydc{bottom:317.550000px;}
.yfd{bottom:321.690000px;}
.y2a{bottom:327.270000px;}
.y8b{bottom:327.630000px;}
.y5d{bottom:328.890000px;}
.yb5{bottom:330.330000px;}
.ydb{bottom:338.430000px;}
.yfc{bottom:342.390000px;}
.y122{bottom:346.350000px;}
.y8a{bottom:348.330000px;}
.y29{bottom:349.590000px;}
.y34{bottom:350.367921px;}
.yb4{bottom:350.850000px;}
.yda{bottom:358.950000px;}
.yfb{bottom:362.910000px;}
.y142{bottom:366.150000px;}
.y121{bottom:366.870000px;}
.y89{bottom:369.030000px;}
.y5c{bottom:370.110000px;}
.yb3{bottom:371.550000px;}
.yd9{bottom:379.650000px;}
.yfa{bottom:383.610000px;}
.y88{bottom:389.775000px;}
.y5b{bottom:390.855000px;}
.y28{bottom:391.395000px;}
.y141{bottom:398.775000px;}
.y120{bottom:399.675000px;}
.yd8{bottom:400.395000px;}
.yb2{bottom:404.355000px;}
.y33{bottom:405.790281px;}
.y87{bottom:410.295000px;}
.y11f{bottom:420.195000px;}
.yd7{bottom:421.455000px;}
.y5a{bottom:423.615000px;}
.yb1{bottom:424.875000px;}
.yf9{bottom:425.055000px;}
.y86{bottom:430.995000px;}
.y140{bottom:431.535000px;}
.y32{bottom:433.501461px;}
.y27{bottom:437.835000px;}
.yd6{bottom:442.335000px;}
.y59{bottom:444.135000px;}
.yb0{bottom:445.575000px;}
.y85{bottom:451.695000px;}
.y11e{bottom:453.135000px;}
.yd5{bottom:462.855000px;}
.y13f{bottom:464.115000px;}
.y58{bottom:464.835000px;}
.yaf{bottom:466.275000px;}
.y84{bottom:472.395000px;}
.y11d{bottom:473.655000px;}
.yf8{bottom:478.515000px;}
.yd4{bottom:483.555000px;}
.y57{bottom:485.535000px;}
.yae{bottom:486.975000px;}
.y26{bottom:492.555000px;}
.y83{bottom:492.915000px;}
.y13e{bottom:496.875000px;}
.yf7{bottom:499.035000px;}
.yd3{bottom:504.255000px;}
.y56{bottom:506.055000px;}
.y11c{bottom:506.415000px;}
.y25{bottom:509.835000px;}
.y82{bottom:513.615000px;}
.yf6{bottom:519.555000px;}
.yad{bottom:519.735000px;}
.yd2{bottom:524.955000px;}
.y55{bottom:526.755000px;}
.y11b{bottom:526.935000px;}
.y24{bottom:527.115000px;}
.y13d{bottom:529.455000px;}
.y81{bottom:534.315000px;}
.yac{bottom:540.255000px;}
.y23{bottom:544.395000px;}
.y11a{bottom:547.635000px;}
.y80{bottom:555.015000px;}
.yd1{bottom:557.715000px;}
.y54{bottom:559.515000px;}
.yab{bottom:560.955000px;}
.y22{bottom:561.675000px;}
.y13c{bottom:562.215000px;}
.y119{bottom:568.155000px;}
.y7f{bottom:575.535000px;}
.yd0{bottom:578.235000px;}
.y21{bottom:578.775000px;}
.yaa{bottom:581.655000px;}
.y13b{bottom:582.735000px;}
.y53{bottom:594.435000px;}
.y20{bottom:596.055000px;}
.y7e{bottom:596.235000px;}
.ycf{bottom:598.935000px;}
.y118{bottom:600.915000px;}
.ya9{bottom:602.175000px;}
.y1f{bottom:613.335000px;}
.y13a{bottom:615.495000px;}
.y7d{bottom:616.935000px;}
.y117{bottom:621.435000px;}
.ya8{bottom:622.875000px;}
.y52{bottom:628.275000px;}
.y1e{bottom:630.615000px;}
.yce{bottom:631.695000px;}
.y139{bottom:636.015000px;}
.y7c{bottom:637.635000px;}
.y116{bottom:642.165000px;}
.ya7{bottom:643.605000px;}
.y1d{bottom:647.925000px;}
.ycd{bottom:652.245000px;}
.y7b{bottom:658.185000px;}
.y51{bottom:660.165000px;}
.ya6{bottom:664.305000px;}
.y1c{bottom:665.205000px;}
.y138{bottom:668.805000px;}
.ycc{bottom:672.765000px;}
.y115{bottom:674.925000px;}
.y7a{bottom:678.885000px;}
.y50{bottom:680.685000px;}
.y1b{bottom:682.305000px;}
.yf5{bottom:684.825000px;}
.y137{bottom:689.325000px;}
.ycb{bottom:693.465000px;}
.ya5{bottom:697.065000px;}
.y1a{bottom:699.585000px;}
.y4f{bottom:701.385000px;}
.yf4{bottom:705.525000px;}
.y114{bottom:707.685000px;}
.y136{bottom:710.025000px;}
.y19{bottom:716.865000px;}
.ya4{bottom:717.585000px;}
.y79{bottom:720.105000px;}
.y4e{bottom:721.905000px;}
.yca{bottom:726.225000px;}
.y18{bottom:734.145000px;}
.ya3{bottom:738.105000px;}
.y113{bottom:740.265000px;}
.y78{bottom:740.805000px;}
.y4d{bottom:742.605000px;}
.y135{bottom:742.785000px;}
.yc9{bottom:746.745000px;}
.yf3{bottom:746.925000px;}
.y17{bottom:751.425000px;}
.y77{bottom:761.505000px;}
.y4c{bottom:763.305000px;}
.yc8{bottom:767.445000px;}
.y16{bottom:768.705000px;}
.ya2{bottom:771.045000px;}
.y112{bottom:773.025000px;}
.yf2{bottom:779.685000px;}
.y15{bottom:785.805000px;}
.yc7{bottom:788.145000px;}
.ya1{bottom:791.565000px;}
.y111{bottom:793.545000px;}
.y76{bottom:794.265000px;}
.y4b{bottom:796.065000px;}
.yf1{bottom:800.205000px;}
.y14{bottom:803.085000px;}
.yc6{bottom:808.845000px;}
.ya0{bottom:812.085000px;}
.y75{bottom:814.785000px;}
.y4a{bottom:816.585000px;}
.y13{bottom:820.365000px;}
.yf0{bottom:820.725000px;}
.y110{bottom:826.305000px;}
.y9f{bottom:832.785000px;}
.y74{bottom:835.485000px;}
.y49{bottom:837.285000px;}
.y12{bottom:837.645000px;}
.yef{bottom:841.425000px;}
.yc5{bottom:841.605000px;}
.y10f{bottom:846.825000px;}
.y9e{bottom:853.485000px;}
.y11{bottom:854.925000px;}
.y73{bottom:856.185000px;}
.y48{bottom:857.805000px;}
.yc4{bottom:862.125000px;}
.y10{bottom:872.025000px;}
.y72{bottom:876.705000px;}
.y47{bottom:878.505000px;}
.y10e{bottom:879.585000px;}
.y9d{bottom:886.245000px;}
.yf{bottom:889.305000px;}
.y134{bottom:890.745000px;}
.yc3{bottom:894.930000px;}
.y71{bottom:897.450000px;}
.y46{bottom:899.250000px;}
.y10d{bottom:900.150000px;}
.ye{bottom:906.630000px;}
.y9c{bottom:906.810000px;}
.y133{bottom:911.310000px;}
.yee{bottom:915.450000px;}
.y45{bottom:919.950000px;}
.yd{bottom:923.910000px;}
.y9b{bottom:927.510000px;}
.y70{bottom:930.210000px;}
.y10c{bottom:932.910000px;}
.yc{bottom:941.190000px;}
.y132{bottom:944.070000px;}
.yc2{bottom:948.030000px;}
.y9a{bottom:948.210000px;}
.y6f{bottom:950.730000px;}
.y44{bottom:952.710000px;}
.yb{bottom:958.470000px;}
.y10b{bottom:965.490000px;}
.y99{bottom:968.730000px;}
.y6e{bottom:971.430000px;}
.y43{bottom:973.230000px;}
.ya{bottom:975.570000px;}
.y131{bottom:976.650000px;}
.yed{bottom:980.970000px;}
.y10a{bottom:986.010000px;}
.y98{bottom:989.430000px;}
.y6d{bottom:992.130000px;}
.y9{bottom:992.850000px;}
.y130{bottom:997.170000px;}
.yec{bottom:1001.490000px;}
.y42{bottom:1005.990000px;}
.y109{bottom:1006.710000px;}
.y8{bottom:1010.130000px;}
.y6c{bottom:1012.830000px;}
.y12f{bottom:1017.870000px;}
.yeb{bottom:1022.010000px;}
.y7{bottom:1027.410000px;}
.yc1{bottom:1030.650000px;}
.y97{bottom:1030.830000px;}
.y6b{bottom:1033.350000px;}
.yea{bottom:1042.710000px;}
.y41{bottom:1044.510000px;}
.y6{bottom:1044.690000px;}
.y12e{bottom:1050.630000px;}
.y96{bottom:1051.350000px;}
.y6a{bottom:1054.050000px;}
.y108{bottom:1060.170000px;}
.y5{bottom:1061.970000px;}
.ye9{bottom:1063.410000px;}
.y3f{bottom:1065.210000px;}
.y40{bottom:1069.710000px;}
.y12d{bottom:1071.150000px;}
.y95{bottom:1072.050000px;}
.y4{bottom:1079.070000px;}
.y107{bottom:1080.690000px;}
.ye8{bottom:1084.110000px;}
.y69{bottom:1086.810000px;}
.y12c{bottom:1092.390000px;}
.y94{bottom:1092.750000px;}
.y3{bottom:1096.350000px;}
.y3e{bottom:1097.970000px;}
.ye7{bottom:1104.630000px;}
.y68{bottom:1107.330000px;}
.yc0{bottom:1113.270000px;}
.y106{bottom:1113.450000px;}
.y2{bottom:1113.630000px;}
.y3d{bottom:1119.030000px;}
.ye6{bottom:1125.330000px;}
.y93{bottom:1125.510000px;}
.y1{bottom:1130.910000px;}
.y3c{bottom:1143.150000px;}
.y67{bottom:1146.060000px;}
.ybf{bottom:1146.240000px;}
.he{height:35.064141px;}
.hc{height:43.505508px;}
.h9{height:48.049806px;}
.hf{height:53.894883px;}
.h10{height:59.439023px;}
.h4{height:60.256406px;}
.h8{height:61.154295px;}
.h2{height:61.423863px;}
.h13{height:64.582031px;}
.ha{height:64.933594px;}
.h12{height:65.496094px;}
.h11{height:65.884219px;}
.hd{height:70.664062px;}
.hb{height:76.630430px;}
.h5{height:78.626953px;}
.h6{height:87.538008px;}
.h7{height:128.948203px;}
.h3{height:152.605898px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w7{width:892.439973px;}
.w6{width:892.439987px;}
.w4{width:892.440000px;}
.w5{width:892.500000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.w3{width:894.000000px;}
.x0{left:0.000000px;}
.x12{left:118.475987px;}
.x19{left:122.975987px;}
.x1{left:126.035987px;}
.xe{left:127.559052px;}
.x1a{left:145.475987px;}
.x10{left:167.789987px;}
.x4{left:173.189987px;}
.x7{left:210.809987px;}
.x2{left:251.354987px;}
.x11{left:333.434987px;}
.x18{left:334.514987px;}
.xa{left:364.394987px;}
.x5{left:389.774987px;}
.xc{left:427.784987px;}
.x6{left:440.564987px;}
.x9{left:446.684987px;}
.xd{left:472.064987px;}
.x13{left:497.084987px;}
.xb{left:530.204987px;}
.x3{left:607.109987px;}
.x14{left:620.249973px;}
.x15{left:625.829987px;}
.x8{left:679.469987px;}
.xf{left:749.489987px;}
.x16{left:768.569973px;}
.x17{left:774.149987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-33.973333pt;}
.ls4{letter-spacing:-1.178667pt;}
.ls2{letter-spacing:-1.098667pt;}
.ls3{letter-spacing:-0.592000pt;}
.ls9{letter-spacing:-0.576000pt;}
.ls12{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.117867pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.768000pt;}
.lsb{letter-spacing:2.048000pt;}
.lsf{letter-spacing:11.648000pt;}
.ls7{letter-spacing:56.912640pt;}
.wse{word-spacing:-64.000000pt;}
.wsc{word-spacing:-53.120000pt;}
.ws0{word-spacing:-32.900693pt;}
.ws3{word-spacing:-21.888000pt;}
.ws1{word-spacing:-21.296000pt;}
.ws2{word-spacing:-20.709333pt;}
.ws9{word-spacing:-14.848000pt;}
.wsd{word-spacing:-14.784000pt;}
.wsa{word-spacing:-14.592000pt;}
.wsb{word-spacing:-13.424640pt;}
.ws7{word-spacing:-0.028517pt;}
.ws4{word-spacing:0.000000pt;}
.ws8{word-spacing:3.971497pt;}
.ws5{word-spacing:3.973410pt;}
.ws6{word-spacing:11.971497pt;}
._5{margin-left:-33.267859pt;}
._2{margin-left:-12.816723pt;}
._1{margin-left:-11.602562pt;}
._7{margin-left:-10.132509pt;}
._3{margin-left:-7.673757pt;}
._8{margin-left:-5.866703pt;}
._6{margin-left:-4.752554pt;}
._13{margin-left:-3.763389pt;}
._4{margin-left:-2.793443pt;}
._0{margin-left:-1.640320pt;}
._9{width:0.960000pt;}
._10{width:2.304000pt;}
._12{width:3.477333pt;}
._17{width:4.565333pt;}
._1a{width:5.568000pt;}
._19{width:6.592000pt;}
._18{width:7.488000pt;}
._16{width:9.178776pt;}
._15{width:10.789224pt;}
._14{width:11.701174pt;}
._a{width:12.746826pt;}
._b{width:13.856522pt;}
._11{width:15.488000pt;}
._e{width:17.248410pt;}
._1c{width:18.448640pt;}
._1b{width:19.392000pt;}
._c{width:20.984453pt;}
._d{width:22.226401pt;}
._1d{width:24.064000pt;}
._f{width:25.889112pt;}
._1e{width:83.008000pt;}
.fsb{font-size:34.560000pt;}
.fsa{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:58.666668pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs6{font-size:74.666664pt;}
.fs9{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.fs1{font-size:149.120000pt;}
.fs5{font-size:157.440000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:71.200000pt;}
.y31{bottom:71.520000pt;}
.y66{bottom:88.960000pt;}
.y65{bottom:92.320000pt;}
.y30{bottom:97.440000pt;}
.ybe{bottom:99.200000pt;}
.y92{bottom:101.600000pt;}
.y64{bottom:104.320000pt;}
.y63{bottom:107.680000pt;}
.y12b{bottom:110.560000pt;}
.ye5{bottom:117.120000pt;}
.ybd{bottom:117.600000pt;}
.y105{bottom:117.760000pt;}
.y62{bottom:120.192000pt;}
.y2f{bottom:123.232000pt;}
.y12a{bottom:128.992000pt;}
.y3a{bottom:130.438965pt;}
.ye4{bottom:135.386667pt;}
.y91{bottom:136.026667pt;}
.y104{bottom:146.906667pt;}
.y2e{bottom:152.186667pt;}
.ye3{bottom:153.786667pt;}
.ybc{bottom:154.266667pt;}
.y129{bottom:158.106667pt;}
.y90{bottom:170.426667pt;}
.ye2{bottom:172.186667pt;}
.ybb{bottom:172.666667pt;}
.y103{bottom:175.866667pt;}
.y128{bottom:176.346667pt;}
.y61{bottom:186.906667pt;}
.y39{bottom:188.500486pt;}
.y8f{bottom:188.826667pt;}
.ye1{bottom:190.586667pt;}
.y102{bottom:194.106667pt;}
.y2d{bottom:194.906667pt;}
.yba{bottom:201.946667pt;}
.y127{bottom:205.466667pt;}
.y8e{bottom:207.226667pt;}
.y38{bottom:207.854326pt;}
.ye0{bottom:208.826667pt;}
.y101{bottom:212.506667pt;}
.yb9{bottom:220.186667pt;}
.y60{bottom:221.146667pt;}
.y126{bottom:223.706667pt;}
.y2c{bottom:225.466667pt;}
.y37{bottom:227.208339pt;}
.ydf{bottom:227.226667pt;}
.y100{bottom:230.906667pt;}
.yb8{bottom:238.426667pt;}
.y125{bottom:242.106667pt;}
.yde{bottom:245.626667pt;}
.y36{bottom:246.562179pt;}
.yff{bottom:249.146667pt;}
.y8d{bottom:254.746667pt;}
.y5f{bottom:255.546667pt;}
.y2b{bottom:255.866667pt;}
.yb7{bottom:256.826667pt;}
.y124{bottom:260.346667pt;}
.ydd{bottom:264.026667pt;}
.y35{bottom:265.915859pt;}
.yfe{bottom:267.546667pt;}
.y8c{bottom:272.986667pt;}
.y5e{bottom:273.946667pt;}
.yb6{bottom:275.226667pt;}
.y123{bottom:278.746667pt;}
.ydc{bottom:282.266667pt;}
.yfd{bottom:285.946667pt;}
.y2a{bottom:290.906667pt;}
.y8b{bottom:291.226667pt;}
.y5d{bottom:292.346667pt;}
.yb5{bottom:293.626667pt;}
.ydb{bottom:300.826667pt;}
.yfc{bottom:304.346667pt;}
.y122{bottom:307.866667pt;}
.y8a{bottom:309.626667pt;}
.y29{bottom:310.746667pt;}
.y34{bottom:311.438152pt;}
.yb4{bottom:311.866667pt;}
.yda{bottom:319.066667pt;}
.yfb{bottom:322.586667pt;}
.y142{bottom:325.466667pt;}
.y121{bottom:326.106667pt;}
.y89{bottom:328.026667pt;}
.y5c{bottom:328.986667pt;}
.yb3{bottom:330.266667pt;}
.yd9{bottom:337.466667pt;}
.yfa{bottom:340.986667pt;}
.y88{bottom:346.466667pt;}
.y5b{bottom:347.426667pt;}
.y28{bottom:347.906667pt;}
.y141{bottom:354.466667pt;}
.y120{bottom:355.266667pt;}
.yd8{bottom:355.906667pt;}
.yb2{bottom:359.426667pt;}
.y33{bottom:360.702472pt;}
.y87{bottom:364.706667pt;}
.y11f{bottom:373.506667pt;}
.yd7{bottom:374.626667pt;}
.y5a{bottom:376.546667pt;}
.yb1{bottom:377.666667pt;}
.yf9{bottom:377.826667pt;}
.y86{bottom:383.106667pt;}
.y140{bottom:383.586667pt;}
.y32{bottom:385.334632pt;}
.y27{bottom:389.186667pt;}
.yd6{bottom:393.186667pt;}
.y59{bottom:394.786667pt;}
.yb0{bottom:396.066667pt;}
.y85{bottom:401.506667pt;}
.y11e{bottom:402.786667pt;}
.yd5{bottom:411.426667pt;}
.y13f{bottom:412.546667pt;}
.y58{bottom:413.186667pt;}
.yaf{bottom:414.466667pt;}
.y84{bottom:419.906667pt;}
.y11d{bottom:421.026667pt;}
.yf8{bottom:425.346667pt;}
.yd4{bottom:429.826667pt;}
.y57{bottom:431.586667pt;}
.yae{bottom:432.866667pt;}
.y26{bottom:437.826667pt;}
.y83{bottom:438.146667pt;}
.y13e{bottom:441.666667pt;}
.yf7{bottom:443.586667pt;}
.yd3{bottom:448.226667pt;}
.y56{bottom:449.826667pt;}
.y11c{bottom:450.146667pt;}
.y25{bottom:453.186667pt;}
.y82{bottom:456.546667pt;}
.yf6{bottom:461.826667pt;}
.yad{bottom:461.986667pt;}
.yd2{bottom:466.626667pt;}
.y55{bottom:468.226667pt;}
.y11b{bottom:468.386667pt;}
.y24{bottom:468.546667pt;}
.y13d{bottom:470.626667pt;}
.y81{bottom:474.946667pt;}
.yac{bottom:480.226667pt;}
.y23{bottom:483.906667pt;}
.y11a{bottom:486.786667pt;}
.y80{bottom:493.346667pt;}
.yd1{bottom:495.746667pt;}
.y54{bottom:497.346667pt;}
.yab{bottom:498.626667pt;}
.y22{bottom:499.266667pt;}
.y13c{bottom:499.746667pt;}
.y119{bottom:505.026667pt;}
.y7f{bottom:511.586667pt;}
.yd0{bottom:513.986667pt;}
.y21{bottom:514.466667pt;}
.yaa{bottom:517.026667pt;}
.y13b{bottom:517.986667pt;}
.y53{bottom:528.386667pt;}
.y20{bottom:529.826667pt;}
.y7e{bottom:529.986667pt;}
.ycf{bottom:532.386667pt;}
.y118{bottom:534.146667pt;}
.ya9{bottom:535.266667pt;}
.y1f{bottom:545.186667pt;}
.y13a{bottom:547.106667pt;}
.y7d{bottom:548.386667pt;}
.y117{bottom:552.386667pt;}
.ya8{bottom:553.666667pt;}
.y52{bottom:558.466667pt;}
.y1e{bottom:560.546667pt;}
.yce{bottom:561.506667pt;}
.y139{bottom:565.346667pt;}
.y7c{bottom:566.786667pt;}
.y116{bottom:570.813333pt;}
.ya7{bottom:572.093333pt;}
.y1d{bottom:575.933333pt;}
.ycd{bottom:579.773333pt;}
.y7b{bottom:585.053333pt;}
.y51{bottom:586.813333pt;}
.ya6{bottom:590.493333pt;}
.y1c{bottom:591.293333pt;}
.y138{bottom:594.493333pt;}
.ycc{bottom:598.013333pt;}
.y115{bottom:599.933333pt;}
.y7a{bottom:603.453333pt;}
.y50{bottom:605.053333pt;}
.y1b{bottom:606.493333pt;}
.yf5{bottom:608.733333pt;}
.y137{bottom:612.733333pt;}
.ycb{bottom:616.413333pt;}
.ya5{bottom:619.613333pt;}
.y1a{bottom:621.853333pt;}
.y4f{bottom:623.453333pt;}
.yf4{bottom:627.133333pt;}
.y114{bottom:629.053333pt;}
.y136{bottom:631.133333pt;}
.y19{bottom:637.213333pt;}
.ya4{bottom:637.853333pt;}
.y79{bottom:640.093333pt;}
.y4e{bottom:641.693333pt;}
.yca{bottom:645.533333pt;}
.y18{bottom:652.573333pt;}
.ya3{bottom:656.093333pt;}
.y113{bottom:658.013333pt;}
.y78{bottom:658.493333pt;}
.y4d{bottom:660.093333pt;}
.y135{bottom:660.253333pt;}
.yc9{bottom:663.773333pt;}
.yf3{bottom:663.933333pt;}
.y17{bottom:667.933333pt;}
.y77{bottom:676.893333pt;}
.y4c{bottom:678.493333pt;}
.yc8{bottom:682.173333pt;}
.y16{bottom:683.293333pt;}
.ya2{bottom:685.373333pt;}
.y112{bottom:687.133333pt;}
.yf2{bottom:693.053333pt;}
.y15{bottom:698.493333pt;}
.yc7{bottom:700.573333pt;}
.ya1{bottom:703.613333pt;}
.y111{bottom:705.373333pt;}
.y76{bottom:706.013333pt;}
.y4b{bottom:707.613333pt;}
.yf1{bottom:711.293333pt;}
.y14{bottom:713.853333pt;}
.yc6{bottom:718.973333pt;}
.ya0{bottom:721.853333pt;}
.y75{bottom:724.253333pt;}
.y4a{bottom:725.853333pt;}
.y13{bottom:729.213333pt;}
.yf0{bottom:729.533333pt;}
.y110{bottom:734.493333pt;}
.y9f{bottom:740.253333pt;}
.y74{bottom:742.653333pt;}
.y49{bottom:744.253333pt;}
.y12{bottom:744.573333pt;}
.yef{bottom:747.933333pt;}
.yc5{bottom:748.093333pt;}
.y10f{bottom:752.733333pt;}
.y9e{bottom:758.653333pt;}
.y11{bottom:759.933333pt;}
.y73{bottom:761.053333pt;}
.y48{bottom:762.493333pt;}
.yc4{bottom:766.333333pt;}
.y10{bottom:775.133333pt;}
.y72{bottom:779.293333pt;}
.y47{bottom:780.893333pt;}
.y10e{bottom:781.853333pt;}
.y9d{bottom:787.773333pt;}
.yf{bottom:790.493333pt;}
.y134{bottom:791.773333pt;}
.yc3{bottom:795.493333pt;}
.y71{bottom:797.733333pt;}
.y46{bottom:799.333333pt;}
.y10d{bottom:800.133333pt;}
.ye{bottom:805.893333pt;}
.y9c{bottom:806.053333pt;}
.y133{bottom:810.053333pt;}
.yee{bottom:813.733333pt;}
.y45{bottom:817.733333pt;}
.yd{bottom:821.253333pt;}
.y9b{bottom:824.453333pt;}
.y70{bottom:826.853333pt;}
.y10c{bottom:829.253333pt;}
.yc{bottom:836.613333pt;}
.y132{bottom:839.173333pt;}
.yc2{bottom:842.693333pt;}
.y9a{bottom:842.853333pt;}
.y6f{bottom:845.093333pt;}
.y44{bottom:846.853333pt;}
.yb{bottom:851.973333pt;}
.y10b{bottom:858.213333pt;}
.y99{bottom:861.093333pt;}
.y6e{bottom:863.493333pt;}
.y43{bottom:865.093333pt;}
.ya{bottom:867.173333pt;}
.y131{bottom:868.133333pt;}
.yed{bottom:871.973333pt;}
.y10a{bottom:876.453333pt;}
.y98{bottom:879.493333pt;}
.y6d{bottom:881.893333pt;}
.y9{bottom:882.533333pt;}
.y130{bottom:886.373333pt;}
.yec{bottom:890.213333pt;}
.y42{bottom:894.213333pt;}
.y109{bottom:894.853333pt;}
.y8{bottom:897.893333pt;}
.y6c{bottom:900.293333pt;}
.y12f{bottom:904.773333pt;}
.yeb{bottom:908.453333pt;}
.y7{bottom:913.253333pt;}
.yc1{bottom:916.133333pt;}
.y97{bottom:916.293333pt;}
.y6b{bottom:918.533333pt;}
.yea{bottom:926.853333pt;}
.y41{bottom:928.453333pt;}
.y6{bottom:928.613333pt;}
.y12e{bottom:933.893333pt;}
.y96{bottom:934.533333pt;}
.y6a{bottom:936.933333pt;}
.y108{bottom:942.373333pt;}
.y5{bottom:943.973333pt;}
.ye9{bottom:945.253333pt;}
.y3f{bottom:946.853333pt;}
.y40{bottom:950.853333pt;}
.y12d{bottom:952.133333pt;}
.y95{bottom:952.933333pt;}
.y4{bottom:959.173333pt;}
.y107{bottom:960.613333pt;}
.ye8{bottom:963.653333pt;}
.y69{bottom:966.053333pt;}
.y12c{bottom:971.013333pt;}
.y94{bottom:971.333333pt;}
.y3{bottom:974.533333pt;}
.y3e{bottom:975.973333pt;}
.ye7{bottom:981.893333pt;}
.y68{bottom:984.293333pt;}
.yc0{bottom:989.573333pt;}
.y106{bottom:989.733333pt;}
.y2{bottom:989.893333pt;}
.y3d{bottom:994.693333pt;}
.ye6{bottom:1000.293333pt;}
.y93{bottom:1000.453333pt;}
.y1{bottom:1005.253333pt;}
.y3c{bottom:1016.133333pt;}
.y67{bottom:1018.720000pt;}
.ybf{bottom:1018.880000pt;}
.he{height:31.168125pt;}
.hc{height:38.671562pt;}
.h9{height:42.710938pt;}
.hf{height:47.906563pt;}
.h10{height:52.834688pt;}
.h4{height:53.561250pt;}
.h8{height:54.359373pt;}
.h2{height:54.598989pt;}
.h13{height:57.406250pt;}
.ha{height:57.718750pt;}
.h12{height:58.218750pt;}
.h11{height:58.563750pt;}
.hd{height:62.812500pt;}
.hb{height:68.115938pt;}
.h5{height:69.890625pt;}
.h6{height:77.811562pt;}
.h7{height:114.620625pt;}
.h3{height:135.649687pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w7{width:793.279976pt;}
.w6{width:793.279988pt;}
.w4{width:793.280000pt;}
.w5{width:793.333333pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.w3{width:794.666667pt;}
.x0{left:0.000000pt;}
.x12{left:105.311988pt;}
.x19{left:109.311988pt;}
.x1{left:112.031988pt;}
.xe{left:113.385824pt;}
.x1a{left:129.311988pt;}
.x10{left:149.146655pt;}
.x4{left:153.946655pt;}
.x7{left:187.386655pt;}
.x2{left:223.426655pt;}
.x11{left:296.386655pt;}
.x18{left:297.346655pt;}
.xa{left:323.906655pt;}
.x5{left:346.466655pt;}
.xc{left:380.253321pt;}
.x6{left:391.613321pt;}
.x9{left:397.053321pt;}
.xd{left:419.613321pt;}
.x13{left:441.853322pt;}
.xb{left:471.293321pt;}
.x3{left:539.653322pt;}
.x14{left:551.333310pt;}
.x15{left:556.293322pt;}
.x8{left:603.973321pt;}
.xf{left:666.213322pt;}
.x16{left:683.173310pt;}
.x17{left:688.133322pt;}
}

