
    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_f7865030cfe10584a5af322b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.942383;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_f464dc2c07f8f77d58d72729.woff')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_c68f22638990f22f9d798444.woff')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_89c42eea8ba34f619bec3a1a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_a16ca67c6f62adeac38fa265.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_68d3472c52300e76fbfef836.woff')format("woff");}.ff6{font-family:ff6;line-height:0.982910;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_63ac16291b9df1b1e504012f.woff')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.ls10{letter-spacing:-0.936000px;}
.ls9{letter-spacing:-0.864000px;}
.lsf{letter-spacing:-0.792000px;}
.lsa{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.648000px;}
.lsc{letter-spacing:-0.576000px;}
.ls12{letter-spacing:-0.504000px;}
.ls17{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.ls3{letter-spacing:-0.058320px;}
.ls1{letter-spacing:-0.049680px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.576000px;}
.ls1f{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.864000px;}
.ls8{letter-spacing:1.728000px;}
.ls1e{letter-spacing:3.888000px;}
.ls19{letter-spacing:7.344000px;}
.ls15{letter-spacing:7.488000px;}
.lse{letter-spacing:14.688000px;}
.ls1a{letter-spacing:16.704000px;}
.ls1d{letter-spacing:24.624000px;}
.ls7{letter-spacing:32.520000px;}
.ls1b{letter-spacing:33.264000px;}
.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;}
}
.ws7{word-spacing:-16.632000px;}
.ws8{word-spacing:-16.488000px;}
.ws2{word-spacing:-16.416000px;}
.ws9{word-spacing:-16.344000px;}
.ws3{word-spacing:-16.272000px;}
.wsa{word-spacing:-16.200000px;}
.wsd{word-spacing:-16.128000px;}
.ws4{word-spacing:-16.056000px;}
.wse{word-spacing:-15.984000px;}
.wsc{word-spacing:-15.912000px;}
.wsf{word-spacing:-15.768000px;}
.wsb{word-spacing:-15.624000px;}
.ws6{word-spacing:-15.552000px;}
.ws0{word-spacing:-13.456080px;}
.ws1{word-spacing:-13.447440px;}
.ws5{word-spacing:0.000000px;}
._2{margin-left:-1.516320px;}
._0{width:1.013760px;}
._10{width:2.160000px;}
._1{width:3.370800px;}
._4{width:5.040000px;}
._a{width:6.499200px;}
._9{width:7.536000px;}
._3{width:9.000000px;}
._11{width:10.246560px;}
._b{width:11.280000px;}
._17{width:12.312000px;}
._8{width:13.320000px;}
._7{width:14.400000px;}
._13{width:17.568000px;}
._e{width:18.840000px;}
._d{width:20.280000px;}
._c{width:21.312000px;}
._f{width:22.314240px;}
._12{width:23.721120px;}
._6{width:24.828000px;}
._5{width:25.848000px;}
._16{width:27.288000px;}
._1b{width:29.088000px;}
._1a{width:30.096000px;}
._1e{width:31.152000px;}
._19{width:32.472000px;}
._18{width:33.696000px;}
._1d{width:35.400000px;}
._21{width:36.402240px;}
._22{width:37.548000px;}
._23{width:39.024000px;}
._24{width:40.170240px;}
._25{width:41.280000px;}
._1c{width:43.248000px;}
._20{width:45.900000px;}
._1f{width:47.064000px;}
._15{width:64.944000px;}
._14{width:66.168000px;}
._27{width:290.017920px;}
._26{width:291.604320px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:18.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:4.860000px;}
.yec{bottom:5.040000px;}
.y114{bottom:5.220000px;}
.y64{bottom:7.740000px;}
.y62{bottom:7.920000px;}
.y6b{bottom:15.840000px;}
.y8f{bottom:26.820000px;}
.y69{bottom:26.865000px;}
.yeb{bottom:27.000000px;}
.yf1{bottom:27.045000px;}
.y113{bottom:27.180000px;}
.y120{bottom:36.570000px;}
.y11e{bottom:37.794000px;}
.y67{bottom:37.845000px;}
.y98{bottom:48.774000px;}
.yd4{bottom:48.780000px;}
.y68{bottom:48.825000px;}
.yea{bottom:48.954000px;}
.y119{bottom:48.960000px;}
.yf0{bottom:49.005000px;}
.y2{bottom:57.096000px;}
.ye3{bottom:59.760000px;}
.y6a{bottom:59.805000px;}
.y11c{bottom:59.940000px;}
.y97{bottom:70.734000px;}
.yd3{bottom:70.740000px;}
.y6c{bottom:70.785000px;}
.ye9{bottom:70.914000px;}
.ye6{bottom:70.920000px;}
.yef{bottom:70.965000px;}
.y92{bottom:92.694000px;}
.y107{bottom:92.700000px;}
.ye8{bottom:92.874000px;}
.ye5{bottom:92.880000px;}
.yd2{bottom:92.925000px;}
.y96{bottom:114.654000px;}
.y106{bottom:114.660000px;}
.yc3{bottom:114.834000px;}
.ye4{bottom:114.840000px;}
.yd1{bottom:114.885000px;}
.y14d{bottom:117.396000px;}
.y11d{bottom:117.756000px;}
.ye7{bottom:119.916000px;}
.y91{bottom:120.816000px;}
.y99{bottom:122.976000px;}
.y110{bottom:126.396000px;}
.y60{bottom:128.556000px;}
.y95{bottom:136.614000px;}
.y105{bottom:136.620000px;}
.yc2{bottom:136.794000px;}
.y118{bottom:136.830000px;}
.yd0{bottom:136.845000px;}
.y8c{bottom:137.916000px;}
.y14c{bottom:139.356000px;}
.y10f{bottom:148.356000px;}
.y31{bottom:148.716000px;}
.y5f{bottom:150.510000px;}
.y94{bottom:158.574000px;}
.y104{bottom:158.580000px;}
.yc1{bottom:158.754000px;}
.ycf{bottom:158.805000px;}
.y8b{bottom:159.870000px;}
.y14b{bottom:161.310000px;}
.y10e{bottom:170.310000px;}
.y30{bottom:170.670000px;}
.y5e{bottom:172.470000px;}
.y103{bottom:180.540000px;}
.y93{bottom:180.579000px;}
.yc0{bottom:180.759000px;}
.yce{bottom:180.765000px;}
.y8a{bottom:181.830000px;}
.y14a{bottom:183.270000px;}
.y10d{bottom:192.270000px;}
.y2f{bottom:192.630000px;}
.y5d{bottom:194.610000px;}
.y102{bottom:202.500000px;}
.ybf{bottom:202.719000px;}
.ycd{bottom:202.725000px;}
.y89{bottom:203.790000px;}
.y149{bottom:205.410000px;}
.y11b{bottom:206.310000px;}
.y10c{bottom:214.230000px;}
.y2e{bottom:214.590000px;}
.y5c{bottom:216.570000px;}
.y101{bottom:224.460000px;}
.ybe{bottom:224.679000px;}
.ycc{bottom:224.685000px;}
.y88{bottom:225.750000px;}
.y148{bottom:227.370000px;}
.yf4{bottom:235.440000px;}
.y10b{bottom:236.190000px;}
.y2d{bottom:236.730000px;}
.y5b{bottom:238.530000px;}
.y100{bottom:246.450000px;}
.ybd{bottom:246.639000px;}
.ycb{bottom:246.645000px;}
.y87{bottom:247.710000px;}
.y147{bottom:249.330000px;}
.yf3{bottom:257.430000px;}
.y10a{bottom:258.150000px;}
.y2c{bottom:258.690000px;}
.y5a{bottom:260.490000px;}
.yff{bottom:268.410000px;}
.ybc{bottom:268.599000px;}
.yca{bottom:268.605000px;}
.y86{bottom:269.670000px;}
.y146{bottom:271.290000px;}
.y109{bottom:280.110000px;}
.y2b{bottom:280.650000px;}
.y59{bottom:282.450000px;}
.yfe{bottom:290.550000px;}
.ybb{bottom:290.559000px;}
.yc9{bottom:290.565000px;}
.y85{bottom:291.675000px;}
.y145{bottom:293.295000px;}
.y108{bottom:302.115000px;}
.y2a{bottom:302.655000px;}
.y58{bottom:304.455000px;}
.yfd{bottom:312.510000px;}
.yba{bottom:312.519000px;}
.yc8{bottom:312.525000px;}
.yee{bottom:312.555000px;}
.y84{bottom:313.635000px;}
.y144{bottom:315.255000px;}
.ye2{bottom:318.495000px;}
.y90{bottom:319.215000px;}
.yf2{bottom:320.115000px;}
.y29{bottom:324.615000px;}
.y57{bottom:326.415000px;}
.yfc{bottom:334.470000px;}
.yb9{bottom:334.479000px;}
.yc7{bottom:334.485000px;}
.y83{bottom:335.595000px;}
.y143{bottom:337.215000px;}
.y11a{bottom:339.015000px;}
.y8e{bottom:342.075000px;}
.y28{bottom:346.575000px;}
.y56{bottom:348.375000px;}
.yfb{bottom:356.430000px;}
.yb8{bottom:356.439000px;}
.yc6{bottom:356.445000px;}
.y82{bottom:357.555000px;}
.y142{bottom:359.175000px;}
.y27{bottom:368.535000px;}
.y55{bottom:370.335000px;}
.yfa{bottom:378.390000px;}
.yb7{bottom:378.399000px;}
.yc5{bottom:378.435000px;}
.y81{bottom:379.515000px;}
.y141{bottom:381.135000px;}
.y8d{bottom:386.715000px;}
.y26{bottom:390.495000px;}
.y54{bottom:392.295000px;}
.yf9{bottom:400.350000px;}
.yb6{bottom:400.359000px;}
.y80{bottom:401.475000px;}
.y140{bottom:403.095000px;}
.y25{bottom:412.455000px;}
.y53{bottom:414.255000px;}
.yf8{bottom:422.310000px;}
.yb5{bottom:422.499000px;}
.y7f{bottom:423.435000px;}
.y13f{bottom:425.055000px;}
.y24{bottom:434.415000px;}
.y52{bottom:436.215000px;}
.yf7{bottom:444.270000px;}
.yb4{bottom:444.489000px;}
.y7e{bottom:445.395000px;}
.y13e{bottom:447.015000px;}
.y117{bottom:449.535000px;}
.ye1{bottom:451.155000px;}
.y23{bottom:456.375000px;}
.y51{bottom:458.175000px;}
.yf6{bottom:466.230000px;}
.yb3{bottom:466.449000px;}
.y7d{bottom:467.535000px;}
.y13d{bottom:468.975000px;}
.y22{bottom:478.335000px;}
.y50{bottom:480.135000px;}
.yf5{bottom:488.190000px;}
.yb2{bottom:488.409000px;}
.y7c{bottom:489.495000px;}
.y13c{bottom:490.935000px;}
.ye0{bottom:495.795000px;}
.y21{bottom:500.295000px;}
.y4f{bottom:502.275000px;}
.yb1{bottom:510.369000px;}
.y7b{bottom:511.455000px;}
.y13b{bottom:513.075000px;}
.y20{bottom:522.255000px;}
.ydf{bottom:523.335000px;}
.y4e{bottom:524.235000px;}
.yb0{bottom:532.329000px;}
.y7a{bottom:533.415000px;}
.y13a{bottom:535.035000px;}
.y1f{bottom:544.395000px;}
.yde{bottom:545.475000px;}
.y4d{bottom:546.195000px;}
.yaf{bottom:554.289000px;}
.y79{bottom:555.375000px;}
.y139{bottom:556.995000px;}
.y1e{bottom:566.385000px;}
.ydd{bottom:567.465000px;}
.y4c{bottom:568.185000px;}
.yae{bottom:576.249000px;}
.y78{bottom:577.365000px;}
.y138{bottom:578.985000px;}
.y1d{bottom:588.345000px;}
.ydc{bottom:589.425000px;}
.y4b{bottom:590.145000px;}
.yad{bottom:598.209000px;}
.y77{bottom:599.325000px;}
.y137{bottom:600.945000px;}
.y116{bottom:604.185000px;}
.y1c{bottom:610.305000px;}
.ydb{bottom:611.385000px;}
.y4a{bottom:612.105000px;}
.yac{bottom:620.169000px;}
.y76{bottom:621.285000px;}
.y136{bottom:622.905000px;}
.y1b{bottom:632.265000px;}
.yda{bottom:633.345000px;}
.y49{bottom:634.065000px;}
.yab{bottom:642.129000px;}
.y75{bottom:643.245000px;}
.y135{bottom:644.865000px;}
.y1a{bottom:654.225000px;}
.yd9{bottom:655.305000px;}
.y48{bottom:656.025000px;}
.yaa{bottom:664.089000px;}
.y74{bottom:665.205000px;}
.y134{bottom:666.825000px;}
.y19{bottom:676.185000px;}
.yd8{bottom:677.265000px;}
.y47{bottom:677.985000px;}
.ya9{bottom:686.049000px;}
.y73{bottom:687.165000px;}
.y133{bottom:688.785000px;}
.y18{bottom:698.145000px;}
.yd7{bottom:699.225000px;}
.y46{bottom:699.945000px;}
.ya8{bottom:708.009000px;}
.y72{bottom:709.125000px;}
.y132{bottom:710.745000px;}
.y17{bottom:720.105000px;}
.yd6{bottom:721.185000px;}
.y45{bottom:721.905000px;}
.ya7{bottom:730.194000px;}
.y71{bottom:731.085000px;}
.y131{bottom:732.705000px;}
.y112{bottom:736.845000px;}
.y16{bottom:742.065000px;}
.yd5{bottom:743.145000px;}
.y44{bottom:743.865000px;}
.ya6{bottom:752.154000px;}
.y70{bottom:753.045000px;}
.y130{bottom:754.665000px;}
.y115{bottom:759.525000px;}
.yc4{bottom:760.245000px;}
.y15{bottom:764.025000px;}
.y43{bottom:765.825000px;}
.y6f{bottom:771.045000px;}
.ya5{bottom:774.114000px;}
.y12f{bottom:776.625000px;}
.y111{bottom:782.205000px;}
.y14{bottom:785.985000px;}
.y42{bottom:787.785000px;}
.ya4{bottom:796.074000px;}
.y12e{bottom:798.585000px;}
.y6e{bottom:799.665000px;}
.y13{bottom:807.945000px;}
.y41{bottom:809.925000px;}
.ya3{bottom:818.034000px;}
.y12d{bottom:820.545000px;}
.yed{bottom:826.125000px;}
.y66{bottom:828.285000px;}
.y12{bottom:829.905000px;}
.y40{bottom:831.885000px;}
.ya2{bottom:839.994000px;}
.y12c{bottom:842.685000px;}
.y11{bottom:851.910000px;}
.y3f{bottom:853.890000px;}
.ya1{bottom:861.954000px;}
.y12b{bottom:864.690000px;}
.y10{bottom:874.050000px;}
.y3e{bottom:875.850000px;}
.ya0{bottom:883.914000px;}
.y12a{bottom:886.650000px;}
.yf{bottom:895.650000px;}
.y3d{bottom:897.810000px;}
.y9f{bottom:905.874000px;}
.y129{bottom:908.610000px;}
.ye{bottom:915.270000px;}
.y65{bottom:916.890000px;}
.y3c{bottom:919.770000px;}
.y9e{bottom:927.834000px;}
.y128{bottom:930.570000px;}
.yd{bottom:934.350000px;}
.y3b{bottom:941.730000px;}
.y63{bottom:945.690000px;}
.y9d{bottom:949.794000px;}
.y127{bottom:952.530000px;}
.yc{bottom:956.130000px;}
.y3a{bottom:963.690000px;}
.y9c{bottom:971.754000px;}
.y61{bottom:974.130000px;}
.y126{bottom:974.490000px;}
.yb{bottom:975.750000px;}
.y39{bottom:985.650000px;}
.y9b{bottom:993.714000px;}
.ya{bottom:994.830000px;}
.y125{bottom:996.450000px;}
.y38{bottom:1007.610000px;}
.y9a{bottom:1015.704000px;}
.y9{bottom:1016.790000px;}
.y124{bottom:1018.410000px;}
.y37{bottom:1029.570000px;}
.y8{bottom:1038.750000px;}
.y123{bottom:1040.370000px;}
.y36{bottom:1051.530000px;}
.y7{bottom:1060.710000px;}
.y122{bottom:1062.330000px;}
.y35{bottom:1073.490000px;}
.y6{bottom:1082.670000px;}
.y121{bottom:1084.290000px;}
.y34{bottom:1095.450000px;}
.y11f{bottom:1102.110000px;}
.y5{bottom:1105.530000px;}
.y33{bottom:1117.590000px;}
.y4{bottom:1131.120000px;}
.y32{bottom:1139.580000px;}
.y3{bottom:1152.540000px;}
.y1{bottom:1195.560000px;}
.h4{height:14.844727px;}
.hf{height:21.960000px;}
.hd{height:27.720000px;}
.hc{height:27.900000px;}
.h10{height:43.920000px;}
.h18{height:44.640000px;}
.h2{height:45.637031px;}
.h3{height:49.284492px;}
.h1e{height:53.676000px;}
.h7{height:54.421875px;}
.h8{height:54.628594px;}
.h9{height:54.984375px;}
.hb{height:57.937500px;}
.h6{height:59.378906px;}
.h5{height:69.473320px;}
.h19{height:74.004654px;}
.ha{height:74.953125px;}
.h1d{height:87.840000px;}
.he{height:87.876000px;}
.h1b{height:109.800000px;}
.h14{height:131.940000px;}
.h1c{height:131.976000px;}
.h1a{height:153.930000px;}
.h11{height:197.670000px;}
.h15{height:197.850000px;}
.h16{height:329.655000px;}
.h13{height:395.535000px;}
.h17{height:505.290000px;}
.h12{height:1032.810000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:47.520000px;}
.wa{width:47.736000px;}
.wf{width:51.660000px;}
.w11{width:52.020000px;}
.w10{width:56.736000px;}
.wc{width:57.600000px;}
.w9{width:60.840000px;}
.wd{width:60.876000px;}
.wb{width:62.100000px;}
.w1a{width:65.340000px;}
.w19{width:67.536000px;}
.w7{width:99.180000px;}
.w12{width:100.440000px;}
.w6{width:108.396000px;}
.w4{width:108.576000px;}
.w8{width:108.756000px;}
.w3{width:111.960000px;}
.w5{width:119.700000px;}
.w17{width:133.740000px;}
.w1e{width:152.130000px;}
.w1c{width:159.330000px;}
.w16{width:166.350000px;}
.w14{width:187.050000px;}
.w15{width:192.090000px;}
.w1d{width:214.770000px;}
.w18{width:379.335000px;}
.w1b{width:526.245000px;}
.w13{width:545.505000px;}
.w2{width:656.565000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:5.940000px;}
.x16{left:8.100000px;}
.x2b{left:10.620000px;}
.x24{left:13.320000px;}
.x32{left:16.200000px;}
.x1f{left:17.820000px;}
.x22{left:18.900000px;}
.x33{left:22.140000px;}
.x21{left:23.580000px;}
.x23{left:25.380000px;}
.x25{left:27.900000px;}
.x26{left:29.745000px;}
.x38{left:30.960000px;}
.x20{left:32.940000px;}
.x2f{left:40.185000px;}
.x1d{left:41.220000px;}
.x18{left:45.720000px;}
.x1a{left:51.480000px;}
.x27{left:55.260000px;}
.x35{left:58.545000px;}
.x14{left:68.214000px;}
.x13{left:117.036000px;}
.x8{left:127.656000px;}
.x6{left:137.916000px;}
.x4{left:139.176000px;}
.x12{left:154.650000px;}
.x5{left:158.250000px;}
.x11{left:159.690000px;}
.x3a{left:170.130000px;}
.x1{left:174.810000px;}
.x17{left:228.990000px;}
.x34{left:247.350000px;}
.x2e{left:261.390000px;}
.x15{left:277.959000px;}
.x28{left:289.830000px;}
.x9{left:335.235000px;}
.x19{left:337.575000px;}
.xc{left:346.575000px;}
.x7{left:363.675000px;}
.xe{left:366.915000px;}
.xd{left:396.975000px;}
.xa{left:400.215000px;}
.x36{left:406.695000px;}
.xf{left:411.735000px;}
.x10{left:414.975000px;}
.x2{left:435.135000px;}
.x3{left:439.815000px;}
.xb{left:446.475000px;}
.x1b{left:457.275000px;}
.x29{left:518.145000px;}
.x1c{left:565.665000px;}
.x2d{left:607.245000px;}
.x2a{left:617.325000px;}
.x37{left:621.465000px;}
.x30{left:640.725000px;}
.x1e{left:664.845000px;}
.x31{left:708.270000px;}
.x2c{left:721.590000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.832000pt;}
.ls9{letter-spacing:-0.768000pt;}
.lsf{letter-spacing:-0.704000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.576000pt;}
.lsc{letter-spacing:-0.512000pt;}
.ls12{letter-spacing:-0.448000pt;}
.ls17{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:-0.044160pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.512000pt;}
.ls1f{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.768000pt;}
.ls8{letter-spacing:1.536000pt;}
.ls1e{letter-spacing:3.456000pt;}
.ls19{letter-spacing:6.528000pt;}
.ls15{letter-spacing:6.656000pt;}
.lse{letter-spacing:13.056000pt;}
.ls1a{letter-spacing:14.848000pt;}
.ls1d{letter-spacing:21.888000pt;}
.ls7{letter-spacing:28.906667pt;}
.ls1b{letter-spacing:29.568000pt;}
.ws7{word-spacing:-14.784000pt;}
.ws8{word-spacing:-14.656000pt;}
.ws2{word-spacing:-14.592000pt;}
.ws9{word-spacing:-14.528000pt;}
.ws3{word-spacing:-14.464000pt;}
.wsa{word-spacing:-14.400000pt;}
.wsd{word-spacing:-14.336000pt;}
.ws4{word-spacing:-14.272000pt;}
.wse{word-spacing:-14.208000pt;}
.wsc{word-spacing:-14.144000pt;}
.wsf{word-spacing:-14.016000pt;}
.wsb{word-spacing:-13.888000pt;}
.ws6{word-spacing:-13.824000pt;}
.ws0{word-spacing:-11.960960pt;}
.ws1{word-spacing:-11.953280pt;}
.ws5{word-spacing:0.000000pt;}
._2{margin-left:-1.347840pt;}
._0{width:0.901120pt;}
._10{width:1.920000pt;}
._1{width:2.996267pt;}
._4{width:4.480000pt;}
._a{width:5.777067pt;}
._9{width:6.698667pt;}
._3{width:8.000000pt;}
._11{width:9.108053pt;}
._b{width:10.026667pt;}
._17{width:10.944000pt;}
._8{width:11.840000pt;}
._7{width:12.800000pt;}
._13{width:15.616000pt;}
._e{width:16.746667pt;}
._d{width:18.026667pt;}
._c{width:18.944000pt;}
._f{width:19.834880pt;}
._12{width:21.085440pt;}
._6{width:22.069333pt;}
._5{width:22.976000pt;}
._16{width:24.256000pt;}
._1b{width:25.856000pt;}
._1a{width:26.752000pt;}
._1e{width:27.690667pt;}
._19{width:28.864000pt;}
._18{width:29.952000pt;}
._1d{width:31.466667pt;}
._21{width:32.357547pt;}
._22{width:33.376000pt;}
._23{width:34.688000pt;}
._24{width:35.706880pt;}
._25{width:36.693333pt;}
._1c{width:38.442667pt;}
._20{width:40.800000pt;}
._1f{width:41.834667pt;}
._15{width:57.728000pt;}
._14{width:58.816000pt;}
._27{width:257.793707pt;}
._26{width:259.203840pt;}
.fs1{font-size:16.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:4.320000pt;}
.yec{bottom:4.480000pt;}
.y114{bottom:4.640000pt;}
.y64{bottom:6.880000pt;}
.y62{bottom:7.040000pt;}
.y6b{bottom:14.080000pt;}
.y8f{bottom:23.840000pt;}
.y69{bottom:23.880000pt;}
.yeb{bottom:24.000000pt;}
.yf1{bottom:24.040000pt;}
.y113{bottom:24.160000pt;}
.y120{bottom:32.506667pt;}
.y11e{bottom:33.594667pt;}
.y67{bottom:33.640000pt;}
.y98{bottom:43.354667pt;}
.yd4{bottom:43.360000pt;}
.y68{bottom:43.400000pt;}
.yea{bottom:43.514667pt;}
.y119{bottom:43.520000pt;}
.yf0{bottom:43.560000pt;}
.y2{bottom:50.752000pt;}
.ye3{bottom:53.120000pt;}
.y6a{bottom:53.160000pt;}
.y11c{bottom:53.280000pt;}
.y97{bottom:62.874667pt;}
.yd3{bottom:62.880000pt;}
.y6c{bottom:62.920000pt;}
.ye9{bottom:63.034667pt;}
.ye6{bottom:63.040000pt;}
.yef{bottom:63.080000pt;}
.y92{bottom:82.394667pt;}
.y107{bottom:82.400000pt;}
.ye8{bottom:82.554667pt;}
.ye5{bottom:82.560000pt;}
.yd2{bottom:82.600000pt;}
.y96{bottom:101.914667pt;}
.y106{bottom:101.920000pt;}
.yc3{bottom:102.074667pt;}
.ye4{bottom:102.080000pt;}
.yd1{bottom:102.120000pt;}
.y14d{bottom:104.352000pt;}
.y11d{bottom:104.672000pt;}
.ye7{bottom:106.592000pt;}
.y91{bottom:107.392000pt;}
.y99{bottom:109.312000pt;}
.y110{bottom:112.352000pt;}
.y60{bottom:114.272000pt;}
.y95{bottom:121.434667pt;}
.y105{bottom:121.440000pt;}
.yc2{bottom:121.594667pt;}
.y118{bottom:121.626667pt;}
.yd0{bottom:121.640000pt;}
.y8c{bottom:122.592000pt;}
.y14c{bottom:123.872000pt;}
.y10f{bottom:131.872000pt;}
.y31{bottom:132.192000pt;}
.y5f{bottom:133.786667pt;}
.y94{bottom:140.954667pt;}
.y104{bottom:140.960000pt;}
.yc1{bottom:141.114667pt;}
.ycf{bottom:141.160000pt;}
.y8b{bottom:142.106667pt;}
.y14b{bottom:143.386667pt;}
.y10e{bottom:151.386667pt;}
.y30{bottom:151.706667pt;}
.y5e{bottom:153.306667pt;}
.y103{bottom:160.480000pt;}
.y93{bottom:160.514667pt;}
.yc0{bottom:160.674667pt;}
.yce{bottom:160.680000pt;}
.y8a{bottom:161.626667pt;}
.y14a{bottom:162.906667pt;}
.y10d{bottom:170.906667pt;}
.y2f{bottom:171.226667pt;}
.y5d{bottom:172.986667pt;}
.y102{bottom:180.000000pt;}
.ybf{bottom:180.194667pt;}
.ycd{bottom:180.200000pt;}
.y89{bottom:181.146667pt;}
.y149{bottom:182.586667pt;}
.y11b{bottom:183.386667pt;}
.y10c{bottom:190.426667pt;}
.y2e{bottom:190.746667pt;}
.y5c{bottom:192.506667pt;}
.y101{bottom:199.520000pt;}
.ybe{bottom:199.714667pt;}
.ycc{bottom:199.720000pt;}
.y88{bottom:200.666667pt;}
.y148{bottom:202.106667pt;}
.yf4{bottom:209.280000pt;}
.y10b{bottom:209.946667pt;}
.y2d{bottom:210.426667pt;}
.y5b{bottom:212.026667pt;}
.y100{bottom:219.066667pt;}
.ybd{bottom:219.234667pt;}
.ycb{bottom:219.240000pt;}
.y87{bottom:220.186667pt;}
.y147{bottom:221.626667pt;}
.yf3{bottom:228.826667pt;}
.y10a{bottom:229.466667pt;}
.y2c{bottom:229.946667pt;}
.y5a{bottom:231.546667pt;}
.yff{bottom:238.586667pt;}
.ybc{bottom:238.754667pt;}
.yca{bottom:238.760000pt;}
.y86{bottom:239.706667pt;}
.y146{bottom:241.146667pt;}
.y109{bottom:248.986667pt;}
.y2b{bottom:249.466667pt;}
.y59{bottom:251.066667pt;}
.yfe{bottom:258.266667pt;}
.ybb{bottom:258.274667pt;}
.yc9{bottom:258.280000pt;}
.y85{bottom:259.266667pt;}
.y145{bottom:260.706667pt;}
.y108{bottom:268.546667pt;}
.y2a{bottom:269.026667pt;}
.y58{bottom:270.626667pt;}
.yfd{bottom:277.786667pt;}
.yba{bottom:277.794667pt;}
.yc8{bottom:277.800000pt;}
.yee{bottom:277.826667pt;}
.y84{bottom:278.786667pt;}
.y144{bottom:280.226667pt;}
.ye2{bottom:283.106667pt;}
.y90{bottom:283.746667pt;}
.yf2{bottom:284.546667pt;}
.y29{bottom:288.546667pt;}
.y57{bottom:290.146667pt;}
.yfc{bottom:297.306667pt;}
.yb9{bottom:297.314667pt;}
.yc7{bottom:297.320000pt;}
.y83{bottom:298.306667pt;}
.y143{bottom:299.746667pt;}
.y11a{bottom:301.346667pt;}
.y8e{bottom:304.066667pt;}
.y28{bottom:308.066667pt;}
.y56{bottom:309.666667pt;}
.yfb{bottom:316.826667pt;}
.yb8{bottom:316.834667pt;}
.yc6{bottom:316.840000pt;}
.y82{bottom:317.826667pt;}
.y142{bottom:319.266667pt;}
.y27{bottom:327.586667pt;}
.y55{bottom:329.186667pt;}
.yfa{bottom:336.346667pt;}
.yb7{bottom:336.354667pt;}
.yc5{bottom:336.386667pt;}
.y81{bottom:337.346667pt;}
.y141{bottom:338.786667pt;}
.y8d{bottom:343.746667pt;}
.y26{bottom:347.106667pt;}
.y54{bottom:348.706667pt;}
.yf9{bottom:355.866667pt;}
.yb6{bottom:355.874667pt;}
.y80{bottom:356.866667pt;}
.y140{bottom:358.306667pt;}
.y25{bottom:366.626667pt;}
.y53{bottom:368.226667pt;}
.yf8{bottom:375.386667pt;}
.yb5{bottom:375.554667pt;}
.y7f{bottom:376.386667pt;}
.y13f{bottom:377.826667pt;}
.y24{bottom:386.146667pt;}
.y52{bottom:387.746667pt;}
.yf7{bottom:394.906667pt;}
.yb4{bottom:395.101333pt;}
.y7e{bottom:395.906667pt;}
.y13e{bottom:397.346667pt;}
.y117{bottom:399.586667pt;}
.ye1{bottom:401.026667pt;}
.y23{bottom:405.666667pt;}
.y51{bottom:407.266667pt;}
.yf6{bottom:414.426667pt;}
.yb3{bottom:414.621333pt;}
.y7d{bottom:415.586667pt;}
.y13d{bottom:416.866667pt;}
.y22{bottom:425.186667pt;}
.y50{bottom:426.786667pt;}
.yf5{bottom:433.946667pt;}
.yb2{bottom:434.141333pt;}
.y7c{bottom:435.106667pt;}
.y13c{bottom:436.386667pt;}
.ye0{bottom:440.706667pt;}
.y21{bottom:444.706667pt;}
.y4f{bottom:446.466667pt;}
.yb1{bottom:453.661333pt;}
.y7b{bottom:454.626667pt;}
.y13b{bottom:456.066667pt;}
.y20{bottom:464.226667pt;}
.ydf{bottom:465.186667pt;}
.y4e{bottom:465.986667pt;}
.yb0{bottom:473.181333pt;}
.y7a{bottom:474.146667pt;}
.y13a{bottom:475.586667pt;}
.y1f{bottom:483.906667pt;}
.yde{bottom:484.866667pt;}
.y4d{bottom:485.506667pt;}
.yaf{bottom:492.701333pt;}
.y79{bottom:493.666667pt;}
.y139{bottom:495.106667pt;}
.y1e{bottom:503.453333pt;}
.ydd{bottom:504.413333pt;}
.y4c{bottom:505.053333pt;}
.yae{bottom:512.221333pt;}
.y78{bottom:513.213333pt;}
.y138{bottom:514.653333pt;}
.y1d{bottom:522.973333pt;}
.ydc{bottom:523.933333pt;}
.y4b{bottom:524.573333pt;}
.yad{bottom:531.741333pt;}
.y77{bottom:532.733333pt;}
.y137{bottom:534.173333pt;}
.y116{bottom:537.053333pt;}
.y1c{bottom:542.493333pt;}
.ydb{bottom:543.453333pt;}
.y4a{bottom:544.093333pt;}
.yac{bottom:551.261333pt;}
.y76{bottom:552.253333pt;}
.y136{bottom:553.693333pt;}
.y1b{bottom:562.013333pt;}
.yda{bottom:562.973333pt;}
.y49{bottom:563.613333pt;}
.yab{bottom:570.781333pt;}
.y75{bottom:571.773333pt;}
.y135{bottom:573.213333pt;}
.y1a{bottom:581.533333pt;}
.yd9{bottom:582.493333pt;}
.y48{bottom:583.133333pt;}
.yaa{bottom:590.301333pt;}
.y74{bottom:591.293333pt;}
.y134{bottom:592.733333pt;}
.y19{bottom:601.053333pt;}
.yd8{bottom:602.013333pt;}
.y47{bottom:602.653333pt;}
.ya9{bottom:609.821333pt;}
.y73{bottom:610.813333pt;}
.y133{bottom:612.253333pt;}
.y18{bottom:620.573333pt;}
.yd7{bottom:621.533333pt;}
.y46{bottom:622.173333pt;}
.ya8{bottom:629.341333pt;}
.y72{bottom:630.333333pt;}
.y132{bottom:631.773333pt;}
.y17{bottom:640.093333pt;}
.yd6{bottom:641.053333pt;}
.y45{bottom:641.693333pt;}
.ya7{bottom:649.061333pt;}
.y71{bottom:649.853333pt;}
.y131{bottom:651.293333pt;}
.y112{bottom:654.973333pt;}
.y16{bottom:659.613333pt;}
.yd5{bottom:660.573333pt;}
.y44{bottom:661.213333pt;}
.ya6{bottom:668.581333pt;}
.y70{bottom:669.373333pt;}
.y130{bottom:670.813333pt;}
.y115{bottom:675.133333pt;}
.yc4{bottom:675.773333pt;}
.y15{bottom:679.133333pt;}
.y43{bottom:680.733333pt;}
.y6f{bottom:685.373333pt;}
.ya5{bottom:688.101333pt;}
.y12f{bottom:690.333333pt;}
.y111{bottom:695.293333pt;}
.y14{bottom:698.653333pt;}
.y42{bottom:700.253333pt;}
.ya4{bottom:707.621333pt;}
.y12e{bottom:709.853333pt;}
.y6e{bottom:710.813333pt;}
.y13{bottom:718.173333pt;}
.y41{bottom:719.933333pt;}
.ya3{bottom:727.141333pt;}
.y12d{bottom:729.373333pt;}
.yed{bottom:734.333333pt;}
.y66{bottom:736.253333pt;}
.y12{bottom:737.693333pt;}
.y40{bottom:739.453333pt;}
.ya2{bottom:746.661333pt;}
.y12c{bottom:749.053333pt;}
.y11{bottom:757.253333pt;}
.y3f{bottom:759.013333pt;}
.ya1{bottom:766.181333pt;}
.y12b{bottom:768.613333pt;}
.y10{bottom:776.933333pt;}
.y3e{bottom:778.533333pt;}
.ya0{bottom:785.701333pt;}
.y12a{bottom:788.133333pt;}
.yf{bottom:796.133333pt;}
.y3d{bottom:798.053333pt;}
.y9f{bottom:805.221333pt;}
.y129{bottom:807.653333pt;}
.ye{bottom:813.573333pt;}
.y65{bottom:815.013333pt;}
.y3c{bottom:817.573333pt;}
.y9e{bottom:824.741333pt;}
.y128{bottom:827.173333pt;}
.yd{bottom:830.533333pt;}
.y3b{bottom:837.093333pt;}
.y63{bottom:840.613333pt;}
.y9d{bottom:844.261333pt;}
.y127{bottom:846.693333pt;}
.yc{bottom:849.893333pt;}
.y3a{bottom:856.613333pt;}
.y9c{bottom:863.781333pt;}
.y61{bottom:865.893333pt;}
.y126{bottom:866.213333pt;}
.yb{bottom:867.333333pt;}
.y39{bottom:876.133333pt;}
.y9b{bottom:883.301333pt;}
.ya{bottom:884.293333pt;}
.y125{bottom:885.733333pt;}
.y38{bottom:895.653333pt;}
.y9a{bottom:902.848000pt;}
.y9{bottom:903.813333pt;}
.y124{bottom:905.253333pt;}
.y37{bottom:915.173333pt;}
.y8{bottom:923.333333pt;}
.y123{bottom:924.773333pt;}
.y36{bottom:934.693333pt;}
.y7{bottom:942.853333pt;}
.y122{bottom:944.293333pt;}
.y35{bottom:954.213333pt;}
.y6{bottom:962.373333pt;}
.y121{bottom:963.813333pt;}
.y34{bottom:973.733333pt;}
.y11f{bottom:979.653333pt;}
.y5{bottom:982.693333pt;}
.y33{bottom:993.413333pt;}
.y4{bottom:1005.440000pt;}
.y32{bottom:1012.960000pt;}
.y3{bottom:1024.480000pt;}
.y1{bottom:1062.720000pt;}
.h4{height:13.195312pt;}
.hf{height:19.520000pt;}
.hd{height:24.640000pt;}
.hc{height:24.800000pt;}
.h10{height:39.040000pt;}
.h18{height:39.680000pt;}
.h2{height:40.566250pt;}
.h3{height:43.808438pt;}
.h1e{height:47.712000pt;}
.h7{height:48.375000pt;}
.h8{height:48.558750pt;}
.h9{height:48.875000pt;}
.hb{height:51.500000pt;}
.h6{height:52.781250pt;}
.h5{height:61.754062pt;}
.h19{height:65.781915pt;}
.ha{height:66.625000pt;}
.h1d{height:78.080000pt;}
.he{height:78.112000pt;}
.h1b{height:97.600000pt;}
.h14{height:117.280000pt;}
.h1c{height:117.312000pt;}
.h1a{height:136.826667pt;}
.h11{height:175.706667pt;}
.h15{height:175.866667pt;}
.h16{height:293.026667pt;}
.h13{height:351.586667pt;}
.h17{height:449.146667pt;}
.h12{height:918.053333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:42.240000pt;}
.wa{width:42.432000pt;}
.wf{width:45.920000pt;}
.w11{width:46.240000pt;}
.w10{width:50.432000pt;}
.wc{width:51.200000pt;}
.w9{width:54.080000pt;}
.wd{width:54.112000pt;}
.wb{width:55.200000pt;}
.w1a{width:58.080000pt;}
.w19{width:60.032000pt;}
.w7{width:88.160000pt;}
.w12{width:89.280000pt;}
.w6{width:96.352000pt;}
.w4{width:96.512000pt;}
.w8{width:96.672000pt;}
.w3{width:99.520000pt;}
.w5{width:106.400000pt;}
.w17{width:118.880000pt;}
.w1e{width:135.226667pt;}
.w1c{width:141.626667pt;}
.w16{width:147.866667pt;}
.w14{width:166.266667pt;}
.w15{width:170.746667pt;}
.w1d{width:190.906667pt;}
.w18{width:337.186667pt;}
.w1b{width:467.773333pt;}
.w13{width:484.893333pt;}
.w2{width:583.613333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:5.280000pt;}
.x16{left:7.200000pt;}
.x2b{left:9.440000pt;}
.x24{left:11.840000pt;}
.x32{left:14.400000pt;}
.x1f{left:15.840000pt;}
.x22{left:16.800000pt;}
.x33{left:19.680000pt;}
.x21{left:20.960000pt;}
.x23{left:22.560000pt;}
.x25{left:24.800000pt;}
.x26{left:26.440000pt;}
.x38{left:27.520000pt;}
.x20{left:29.280000pt;}
.x2f{left:35.720000pt;}
.x1d{left:36.640000pt;}
.x18{left:40.640000pt;}
.x1a{left:45.760000pt;}
.x27{left:49.120000pt;}
.x35{left:52.040000pt;}
.x14{left:60.634667pt;}
.x13{left:104.032000pt;}
.x8{left:113.472000pt;}
.x6{left:122.592000pt;}
.x4{left:123.712000pt;}
.x12{left:137.466667pt;}
.x5{left:140.666667pt;}
.x11{left:141.946667pt;}
.x3a{left:151.226667pt;}
.x1{left:155.386667pt;}
.x17{left:203.546667pt;}
.x34{left:219.866667pt;}
.x2e{left:232.346667pt;}
.x15{left:247.074667pt;}
.x28{left:257.626667pt;}
.x9{left:297.986667pt;}
.x19{left:300.066667pt;}
.xc{left:308.066667pt;}
.x7{left:323.266667pt;}
.xe{left:326.146667pt;}
.xd{left:352.866667pt;}
.xa{left:355.746667pt;}
.x36{left:361.506667pt;}
.xf{left:365.986667pt;}
.x10{left:368.866667pt;}
.x2{left:386.786667pt;}
.x3{left:390.946667pt;}
.xb{left:396.866667pt;}
.x1b{left:406.466667pt;}
.x29{left:460.573333pt;}
.x1c{left:502.813333pt;}
.x2d{left:539.773333pt;}
.x2a{left:548.733333pt;}
.x37{left:552.413333pt;}
.x30{left:569.533333pt;}
.x1e{left:590.973333pt;}
.x31{left:629.573333pt;}
.x2c{left:641.413333pt;}
}

