
    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_7607ad99e54d91746010929f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_a829277c9985458184639e09.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_b169f77bed23c77e727c4e2d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_12f5da54854c6ae284479bb2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.984000;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_6395deb5a4c57f0fe36dfe07.woff')format("woff");}.ff5{font-family:ff5;line-height:1.102539;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_c671c18cd83168a85a4b5c73.woff')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_df82d8e78655702610ca43d0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_e34d853bb568258501a87b99.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_df82d8e78655702610ca43d0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_42261154776404a758192c7c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.698242;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_1d3d41bdeec03e61fddf75c8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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:1.054200px;}
.v1{vertical-align:19.800000px;}
.ls37{letter-spacing:-0.720000px;}
.ls2e{letter-spacing:-0.660000px;}
.ls1c{letter-spacing:-0.600000px;}
.ls19{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.480000px;}
.ls22{letter-spacing:-0.420000px;}
.ls20{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.300000px;}
.ls18{letter-spacing:-0.240000px;}
.ls23{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.120000px;}
.ls1f{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.009000px;}
.lsa{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.240000px;}
.ls2c{letter-spacing:0.247200px;}
.ls25{letter-spacing:0.300000px;}
.ls29{letter-spacing:0.317400px;}
.ls38{letter-spacing:0.318000px;}
.ls11{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.378000px;}
.ls6{letter-spacing:0.420000px;}
.ls2d{letter-spacing:0.426000px;}
.ls8{letter-spacing:0.480000px;}
.ls31{letter-spacing:0.494400px;}
.ls2f{letter-spacing:0.531600px;}
.lse{letter-spacing:0.540000px;}
.ls2a{letter-spacing:0.547800px;}
.ls9{letter-spacing:0.600000px;}
.lsf{letter-spacing:0.660000px;}
.ls1e{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.780000px;}
.ls17{letter-spacing:0.840000px;}
.ls32{letter-spacing:0.852600px;}
.ls1{letter-spacing:0.885000px;}
.ls14{letter-spacing:0.900000px;}
.ls13{letter-spacing:0.960000px;}
.lsd{letter-spacing:1.020000px;}
.ls15{letter-spacing:1.080000px;}
.ls4{letter-spacing:1.140000px;}
.lsc{letter-spacing:1.200000px;}
.ls30{letter-spacing:1.260000px;}
.ls21{letter-spacing:1.320000px;}
.lsb{letter-spacing:1.380000px;}
.ls33{letter-spacing:1.440000px;}
.ls10{letter-spacing:1.500000px;}
.ls35{letter-spacing:1.560000px;}
.ls28{letter-spacing:1.680000px;}
.ls2b{letter-spacing:1.740000px;}
.ls34{letter-spacing:1.860000px;}
.ls26{letter-spacing:2.220000px;}
.ls36{letter-spacing:2.280000px;}
.ls39{letter-spacing:2.580000px;}
.ls3{letter-spacing:2.640000px;}
.ls0{letter-spacing:2785.500000px;}
.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;}
}
.ws4b{word-spacing:-16.320000px;}
.ws4a{word-spacing:-15.900000px;}
.ws66{word-spacing:-15.840000px;}
.ws37{word-spacing:-15.660000px;}
.ws38{word-spacing:-15.540000px;}
.wsd{word-spacing:-15.420000px;}
.ws39{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.000000px;}
.wse{word-spacing:-14.820000px;}
.ws0{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.000000px;}
.ws49{word-spacing:-8.700000px;}
.ws8c{word-spacing:-8.580000px;}
.ws5e{word-spacing:-7.500000px;}
.ws5d{word-spacing:-6.300000px;}
.ws8b{word-spacing:-5.880000px;}
.ws85{word-spacing:-4.800000px;}
.ws87{word-spacing:-4.620000px;}
.ws1c{word-spacing:-4.500000px;}
.ws30{word-spacing:-4.380000px;}
.ws43{word-spacing:-4.260000px;}
.ws62{word-spacing:-4.140000px;}
.ws5c{word-spacing:-4.080000px;}
.ws80{word-spacing:-3.780000px;}
.ws7f{word-spacing:-3.360000px;}
.ws2c{word-spacing:-3.300000px;}
.ws35{word-spacing:-3.120000px;}
.ws46{word-spacing:-3.000000px;}
.ws82{word-spacing:-2.940000px;}
.ws2b{word-spacing:-2.880000px;}
.ws1d{word-spacing:-2.820000px;}
.ws28{word-spacing:-2.760000px;}
.ws19{word-spacing:-2.700000px;}
.wsf{word-spacing:-2.640000px;}
.ws41{word-spacing:-2.520000px;}
.ws1a{word-spacing:-2.460000px;}
.ws45{word-spacing:-2.400000px;}
.ws78{word-spacing:-2.280000px;}
.ws63{word-spacing:-2.220000px;}
.ws18{word-spacing:-2.160000px;}
.ws81{word-spacing:-2.100000px;}
.ws48{word-spacing:-1.860000px;}
.ws64{word-spacing:-1.740000px;}
.ws34{word-spacing:-1.680000px;}
.ws61{word-spacing:-1.620000px;}
.ws7c{word-spacing:-1.560000px;}
.ws10{word-spacing:-1.500000px;}
.ws3{word-spacing:-1.458000px;}
.ws79{word-spacing:-1.440000px;}
.ws65{word-spacing:-1.404000px;}
.ws1f{word-spacing:-1.380000px;}
.ws6{word-spacing:-1.350000px;}
.ws29{word-spacing:-1.320000px;}
.ws7b{word-spacing:-1.260000px;}
.ws22{word-spacing:-1.200000px;}
.ws4{word-spacing:-1.188000px;}
.ws11{word-spacing:-1.140000px;}
.ws42{word-spacing:-1.080000px;}
.ws7e{word-spacing:-1.026000px;}
.ws32{word-spacing:-1.020000px;}
.ws2a{word-spacing:-0.960000px;}
.ws2d{word-spacing:-0.900000px;}
.ws15{word-spacing:-0.840000px;}
.ws36{word-spacing:-0.780000px;}
.ws25{word-spacing:-0.720000px;}
.ws33{word-spacing:-0.660000px;}
.ws1e{word-spacing:-0.600000px;}
.ws24{word-spacing:-0.540000px;}
.ws23{word-spacing:-0.480000px;}
.ws13{word-spacing:-0.420000px;}
.ws31{word-spacing:-0.360000px;}
.ws47{word-spacing:-0.300000px;}
.ws44{word-spacing:-0.240000px;}
.ws12{word-spacing:-0.180000px;}
.ws14{word-spacing:-0.120000px;}
.ws1b{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws26{word-spacing:0.060000px;}
.ws20{word-spacing:0.120000px;}
.ws2f{word-spacing:0.180000px;}
.ws16{word-spacing:0.240000px;}
.ws17{word-spacing:0.300000px;}
.ws27{word-spacing:0.360000px;}
.ws2e{word-spacing:0.420000px;}
.wsb{word-spacing:0.480000px;}
.ws7{word-spacing:0.540000px;}
.ws21{word-spacing:0.600000px;}
.ws60{word-spacing:0.660000px;}
.ws7a{word-spacing:0.720000px;}
.ws5b{word-spacing:1.200000px;}
.ws5{word-spacing:1.242000px;}
.ws84{word-spacing:1.560000px;}
.ws8{word-spacing:1.944000px;}
.ws7d{word-spacing:2.106000px;}
.ws9{word-spacing:2.376000px;}
.wsa{word-spacing:4.080000px;}
.ws86{word-spacing:4.140000px;}
.ws5f{word-spacing:5.340000px;}
.ws83{word-spacing:6.840000px;}
.ws5a{word-spacing:7.020000px;}
.ws8a{word-spacing:7.200000px;}
.ws88{word-spacing:7.380000px;}
.ws89{word-spacing:9.480000px;}
.ws8d{word-spacing:12.360000px;}
.ws8e{word-spacing:13.020000px;}
.ws77{word-spacing:119.161200px;}
.ws76{word-spacing:170.643600px;}
.ws3a{word-spacing:173.397600px;}
.ws3f{word-spacing:262.665000px;}
.ws40{word-spacing:262.665600px;}
.ws3c{word-spacing:276.165600px;}
.ws75{word-spacing:314.326200px;}
.ws3e{word-spacing:318.788400px;}
.ws3b{word-spacing:336.414000px;}
.ws3d{word-spacing:363.414000px;}
.ws4f{word-spacing:370.543800px;}
.ws56{word-spacing:371.545200px;}
.ws55{word-spacing:373.513200px;}
.ws4e{word-spacing:373.513800px;}
.ws69{word-spacing:377.330400px;}
.ws6a{word-spacing:386.858400px;}
.ws71{word-spacing:389.670600px;}
.ws70{word-spacing:392.640600px;}
.ws68{word-spacing:399.337800px;}
.ws53{word-spacing:399.757200px;}
.ws4c{word-spacing:399.757800px;}
.ws57{word-spacing:400.513200px;}
.ws50{word-spacing:400.513800px;}
.ws6e{word-spacing:405.384600px;}
.ws72{word-spacing:406.140600px;}
.ws4d{word-spacing:410.023200px;}
.ws6f{word-spacing:415.650000px;}
.ws67{word-spacing:416.072400px;}
.ws6b{word-spacing:416.828400px;}
.ws54{word-spacing:423.522600px;}
.ws58{word-spacing:427.513200px;}
.ws51{word-spacing:427.513800px;}
.ws6c{word-spacing:430.328400px;}
.ws73{word-spacing:433.140600px;}
.ws59{word-spacing:466.155600px;}
.ws52{word-spacing:466.156200px;}
.ws6d{word-spacing:468.970800px;}
.ws74{word-spacing:471.783000px;}
._14{margin-left:-15.024000px;}
._2e{margin-left:-11.412000px;}
._15{margin-left:-10.218000px;}
._16{margin-left:-9.156000px;}
._13{margin-left:-8.091000px;}
._d{margin-left:-7.053000px;}
._c{margin-left:-6.027000px;}
._5{margin-left:-4.452000px;}
._4{margin-left:-3.246000px;}
._0{margin-left:-1.350000px;}
._7{width:1.749600px;}
._6{width:2.921400px;}
._8{width:4.295400px;}
._9{width:5.358000px;}
._29{width:6.822000px;}
._28{width:7.920000px;}
._2a{width:9.240000px;}
._2d{width:10.353000px;}
._2b{width:12.306000px;}
._2c{width:13.338000px;}
._2f{width:16.224000px;}
._12{width:48.000000px;}
._24{width:86.511000px;}
._27{width:119.163000px;}
._25{width:123.665400px;}
._23{width:129.242400px;}
._26{width:149.185800px;}
._22{width:182.226600px;}
._f{width:206.500200px;}
._10{width:227.614200px;}
._21{width:246.172800px;}
._1d{width:249.098400px;}
._17{width:262.598400px;}
._1c{width:263.948400px;}
._18{width:276.447000px;}
._1a{width:282.848400px;}
._20{width:287.919600px;}
._1b{width:288.945000px;}
._11{width:303.165000px;}
._19{width:316.598400px;}
._b{width:675.618000px;}
._1e{width:710.357400px;}
._1f{width:815.916600px;}
._2{width:969.192000px;}
._1{width:1199.178000px;}
._a{width:1396.602000px;}
._e{width:1402.560000px;}
._3{width:1493.370000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:34.800000px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:58.357950px;}
.y1{bottom:58.657950px;}
.y172{bottom:100.051500px;}
.y14f{bottom:101.851650px;}
.ydb{bottom:105.436950px;}
.y27{bottom:106.754550px;}
.y14e{bottom:109.729050px;}
.y10c{bottom:112.183350px;}
.y171{bottom:118.051500px;}
.y5f{bottom:119.851650px;}
.yda{bottom:123.436950px;}
.y14d{bottom:127.593300px;}
.y26{bottom:129.658500px;}
.y10b{bottom:131.761650px;}
.y170{bottom:136.051500px;}
.y5e{bottom:137.851650px;}
.ya3{bottom:138.093300px;}
.ya9{bottom:140.477100px;}
.yd9{bottom:141.436950px;}
.y25{bottom:144.058500px;}
.y14c{bottom:145.470750px;}
.y10a{bottom:151.339950px;}
.y16f{bottom:154.051500px;}
.y5d{bottom:155.851650px;}
.ya2{bottom:156.093300px;}
.ya8{bottom:158.354550px;}
.y24{bottom:158.458500px;}
.yd8{bottom:159.436950px;}
.y14b{bottom:163.348200px;}
.y109{bottom:170.918100px;}
.y16e{bottom:172.051500px;}
.y5c{bottom:173.851650px;}
.ya1{bottom:174.093300px;}
.ya7{bottom:176.232150px;}
.yd7{bottom:177.436950px;}
.y23{bottom:181.362450px;}
.y14a{bottom:187.225650px;}
.y16d{bottom:190.051500px;}
.y108{bottom:190.496400px;}
.y5b{bottom:191.851650px;}
.ya0{bottom:192.093300px;}
.ya6{bottom:194.109600px;}
.yd6{bottom:195.436950px;}
.y22{bottom:195.762450px;}
.y149{bottom:203.425650px;}
.y16c{bottom:208.051500px;}
.y5a{bottom:209.851650px;}
.y107{bottom:210.074700px;}
.y9f{bottom:210.093300px;}
.yd5{bottom:213.436950px;}
.ya5{bottom:217.987050px;}
.y16b{bottom:226.051500px;}
.y59{bottom:227.851650px;}
.y9e{bottom:228.093300px;}
.y106{bottom:229.653000px;}
.yd4{bottom:231.436950px;}
.ya4{bottom:234.187050px;}
.y136{bottom:242.493300px;}
.y16a{bottom:244.051500px;}
.y58{bottom:245.851650px;}
.y9d{bottom:246.093300px;}
.y13f{bottom:248.567700px;}
.yd3{bottom:249.436950px;}
.y105{bottom:254.380800px;}
.y135{bottom:260.493300px;}
.y169{bottom:262.051500px;}
.y57{bottom:263.851650px;}
.y9c{bottom:264.093300px;}
.y13e{bottom:268.145850px;}
.y104{bottom:270.580800px;}
.y72{bottom:272.851650px;}
.y134{bottom:278.493300px;}
.y168{bottom:280.051500px;}
.y56{bottom:281.851650px;}
.y9b{bottom:282.093300px;}
.yd2{bottom:285.436950px;}
.y103{bottom:286.780800px;}
.y13d{bottom:287.724150px;}
.y71{bottom:290.851650px;}
.y133{bottom:296.493300px;}
.y167{bottom:298.051500px;}
.y55{bottom:299.851650px;}
.y9a{bottom:300.093300px;}
.y102{bottom:302.980800px;}
.y21{bottom:304.900650px;}
.y13c{bottom:307.302450px;}
.y70{bottom:308.851650px;}
.y132{bottom:314.493300px;}
.y166{bottom:316.051500px;}
.y54{bottom:317.851650px;}
.y99{bottom:318.093300px;}
.y20{bottom:321.100650px;}
.yd1{bottom:321.436950px;}
.y6f{bottom:326.851650px;}
.y13b{bottom:326.880750px;}
.y131{bottom:332.493300px;}
.y165{bottom:334.051500px;}
.y53{bottom:335.851650px;}
.y98{bottom:336.093300px;}
.y1f{bottom:337.300650px;}
.yd0{bottom:339.436950px;}
.y6e{bottom:344.851650px;}
.y13a{bottom:346.458900px;}
.y130{bottom:350.493300px;}
.y164{bottom:352.051500px;}
.y1e{bottom:353.500650px;}
.y52{bottom:353.851650px;}
.y97{bottom:354.093300px;}
.ycf{bottom:357.436950px;}
.y101{bottom:360.522000px;}
.y6d{bottom:362.851650px;}
.y139{bottom:366.037200px;}
.y12f{bottom:368.493300px;}
.y1d{bottom:369.700650px;}
.y163{bottom:370.051500px;}
.y51{bottom:371.851650px;}
.y96{bottom:372.093300px;}
.yce{bottom:375.436950px;}
.y6c{bottom:380.851650px;}
.y100{bottom:380.950650px;}
.y1c{bottom:385.900650px;}
.y12e{bottom:386.493300px;}
.y162{bottom:388.051500px;}
.y50{bottom:389.851650px;}
.y95{bottom:390.093300px;}
.y138{bottom:390.765150px;}
.ycd{bottom:393.436950px;}
.y6b{bottom:398.851650px;}
.yff{bottom:401.379300px;}
.y1b{bottom:402.100650px;}
.y12d{bottom:404.493300px;}
.y161{bottom:406.051500px;}
.y137{bottom:406.965150px;}
.y4f{bottom:407.851650px;}
.ycc{bottom:411.436950px;}
.y6a{bottom:416.851650px;}
.y1a{bottom:418.300650px;}
.yfe{bottom:421.807950px;}
.y12c{bottom:422.493300px;}
.y160{bottom:424.051500px;}
.y4e{bottom:425.851650px;}
.y94{bottom:426.093300px;}
.y19{bottom:434.500650px;}
.y69{bottom:434.851650px;}
.y12b{bottom:440.493300px;}
.y15f{bottom:442.051500px;}
.yfd{bottom:442.236600px;}
.y4d{bottom:443.851650px;}
.ycb{bottom:447.436950px;}
.y18{bottom:450.700650px;}
.y68{bottom:452.851650px;}
.y148{bottom:455.496750px;}
.y12a{bottom:458.493300px;}
.y15e{bottom:460.051500px;}
.y4c{bottom:461.851650px;}
.y93{bottom:462.093300px;}
.yfc{bottom:462.665250px;}
.y17{bottom:466.900650px;}
.y67{bottom:470.851650px;}
.y147{bottom:475.074900px;}
.y129{bottom:476.493300px;}
.y15d{bottom:478.051500px;}
.y4b{bottom:479.851650px;}
.y92{bottom:480.093300px;}
.yfb{bottom:483.093900px;}
.y66{bottom:488.851650px;}
.y128{bottom:494.493300px;}
.y146{bottom:494.653200px;}
.y15c{bottom:496.051500px;}
.yca{bottom:497.836950px;}
.y4a{bottom:497.851650px;}
.y91{bottom:498.093300px;}
.y65{bottom:506.851650px;}
.yfa{bottom:508.246950px;}
.y127{bottom:512.493300px;}
.y15b{bottom:514.051500px;}
.y145{bottom:514.231500px;}
.y16{bottom:515.500650px;}
.yc9{bottom:515.836950px;}
.y49{bottom:515.851650px;}
.y90{bottom:516.093300px;}
.yf9{bottom:524.446950px;}
.y64{bottom:524.851650px;}
.y126{bottom:530.493300px;}
.y15{bottom:531.700650px;}
.y15a{bottom:532.051500px;}
.y144{bottom:533.809800px;}
.yc8{bottom:533.836950px;}
.y48{bottom:533.851650px;}
.y8f{bottom:534.093300px;}
.yf8{bottom:540.646950px;}
.y63{bottom:542.851650px;}
.y14{bottom:547.900650px;}
.y125{bottom:548.493300px;}
.y159{bottom:550.051500px;}
.yc7{bottom:551.836950px;}
.y47{bottom:551.851650px;}
.y8e{bottom:552.093300px;}
.y143{bottom:553.388100px;}
.yf7{bottom:556.846950px;}
.y13{bottom:564.100650px;}
.y124{bottom:566.493300px;}
.y158{bottom:568.051500px;}
.yc6{bottom:569.836950px;}
.y46{bottom:569.851650px;}
.y8d{bottom:570.093300px;}
.y142{bottom:572.966250px;}
.y62{bottom:578.851650px;}
.y12{bottom:580.300650px;}
.y123{bottom:584.493300px;}
.y157{bottom:586.051500px;}
.yc5{bottom:587.836950px;}
.y45{bottom:587.851650px;}
.y8c{bottom:588.093300px;}
.y11{bottom:596.500650px;}
.y141{bottom:597.694200px;}
.y122{bottom:602.493300px;}
.y156{bottom:604.051500px;}
.yc4{bottom:605.836950px;}
.yf6{bottom:605.851500px;}
.y44{bottom:605.851650px;}
.y8b{bottom:606.093300px;}
.y10{bottom:612.700650px;}
.y61{bottom:613.051500px;}
.y140{bottom:613.894200px;}
.y121{bottom:620.493300px;}
.y155{bottom:622.051500px;}
.yc3{bottom:623.836950px;}
.yf5{bottom:623.851500px;}
.y43{bottom:623.851650px;}
.yf{bottom:628.900650px;}
.y120{bottom:638.493300px;}
.y154{bottom:640.051500px;}
.yc2{bottom:641.836950px;}
.yf4{bottom:641.851500px;}
.y42{bottom:641.851650px;}
.y8a{bottom:642.093300px;}
.ye{bottom:645.100650px;}
.y11f{bottom:656.493300px;}
.y153{bottom:658.051500px;}
.yc1{bottom:659.836950px;}
.yf3{bottom:659.851500px;}
.y41{bottom:659.851650px;}
.y89{bottom:660.093300px;}
.yd{bottom:661.300650px;}
.y11e{bottom:674.493300px;}
.y152{bottom:676.051500px;}
.yc{bottom:677.500650px;}
.yc0{bottom:677.836950px;}
.yf2{bottom:677.851500px;}
.y40{bottom:677.851650px;}
.y88{bottom:678.093300px;}
.y11d{bottom:692.493300px;}
.yb{bottom:693.700650px;}
.y151{bottom:694.051500px;}
.ybf{bottom:695.836950px;}
.yf1{bottom:695.851500px;}
.y3f{bottom:695.851650px;}
.y87{bottom:696.093300px;}
.y11c{bottom:710.493300px;}
.y150{bottom:712.051500px;}
.ybe{bottom:713.836950px;}
.yf0{bottom:713.851500px;}
.y3e{bottom:713.851650px;}
.y86{bottom:714.093300px;}
.ybd{bottom:731.836950px;}
.yef{bottom:731.851500px;}
.y3d{bottom:731.851650px;}
.y85{bottom:732.093300px;}
.y11b{bottom:748.293300px;}
.ya{bottom:749.500650px;}
.ybc{bottom:749.836950px;}
.yee{bottom:749.851500px;}
.y3c{bottom:749.851650px;}
.y84{bottom:750.093300px;}
.y9{bottom:765.700650px;}
.ybb{bottom:767.836950px;}
.yed{bottom:767.851500px;}
.y3b{bottom:767.851650px;}
.y83{bottom:768.093300px;}
.y8{bottom:783.700650px;}
.yba{bottom:785.836950px;}
.yec{bottom:785.851500px;}
.y3a{bottom:785.851650px;}
.y82{bottom:786.093300px;}
.y7{bottom:801.700650px;}
.y11a{bottom:802.293300px;}
.yb9{bottom:803.836950px;}
.yeb{bottom:803.851500px;}
.y39{bottom:803.851650px;}
.y81{bottom:804.093300px;}
.y119{bottom:820.293300px;}
.yb8{bottom:821.836950px;}
.yea{bottom:821.851500px;}
.y38{bottom:821.851650px;}
.y80{bottom:822.093300px;}
.y118{bottom:838.293300px;}
.yb7{bottom:839.836950px;}
.ye9{bottom:839.851500px;}
.y37{bottom:839.851650px;}
.y7f{bottom:840.093300px;}
.y117{bottom:856.293300px;}
.yb6{bottom:857.836950px;}
.ye8{bottom:857.851500px;}
.y36{bottom:857.851650px;}
.y7e{bottom:858.093300px;}
.y116{bottom:874.293300px;}
.yb5{bottom:875.836950px;}
.ye7{bottom:875.851500px;}
.y35{bottom:875.851650px;}
.y7d{bottom:876.093300px;}
.y6{bottom:879.100650px;}
.y115{bottom:892.293300px;}
.yb4{bottom:893.836950px;}
.ye6{bottom:893.851500px;}
.y34{bottom:893.851650px;}
.y7c{bottom:894.093300px;}
.y114{bottom:910.293300px;}
.yb3{bottom:911.836950px;}
.ye5{bottom:911.851500px;}
.y33{bottom:911.851650px;}
.y7b{bottom:912.093300px;}
.y5{bottom:915.100650px;}
.y113{bottom:928.293300px;}
.yb2{bottom:929.836950px;}
.ye4{bottom:929.851500px;}
.y32{bottom:929.851650px;}
.y7a{bottom:930.093300px;}
.y112{bottom:946.293300px;}
.yb1{bottom:947.836950px;}
.ye3{bottom:947.851500px;}
.y31{bottom:947.851650px;}
.y79{bottom:948.093300px;}
.y111{bottom:964.293300px;}
.yb0{bottom:965.836950px;}
.ye2{bottom:965.851500px;}
.y30{bottom:965.851650px;}
.y78{bottom:966.093300px;}
.y110{bottom:982.293300px;}
.yaf{bottom:983.836950px;}
.ye1{bottom:983.851500px;}
.y2f{bottom:983.851650px;}
.y77{bottom:984.093300px;}
.y10f{bottom:1000.293300px;}
.yae{bottom:1001.836950px;}
.ye0{bottom:1001.851500px;}
.y2e{bottom:1001.851650px;}
.y76{bottom:1002.093300px;}
.y10e{bottom:1018.293300px;}
.yad{bottom:1019.836950px;}
.ydf{bottom:1019.851500px;}
.y2d{bottom:1019.851650px;}
.y75{bottom:1020.093300px;}
.y10d{bottom:1036.293300px;}
.yac{bottom:1037.836950px;}
.yde{bottom:1037.851500px;}
.y2c{bottom:1037.851650px;}
.y74{bottom:1038.093300px;}
.yab{bottom:1055.836950px;}
.ydd{bottom:1055.851500px;}
.y2b{bottom:1055.851650px;}
.y4{bottom:1072.255350px;}
.yaa{bottom:1073.836950px;}
.ydc{bottom:1073.851500px;}
.y2a{bottom:1073.851650px;}
.y73{bottom:1074.093300px;}
.y3{bottom:1088.455350px;}
.y2{bottom:1104.655350px;}
.y60{bottom:1114.557450px;}
.y29{bottom:1115.142300px;}
.h8{height:33.351562px;}
.h6{height:37.494141px;}
.h2{height:37.520508px;}
.h7{height:40.031250px;}
.hb{height:41.074219px;}
.he{height:41.660156px;}
.ha{height:41.689453px;}
.h3{height:45.035156px;}
.hc{height:45.087356px;}
.hd{height:45.087956px;}
.h9{height:50.039062px;}
.h5{height:53.203125px;}
.h4{height:85.800000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:83.622000px;}
.x1{left:85.050000px;}
.xd{left:87.175950px;}
.xe{left:93.543300px;}
.x15{left:98.517150px;}
.x14{left:108.081900px;}
.xa{left:110.539350px;}
.xf{left:120.543300px;}
.x13{left:124.918350px;}
.x9{left:127.575000px;}
.x8{left:153.075000px;}
.x2{left:162.893250px;}
.x3{left:165.683100px;}
.x12{left:174.188100px;}
.xb{left:461.344200px;}
.x10{left:463.470150px;}
.xc{left:486.844200px;}
.x7{left:583.284900px;}
.x4{left:599.763750px;}
.x6{left:624.197250px;}
.x5{left:639.233850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:0.937067pt;}
.v1{vertical-align:17.600000pt;}
.ls37{letter-spacing:-0.640000pt;}
.ls2e{letter-spacing:-0.586667pt;}
.ls1c{letter-spacing:-0.533333pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.426667pt;}
.ls22{letter-spacing:-0.373333pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.266667pt;}
.ls18{letter-spacing:-0.213333pt;}
.ls23{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.106667pt;}
.ls1f{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.008000pt;}
.lsa{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.213333pt;}
.ls2c{letter-spacing:0.219733pt;}
.ls25{letter-spacing:0.266667pt;}
.ls29{letter-spacing:0.282133pt;}
.ls38{letter-spacing:0.282667pt;}
.ls11{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.336000pt;}
.ls6{letter-spacing:0.373333pt;}
.ls2d{letter-spacing:0.378667pt;}
.ls8{letter-spacing:0.426667pt;}
.ls31{letter-spacing:0.439467pt;}
.ls2f{letter-spacing:0.472533pt;}
.lse{letter-spacing:0.480000pt;}
.ls2a{letter-spacing:0.486933pt;}
.ls9{letter-spacing:0.533333pt;}
.lsf{letter-spacing:0.586667pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.693333pt;}
.ls17{letter-spacing:0.746667pt;}
.ls32{letter-spacing:0.757867pt;}
.ls1{letter-spacing:0.786667pt;}
.ls14{letter-spacing:0.800000pt;}
.ls13{letter-spacing:0.853333pt;}
.lsd{letter-spacing:0.906667pt;}
.ls15{letter-spacing:0.960000pt;}
.ls4{letter-spacing:1.013333pt;}
.lsc{letter-spacing:1.066667pt;}
.ls30{letter-spacing:1.120000pt;}
.ls21{letter-spacing:1.173333pt;}
.lsb{letter-spacing:1.226667pt;}
.ls33{letter-spacing:1.280000pt;}
.ls10{letter-spacing:1.333333pt;}
.ls35{letter-spacing:1.386667pt;}
.ls28{letter-spacing:1.493333pt;}
.ls2b{letter-spacing:1.546667pt;}
.ls34{letter-spacing:1.653333pt;}
.ls26{letter-spacing:1.973333pt;}
.ls36{letter-spacing:2.026667pt;}
.ls39{letter-spacing:2.293333pt;}
.ls3{letter-spacing:2.346667pt;}
.ls0{letter-spacing:2476.000000pt;}
.ws4b{word-spacing:-14.506667pt;}
.ws4a{word-spacing:-14.133333pt;}
.ws66{word-spacing:-14.080000pt;}
.ws37{word-spacing:-13.920000pt;}
.ws38{word-spacing:-13.813333pt;}
.wsd{word-spacing:-13.706667pt;}
.ws39{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.333333pt;}
.wse{word-spacing:-13.173333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.666667pt;}
.ws49{word-spacing:-7.733333pt;}
.ws8c{word-spacing:-7.626667pt;}
.ws5e{word-spacing:-6.666667pt;}
.ws5d{word-spacing:-5.600000pt;}
.ws8b{word-spacing:-5.226667pt;}
.ws85{word-spacing:-4.266667pt;}
.ws87{word-spacing:-4.106667pt;}
.ws1c{word-spacing:-4.000000pt;}
.ws30{word-spacing:-3.893333pt;}
.ws43{word-spacing:-3.786667pt;}
.ws62{word-spacing:-3.680000pt;}
.ws5c{word-spacing:-3.626667pt;}
.ws80{word-spacing:-3.360000pt;}
.ws7f{word-spacing:-2.986667pt;}
.ws2c{word-spacing:-2.933333pt;}
.ws35{word-spacing:-2.773333pt;}
.ws46{word-spacing:-2.666667pt;}
.ws82{word-spacing:-2.613333pt;}
.ws2b{word-spacing:-2.560000pt;}
.ws1d{word-spacing:-2.506667pt;}
.ws28{word-spacing:-2.453333pt;}
.ws19{word-spacing:-2.400000pt;}
.wsf{word-spacing:-2.346667pt;}
.ws41{word-spacing:-2.240000pt;}
.ws1a{word-spacing:-2.186667pt;}
.ws45{word-spacing:-2.133333pt;}
.ws78{word-spacing:-2.026667pt;}
.ws63{word-spacing:-1.973333pt;}
.ws18{word-spacing:-1.920000pt;}
.ws81{word-spacing:-1.866667pt;}
.ws48{word-spacing:-1.653333pt;}
.ws64{word-spacing:-1.546667pt;}
.ws34{word-spacing:-1.493333pt;}
.ws61{word-spacing:-1.440000pt;}
.ws7c{word-spacing:-1.386667pt;}
.ws10{word-spacing:-1.333333pt;}
.ws3{word-spacing:-1.296000pt;}
.ws79{word-spacing:-1.280000pt;}
.ws65{word-spacing:-1.248000pt;}
.ws1f{word-spacing:-1.226667pt;}
.ws6{word-spacing:-1.200000pt;}
.ws29{word-spacing:-1.173333pt;}
.ws7b{word-spacing:-1.120000pt;}
.ws22{word-spacing:-1.066667pt;}
.ws4{word-spacing:-1.056000pt;}
.ws11{word-spacing:-1.013333pt;}
.ws42{word-spacing:-0.960000pt;}
.ws7e{word-spacing:-0.912000pt;}
.ws32{word-spacing:-0.906667pt;}
.ws2a{word-spacing:-0.853333pt;}
.ws2d{word-spacing:-0.800000pt;}
.ws15{word-spacing:-0.746667pt;}
.ws36{word-spacing:-0.693333pt;}
.ws25{word-spacing:-0.640000pt;}
.ws33{word-spacing:-0.586667pt;}
.ws1e{word-spacing:-0.533333pt;}
.ws24{word-spacing:-0.480000pt;}
.ws23{word-spacing:-0.426667pt;}
.ws13{word-spacing:-0.373333pt;}
.ws31{word-spacing:-0.320000pt;}
.ws47{word-spacing:-0.266667pt;}
.ws44{word-spacing:-0.213333pt;}
.ws12{word-spacing:-0.160000pt;}
.ws14{word-spacing:-0.106667pt;}
.ws1b{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws26{word-spacing:0.053333pt;}
.ws20{word-spacing:0.106667pt;}
.ws2f{word-spacing:0.160000pt;}
.ws16{word-spacing:0.213333pt;}
.ws17{word-spacing:0.266667pt;}
.ws27{word-spacing:0.320000pt;}
.ws2e{word-spacing:0.373333pt;}
.wsb{word-spacing:0.426667pt;}
.ws7{word-spacing:0.480000pt;}
.ws21{word-spacing:0.533333pt;}
.ws60{word-spacing:0.586667pt;}
.ws7a{word-spacing:0.640000pt;}
.ws5b{word-spacing:1.066667pt;}
.ws5{word-spacing:1.104000pt;}
.ws84{word-spacing:1.386667pt;}
.ws8{word-spacing:1.728000pt;}
.ws7d{word-spacing:1.872000pt;}
.ws9{word-spacing:2.112000pt;}
.wsa{word-spacing:3.626667pt;}
.ws86{word-spacing:3.680000pt;}
.ws5f{word-spacing:4.746667pt;}
.ws83{word-spacing:6.080000pt;}
.ws5a{word-spacing:6.240000pt;}
.ws8a{word-spacing:6.400000pt;}
.ws88{word-spacing:6.560000pt;}
.ws89{word-spacing:8.426667pt;}
.ws8d{word-spacing:10.986667pt;}
.ws8e{word-spacing:11.573333pt;}
.ws77{word-spacing:105.921067pt;}
.ws76{word-spacing:151.683200pt;}
.ws3a{word-spacing:154.131200pt;}
.ws3f{word-spacing:233.480000pt;}
.ws40{word-spacing:233.480533pt;}
.ws3c{word-spacing:245.480533pt;}
.ws75{word-spacing:279.401067pt;}
.ws3e{word-spacing:283.367467pt;}
.ws3b{word-spacing:299.034667pt;}
.ws3d{word-spacing:323.034667pt;}
.ws4f{word-spacing:329.372267pt;}
.ws56{word-spacing:330.262400pt;}
.ws55{word-spacing:332.011733pt;}
.ws4e{word-spacing:332.012267pt;}
.ws69{word-spacing:335.404800pt;}
.ws6a{word-spacing:343.874133pt;}
.ws71{word-spacing:346.373867pt;}
.ws70{word-spacing:349.013867pt;}
.ws68{word-spacing:354.966933pt;}
.ws53{word-spacing:355.339733pt;}
.ws4c{word-spacing:355.340267pt;}
.ws57{word-spacing:356.011733pt;}
.ws50{word-spacing:356.012267pt;}
.ws6e{word-spacing:360.341867pt;}
.ws72{word-spacing:361.013867pt;}
.ws4d{word-spacing:364.465067pt;}
.ws6f{word-spacing:369.466667pt;}
.ws67{word-spacing:369.842133pt;}
.ws6b{word-spacing:370.514133pt;}
.ws54{word-spacing:376.464533pt;}
.ws58{word-spacing:380.011733pt;}
.ws51{word-spacing:380.012267pt;}
.ws6c{word-spacing:382.514133pt;}
.ws73{word-spacing:385.013867pt;}
.ws59{word-spacing:414.360533pt;}
.ws52{word-spacing:414.361067pt;}
.ws6d{word-spacing:416.862933pt;}
.ws74{word-spacing:419.362667pt;}
._14{margin-left:-13.354667pt;}
._2e{margin-left:-10.144000pt;}
._15{margin-left:-9.082667pt;}
._16{margin-left:-8.138667pt;}
._13{margin-left:-7.192000pt;}
._d{margin-left:-6.269333pt;}
._c{margin-left:-5.357333pt;}
._5{margin-left:-3.957333pt;}
._4{margin-left:-2.885333pt;}
._0{margin-left:-1.200000pt;}
._7{width:1.555200pt;}
._6{width:2.596800pt;}
._8{width:3.818133pt;}
._9{width:4.762667pt;}
._29{width:6.064000pt;}
._28{width:7.040000pt;}
._2a{width:8.213333pt;}
._2d{width:9.202667pt;}
._2b{width:10.938667pt;}
._2c{width:11.856000pt;}
._2f{width:14.421333pt;}
._12{width:42.666667pt;}
._24{width:76.898667pt;}
._27{width:105.922667pt;}
._25{width:109.924800pt;}
._23{width:114.882133pt;}
._26{width:132.609600pt;}
._22{width:161.979200pt;}
._f{width:183.555733pt;}
._10{width:202.323733pt;}
._21{width:218.820267pt;}
._1d{width:221.420800pt;}
._17{width:233.420800pt;}
._1c{width:234.620800pt;}
._18{width:245.730667pt;}
._1a{width:251.420800pt;}
._20{width:255.928533pt;}
._1b{width:256.840000pt;}
._11{width:269.480000pt;}
._19{width:281.420800pt;}
._b{width:600.549333pt;}
._1e{width:631.428800pt;}
._1f{width:725.259200pt;}
._2{width:861.504000pt;}
._1{width:1065.936000pt;}
._a{width:1241.424000pt;}
._e{width:1246.720000pt;}
._3{width:1327.440000pt;}
.fs5{font-size:30.933333pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:51.873733pt;}
.y1{bottom:52.140400pt;}
.y172{bottom:88.934667pt;}
.y14f{bottom:90.534800pt;}
.ydb{bottom:93.721733pt;}
.y27{bottom:94.892933pt;}
.y14e{bottom:97.536933pt;}
.y10c{bottom:99.718533pt;}
.y171{bottom:104.934667pt;}
.y5f{bottom:106.534800pt;}
.yda{bottom:109.721733pt;}
.y14d{bottom:113.416267pt;}
.y26{bottom:115.252000pt;}
.y10b{bottom:117.121467pt;}
.y170{bottom:120.934667pt;}
.y5e{bottom:122.534800pt;}
.ya3{bottom:122.749600pt;}
.ya9{bottom:124.868533pt;}
.yd9{bottom:125.721733pt;}
.y25{bottom:128.052000pt;}
.y14c{bottom:129.307333pt;}
.y10a{bottom:134.524400pt;}
.y16f{bottom:136.934667pt;}
.y5d{bottom:138.534800pt;}
.ya2{bottom:138.749600pt;}
.ya8{bottom:140.759600pt;}
.y24{bottom:140.852000pt;}
.yd8{bottom:141.721733pt;}
.y14b{bottom:145.198400pt;}
.y109{bottom:151.927200pt;}
.y16e{bottom:152.934667pt;}
.y5c{bottom:154.534800pt;}
.ya1{bottom:154.749600pt;}
.ya7{bottom:156.650800pt;}
.yd7{bottom:157.721733pt;}
.y23{bottom:161.211067pt;}
.y14a{bottom:166.422800pt;}
.y16d{bottom:168.934667pt;}
.y108{bottom:169.330133pt;}
.y5b{bottom:170.534800pt;}
.ya0{bottom:170.749600pt;}
.ya6{bottom:172.541867pt;}
.yd6{bottom:173.721733pt;}
.y22{bottom:174.011067pt;}
.y149{bottom:180.822800pt;}
.y16c{bottom:184.934667pt;}
.y5a{bottom:186.534800pt;}
.y107{bottom:186.733067pt;}
.y9f{bottom:186.749600pt;}
.yd5{bottom:189.721733pt;}
.ya5{bottom:193.766267pt;}
.y16b{bottom:200.934667pt;}
.y59{bottom:202.534800pt;}
.y9e{bottom:202.749600pt;}
.y106{bottom:204.136000pt;}
.yd4{bottom:205.721733pt;}
.ya4{bottom:208.166267pt;}
.y136{bottom:215.549600pt;}
.y16a{bottom:216.934667pt;}
.y58{bottom:218.534800pt;}
.y9d{bottom:218.749600pt;}
.y13f{bottom:220.949067pt;}
.yd3{bottom:221.721733pt;}
.y105{bottom:226.116267pt;}
.y135{bottom:231.549600pt;}
.y169{bottom:232.934667pt;}
.y57{bottom:234.534800pt;}
.y9c{bottom:234.749600pt;}
.y13e{bottom:238.351867pt;}
.y104{bottom:240.516267pt;}
.y72{bottom:242.534800pt;}
.y134{bottom:247.549600pt;}
.y168{bottom:248.934667pt;}
.y56{bottom:250.534800pt;}
.y9b{bottom:250.749600pt;}
.yd2{bottom:253.721733pt;}
.y103{bottom:254.916267pt;}
.y13d{bottom:255.754800pt;}
.y71{bottom:258.534800pt;}
.y133{bottom:263.549600pt;}
.y167{bottom:264.934667pt;}
.y55{bottom:266.534800pt;}
.y9a{bottom:266.749600pt;}
.y102{bottom:269.316267pt;}
.y21{bottom:271.022800pt;}
.y13c{bottom:273.157733pt;}
.y70{bottom:274.534800pt;}
.y132{bottom:279.549600pt;}
.y166{bottom:280.934667pt;}
.y54{bottom:282.534800pt;}
.y99{bottom:282.749600pt;}
.y20{bottom:285.422800pt;}
.yd1{bottom:285.721733pt;}
.y6f{bottom:290.534800pt;}
.y13b{bottom:290.560667pt;}
.y131{bottom:295.549600pt;}
.y165{bottom:296.934667pt;}
.y53{bottom:298.534800pt;}
.y98{bottom:298.749600pt;}
.y1f{bottom:299.822800pt;}
.yd0{bottom:301.721733pt;}
.y6e{bottom:306.534800pt;}
.y13a{bottom:307.963467pt;}
.y130{bottom:311.549600pt;}
.y164{bottom:312.934667pt;}
.y1e{bottom:314.222800pt;}
.y52{bottom:314.534800pt;}
.y97{bottom:314.749600pt;}
.ycf{bottom:317.721733pt;}
.y101{bottom:320.464000pt;}
.y6d{bottom:322.534800pt;}
.y139{bottom:325.366400pt;}
.y12f{bottom:327.549600pt;}
.y1d{bottom:328.622800pt;}
.y163{bottom:328.934667pt;}
.y51{bottom:330.534800pt;}
.y96{bottom:330.749600pt;}
.yce{bottom:333.721733pt;}
.y6c{bottom:338.534800pt;}
.y100{bottom:338.622800pt;}
.y1c{bottom:343.022800pt;}
.y12e{bottom:343.549600pt;}
.y162{bottom:344.934667pt;}
.y50{bottom:346.534800pt;}
.y95{bottom:346.749600pt;}
.y138{bottom:347.346800pt;}
.ycd{bottom:349.721733pt;}
.y6b{bottom:354.534800pt;}
.yff{bottom:356.781600pt;}
.y1b{bottom:357.422800pt;}
.y12d{bottom:359.549600pt;}
.y161{bottom:360.934667pt;}
.y137{bottom:361.746800pt;}
.y4f{bottom:362.534800pt;}
.ycc{bottom:365.721733pt;}
.y6a{bottom:370.534800pt;}
.y1a{bottom:371.822800pt;}
.yfe{bottom:374.940400pt;}
.y12c{bottom:375.549600pt;}
.y160{bottom:376.934667pt;}
.y4e{bottom:378.534800pt;}
.y94{bottom:378.749600pt;}
.y19{bottom:386.222800pt;}
.y69{bottom:386.534800pt;}
.y12b{bottom:391.549600pt;}
.y15f{bottom:392.934667pt;}
.yfd{bottom:393.099200pt;}
.y4d{bottom:394.534800pt;}
.ycb{bottom:397.721733pt;}
.y18{bottom:400.622800pt;}
.y68{bottom:402.534800pt;}
.y148{bottom:404.886000pt;}
.y12a{bottom:407.549600pt;}
.y15e{bottom:408.934667pt;}
.y4c{bottom:410.534800pt;}
.y93{bottom:410.749600pt;}
.yfc{bottom:411.258000pt;}
.y17{bottom:415.022800pt;}
.y67{bottom:418.534800pt;}
.y147{bottom:422.288800pt;}
.y129{bottom:423.549600pt;}
.y15d{bottom:424.934667pt;}
.y4b{bottom:426.534800pt;}
.y92{bottom:426.749600pt;}
.yfb{bottom:429.416800pt;}
.y66{bottom:434.534800pt;}
.y128{bottom:439.549600pt;}
.y146{bottom:439.691733pt;}
.y15c{bottom:440.934667pt;}
.yca{bottom:442.521733pt;}
.y4a{bottom:442.534800pt;}
.y91{bottom:442.749600pt;}
.y65{bottom:450.534800pt;}
.yfa{bottom:451.775067pt;}
.y127{bottom:455.549600pt;}
.y15b{bottom:456.934667pt;}
.y145{bottom:457.094667pt;}
.y16{bottom:458.222800pt;}
.yc9{bottom:458.521733pt;}
.y49{bottom:458.534800pt;}
.y90{bottom:458.749600pt;}
.yf9{bottom:466.175067pt;}
.y64{bottom:466.534800pt;}
.y126{bottom:471.549600pt;}
.y15{bottom:472.622800pt;}
.y15a{bottom:472.934667pt;}
.y144{bottom:474.497600pt;}
.yc8{bottom:474.521733pt;}
.y48{bottom:474.534800pt;}
.y8f{bottom:474.749600pt;}
.yf8{bottom:480.575067pt;}
.y63{bottom:482.534800pt;}
.y14{bottom:487.022800pt;}
.y125{bottom:487.549600pt;}
.y159{bottom:488.934667pt;}
.yc7{bottom:490.521733pt;}
.y47{bottom:490.534800pt;}
.y8e{bottom:490.749600pt;}
.y143{bottom:491.900533pt;}
.yf7{bottom:494.975067pt;}
.y13{bottom:501.422800pt;}
.y124{bottom:503.549600pt;}
.y158{bottom:504.934667pt;}
.yc6{bottom:506.521733pt;}
.y46{bottom:506.534800pt;}
.y8d{bottom:506.749600pt;}
.y142{bottom:509.303333pt;}
.y62{bottom:514.534800pt;}
.y12{bottom:515.822800pt;}
.y123{bottom:519.549600pt;}
.y157{bottom:520.934667pt;}
.yc5{bottom:522.521733pt;}
.y45{bottom:522.534800pt;}
.y8c{bottom:522.749600pt;}
.y11{bottom:530.222800pt;}
.y141{bottom:531.283733pt;}
.y122{bottom:535.549600pt;}
.y156{bottom:536.934667pt;}
.yc4{bottom:538.521733pt;}
.yf6{bottom:538.534667pt;}
.y44{bottom:538.534800pt;}
.y8b{bottom:538.749600pt;}
.y10{bottom:544.622800pt;}
.y61{bottom:544.934667pt;}
.y140{bottom:545.683733pt;}
.y121{bottom:551.549600pt;}
.y155{bottom:552.934667pt;}
.yc3{bottom:554.521733pt;}
.yf5{bottom:554.534667pt;}
.y43{bottom:554.534800pt;}
.yf{bottom:559.022800pt;}
.y120{bottom:567.549600pt;}
.y154{bottom:568.934667pt;}
.yc2{bottom:570.521733pt;}
.yf4{bottom:570.534667pt;}
.y42{bottom:570.534800pt;}
.y8a{bottom:570.749600pt;}
.ye{bottom:573.422800pt;}
.y11f{bottom:583.549600pt;}
.y153{bottom:584.934667pt;}
.yc1{bottom:586.521733pt;}
.yf3{bottom:586.534667pt;}
.y41{bottom:586.534800pt;}
.y89{bottom:586.749600pt;}
.yd{bottom:587.822800pt;}
.y11e{bottom:599.549600pt;}
.y152{bottom:600.934667pt;}
.yc{bottom:602.222800pt;}
.yc0{bottom:602.521733pt;}
.yf2{bottom:602.534667pt;}
.y40{bottom:602.534800pt;}
.y88{bottom:602.749600pt;}
.y11d{bottom:615.549600pt;}
.yb{bottom:616.622800pt;}
.y151{bottom:616.934667pt;}
.ybf{bottom:618.521733pt;}
.yf1{bottom:618.534667pt;}
.y3f{bottom:618.534800pt;}
.y87{bottom:618.749600pt;}
.y11c{bottom:631.549600pt;}
.y150{bottom:632.934667pt;}
.ybe{bottom:634.521733pt;}
.yf0{bottom:634.534667pt;}
.y3e{bottom:634.534800pt;}
.y86{bottom:634.749600pt;}
.ybd{bottom:650.521733pt;}
.yef{bottom:650.534667pt;}
.y3d{bottom:650.534800pt;}
.y85{bottom:650.749600pt;}
.y11b{bottom:665.149600pt;}
.ya{bottom:666.222800pt;}
.ybc{bottom:666.521733pt;}
.yee{bottom:666.534667pt;}
.y3c{bottom:666.534800pt;}
.y84{bottom:666.749600pt;}
.y9{bottom:680.622800pt;}
.ybb{bottom:682.521733pt;}
.yed{bottom:682.534667pt;}
.y3b{bottom:682.534800pt;}
.y83{bottom:682.749600pt;}
.y8{bottom:696.622800pt;}
.yba{bottom:698.521733pt;}
.yec{bottom:698.534667pt;}
.y3a{bottom:698.534800pt;}
.y82{bottom:698.749600pt;}
.y7{bottom:712.622800pt;}
.y11a{bottom:713.149600pt;}
.yb9{bottom:714.521733pt;}
.yeb{bottom:714.534667pt;}
.y39{bottom:714.534800pt;}
.y81{bottom:714.749600pt;}
.y119{bottom:729.149600pt;}
.yb8{bottom:730.521733pt;}
.yea{bottom:730.534667pt;}
.y38{bottom:730.534800pt;}
.y80{bottom:730.749600pt;}
.y118{bottom:745.149600pt;}
.yb7{bottom:746.521733pt;}
.ye9{bottom:746.534667pt;}
.y37{bottom:746.534800pt;}
.y7f{bottom:746.749600pt;}
.y117{bottom:761.149600pt;}
.yb6{bottom:762.521733pt;}
.ye8{bottom:762.534667pt;}
.y36{bottom:762.534800pt;}
.y7e{bottom:762.749600pt;}
.y116{bottom:777.149600pt;}
.yb5{bottom:778.521733pt;}
.ye7{bottom:778.534667pt;}
.y35{bottom:778.534800pt;}
.y7d{bottom:778.749600pt;}
.y6{bottom:781.422800pt;}
.y115{bottom:793.149600pt;}
.yb4{bottom:794.521733pt;}
.ye6{bottom:794.534667pt;}
.y34{bottom:794.534800pt;}
.y7c{bottom:794.749600pt;}
.y114{bottom:809.149600pt;}
.yb3{bottom:810.521733pt;}
.ye5{bottom:810.534667pt;}
.y33{bottom:810.534800pt;}
.y7b{bottom:810.749600pt;}
.y5{bottom:813.422800pt;}
.y113{bottom:825.149600pt;}
.yb2{bottom:826.521733pt;}
.ye4{bottom:826.534667pt;}
.y32{bottom:826.534800pt;}
.y7a{bottom:826.749600pt;}
.y112{bottom:841.149600pt;}
.yb1{bottom:842.521733pt;}
.ye3{bottom:842.534667pt;}
.y31{bottom:842.534800pt;}
.y79{bottom:842.749600pt;}
.y111{bottom:857.149600pt;}
.yb0{bottom:858.521733pt;}
.ye2{bottom:858.534667pt;}
.y30{bottom:858.534800pt;}
.y78{bottom:858.749600pt;}
.y110{bottom:873.149600pt;}
.yaf{bottom:874.521733pt;}
.ye1{bottom:874.534667pt;}
.y2f{bottom:874.534800pt;}
.y77{bottom:874.749600pt;}
.y10f{bottom:889.149600pt;}
.yae{bottom:890.521733pt;}
.ye0{bottom:890.534667pt;}
.y2e{bottom:890.534800pt;}
.y76{bottom:890.749600pt;}
.y10e{bottom:905.149600pt;}
.yad{bottom:906.521733pt;}
.ydf{bottom:906.534667pt;}
.y2d{bottom:906.534800pt;}
.y75{bottom:906.749600pt;}
.y10d{bottom:921.149600pt;}
.yac{bottom:922.521733pt;}
.yde{bottom:922.534667pt;}
.y2c{bottom:922.534800pt;}
.y74{bottom:922.749600pt;}
.yab{bottom:938.521733pt;}
.ydd{bottom:938.534667pt;}
.y2b{bottom:938.534800pt;}
.y4{bottom:953.115867pt;}
.yaa{bottom:954.521733pt;}
.ydc{bottom:954.534667pt;}
.y2a{bottom:954.534800pt;}
.y73{bottom:954.749600pt;}
.y3{bottom:967.515867pt;}
.y2{bottom:981.915867pt;}
.y60{bottom:990.717733pt;}
.y29{bottom:991.237600pt;}
.h8{height:29.645833pt;}
.h6{height:33.328125pt;}
.h2{height:33.351562pt;}
.h7{height:35.583333pt;}
.hb{height:36.510417pt;}
.he{height:37.031250pt;}
.ha{height:37.057292pt;}
.h3{height:40.031250pt;}
.hc{height:40.077650pt;}
.hd{height:40.078183pt;}
.h9{height:44.479167pt;}
.h5{height:47.291667pt;}
.h4{height:76.266667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:74.330667pt;}
.x1{left:75.600000pt;}
.xd{left:77.489733pt;}
.xe{left:83.149600pt;}
.x15{left:87.570800pt;}
.x14{left:96.072800pt;}
.xa{left:98.257200pt;}
.xf{left:107.149600pt;}
.x13{left:111.038533pt;}
.x9{left:113.400000pt;}
.x8{left:136.066667pt;}
.x2{left:144.794000pt;}
.x3{left:147.273867pt;}
.x12{left:154.833867pt;}
.xb{left:410.083733pt;}
.x10{left:411.973467pt;}
.xc{left:432.750400pt;}
.x7{left:518.475467pt;}
.x4{left:533.123333pt;}
.x6{left:554.842000pt;}
.x5{left:568.207867pt;}
}

