
    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_5cbdea803bbd1734677677f0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.977000;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_947064344c180d5164a23a16.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_6c53747b263f8780ce9c114f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.962000;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_df8e134ec53ec1091a691724.woff')format("woff");}.ff4{font-family:ff4;line-height:0.954000;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_5dd194ad5c2f81f460a0b2a1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.962000;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_020dcb13752533251340f20c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.927000;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_e9d00df00770c1a93572f3ca.woff')format("woff");}.ff7{font-family:ff7;line-height:1.155000;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_54afcfab78fd7f52de7bc10f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.971000;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_0ac11d8acc256a0101c43c27.woff')format("woff");}.ff9{font-family:ff9;line-height:0.971000;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_c73692f3c3b0c514a527b632.woff')format("woff");}.ffa{font-family:ffa;line-height:0.929000;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_16dd38631c39b7ea61546a4d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.164000;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_a3c3e3540b5a6d7c8f8bb895.woff')format("woff");}.ffc{font-family:ffc;line-height:1.127000;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_b888996855afebe26eb3f2a1.woff')format("woff");}.ffd{font-family:ffd;line-height:1.176000;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_75a26ecfa84a01d758e04f19.woff')format("woff");}.ffe{font-family:ffe;line-height:1.129000;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:fff;src:url('chunks/assets/font_e49f1e7d762d39bc00ee168d.woff')format("woff");}.fff{font-family:fff;line-height:0.961000;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:ff10;src:url('chunks/assets/font_844701317c18e6a8c72a24ed.woff')format("woff");}.ff10{font-family:ff10;line-height:1.008000;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:ff11;src:url('chunks/assets/font_e2fa22f0d03db01bb0843075.woff')format("woff");}.ff11{font-family:ff11;line-height:1.008000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.984000px;}
.v2{vertical-align:18.018000px;}
.v3{vertical-align:36.000000px;}
.ls5{letter-spacing:-1.080000px;}
.ls2{letter-spacing:-0.780000px;}
.ls7{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.486000px;}
.ls8{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.162000px;}
.ls4{letter-spacing:0.378000px;}
.ls0{letter-spacing:5.460000px;}
.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;}
}
.ws0{word-spacing:-15.498000px;}
.ws3{word-spacing:-10.800000px;}
.ws4{word-spacing:-10.476000px;}
.ws16{word-spacing:-10.200000px;}
.ws1{word-spacing:-9.600000px;}
.ws24{word-spacing:-7.839018px;}
.ws9{word-spacing:-7.461234px;}
.ws2{word-spacing:-6.632208px;}
.ws14{word-spacing:-3.078000px;}
.ws22{word-spacing:-2.430000px;}
.wsd{word-spacing:-2.106000px;}
.ws23{word-spacing:-1.134000px;}
.ws1b{word-spacing:-0.378000px;}
.ws27{word-spacing:-0.324000px;}
.wsf{word-spacing:-0.162000px;}
.ws5{word-spacing:0.000000px;}
.ws8{word-spacing:0.162000px;}
.ws1a{word-spacing:0.270000px;}
.ws2b{word-spacing:0.288000px;}
.ws2a{word-spacing:0.720000px;}
.ws29{word-spacing:0.972000px;}
.ws1d{word-spacing:1.080000px;}
.ws12{word-spacing:1.296000px;}
.wsa{word-spacing:1.728000px;}
.ws20{word-spacing:1.782000px;}
.ws21{word-spacing:1.890000px;}
.wsc{word-spacing:3.834000px;}
.ws25{word-spacing:4.374000px;}
.ws13{word-spacing:5.346000px;}
.wsb{word-spacing:5.400000px;}
.ws11{word-spacing:5.616000px;}
.ws7{word-spacing:5.940000px;}
.ws1c{word-spacing:5.994000px;}
.ws28{word-spacing:6.210000px;}
.ws6{word-spacing:6.264000px;}
.ws15{word-spacing:7.668000px;}
.ws26{word-spacing:7.776000px;}
.ws1e{word-spacing:8.478000px;}
.ws10{word-spacing:9.342000px;}
.ws1f{word-spacing:11.664000px;}
.wse{word-spacing:11.772000px;}
.ws19{word-spacing:346.239000px;}
.ws18{word-spacing:415.650000px;}
.ws17{word-spacing:451.146000px;}
._4{margin-left:-15.493800px;}
._3{margin-left:-6.295800px;}
._5{margin-left:-5.208000px;}
._6{margin-left:-3.666000px;}
._2{margin-left:-2.520000px;}
._1{margin-left:-1.260000px;}
._0{width:1.255800px;}
._9{width:2.391600px;}
._7{width:3.472200px;}
._b{width:5.302800px;}
._c{width:6.312600px;}
._a{width:7.632000px;}
._8{width:8.845200px;}
._e{width:10.049400px;}
._d{width:11.637000px;}
._f{width:14.428800px;}
._12{width:16.021800px;}
._10{width:17.247600px;}
._16{width:18.759600px;}
._13{width:20.525400px;}
._14{width:21.880800px;}
._15{width:24.737400px;}
._17{width:26.130600px;}
._11{width:38.400000px;}
._19{width:139.848000px;}
._18{width:334.608000px;}
._1a{width:361.590000px;}
.fc4{color:rgb(79,76,77);}
.fc3{color:rgb(167,165,166);}
.fc2{color:rgb(123,121,121);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(174,174,174);}
.fs6{font-size:27.984000px;}
.fs9{font-size:31.482000px;}
.fs1{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:120.000000px;}
.fs0{font-size:127.392600px;}
.y0{bottom:0.000000px;}
.y2b{bottom:53.621700px;}
.y29{bottom:53.624700px;}
.y2a{bottom:67.124700px;}
.y1{bottom:74.963700px;}
.y71{bottom:106.299300px;}
.yf2{bottom:106.299450px;}
.ybc{bottom:106.299600px;}
.yd0{bottom:109.609650px;}
.y53{bottom:112.932450px;}
.y9b{bottom:112.968450px;}
.y8c{bottom:112.981950px;}
.y174{bottom:117.507450px;}
.y70{bottom:120.699300px;}
.yf1{bottom:120.699450px;}
.ybb{bottom:120.699600px;}
.y10f{bottom:121.482900px;}
.y19b{bottom:127.346700px;}
.y1ba{bottom:128.810700px;}
.y15c{bottom:135.099300px;}
.yf0{bottom:135.099450px;}
.yba{bottom:135.099600px;}
.y52{bottom:135.436950px;}
.y9a{bottom:135.472950px;}
.y8b{bottom:135.486450px;}
.ycc{bottom:135.490950px;}
.y134{bottom:135.531450px;}
.y15b{bottom:149.499300px;}
.yef{bottom:149.499450px;}
.yb9{bottom:149.499600px;}
.y173{bottom:149.763450px;}
.y26{bottom:156.177750px;}
.y51{bottom:157.941450px;}
.y99{bottom:157.977450px;}
.y6f{bottom:157.990950px;}
.ycb{bottom:157.995450px;}
.y19a{bottom:159.602700px;}
.y1b9{bottom:161.066700px;}
.y10e{bottom:161.853750px;}
.y15a{bottom:163.899300px;}
.yee{bottom:163.899450px;}
.yb8{bottom:163.899600px;}
.y172{bottom:169.263450px;}
.y159{bottom:178.299300px;}
.yed{bottom:178.299450px;}
.yb7{bottom:178.299600px;}
.y25{bottom:178.682250px;}
.y199{bottom:179.102700px;}
.y10c{bottom:179.856750px;}
.y50{bottom:180.445950px;}
.y98{bottom:180.481950px;}
.y6e{bottom:180.495450px;}
.yca{bottom:180.499950px;}
.y158{bottom:192.699300px;}
.yec{bottom:192.699450px;}
.y1b8{bottom:193.322700px;}
.y10d{bottom:197.859750px;}
.y24{bottom:201.186750px;}
.y171{bottom:201.519450px;}
.y4f{bottom:202.950450px;}
.y97{bottom:202.986450px;}
.y6d{bottom:202.999950px;}
.y13d{bottom:203.013450px;}
.y133{bottom:205.214400px;}
.yeb{bottom:207.099450px;}
.y198{bottom:211.358700px;}
.y23{bottom:223.691250px;}
.y96{bottom:225.490950px;}
.yc9{bottom:225.495450px;}
.y6c{bottom:225.504450px;}
.y12f{bottom:225.508950px;}
.yb6{bottom:225.517950px;}
.y1b7{bottom:225.578700px;}
.y197{bottom:230.858700px;}
.y170{bottom:233.775450px;}
.y109{bottom:242.076750px;}
.y22{bottom:246.195750px;}
.y4e{bottom:247.945950px;}
.y157{bottom:247.950450px;}
.y8a{bottom:247.995450px;}
.yc8{bottom:247.999950px;}
.y6b{bottom:248.008950px;}
.y12e{bottom:248.013450px;}
.yb5{bottom:248.022450px;}
.y196{bottom:250.358700px;}
.y1b6{bottom:257.834700px;}
.y108{bottom:260.079750px;}
.y16f{bottom:266.031450px;}
.y21{bottom:268.700250px;}
.y10b{bottom:269.068500px;}
.y4d{bottom:270.450450px;}
.y156{bottom:270.454950px;}
.y89{bottom:270.499950px;}
.yc7{bottom:270.504450px;}
.y13c{bottom:270.513450px;}
.y12d{bottom:270.517950px;}
.yb4{bottom:270.526950px;}
.y105{bottom:278.082750px;}
.y195{bottom:282.614700px;}
.y16e{bottom:285.531450px;}
.y10a{bottom:287.071500px;}
.y1b5{bottom:290.090700px;}
.y20{bottom:291.204750px;}
.y4c{bottom:292.954950px;}
.y155{bottom:292.959450px;}
.y6a{bottom:293.004450px;}
.yc6{bottom:293.008950px;}
.y13b{bottom:293.017950px;}
.yb3{bottom:293.022450px;}
.y107{bottom:296.085750px;}
.y16d{bottom:305.031450px;}
.y106{bottom:314.088750px;}
.y194{bottom:314.870700px;}
.y120{bottom:315.432450px;}
.y4b{bottom:315.459450px;}
.y154{bottom:315.463950px;}
.y69{bottom:315.508950px;}
.yc5{bottom:315.513450px;}
.y13a{bottom:315.522450px;}
.yb2{bottom:315.526950px;}
.y1b4{bottom:322.346700px;}
.y193{bottom:334.370700px;}
.y1f{bottom:336.200250px;}
.y11f{bottom:337.936950px;}
.y4a{bottom:337.963950px;}
.y153{bottom:337.968450px;}
.y12c{bottom:337.995450px;}
.y68{bottom:338.013450px;}
.yc4{bottom:338.017950px;}
.y139{bottom:338.026950px;}
.yea{bottom:338.031450px;}
.y104{bottom:339.588750px;}
.y1b3{bottom:354.602700px;}
.y102{bottom:357.591750px;}
.y11e{bottom:360.441450px;}
.y49{bottom:360.468450px;}
.y152{bottom:360.472950px;}
.y67{bottom:360.517950px;}
.yb1{bottom:360.522450px;}
.y138{bottom:360.531450px;}
.y192{bottom:366.626700px;}
.y103{bottom:375.594750px;}
.y1e{bottom:381.195750px;}
.y11d{bottom:382.945950px;}
.y12b{bottom:382.990950px;}
.y88{bottom:383.008950px;}
.y66{bottom:383.022450px;}
.yb0{bottom:383.026950px;}
.ye9{bottom:383.031450px;}
.y191{bottom:386.126700px;}
.y1b2{bottom:386.858700px;}
.y101{bottom:401.097600px;}
.y1d{bottom:403.700250px;}
.y11c{bottom:405.450450px;}
.y48{bottom:405.463950px;}
.y151{bottom:405.468450px;}
.y16c{bottom:405.490950px;}
.y12a{bottom:405.495450px;}
.y87{bottom:405.513450px;}
.yc3{bottom:405.517950px;}
.y137{bottom:405.526950px;}
.yaf{bottom:405.531450px;}
.y190{bottom:405.626700px;}
.y1b1{bottom:406.358700px;}
.y100{bottom:419.097600px;}
.y1c{bottom:426.204750px;}
.y47{bottom:427.968450px;}
.y150{bottom:427.972950px;}
.y16b{bottom:427.995450px;}
.y129{bottom:427.999950px;}
.ye8{bottom:428.013450px;}
.y65{bottom:428.017950px;}
.yc2{bottom:428.022450px;}
.y136{bottom:428.031450px;}
.y18f{bottom:437.882700px;}
.y1b0{bottom:438.614700px;}
.y1b{bottom:448.709250px;}
.y11b{bottom:450.445950px;}
.yff{bottom:450.459450px;}
.y46{bottom:450.472950px;}
.y14f{bottom:450.477450px;}
.y16a{bottom:450.499950px;}
.y128{bottom:450.504450px;}
.ye7{bottom:450.517950px;}
.y64{bottom:450.522450px;}
.yc1{bottom:450.526950px;}
.yae{bottom:450.535950px;}
.y18e{bottom:457.382700px;}
.y1af{bottom:470.870700px;}
.y1a{bottom:471.213750px;}
.yfe{bottom:472.963950px;}
.y45{bottom:472.977450px;}
.y14e{bottom:472.981950px;}
.y169{bottom:473.004450px;}
.y127{bottom:473.008950px;}
.ye6{bottom:473.022450px;}
.y63{bottom:473.026950px;}
.yc0{bottom:473.031450px;}
.y18d{bottom:476.882700px;}
.y1ae{bottom:490.370700px;}
.y19{bottom:493.718250px;}
.y11a{bottom:495.441450px;}
.y44{bottom:495.481950px;}
.y14d{bottom:495.486450px;}
.y168{bottom:495.508950px;}
.y126{bottom:495.513450px;}
.y135{bottom:495.517950px;}
.y62{bottom:495.522450px;}
.ye5{bottom:495.526950px;}
.y86{bottom:495.531450px;}
.y18c{bottom:509.138700px;}
.y18{bottom:516.222750px;}
.y119{bottom:517.945950px;}
.ye4{bottom:517.981950px;}
.y43{bottom:517.986450px;}
.y167{bottom:518.013450px;}
.y125{bottom:518.017950px;}
.y95{bottom:518.022450px;}
.y61{bottom:518.026950px;}
.y1ad{bottom:522.626700px;}
.y17{bottom:538.727250px;}
.y118{bottom:540.450450px;}
.yfd{bottom:540.463950px;}
.y14c{bottom:540.481950px;}
.ye3{bottom:540.486450px;}
.y42{bottom:540.490950px;}
.y166{bottom:540.517950px;}
.y124{bottom:540.522450px;}
.y94{bottom:540.526950px;}
.y60{bottom:540.531450px;}
.y18b{bottom:541.394700px;}
.ybf{bottom:543.323550px;}
.y1ac{bottom:554.882700px;}
.y16{bottom:561.231750px;}
.y117{bottom:562.954950px;}
.yfc{bottom:562.968450px;}
.y14b{bottom:562.986450px;}
.y41{bottom:562.995450px;}
.yad{bottom:563.004450px;}
.y165{bottom:563.022450px;}
.y123{bottom:563.026950px;}
.y93{bottom:563.031450px;}
.y18a{bottom:573.650700px;}
.y15{bottom:583.736250px;}
.y116{bottom:585.459450px;}
.ye2{bottom:585.481950px;}
.y14a{bottom:585.490950px;}
.y40{bottom:585.499950px;}
.yac{bottom:585.508950px;}
.y85{bottom:585.513450px;}
.y164{bottom:585.526950px;}
.y122{bottom:585.531450px;}
.y5f{bottom:585.535950px;}
.y1ab{bottom:587.138700px;}
.y189{bottom:593.150700px;}
.y14{bottom:606.240750px;}
.y1aa{bottom:606.638700px;}
.yfb{bottom:607.963950px;}
.ye1{bottom:607.986450px;}
.y149{bottom:607.995450px;}
.y3f{bottom:608.004450px;}
.yab{bottom:608.013450px;}
.y84{bottom:608.017950px;}
.y92{bottom:608.031450px;}
.ycf{bottom:615.769950px;}
.y188{bottom:625.406700px;}
.y13{bottom:628.745250px;}
.yfa{bottom:630.468450px;}
.ye0{bottom:630.490950px;}
.y148{bottom:630.499950px;}
.y83{bottom:630.522450px;}
.y5e{bottom:630.531450px;}
.yce{bottom:636.519450px;}
.y1a9{bottom:638.894700px;}
.y132{bottom:640.462200px;}
.y12{bottom:651.249750px;}
.y115{bottom:652.959450px;}
.y91{bottom:652.963950px;}
.yf9{bottom:652.972950px;}
.ydf{bottom:652.995450px;}
.y3e{bottom:652.999950px;}
.y147{bottom:653.004450px;}
.yaa{bottom:653.008950px;}
.y82{bottom:653.026950px;}
.y163{bottom:653.031450px;}
.y187{bottom:657.662700px;}
.y131{bottom:661.211700px;}
.y1c0{bottom:664.406700px;}
.y1a8{bottom:671.150700px;}
.y11{bottom:673.754250px;}
.ycd{bottom:674.279250px;}
.y114{bottom:675.463950px;}
.y90{bottom:675.468450px;}
.yf8{bottom:675.477450px;}
.yde{bottom:675.499950px;}
.y3d{bottom:675.504450px;}
.y146{bottom:675.508950px;}
.ya9{bottom:675.513450px;}
.y81{bottom:675.531450px;}
.y186{bottom:677.162700px;}
.y10{bottom:696.258750px;}
.y1bf{bottom:696.662700px;}
.y113{bottom:697.968450px;}
.y5d{bottom:697.972950px;}
.yf7{bottom:697.981950px;}
.ydd{bottom:698.004450px;}
.y3c{bottom:698.008950px;}
.y145{bottom:698.013450px;}
.ya8{bottom:698.017950px;}
.y121{bottom:702.458550px;}
.y1a7{bottom:703.406700px;}
.y185{bottom:709.418700px;}
.y1be{bottom:716.162700px;}
.yf{bottom:718.763250px;}
.y112{bottom:720.472950px;}
.y5c{bottom:720.477450px;}
.ydc{bottom:720.508950px;}
.y3b{bottom:720.513450px;}
.y144{bottom:720.517950px;}
.ya7{bottom:720.522450px;}
.y80{bottom:720.531450px;}
.y130{bottom:722.714400px;}
.y1a6{bottom:735.662700px;}
.y184{bottom:741.674700px;}
.yf6{bottom:742.977450px;}
.y5b{bottom:742.981950px;}
.y3a{bottom:743.017950px;}
.y143{bottom:743.022450px;}
.ya6{bottom:743.026950px;}
.y1bd{bottom:748.418700px;}
.y7f{bottom:765.481950px;}
.y8f{bottom:765.486450px;}
.ydb{bottom:765.504450px;}
.y39{bottom:765.522450px;}
.y1a5{bottom:767.918700px;}
.ye{bottom:771.548250px;}
.y183{bottom:773.930700px;}
.y1bc{bottom:787.418700px;}
.y5a{bottom:787.977450px;}
.y7e{bottom:787.986450px;}
.y162{bottom:787.990950px;}
.yda{bottom:788.008950px;}
.y142{bottom:788.017950px;}
.ya5{bottom:788.022450px;}
.y38{bottom:788.026950px;}
.y1a4{bottom:800.174700px;}
.y182{bottom:806.186700px;}
.y59{bottom:810.481950px;}
.y7d{bottom:810.490950px;}
.y161{bottom:810.495450px;}
.yd9{bottom:810.513450px;}
.y141{bottom:810.522450px;}
.ya4{bottom:810.526950px;}
.y37{bottom:810.531450px;}
.y1a3{bottom:819.674700px;}
.y181{bottom:825.686700px;}
.yd{bottom:832.315950px;}
.y58{bottom:832.986450px;}
.y7c{bottom:832.995450px;}
.y160{bottom:832.999950px;}
.yd8{bottom:833.017950px;}
.y140{bottom:833.026950px;}
.y180{bottom:845.186700px;}
.yc{bottom:848.815950px;}
.y1a2{bottom:851.930700px;}
.y111{bottom:855.486450px;}
.y57{bottom:855.490950px;}
.y7b{bottom:855.499950px;}
.y13f{bottom:855.504450px;}
.ya3{bottom:855.522450px;}
.y36{bottom:855.531450px;}
.yb{bottom:865.315950px;}
.y1a1{bottom:871.430700px;}
.y17f{bottom:877.442700px;}
.y110{bottom:877.990950px;}
.y56{bottom:877.995450px;}
.y7a{bottom:878.004450px;}
.y15f{bottom:878.008950px;}
.yd7{bottom:878.013450px;}
.ya2{bottom:878.026950px;}
.ya{bottom:888.193950px;}
.y17e{bottom:896.942700px;}
.yf5{bottom:900.495450px;}
.y55{bottom:900.499950px;}
.y79{bottom:900.508950px;}
.y15e{bottom:900.513450px;}
.yd6{bottom:900.517950px;}
.ya1{bottom:900.531450px;}
.y1a0{bottom:903.686700px;}
.y8e{bottom:922.990950px;}
.yf4{bottom:922.999950px;}
.y35{bottom:923.004450px;}
.y78{bottom:923.013450px;}
.y15d{bottom:923.017950px;}
.yd5{bottom:923.022450px;}
.y19f{bottom:923.186700px;}
.y17d{bottom:929.198700px;}
.y8d{bottom:945.495450px;}
.yf3{bottom:945.504450px;}
.y54{bottom:945.508950px;}
.yd4{bottom:945.526950px;}
.ya0{bottom:945.531450px;}
.y9{bottom:948.214500px;}
.y17c{bottom:948.698700px;}
.y19e{bottom:955.442700px;}
.y34{bottom:967.999950px;}
.y77{bottom:968.008950px;}
.y13e{bottom:968.013450px;}
.yd3{bottom:968.022450px;}
.y8{bottom:970.717500px;}
.y17b{bottom:980.954700px;}
.y19d{bottom:987.698700px;}
.y33{bottom:990.504450px;}
.y76{bottom:990.513450px;}
.y9f{bottom:990.517950px;}
.yd2{bottom:990.526950px;}
.y17a{bottom:1000.454700px;}
.y7{bottom:1005.973500px;}
.y32{bottom:1013.008950px;}
.y75{bottom:1013.017950px;}
.y9e{bottom:1013.022450px;}
.yd1{bottom:1013.031450px;}
.y19c{bottom:1019.954700px;}
.y179{bottom:1032.710700px;}
.y31{bottom:1035.513450px;}
.y74{bottom:1035.522450px;}
.y9d{bottom:1035.526950px;}
.y6{bottom:1038.973500px;}
.y178{bottom:1052.210700px;}
.y30{bottom:1058.017950px;}
.y73{bottom:1058.026950px;}
.y9c{bottom:1058.031450px;}
.y177{bottom:1071.710700px;}
.y5{bottom:1071.973500px;}
.y2f{bottom:1080.522450px;}
.y72{bottom:1080.531450px;}
.y1bb{bottom:1084.466700px;}
.y2e{bottom:1103.026950px;}
.y176{bottom:1103.966700px;}
.ybe{bottom:1113.781950px;}
.y2d{bottom:1125.531450px;}
.ybd{bottom:1134.531450px;}
.y175{bottom:1136.222700px;}
.y4{bottom:1150.626300px;}
.y3{bottom:1162.743300px;}
.y2{bottom:1174.860300px;}
.y28{bottom:1182.887700px;}
.y2c{bottom:1197.026700px;}
.y27{bottom:1199.384700px;}
.h3{height:33.012000px;}
.h15{height:36.576000px;}
.h7{height:36.624000px;}
.hc{height:36.816000px;}
.h17{height:38.913000px;}
.ha{height:39.420000px;}
.h8{height:40.749840px;}
.h9{height:41.202000px;}
.hb{height:42.444000px;}
.h1c{height:43.488000px;}
.h6{height:43.800000px;}
.h18{height:44.280000px;}
.h1b{height:44.388000px;}
.he{height:47.790000px;}
.hf{height:48.924000px;}
.h11{height:48.960000px;}
.h1a{height:48.978000px;}
.h14{height:49.122000px;}
.h19{height:49.176000px;}
.h13{height:52.620000px;}
.h12{height:54.360000px;}
.hd{height:59.004000px;}
.h5{height:59.514000px;}
.h10{height:59.796000px;}
.h16{height:72.576000px;}
.h4{height:90.840000px;}
.h2{height:97.710124px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:114.803100px;}
.xe{left:123.607050px;}
.x5{left:127.009050px;}
.x14{left:148.823100px;}
.x12{left:209.303100px;}
.xc{left:215.836800px;}
.xa{left:263.622000px;}
.xd{left:270.592800px;}
.xb{left:280.629900px;}
.xf{left:403.928550px;}
.x3{left:585.415800px;}
.x10{left:595.267800px;}
.x4{left:623.478300px;}
.x2{left:677.563800px;}
.x8{left:724.255650px;}
.x11{left:726.357450px;}
.x6{left:727.376550px;}
.x9{left:729.733500px;}
.x13{left:731.835300px;}
.x7{left:733.638600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.208000pt;}
.v2{vertical-align:16.016000pt;}
.v3{vertical-align:32.000000pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls2{letter-spacing:-0.693333pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.432000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.144000pt;}
.ls4{letter-spacing:0.336000pt;}
.ls0{letter-spacing:4.853333pt;}
.ws0{word-spacing:-13.776000pt;}
.ws3{word-spacing:-9.600000pt;}
.ws4{word-spacing:-9.312000pt;}
.ws16{word-spacing:-9.066667pt;}
.ws1{word-spacing:-8.533333pt;}
.ws24{word-spacing:-6.968016pt;}
.ws9{word-spacing:-6.632208pt;}
.ws2{word-spacing:-5.895296pt;}
.ws14{word-spacing:-2.736000pt;}
.ws22{word-spacing:-2.160000pt;}
.wsd{word-spacing:-1.872000pt;}
.ws23{word-spacing:-1.008000pt;}
.ws1b{word-spacing:-0.336000pt;}
.ws27{word-spacing:-0.288000pt;}
.wsf{word-spacing:-0.144000pt;}
.ws5{word-spacing:0.000000pt;}
.ws8{word-spacing:0.144000pt;}
.ws1a{word-spacing:0.240000pt;}
.ws2b{word-spacing:0.256000pt;}
.ws2a{word-spacing:0.640000pt;}
.ws29{word-spacing:0.864000pt;}
.ws1d{word-spacing:0.960000pt;}
.ws12{word-spacing:1.152000pt;}
.wsa{word-spacing:1.536000pt;}
.ws20{word-spacing:1.584000pt;}
.ws21{word-spacing:1.680000pt;}
.wsc{word-spacing:3.408000pt;}
.ws25{word-spacing:3.888000pt;}
.ws13{word-spacing:4.752000pt;}
.wsb{word-spacing:4.800000pt;}
.ws11{word-spacing:4.992000pt;}
.ws7{word-spacing:5.280000pt;}
.ws1c{word-spacing:5.328000pt;}
.ws28{word-spacing:5.520000pt;}
.ws6{word-spacing:5.568000pt;}
.ws15{word-spacing:6.816000pt;}
.ws26{word-spacing:6.912000pt;}
.ws1e{word-spacing:7.536000pt;}
.ws10{word-spacing:8.304000pt;}
.ws1f{word-spacing:10.368000pt;}
.wse{word-spacing:10.464000pt;}
.ws19{word-spacing:307.768000pt;}
.ws18{word-spacing:369.466667pt;}
.ws17{word-spacing:401.018667pt;}
._4{margin-left:-13.772267pt;}
._3{margin-left:-5.596267pt;}
._5{margin-left:-4.629333pt;}
._6{margin-left:-3.258667pt;}
._2{margin-left:-2.240000pt;}
._1{margin-left:-1.120000pt;}
._0{width:1.116267pt;}
._9{width:2.125867pt;}
._7{width:3.086400pt;}
._b{width:4.713600pt;}
._c{width:5.611200pt;}
._a{width:6.784000pt;}
._8{width:7.862400pt;}
._e{width:8.932800pt;}
._d{width:10.344000pt;}
._f{width:12.825600pt;}
._12{width:14.241600pt;}
._10{width:15.331200pt;}
._16{width:16.675200pt;}
._13{width:18.244800pt;}
._14{width:19.449600pt;}
._15{width:21.988800pt;}
._17{width:23.227200pt;}
._11{width:34.133333pt;}
._19{width:124.309333pt;}
._18{width:297.429333pt;}
._1a{width:321.413333pt;}
.fs6{font-size:24.874667pt;}
.fs9{font-size:27.984000pt;}
.fs1{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:106.666667pt;}
.fs0{font-size:113.237867pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:47.663733pt;}
.y29{bottom:47.666400pt;}
.y2a{bottom:59.666400pt;}
.y1{bottom:66.634400pt;}
.y71{bottom:94.488267pt;}
.yf2{bottom:94.488400pt;}
.ybc{bottom:94.488533pt;}
.yd0{bottom:97.430800pt;}
.y53{bottom:100.384400pt;}
.y9b{bottom:100.416400pt;}
.y8c{bottom:100.428400pt;}
.y174{bottom:104.451067pt;}
.y70{bottom:107.288267pt;}
.yf1{bottom:107.288400pt;}
.ybb{bottom:107.288533pt;}
.y10f{bottom:107.984800pt;}
.y19b{bottom:113.197067pt;}
.y1ba{bottom:114.498400pt;}
.y15c{bottom:120.088267pt;}
.yf0{bottom:120.088400pt;}
.yba{bottom:120.088533pt;}
.y52{bottom:120.388400pt;}
.y9a{bottom:120.420400pt;}
.y8b{bottom:120.432400pt;}
.ycc{bottom:120.436400pt;}
.y134{bottom:120.472400pt;}
.y15b{bottom:132.888267pt;}
.yef{bottom:132.888400pt;}
.yb9{bottom:132.888533pt;}
.y173{bottom:133.123067pt;}
.y26{bottom:138.824667pt;}
.y51{bottom:140.392400pt;}
.y99{bottom:140.424400pt;}
.y6f{bottom:140.436400pt;}
.ycb{bottom:140.440400pt;}
.y19a{bottom:141.869067pt;}
.y1b9{bottom:143.170400pt;}
.y10e{bottom:143.870000pt;}
.y15a{bottom:145.688267pt;}
.yee{bottom:145.688400pt;}
.yb8{bottom:145.688533pt;}
.y172{bottom:150.456400pt;}
.y159{bottom:158.488267pt;}
.yed{bottom:158.488400pt;}
.yb7{bottom:158.488533pt;}
.y25{bottom:158.828667pt;}
.y199{bottom:159.202400pt;}
.y10c{bottom:159.872667pt;}
.y50{bottom:160.396400pt;}
.y98{bottom:160.428400pt;}
.y6e{bottom:160.440400pt;}
.yca{bottom:160.444400pt;}
.y158{bottom:171.288267pt;}
.yec{bottom:171.288400pt;}
.y1b8{bottom:171.842400pt;}
.y10d{bottom:175.875333pt;}
.y24{bottom:178.832667pt;}
.y171{bottom:179.128400pt;}
.y4f{bottom:180.400400pt;}
.y97{bottom:180.432400pt;}
.y6d{bottom:180.444400pt;}
.y13d{bottom:180.456400pt;}
.y133{bottom:182.412800pt;}
.yeb{bottom:184.088400pt;}
.y198{bottom:187.874400pt;}
.y23{bottom:198.836667pt;}
.y96{bottom:200.436400pt;}
.yc9{bottom:200.440400pt;}
.y6c{bottom:200.448400pt;}
.y12f{bottom:200.452400pt;}
.yb6{bottom:200.460400pt;}
.y1b7{bottom:200.514400pt;}
.y197{bottom:205.207733pt;}
.y170{bottom:207.800400pt;}
.y109{bottom:215.179333pt;}
.y22{bottom:218.840667pt;}
.y4e{bottom:220.396400pt;}
.y157{bottom:220.400400pt;}
.y8a{bottom:220.440400pt;}
.yc8{bottom:220.444400pt;}
.y6b{bottom:220.452400pt;}
.y12e{bottom:220.456400pt;}
.yb5{bottom:220.464400pt;}
.y196{bottom:222.541067pt;}
.y1b6{bottom:229.186400pt;}
.y108{bottom:231.182000pt;}
.y16f{bottom:236.472400pt;}
.y21{bottom:238.844667pt;}
.y10b{bottom:239.172000pt;}
.y4d{bottom:240.400400pt;}
.y156{bottom:240.404400pt;}
.y89{bottom:240.444400pt;}
.yc7{bottom:240.448400pt;}
.y13c{bottom:240.456400pt;}
.y12d{bottom:240.460400pt;}
.yb4{bottom:240.468400pt;}
.y105{bottom:247.184667pt;}
.y195{bottom:251.213067pt;}
.y16e{bottom:253.805733pt;}
.y10a{bottom:255.174667pt;}
.y1b5{bottom:257.858400pt;}
.y20{bottom:258.848667pt;}
.y4c{bottom:260.404400pt;}
.y155{bottom:260.408400pt;}
.y6a{bottom:260.448400pt;}
.yc6{bottom:260.452400pt;}
.y13b{bottom:260.460400pt;}
.yb3{bottom:260.464400pt;}
.y107{bottom:263.187333pt;}
.y16d{bottom:271.139067pt;}
.y106{bottom:279.190000pt;}
.y194{bottom:279.885067pt;}
.y120{bottom:280.384400pt;}
.y4b{bottom:280.408400pt;}
.y154{bottom:280.412400pt;}
.y69{bottom:280.452400pt;}
.yc5{bottom:280.456400pt;}
.y13a{bottom:280.464400pt;}
.yb2{bottom:280.468400pt;}
.y1b4{bottom:286.530400pt;}
.y193{bottom:297.218400pt;}
.y1f{bottom:298.844667pt;}
.y11f{bottom:300.388400pt;}
.y4a{bottom:300.412400pt;}
.y153{bottom:300.416400pt;}
.y12c{bottom:300.440400pt;}
.y68{bottom:300.456400pt;}
.yc4{bottom:300.460400pt;}
.y139{bottom:300.468400pt;}
.yea{bottom:300.472400pt;}
.y104{bottom:301.856667pt;}
.y1b3{bottom:315.202400pt;}
.y102{bottom:317.859333pt;}
.y11e{bottom:320.392400pt;}
.y49{bottom:320.416400pt;}
.y152{bottom:320.420400pt;}
.y67{bottom:320.460400pt;}
.yb1{bottom:320.464400pt;}
.y138{bottom:320.472400pt;}
.y192{bottom:325.890400pt;}
.y103{bottom:333.862000pt;}
.y1e{bottom:338.840667pt;}
.y11d{bottom:340.396400pt;}
.y12b{bottom:340.436400pt;}
.y88{bottom:340.452400pt;}
.y66{bottom:340.464400pt;}
.yb0{bottom:340.468400pt;}
.ye9{bottom:340.472400pt;}
.y191{bottom:343.223733pt;}
.y1b2{bottom:343.874400pt;}
.y101{bottom:356.531200pt;}
.y1d{bottom:358.844667pt;}
.y11c{bottom:360.400400pt;}
.y48{bottom:360.412400pt;}
.y151{bottom:360.416400pt;}
.y16c{bottom:360.436400pt;}
.y12a{bottom:360.440400pt;}
.y87{bottom:360.456400pt;}
.yc3{bottom:360.460400pt;}
.y137{bottom:360.468400pt;}
.yaf{bottom:360.472400pt;}
.y190{bottom:360.557067pt;}
.y1b1{bottom:361.207733pt;}
.y100{bottom:372.531200pt;}
.y1c{bottom:378.848667pt;}
.y47{bottom:380.416400pt;}
.y150{bottom:380.420400pt;}
.y16b{bottom:380.440400pt;}
.y129{bottom:380.444400pt;}
.ye8{bottom:380.456400pt;}
.y65{bottom:380.460400pt;}
.yc2{bottom:380.464400pt;}
.y136{bottom:380.472400pt;}
.y18f{bottom:389.229067pt;}
.y1b0{bottom:389.879733pt;}
.y1b{bottom:398.852667pt;}
.y11b{bottom:400.396400pt;}
.yff{bottom:400.408400pt;}
.y46{bottom:400.420400pt;}
.y14f{bottom:400.424400pt;}
.y16a{bottom:400.444400pt;}
.y128{bottom:400.448400pt;}
.ye7{bottom:400.460400pt;}
.y64{bottom:400.464400pt;}
.yc1{bottom:400.468400pt;}
.yae{bottom:400.476400pt;}
.y18e{bottom:406.562400pt;}
.y1af{bottom:418.551733pt;}
.y1a{bottom:418.856667pt;}
.yfe{bottom:420.412400pt;}
.y45{bottom:420.424400pt;}
.y14e{bottom:420.428400pt;}
.y169{bottom:420.448400pt;}
.y127{bottom:420.452400pt;}
.ye6{bottom:420.464400pt;}
.y63{bottom:420.468400pt;}
.yc0{bottom:420.472400pt;}
.y18d{bottom:423.895733pt;}
.y1ae{bottom:435.885067pt;}
.y19{bottom:438.860667pt;}
.y11a{bottom:440.392400pt;}
.y44{bottom:440.428400pt;}
.y14d{bottom:440.432400pt;}
.y168{bottom:440.452400pt;}
.y126{bottom:440.456400pt;}
.y135{bottom:440.460400pt;}
.y62{bottom:440.464400pt;}
.ye5{bottom:440.468400pt;}
.y86{bottom:440.472400pt;}
.y18c{bottom:452.567733pt;}
.y18{bottom:458.864667pt;}
.y119{bottom:460.396400pt;}
.ye4{bottom:460.428400pt;}
.y43{bottom:460.432400pt;}
.y167{bottom:460.456400pt;}
.y125{bottom:460.460400pt;}
.y95{bottom:460.464400pt;}
.y61{bottom:460.468400pt;}
.y1ad{bottom:464.557067pt;}
.y17{bottom:478.868667pt;}
.y118{bottom:480.400400pt;}
.yfd{bottom:480.412400pt;}
.y14c{bottom:480.428400pt;}
.ye3{bottom:480.432400pt;}
.y42{bottom:480.436400pt;}
.y166{bottom:480.460400pt;}
.y124{bottom:480.464400pt;}
.y94{bottom:480.468400pt;}
.y60{bottom:480.472400pt;}
.y18b{bottom:481.239733pt;}
.ybf{bottom:482.954267pt;}
.y1ac{bottom:493.229067pt;}
.y16{bottom:498.872667pt;}
.y117{bottom:500.404400pt;}
.yfc{bottom:500.416400pt;}
.y14b{bottom:500.432400pt;}
.y41{bottom:500.440400pt;}
.yad{bottom:500.448400pt;}
.y165{bottom:500.464400pt;}
.y123{bottom:500.468400pt;}
.y93{bottom:500.472400pt;}
.y18a{bottom:509.911733pt;}
.y15{bottom:518.876667pt;}
.y116{bottom:520.408400pt;}
.ye2{bottom:520.428400pt;}
.y14a{bottom:520.436400pt;}
.y40{bottom:520.444400pt;}
.yac{bottom:520.452400pt;}
.y85{bottom:520.456400pt;}
.y164{bottom:520.468400pt;}
.y122{bottom:520.472400pt;}
.y5f{bottom:520.476400pt;}
.y1ab{bottom:521.901067pt;}
.y189{bottom:527.245067pt;}
.y14{bottom:538.880667pt;}
.y1aa{bottom:539.234400pt;}
.yfb{bottom:540.412400pt;}
.ye1{bottom:540.432400pt;}
.y149{bottom:540.440400pt;}
.y3f{bottom:540.448400pt;}
.yab{bottom:540.456400pt;}
.y84{bottom:540.460400pt;}
.y92{bottom:540.472400pt;}
.ycf{bottom:547.351067pt;}
.y188{bottom:555.917067pt;}
.y13{bottom:558.884667pt;}
.yfa{bottom:560.416400pt;}
.ye0{bottom:560.436400pt;}
.y148{bottom:560.444400pt;}
.y83{bottom:560.464400pt;}
.y5e{bottom:560.472400pt;}
.yce{bottom:565.795067pt;}
.y1a9{bottom:567.906400pt;}
.y132{bottom:569.299733pt;}
.y12{bottom:578.888667pt;}
.y115{bottom:580.408400pt;}
.y91{bottom:580.412400pt;}
.yf9{bottom:580.420400pt;}
.ydf{bottom:580.440400pt;}
.y3e{bottom:580.444400pt;}
.y147{bottom:580.448400pt;}
.yaa{bottom:580.452400pt;}
.y82{bottom:580.468400pt;}
.y163{bottom:580.472400pt;}
.y187{bottom:584.589067pt;}
.y131{bottom:587.743733pt;}
.y1c0{bottom:590.583733pt;}
.y1a8{bottom:596.578400pt;}
.y11{bottom:598.892667pt;}
.ycd{bottom:599.359333pt;}
.y114{bottom:600.412400pt;}
.y90{bottom:600.416400pt;}
.yf8{bottom:600.424400pt;}
.yde{bottom:600.444400pt;}
.y3d{bottom:600.448400pt;}
.y146{bottom:600.452400pt;}
.ya9{bottom:600.456400pt;}
.y81{bottom:600.472400pt;}
.y186{bottom:601.922400pt;}
.y10{bottom:618.896667pt;}
.y1bf{bottom:619.255733pt;}
.y113{bottom:620.416400pt;}
.y5d{bottom:620.420400pt;}
.yf7{bottom:620.428400pt;}
.ydd{bottom:620.448400pt;}
.y3c{bottom:620.452400pt;}
.y145{bottom:620.456400pt;}
.ya8{bottom:620.460400pt;}
.y121{bottom:624.407600pt;}
.y1a7{bottom:625.250400pt;}
.y185{bottom:630.594400pt;}
.y1be{bottom:636.589067pt;}
.yf{bottom:638.900667pt;}
.y112{bottom:640.420400pt;}
.y5c{bottom:640.424400pt;}
.ydc{bottom:640.452400pt;}
.y3b{bottom:640.456400pt;}
.y144{bottom:640.460400pt;}
.ya7{bottom:640.464400pt;}
.y80{bottom:640.472400pt;}
.y130{bottom:642.412800pt;}
.y1a6{bottom:653.922400pt;}
.y184{bottom:659.266400pt;}
.yf6{bottom:660.424400pt;}
.y5b{bottom:660.428400pt;}
.y3a{bottom:660.460400pt;}
.y143{bottom:660.464400pt;}
.ya6{bottom:660.468400pt;}
.y1bd{bottom:665.261067pt;}
.y7f{bottom:680.428400pt;}
.y8f{bottom:680.432400pt;}
.ydb{bottom:680.448400pt;}
.y39{bottom:680.464400pt;}
.y1a5{bottom:682.594400pt;}
.ye{bottom:685.820667pt;}
.y183{bottom:687.938400pt;}
.y1bc{bottom:699.927733pt;}
.y5a{bottom:700.424400pt;}
.y7e{bottom:700.432400pt;}
.y162{bottom:700.436400pt;}
.yda{bottom:700.452400pt;}
.y142{bottom:700.460400pt;}
.ya5{bottom:700.464400pt;}
.y38{bottom:700.468400pt;}
.y1a4{bottom:711.266400pt;}
.y182{bottom:716.610400pt;}
.y59{bottom:720.428400pt;}
.y7d{bottom:720.436400pt;}
.y161{bottom:720.440400pt;}
.yd9{bottom:720.456400pt;}
.y141{bottom:720.464400pt;}
.ya4{bottom:720.468400pt;}
.y37{bottom:720.472400pt;}
.y1a3{bottom:728.599733pt;}
.y181{bottom:733.943733pt;}
.yd{bottom:739.836400pt;}
.y58{bottom:740.432400pt;}
.y7c{bottom:740.440400pt;}
.y160{bottom:740.444400pt;}
.yd8{bottom:740.460400pt;}
.y140{bottom:740.468400pt;}
.y180{bottom:751.277067pt;}
.yc{bottom:754.503067pt;}
.y1a2{bottom:757.271733pt;}
.y111{bottom:760.432400pt;}
.y57{bottom:760.436400pt;}
.y7b{bottom:760.444400pt;}
.y13f{bottom:760.448400pt;}
.ya3{bottom:760.464400pt;}
.y36{bottom:760.472400pt;}
.yb{bottom:769.169733pt;}
.y1a1{bottom:774.605067pt;}
.y17f{bottom:779.949067pt;}
.y110{bottom:780.436400pt;}
.y56{bottom:780.440400pt;}
.y7a{bottom:780.448400pt;}
.y15f{bottom:780.452400pt;}
.yd7{bottom:780.456400pt;}
.ya2{bottom:780.468400pt;}
.ya{bottom:789.505733pt;}
.y17e{bottom:797.282400pt;}
.yf5{bottom:800.440400pt;}
.y55{bottom:800.444400pt;}
.y79{bottom:800.452400pt;}
.y15e{bottom:800.456400pt;}
.yd6{bottom:800.460400pt;}
.ya1{bottom:800.472400pt;}
.y1a0{bottom:803.277067pt;}
.y8e{bottom:820.436400pt;}
.yf4{bottom:820.444400pt;}
.y35{bottom:820.448400pt;}
.y78{bottom:820.456400pt;}
.y15d{bottom:820.460400pt;}
.yd5{bottom:820.464400pt;}
.y19f{bottom:820.610400pt;}
.y17d{bottom:825.954400pt;}
.y8d{bottom:840.440400pt;}
.yf3{bottom:840.448400pt;}
.y54{bottom:840.452400pt;}
.yd4{bottom:840.468400pt;}
.ya0{bottom:840.472400pt;}
.y9{bottom:842.857333pt;}
.y17c{bottom:843.287733pt;}
.y19e{bottom:849.282400pt;}
.y34{bottom:860.444400pt;}
.y77{bottom:860.452400pt;}
.y13e{bottom:860.456400pt;}
.yd3{bottom:860.464400pt;}
.y8{bottom:862.860000pt;}
.y17b{bottom:871.959733pt;}
.y19d{bottom:877.954400pt;}
.y33{bottom:880.448400pt;}
.y76{bottom:880.456400pt;}
.y9f{bottom:880.460400pt;}
.yd2{bottom:880.468400pt;}
.y17a{bottom:889.293067pt;}
.y7{bottom:894.198667pt;}
.y32{bottom:900.452400pt;}
.y75{bottom:900.460400pt;}
.y9e{bottom:900.464400pt;}
.yd1{bottom:900.472400pt;}
.y19c{bottom:906.626400pt;}
.y179{bottom:917.965067pt;}
.y31{bottom:920.456400pt;}
.y74{bottom:920.464400pt;}
.y9d{bottom:920.468400pt;}
.y6{bottom:923.532000pt;}
.y178{bottom:935.298400pt;}
.y30{bottom:940.460400pt;}
.y73{bottom:940.468400pt;}
.y9c{bottom:940.472400pt;}
.y177{bottom:952.631733pt;}
.y5{bottom:952.865333pt;}
.y2f{bottom:960.464400pt;}
.y72{bottom:960.472400pt;}
.y1bb{bottom:963.970400pt;}
.y2e{bottom:980.468400pt;}
.y176{bottom:981.303733pt;}
.ybe{bottom:990.028400pt;}
.y2d{bottom:1000.472400pt;}
.ybd{bottom:1008.472400pt;}
.y175{bottom:1009.975733pt;}
.y4{bottom:1022.778933pt;}
.y3{bottom:1033.549600pt;}
.y2{bottom:1044.320267pt;}
.y28{bottom:1051.455733pt;}
.y2c{bottom:1064.023733pt;}
.y27{bottom:1066.119733pt;}
.h3{height:29.344000pt;}
.h15{height:32.512000pt;}
.h7{height:32.554667pt;}
.hc{height:32.725333pt;}
.h17{height:34.589333pt;}
.ha{height:35.040000pt;}
.h8{height:36.222080pt;}
.h9{height:36.624000pt;}
.hb{height:37.728000pt;}
.h1c{height:38.656000pt;}
.h6{height:38.933333pt;}
.h18{height:39.360000pt;}
.h1b{height:39.456000pt;}
.he{height:42.480000pt;}
.hf{height:43.488000pt;}
.h11{height:43.520000pt;}
.h1a{height:43.536000pt;}
.h14{height:43.664000pt;}
.h19{height:43.712000pt;}
.h13{height:46.773333pt;}
.h12{height:48.320000pt;}
.hd{height:52.448000pt;}
.h5{height:52.901333pt;}
.h10{height:53.152000pt;}
.h16{height:64.512000pt;}
.h4{height:80.746667pt;}
.h2{height:86.853444pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:102.047200pt;}
.xe{left:109.872933pt;}
.x5{left:112.896933pt;}
.x14{left:132.287200pt;}
.x12{left:186.047200pt;}
.xc{left:191.854933pt;}
.xa{left:234.330667pt;}
.xd{left:240.526933pt;}
.xb{left:249.448800pt;}
.xf{left:359.047600pt;}
.x3{left:520.369600pt;}
.x10{left:529.126933pt;}
.x4{left:554.202933pt;}
.x2{left:602.278933pt;}
.x8{left:643.782800pt;}
.x11{left:645.651067pt;}
.x6{left:646.556933pt;}
.x9{left:648.652000pt;}
.x13{left:650.520267pt;}
.x7{left:652.123200pt;}
}

