
    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_35cca59bc967c95add286a72.woff')format("woff");}.ff1{font-family:ff1;line-height:1.164551;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_4d3db2166af228c199815f17.woff')format("woff");}.ff2{font-family:ff2;line-height:1.175781;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_f3daa0b8c25fea7c5c34c4ab.woff')format("woff");}.ff3{font-family:ff3;line-height:1.175781;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_8858dcc93ebe8b6fae38f779.woff')format("woff");}.ff4{font-family:ff4;line-height:1.149902;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_5973a3598878e605c60a9dc1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.175781;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_57b9c54ba8a86e3f936683ee.woff')format("woff");}.ff6{font-family:ff6;line-height:1.164551;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_9d37eebfb2bc59bdacd5d4ca.woff')format("woff");}.ff7{font-family:ff7;line-height:1.175781;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_35cca59bc967c95add286a72.woff')format("woff");}.ff8{font-family:ff8;line-height:1.164551;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_0da4ca4110de8ff143b267be.woff')format("woff");}.ff9{font-family:ff9;line-height:1.175293;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_baf531e35c7c89e5f2669f3f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.164551;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_4d3db2166af228c199815f17.woff')format("woff");}.ffb{font-family:ffb;line-height:1.175781;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_9807484f22c9c2fee26caf86.woff')format("woff");}.ffc{font-family:ffc;line-height:1.164551;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_0fab48b7ec2e89b0736de2e6.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_878f72068f25577eab45698c.woff')format("woff");}.ffe{font-family:ffe;line-height:1.093262;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.984000px;}
.v1{vertical-align:19.980000px;}
.ls9{letter-spacing:-1.350000px;}
.ls2{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-0.600000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000600px;}
.lsa{letter-spacing:0.004920px;}
.ls8{letter-spacing:0.005400px;}
.ls3{letter-spacing:0.005520px;}
.lsb{letter-spacing:0.009600px;}
.ls5{letter-spacing:0.354720px;}
.ls4{letter-spacing:0.600000px;}
.ls0{letter-spacing:1.080000px;}
.ls7{letter-spacing:2.968800px;}
.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:-17.280000px;}
.ws9{word-spacing:-16.680000px;}
.wsb{word-spacing:-16.080000px;}
.ws0{word-spacing:-15.012000px;}
.wse{word-spacing:-13.344000px;}
.ws4f{word-spacing:-12.000000px;}
.wsc{word-spacing:-9.724440px;}
.wsd{word-spacing:-9.340800px;}
.ws4d{word-spacing:-4.920000px;}
.ws78{word-spacing:-3.060000px;}
.ws8c{word-spacing:-3.000000px;}
.ws49{word-spacing:-2.940000px;}
.ws30{word-spacing:-2.820000px;}
.ws5f{word-spacing:-2.760000px;}
.ws54{word-spacing:-2.700000px;}
.ws11{word-spacing:-2.640000px;}
.ws53{word-spacing:-2.520000px;}
.ws15{word-spacing:-2.220000px;}
.ws64{word-spacing:-2.160000px;}
.ws6a{word-spacing:-2.100000px;}
.ws90{word-spacing:-2.064000px;}
.ws3a{word-spacing:-2.040000px;}
.ws43{word-spacing:-2.016000px;}
.ws13{word-spacing:-1.980000px;}
.ws4c{word-spacing:-1.860000px;}
.ws17{word-spacing:-1.620000px;}
.ws86{word-spacing:-1.560000px;}
.ws59{word-spacing:-1.440000px;}
.ws4b{word-spacing:-1.260000px;}
.ws45{word-spacing:-1.248000px;}
.ws5b{word-spacing:-1.200000px;}
.ws48{word-spacing:-1.140000px;}
.ws65{word-spacing:-1.104000px;}
.ws2{word-spacing:-1.080000px;}
.ws74{word-spacing:-1.020000px;}
.ws2c{word-spacing:-0.960000px;}
.ws37{word-spacing:-0.900000px;}
.ws5d{word-spacing:-0.840000px;}
.ws28{word-spacing:-0.720000px;}
.ws35{word-spacing:-0.624000px;}
.ws1f{word-spacing:-0.600000px;}
.ws72{word-spacing:-0.480000px;}
.ws6d{word-spacing:-0.360000px;}
.ws22{word-spacing:-0.300000px;}
.ws83{word-spacing:-0.240000px;}
.ws3c{word-spacing:-0.180000px;}
.ws1d{word-spacing:-0.120000px;}
.ws5e{word-spacing:-0.096000px;}
.ws1e{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws5a{word-spacing:0.120000px;}
.ws8f{word-spacing:0.144000px;}
.ws20{word-spacing:0.180000px;}
.ws84{word-spacing:0.240000px;}
.ws3f{word-spacing:0.300000px;}
.ws19{word-spacing:0.360000px;}
.ws2a{word-spacing:0.420000px;}
.ws79{word-spacing:0.528000px;}
.ws82{word-spacing:0.540000px;}
.ws24{word-spacing:0.600000px;}
.ws77{word-spacing:0.624000px;}
.ws62{word-spacing:0.660000px;}
.ws32{word-spacing:0.960000px;}
.ws3{word-spacing:1.080000px;}
.ws85{word-spacing:1.140000px;}
.ws8{word-spacing:1.242000px;}
.ws39{word-spacing:1.380000px;}
.ws10{word-spacing:1.500000px;}
.ws7e{word-spacing:1.560000px;}
.ws4{word-spacing:1.620000px;}
.ws4e{word-spacing:1.740000px;}
.ws66{word-spacing:1.824000px;}
.wsf{word-spacing:1.860000px;}
.ws42{word-spacing:1.920000px;}
.ws12{word-spacing:1.980000px;}
.ws52{word-spacing:2.040000px;}
.ws57{word-spacing:2.100000px;}
.ws23{word-spacing:2.160000px;}
.ws6f{word-spacing:2.220000px;}
.ws81{word-spacing:2.280000px;}
.ws55{word-spacing:2.400000px;}
.ws25{word-spacing:2.460000px;}
.ws5{word-spacing:2.592000px;}
.ws4a{word-spacing:2.688000px;}
.ws47{word-spacing:2.760000px;}
.ws46{word-spacing:2.820000px;}
.ws7c{word-spacing:2.880000px;}
.ws34{word-spacing:2.976000px;}
.ws2f{word-spacing:3.000000px;}
.ws27{word-spacing:3.024000px;}
.ws56{word-spacing:3.060000px;}
.ws73{word-spacing:3.120000px;}
.ws6c{word-spacing:3.180000px;}
.ws3e{word-spacing:3.240000px;}
.ws3d{word-spacing:3.300000px;}
.ws1b{word-spacing:3.420000px;}
.ws75{word-spacing:3.480000px;}
.ws21{word-spacing:3.540000px;}
.ws8b{word-spacing:3.600000px;}
.ws7d{word-spacing:3.660000px;}
.ws58{word-spacing:3.720000px;}
.ws7a{word-spacing:3.900000px;}
.ws2e{word-spacing:4.020000px;}
.ws36{word-spacing:4.080000px;}
.ws69{word-spacing:4.260000px;}
.ws68{word-spacing:4.320000px;}
.ws2d{word-spacing:4.440000px;}
.ws40{word-spacing:4.560000px;}
.ws80{word-spacing:4.680000px;}
.ws33{word-spacing:4.752000px;}
.ws38{word-spacing:5.100000px;}
.ws87{word-spacing:5.280000px;}
.ws61{word-spacing:5.340000px;}
.ws14{word-spacing:5.400000px;}
.ws3b{word-spacing:5.460000px;}
.ws88{word-spacing:5.520000px;}
.ws1a{word-spacing:5.640000px;}
.ws71{word-spacing:5.700000px;}
.ws76{word-spacing:5.820000px;}
.ws63{word-spacing:5.880000px;}
.ws6{word-spacing:6.426000px;}
.ws89{word-spacing:6.600000px;}
.ws7f{word-spacing:6.720000px;}
.ws29{word-spacing:6.840000px;}
.ws2b{word-spacing:6.960000px;}
.ws16{word-spacing:7.260000px;}
.ws1c{word-spacing:7.500000px;}
.ws67{word-spacing:7.536000px;}
.ws8d{word-spacing:8.040000px;}
.ws18{word-spacing:8.160000px;}
.ws51{word-spacing:8.220000px;}
.ws7b{word-spacing:8.400000px;}
.ws31{word-spacing:8.520000px;}
.ws41{word-spacing:8.940000px;}
.ws6e{word-spacing:9.300000px;}
.ws26{word-spacing:9.408000px;}
.ws5c{word-spacing:9.480000px;}
.ws70{word-spacing:9.600000px;}
.ws8a{word-spacing:9.840000px;}
.ws60{word-spacing:9.900000px;}
.ws44{word-spacing:10.656000px;}
.ws8e{word-spacing:11.640000px;}
.ws6b{word-spacing:12.900000px;}
.ws7{word-spacing:13.824000px;}
.ws50{word-spacing:14.400000px;}
._b{margin-left:-15.744000px;}
._c{margin-left:-4.382400px;}
._7{margin-left:-3.364800px;}
._9{margin-left:-2.248800px;}
._0{margin-left:-1.069200px;}
._1{width:1.085400px;}
._8{width:2.247600px;}
._2{width:3.466800px;}
._3{width:4.478400px;}
._4{width:5.549400px;}
._5{width:7.506000px;}
._6{width:9.244800px;}
._a{width:10.663800px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.984000px;}
.fs7{font-size:33.600000px;}
.fs5{font-size:34.980000px;}
.fs6{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:33.011100px;}
.y43{bottom:34.853700px;}
.y1{bottom:68.243100px;}
.y19{bottom:70.085550px;}
.y41{bottom:106.299300px;}
.y69{bottom:120.699300px;}
.y40{bottom:124.951200px;}
.y87{bottom:135.099300px;}
.y3f{bottom:139.351200px;}
.yae{bottom:143.603250px;}
.y96{bottom:149.499300px;}
.y68{bottom:153.751200px;}
.ydf{bottom:158.003100px;}
.y3e{bottom:158.003250px;}
.yfe{bottom:162.255150px;}
.y132{bottom:167.824650px;}
.y9d{bottom:169.480050px;}
.y67{bottom:172.403250px;}
.y3d{bottom:176.655150px;}
.y131{bottom:185.824650px;}
.ybf{bottom:186.707850px;}
.y66{bottom:186.803250px;}
.y9c{bottom:187.480050px;}
.y3c{bottom:191.055150px;}
.y14e{bottom:195.230400px;}
.y90{bottom:200.446200px;}
.y65{bottom:201.203250px;}
.y130{bottom:203.824650px;}
.y95{bottom:204.499650px;}
.ybe{bottom:204.707850px;}
.yde{bottom:205.455150px;}
.y9b{bottom:205.480050px;}
.y86{bottom:209.707200px;}
.y14d{bottom:213.230400px;}
.y11c{bottom:218.134350px;}
.y8f{bottom:218.446200px;}
.y64{bottom:219.855150px;}
.y12f{bottom:221.824650px;}
.y94{bottom:222.499650px;}
.ybd{bottom:222.707850px;}
.y9a{bottom:223.480050px;}
.y85{bottom:224.107200px;}
.yfd{bottom:230.115600px;}
.y14c{bottom:231.230400px;}
.y63{bottom:234.255150px;}
.y11b{bottom:236.134350px;}
.y8e{bottom:236.446200px;}
.ydd{bottom:238.507050px;}
.y12e{bottom:239.824650px;}
.y93{bottom:240.499650px;}
.ybc{bottom:240.707850px;}
.y3b{bottom:244.171800px;}
.yfc{bottom:245.115600px;}
.y14b{bottom:249.230400px;}
.y11a{bottom:254.134350px;}
.y99{bottom:254.235900px;}
.y8d{bottom:254.446200px;}
.y12d{bottom:257.824650px;}
.y92{bottom:258.499650px;}
.ybb{bottom:258.707850px;}
.yfb{bottom:259.515600px;}
.y3a{bottom:262.171800px;}
.y14a{bottom:267.230400px;}
.y8c{bottom:272.446200px;}
.yfa{bottom:273.915600px;}
.y84{bottom:275.734350px;}
.y12c{bottom:275.824650px;}
.y62{bottom:276.230400px;}
.yba{bottom:276.707850px;}
.y39{bottom:280.171800px;}
.ydc{bottom:281.427450px;}
.y119{bottom:284.890200px;}
.y149{bottom:285.230400px;}
.yf9{bottom:288.315600px;}
.y8b{bottom:290.446200px;}
.y83{bottom:293.734350px;}
.y12b{bottom:293.824650px;}
.y61{bottom:294.230400px;}
.yb9{bottom:294.707850px;}
.y98{bottom:295.295850px;}
.ydb{bottom:295.827450px;}
.y91{bottom:298.099650px;}
.y38{bottom:298.171800px;}
.y118{bottom:299.290200px;}
.y148{bottom:303.230400px;}
.y8a{bottom:308.446200px;}
.y82{bottom:311.734350px;}
.y12a{bottom:311.824650px;}
.y60{bottom:312.230400px;}
.yb8{bottom:312.707850px;}
.y17{bottom:313.425300px;}
.yf8{bottom:315.471600px;}
.y37{bottom:316.171800px;}
.y97{bottom:316.895850px;}
.y147{bottom:321.230400px;}
.y117{bottom:326.446200px;}
.y16{bottom:329.625300px;}
.y81{bottom:329.734350px;}
.y129{bottom:329.824650px;}
.y5f{bottom:330.230400px;}
.yb7{bottom:330.707850px;}
.yf7{bottom:333.471600px;}
.y36{bottom:334.171800px;}
.y146{bottom:339.230400px;}
.yda{bottom:340.983450px;}
.y116{bottom:344.446200px;}
.y15{bottom:345.825300px;}
.y80{bottom:347.734350px;}
.y128{bottom:347.824650px;}
.y5e{bottom:348.230400px;}
.yb6{bottom:348.707850px;}
.yf6{bottom:351.471600px;}
.y35{bottom:352.171800px;}
.y145{bottom:357.230400px;}
.yd9{bottom:358.983450px;}
.y14{bottom:362.025300px;}
.y115{bottom:362.446200px;}
.y7f{bottom:365.734350px;}
.y127{bottom:365.824650px;}
.y5d{bottom:366.230400px;}
.yb5{bottom:366.707850px;}
.yf5{bottom:369.471600px;}
.y34{bottom:370.171800px;}
.y144{bottom:375.230400px;}
.yd8{bottom:376.983450px;}
.y13{bottom:378.225300px;}
.y114{bottom:380.446200px;}
.y7e{bottom:383.734350px;}
.y126{bottom:383.824650px;}
.y5c{bottom:384.230400px;}
.yb4{bottom:384.707850px;}
.y33{bottom:388.171800px;}
.y143{bottom:393.230400px;}
.y12{bottom:394.425300px;}
.yd7{bottom:394.983450px;}
.y113{bottom:398.446200px;}
.yf4{bottom:400.227450px;}
.y7d{bottom:401.734350px;}
.y89{bottom:402.046200px;}
.y5b{bottom:402.230400px;}
.yb3{bottom:402.707850px;}
.y32{bottom:406.171800px;}
.y11{bottom:410.625300px;}
.y142{bottom:411.230400px;}
.yd6{bottom:412.983450px;}
.yf3{bottom:414.627450px;}
.y112{bottom:416.446200px;}
.y7c{bottom:419.734350px;}
.y88{bottom:420.046200px;}
.y5a{bottom:420.230400px;}
.yb2{bottom:420.707850px;}
.y15d{bottom:423.334350px;}
.y31{bottom:424.171800px;}
.y10{bottom:426.825300px;}
.y125{bottom:428.824650px;}
.yf2{bottom:429.027450px;}
.y141{bottom:429.230400px;}
.yd5{bottom:430.983450px;}
.y111{bottom:434.446200px;}
.y7b{bottom:437.734350px;}
.y59{bottom:438.230400px;}
.y15c{bottom:441.334350px;}
.y30{bottom:442.171800px;}
.yf1{bottom:443.427450px;}
.y140{bottom:447.230400px;}
.yd4{bottom:448.983450px;}
.y110{bottom:452.446200px;}
.y7a{bottom:455.734350px;}
.y58{bottom:456.230400px;}
.y15b{bottom:459.334350px;}
.y2f{bottom:460.171800px;}
.yb1{bottom:460.307850px;}
.y13f{bottom:465.230400px;}
.yd3{bottom:466.983450px;}
.y10f{bottom:470.446200px;}
.yf0{bottom:470.583450px;}
.y79{bottom:473.734350px;}
.y57{bottom:474.230400px;}
.yf{bottom:477.225300px;}
.y15a{bottom:477.334350px;}
.y2e{bottom:478.171800px;}
.yb0{bottom:478.307850px;}
.yad{bottom:480.622500px;}
.y13e{bottom:483.230400px;}
.yd2{bottom:484.983450px;}
.y10e{bottom:488.446200px;}
.yef{bottom:488.583450px;}
.y78{bottom:491.734350px;}
.y56{bottom:492.230400px;}
.ye{bottom:493.425300px;}
.y159{bottom:495.334350px;}
.y2d{bottom:496.171800px;}
.yaf{bottom:496.307850px;}
.yac{bottom:498.622500px;}
.y13d{bottom:501.230400px;}
.y10d{bottom:506.446200px;}
.yee{bottom:506.583450px;}
.yd{bottom:509.625300px;}
.y77{bottom:509.734350px;}
.y55{bottom:510.230400px;}
.y2c{bottom:514.171800px;}
.yd1{bottom:515.739300px;}
.yab{bottom:516.622500px;}
.y13c{bottom:519.230400px;}
.y10c{bottom:524.446200px;}
.yed{bottom:524.583450px;}
.yc{bottom:525.825300px;}
.y158{bottom:526.090200px;}
.y76{bottom:527.734350px;}
.y54{bottom:528.230400px;}
.yd0{bottom:530.139300px;}
.y2b{bottom:532.171800px;}
.yaa{bottom:534.622500px;}
.y13b{bottom:537.230400px;}
.y157{bottom:540.490200px;}
.yb{bottom:542.025300px;}
.y10b{bottom:542.446200px;}
.ycf{bottom:544.539300px;}
.y75{bottom:545.734350px;}
.y53{bottom:546.230400px;}
.y2a{bottom:550.171800px;}
.ya9{bottom:552.622500px;}
.y156{bottom:554.890200px;}
.y13a{bottom:555.230400px;}
.yec{bottom:555.339300px;}
.ya{bottom:558.225300px;}
.yce{bottom:558.939300px;}
.y10a{bottom:560.446200px;}
.y74{bottom:563.734350px;}
.y52{bottom:564.230400px;}
.y29{bottom:568.171800px;}
.ya8{bottom:570.622500px;}
.y139{bottom:573.230400px;}
.ycd{bottom:573.339300px;}
.y9{bottom:574.425300px;}
.y109{bottom:578.446200px;}
.y73{bottom:581.734350px;}
.y155{bottom:582.046200px;}
.y51{bottom:582.230400px;}
.y28{bottom:586.171800px;}
.ycc{bottom:587.739300px;}
.ya7{bottom:588.622500px;}
.y8{bottom:590.625300px;}
.y138{bottom:591.230400px;}
.yeb{bottom:596.399100px;}
.y154{bottom:600.046200px;}
.y50{bottom:600.230400px;}
.ycb{bottom:602.139300px;}
.y27{bottom:604.171800px;}
.ya6{bottom:606.622500px;}
.y137{bottom:609.230400px;}
.y72{bottom:612.490200px;}
.yea{bottom:614.399100px;}
.y108{bottom:614.446200px;}
.y153{bottom:618.046200px;}
.y4f{bottom:618.230400px;}
.y124{bottom:621.860100px;}
.y26{bottom:622.171800px;}
.ya5{bottom:624.622500px;}
.y71{bottom:626.890200px;}
.y136{bottom:627.230400px;}
.yca{bottom:629.295150px;}
.ye9{bottom:632.399100px;}
.y107{bottom:632.446200px;}
.y152{bottom:636.046200px;}
.y4e{bottom:636.230400px;}
.y123{bottom:639.860100px;}
.y25{bottom:640.171800px;}
.y7{bottom:641.025300px;}
.y70{bottom:641.290200px;}
.y135{bottom:645.230400px;}
.y106{bottom:646.846200px;}
.yc9{bottom:647.295150px;}
.y151{bottom:654.046200px;}
.y4d{bottom:654.230400px;}
.ya4{bottom:655.378350px;}
.y6f{bottom:655.690200px;}
.y6{bottom:657.225300px;}
.y122{bottom:657.860100px;}
.y24{bottom:658.171800px;}
.y105{bottom:661.246050px;}
.ye8{bottom:663.155100px;}
.y134{bottom:663.230400px;}
.yc8{bottom:665.295150px;}
.ya3{bottom:669.778500px;}
.y6e{bottom:670.090200px;}
.y150{bottom:672.046200px;}
.y4c{bottom:672.230400px;}
.y104{bottom:675.646200px;}
.y121{bottom:675.860100px;}
.y23{bottom:676.171800px;}
.ye7{bottom:677.555100px;}
.yc7{bottom:683.295150px;}
.ya2{bottom:684.178500px;}
.y6d{bottom:684.490200px;}
.y103{bottom:690.046200px;}
.y4b{bottom:690.230400px;}
.y120{bottom:693.860100px;}
.y133{bottom:693.986250px;}
.y22{bottom:694.171800px;}
.y5{bottom:695.025300px;}
.y6c{bottom:698.890200px;}
.yc6{bottom:701.295150px;}
.y102{bottom:704.446200px;}
.ye6{bottom:704.710950px;}
.y14f{bottom:708.046200px;}
.ya1{bottom:711.334350px;}
.y11f{bottom:711.860100px;}
.y21{bottom:712.171800px;}
.y4{bottom:716.625300px;}
.y101{bottom:718.846200px;}
.y4a{bottom:720.986250px;}
.ye5{bottom:722.710950px;}
.y6b{bottom:726.046200px;}
.y20{bottom:730.171800px;}
.yc5{bottom:732.051150px;}
.y100{bottom:733.246050px;}
.ye4{bottom:740.710950px;}
.ya0{bottom:742.090200px;}
.y11e{bottom:742.615950px;}
.y6a{bottom:744.046200px;}
.yff{bottom:747.646200px;}
.y1f{bottom:748.171800px;}
.y9f{bottom:756.490200px;}
.y11d{bottom:757.015950px;}
.ye3{bottom:758.710950px;}
.y3{bottom:759.825300px;}
.y49{bottom:762.046200px;}
.y1e{bottom:766.171800px;}
.y9e{bottom:770.890200px;}
.yc4{bottom:773.110950px;}
.ye2{bottom:776.710950px;}
.y48{bottom:780.046200px;}
.y1d{bottom:784.171800px;}
.yc3{bottom:791.110950px;}
.ye1{bottom:794.710950px;}
.y47{bottom:798.046200px;}
.y1c{bottom:802.171800px;}
.y46{bottom:816.046200px;}
.y1b{bottom:820.171800px;}
.yc2{bottom:821.866950px;}
.ye0{bottom:825.466800px;}
.y45{bottom:834.046200px;}
.yc1{bottom:839.866950px;}
.y1a{bottom:850.927800px;}
.y44{bottom:852.046200px;}
.yc0{bottom:854.266800px;}
.y18{bottom:893.550150px;}
.y42{bottom:893.556750px;}
.h8{height:47.085938px;}
.h9{height:52.338867px;}
.h2{height:52.971680px;}
.ha{height:58.154297px;}
.h7{height:58.857422px;}
.h6{height:63.002930px;}
.h3{height:64.743164px;}
.h5{height:70.628906px;}
.h4{height:82.400391px;}
.h1{height:948.000000px;}
.h0{height:948.189000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x5{left:63.779550px;}
.x1{left:76.535400px;}
.x9{left:106.299150px;}
.x7{left:114.803100px;}
.x11{left:119.055150px;}
.x3{left:127.559100px;}
.x12{left:140.314950px;}
.xf{left:141.677700px;}
.xd{left:148.650450px;}
.x13{left:157.304550px;}
.xa{left:166.331100px;}
.xb{left:205.610850px;}
.xc{left:212.436300px;}
.x8{left:237.866400px;}
.x4{left:262.159650px;}
.x6{left:303.915450px;}
.xe{left:311.818650px;}
.x14{left:314.194500px;}
.x2{left:319.009950px;}
.x10{left:328.763250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v1{vertical-align:17.760000pt;}
.ls9{letter-spacing:-1.200000pt;}
.ls2{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000533pt;}
.lsa{letter-spacing:0.004373pt;}
.ls8{letter-spacing:0.004800pt;}
.ls3{letter-spacing:0.004907pt;}
.lsb{letter-spacing:0.008533pt;}
.ls5{letter-spacing:0.315307pt;}
.ls4{letter-spacing:0.533333pt;}
.ls0{letter-spacing:0.960000pt;}
.ls7{letter-spacing:2.638933pt;}
.wsa{word-spacing:-15.360000pt;}
.ws9{word-spacing:-14.826667pt;}
.wsb{word-spacing:-14.293333pt;}
.ws0{word-spacing:-13.344000pt;}
.wse{word-spacing:-11.861333pt;}
.ws4f{word-spacing:-10.666667pt;}
.wsc{word-spacing:-8.643947pt;}
.wsd{word-spacing:-8.302933pt;}
.ws4d{word-spacing:-4.373333pt;}
.ws78{word-spacing:-2.720000pt;}
.ws8c{word-spacing:-2.666667pt;}
.ws49{word-spacing:-2.613333pt;}
.ws30{word-spacing:-2.506667pt;}
.ws5f{word-spacing:-2.453333pt;}
.ws54{word-spacing:-2.400000pt;}
.ws11{word-spacing:-2.346667pt;}
.ws53{word-spacing:-2.240000pt;}
.ws15{word-spacing:-1.973333pt;}
.ws64{word-spacing:-1.920000pt;}
.ws6a{word-spacing:-1.866667pt;}
.ws90{word-spacing:-1.834667pt;}
.ws3a{word-spacing:-1.813333pt;}
.ws43{word-spacing:-1.792000pt;}
.ws13{word-spacing:-1.760000pt;}
.ws4c{word-spacing:-1.653333pt;}
.ws17{word-spacing:-1.440000pt;}
.ws86{word-spacing:-1.386667pt;}
.ws59{word-spacing:-1.280000pt;}
.ws4b{word-spacing:-1.120000pt;}
.ws45{word-spacing:-1.109333pt;}
.ws5b{word-spacing:-1.066667pt;}
.ws48{word-spacing:-1.013333pt;}
.ws65{word-spacing:-0.981333pt;}
.ws2{word-spacing:-0.960000pt;}
.ws74{word-spacing:-0.906667pt;}
.ws2c{word-spacing:-0.853333pt;}
.ws37{word-spacing:-0.800000pt;}
.ws5d{word-spacing:-0.746667pt;}
.ws28{word-spacing:-0.640000pt;}
.ws35{word-spacing:-0.554667pt;}
.ws1f{word-spacing:-0.533333pt;}
.ws72{word-spacing:-0.426667pt;}
.ws6d{word-spacing:-0.320000pt;}
.ws22{word-spacing:-0.266667pt;}
.ws83{word-spacing:-0.213333pt;}
.ws3c{word-spacing:-0.160000pt;}
.ws1d{word-spacing:-0.106667pt;}
.ws5e{word-spacing:-0.085333pt;}
.ws1e{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.106667pt;}
.ws8f{word-spacing:0.128000pt;}
.ws20{word-spacing:0.160000pt;}
.ws84{word-spacing:0.213333pt;}
.ws3f{word-spacing:0.266667pt;}
.ws19{word-spacing:0.320000pt;}
.ws2a{word-spacing:0.373333pt;}
.ws79{word-spacing:0.469333pt;}
.ws82{word-spacing:0.480000pt;}
.ws24{word-spacing:0.533333pt;}
.ws77{word-spacing:0.554667pt;}
.ws62{word-spacing:0.586667pt;}
.ws32{word-spacing:0.853333pt;}
.ws3{word-spacing:0.960000pt;}
.ws85{word-spacing:1.013333pt;}
.ws8{word-spacing:1.104000pt;}
.ws39{word-spacing:1.226667pt;}
.ws10{word-spacing:1.333333pt;}
.ws7e{word-spacing:1.386667pt;}
.ws4{word-spacing:1.440000pt;}
.ws4e{word-spacing:1.546667pt;}
.ws66{word-spacing:1.621333pt;}
.wsf{word-spacing:1.653333pt;}
.ws42{word-spacing:1.706667pt;}
.ws12{word-spacing:1.760000pt;}
.ws52{word-spacing:1.813333pt;}
.ws57{word-spacing:1.866667pt;}
.ws23{word-spacing:1.920000pt;}
.ws6f{word-spacing:1.973333pt;}
.ws81{word-spacing:2.026667pt;}
.ws55{word-spacing:2.133333pt;}
.ws25{word-spacing:2.186667pt;}
.ws5{word-spacing:2.304000pt;}
.ws4a{word-spacing:2.389333pt;}
.ws47{word-spacing:2.453333pt;}
.ws46{word-spacing:2.506667pt;}
.ws7c{word-spacing:2.560000pt;}
.ws34{word-spacing:2.645333pt;}
.ws2f{word-spacing:2.666667pt;}
.ws27{word-spacing:2.688000pt;}
.ws56{word-spacing:2.720000pt;}
.ws73{word-spacing:2.773333pt;}
.ws6c{word-spacing:2.826667pt;}
.ws3e{word-spacing:2.880000pt;}
.ws3d{word-spacing:2.933333pt;}
.ws1b{word-spacing:3.040000pt;}
.ws75{word-spacing:3.093333pt;}
.ws21{word-spacing:3.146667pt;}
.ws8b{word-spacing:3.200000pt;}
.ws7d{word-spacing:3.253333pt;}
.ws58{word-spacing:3.306667pt;}
.ws7a{word-spacing:3.466667pt;}
.ws2e{word-spacing:3.573333pt;}
.ws36{word-spacing:3.626667pt;}
.ws69{word-spacing:3.786667pt;}
.ws68{word-spacing:3.840000pt;}
.ws2d{word-spacing:3.946667pt;}
.ws40{word-spacing:4.053333pt;}
.ws80{word-spacing:4.160000pt;}
.ws33{word-spacing:4.224000pt;}
.ws38{word-spacing:4.533333pt;}
.ws87{word-spacing:4.693333pt;}
.ws61{word-spacing:4.746667pt;}
.ws14{word-spacing:4.800000pt;}
.ws3b{word-spacing:4.853333pt;}
.ws88{word-spacing:4.906667pt;}
.ws1a{word-spacing:5.013333pt;}
.ws71{word-spacing:5.066667pt;}
.ws76{word-spacing:5.173333pt;}
.ws63{word-spacing:5.226667pt;}
.ws6{word-spacing:5.712000pt;}
.ws89{word-spacing:5.866667pt;}
.ws7f{word-spacing:5.973333pt;}
.ws29{word-spacing:6.080000pt;}
.ws2b{word-spacing:6.186667pt;}
.ws16{word-spacing:6.453333pt;}
.ws1c{word-spacing:6.666667pt;}
.ws67{word-spacing:6.698667pt;}
.ws8d{word-spacing:7.146667pt;}
.ws18{word-spacing:7.253333pt;}
.ws51{word-spacing:7.306667pt;}
.ws7b{word-spacing:7.466667pt;}
.ws31{word-spacing:7.573333pt;}
.ws41{word-spacing:7.946667pt;}
.ws6e{word-spacing:8.266667pt;}
.ws26{word-spacing:8.362667pt;}
.ws5c{word-spacing:8.426667pt;}
.ws70{word-spacing:8.533333pt;}
.ws8a{word-spacing:8.746667pt;}
.ws60{word-spacing:8.800000pt;}
.ws44{word-spacing:9.472000pt;}
.ws8e{word-spacing:10.346667pt;}
.ws6b{word-spacing:11.466667pt;}
.ws7{word-spacing:12.288000pt;}
.ws50{word-spacing:12.800000pt;}
._b{margin-left:-13.994667pt;}
._c{margin-left:-3.895467pt;}
._7{margin-left:-2.990933pt;}
._9{margin-left:-1.998933pt;}
._0{margin-left:-0.950400pt;}
._1{width:0.964800pt;}
._8{width:1.997867pt;}
._2{width:3.081600pt;}
._3{width:3.980800pt;}
._4{width:4.932800pt;}
._5{width:6.672000pt;}
._6{width:8.217600pt;}
._a{width:9.478933pt;}
.fs8{font-size:24.874667pt;}
.fs7{font-size:29.866667pt;}
.fs5{font-size:31.093333pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:29.343200pt;}
.y43{bottom:30.981067pt;}
.y1{bottom:60.660533pt;}
.y19{bottom:62.298267pt;}
.y41{bottom:94.488267pt;}
.y69{bottom:107.288267pt;}
.y40{bottom:111.067733pt;}
.y87{bottom:120.088267pt;}
.y3f{bottom:123.867733pt;}
.yae{bottom:127.647333pt;}
.y96{bottom:132.888267pt;}
.y68{bottom:136.667733pt;}
.ydf{bottom:140.447200pt;}
.y3e{bottom:140.447333pt;}
.yfe{bottom:144.226800pt;}
.y132{bottom:149.177467pt;}
.y9d{bottom:150.648933pt;}
.y67{bottom:153.247333pt;}
.y3d{bottom:157.026800pt;}
.y131{bottom:165.177467pt;}
.ybf{bottom:165.962533pt;}
.y66{bottom:166.047333pt;}
.y9c{bottom:166.648933pt;}
.y3c{bottom:169.826800pt;}
.y14e{bottom:173.538133pt;}
.y90{bottom:178.174400pt;}
.y65{bottom:178.847333pt;}
.y130{bottom:181.177467pt;}
.y95{bottom:181.777467pt;}
.ybe{bottom:181.962533pt;}
.yde{bottom:182.626800pt;}
.y9b{bottom:182.648933pt;}
.y86{bottom:186.406400pt;}
.y14d{bottom:189.538133pt;}
.y11c{bottom:193.897200pt;}
.y8f{bottom:194.174400pt;}
.y64{bottom:195.426800pt;}
.y12f{bottom:197.177467pt;}
.y94{bottom:197.777467pt;}
.ybd{bottom:197.962533pt;}
.y9a{bottom:198.648933pt;}
.y85{bottom:199.206400pt;}
.yfd{bottom:204.547200pt;}
.y14c{bottom:205.538133pt;}
.y63{bottom:208.226800pt;}
.y11b{bottom:209.897200pt;}
.y8e{bottom:210.174400pt;}
.ydd{bottom:212.006267pt;}
.y12e{bottom:213.177467pt;}
.y93{bottom:213.777467pt;}
.ybc{bottom:213.962533pt;}
.y3b{bottom:217.041600pt;}
.yfc{bottom:217.880533pt;}
.y14b{bottom:221.538133pt;}
.y11a{bottom:225.897200pt;}
.y99{bottom:225.987467pt;}
.y8d{bottom:226.174400pt;}
.y12d{bottom:229.177467pt;}
.y92{bottom:229.777467pt;}
.ybb{bottom:229.962533pt;}
.yfb{bottom:230.680533pt;}
.y3a{bottom:233.041600pt;}
.y14a{bottom:237.538133pt;}
.y8c{bottom:242.174400pt;}
.yfa{bottom:243.480533pt;}
.y84{bottom:245.097200pt;}
.y12c{bottom:245.177467pt;}
.y62{bottom:245.538133pt;}
.yba{bottom:245.962533pt;}
.y39{bottom:249.041600pt;}
.ydc{bottom:250.157733pt;}
.y119{bottom:253.235733pt;}
.y149{bottom:253.538133pt;}
.yf9{bottom:256.280533pt;}
.y8b{bottom:258.174400pt;}
.y83{bottom:261.097200pt;}
.y12b{bottom:261.177467pt;}
.y61{bottom:261.538133pt;}
.yb9{bottom:261.962533pt;}
.y98{bottom:262.485200pt;}
.ydb{bottom:262.957733pt;}
.y91{bottom:264.977467pt;}
.y38{bottom:265.041600pt;}
.y118{bottom:266.035733pt;}
.y148{bottom:269.538133pt;}
.y8a{bottom:274.174400pt;}
.y82{bottom:277.097200pt;}
.y12a{bottom:277.177467pt;}
.y60{bottom:277.538133pt;}
.yb8{bottom:277.962533pt;}
.y17{bottom:278.600267pt;}
.yf8{bottom:280.419200pt;}
.y37{bottom:281.041600pt;}
.y97{bottom:281.685200pt;}
.y147{bottom:285.538133pt;}
.y117{bottom:290.174400pt;}
.y16{bottom:293.000267pt;}
.y81{bottom:293.097200pt;}
.y129{bottom:293.177467pt;}
.y5f{bottom:293.538133pt;}
.yb7{bottom:293.962533pt;}
.yf7{bottom:296.419200pt;}
.y36{bottom:297.041600pt;}
.y146{bottom:301.538133pt;}
.yda{bottom:303.096400pt;}
.y116{bottom:306.174400pt;}
.y15{bottom:307.400267pt;}
.y80{bottom:309.097200pt;}
.y128{bottom:309.177467pt;}
.y5e{bottom:309.538133pt;}
.yb6{bottom:309.962533pt;}
.yf6{bottom:312.419200pt;}
.y35{bottom:313.041600pt;}
.y145{bottom:317.538133pt;}
.yd9{bottom:319.096400pt;}
.y14{bottom:321.800267pt;}
.y115{bottom:322.174400pt;}
.y7f{bottom:325.097200pt;}
.y127{bottom:325.177467pt;}
.y5d{bottom:325.538133pt;}
.yb5{bottom:325.962533pt;}
.yf5{bottom:328.419200pt;}
.y34{bottom:329.041600pt;}
.y144{bottom:333.538133pt;}
.yd8{bottom:335.096400pt;}
.y13{bottom:336.200267pt;}
.y114{bottom:338.174400pt;}
.y7e{bottom:341.097200pt;}
.y126{bottom:341.177467pt;}
.y5c{bottom:341.538133pt;}
.yb4{bottom:341.962533pt;}
.y33{bottom:345.041600pt;}
.y143{bottom:349.538133pt;}
.y12{bottom:350.600267pt;}
.yd7{bottom:351.096400pt;}
.y113{bottom:354.174400pt;}
.yf4{bottom:355.757733pt;}
.y7d{bottom:357.097200pt;}
.y89{bottom:357.374400pt;}
.y5b{bottom:357.538133pt;}
.yb3{bottom:357.962533pt;}
.y32{bottom:361.041600pt;}
.y11{bottom:365.000267pt;}
.y142{bottom:365.538133pt;}
.yd6{bottom:367.096400pt;}
.yf3{bottom:368.557733pt;}
.y112{bottom:370.174400pt;}
.y7c{bottom:373.097200pt;}
.y88{bottom:373.374400pt;}
.y5a{bottom:373.538133pt;}
.yb2{bottom:373.962533pt;}
.y15d{bottom:376.297200pt;}
.y31{bottom:377.041600pt;}
.y10{bottom:379.400267pt;}
.y125{bottom:381.177467pt;}
.yf2{bottom:381.357733pt;}
.y141{bottom:381.538133pt;}
.yd5{bottom:383.096400pt;}
.y111{bottom:386.174400pt;}
.y7b{bottom:389.097200pt;}
.y59{bottom:389.538133pt;}
.y15c{bottom:392.297200pt;}
.y30{bottom:393.041600pt;}
.yf1{bottom:394.157733pt;}
.y140{bottom:397.538133pt;}
.yd4{bottom:399.096400pt;}
.y110{bottom:402.174400pt;}
.y7a{bottom:405.097200pt;}
.y58{bottom:405.538133pt;}
.y15b{bottom:408.297200pt;}
.y2f{bottom:409.041600pt;}
.yb1{bottom:409.162533pt;}
.y13f{bottom:413.538133pt;}
.yd3{bottom:415.096400pt;}
.y10f{bottom:418.174400pt;}
.yf0{bottom:418.296400pt;}
.y79{bottom:421.097200pt;}
.y57{bottom:421.538133pt;}
.yf{bottom:424.200267pt;}
.y15a{bottom:424.297200pt;}
.y2e{bottom:425.041600pt;}
.yb0{bottom:425.162533pt;}
.yad{bottom:427.220000pt;}
.y13e{bottom:429.538133pt;}
.yd2{bottom:431.096400pt;}
.y10e{bottom:434.174400pt;}
.yef{bottom:434.296400pt;}
.y78{bottom:437.097200pt;}
.y56{bottom:437.538133pt;}
.ye{bottom:438.600267pt;}
.y159{bottom:440.297200pt;}
.y2d{bottom:441.041600pt;}
.yaf{bottom:441.162533pt;}
.yac{bottom:443.220000pt;}
.y13d{bottom:445.538133pt;}
.y10d{bottom:450.174400pt;}
.yee{bottom:450.296400pt;}
.yd{bottom:453.000267pt;}
.y77{bottom:453.097200pt;}
.y55{bottom:453.538133pt;}
.y2c{bottom:457.041600pt;}
.yd1{bottom:458.434933pt;}
.yab{bottom:459.220000pt;}
.y13c{bottom:461.538133pt;}
.y10c{bottom:466.174400pt;}
.yed{bottom:466.296400pt;}
.yc{bottom:467.400267pt;}
.y158{bottom:467.635733pt;}
.y76{bottom:469.097200pt;}
.y54{bottom:469.538133pt;}
.yd0{bottom:471.234933pt;}
.y2b{bottom:473.041600pt;}
.yaa{bottom:475.220000pt;}
.y13b{bottom:477.538133pt;}
.y157{bottom:480.435733pt;}
.yb{bottom:481.800267pt;}
.y10b{bottom:482.174400pt;}
.ycf{bottom:484.034933pt;}
.y75{bottom:485.097200pt;}
.y53{bottom:485.538133pt;}
.y2a{bottom:489.041600pt;}
.ya9{bottom:491.220000pt;}
.y156{bottom:493.235733pt;}
.y13a{bottom:493.538133pt;}
.yec{bottom:493.634933pt;}
.ya{bottom:496.200267pt;}
.yce{bottom:496.834933pt;}
.y10a{bottom:498.174400pt;}
.y74{bottom:501.097200pt;}
.y52{bottom:501.538133pt;}
.y29{bottom:505.041600pt;}
.ya8{bottom:507.220000pt;}
.y139{bottom:509.538133pt;}
.ycd{bottom:509.634933pt;}
.y9{bottom:510.600267pt;}
.y109{bottom:514.174400pt;}
.y73{bottom:517.097200pt;}
.y155{bottom:517.374400pt;}
.y51{bottom:517.538133pt;}
.y28{bottom:521.041600pt;}
.ycc{bottom:522.434933pt;}
.ya7{bottom:523.220000pt;}
.y8{bottom:525.000267pt;}
.y138{bottom:525.538133pt;}
.yeb{bottom:530.132533pt;}
.y154{bottom:533.374400pt;}
.y50{bottom:533.538133pt;}
.ycb{bottom:535.234933pt;}
.y27{bottom:537.041600pt;}
.ya6{bottom:539.220000pt;}
.y137{bottom:541.538133pt;}
.y72{bottom:544.435733pt;}
.yea{bottom:546.132533pt;}
.y108{bottom:546.174400pt;}
.y153{bottom:549.374400pt;}
.y4f{bottom:549.538133pt;}
.y124{bottom:552.764533pt;}
.y26{bottom:553.041600pt;}
.ya5{bottom:555.220000pt;}
.y71{bottom:557.235733pt;}
.y136{bottom:557.538133pt;}
.yca{bottom:559.373467pt;}
.ye9{bottom:562.132533pt;}
.y107{bottom:562.174400pt;}
.y152{bottom:565.374400pt;}
.y4e{bottom:565.538133pt;}
.y123{bottom:568.764533pt;}
.y25{bottom:569.041600pt;}
.y7{bottom:569.800267pt;}
.y70{bottom:570.035733pt;}
.y135{bottom:573.538133pt;}
.y106{bottom:574.974400pt;}
.yc9{bottom:575.373467pt;}
.y151{bottom:581.374400pt;}
.y4d{bottom:581.538133pt;}
.ya4{bottom:582.558533pt;}
.y6f{bottom:582.835733pt;}
.y6{bottom:584.200267pt;}
.y122{bottom:584.764533pt;}
.y24{bottom:585.041600pt;}
.y105{bottom:587.774267pt;}
.ye8{bottom:589.471200pt;}
.y134{bottom:589.538133pt;}
.yc8{bottom:591.373467pt;}
.ya3{bottom:595.358667pt;}
.y6e{bottom:595.635733pt;}
.y150{bottom:597.374400pt;}
.y4c{bottom:597.538133pt;}
.y104{bottom:600.574400pt;}
.y121{bottom:600.764533pt;}
.y23{bottom:601.041600pt;}
.ye7{bottom:602.271200pt;}
.yc7{bottom:607.373467pt;}
.ya2{bottom:608.158667pt;}
.y6d{bottom:608.435733pt;}
.y103{bottom:613.374400pt;}
.y4b{bottom:613.538133pt;}
.y120{bottom:616.764533pt;}
.y133{bottom:616.876667pt;}
.y22{bottom:617.041600pt;}
.y5{bottom:617.800267pt;}
.y6c{bottom:621.235733pt;}
.yc6{bottom:623.373467pt;}
.y102{bottom:626.174400pt;}
.ye6{bottom:626.409733pt;}
.y14f{bottom:629.374400pt;}
.ya1{bottom:632.297200pt;}
.y11f{bottom:632.764533pt;}
.y21{bottom:633.041600pt;}
.y4{bottom:637.000267pt;}
.y101{bottom:638.974400pt;}
.y4a{bottom:640.876667pt;}
.ye5{bottom:642.409733pt;}
.y6b{bottom:645.374400pt;}
.y20{bottom:649.041600pt;}
.yc5{bottom:650.712133pt;}
.y100{bottom:651.774267pt;}
.ye4{bottom:658.409733pt;}
.ya0{bottom:659.635733pt;}
.y11e{bottom:660.103067pt;}
.y6a{bottom:661.374400pt;}
.yff{bottom:664.574400pt;}
.y1f{bottom:665.041600pt;}
.y9f{bottom:672.435733pt;}
.y11d{bottom:672.903067pt;}
.ye3{bottom:674.409733pt;}
.y3{bottom:675.400267pt;}
.y49{bottom:677.374400pt;}
.y1e{bottom:681.041600pt;}
.y9e{bottom:685.235733pt;}
.yc4{bottom:687.209733pt;}
.ye2{bottom:690.409733pt;}
.y48{bottom:693.374400pt;}
.y1d{bottom:697.041600pt;}
.yc3{bottom:703.209733pt;}
.ye1{bottom:706.409733pt;}
.y47{bottom:709.374400pt;}
.y1c{bottom:713.041600pt;}
.y46{bottom:725.374400pt;}
.y1b{bottom:729.041600pt;}
.yc2{bottom:730.548400pt;}
.ye0{bottom:733.748267pt;}
.y45{bottom:741.374400pt;}
.yc1{bottom:746.548400pt;}
.y1a{bottom:756.380267pt;}
.y44{bottom:757.374400pt;}
.yc0{bottom:759.348267pt;}
.y18{bottom:794.266800pt;}
.y42{bottom:794.272667pt;}
.h8{height:41.854167pt;}
.h9{height:46.523438pt;}
.h2{height:47.085938pt;}
.ha{height:51.692708pt;}
.h7{height:52.317708pt;}
.h6{height:56.002604pt;}
.h3{height:57.549479pt;}
.h5{height:62.781250pt;}
.h4{height:73.244792pt;}
.h1{height:842.666667pt;}
.h0{height:842.834667pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x5{left:56.692933pt;}
.x1{left:68.031467pt;}
.x9{left:94.488133pt;}
.x7{left:102.047200pt;}
.x11{left:105.826800pt;}
.x3{left:113.385867pt;}
.x12{left:124.724400pt;}
.xf{left:125.935733pt;}
.xd{left:132.133733pt;}
.x13{left:139.826267pt;}
.xa{left:147.849867pt;}
.xb{left:182.765200pt;}
.xc{left:188.832267pt;}
.x8{left:211.436800pt;}
.x4{left:233.030800pt;}
.x6{left:270.147067pt;}
.xe{left:277.172133pt;}
.x14{left:279.284000pt;}
.x2{left:283.564400pt;}
.x10{left:292.234000pt;}
}

