
    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_3057a9f389878ffeb1bef118.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6582cb69b26dd011a2a4d863.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d57310ab4a1836dc848bcb84.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_11b15d1ad30fbd1bfb30dab6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.773926;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_6590ceabbf1a0fb0f83ca7c3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.912109;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_be5d7f562ad815ea22e64e89.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a1bdac66a7589f342db383c4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_3a5270085623eaddcbae9803.woff')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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_4fed2abac41f4ca617042a2c.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v5{vertical-align:-82.500000px;}
.v2{vertical-align:-81.000000px;}
.v3{vertical-align:-76.500000px;}
.v4{vertical-align:-75.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.000000px;}
.ls13{letter-spacing:-0.516000px;}
.ls9{letter-spacing:-0.492000px;}
.ls7{letter-spacing:-0.477000px;}
.ls2{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.075000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.024000px;}
.ls1d{letter-spacing:0.060000px;}
.ls12{letter-spacing:0.120000px;}
.ls1c{letter-spacing:0.174000px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.522000px;}
.ls16{letter-spacing:1.032000px;}
.ls14{letter-spacing:1.500000px;}
.lse{letter-spacing:3.000000px;}
.lsd{letter-spacing:3.180000px;}
.ls18{letter-spacing:4.560000px;}
.ls10{letter-spacing:7.500000px;}
.ls19{letter-spacing:12.000000px;}
.lsa{letter-spacing:16.500000px;}
.ls15{letter-spacing:22.500000px;}
.lsf{letter-spacing:24.000000px;}
.lsc{letter-spacing:25.500000px;}
.ls1a{letter-spacing:67.500000px;}
.ls3{letter-spacing:85.500000px;}
.ls8{letter-spacing:111.150000px;}
.ls11{letter-spacing:387.270000px;}
.ls17{letter-spacing:447.270000px;}
.lsb{letter-spacing:601.950000px;}
.ls1b{letter-spacing:825.450000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws8{word-spacing:-69.000000px;}
.ws9{word-spacing:-18.024000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.250000px;}
.wsb{word-spacing:-16.674000px;}
.ws3{word-spacing:-16.500000px;}
.ws0{word-spacing:-15.000000px;}
.ws5{word-spacing:-14.962500px;}
.ws2{word-spacing:-9.750000px;}
.ws7{word-spacing:-0.300150px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-18.000000px;}
._17{margin-left:-5.346000px;}
._a{margin-left:-3.696000px;}
._3{margin-left:-2.424000px;}
._1{margin-left:-1.122000px;}
._0{width:1.122000px;}
._2{width:2.838000px;}
._8{width:3.894000px;}
._b{width:5.124000px;}
._6{width:6.996000px;}
._5{width:8.250000px;}
._9{width:9.300000px;}
._7{width:10.428000px;}
._22{width:12.078000px;}
._24{width:13.332000px;}
._15{width:14.352000px;}
._14{width:15.444000px;}
._1b{width:16.524000px;}
._e{width:17.886000px;}
._12{width:19.272000px;}
._16{width:20.358000px;}
._11{width:21.714000px;}
._d{width:23.166000px;}
._c{width:24.420000px;}
._1c{width:26.352000px;}
._1d{width:27.864000px;}
._21{width:29.058000px;}
._19{width:30.174000px;}
._1a{width:31.212000px;}
._28{width:33.018000px;}
._29{width:34.986000px;}
._20{width:36.462000px;}
._18{width:37.554000px;}
._10{width:39.402000px;}
._f{width:40.788000px;}
._13{width:42.240000px;}
._2a{width:44.394000px;}
._2b{width:46.254000px;}
._23{width:49.434000px;}
._26{width:52.386000px;}
._2e{width:53.496000px;}
._2d{width:58.578000px;}
._27{width:200.370000px;}
._1f{width:234.930000px;}
._1e{width:374.952000px;}
._25{width:507.330000px;}
._2c{width:885.630000px;}
.fcd{color:rgb(24,24,24);}
.fc0{color:rgb(0,0,0);}
.fc2{color:rgb(51,51,51);}
.fc5{color:rgb(89,89,89);}
.fc7{color:rgb(128,128,128);}
.fc8{color:rgb(64,64,64);}
.fcb{color:rgb(34,34,34);}
.fcc{color:rgb(32,33,36);}
.fc1{color:rgb(47,119,190);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(84,130,53);}
.fca{color:rgb(173,199,62);}
.fc6{color:transparent;}
.fc9{color:rgb(0,112,192);}
.fs4{font-size:39.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs6{font-size:60.150000px;}
.fs1{font-size:66.000000px;}
.fs8{font-size:69.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:72.150000px;}
.fs5{font-size:108.000000px;}
.fs9{font-size:300.150000px;}
.y0{bottom:0.000000px;}
.y13a{bottom:3.750000px;}
.y158{bottom:3.795000px;}
.y147{bottom:4.125000px;}
.y20{bottom:4.537500px;}
.y97{bottom:6.375000px;}
.y95{bottom:17.250000px;}
.y145{bottom:22.500000px;}
.y139{bottom:22.875000px;}
.y1e{bottom:39.037500px;}
.y138{bottom:41.625000px;}
.y144{bottom:41.670000px;}
.y156{bottom:42.000000px;}
.y42{bottom:54.750000px;}
.y143{bottom:60.420000px;}
.y150{bottom:60.750000px;}
.y137{bottom:60.780000px;}
.y1d{bottom:61.875000px;}
.y43{bottom:76.537500px;}
.y1c{bottom:79.162500px;}
.y14f{bottom:79.500000px;}
.y142{bottom:79.545000px;}
.y136{bottom:79.905000px;}
.y155{bottom:79.920000px;}
.y41{bottom:82.912500px;}
.y1f{bottom:83.662500px;}
.y135{bottom:98.655000px;}
.y14e{bottom:98.670000px;}
.y141{bottom:117.450000px;}
.y14d{bottom:117.795000px;}
.y75{bottom:122.287500px;}
.y14c{bottom:136.545000px;}
.y140{bottom:136.575000px;}
.y154{bottom:136.920000px;}
.y1b{bottom:142.950000px;}
.yd4{bottom:143.700000px;}
.yab{bottom:147.825000px;}
.yed{bottom:150.825000px;}
.y9f{bottom:154.575000px;}
.y13f{bottom:155.325000px;}
.y14b{bottom:155.670000px;}
.ya8{bottom:156.450000px;}
.y148{bottom:157.950000px;}
.y12c{bottom:159.825000px;}
.yff{bottom:160.575000px;}
.y105{bottom:160.950000px;}
.yc3{bottom:161.700000px;}
.yd3{bottom:162.825000px;}
.y72{bottom:166.200000px;}
.yaa{bottom:168.075000px;}
.yec{bottom:171.450000px;}
.y11c{bottom:173.700000px;}
.y14a{bottom:174.420000px;}
.y13e{bottom:174.450000px;}
.y146{bottom:174.825000px;}
.y93{bottom:175.200000px;}
.ya5{bottom:177.075000px;}
.y110{bottom:177.450000px;}
.y104{bottom:178.200000px;}
.y12b{bottom:178.575000px;}
.yfe{bottom:181.200000px;}
.yd2{bottom:181.950000px;}
.yc2{bottom:182.325000px;}
.y71{bottom:185.325000px;}
.y3f{bottom:191.325000px;}
.yeb{bottom:192.450000px;}
.y13d{bottom:193.575000px;}
.y153{bottom:193.950000px;}
.y103{bottom:195.450000px;}
.y13c{bottom:195.825000px;}
.y92{bottom:196.200000px;}
.y9e{bottom:197.700000px;}
.y10f{bottom:198.075000px;}
.yd1{bottom:200.700000px;}
.yfd{bottom:201.825000px;}
.ya9{bottom:202.950000px;}
.yc1{bottom:203.325000px;}
.y60{bottom:207.075000px;}
.y70{bottom:208.200000px;}
.y3e{bottom:212.325000px;}
.y102{bottom:212.700000px;}
.yea{bottom:213.075000px;}
.y91{bottom:216.825000px;}
.y9d{bottom:218.325000px;}
.y10e{bottom:218.700000px;}
.y113{bottom:219.075000px;}
.yd0{bottom:219.825000px;}
.yfc{bottom:222.870000px;}
.yc0{bottom:223.995000px;}
.y5f{bottom:225.870000px;}
.y6f{bottom:228.870000px;}
.y101{bottom:229.980000px;}
.ye9{bottom:233.730000px;}
.y3d{bottom:235.230000px;}
.y12a{bottom:235.620000px;}
.y90{bottom:237.495000px;}
.y9c{bottom:239.370000px;}
.y112{bottom:239.745000px;}
.ycf{bottom:240.105000px;}
.yfb{bottom:243.480000px;}
.ybf{bottom:244.620000px;}
.y5e{bottom:247.230000px;}
.ye0{bottom:249.495000px;}
.y6e{bottom:249.870000px;}
.y3c{bottom:254.370000px;}
.y129{bottom:254.745000px;}
.yce{bottom:257.355000px;}
.y8f{bottom:258.120000px;}
.y9b{bottom:259.995000px;}
.y10d{bottom:260.355000px;}
.y100{bottom:261.120000px;}
.yfa{bottom:264.105000px;}
.ybe{bottom:265.245000px;}
.y5d{bottom:266.370000px;}
.ydf{bottom:270.120000px;}
.y6d{bottom:270.480000px;}
.y3b{bottom:273.495000px;}
.ye8{bottom:274.995000px;}
.y19{bottom:278.370000px;}
.y8e{bottom:278.745000px;}
.y9a{bottom:280.605000px;}
.y10c{bottom:280.980000px;}
.yf9{bottom:284.745000px;}
.y5c{bottom:285.495000px;}
.ybd{bottom:285.855000px;}
.yde{bottom:290.730000px;}
.y6c{bottom:291.105000px;}
.y3a{bottom:292.245000px;}
.y128{bottom:292.605000px;}
.y18{bottom:295.620000px;}
.ye7{bottom:295.980000px;}
.y8d{bottom:299.745000px;}
.y99{bottom:301.230000px;}
.y10b{bottom:301.620000px;}
.y5b{bottom:304.605000px;}
.yf8{bottom:305.370000px;}
.ybc{bottom:306.495000px;}
.y157{bottom:309.480000px;}
.y39{bottom:311.355000px;}
.y6b{bottom:311.745000px;}
.y17{bottom:312.900000px;}
.ye6{bottom:316.650000px;}
.y8c{bottom:320.400000px;}
.y98{bottom:321.900000px;}
.y10a{bottom:322.275000px;}
.y5a{bottom:323.400000px;}
.yf7{bottom:324.525000px;}
.ybb{bottom:325.650000px;}
.y16{bottom:330.150000px;}
.y38{bottom:330.525000px;}
.y6a{bottom:332.400000px;}
.ye5{bottom:337.275000px;}
.y111{bottom:339.150000px;}
.y8b{bottom:341.025000px;}
.y59{bottom:342.525000px;}
.ya4{bottom:342.900000px;}
.yf6{bottom:345.150000px;}
.yba{bottom:345.900000px;}
.y15{bottom:347.400000px;}
.y37{bottom:349.275000px;}
.y127{bottom:349.650000px;}
.ydd{bottom:353.025000px;}
.y69{bottom:353.400000px;}
.ye4{bottom:357.900000px;}
.y58{bottom:361.275000px;}
.y8a{bottom:361.650000px;}
.yb9{bottom:363.150000px;}
.ya3{bottom:363.525000px;}
.y109{bottom:363.900000px;}
.y14{bottom:364.650000px;}
.yf5{bottom:365.775000px;}
.y36{bottom:368.400000px;}
.ydc{bottom:373.650000px;}
.y68{bottom:374.025000px;}
.ye3{bottom:378.525000px;}
.yc9{bottom:378.900000px;}
.y57{bottom:380.400000px;}
.y89{bottom:382.275000px;}
.y13{bottom:384.150000px;}
.y108{bottom:384.525000px;}
.y11b{bottom:385.650000px;}
.yf4{bottom:386.775000px;}
.y35{bottom:387.150000px;}
.y126{bottom:387.525000px;}
.ydb{bottom:394.275000px;}
.y67{bottom:394.650000px;}
.ye2{bottom:398.775000px;}
.y56{bottom:399.525000px;}
.y12{bottom:401.775000px;}
.y88{bottom:403.320000px;}
.ya2{bottom:404.820000px;}
.y34{bottom:406.320000px;}
.y125{bottom:406.695000px;}
.yf3{bottom:407.445000px;}
.y13b{bottom:410.070000px;}
.yda{bottom:414.945000px;}
.y66{bottom:415.320000px;}
.ye1{bottom:416.070000px;}
.y55{bottom:418.320000px;}
.y11{bottom:420.195000px;}
.y107{bottom:423.570000px;}
.y87{bottom:423.945000px;}
.y33{bottom:425.070000px;}
.ya1{bottom:425.445000px;}
.y11a{bottom:426.945000px;}
.yf2{bottom:428.070000px;}
.yd9{bottom:433.695000px;}
.y65{bottom:435.945000px;}
.y10{bottom:437.445000px;}
.y106{bottom:440.820000px;}
.yc8{bottom:441.195000px;}
.y32{bottom:444.195000px;}
.y86{bottom:444.570000px;}
.ya0{bottom:446.445000px;}
.y119{bottom:447.570000px;}
.yf1{bottom:448.695000px;}
.yd8{bottom:450.945000px;}
.yf{bottom:455.445000px;}
.y54{bottom:456.195000px;}
.y64{bottom:456.570000px;}
.yc7{bottom:461.820000px;}
.y31{bottom:463.320000px;}
.y85{bottom:465.195000px;}
.ya7{bottom:467.070000px;}
.yd7{bottom:468.195000px;}
.y118{bottom:468.570000px;}
.ye{bottom:473.070000px;}
.y53{bottom:475.320000px;}
.y63{bottom:477.570000px;}
.y30{bottom:482.070000px;}
.yc6{bottom:482.445000px;}
.yd6{bottom:485.445000px;}
.y84{bottom:485.820000px;}
.ya6{bottom:487.695000px;}
.yf0{bottom:488.445000px;}
.y117{bottom:489.195000px;}
.yd{bottom:492.975000px;}
.y52{bottom:494.100000px;}
.ycd{bottom:497.100000px;}
.y62{bottom:498.225000px;}
.yd5{bottom:499.350000px;}
.y2f{bottom:501.225000px;}
.y124{bottom:501.600000px;}
.yc5{bottom:502.725000px;}
.y83{bottom:506.850000px;}
.yb8{bottom:508.350000px;}
.yc{bottom:512.100000px;}
.y51{bottom:513.225000px;}
.ycc{bottom:517.350000px;}
.y61{bottom:518.850000px;}
.y2e{bottom:519.975000px;}
.y123{bottom:520.350000px;}
.yef{bottom:524.100000px;}
.y82{bottom:527.475000px;}
.yb7{bottom:528.975000px;}
.y116{bottom:530.475000px;}
.yb{bottom:530.850000px;}
.ycb{bottom:534.600000px;}
.y50{bottom:534.975000px;}
.yc4{bottom:537.600000px;}
.y122{bottom:539.475000px;}
.yee{bottom:541.350000px;}
.y2d{bottom:541.725000px;}
.y152{bottom:544.725000px;}
.y81{bottom:548.100000px;}
.ya{bottom:549.975000px;}
.y115{bottom:550.725000px;}
.y4f{bottom:553.725000px;}
.y121{bottom:558.225000px;}
.y2c{bottom:560.850000px;}
.y151{bottom:561.600000px;}
.y134{bottom:567.225000px;}
.y114{bottom:567.975000px;}
.y80{bottom:568.725000px;}
.y9{bottom:569.100000px;}
.yb6{bottom:570.600000px;}
.y4e{bottom:574.350000px;}
.y120{bottom:577.350000px;}
.y2b{bottom:581.505000px;}
.y149{bottom:582.255000px;}
.y8{bottom:587.880000px;}
.y7f{bottom:589.380000px;}
.yb5{bottom:591.255000px;}
.y4d{bottom:593.505000px;}
.y11f{bottom:596.505000px;}
.y2a{bottom:600.255000px;}
.y133{bottom:606.630000px;}
.y7{bottom:607.005000px;}
.y7e{bottom:610.380000px;}
.yb4{bottom:611.880000px;}
.y4c{bottom:612.630000px;}
.y11e{bottom:615.255000px;}
.y29{bottom:619.380000px;}
.y6{bottom:625.755000px;}
.y7d{bottom:631.005000px;}
.y4b{bottom:631.380000px;}
.yb3{bottom:632.505000px;}
.y11d{bottom:634.380000px;}
.y28{bottom:638.505000px;}
.y132{bottom:644.505000px;}
.y5{bottom:644.880000px;}
.y4a{bottom:650.505000px;}
.y7c{bottom:651.630000px;}
.yb2{bottom:653.505000px;}
.y27{bottom:657.255000px;}
.y131{bottom:663.630000px;}
.y4{bottom:664.005000px;}
.y49{bottom:669.255000px;}
.y7b{bottom:672.300000px;}
.yb1{bottom:674.175000px;}
.y26{bottom:676.425000px;}
.y3{bottom:682.800000px;}
.y48{bottom:688.425000px;}
.y7a{bottom:692.925000px;}
.yb0{bottom:694.800000px;}
.y25{bottom:695.175000px;}
.y130{bottom:701.550000px;}
.y2{bottom:701.925000px;}
.y47{bottom:707.550000px;}
.y79{bottom:713.925000px;}
.y24{bottom:714.300000px;}
.yaf{bottom:715.425000px;}
.y12f{bottom:720.675000px;}
.y94{bottom:725.925000px;}
.y46{bottom:728.550000px;}
.y23{bottom:733.425000px;}
.y78{bottom:734.550000px;}
.yae{bottom:736.050000px;}
.y12e{bottom:739.425000px;}
.y77{bottom:755.175000px;}
.y22{bottom:756.300000px;}
.yad{bottom:757.050000px;}
.y12d{bottom:758.550000px;}
.y45{bottom:759.675000px;}
.y76{bottom:775.830000px;}
.yac{bottom:777.705000px;}
.yca{bottom:778.830000px;}
.y21{bottom:787.455000px;}
.y44{bottom:790.830000px;}
.y74{bottom:796.455000px;}
.y96{bottom:806.205000px;}
.y73{bottom:817.080000px;}
.y1{bottom:818.580000px;}
.y40{bottom:819.330000px;}
.y1a{bottom:836.580000px;}
.h16{height:20.625000px;}
.h1a{height:20.662500px;}
.h18{height:21.000000px;}
.h14{height:21.750000px;}
.h9{height:53.250000px;}
.h7{height:58.886719px;}
.hd{height:59.167969px;}
.h8{height:59.257324px;}
.h6{height:60.468750px;}
.hf{height:64.546875px;}
.h5{height:64.743164px;}
.h4{height:64.775391px;}
.h3{height:66.515625px;}
.h13{height:67.686035px;}
.h10{height:67.719727px;}
.hb{height:70.628906px;}
.h2{height:70.664062px;}
.he{height:70.811279px;}
.hc{height:72.562500px;}
.h11{height:87.412500px;}
.ha{height:108.843750px;}
.h15{height:115.537500px;}
.h12{height:203.275415px;}
.h19{height:210.450000px;}
.h17{height:210.495000px;}
.h1b{height:210.825000px;}
.h0{height:892.875000px;}
.h1{height:893.250000px;}
.w4{width:49.537500px;}
.w3{width:51.412500px;}
.w2{width:211.500000px;}
.w5{width:509.175000px;}
.w1{width:629.249991px;}
.w0{width:629.250000px;}
.x0{left:0.000000px;}
.x12{left:7.875000px;}
.x5{left:10.912500px;}
.x2{left:60.037491px;}
.x4{left:61.500000px;}
.x9{left:70.537491px;}
.x3{left:72.412491px;}
.x1{left:81.412491px;}
.xc{left:102.449991px;}
.x11{left:113.324991px;}
.x6{left:126.824991px;}
.xa{left:184.619991px;}
.xe{left:208.994991px;}
.xb{left:214.619991px;}
.x7{left:221.369991px;}
.x10{left:226.649991px;}
.xd{left:428.129991px;}
.xf{left:568.469991px;}
.x8{left:569.969991px;}
@media print{
.v5{vertical-align:-73.333333pt;}
.v2{vertical-align:-72.000000pt;}
.v3{vertical-align:-68.000000pt;}
.v4{vertical-align:-66.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.666667pt;}
.ls13{letter-spacing:-0.458667pt;}
.ls9{letter-spacing:-0.437333pt;}
.ls7{letter-spacing:-0.424000pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.066667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.021333pt;}
.ls1d{letter-spacing:0.053333pt;}
.ls12{letter-spacing:0.106667pt;}
.ls1c{letter-spacing:0.154667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.464000pt;}
.ls16{letter-spacing:0.917333pt;}
.ls14{letter-spacing:1.333333pt;}
.lse{letter-spacing:2.666667pt;}
.lsd{letter-spacing:2.826667pt;}
.ls18{letter-spacing:4.053333pt;}
.ls10{letter-spacing:6.666667pt;}
.ls19{letter-spacing:10.666667pt;}
.lsa{letter-spacing:14.666667pt;}
.ls15{letter-spacing:20.000000pt;}
.lsf{letter-spacing:21.333333pt;}
.lsc{letter-spacing:22.666667pt;}
.ls1a{letter-spacing:60.000000pt;}
.ls3{letter-spacing:76.000000pt;}
.ls8{letter-spacing:98.800000pt;}
.ls11{letter-spacing:344.240000pt;}
.ls17{letter-spacing:397.573333pt;}
.lsb{letter-spacing:535.066667pt;}
.ls1b{letter-spacing:733.733333pt;}
.wsa{word-spacing:-64.000000pt;}
.ws8{word-spacing:-61.333333pt;}
.ws9{word-spacing:-16.021333pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.333333pt;}
.wsb{word-spacing:-14.821333pt;}
.ws3{word-spacing:-14.666667pt;}
.ws0{word-spacing:-13.333333pt;}
.ws5{word-spacing:-13.300000pt;}
.ws2{word-spacing:-8.666667pt;}
.ws7{word-spacing:-0.266800pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-16.000000pt;}
._17{margin-left:-4.752000pt;}
._a{margin-left:-3.285333pt;}
._3{margin-left:-2.154667pt;}
._1{margin-left:-0.997333pt;}
._0{width:0.997333pt;}
._2{width:2.522667pt;}
._8{width:3.461333pt;}
._b{width:4.554667pt;}
._6{width:6.218667pt;}
._5{width:7.333333pt;}
._9{width:8.266667pt;}
._7{width:9.269333pt;}
._22{width:10.736000pt;}
._24{width:11.850667pt;}
._15{width:12.757333pt;}
._14{width:13.728000pt;}
._1b{width:14.688000pt;}
._e{width:15.898667pt;}
._12{width:17.130667pt;}
._16{width:18.096000pt;}
._11{width:19.301333pt;}
._d{width:20.592000pt;}
._c{width:21.706667pt;}
._1c{width:23.424000pt;}
._1d{width:24.768000pt;}
._21{width:25.829333pt;}
._19{width:26.821333pt;}
._1a{width:27.744000pt;}
._28{width:29.349333pt;}
._29{width:31.098667pt;}
._20{width:32.410667pt;}
._18{width:33.381333pt;}
._10{width:35.024000pt;}
._f{width:36.256000pt;}
._13{width:37.546667pt;}
._2a{width:39.461333pt;}
._2b{width:41.114667pt;}
._23{width:43.941333pt;}
._26{width:46.565333pt;}
._2e{width:47.552000pt;}
._2d{width:52.069333pt;}
._27{width:178.106667pt;}
._1f{width:208.826667pt;}
._1e{width:333.290667pt;}
._25{width:450.960000pt;}
._2c{width:787.226667pt;}
.fs4{font-size:34.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs6{font-size:53.466667pt;}
.fs1{font-size:58.666667pt;}
.fs8{font-size:61.333333pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:64.133333pt;}
.fs5{font-size:96.000000pt;}
.fs9{font-size:266.800000pt;}
.y0{bottom:0.000000pt;}
.y13a{bottom:3.333333pt;}
.y158{bottom:3.373333pt;}
.y147{bottom:3.666667pt;}
.y20{bottom:4.033333pt;}
.y97{bottom:5.666667pt;}
.y95{bottom:15.333333pt;}
.y145{bottom:20.000000pt;}
.y139{bottom:20.333333pt;}
.y1e{bottom:34.700000pt;}
.y138{bottom:37.000000pt;}
.y144{bottom:37.040000pt;}
.y156{bottom:37.333333pt;}
.y42{bottom:48.666667pt;}
.y143{bottom:53.706667pt;}
.y150{bottom:54.000000pt;}
.y137{bottom:54.026667pt;}
.y1d{bottom:55.000000pt;}
.y43{bottom:68.033333pt;}
.y1c{bottom:70.366667pt;}
.y14f{bottom:70.666667pt;}
.y142{bottom:70.706667pt;}
.y136{bottom:71.026667pt;}
.y155{bottom:71.040000pt;}
.y41{bottom:73.700000pt;}
.y1f{bottom:74.366667pt;}
.y135{bottom:87.693333pt;}
.y14e{bottom:87.706667pt;}
.y141{bottom:104.400000pt;}
.y14d{bottom:104.706667pt;}
.y75{bottom:108.700000pt;}
.y14c{bottom:121.373333pt;}
.y140{bottom:121.400000pt;}
.y154{bottom:121.706667pt;}
.y1b{bottom:127.066667pt;}
.yd4{bottom:127.733333pt;}
.yab{bottom:131.400000pt;}
.yed{bottom:134.066667pt;}
.y9f{bottom:137.400000pt;}
.y13f{bottom:138.066667pt;}
.y14b{bottom:138.373333pt;}
.ya8{bottom:139.066667pt;}
.y148{bottom:140.400000pt;}
.y12c{bottom:142.066667pt;}
.yff{bottom:142.733333pt;}
.y105{bottom:143.066667pt;}
.yc3{bottom:143.733333pt;}
.yd3{bottom:144.733333pt;}
.y72{bottom:147.733333pt;}
.yaa{bottom:149.400000pt;}
.yec{bottom:152.400000pt;}
.y11c{bottom:154.400000pt;}
.y14a{bottom:155.040000pt;}
.y13e{bottom:155.066667pt;}
.y146{bottom:155.400000pt;}
.y93{bottom:155.733333pt;}
.ya5{bottom:157.400000pt;}
.y110{bottom:157.733333pt;}
.y104{bottom:158.400000pt;}
.y12b{bottom:158.733333pt;}
.yfe{bottom:161.066667pt;}
.yd2{bottom:161.733333pt;}
.yc2{bottom:162.066667pt;}
.y71{bottom:164.733333pt;}
.y3f{bottom:170.066667pt;}
.yeb{bottom:171.066667pt;}
.y13d{bottom:172.066667pt;}
.y153{bottom:172.400000pt;}
.y103{bottom:173.733333pt;}
.y13c{bottom:174.066667pt;}
.y92{bottom:174.400000pt;}
.y9e{bottom:175.733333pt;}
.y10f{bottom:176.066667pt;}
.yd1{bottom:178.400000pt;}
.yfd{bottom:179.400000pt;}
.ya9{bottom:180.400000pt;}
.yc1{bottom:180.733333pt;}
.y60{bottom:184.066667pt;}
.y70{bottom:185.066667pt;}
.y3e{bottom:188.733333pt;}
.y102{bottom:189.066667pt;}
.yea{bottom:189.400000pt;}
.y91{bottom:192.733333pt;}
.y9d{bottom:194.066667pt;}
.y10e{bottom:194.400000pt;}
.y113{bottom:194.733333pt;}
.yd0{bottom:195.400000pt;}
.yfc{bottom:198.106667pt;}
.yc0{bottom:199.106667pt;}
.y5f{bottom:200.773333pt;}
.y6f{bottom:203.440000pt;}
.y101{bottom:204.426667pt;}
.ye9{bottom:207.760000pt;}
.y3d{bottom:209.093333pt;}
.y12a{bottom:209.440000pt;}
.y90{bottom:211.106667pt;}
.y9c{bottom:212.773333pt;}
.y112{bottom:213.106667pt;}
.ycf{bottom:213.426667pt;}
.yfb{bottom:216.426667pt;}
.ybf{bottom:217.440000pt;}
.y5e{bottom:219.760000pt;}
.ye0{bottom:221.773333pt;}
.y6e{bottom:222.106667pt;}
.y3c{bottom:226.106667pt;}
.y129{bottom:226.440000pt;}
.yce{bottom:228.760000pt;}
.y8f{bottom:229.440000pt;}
.y9b{bottom:231.106667pt;}
.y10d{bottom:231.426667pt;}
.y100{bottom:232.106667pt;}
.yfa{bottom:234.760000pt;}
.ybe{bottom:235.773333pt;}
.y5d{bottom:236.773333pt;}
.ydf{bottom:240.106667pt;}
.y6d{bottom:240.426667pt;}
.y3b{bottom:243.106667pt;}
.ye8{bottom:244.440000pt;}
.y19{bottom:247.440000pt;}
.y8e{bottom:247.773333pt;}
.y9a{bottom:249.426667pt;}
.y10c{bottom:249.760000pt;}
.yf9{bottom:253.106667pt;}
.y5c{bottom:253.773333pt;}
.ybd{bottom:254.093333pt;}
.yde{bottom:258.426667pt;}
.y6c{bottom:258.760000pt;}
.y3a{bottom:259.773333pt;}
.y128{bottom:260.093333pt;}
.y18{bottom:262.773333pt;}
.ye7{bottom:263.093333pt;}
.y8d{bottom:266.440000pt;}
.y99{bottom:267.760000pt;}
.y10b{bottom:268.106667pt;}
.y5b{bottom:270.760000pt;}
.yf8{bottom:271.440000pt;}
.ybc{bottom:272.440000pt;}
.y157{bottom:275.093333pt;}
.y39{bottom:276.760000pt;}
.y6b{bottom:277.106667pt;}
.y17{bottom:278.133333pt;}
.ye6{bottom:281.466667pt;}
.y8c{bottom:284.800000pt;}
.y98{bottom:286.133333pt;}
.y10a{bottom:286.466667pt;}
.y5a{bottom:287.466667pt;}
.yf7{bottom:288.466667pt;}
.ybb{bottom:289.466667pt;}
.y16{bottom:293.466667pt;}
.y38{bottom:293.800000pt;}
.y6a{bottom:295.466667pt;}
.ye5{bottom:299.800000pt;}
.y111{bottom:301.466667pt;}
.y8b{bottom:303.133333pt;}
.y59{bottom:304.466667pt;}
.ya4{bottom:304.800000pt;}
.yf6{bottom:306.800000pt;}
.yba{bottom:307.466667pt;}
.y15{bottom:308.800000pt;}
.y37{bottom:310.466667pt;}
.y127{bottom:310.800000pt;}
.ydd{bottom:313.800000pt;}
.y69{bottom:314.133333pt;}
.ye4{bottom:318.133333pt;}
.y58{bottom:321.133333pt;}
.y8a{bottom:321.466667pt;}
.yb9{bottom:322.800000pt;}
.ya3{bottom:323.133333pt;}
.y109{bottom:323.466667pt;}
.y14{bottom:324.133333pt;}
.yf5{bottom:325.133333pt;}
.y36{bottom:327.466667pt;}
.ydc{bottom:332.133333pt;}
.y68{bottom:332.466667pt;}
.ye3{bottom:336.466667pt;}
.yc9{bottom:336.800000pt;}
.y57{bottom:338.133333pt;}
.y89{bottom:339.800000pt;}
.y13{bottom:341.466667pt;}
.y108{bottom:341.800000pt;}
.y11b{bottom:342.800000pt;}
.yf4{bottom:343.800000pt;}
.y35{bottom:344.133333pt;}
.y126{bottom:344.466667pt;}
.ydb{bottom:350.466667pt;}
.y67{bottom:350.800000pt;}
.ye2{bottom:354.466667pt;}
.y56{bottom:355.133333pt;}
.y12{bottom:357.133333pt;}
.y88{bottom:358.506667pt;}
.ya2{bottom:359.840000pt;}
.y34{bottom:361.173333pt;}
.y125{bottom:361.506667pt;}
.yf3{bottom:362.173333pt;}
.y13b{bottom:364.506667pt;}
.yda{bottom:368.840000pt;}
.y66{bottom:369.173333pt;}
.ye1{bottom:369.840000pt;}
.y55{bottom:371.840000pt;}
.y11{bottom:373.506667pt;}
.y107{bottom:376.506667pt;}
.y87{bottom:376.840000pt;}
.y33{bottom:377.840000pt;}
.ya1{bottom:378.173333pt;}
.y11a{bottom:379.506667pt;}
.yf2{bottom:380.506667pt;}
.yd9{bottom:385.506667pt;}
.y65{bottom:387.506667pt;}
.y10{bottom:388.840000pt;}
.y106{bottom:391.840000pt;}
.yc8{bottom:392.173333pt;}
.y32{bottom:394.840000pt;}
.y86{bottom:395.173333pt;}
.ya0{bottom:396.840000pt;}
.y119{bottom:397.840000pt;}
.yf1{bottom:398.840000pt;}
.yd8{bottom:400.840000pt;}
.yf{bottom:404.840000pt;}
.y54{bottom:405.506667pt;}
.y64{bottom:405.840000pt;}
.yc7{bottom:410.506667pt;}
.y31{bottom:411.840000pt;}
.y85{bottom:413.506667pt;}
.ya7{bottom:415.173333pt;}
.yd7{bottom:416.173333pt;}
.y118{bottom:416.506667pt;}
.ye{bottom:420.506667pt;}
.y53{bottom:422.506667pt;}
.y63{bottom:424.506667pt;}
.y30{bottom:428.506667pt;}
.yc6{bottom:428.840000pt;}
.yd6{bottom:431.506667pt;}
.y84{bottom:431.840000pt;}
.ya6{bottom:433.506667pt;}
.yf0{bottom:434.173333pt;}
.y117{bottom:434.840000pt;}
.yd{bottom:438.200000pt;}
.y52{bottom:439.200000pt;}
.ycd{bottom:441.866667pt;}
.y62{bottom:442.866667pt;}
.yd5{bottom:443.866667pt;}
.y2f{bottom:445.533333pt;}
.y124{bottom:445.866667pt;}
.yc5{bottom:446.866667pt;}
.y83{bottom:450.533333pt;}
.yb8{bottom:451.866667pt;}
.yc{bottom:455.200000pt;}
.y51{bottom:456.200000pt;}
.ycc{bottom:459.866667pt;}
.y61{bottom:461.200000pt;}
.y2e{bottom:462.200000pt;}
.y123{bottom:462.533333pt;}
.yef{bottom:465.866667pt;}
.y82{bottom:468.866667pt;}
.yb7{bottom:470.200000pt;}
.y116{bottom:471.533333pt;}
.yb{bottom:471.866667pt;}
.ycb{bottom:475.200000pt;}
.y50{bottom:475.533333pt;}
.yc4{bottom:477.866667pt;}
.y122{bottom:479.533333pt;}
.yee{bottom:481.200000pt;}
.y2d{bottom:481.533333pt;}
.y152{bottom:484.200000pt;}
.y81{bottom:487.200000pt;}
.ya{bottom:488.866667pt;}
.y115{bottom:489.533333pt;}
.y4f{bottom:492.200000pt;}
.y121{bottom:496.200000pt;}
.y2c{bottom:498.533333pt;}
.y151{bottom:499.200000pt;}
.y134{bottom:504.200000pt;}
.y114{bottom:504.866667pt;}
.y80{bottom:505.533333pt;}
.y9{bottom:505.866667pt;}
.yb6{bottom:507.200000pt;}
.y4e{bottom:510.533333pt;}
.y120{bottom:513.200000pt;}
.y2b{bottom:516.893333pt;}
.y149{bottom:517.560000pt;}
.y8{bottom:522.560000pt;}
.y7f{bottom:523.893333pt;}
.yb5{bottom:525.560000pt;}
.y4d{bottom:527.560000pt;}
.y11f{bottom:530.226667pt;}
.y2a{bottom:533.560000pt;}
.y133{bottom:539.226667pt;}
.y7{bottom:539.560000pt;}
.y7e{bottom:542.560000pt;}
.yb4{bottom:543.893333pt;}
.y4c{bottom:544.560000pt;}
.y11e{bottom:546.893333pt;}
.y29{bottom:550.560000pt;}
.y6{bottom:556.226667pt;}
.y7d{bottom:560.893333pt;}
.y4b{bottom:561.226667pt;}
.yb3{bottom:562.226667pt;}
.y11d{bottom:563.893333pt;}
.y28{bottom:567.560000pt;}
.y132{bottom:572.893333pt;}
.y5{bottom:573.226667pt;}
.y4a{bottom:578.226667pt;}
.y7c{bottom:579.226667pt;}
.yb2{bottom:580.893333pt;}
.y27{bottom:584.226667pt;}
.y131{bottom:589.893333pt;}
.y4{bottom:590.226667pt;}
.y49{bottom:594.893333pt;}
.y7b{bottom:597.600000pt;}
.yb1{bottom:599.266667pt;}
.y26{bottom:601.266667pt;}
.y3{bottom:606.933333pt;}
.y48{bottom:611.933333pt;}
.y7a{bottom:615.933333pt;}
.yb0{bottom:617.600000pt;}
.y25{bottom:617.933333pt;}
.y130{bottom:623.600000pt;}
.y2{bottom:623.933333pt;}
.y47{bottom:628.933333pt;}
.y79{bottom:634.600000pt;}
.y24{bottom:634.933333pt;}
.yaf{bottom:635.933333pt;}
.y12f{bottom:640.600000pt;}
.y94{bottom:645.266667pt;}
.y46{bottom:647.600000pt;}
.y23{bottom:651.933333pt;}
.y78{bottom:652.933333pt;}
.yae{bottom:654.266667pt;}
.y12e{bottom:657.266667pt;}
.y77{bottom:671.266667pt;}
.y22{bottom:672.266667pt;}
.yad{bottom:672.933333pt;}
.y12d{bottom:674.266667pt;}
.y45{bottom:675.266667pt;}
.y76{bottom:689.626667pt;}
.yac{bottom:691.293333pt;}
.yca{bottom:692.293333pt;}
.y21{bottom:699.960000pt;}
.y44{bottom:702.960000pt;}
.y74{bottom:707.960000pt;}
.y96{bottom:716.626667pt;}
.y73{bottom:726.293333pt;}
.y1{bottom:727.626667pt;}
.y40{bottom:728.293333pt;}
.y1a{bottom:743.626667pt;}
.h16{height:18.333333pt;}
.h1a{height:18.366667pt;}
.h18{height:18.666667pt;}
.h14{height:19.333333pt;}
.h9{height:47.333333pt;}
.h7{height:52.343750pt;}
.hd{height:52.593750pt;}
.h8{height:52.673177pt;}
.h6{height:53.750000pt;}
.hf{height:57.375000pt;}
.h5{height:57.549479pt;}
.h4{height:57.578125pt;}
.h3{height:59.125000pt;}
.h13{height:60.165365pt;}
.h10{height:60.195312pt;}
.hb{height:62.781250pt;}
.h2{height:62.812500pt;}
.he{height:62.943359pt;}
.hc{height:64.500000pt;}
.h11{height:77.700000pt;}
.ha{height:96.750000pt;}
.h15{height:102.700000pt;}
.h12{height:180.689258pt;}
.h19{height:187.066667pt;}
.h17{height:187.106667pt;}
.h1b{height:187.400000pt;}
.h0{height:793.666667pt;}
.h1{height:794.000000pt;}
.w4{width:44.033333pt;}
.w3{width:45.700000pt;}
.w2{width:188.000000pt;}
.w5{width:452.600000pt;}
.w1{width:559.333325pt;}
.w0{width:559.333333pt;}
.x0{left:0.000000pt;}
.x12{left:7.000000pt;}
.x5{left:9.700000pt;}
.x2{left:53.366658pt;}
.x4{left:54.666667pt;}
.x9{left:62.699992pt;}
.x3{left:64.366658pt;}
.x1{left:72.366658pt;}
.xc{left:91.066658pt;}
.x11{left:100.733325pt;}
.x6{left:112.733325pt;}
.xa{left:164.106658pt;}
.xe{left:185.773325pt;}
.xb{left:190.773325pt;}
.x7{left:196.773325pt;}
.x10{left:201.466658pt;}
.xd{left:380.559992pt;}
.xf{left:505.306658pt;}
.x8{left:506.639992pt;}
}

