
    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_437f00e5a35426b6554ec2e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.209300;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_1a3790c368707d0c3d7e49a2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.990785;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_c88cd4839403d87e2cc07de5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966000;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_1f23afba41e4c866fec7bf09.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_1564fa7c44e50d8c9f77ecc0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239258;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_76dbf77fd83ca5c76a70869c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.512000;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_bec78d0e53dddea660d69b5e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_347ba79ecb8f465ce694cc5e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-16.207200px;}
.v1{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.v4{vertical-align:16.200000px;}
.ls16{letter-spacing:-2.400000px;}
.ls18{letter-spacing:-2.352000px;}
.ls8{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.810000px;}
.ls1a{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.480000px;}
.lsa{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.285000px;}
.ls9{letter-spacing:-0.270000px;}
.ls5{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.228000px;}
.ls15{letter-spacing:-0.189000px;}
.ls17{letter-spacing:-0.167940px;}
.ls1e{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.060000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.270000px;}
.ls14{letter-spacing:0.378000px;}
.ls1c{letter-spacing:0.475200px;}
.ls1d{letter-spacing:0.480000px;}
.ls1b{letter-spacing:0.534600px;}
.lse{letter-spacing:0.540000px;}
.ls20{letter-spacing:0.960000px;}
.ls21{letter-spacing:1.200000px;}
.ls2{letter-spacing:1.350000px;}
.ls3{letter-spacing:1.890000px;}
.ls19{letter-spacing:4.800000px;}
.ls0{letter-spacing:6.480000px;}
.ls7{letter-spacing:6.600000px;}
.ls13{letter-spacing:7.020000px;}
.ls11{letter-spacing:227.526000px;}
.ls12{letter-spacing:302.052000px;}
.ls10{letter-spacing:492.024000px;}
.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;}
}
.ws3c{word-spacing:-26.400000px;}
.ws39{word-spacing:-14.040000px;}
.ws6c{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.230000px;}
.ws3b{word-spacing:-12.000000px;}
.ws3a{word-spacing:-11.760000px;}
.ws46{word-spacing:-11.280000px;}
.ws6d{word-spacing:-9.450000px;}
.ws44{word-spacing:-8.397000px;}
.ws91{word-spacing:-5.040000px;}
.ws17{word-spacing:-3.510000px;}
.ws5f{word-spacing:-3.456000px;}
.ws53{word-spacing:-3.240000px;}
.ws90{word-spacing:-3.120000px;}
.ws36{word-spacing:-2.916000px;}
.ws8e{word-spacing:-2.832000px;}
.ws8f{word-spacing:-2.784000px;}
.ws4f{word-spacing:-2.754000px;}
.ws88{word-spacing:-2.736000px;}
.ws6f{word-spacing:-2.700000px;}
.ws6a{word-spacing:-2.688000px;}
.ws85{word-spacing:-2.592000px;}
.ws95{word-spacing:-2.544000px;}
.ws8b{word-spacing:-2.496000px;}
.ws5{word-spacing:-2.337000px;}
.ws73{word-spacing:-2.268000px;}
.ws18{word-spacing:-2.214000px;}
.ws47{word-spacing:-2.052000px;}
.ws3{word-spacing:-1.881000px;}
.ws75{word-spacing:-1.782000px;}
.wsf{word-spacing:-1.404000px;}
.wsa{word-spacing:-1.197000px;}
.ws22{word-spacing:-1.134000px;}
.ws58{word-spacing:-0.702000px;}
.ws11{word-spacing:-0.594000px;}
.ws6{word-spacing:-0.570000px;}
.ws32{word-spacing:-0.378000px;}
.ws20{word-spacing:-0.324000px;}
.ws70{word-spacing:-0.270000px;}
.ws29{word-spacing:-0.216000px;}
.ws4c{word-spacing:-0.108000px;}
.ws86{word-spacing:-0.096000px;}
.ws1{word-spacing:0.000000px;}
.ws69{word-spacing:0.048000px;}
.ws5c{word-spacing:0.054000px;}
.ws7{word-spacing:0.171000px;}
.ws9{word-spacing:0.228000px;}
.ws8{word-spacing:0.285000px;}
.ws60{word-spacing:0.486000px;}
.ws1d{word-spacing:0.648000px;}
.ws76{word-spacing:0.702000px;}
.ws8c{word-spacing:0.720000px;}
.ws30{word-spacing:0.972000px;}
.ws7c{word-spacing:1.188000px;}
.ws21{word-spacing:1.782000px;}
.ws80{word-spacing:1.836000px;}
.ws8a{word-spacing:1.872000px;}
.ws54{word-spacing:1.890000px;}
.ws64{word-spacing:1.944000px;}
.ws52{word-spacing:1.998000px;}
.ws1a{word-spacing:2.052000px;}
.ws98{word-spacing:2.064000px;}
.ws49{word-spacing:2.214000px;}
.ws59{word-spacing:2.484000px;}
.ws2c{word-spacing:3.024000px;}
.ws87{word-spacing:3.216000px;}
.ws50{word-spacing:3.348000px;}
.ws92{word-spacing:3.552000px;}
.ws19{word-spacing:3.564000px;}
.ws55{word-spacing:3.672000px;}
.ws93{word-spacing:3.696000px;}
.ws15{word-spacing:4.050000px;}
.ws77{word-spacing:4.266000px;}
.ws61{word-spacing:4.590000px;}
.ws4{word-spacing:4.617000px;}
.ws82{word-spacing:4.698000px;}
.ws27{word-spacing:4.752000px;}
.ws7b{word-spacing:4.806000px;}
.ws4e{word-spacing:5.076000px;}
.ws7e{word-spacing:5.130000px;}
.ws8d{word-spacing:5.280000px;}
.ws5b{word-spacing:5.670000px;}
.ws83{word-spacing:6.426000px;}
.ws2d{word-spacing:6.534000px;}
.ws4d{word-spacing:7.020000px;}
.ws97{word-spacing:7.248000px;}
.ws2e{word-spacing:7.344000px;}
.ws2b{word-spacing:7.452000px;}
.ws1e{word-spacing:7.614000px;}
.ws2{word-spacing:7.809000px;}
.ws5a{word-spacing:7.884000px;}
.ws62{word-spacing:8.208000px;}
.ws96{word-spacing:8.448000px;}
.ws84{word-spacing:8.586000px;}
.ws5e{word-spacing:8.640000px;}
.ws1c{word-spacing:8.802000px;}
.ws57{word-spacing:8.964000px;}
.ws37{word-spacing:9.072000px;}
.ws63{word-spacing:9.288000px;}
.ws24{word-spacing:9.342000px;}
.wsb{word-spacing:9.558000px;}
.ws1b{word-spacing:9.612000px;}
.ws67{word-spacing:9.648000px;}
.ws68{word-spacing:9.984000px;}
.ws48{word-spacing:10.152000px;}
.ws10{word-spacing:10.206000px;}
.wse{word-spacing:10.314000px;}
.ws74{word-spacing:10.422000px;}
.ws33{word-spacing:10.476000px;}
.ws34{word-spacing:11.448000px;}
.ws56{word-spacing:11.718000px;}
.ws38{word-spacing:11.808000px;}
.ws78{word-spacing:11.934000px;}
.ws7f{word-spacing:12.366000px;}
.ws7a{word-spacing:12.744000px;}
.ws23{word-spacing:12.798000px;}
.ws6e{word-spacing:12.960000px;}
.ws5d{word-spacing:13.122000px;}
.ws26{word-spacing:13.176000px;}
.ws6b{word-spacing:13.359600px;}
.ws13{word-spacing:13.392000px;}
.ws31{word-spacing:13.446000px;}
.ws35{word-spacing:13.500000px;}
.ws79{word-spacing:13.716000px;}
.ws94{word-spacing:13.728000px;}
.ws81{word-spacing:14.148000px;}
.ws89{word-spacing:14.592000px;}
.ws7d{word-spacing:14.904000px;}
.ws66{word-spacing:14.976000px;}
.ws16{word-spacing:15.930000px;}
.ws2a{word-spacing:15.984000px;}
.ws1f{word-spacing:17.334000px;}
.ws4b{word-spacing:18.036000px;}
.ws65{word-spacing:18.630000px;}
.ws2f{word-spacing:20.466000px;}
.ws72{word-spacing:20.898000px;}
.ws12{word-spacing:21.654000px;}
.ws51{word-spacing:22.842000px;}
.ws25{word-spacing:23.112000px;}
.ws71{word-spacing:24.786000px;}
.ws28{word-spacing:26.028000px;}
.ws4a{word-spacing:26.082000px;}
.wsd{word-spacing:28.080000px;}
.ws14{word-spacing:29.268000px;}
.wsc{word-spacing:42.120000px;}
.ws3e{word-spacing:52.952820px;}
.ws3d{word-spacing:58.952820px;}
.ws43{word-spacing:97.200000px;}
.ws45{word-spacing:99.360000px;}
.ws41{word-spacing:104.544000px;}
.ws3f{word-spacing:132.720000px;}
.ws42{word-spacing:134.880000px;}
.ws40{word-spacing:157.296000px;}
._10{margin-left:-708.024000px;}
._a{margin-left:-26.028000px;}
._1a{margin-left:-21.497400px;}
._d{margin-left:-18.036000px;}
._8{margin-left:-12.798000px;}
._b{margin-left:-11.448000px;}
._6{margin-left:-10.314000px;}
._c{margin-left:-9.072000px;}
._3{margin-left:-6.750000px;}
._9{margin-left:-4.752000px;}
._e{margin-left:-3.672000px;}
._5{margin-left:-2.280000px;}
._18{margin-left:-1.014000px;}
._7{width:1.134000px;}
._1{width:2.640000px;}
._0{width:5.040000px;}
._4{width:6.755400px;}
._2{width:11.880000px;}
._f{width:23.750400px;}
._19{width:132.720000px;}
._13{width:144.480000px;}
._17{width:150.240000px;}
._14{width:156.720000px;}
._11{width:162.240000px;}
._15{width:165.600000px;}
._12{width:198.240000px;}
._16{width:210.480000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:12.000000px;}
.fs9{font-size:33.588000px;}
.fs6{font-size:36.000000px;}
.fs7{font-size:37.800000px;}
.fs8{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:80.772000px;}
.y53{bottom:120.103800px;}
.y7c{bottom:120.105150px;}
.y8c{bottom:120.271500px;}
.yd8{bottom:120.272700px;}
.y56{bottom:120.348000px;}
.y55{bottom:136.098000px;}
.y52{bottom:138.103350px;}
.y7b{bottom:138.104700px;}
.y51{bottom:156.102900px;}
.y7a{bottom:156.104250px;}
.y8d{bottom:166.119000px;}
.y50{bottom:174.102450px;}
.y79{bottom:174.103800px;}
.y32{bottom:174.107850px;}
.y4f{bottom:192.102000px;}
.y78{bottom:192.103350px;}
.y31{bottom:192.107400px;}
.ya1{bottom:197.704500px;}
.y4d{bottom:210.101550px;}
.y77{bottom:210.102900px;}
.y2f{bottom:210.106950px;}
.yd1{bottom:210.930000px;}
.ya2{bottom:211.530000px;}
.ybb{bottom:212.730000px;}
.yd2{bottom:214.863000px;}
.ya3{bottom:215.463000px;}
.ybc{bottom:216.663000px;}
.yd3{bottom:219.016500px;}
.ya4{bottom:219.616500px;}
.ybd{bottom:220.816500px;}
.yb8{bottom:223.549500px;}
.y4c{bottom:228.101100px;}
.y76{bottom:228.102450px;}
.y2e{bottom:228.106500px;}
.yd4{bottom:232.242000px;}
.ybe{bottom:234.040500px;}
.yd5{bottom:236.175000px;}
.yb9{bottom:237.375000px;}
.yab{bottom:237.379500px;}
.ybf{bottom:237.975000px;}
.yba{bottom:241.308000px;}
.yac{bottom:241.312500px;}
.yad{bottom:245.466000px;}
.ya5{bottom:246.066000px;}
.y4b{bottom:246.100650px;}
.y75{bottom:246.102000px;}
.y2d{bottom:246.106050px;}
.yae{bottom:249.399000px;}
.ya6{bottom:249.999000px;}
.yc0{bottom:252.999000px;}
.yc1{bottom:256.932000px;}
.yc2{bottom:261.085500px;}
.ya7{bottom:263.824500px;}
.y4a{bottom:264.100200px;}
.y74{bottom:264.101550px;}
.y2c{bottom:264.105600px;}
.ya8{bottom:267.757500px;}
.yaf{bottom:269.236500px;}
.yb0{bottom:273.169500px;}
.yc3{bottom:274.311000px;}
.yc4{bottom:278.244000px;}
.yb1{bottom:281.476500px;}
.y49{bottom:282.099750px;}
.y73{bottom:282.101100px;}
.y2b{bottom:282.106500px;}
.yc5{bottom:293.268000px;}
.y47{bottom:296.049000px;}
.yc6{bottom:297.202500px;}
.y48{bottom:300.099300px;}
.y72{bottom:300.100650px;}
.y29{bottom:300.106050px;}
.y46{bottom:300.114150px;}
.yb2{bottom:301.314000px;}
.yc7{bottom:301.354500px;}
.yb3{bottom:305.247000px;}
.yc8{bottom:307.968000px;}
.yc9{bottom:311.901000px;}
.y71{bottom:318.100200px;}
.y28{bottom:318.105600px;}
.y44{bottom:318.113700px;}
.yb4{bottom:325.684500px;}
.yca{bottom:328.725000px;}
.yb5{bottom:329.617500px;}
.ycb{bottom:332.658000px;}
.y70{bottom:336.099750px;}
.y27{bottom:336.105150px;}
.y43{bottom:336.113250px;}
.ycc{bottom:336.811500px;}
.ycd{bottom:350.037000px;}
.yce{bottom:353.970000px;}
.y6f{bottom:354.099300px;}
.y26{bottom:354.104700px;}
.y42{bottom:354.112800px;}
.ycf{bottom:368.995500px;}
.y6e{bottom:372.098850px;}
.y25{bottom:372.104250px;}
.y40{bottom:372.112350px;}
.yd0{bottom:372.928500px;}
.y6d{bottom:390.098400px;}
.y24{bottom:390.103800px;}
.y3f{bottom:390.111900px;}
.y8e{bottom:401.424000px;}
.y6c{bottom:408.097950px;}
.y22{bottom:408.103350px;}
.y3e{bottom:408.111450px;}
.y6a{bottom:422.047500px;}
.y6b{bottom:426.097500px;}
.y21{bottom:426.102900px;}
.y3c{bottom:426.111000px;}
.y20{bottom:444.102450px;}
.y3b{bottom:444.110550px;}
.y8f{bottom:456.271500px;}
.yb7{bottom:456.272100px;}
.yd6{bottom:456.272700px;}
.y1f{bottom:462.102000px;}
.y3a{bottom:462.110100px;}
.ya9{bottom:465.822000px;}
.yaa{bottom:467.167500px;}
.y1e{bottom:480.101550px;}
.y38{bottom:480.109650px;}
.y1c{bottom:498.101100px;}
.y37{bottom:498.109200px;}
.y1b{bottom:516.100650px;}
.y36{bottom:516.108750px;}
.y1a{bottom:534.100200px;}
.y35{bottom:534.108300px;}
.y19{bottom:552.099750px;}
.y34{bottom:552.107850px;}
.y90{bottom:556.315500px;}
.y91{bottom:567.021000px;}
.y69{bottom:570.099300px;}
.y92{bottom:572.961000px;}
.y93{bottom:575.869500px;}
.y68{bottom:588.098850px;}
.yb6{bottom:604.684500px;}
.y67{bottom:606.098400px;}
.yf2{bottom:606.099750px;}
.y10d{bottom:607.098000px;}
.y10c{bottom:622.848000px;}
.y18{bottom:623.348700px;}
.y66{bottom:624.097950px;}
.yf1{bottom:624.099300px;}
.y65{bottom:638.047500px;}
.y10b{bottom:638.598000px;}
.y64{bottom:642.097500px;}
.yf0{bottom:642.098850px;}
.y17{bottom:650.348700px;}
.y10a{bottom:654.348000px;}
.y62{bottom:656.047500px;}
.y63{bottom:660.097050px;}
.y61{bottom:660.098400px;}
.y94{bottom:664.771500px;}
.yd7{bottom:664.772700px;}
.y109{bottom:670.098000px;}
.y15{bottom:676.848300px;}
.y16{bottom:676.849500px;}
.y60{bottom:678.097950px;}
.y108{bottom:685.848000px;}
.y14{bottom:694.848900px;}
.y5f{bottom:696.097500px;}
.yef{bottom:696.105150px;}
.y107{bottom:701.598000px;}
.y5d{bottom:710.047500px;}
.y12{bottom:712.845900px;}
.y13{bottom:712.849500px;}
.y5e{bottom:714.097050px;}
.y5c{bottom:714.098400px;}
.yee{bottom:714.104700px;}
.y106{bottom:717.348000px;}
.y95{bottom:721.771500px;}
.y5b{bottom:728.047500px;}
.y11{bottom:730.846500px;}
.y5a{bottom:732.097950px;}
.yed{bottom:732.104250px;}
.y105{bottom:733.098000px;}
.y10{bottom:748.847100px;}
.y104{bottom:748.848000px;}
.y59{bottom:750.097500px;}
.yec{bottom:750.103800px;}
.y103{bottom:764.598000px;}
.yf{bottom:766.847700px;}
.yeb{bottom:768.103350px;}
.y102{bottom:780.348000px;}
.ye{bottom:784.848300px;}
.yea{bottom:786.102900px;}
.y8b{bottom:790.098000px;}
.y101{bottom:796.098000px;}
.yd{bottom:802.848900px;}
.ye9{bottom:804.102450px;}
.y8a{bottom:805.848000px;}
.y96{bottom:807.271500px;}
.y100{bottom:811.848000px;}
.y97{bottom:814.542000px;}
.y98{bottom:818.695500px;}
.yc{bottom:820.849500px;}
.ye8{bottom:822.102000px;}
.y99{bottom:825.568500px;}
.yff{bottom:827.598000px;}
.y9a{bottom:830.317500px;}
.y89{bottom:837.348000px;}
.ye7{bottom:840.101550px;}
.yfe{bottom:843.348000px;}
.yb{bottom:848.098500px;}
.y88{bottom:853.098000px;}
.ye6{bottom:858.101100px;}
.yfd{bottom:859.098000px;}
.y87{bottom:868.848000px;}
.yfc{bottom:874.848000px;}
.ye5{bottom:876.100650px;}
.y9b{bottom:880.999500px;}
.y86{bottom:884.598000px;}
.yfb{bottom:890.598000px;}
.ya{bottom:892.599450px;}
.ye4{bottom:894.100200px;}
.y85{bottom:900.348000px;}
.yfa{bottom:906.348000px;}
.y9{bottom:910.599000px;}
.ye3{bottom:912.099750px;}
.y9c{bottom:915.271500px;}
.y84{bottom:916.098000px;}
.y9d{bottom:924.546000px;}
.ye2{bottom:930.099300px;}
.yf9{bottom:931.347000px;}
.y83{bottom:931.848000px;}
.ye1{bottom:948.098850px;}
.y8{bottom:955.599900px;}
.y9e{bottom:963.271500px;}
.y82{bottom:963.348000px;}
.ye0{bottom:966.098400px;}
.y9f{bottom:972.546000px;}
.yf8{bottom:976.098000px;}
.ydf{bottom:984.097950px;}
.y7{bottom:985.599600px;}
.yf7{bottom:991.848000px;}
.y81{bottom:994.848000px;}
.yde{bottom:1002.099300px;}
.yf6{bottom:1007.598000px;}
.ya0{bottom:1011.271500px;}
.y6{bottom:1015.599300px;}
.ydd{bottom:1020.098850px;}
.yf5{bottom:1023.348000px;}
.y80{bottom:1027.098000px;}
.ydc{bottom:1038.098400px;}
.yf4{bottom:1039.098000px;}
.y7f{bottom:1042.848000px;}
.y5{bottom:1046.098500px;}
.y4{bottom:1054.098000px;}
.ydb{bottom:1056.097950px;}
.y7e{bottom:1058.598000px;}
.yf3{bottom:1064.097000px;}
.yda{bottom:1074.097500px;}
.y7d{bottom:1074.348000px;}
.yd9{bottom:1110.271500px;}
.y58{bottom:1110.272100px;}
.y2{bottom:1111.272000px;}
.y57{bottom:1191.271500px;}
.y1{bottom:1360.500000px;}
.y1d{bottom:1360.501350px;}
.y4e{bottom:1360.502700px;}
.y23{bottom:1360.504050px;}
.y54{bottom:1360.505400px;}
.y2a{bottom:1360.506750px;}
.y30{bottom:1360.508100px;}
.y33{bottom:1360.509450px;}
.y39{bottom:1360.510800px;}
.y3d{bottom:1360.512150px;}
.y41{bottom:1360.513500px;}
.y45{bottom:1360.514850px;}
.h3{height:11.112000px;}
.hd{height:26.892000px;}
.h16{height:31.102488px;}
.he{height:33.336000px;}
.h2{height:34.789662px;}
.hf{height:35.002800px;}
.h13{height:35.184000px;}
.h10{height:37.530000px;}
.h12{height:39.138369px;}
.h8{height:39.582000px;}
.hb{height:39.615000px;}
.h11{height:41.220703px;}
.h9{height:41.312723px;}
.ha{height:41.700000px;}
.h4{height:43.487077px;}
.h1{height:44.448000px;}
.h15{height:44.460938px;}
.h14{height:47.085938px;}
.h7{height:50.004000px;}
.hc{height:50.018555px;}
.h6{height:75.060000px;}
.h5{height:78.276738px;}
.h0{height:1174.500000px;}
.w0{width:892.500000px;}
.x1{left:-99.000000px;}
.x3{left:-96.000000px;}
.x5{left:-93.000000px;}
.x8{left:-90.000000px;}
.x9{left:-88.500000px;}
.xa{left:-85.500000px;}
.xb{left:-79.500600px;}
.xd{left:-72.002700px;}
.xf{left:-66.000000px;}
.x10{left:-61.500450px;}
.x11{left:-58.500000px;}
.x13{left:-55.500000px;}
.x15{left:-51.000000px;}
.x17{left:-48.000000px;}
.x19{left:-43.500000px;}
.x1b{left:-40.500000px;}
.x1d{left:-36.000000px;}
.x1f{left:-33.000000px;}
.x20{left:-28.500450px;}
.x22{left:-25.499400px;}
.x24{left:-22.499700px;}
.x26{left:-19.500000px;}
.x27{left:-15.000450px;}
.x28{left:-11.999400px;}
.x2a{left:-8.999700px;}
.x2c{left:-6.000000px;}
.x2e{left:-1.500450px;}
.x0{left:0.000000px;}
.x2f{left:1.499250px;}
.x31{left:4.500300px;}
.x33{left:7.501350px;}
.x35{left:12.000900px;}
.x36{left:15.000600px;}
.x38{left:18.000300px;}
.x3a{left:21.000000px;}
.x3b{left:25.499550px;}
.x3d{left:28.500600px;}
.x3f{left:31.500300px;}
.x40{left:34.500000px;}
.xb1{left:36.543150px;}
.x42{left:38.999550px;}
.x44{left:42.000600px;}
.x46{left:45.000300px;}
.x49{left:48.000000px;}
.x4b{left:52.499550px;}
.x4d{left:55.500600px;}
.x4e{left:58.500300px;}
.x50{left:61.501350px;}
.x52{left:66.002250px;}
.x54{left:69.001950px;}
.x55{left:72.001650px;}
.x57{left:75.002700px;}
.x59{left:79.502250px;}
.x5b{left:82.503300px;}
.x5d{left:85.504350px;}
.x5f{left:88.504050px;}
.x2{left:92.455200px;}
.x61{left:96.004650px;}
.x63{left:99.004350px;}
.x65{left:102.005400px;}
.xd9{left:103.517400px;}
.x41{left:105.955500px;}
.x3e{left:107.382450px;}
.x68{left:109.506000px;}
.xc8{left:111.276150px;}
.x6a{left:112.505700px;}
.x6c{left:115.505400px;}
.xee{left:118.978650px;}
.x6e{left:120.006300px;}
.x6f{left:123.007350px;}
.x71{left:126.007050px;}
.x113{left:127.374900px;}
.x73{left:129.006750px;}
.x75{left:133.506300px;}
.x77{left:136.506000px;}
.x79{left:139.505700px;}
.x7b{left:142.505400px;}
.x37{left:145.989750px;}
.x7c{left:147.006300px;}
.xc9{left:148.422000px;}
.x7e{left:150.006000px;}
.x3c{left:152.723550px;}
.xeb{left:153.746550px;}
.x80{left:156.005400px;}
.xcb{left:157.797600px;}
.x81{left:160.504950px;}
.xf1{left:161.521200px;}
.x12{left:164.455500px;}
.x43{left:165.732150px;}
.xf3{left:167.326200px;}
.x39{left:168.472650px;}
.x85{left:169.505400px;}
.x87{left:174.006300px;}
.xf5{left:175.034700px;}
.x89{left:177.007350px;}
.x8b{left:180.007050px;}
.x1c{left:181.237500px;}
.x8d{left:183.008100px;}
.xc{left:186.565500px;}
.xe5{left:188.965350px;}
.x90{left:190.507350px;}
.x92{left:193.507050px;}
.x94{left:196.500000px;}
.x96{left:199.500000px;}
.x97{left:202.501050px;}
.x98{left:205.502100px;}
.x9a{left:208.501800px;}
.x9c{left:213.002700px;}
.x9e{left:216.002400px;}
.x21{left:217.816500px;}
.x9f{left:219.002100px;}
.x23{left:221.118600px;}
.xbc{left:222.985950px;}
.xa2{left:226.501350px;}
.x2d{left:229.967850px;}
.xa5{left:232.500750px;}
.x30{left:236.083350px;}
.xa8{left:240.001350px;}
.xaa{left:243.001050px;}
.xab{left:246.000750px;}
.xac{left:249.000450px;}
.x1e{left:251.118000px;}
.x14{left:252.924000px;}
.xaf{left:256.499700px;}
.xb0{left:259.500000px;}
.x4{left:262.359600px;}
.xb2{left:265.500000px;}
.x6{left:268.298400px;}
.xb5{left:271.500000px;}
.x116{left:272.983200px;}
.xb6{left:274.500000px;}
.xb7{left:277.500000px;}
.x10e{left:278.898900px;}
.xb9{left:280.500000px;}
.xf9{left:281.772450px;}
.xba{left:284.999550px;}
.xbb{left:287.999250px;}
.xbd{left:290.998950px;}
.xbf{left:293.998650px;}
.xbe{left:295.035450px;}
.x32{left:297.296400px;}
.xc1{left:298.498200px;}
.xc2{left:301.499250px;}
.xc0{left:305.449350px;}
.xc4{left:307.500000px;}
.xc6{left:310.501050px;}
.xc3{left:312.205500px;}
.xc7{left:313.500750px;}
.xcf{left:315.187350px;}
.x25{left:316.609500px;}
.xd1{left:318.453000px;}
.xc5{left:321.862650px;}
.x29{left:324.204600px;}
.xca{left:325.500000px;}
.x103{left:326.560050px;}
.xcc{left:330.000900px;}
.xcd{left:333.001950px;}
.xce{left:336.001650px;}
.xd0{left:339.001350px;}
.xd2{left:343.500000px;}
.xd3{left:345.000000px;}
.xdb{left:346.485000px;}
.xd5{left:348.001050px;}
.xe7{left:349.202250px;}
.x10a{left:350.860650px;}
.xd6{left:352.500600px;}
.xd7{left:355.500300px;}
.xe9{left:356.910750px;}
.xd8{left:358.500000px;}
.xb8{left:360.085200px;}
.xda{left:361.500000px;}
.x110{left:362.848650px;}
.xdc{left:364.500000px;}
.x16{left:367.342500px;}
.xd4{left:368.970600px;}
.xde{left:370.500000px;}
.x34{left:374.489400px;}
.xe0{left:376.499400px;}
.x106{left:378.229200px;}
.xe1{left:379.500000px;}
.xe2{left:382.500000px;}
.x45{left:383.979900px;}
.xe3{left:385.499700px;}
.x10c{left:387.046050px;}
.xe4{left:388.499400px;}
.x115{left:390.511500px;}
.x47{left:391.685700px;}
.xe6{left:393.000300px;}
.xe8{left:396.001350px;}
.xe{left:397.030500px;}
.xea{left:398.999700px;}
.xec{left:401.999400px;}
.xed{left:406.500300px;}
.xef{left:409.500000px;}
.xdd{left:410.866500px;}
.xf0{left:412.499700px;}
.xfd{left:414.053550px;}
.xf2{left:415.499400px;}
.x2b{left:418.786950px;}
.xdf{left:420.242100px;}
.xf4{left:423.000000px;}
.xf6{left:425.999700px;}
.xf7{left:428.999400px;}
.xf8{left:433.498950px;}
.xfa{left:436.498650px;}
.xfb{left:439.498350px;}
.xfc{left:442.498050px;}
.xfe{left:446.997600px;}
.xff{left:449.997300px;}
.x100{left:452.997000px;}
.x101{left:455.996700px;}
.x102{left:460.497600px;}
.x104{left:463.498650px;}
.x105{left:466.500000px;}
.x48{left:470.455500px;}
.x107{left:472.499700px;}
.x108{left:475.499400px;}
.x109{left:478.499100px;}
.x174{left:482.455500px;}
.x82{left:483.960900px;}
.x10b{left:485.998350px;}
.x70{left:487.510050px;}
.x10d{left:488.998050px;}
.x72{left:492.976200px;}
.x56{left:495.195600px;}
.x10f{left:496.497300px;}
.x8e{left:498.937800px;}
.xad{left:500.408250px;}
.x111{left:502.496700px;}
.x112{left:505.496400px;}
.xae{left:508.288200px;}
.x8f{left:509.351700px;}
.xa1{left:513.277800px;}
.x11f{left:514.792500px;}
.x114{left:515.996700px;}
.x5c{left:518.412900px;}
.xa3{left:519.948150px;}
.x117{left:523.497300px;}
.x118{left:526.498350px;}
.x119{left:529.499400px;}
.x11a{left:532.499100px;}
.x62{left:536.659500px;}
.x64{left:539.923800px;}
.x5e{left:543.151650px;}
.x12b{left:546.292500px;}
.x12d{left:549.892500px;}
.x131{left:562.042500px;}
.x69{left:572.965050px;}
.x6b{left:576.230700px;}
.x132{left:577.792500px;}
.x136{left:581.392500px;}
.x4a{left:587.492400px;}
.x60{left:593.602500px;}
.x11b{left:598.500000px;}
.xa0{left:600.296100px;}
.x11c{left:601.500000px;}
.x11d{left:604.500000px;}
.x11e{left:607.500000px;}
.x4c{left:609.978000px;}
.x18{left:612.091500px;}
.x120{left:613.500000px;}
.x121{left:616.500000px;}
.x122{left:619.500000px;}
.x7d{left:620.572800px;}
.x123{left:622.500000px;}
.x124{left:625.500000px;}
.x125{left:627.000000px;}
.x126{left:630.000000px;}
.x127{left:633.000000px;}
.x128{left:636.000000px;}
.x58{left:638.861250px;}
.x14b{left:640.792500px;}
.x129{left:642.000000px;}
.x5a{left:644.192400px;}
.x91{left:646.895100px;}
.x12a{left:649.500000px;}
.x74{left:650.986950px;}
.x12c{left:652.500000px;}
.x93{left:657.310350px;}
.x76{left:658.829100px;}
.x7{left:660.139200px;}
.xb3{left:662.751000px;}
.x12e{left:664.500000px;}
.x12f{left:672.000000px;}
.x130{left:675.000000px;}
.x1a{left:682.038000px;}
.xa4{left:686.420700px;}
.x16f{left:688.042500px;}
.x4f{left:690.267900px;}
.xa6{left:694.129200px;}
.x95{left:695.682000px;}
.xa7{left:697.556850px;}
.x51{left:699.762450px;}
.x170{left:703.792500px;}
.xa9{left:705.197850px;}
.x53{left:707.469600px;}
.x133{left:711.000000px;}
.x134{left:718.500000px;}
.x171{left:719.542500px;}
.x135{left:721.500000px;}
.x137{left:723.000000px;}
.x138{left:726.000000px;}
.x8a{left:729.883650px;}
.x139{left:733.500000px;}
.x172{left:735.292500px;}
.x13a{left:736.500000px;}
.x8c{left:737.592150px;}
.x99{left:740.829750px;}
.x66{left:744.035700px;}
.x83{left:746.086350px;}
.x67{left:747.301350px;}
.x13b{left:748.500000px;}
.x173{left:751.042500px;}
.x84{left:753.793500px;}
.x13c{left:756.000000px;}
.x13d{left:759.000000px;}
.x13e{left:762.000000px;}
.x13f{left:765.000000px;}
.x78{left:769.388700px;}
.x140{left:771.000000px;}
.x141{left:774.000000px;}
.x7a{left:779.937600px;}
.xb4{left:781.529400px;}
.x86{left:783.250500px;}
.x142{left:784.500000px;}
.x143{left:792.000000px;}
.x144{left:795.000000px;}
.x9b{left:797.325900px;}
.x145{left:799.500000px;}
.x7f{left:801.641550px;}
.x9d{left:805.034400px;}
.x88{left:807.989250px;}
.x6d{left:809.197500px;}
.x146{left:813.000000px;}
.x147{left:816.000000px;}
.x148{left:823.500000px;}
.x149{left:826.500000px;}
.x14a{left:832.500000px;}
.x14c{left:835.500000px;}
.x14d{left:843.000000px;}
.x14e{left:846.000000px;}
.x14f{left:849.000000px;}
.x150{left:855.000000px;}
.x151{left:858.000000px;}
.x152{left:865.500000px;}
.x153{left:868.500000px;}
.x154{left:871.500000px;}
.x155{left:879.000000px;}
.x156{left:882.000000px;}
.x157{left:888.000000px;}
.x158{left:891.000000px;}
.x159{left:894.000000px;}
.x15a{left:901.500000px;}
.x15b{left:904.500000px;}
.x15c{left:912.000000px;}
.x15d{left:915.000000px;}
.x15e{left:916.500000px;}
.x15f{left:924.000000px;}
.x160{left:927.000000px;}
.x161{left:934.500000px;}
.x162{left:937.500000px;}
.x163{left:939.000000px;}
.x164{left:942.000000px;}
.x165{left:949.500000px;}
.x166{left:952.500000px;}
.x167{left:960.000000px;}
.x168{left:963.000000px;}
.x169{left:970.500000px;}
.x16a{left:973.500000px;}
.x16b{left:975.000000px;}
.x16c{left:982.500000px;}
.x16d{left:985.500000px;}
.x16e{left:993.000000px;}
@media print{
.v3{vertical-align:-14.406400pt;}
.v1{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.v4{vertical-align:14.400000pt;}
.ls16{letter-spacing:-2.133333pt;}
.ls18{letter-spacing:-2.090667pt;}
.ls8{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.720000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.426667pt;}
.lsa{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.253333pt;}
.ls9{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.202667pt;}
.ls15{letter-spacing:-0.168000pt;}
.ls17{letter-spacing:-0.149280pt;}
.ls1e{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.053333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.240000pt;}
.ls14{letter-spacing:0.336000pt;}
.ls1c{letter-spacing:0.422400pt;}
.ls1d{letter-spacing:0.426667pt;}
.ls1b{letter-spacing:0.475200pt;}
.lse{letter-spacing:0.480000pt;}
.ls20{letter-spacing:0.853333pt;}
.ls21{letter-spacing:1.066667pt;}
.ls2{letter-spacing:1.200000pt;}
.ls3{letter-spacing:1.680000pt;}
.ls19{letter-spacing:4.266667pt;}
.ls0{letter-spacing:5.760000pt;}
.ls7{letter-spacing:5.866667pt;}
.ls13{letter-spacing:6.240000pt;}
.ls11{letter-spacing:202.245333pt;}
.ls12{letter-spacing:268.490667pt;}
.ls10{letter-spacing:437.354667pt;}
.ws3c{word-spacing:-23.466667pt;}
.ws39{word-spacing:-12.480000pt;}
.ws6c{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.760000pt;}
.ws3b{word-spacing:-10.666667pt;}
.ws3a{word-spacing:-10.453333pt;}
.ws46{word-spacing:-10.026667pt;}
.ws6d{word-spacing:-8.400000pt;}
.ws44{word-spacing:-7.464000pt;}
.ws91{word-spacing:-4.480000pt;}
.ws17{word-spacing:-3.120000pt;}
.ws5f{word-spacing:-3.072000pt;}
.ws53{word-spacing:-2.880000pt;}
.ws90{word-spacing:-2.773333pt;}
.ws36{word-spacing:-2.592000pt;}
.ws8e{word-spacing:-2.517333pt;}
.ws8f{word-spacing:-2.474667pt;}
.ws4f{word-spacing:-2.448000pt;}
.ws88{word-spacing:-2.432000pt;}
.ws6f{word-spacing:-2.400000pt;}
.ws6a{word-spacing:-2.389333pt;}
.ws85{word-spacing:-2.304000pt;}
.ws95{word-spacing:-2.261333pt;}
.ws8b{word-spacing:-2.218667pt;}
.ws5{word-spacing:-2.077333pt;}
.ws73{word-spacing:-2.016000pt;}
.ws18{word-spacing:-1.968000pt;}
.ws47{word-spacing:-1.824000pt;}
.ws3{word-spacing:-1.672000pt;}
.ws75{word-spacing:-1.584000pt;}
.wsf{word-spacing:-1.248000pt;}
.wsa{word-spacing:-1.064000pt;}
.ws22{word-spacing:-1.008000pt;}
.ws58{word-spacing:-0.624000pt;}
.ws11{word-spacing:-0.528000pt;}
.ws6{word-spacing:-0.506667pt;}
.ws32{word-spacing:-0.336000pt;}
.ws20{word-spacing:-0.288000pt;}
.ws70{word-spacing:-0.240000pt;}
.ws29{word-spacing:-0.192000pt;}
.ws4c{word-spacing:-0.096000pt;}
.ws86{word-spacing:-0.085333pt;}
.ws1{word-spacing:0.000000pt;}
.ws69{word-spacing:0.042667pt;}
.ws5c{word-spacing:0.048000pt;}
.ws7{word-spacing:0.152000pt;}
.ws9{word-spacing:0.202667pt;}
.ws8{word-spacing:0.253333pt;}
.ws60{word-spacing:0.432000pt;}
.ws1d{word-spacing:0.576000pt;}
.ws76{word-spacing:0.624000pt;}
.ws8c{word-spacing:0.640000pt;}
.ws30{word-spacing:0.864000pt;}
.ws7c{word-spacing:1.056000pt;}
.ws21{word-spacing:1.584000pt;}
.ws80{word-spacing:1.632000pt;}
.ws8a{word-spacing:1.664000pt;}
.ws54{word-spacing:1.680000pt;}
.ws64{word-spacing:1.728000pt;}
.ws52{word-spacing:1.776000pt;}
.ws1a{word-spacing:1.824000pt;}
.ws98{word-spacing:1.834667pt;}
.ws49{word-spacing:1.968000pt;}
.ws59{word-spacing:2.208000pt;}
.ws2c{word-spacing:2.688000pt;}
.ws87{word-spacing:2.858667pt;}
.ws50{word-spacing:2.976000pt;}
.ws92{word-spacing:3.157333pt;}
.ws19{word-spacing:3.168000pt;}
.ws55{word-spacing:3.264000pt;}
.ws93{word-spacing:3.285333pt;}
.ws15{word-spacing:3.600000pt;}
.ws77{word-spacing:3.792000pt;}
.ws61{word-spacing:4.080000pt;}
.ws4{word-spacing:4.104000pt;}
.ws82{word-spacing:4.176000pt;}
.ws27{word-spacing:4.224000pt;}
.ws7b{word-spacing:4.272000pt;}
.ws4e{word-spacing:4.512000pt;}
.ws7e{word-spacing:4.560000pt;}
.ws8d{word-spacing:4.693333pt;}
.ws5b{word-spacing:5.040000pt;}
.ws83{word-spacing:5.712000pt;}
.ws2d{word-spacing:5.808000pt;}
.ws4d{word-spacing:6.240000pt;}
.ws97{word-spacing:6.442667pt;}
.ws2e{word-spacing:6.528000pt;}
.ws2b{word-spacing:6.624000pt;}
.ws1e{word-spacing:6.768000pt;}
.ws2{word-spacing:6.941333pt;}
.ws5a{word-spacing:7.008000pt;}
.ws62{word-spacing:7.296000pt;}
.ws96{word-spacing:7.509333pt;}
.ws84{word-spacing:7.632000pt;}
.ws5e{word-spacing:7.680000pt;}
.ws1c{word-spacing:7.824000pt;}
.ws57{word-spacing:7.968000pt;}
.ws37{word-spacing:8.064000pt;}
.ws63{word-spacing:8.256000pt;}
.ws24{word-spacing:8.304000pt;}
.wsb{word-spacing:8.496000pt;}
.ws1b{word-spacing:8.544000pt;}
.ws67{word-spacing:8.576000pt;}
.ws68{word-spacing:8.874667pt;}
.ws48{word-spacing:9.024000pt;}
.ws10{word-spacing:9.072000pt;}
.wse{word-spacing:9.168000pt;}
.ws74{word-spacing:9.264000pt;}
.ws33{word-spacing:9.312000pt;}
.ws34{word-spacing:10.176000pt;}
.ws56{word-spacing:10.416000pt;}
.ws38{word-spacing:10.496000pt;}
.ws78{word-spacing:10.608000pt;}
.ws7f{word-spacing:10.992000pt;}
.ws7a{word-spacing:11.328000pt;}
.ws23{word-spacing:11.376000pt;}
.ws6e{word-spacing:11.520000pt;}
.ws5d{word-spacing:11.664000pt;}
.ws26{word-spacing:11.712000pt;}
.ws6b{word-spacing:11.875200pt;}
.ws13{word-spacing:11.904000pt;}
.ws31{word-spacing:11.952000pt;}
.ws35{word-spacing:12.000000pt;}
.ws79{word-spacing:12.192000pt;}
.ws94{word-spacing:12.202667pt;}
.ws81{word-spacing:12.576000pt;}
.ws89{word-spacing:12.970667pt;}
.ws7d{word-spacing:13.248000pt;}
.ws66{word-spacing:13.312000pt;}
.ws16{word-spacing:14.160000pt;}
.ws2a{word-spacing:14.208000pt;}
.ws1f{word-spacing:15.408000pt;}
.ws4b{word-spacing:16.032000pt;}
.ws65{word-spacing:16.560000pt;}
.ws2f{word-spacing:18.192000pt;}
.ws72{word-spacing:18.576000pt;}
.ws12{word-spacing:19.248000pt;}
.ws51{word-spacing:20.304000pt;}
.ws25{word-spacing:20.544000pt;}
.ws71{word-spacing:22.032000pt;}
.ws28{word-spacing:23.136000pt;}
.ws4a{word-spacing:23.184000pt;}
.wsd{word-spacing:24.960000pt;}
.ws14{word-spacing:26.016000pt;}
.wsc{word-spacing:37.440000pt;}
.ws3e{word-spacing:47.069173pt;}
.ws3d{word-spacing:52.402507pt;}
.ws43{word-spacing:86.400000pt;}
.ws45{word-spacing:88.320000pt;}
.ws41{word-spacing:92.928000pt;}
.ws3f{word-spacing:117.973333pt;}
.ws42{word-spacing:119.893333pt;}
.ws40{word-spacing:139.818667pt;}
._10{margin-left:-629.354667pt;}
._a{margin-left:-23.136000pt;}
._1a{margin-left:-19.108800pt;}
._d{margin-left:-16.032000pt;}
._8{margin-left:-11.376000pt;}
._b{margin-left:-10.176000pt;}
._6{margin-left:-9.168000pt;}
._c{margin-left:-8.064000pt;}
._3{margin-left:-6.000000pt;}
._9{margin-left:-4.224000pt;}
._e{margin-left:-3.264000pt;}
._5{margin-left:-2.026667pt;}
._18{margin-left:-0.901333pt;}
._7{width:1.008000pt;}
._1{width:2.346667pt;}
._0{width:4.480000pt;}
._4{width:6.004800pt;}
._2{width:10.560000pt;}
._f{width:21.111467pt;}
._19{width:117.973333pt;}
._13{width:128.426667pt;}
._17{width:133.546667pt;}
._14{width:139.306667pt;}
._11{width:144.213333pt;}
._15{width:147.200000pt;}
._12{width:176.213333pt;}
._16{width:187.093333pt;}
.fs1{font-size:10.666667pt;}
.fs9{font-size:29.856000pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:33.600000pt;}
.fs8{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:71.797333pt;}
.y53{bottom:106.758933pt;}
.y7c{bottom:106.760133pt;}
.y8c{bottom:106.908000pt;}
.yd8{bottom:106.909067pt;}
.y56{bottom:106.976000pt;}
.y55{bottom:120.976000pt;}
.y52{bottom:122.758533pt;}
.y7b{bottom:122.759733pt;}
.y51{bottom:138.758133pt;}
.y7a{bottom:138.759333pt;}
.y8d{bottom:147.661333pt;}
.y50{bottom:154.757733pt;}
.y79{bottom:154.758933pt;}
.y32{bottom:154.762533pt;}
.y4f{bottom:170.757333pt;}
.y78{bottom:170.758533pt;}
.y31{bottom:170.762133pt;}
.ya1{bottom:175.737333pt;}
.y4d{bottom:186.756933pt;}
.y77{bottom:186.758133pt;}
.y2f{bottom:186.761733pt;}
.yd1{bottom:187.493333pt;}
.ya2{bottom:188.026667pt;}
.ybb{bottom:189.093333pt;}
.yd2{bottom:190.989333pt;}
.ya3{bottom:191.522667pt;}
.ybc{bottom:192.589333pt;}
.yd3{bottom:194.681333pt;}
.ya4{bottom:195.214667pt;}
.ybd{bottom:196.281333pt;}
.yb8{bottom:198.710667pt;}
.y4c{bottom:202.756533pt;}
.y76{bottom:202.757733pt;}
.y2e{bottom:202.761333pt;}
.yd4{bottom:206.437333pt;}
.ybe{bottom:208.036000pt;}
.yd5{bottom:209.933333pt;}
.yb9{bottom:211.000000pt;}
.yab{bottom:211.004000pt;}
.ybf{bottom:211.533333pt;}
.yba{bottom:214.496000pt;}
.yac{bottom:214.500000pt;}
.yad{bottom:218.192000pt;}
.ya5{bottom:218.725333pt;}
.y4b{bottom:218.756133pt;}
.y75{bottom:218.757333pt;}
.y2d{bottom:218.760933pt;}
.yae{bottom:221.688000pt;}
.ya6{bottom:222.221333pt;}
.yc0{bottom:224.888000pt;}
.yc1{bottom:228.384000pt;}
.yc2{bottom:232.076000pt;}
.ya7{bottom:234.510667pt;}
.y4a{bottom:234.755733pt;}
.y74{bottom:234.756933pt;}
.y2c{bottom:234.760533pt;}
.ya8{bottom:238.006667pt;}
.yaf{bottom:239.321333pt;}
.yb0{bottom:242.817333pt;}
.yc3{bottom:243.832000pt;}
.yc4{bottom:247.328000pt;}
.yb1{bottom:250.201333pt;}
.y49{bottom:250.755333pt;}
.y73{bottom:250.756533pt;}
.y2b{bottom:250.761333pt;}
.yc5{bottom:260.682667pt;}
.y47{bottom:263.154667pt;}
.yc6{bottom:264.180000pt;}
.y48{bottom:266.754933pt;}
.y72{bottom:266.756133pt;}
.y29{bottom:266.760933pt;}
.y46{bottom:266.768133pt;}
.yb2{bottom:267.834667pt;}
.yc7{bottom:267.870667pt;}
.yb3{bottom:271.330667pt;}
.yc8{bottom:273.749333pt;}
.yc9{bottom:277.245333pt;}
.y71{bottom:282.755733pt;}
.y28{bottom:282.760533pt;}
.y44{bottom:282.767733pt;}
.yb4{bottom:289.497333pt;}
.yca{bottom:292.200000pt;}
.yb5{bottom:292.993333pt;}
.ycb{bottom:295.696000pt;}
.y70{bottom:298.755333pt;}
.y27{bottom:298.760133pt;}
.y43{bottom:298.767333pt;}
.ycc{bottom:299.388000pt;}
.ycd{bottom:311.144000pt;}
.yce{bottom:314.640000pt;}
.y6f{bottom:314.754933pt;}
.y26{bottom:314.759733pt;}
.y42{bottom:314.766933pt;}
.ycf{bottom:327.996000pt;}
.y6e{bottom:330.754533pt;}
.y25{bottom:330.759333pt;}
.y40{bottom:330.766533pt;}
.yd0{bottom:331.492000pt;}
.y6d{bottom:346.754133pt;}
.y24{bottom:346.758933pt;}
.y3f{bottom:346.766133pt;}
.y8e{bottom:356.821333pt;}
.y6c{bottom:362.753733pt;}
.y22{bottom:362.758533pt;}
.y3e{bottom:362.765733pt;}
.y6a{bottom:375.153333pt;}
.y6b{bottom:378.753333pt;}
.y21{bottom:378.758133pt;}
.y3c{bottom:378.765333pt;}
.y20{bottom:394.757733pt;}
.y3b{bottom:394.764933pt;}
.y8f{bottom:405.574667pt;}
.yb7{bottom:405.575200pt;}
.yd6{bottom:405.575733pt;}
.y1f{bottom:410.757333pt;}
.y3a{bottom:410.764533pt;}
.ya9{bottom:414.064000pt;}
.yaa{bottom:415.260000pt;}
.y1e{bottom:426.756933pt;}
.y38{bottom:426.764133pt;}
.y1c{bottom:442.756533pt;}
.y37{bottom:442.763733pt;}
.y1b{bottom:458.756133pt;}
.y36{bottom:458.763333pt;}
.y1a{bottom:474.755733pt;}
.y35{bottom:474.762933pt;}
.y19{bottom:490.755333pt;}
.y34{bottom:490.762533pt;}
.y90{bottom:494.502667pt;}
.y91{bottom:504.018667pt;}
.y69{bottom:506.754933pt;}
.y92{bottom:509.298667pt;}
.y93{bottom:511.884000pt;}
.y68{bottom:522.754533pt;}
.yb6{bottom:537.497333pt;}
.y67{bottom:538.754133pt;}
.yf2{bottom:538.755333pt;}
.y10d{bottom:539.642667pt;}
.y10c{bottom:553.642667pt;}
.y18{bottom:554.087733pt;}
.y66{bottom:554.753733pt;}
.yf1{bottom:554.754933pt;}
.y65{bottom:567.153333pt;}
.y10b{bottom:567.642667pt;}
.y64{bottom:570.753333pt;}
.yf0{bottom:570.754533pt;}
.y17{bottom:578.087733pt;}
.y10a{bottom:581.642667pt;}
.y62{bottom:583.153333pt;}
.y63{bottom:586.752933pt;}
.y61{bottom:586.754133pt;}
.y94{bottom:590.908000pt;}
.yd7{bottom:590.909067pt;}
.y109{bottom:595.642667pt;}
.y15{bottom:601.642933pt;}
.y16{bottom:601.644000pt;}
.y60{bottom:602.753733pt;}
.y108{bottom:609.642667pt;}
.y14{bottom:617.643467pt;}
.y5f{bottom:618.753333pt;}
.yef{bottom:618.760133pt;}
.y107{bottom:623.642667pt;}
.y5d{bottom:631.153333pt;}
.y12{bottom:633.640800pt;}
.y13{bottom:633.644000pt;}
.y5e{bottom:634.752933pt;}
.y5c{bottom:634.754133pt;}
.yee{bottom:634.759733pt;}
.y106{bottom:637.642667pt;}
.y95{bottom:641.574667pt;}
.y5b{bottom:647.153333pt;}
.y11{bottom:649.641333pt;}
.y5a{bottom:650.753733pt;}
.yed{bottom:650.759333pt;}
.y105{bottom:651.642667pt;}
.y10{bottom:665.641867pt;}
.y104{bottom:665.642667pt;}
.y59{bottom:666.753333pt;}
.yec{bottom:666.758933pt;}
.y103{bottom:679.642667pt;}
.yf{bottom:681.642400pt;}
.yeb{bottom:682.758533pt;}
.y102{bottom:693.642667pt;}
.ye{bottom:697.642933pt;}
.yea{bottom:698.758133pt;}
.y8b{bottom:702.309333pt;}
.y101{bottom:707.642667pt;}
.yd{bottom:713.643467pt;}
.ye9{bottom:714.757733pt;}
.y8a{bottom:716.309333pt;}
.y96{bottom:717.574667pt;}
.y100{bottom:721.642667pt;}
.y97{bottom:724.037333pt;}
.y98{bottom:727.729333pt;}
.yc{bottom:729.644000pt;}
.ye8{bottom:730.757333pt;}
.y99{bottom:733.838667pt;}
.yff{bottom:735.642667pt;}
.y9a{bottom:738.060000pt;}
.y89{bottom:744.309333pt;}
.ye7{bottom:746.756933pt;}
.yfe{bottom:749.642667pt;}
.yb{bottom:753.865333pt;}
.y88{bottom:758.309333pt;}
.ye6{bottom:762.756533pt;}
.yfd{bottom:763.642667pt;}
.y87{bottom:772.309333pt;}
.yfc{bottom:777.642667pt;}
.ye5{bottom:778.756133pt;}
.y9b{bottom:783.110667pt;}
.y86{bottom:786.309333pt;}
.yfb{bottom:791.642667pt;}
.ya{bottom:793.421733pt;}
.ye4{bottom:794.755733pt;}
.y85{bottom:800.309333pt;}
.yfa{bottom:805.642667pt;}
.y9{bottom:809.421333pt;}
.ye3{bottom:810.755333pt;}
.y9c{bottom:813.574667pt;}
.y84{bottom:814.309333pt;}
.y9d{bottom:821.818667pt;}
.ye2{bottom:826.754933pt;}
.yf9{bottom:827.864000pt;}
.y83{bottom:828.309333pt;}
.ye1{bottom:842.754533pt;}
.y8{bottom:849.422133pt;}
.y9e{bottom:856.241333pt;}
.y82{bottom:856.309333pt;}
.ye0{bottom:858.754133pt;}
.y9f{bottom:864.485333pt;}
.yf8{bottom:867.642667pt;}
.ydf{bottom:874.753733pt;}
.y7{bottom:876.088533pt;}
.yf7{bottom:881.642667pt;}
.y81{bottom:884.309333pt;}
.yde{bottom:890.754933pt;}
.yf6{bottom:895.642667pt;}
.ya0{bottom:898.908000pt;}
.y6{bottom:902.754933pt;}
.ydd{bottom:906.754533pt;}
.yf5{bottom:909.642667pt;}
.y80{bottom:912.976000pt;}
.ydc{bottom:922.754133pt;}
.yf4{bottom:923.642667pt;}
.y7f{bottom:926.976000pt;}
.y5{bottom:929.865333pt;}
.y4{bottom:936.976000pt;}
.ydb{bottom:938.753733pt;}
.y7e{bottom:940.976000pt;}
.yf3{bottom:945.864000pt;}
.yda{bottom:954.753333pt;}
.y7d{bottom:954.976000pt;}
.yd9{bottom:986.908000pt;}
.y58{bottom:986.908533pt;}
.y2{bottom:987.797333pt;}
.y57{bottom:1058.908000pt;}
.y1{bottom:1209.333333pt;}
.y1d{bottom:1209.334533pt;}
.y4e{bottom:1209.335733pt;}
.y23{bottom:1209.336933pt;}
.y54{bottom:1209.338133pt;}
.y2a{bottom:1209.339333pt;}
.y30{bottom:1209.340533pt;}
.y33{bottom:1209.341733pt;}
.y39{bottom:1209.342933pt;}
.y3d{bottom:1209.344133pt;}
.y41{bottom:1209.345333pt;}
.y45{bottom:1209.346533pt;}
.h3{height:9.877333pt;}
.hd{height:23.904000pt;}
.h16{height:27.646656pt;}
.he{height:29.632000pt;}
.h2{height:30.924144pt;}
.hf{height:31.113600pt;}
.h13{height:31.274667pt;}
.h10{height:33.360000pt;}
.h12{height:34.789662pt;}
.h8{height:35.184000pt;}
.hb{height:35.213333pt;}
.h11{height:36.640625pt;}
.h9{height:36.722421pt;}
.ha{height:37.066667pt;}
.h4{height:38.655179pt;}
.h1{height:39.509333pt;}
.h15{height:39.520833pt;}
.h14{height:41.854167pt;}
.h7{height:44.448000pt;}
.hc{height:44.460938pt;}
.h6{height:66.720000pt;}
.h5{height:69.579323pt;}
.h0{height:1044.000000pt;}
.w0{width:793.333333pt;}
.x1{left:-88.000000pt;}
.x3{left:-85.333333pt;}
.x5{left:-82.666667pt;}
.x8{left:-80.000000pt;}
.x9{left:-78.666667pt;}
.xa{left:-76.000000pt;}
.xb{left:-70.667200pt;}
.xd{left:-64.002400pt;}
.xf{left:-58.666667pt;}
.x10{left:-54.667067pt;}
.x11{left:-52.000000pt;}
.x13{left:-49.333333pt;}
.x15{left:-45.333333pt;}
.x17{left:-42.666667pt;}
.x19{left:-38.666667pt;}
.x1b{left:-36.000000pt;}
.x1d{left:-32.000000pt;}
.x1f{left:-29.333333pt;}
.x20{left:-25.333733pt;}
.x22{left:-22.666133pt;}
.x24{left:-19.999733pt;}
.x26{left:-17.333333pt;}
.x27{left:-13.333733pt;}
.x28{left:-10.666133pt;}
.x2a{left:-7.999733pt;}
.x2c{left:-5.333333pt;}
.x2e{left:-1.333733pt;}
.x0{left:0.000000pt;}
.x2f{left:1.332667pt;}
.x31{left:4.000267pt;}
.x33{left:6.667867pt;}
.x35{left:10.667467pt;}
.x36{left:13.333867pt;}
.x38{left:16.000267pt;}
.x3a{left:18.666667pt;}
.x3b{left:22.666267pt;}
.x3d{left:25.333867pt;}
.x3f{left:28.000267pt;}
.x40{left:30.666667pt;}
.xb1{left:32.482800pt;}
.x42{left:34.666267pt;}
.x44{left:37.333867pt;}
.x46{left:40.000267pt;}
.x49{left:42.666667pt;}
.x4b{left:46.666267pt;}
.x4d{left:49.333867pt;}
.x4e{left:52.000267pt;}
.x50{left:54.667867pt;}
.x52{left:58.668667pt;}
.x54{left:61.335067pt;}
.x55{left:64.001467pt;}
.x57{left:66.669067pt;}
.x59{left:70.668667pt;}
.x5b{left:73.336267pt;}
.x5d{left:76.003867pt;}
.x5f{left:78.670267pt;}
.x2{left:82.182400pt;}
.x61{left:85.337467pt;}
.x63{left:88.003867pt;}
.x65{left:90.671467pt;}
.xd9{left:92.015467pt;}
.x41{left:94.182667pt;}
.x3e{left:95.451067pt;}
.x68{left:97.338667pt;}
.xc8{left:98.912133pt;}
.x6a{left:100.005067pt;}
.x6c{left:102.671467pt;}
.xee{left:105.758800pt;}
.x6e{left:106.672267pt;}
.x6f{left:109.339867pt;}
.x71{left:112.006267pt;}
.x113{left:113.222133pt;}
.x73{left:114.672667pt;}
.x75{left:118.672267pt;}
.x77{left:121.338667pt;}
.x79{left:124.005067pt;}
.x7b{left:126.671467pt;}
.x37{left:129.768667pt;}
.x7c{left:130.672267pt;}
.xc9{left:131.930667pt;}
.x7e{left:133.338667pt;}
.x3c{left:135.754267pt;}
.xeb{left:136.663600pt;}
.x80{left:138.671467pt;}
.xcb{left:140.264533pt;}
.x81{left:142.671067pt;}
.xf1{left:143.574400pt;}
.x12{left:146.182667pt;}
.x43{left:147.317467pt;}
.xf3{left:148.734400pt;}
.x39{left:149.753467pt;}
.x85{left:150.671467pt;}
.x87{left:154.672267pt;}
.xf5{left:155.586400pt;}
.x89{left:157.339867pt;}
.x8b{left:160.006267pt;}
.x1c{left:161.100000pt;}
.x8d{left:162.673867pt;}
.xc{left:165.836000pt;}
.xe5{left:167.969200pt;}
.x90{left:169.339867pt;}
.x92{left:172.006267pt;}
.x94{left:174.666667pt;}
.x96{left:177.333333pt;}
.x97{left:180.000933pt;}
.x98{left:182.668533pt;}
.x9a{left:185.334933pt;}
.x9c{left:189.335733pt;}
.x9e{left:192.002133pt;}
.x21{left:193.614667pt;}
.x9f{left:194.668533pt;}
.x23{left:196.549867pt;}
.xbc{left:198.209733pt;}
.xa2{left:201.334533pt;}
.x2d{left:204.415867pt;}
.xa5{left:206.667333pt;}
.x30{left:209.851867pt;}
.xa8{left:213.334533pt;}
.xaa{left:216.000933pt;}
.xab{left:218.667333pt;}
.xac{left:221.333733pt;}
.x1e{left:223.216000pt;}
.x14{left:224.821333pt;}
.xaf{left:227.999733pt;}
.xb0{left:230.666667pt;}
.x4{left:233.208533pt;}
.xb2{left:236.000000pt;}
.x6{left:238.487467pt;}
.xb5{left:241.333333pt;}
.x116{left:242.651733pt;}
.xb6{left:244.000000pt;}
.xb7{left:246.666667pt;}
.x10e{left:247.910133pt;}
.xb9{left:249.333333pt;}
.xf9{left:250.464400pt;}
.xba{left:253.332933pt;}
.xbb{left:255.999333pt;}
.xbd{left:258.665733pt;}
.xbf{left:261.332133pt;}
.xbe{left:262.253733pt;}
.x32{left:264.263467pt;}
.xc1{left:265.331733pt;}
.xc2{left:267.999333pt;}
.xc0{left:271.510533pt;}
.xc4{left:273.333333pt;}
.xc6{left:276.000933pt;}
.xc3{left:277.516000pt;}
.xc7{left:278.667333pt;}
.xcf{left:280.166533pt;}
.x25{left:281.430667pt;}
.xd1{left:283.069333pt;}
.xc5{left:286.100133pt;}
.x29{left:288.181867pt;}
.xca{left:289.333333pt;}
.x103{left:290.275600pt;}
.xcc{left:293.334133pt;}
.xcd{left:296.001733pt;}
.xce{left:298.668133pt;}
.xd0{left:301.334533pt;}
.xd2{left:305.333333pt;}
.xd3{left:306.666667pt;}
.xdb{left:307.986667pt;}
.xd5{left:309.334267pt;}
.xe7{left:310.402000pt;}
.x10a{left:311.876133pt;}
.xd6{left:313.333867pt;}
.xd7{left:316.000267pt;}
.xe9{left:317.254000pt;}
.xd8{left:318.666667pt;}
.xb8{left:320.075733pt;}
.xda{left:321.333333pt;}
.x110{left:322.532133pt;}
.xdc{left:324.000000pt;}
.x16{left:326.526667pt;}
.xd4{left:327.973867pt;}
.xde{left:329.333333pt;}
.x34{left:332.879467pt;}
.xe0{left:334.666133pt;}
.x106{left:336.203733pt;}
.xe1{left:337.333333pt;}
.xe2{left:340.000000pt;}
.x45{left:341.315467pt;}
.xe3{left:342.666400pt;}
.x10c{left:344.040933pt;}
.xe4{left:345.332800pt;}
.x115{left:347.121333pt;}
.x47{left:348.165067pt;}
.xe6{left:349.333600pt;}
.xe8{left:352.001200pt;}
.xe{left:352.916000pt;}
.xea{left:354.666400pt;}
.xec{left:357.332800pt;}
.xed{left:361.333600pt;}
.xef{left:364.000000pt;}
.xdd{left:365.214667pt;}
.xf0{left:366.666400pt;}
.xfd{left:368.047600pt;}
.xf2{left:369.332800pt;}
.x2b{left:372.255067pt;}
.xdf{left:373.548533pt;}
.xf4{left:376.000000pt;}
.xf6{left:378.666400pt;}
.xf7{left:381.332800pt;}
.xf8{left:385.332400pt;}
.xfa{left:387.998800pt;}
.xfb{left:390.665200pt;}
.xfc{left:393.331600pt;}
.xfe{left:397.331200pt;}
.xff{left:399.997600pt;}
.x100{left:402.664000pt;}
.x101{left:405.330400pt;}
.x102{left:409.331200pt;}
.x104{left:411.998800pt;}
.x105{left:414.666667pt;}
.x48{left:418.182667pt;}
.x107{left:419.999733pt;}
.x108{left:422.666133pt;}
.x109{left:425.332533pt;}
.x174{left:428.849333pt;}
.x82{left:430.187467pt;}
.x10b{left:431.998533pt;}
.x70{left:433.342267pt;}
.x10d{left:434.664933pt;}
.x72{left:438.201067pt;}
.x56{left:440.173867pt;}
.x10f{left:441.330933pt;}
.x8e{left:443.500267pt;}
.xad{left:444.807333pt;}
.x111{left:446.663733pt;}
.x112{left:449.330133pt;}
.xae{left:451.811733pt;}
.x8f{left:452.757067pt;}
.xa1{left:456.246933pt;}
.x11f{left:457.593333pt;}
.x114{left:458.663733pt;}
.x5c{left:460.811467pt;}
.xa3{left:462.176133pt;}
.x117{left:465.330933pt;}
.x118{left:467.998533pt;}
.x119{left:470.666133pt;}
.x11a{left:473.332533pt;}
.x62{left:477.030667pt;}
.x64{left:479.932267pt;}
.x5e{left:482.801467pt;}
.x12b{left:485.593333pt;}
.x12d{left:488.793333pt;}
.x131{left:499.593333pt;}
.x69{left:509.302267pt;}
.x6b{left:512.205067pt;}
.x132{left:513.593333pt;}
.x136{left:516.793333pt;}
.x4a{left:522.215467pt;}
.x60{left:527.646667pt;}
.x11b{left:532.000000pt;}
.xa0{left:533.596533pt;}
.x11c{left:534.666667pt;}
.x11d{left:537.333333pt;}
.x11e{left:540.000000pt;}
.x4c{left:542.202667pt;}
.x18{left:544.081333pt;}
.x120{left:545.333333pt;}
.x121{left:548.000000pt;}
.x122{left:550.666667pt;}
.x7d{left:551.620267pt;}
.x123{left:553.333333pt;}
.x124{left:556.000000pt;}
.x125{left:557.333333pt;}
.x126{left:560.000000pt;}
.x127{left:562.666667pt;}
.x128{left:565.333333pt;}
.x58{left:567.876667pt;}
.x14b{left:569.593333pt;}
.x129{left:570.666667pt;}
.x5a{left:572.615467pt;}
.x91{left:575.017867pt;}
.x12a{left:577.333333pt;}
.x74{left:578.655067pt;}
.x12c{left:580.000000pt;}
.x93{left:584.275867pt;}
.x76{left:585.625867pt;}
.x7{left:586.790400pt;}
.xb3{left:589.112000pt;}
.x12e{left:590.666667pt;}
.x12f{left:597.333333pt;}
.x130{left:600.000000pt;}
.x1a{left:606.256000pt;}
.xa4{left:610.151733pt;}
.x16f{left:611.593333pt;}
.x4f{left:613.571467pt;}
.xa6{left:617.003733pt;}
.x95{left:618.384000pt;}
.xa7{left:620.050533pt;}
.x51{left:622.011067pt;}
.x170{left:625.593333pt;}
.xa9{left:626.842533pt;}
.x53{left:628.861867pt;}
.x133{left:632.000000pt;}
.x134{left:638.666667pt;}
.x171{left:639.593333pt;}
.x135{left:641.333333pt;}
.x137{left:642.666667pt;}
.x138{left:645.333333pt;}
.x8a{left:648.785467pt;}
.x139{left:652.000000pt;}
.x172{left:653.593333pt;}
.x13a{left:654.666667pt;}
.x8c{left:655.637467pt;}
.x99{left:658.515333pt;}
.x66{left:661.365067pt;}
.x83{left:663.187867pt;}
.x67{left:664.267867pt;}
.x13b{left:665.333333pt;}
.x173{left:667.593333pt;}
.x84{left:670.038667pt;}
.x13c{left:672.000000pt;}
.x13d{left:674.666667pt;}
.x13e{left:677.333333pt;}
.x13f{left:680.000000pt;}
.x78{left:683.901067pt;}
.x140{left:685.333333pt;}
.x141{left:688.000000pt;}
.x7a{left:693.277867pt;}
.xb4{left:694.692800pt;}
.x86{left:696.222667pt;}
.x142{left:697.333333pt;}
.x143{left:704.000000pt;}
.x144{left:706.666667pt;}
.x9b{left:708.734133pt;}
.x145{left:710.666667pt;}
.x7f{left:712.570267pt;}
.x9d{left:715.586133pt;}
.x88{left:718.212667pt;}
.x6d{left:719.286667pt;}
.x146{left:722.666667pt;}
.x147{left:725.333333pt;}
.x148{left:732.000000pt;}
.x149{left:734.666667pt;}
.x14a{left:740.000000pt;}
.x14c{left:742.666667pt;}
.x14d{left:749.333333pt;}
.x14e{left:752.000000pt;}
.x14f{left:754.666667pt;}
.x150{left:760.000000pt;}
.x151{left:762.666667pt;}
.x152{left:769.333333pt;}
.x153{left:772.000000pt;}
.x154{left:774.666667pt;}
.x155{left:781.333333pt;}
.x156{left:784.000000pt;}
.x157{left:789.333333pt;}
.x158{left:792.000000pt;}
.x159{left:794.666667pt;}
.x15a{left:801.333333pt;}
.x15b{left:804.000000pt;}
.x15c{left:810.666667pt;}
.x15d{left:813.333333pt;}
.x15e{left:814.666667pt;}
.x15f{left:821.333333pt;}
.x160{left:824.000000pt;}
.x161{left:830.666667pt;}
.x162{left:833.333333pt;}
.x163{left:834.666667pt;}
.x164{left:837.333333pt;}
.x165{left:844.000000pt;}
.x166{left:846.666667pt;}
.x167{left:853.333333pt;}
.x168{left:856.000000pt;}
.x169{left:862.666667pt;}
.x16a{left:865.333333pt;}
.x16b{left:866.666667pt;}
.x16c{left:873.333333pt;}
.x16d{left:876.000000pt;}
.x16e{left:882.666667pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  