
    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_da41344dc19329b70360a9f1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ecb087f508580f7bfb55ba37.woff')format("woff");}.ff2{font-family:ff2;line-height:1.024902;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_67e82a565db86b1ff7ef95b9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_f22b9295fc443cf567637feb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.985840;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_e2b9dafb39e25ff46c947305.woff')format("woff");}.ff5{font-family:ff5;line-height:0.771973;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_b0f087b90f60971b9a703a4a.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_f63dd3dd4e6e14c1e54892fc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.985840;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_f84b9dfdaddcc522de802c33.woff')format("woff");}.ff8{font-family:ff8;line-height:0.975098;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_442706e1b4139749b10d8277.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_69f581f7afae0b2159a3546a.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5531130a70144731395caadd.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6c1f80743de3dfe25e172400.woff')format("woff");}.ffc{font-family:ffc;line-height:1.311035;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_4786c4ba663245d567f9a2d6.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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_4aef378b854352d134ac9805.woff')format("woff");}.ffe{font-family:ffe;line-height:0.708008;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-79.920000px;}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-0.906000px;}
.lsa{letter-spacing:-0.690000px;}
.ls22{letter-spacing:-0.684000px;}
.ls24{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.558000px;}
.lsb{letter-spacing:-0.477600px;}
.ls21{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.193200px;}
.ls16{letter-spacing:-0.184200px;}
.ls13{letter-spacing:-0.166200px;}
.ls1f{letter-spacing:-0.162000px;}
.ls5{letter-spacing:-0.094800px;}
.ls17{letter-spacing:-0.053280px;}
.ls12{letter-spacing:-0.041040px;}
.ls8{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.053280px;}
.ls1a{letter-spacing:0.066240px;}
.ls1e{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.077760px;}
.ls1d{letter-spacing:0.114600px;}
.ls2{letter-spacing:0.150000px;}
.ls7{letter-spacing:0.162000px;}
.ls11{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.201000px;}
.lsc{letter-spacing:0.213000px;}
.lsd{letter-spacing:0.239760px;}
.ls0{letter-spacing:0.249000px;}
.ls23{letter-spacing:0.259800px;}
.ls20{letter-spacing:0.288000px;}
.lse{letter-spacing:0.298800px;}
.ls10{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.553800px;}
.ls18{letter-spacing:0.666000px;}
.ls15{letter-spacing:0.924000px;}
.ls14{letter-spacing:1.080000px;}
.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;}
}
.ws12{word-spacing:-59.760000px;}
.ws3{word-spacing:-18.414720px;}
.wsb{word-spacing:-16.706760px;}
.ws14{word-spacing:-16.309560px;}
.ws4{word-spacing:-16.300560px;}
.ws10{word-spacing:-16.020000px;}
.ws11{word-spacing:-15.864000px;}
.ws16{word-spacing:-15.606000px;}
.ws18{word-spacing:-15.587760px;}
.wsf{word-spacing:-15.300000px;}
.ws1f{word-spacing:-15.199800px;}
.ws19{word-spacing:-15.075480px;}
.wse{word-spacing:-14.993280px;}
.ws13{word-spacing:-14.940000px;}
.ws15{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.839200px;}
.ws1a{word-spacing:-14.636280px;}
.ws17{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.355480px;}
.ws1b{word-spacing:-13.734000px;}
.ws5{word-spacing:-13.284000px;}
.ws6{word-spacing:-13.104000px;}
.ws1c{word-spacing:-13.014000px;}
.ws1d{word-spacing:-12.798000px;}
.ws1e{word-spacing:-12.762000px;}
.ws7{word-spacing:-12.564000px;}
.ws8{word-spacing:-12.212760px;}
.ws9{word-spacing:-12.011760px;}
.ws1{word-spacing:-10.647240px;}
.ws0{word-spacing:-10.398240px;}
.ws2{word-spacing:-10.052880px;}
.wsa{word-spacing:0.000000px;}
._3{margin-left:-10.133280px;}
._2{margin-left:-2.243520px;}
._1{margin-left:-1.128960px;}
._0{width:1.093560px;}
._4{width:849.185760px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs1{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.051000px;}
.y8f{bottom:3.240000px;}
.y7d{bottom:3.405000px;}
.y8d{bottom:3.420000px;}
.yf3{bottom:3.585000px;}
.y6a{bottom:3.600000px;}
.ya9{bottom:3.630000px;}
.y7f{bottom:3.765000px;}
.y67{bottom:3.780000px;}
.ye6{bottom:3.825000px;}
.yf7{bottom:5.040000px;}
.yfa{bottom:5.220000px;}
.y8b{bottom:5.760000px;}
.y87{bottom:6.120000px;}
.ydd{bottom:8.460000px;}
.ycb{bottom:12.240000px;}
.yd2{bottom:12.405000px;}
.ye8{bottom:12.420000px;}
.yb2{bottom:18.900000px;}
.y9e{bottom:19.080000px;}
.y7c{bottom:20.505000px;}
.y6d{bottom:20.880000px;}
.yd1{bottom:21.045000px;}
.y77{bottom:21.054000px;}
.y70{bottom:21.060000px;}
.y8a{bottom:22.860000px;}
.y86{bottom:23.400000px;}
.y6f{bottom:32.625000px;}
.y76{bottom:38.334000px;}
.y74{bottom:38.340000px;}
.ybc{bottom:38.520000px;}
.y89{bottom:40.140000px;}
.y85{bottom:40.680000px;}
.y4c{bottom:49.671000px;}
.y2{bottom:49.860000px;}
.y73{bottom:55.440000px;}
.ybb{bottom:55.800000px;}
.y4b{bottom:63.891000px;}
.y72{bottom:72.720000px;}
.y3{bottom:74.565000px;}
.y10{bottom:79.425000px;}
.y4a{bottom:79.725000px;}
.y71{bottom:90.000000px;}
.y49{bottom:96.105000px;}
.y48{bottom:115.185000px;}
.y5b{bottom:120.096000px;}
.y5f{bottom:120.276000px;}
.y108{bottom:121.716000px;}
.y55{bottom:124.596000px;}
.y75{bottom:131.436000px;}
.y47{bottom:134.085000px;}
.yae{bottom:140.616000px;}
.y82{bottom:151.965000px;}
.y46{bottom:152.445000px;}
.yd8{bottom:155.370000px;}
.y5a{bottom:156.630000px;}
.y45{bottom:167.925000px;}
.yf0{bottom:168.150000px;}
.y59{bottom:172.650000px;}
.yd4{bottom:174.645000px;}
.yf{bottom:179.490000px;}
.y44{bottom:181.785000px;}
.y81{bottom:182.745000px;}
.y58{bottom:184.170000px;}
.y6b{bottom:184.350000px;}
.y5e{bottom:185.970000px;}
.yc2{bottom:188.130000px;}
.y4f{bottom:188.670000px;}
.y43{bottom:195.645000px;}
.y4e{bottom:201.810000px;}
.yad{bottom:204.690000px;}
.yd3{bottom:204.705000px;}
.y42{bottom:209.865000px;}
.y80{bottom:213.525000px;}
.y57{bottom:219.450000px;}
.y54{bottom:220.530000px;}
.y41{bottom:225.705000px;}
.yef{bottom:227.370000px;}
.yd0{bottom:233.865000px;}
.y53{bottom:236.550000px;}
.y4d{bottom:241.410000px;}
.y40{bottom:241.545000px;}
.y7e{bottom:244.305000px;}
.yac{bottom:251.310000px;}
.yc1{bottom:252.045000px;}
.y52{bottom:252.570000px;}
.y3f{bottom:257.430000px;}
.y107{bottom:258.510000px;}
.ye2{bottom:259.785000px;}
.y9c{bottom:263.010000px;}
.yab{bottom:270.045000px;}
.y3e{bottom:273.270000px;}
.y104{bottom:273.990000px;}
.y7b{bottom:275.085000px;}
.ycf{bottom:280.485000px;}
.yc0{bottom:282.105000px;}
.y51{bottom:283.350000px;}
.y5d{bottom:284.430000px;}
.y3d{bottom:288.930000px;}
.y106{bottom:289.290000px;}
.ye1{bottom:289.665000px;}
.yaa{bottom:300.105000px;}
.y3c{bottom:304.770000px;}
.yd6{bottom:308.190000px;}
.yce{bottom:309.645000px;}
.y5c{bottom:310.710000px;}
.ybf{bottom:311.265000px;}
.y103{bottom:317.745000px;}
.ye0{bottom:319.005000px;}
.y3b{bottom:320.610000px;}
.y6e{bottom:324.570000px;}
.yd5{bottom:326.010000px;}
.ya8{bottom:329.445000px;}
.y7a{bottom:335.955000px;}
.y3a{bottom:336.450000px;}
.ycd{bottom:339.015000px;}
.ybe{bottom:340.635000px;}
.y102{bottom:347.835000px;}
.ydf{bottom:348.195000px;}
.y39{bottom:352.290000px;}
.ya7{bottom:358.635000px;}
.y38{bottom:368.130000px;}
.ycc{bottom:368.175000px;}
.ybd{bottom:370.515000px;}
.y6c{bottom:371.955000px;}
.y101{bottom:376.995000px;}
.yde{bottom:377.535000px;}
.y37{bottom:383.970000px;}
.ya6{bottom:388.695000px;}
.yca{bottom:397.515000px;}
.y36{bottom:399.810000px;}
.yba{bottom:400.575000px;}
.ye{bottom:405.795000px;}
.ydc{bottom:406.695000px;}
.y100{bottom:407.055000px;}
.y65{bottom:407.595000px;}
.y35{bottom:415.650000px;}
.ya5{bottom:418.575000px;}
.y69{bottom:425.955000px;}
.yd{bottom:427.395000px;}
.y34{bottom:431.490000px;}
.yff{bottom:437.115000px;}
.yc9{bottom:443.955000px;}
.y68{bottom:444.315000px;}
.ydb{bottom:445.935000px;}
.y33{bottom:447.330000px;}
.yc{bottom:449.175000px;}
.y66{bottom:462.675000px;}
.y32{bottom:463.170000px;}
.yb{bottom:470.955000px;}
.yc8{bottom:473.115000px;}
.yda{bottom:475.995000px;}
.y31{bottom:479.010000px;}
.yb9{bottom:481.935000px;}
.ya{bottom:492.015000px;}
.y30{bottom:494.670000px;}
.y64{bottom:499.575000px;}
.yc7{bottom:502.455000px;}
.y2f{bottom:510.510000px;}
.y9{bottom:510.915000px;}
.yb8{bottom:511.815000px;}
.yfe{bottom:524.595000px;}
.y2e{bottom:526.380000px;}
.y8{bottom:530.715000px;}
.yc6{bottom:531.615000px;}
.yb7{bottom:541.155000px;}
.y2d{bottom:542.220000px;}
.y7{bottom:552.495000px;}
.yfd{bottom:554.655000px;}
.y79{bottom:555.555000px;}
.y2c{bottom:558.060000px;}
.yc5{bottom:560.955000px;}
.yb6{bottom:570.315000px;}
.y2b{bottom:574.260000px;}
.yfc{bottom:583.815000px;}
.yc4{bottom:591.015000px;}
.y2a{bottom:592.080000px;}
.yb5{bottom:599.685000px;}
.y29{bottom:609.540000px;}
.yfb{bottom:613.185000px;}
.yc3{bottom:620.925000px;}
.y28{bottom:625.380000px;}
.yb4{bottom:628.845000px;}
.yee{bottom:637.845000px;}
.yd9{bottom:640.545000px;}
.y27{bottom:641.220000px;}
.yf9{bottom:642.345000px;}
.y9b{bottom:647.745000px;}
.y26{bottom:657.060000px;}
.yb3{bottom:658.905000px;}
.yed{bottom:667.905000px;}
.y25{bottom:673.260000px;}
.y9a{bottom:674.025000px;}
.yf8{bottom:674.385000px;}
.yd7{bottom:685.725000px;}
.yb1{bottom:688.965000px;}
.y24{bottom:690.900000px;}
.yec{bottom:697.245000px;}
.yf6{bottom:703.725000px;}
.y23{bottom:708.720000px;}
.y105{bottom:724.605000px;}
.yeb{bottom:726.405000px;}
.y22{bottom:726.540000px;}
.yf5{bottom:735.585000px;}
.y21{bottom:744.360000px;}
.yea{bottom:755.745000px;}
.y20{bottom:762.180000px;}
.yf4{bottom:764.925000px;}
.yb0{bottom:773.385000px;}
.y99{bottom:778.605000px;}
.y1f{bottom:780.000000px;}
.ye9{bottom:784.905000px;}
.yaf{bottom:791.205000px;}
.yf2{bottom:795.000000px;}
.y1e{bottom:797.865000px;}
.y78{bottom:800.925000px;}
.y98{bottom:809.385000px;}
.ye7{bottom:814.245000px;}
.y1d{bottom:815.685000px;}
.y63{bottom:824.685000px;}
.yf1{bottom:824.865000px;}
.y1c{bottom:833.505000px;}
.y97{bottom:840.165000px;}
.y1b{bottom:851.325000px;}
.ye5{bottom:860.865000px;}
.y1a{bottom:869.145000px;}
.y96{bottom:870.990000px;}
.y19{bottom:886.965000px;}
.ya4{bottom:888.630000px;}
.ye4{bottom:890.970000px;}
.y95{bottom:901.770000px;}
.y18{bottom:904.605000px;}
.y56{bottom:904.650000px;}
.ye3{bottom:921.030000px;}
.y17{bottom:922.425000px;}
.y94{bottom:932.370000px;}
.y16{bottom:940.245000px;}
.y6{bottom:947.850000px;}
.ya3{bottom:952.350000px;}
.y15{bottom:958.065000px;}
.y93{bottom:963.150000px;}
.y5{bottom:967.470000px;}
.y14{bottom:975.885000px;}
.y88{bottom:978.810000px;}
.ya2{bottom:982.410000px;}
.y13{bottom:993.705000px;}
.y92{bottom:993.930000px;}
.y62{bottom:1005.450000px;}
.y12{bottom:1011.525000px;}
.ya1{bottom:1011.570000px;}
.y50{bottom:1024.530000px;}
.y91{bottom:1024.710000px;}
.y11{bottom:1029.345000px;}
.y84{bottom:1033.530000px;}
.ya0{bottom:1040.910000px;}
.y90{bottom:1055.490000px;}
.y61{bottom:1065.570000px;}
.y9f{bottom:1070.970000px;}
.y8e{bottom:1086.270000px;}
.y83{bottom:1088.790000px;}
.y9d{bottom:1100.850000px;}
.y8c{bottom:1116.870000px;}
.y60{bottom:1125.510000px;}
.y1{bottom:1175.580000px;}
.h4{height:13.851000px;}
.h2b{height:17.085000px;}
.h1c{height:17.100000px;}
.h2e{height:17.121000px;}
.h32{height:17.130000px;}
.h26{height:17.265000px;}
.h1a{height:17.280000px;}
.h36{height:17.301000px;}
.h37{height:17.302500px;}
.h2a{height:17.310000px;}
.h39{height:19.980000px;}
.h35{height:26.445000px;}
.h14{height:29.678906px;}
.h12{height:31.809375px;}
.h5{height:32.237578px;}
.h3{height:33.359063px;}
.h2f{height:33.494766px;}
.h24{height:34.365000px;}
.h1e{height:34.380000px;}
.h33{height:34.545000px;}
.h20{height:34.560000px;}
.h34{height:34.725000px;}
.h30{height:34.740000px;}
.h2d{height:34.905000px;}
.h38{height:34.920000px;}
.h2c{height:34.950000px;}
.h15{height:36.580430px;}
.h10{height:36.745312px;}
.he{height:37.239961px;}
.hf{height:38.535469px;}
.hc{height:41.686523px;}
.hd{height:43.136719px;}
.h1f{height:46.116000px;}
.h17{height:46.133086px;}
.h2{height:50.229844px;}
.h7{height:50.456250px;}
.h9{height:51.135469px;}
.h22{height:51.840000px;}
.h27{height:51.876000px;}
.h6{height:52.914375px;}
.h29{height:53.640000px;}
.h28{height:54.180000px;}
.h13{height:54.597656px;}
.h1b{height:58.651172px;}
.h19{height:58.651185px;}
.h23{height:58.651186px;}
.h25{height:60.226875px;}
.h16{height:61.423863px;}
.h11{height:65.010937px;}
.h8{height:69.086250px;}
.h31{height:69.285000px;}
.h18{height:72.360000px;}
.h21{height:103.500000px;}
.h1d{height:221.970000px;}
.hb{height:1043.370000px;}
.h1{height:1263.000000px;}
.ha{height:1263.044910px;}
.h0{height:1263.060000px;}
.w2{width:17.445000px;}
.w5{width:17.805000px;}
.wa{width:66.801000px;}
.w6{width:82.080000px;}
.w9{width:111.951000px;}
.w1c{width:125.661000px;}
.wf{width:129.096000px;}
.w24{width:129.240000px;}
.w25{width:130.176000px;}
.w21{width:132.156000px;}
.w1b{width:132.291000px;}
.w13{width:132.876000px;}
.w17{width:133.596000px;}
.w29{width:134.316000px;}
.w2d{width:134.496000px;}
.we{width:135.000000px;}
.w20{width:137.880000px;}
.w12{width:138.960000px;}
.w16{width:139.680000px;}
.wd{width:140.242500px;}
.w28{width:140.400000px;}
.w2c{width:140.760000px;}
.w1f{width:143.482500px;}
.w11{width:144.382500px;}
.w19{width:144.922500px;}
.w15{width:145.102500px;}
.w27{width:146.002500px;}
.w2b{width:146.362500px;}
.w1d{width:157.350000px;}
.w7{width:158.070000px;}
.wb{width:169.410000px;}
.w23{width:177.141000px;}
.w4{width:207.030000px;}
.w8{width:374.295000px;}
.wc{width:404.346000px;}
.w1e{width:413.526000px;}
.w1a{width:415.326000px;}
.w10{width:416.226000px;}
.w18{width:418.200000px;}
.w14{width:418.386000px;}
.w26{width:420.726000px;}
.w2a{width:421.626000px;}
.w22{width:436.566000px;}
.w3{width:892.417500px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:2.340000px;}
.x17{left:5.211000px;}
.x13{left:7.560000px;}
.x9{left:12.960000px;}
.x11{left:21.774000px;}
.x7{left:51.840000px;}
.x16{left:129.825000px;}
.x5{left:135.013500px;}
.x10{left:138.096000px;}
.x1e{left:157.710000px;}
.x15{left:171.210000px;}
.xe{left:186.870000px;}
.xf{left:188.490000px;}
.x12{left:221.250000px;}
.x26{left:239.250000px;}
.x2a{left:240.690000px;}
.x18{left:243.405000px;}
.x23{left:261.405000px;}
.xc{left:266.430000px;}
.x4{left:270.075000px;}
.x1b{left:273.495000px;}
.x2b{left:275.115000px;}
.x25{left:276.915000px;}
.x20{left:280.155000px;}
.x2{left:285.915000px;}
.xa{left:286.995000px;}
.x28{left:306.255000px;}
.x19{left:311.655000px;}
.x1f{left:337.215000px;}
.x6{left:351.075000px;}
.x14{left:380.415000px;}
.x24{left:387.075000px;}
.x1a{left:404.355000px;}
.x27{left:410.475000px;}
.x1c{left:412.455000px;}
.x22{left:413.715000px;}
.x2c{left:415.515000px;}
.x21{left:419.835000px;}
.x29{left:435.495000px;}
.x3{left:445.620000px;}
.x1d{left:511.845000px;}
.xd{left:745.530000px;}
.xb{left:757.590000px;}
.x1{left:759.030000px;}
@media print{
.v1{vertical-align:-71.040000pt;}
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-0.805333pt;}
.lsa{letter-spacing:-0.613333pt;}
.ls22{letter-spacing:-0.608000pt;}
.ls24{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.496000pt;}
.lsb{letter-spacing:-0.424533pt;}
.ls21{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.171733pt;}
.ls16{letter-spacing:-0.163733pt;}
.ls13{letter-spacing:-0.147733pt;}
.ls1f{letter-spacing:-0.144000pt;}
.ls5{letter-spacing:-0.084267pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls12{letter-spacing:-0.036480pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls1a{letter-spacing:0.058880pt;}
.ls1e{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.069120pt;}
.ls1d{letter-spacing:0.101867pt;}
.ls2{letter-spacing:0.133333pt;}
.ls7{letter-spacing:0.144000pt;}
.ls11{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.178667pt;}
.lsc{letter-spacing:0.189333pt;}
.lsd{letter-spacing:0.213120pt;}
.ls0{letter-spacing:0.221333pt;}
.ls23{letter-spacing:0.230933pt;}
.ls20{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.265600pt;}
.ls10{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.492267pt;}
.ls18{letter-spacing:0.592000pt;}
.ls15{letter-spacing:0.821333pt;}
.ls14{letter-spacing:0.960000pt;}
.ws12{word-spacing:-53.120000pt;}
.ws3{word-spacing:-16.368640pt;}
.wsb{word-spacing:-14.850453pt;}
.ws14{word-spacing:-14.497387pt;}
.ws4{word-spacing:-14.489387pt;}
.ws10{word-spacing:-14.240000pt;}
.ws11{word-spacing:-14.101333pt;}
.ws16{word-spacing:-13.872000pt;}
.ws18{word-spacing:-13.855787pt;}
.wsf{word-spacing:-13.600000pt;}
.ws1f{word-spacing:-13.510933pt;}
.ws19{word-spacing:-13.400427pt;}
.wse{word-spacing:-13.327360pt;}
.ws13{word-spacing:-13.280000pt;}
.ws15{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.190400pt;}
.ws1a{word-spacing:-13.010027pt;}
.ws17{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.760427pt;}
.ws1b{word-spacing:-12.208000pt;}
.ws5{word-spacing:-11.808000pt;}
.ws6{word-spacing:-11.648000pt;}
.ws1c{word-spacing:-11.568000pt;}
.ws1d{word-spacing:-11.376000pt;}
.ws1e{word-spacing:-11.344000pt;}
.ws7{word-spacing:-11.168000pt;}
.ws8{word-spacing:-10.855787pt;}
.ws9{word-spacing:-10.677120pt;}
.ws1{word-spacing:-9.464213pt;}
.ws0{word-spacing:-9.242880pt;}
.ws2{word-spacing:-8.935893pt;}
.wsa{word-spacing:0.000000pt;}
._3{margin-left:-9.007360pt;}
._2{margin-left:-1.994240pt;}
._1{margin-left:-1.003520pt;}
._0{width:0.972053pt;}
._4{width:754.831787pt;}
.fs5{font-size:26.880000pt;}
.fs1{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:2.712000pt;}
.y8f{bottom:2.880000pt;}
.y7d{bottom:3.026667pt;}
.y8d{bottom:3.040000pt;}
.yf3{bottom:3.186667pt;}
.y6a{bottom:3.200000pt;}
.ya9{bottom:3.226667pt;}
.y7f{bottom:3.346667pt;}
.y67{bottom:3.360000pt;}
.ye6{bottom:3.400000pt;}
.yf7{bottom:4.480000pt;}
.yfa{bottom:4.640000pt;}
.y8b{bottom:5.120000pt;}
.y87{bottom:5.440000pt;}
.ydd{bottom:7.520000pt;}
.ycb{bottom:10.880000pt;}
.yd2{bottom:11.026667pt;}
.ye8{bottom:11.040000pt;}
.yb2{bottom:16.800000pt;}
.y9e{bottom:16.960000pt;}
.y7c{bottom:18.226667pt;}
.y6d{bottom:18.560000pt;}
.yd1{bottom:18.706667pt;}
.y77{bottom:18.714667pt;}
.y70{bottom:18.720000pt;}
.y8a{bottom:20.320000pt;}
.y86{bottom:20.800000pt;}
.y6f{bottom:29.000000pt;}
.y76{bottom:34.074667pt;}
.y74{bottom:34.080000pt;}
.ybc{bottom:34.240000pt;}
.y89{bottom:35.680000pt;}
.y85{bottom:36.160000pt;}
.y4c{bottom:44.152000pt;}
.y2{bottom:44.320000pt;}
.y73{bottom:49.280000pt;}
.ybb{bottom:49.600000pt;}
.y4b{bottom:56.792000pt;}
.y72{bottom:64.640000pt;}
.y3{bottom:66.280000pt;}
.y10{bottom:70.600000pt;}
.y4a{bottom:70.866667pt;}
.y71{bottom:80.000000pt;}
.y49{bottom:85.426667pt;}
.y48{bottom:102.386667pt;}
.y5b{bottom:106.752000pt;}
.y5f{bottom:106.912000pt;}
.y108{bottom:108.192000pt;}
.y55{bottom:110.752000pt;}
.y75{bottom:116.832000pt;}
.y47{bottom:119.186667pt;}
.yae{bottom:124.992000pt;}
.y82{bottom:135.080000pt;}
.y46{bottom:135.506667pt;}
.yd8{bottom:138.106667pt;}
.y5a{bottom:139.226667pt;}
.y45{bottom:149.266667pt;}
.yf0{bottom:149.466667pt;}
.y59{bottom:153.466667pt;}
.yd4{bottom:155.240000pt;}
.yf{bottom:159.546667pt;}
.y44{bottom:161.586667pt;}
.y81{bottom:162.440000pt;}
.y58{bottom:163.706667pt;}
.y6b{bottom:163.866667pt;}
.y5e{bottom:165.306667pt;}
.yc2{bottom:167.226667pt;}
.y4f{bottom:167.706667pt;}
.y43{bottom:173.906667pt;}
.y4e{bottom:179.386667pt;}
.yad{bottom:181.946667pt;}
.yd3{bottom:181.960000pt;}
.y42{bottom:186.546667pt;}
.y80{bottom:189.800000pt;}
.y57{bottom:195.066667pt;}
.y54{bottom:196.026667pt;}
.y41{bottom:200.626667pt;}
.yef{bottom:202.106667pt;}
.yd0{bottom:207.880000pt;}
.y53{bottom:210.266667pt;}
.y4d{bottom:214.586667pt;}
.y40{bottom:214.706667pt;}
.y7e{bottom:217.160000pt;}
.yac{bottom:223.386667pt;}
.yc1{bottom:224.040000pt;}
.y52{bottom:224.506667pt;}
.y3f{bottom:228.826667pt;}
.y107{bottom:229.786667pt;}
.ye2{bottom:230.920000pt;}
.y9c{bottom:233.786667pt;}
.yab{bottom:240.040000pt;}
.y3e{bottom:242.906667pt;}
.y104{bottom:243.546667pt;}
.y7b{bottom:244.520000pt;}
.ycf{bottom:249.320000pt;}
.yc0{bottom:250.760000pt;}
.y51{bottom:251.866667pt;}
.y5d{bottom:252.826667pt;}
.y3d{bottom:256.826667pt;}
.y106{bottom:257.146667pt;}
.ye1{bottom:257.480000pt;}
.yaa{bottom:266.760000pt;}
.y3c{bottom:270.906667pt;}
.yd6{bottom:273.946667pt;}
.yce{bottom:275.240000pt;}
.y5c{bottom:276.186667pt;}
.ybf{bottom:276.680000pt;}
.y103{bottom:282.440000pt;}
.ye0{bottom:283.560000pt;}
.y3b{bottom:284.986667pt;}
.y6e{bottom:288.506667pt;}
.yd5{bottom:289.786667pt;}
.ya8{bottom:292.840000pt;}
.y7a{bottom:298.626667pt;}
.y3a{bottom:299.066667pt;}
.ycd{bottom:301.346667pt;}
.ybe{bottom:302.786667pt;}
.y102{bottom:309.186667pt;}
.ydf{bottom:309.506667pt;}
.y39{bottom:313.146667pt;}
.ya7{bottom:318.786667pt;}
.y38{bottom:327.226667pt;}
.ycc{bottom:327.266667pt;}
.ybd{bottom:329.346667pt;}
.y6c{bottom:330.626667pt;}
.y101{bottom:335.106667pt;}
.yde{bottom:335.586667pt;}
.y37{bottom:341.306667pt;}
.ya6{bottom:345.506667pt;}
.yca{bottom:353.346667pt;}
.y36{bottom:355.386667pt;}
.yba{bottom:356.066667pt;}
.ye{bottom:360.706667pt;}
.ydc{bottom:361.506667pt;}
.y100{bottom:361.826667pt;}
.y65{bottom:362.306667pt;}
.y35{bottom:369.466667pt;}
.ya5{bottom:372.066667pt;}
.y69{bottom:378.626667pt;}
.yd{bottom:379.906667pt;}
.y34{bottom:383.546667pt;}
.yff{bottom:388.546667pt;}
.yc9{bottom:394.626667pt;}
.y68{bottom:394.946667pt;}
.ydb{bottom:396.386667pt;}
.y33{bottom:397.626667pt;}
.yc{bottom:399.266667pt;}
.y66{bottom:411.266667pt;}
.y32{bottom:411.706667pt;}
.yb{bottom:418.626667pt;}
.yc8{bottom:420.546667pt;}
.yda{bottom:423.106667pt;}
.y31{bottom:425.786667pt;}
.yb9{bottom:428.386667pt;}
.ya{bottom:437.346667pt;}
.y30{bottom:439.706667pt;}
.y64{bottom:444.066667pt;}
.yc7{bottom:446.626667pt;}
.y2f{bottom:453.786667pt;}
.y9{bottom:454.146667pt;}
.yb8{bottom:454.946667pt;}
.yfe{bottom:466.306667pt;}
.y2e{bottom:467.893333pt;}
.y8{bottom:471.746667pt;}
.yc6{bottom:472.546667pt;}
.yb7{bottom:481.026667pt;}
.y2d{bottom:481.973333pt;}
.y7{bottom:491.106667pt;}
.yfd{bottom:493.026667pt;}
.y79{bottom:493.826667pt;}
.y2c{bottom:496.053333pt;}
.yc5{bottom:498.626667pt;}
.yb6{bottom:506.946667pt;}
.y2b{bottom:510.453333pt;}
.yfc{bottom:518.946667pt;}
.yc4{bottom:525.346667pt;}
.y2a{bottom:526.293333pt;}
.yb5{bottom:533.053333pt;}
.y29{bottom:541.813333pt;}
.yfb{bottom:545.053333pt;}
.yc3{bottom:551.933333pt;}
.y28{bottom:555.893333pt;}
.yb4{bottom:558.973333pt;}
.yee{bottom:566.973333pt;}
.yd9{bottom:569.373333pt;}
.y27{bottom:569.973333pt;}
.yf9{bottom:570.973333pt;}
.y9b{bottom:575.773333pt;}
.y26{bottom:584.053333pt;}
.yb3{bottom:585.693333pt;}
.yed{bottom:593.693333pt;}
.y25{bottom:598.453333pt;}
.y9a{bottom:599.133333pt;}
.yf8{bottom:599.453333pt;}
.yd7{bottom:609.533333pt;}
.yb1{bottom:612.413333pt;}
.y24{bottom:614.133333pt;}
.yec{bottom:619.773333pt;}
.yf6{bottom:625.533333pt;}
.y23{bottom:629.973333pt;}
.y105{bottom:644.093333pt;}
.yeb{bottom:645.693333pt;}
.y22{bottom:645.813333pt;}
.yf5{bottom:653.853333pt;}
.y21{bottom:661.653333pt;}
.yea{bottom:671.773333pt;}
.y20{bottom:677.493333pt;}
.yf4{bottom:679.933333pt;}
.yb0{bottom:687.453333pt;}
.y99{bottom:692.093333pt;}
.y1f{bottom:693.333333pt;}
.ye9{bottom:697.693333pt;}
.yaf{bottom:703.293333pt;}
.yf2{bottom:706.666667pt;}
.y1e{bottom:709.213333pt;}
.y78{bottom:711.933333pt;}
.y98{bottom:719.453333pt;}
.ye7{bottom:723.773333pt;}
.y1d{bottom:725.053333pt;}
.y63{bottom:733.053333pt;}
.yf1{bottom:733.213333pt;}
.y1c{bottom:740.893333pt;}
.y97{bottom:746.813333pt;}
.y1b{bottom:756.733333pt;}
.ye5{bottom:765.213333pt;}
.y1a{bottom:772.573333pt;}
.y96{bottom:774.213333pt;}
.y19{bottom:788.413333pt;}
.ya4{bottom:789.893333pt;}
.ye4{bottom:791.973333pt;}
.y95{bottom:801.573333pt;}
.y18{bottom:804.093333pt;}
.y56{bottom:804.133333pt;}
.ye3{bottom:818.693333pt;}
.y17{bottom:819.933333pt;}
.y94{bottom:828.773333pt;}
.y16{bottom:835.773333pt;}
.y6{bottom:842.533333pt;}
.ya3{bottom:846.533333pt;}
.y15{bottom:851.613333pt;}
.y93{bottom:856.133333pt;}
.y5{bottom:859.973333pt;}
.y14{bottom:867.453333pt;}
.y88{bottom:870.053333pt;}
.ya2{bottom:873.253333pt;}
.y13{bottom:883.293333pt;}
.y92{bottom:883.493333pt;}
.y62{bottom:893.733333pt;}
.y12{bottom:899.133333pt;}
.ya1{bottom:899.173333pt;}
.y50{bottom:910.693333pt;}
.y91{bottom:910.853333pt;}
.y11{bottom:914.973333pt;}
.y84{bottom:918.693333pt;}
.ya0{bottom:925.253333pt;}
.y90{bottom:938.213333pt;}
.y61{bottom:947.173333pt;}
.y9f{bottom:951.973333pt;}
.y8e{bottom:965.573333pt;}
.y83{bottom:967.813333pt;}
.y9d{bottom:978.533333pt;}
.y8c{bottom:992.773333pt;}
.y60{bottom:1000.453333pt;}
.y1{bottom:1044.960000pt;}
.h4{height:12.312000pt;}
.h2b{height:15.186667pt;}
.h1c{height:15.200000pt;}
.h2e{height:15.218667pt;}
.h32{height:15.226667pt;}
.h26{height:15.346667pt;}
.h1a{height:15.360000pt;}
.h36{height:15.378667pt;}
.h37{height:15.380000pt;}
.h2a{height:15.386667pt;}
.h39{height:17.760000pt;}
.h35{height:23.506667pt;}
.h14{height:26.381250pt;}
.h12{height:28.275000pt;}
.h5{height:28.655625pt;}
.h3{height:29.652500pt;}
.h2f{height:29.773125pt;}
.h24{height:30.546667pt;}
.h1e{height:30.560000pt;}
.h33{height:30.706667pt;}
.h20{height:30.720000pt;}
.h34{height:30.866667pt;}
.h30{height:30.880000pt;}
.h2d{height:31.026667pt;}
.h38{height:31.040000pt;}
.h2c{height:31.066667pt;}
.h15{height:32.515937pt;}
.h10{height:32.662500pt;}
.he{height:33.102187pt;}
.hf{height:34.253750pt;}
.hc{height:37.054688pt;}
.hd{height:38.343750pt;}
.h1f{height:40.992000pt;}
.h17{height:41.007188pt;}
.h2{height:44.648750pt;}
.h7{height:44.850000pt;}
.h9{height:45.453750pt;}
.h22{height:46.080000pt;}
.h27{height:46.112000pt;}
.h6{height:47.035000pt;}
.h29{height:47.680000pt;}
.h28{height:48.160000pt;}
.h13{height:48.531250pt;}
.h1b{height:52.134375pt;}
.h19{height:52.134387pt;}
.h23{height:52.134388pt;}
.h25{height:53.535000pt;}
.h16{height:54.598989pt;}
.h11{height:57.787500pt;}
.h8{height:61.410000pt;}
.h31{height:61.586667pt;}
.h18{height:64.320000pt;}
.h21{height:92.000000pt;}
.h1d{height:197.306667pt;}
.hb{height:927.440000pt;}
.h1{height:1122.666667pt;}
.ha{height:1122.706587pt;}
.h0{height:1122.720000pt;}
.w2{width:15.506667pt;}
.w5{width:15.826667pt;}
.wa{width:59.378667pt;}
.w6{width:72.960000pt;}
.w9{width:99.512000pt;}
.w1c{width:111.698667pt;}
.wf{width:114.752000pt;}
.w24{width:114.880000pt;}
.w25{width:115.712000pt;}
.w21{width:117.472000pt;}
.w1b{width:117.592000pt;}
.w13{width:118.112000pt;}
.w17{width:118.752000pt;}
.w29{width:119.392000pt;}
.w2d{width:119.552000pt;}
.we{width:120.000000pt;}
.w20{width:122.560000pt;}
.w12{width:123.520000pt;}
.w16{width:124.160000pt;}
.wd{width:124.660000pt;}
.w28{width:124.800000pt;}
.w2c{width:125.120000pt;}
.w1f{width:127.540000pt;}
.w11{width:128.340000pt;}
.w19{width:128.820000pt;}
.w15{width:128.980000pt;}
.w27{width:129.780000pt;}
.w2b{width:130.100000pt;}
.w1d{width:139.866667pt;}
.w7{width:140.506667pt;}
.wb{width:150.586667pt;}
.w23{width:157.458667pt;}
.w4{width:184.026667pt;}
.w8{width:332.706667pt;}
.wc{width:359.418667pt;}
.w1e{width:367.578667pt;}
.w1a{width:369.178667pt;}
.w10{width:369.978667pt;}
.w18{width:371.733333pt;}
.w14{width:371.898667pt;}
.w26{width:373.978667pt;}
.w2a{width:374.778667pt;}
.w22{width:388.058667pt;}
.w3{width:793.260000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:2.080000pt;}
.x17{left:4.632000pt;}
.x13{left:6.720000pt;}
.x9{left:11.520000pt;}
.x11{left:19.354667pt;}
.x7{left:46.080000pt;}
.x16{left:115.400000pt;}
.x5{left:120.012000pt;}
.x10{left:122.752000pt;}
.x1e{left:140.186667pt;}
.x15{left:152.186667pt;}
.xe{left:166.106667pt;}
.xf{left:167.546667pt;}
.x12{left:196.666667pt;}
.x26{left:212.666667pt;}
.x2a{left:213.946667pt;}
.x18{left:216.360000pt;}
.x23{left:232.360000pt;}
.xc{left:236.826667pt;}
.x4{left:240.066667pt;}
.x1b{left:243.106667pt;}
.x2b{left:244.546667pt;}
.x25{left:246.146667pt;}
.x20{left:249.026667pt;}
.x2{left:254.146667pt;}
.xa{left:255.106667pt;}
.x28{left:272.226667pt;}
.x19{left:277.026667pt;}
.x1f{left:299.746667pt;}
.x6{left:312.066667pt;}
.x14{left:338.146667pt;}
.x24{left:344.066667pt;}
.x1a{left:359.426667pt;}
.x27{left:364.866667pt;}
.x1c{left:366.626667pt;}
.x22{left:367.746667pt;}
.x2c{left:369.346667pt;}
.x21{left:373.186667pt;}
.x29{left:387.106667pt;}
.x3{left:396.106667pt;}
.x1d{left:454.973333pt;}
.xd{left:662.693333pt;}
.xb{left:673.413333pt;}
.x1{left:674.693333pt;}
}

