
    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_3c21c6ac38653a6d237af056.woff2')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_aed9461e34b713dd66de2b31.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7e9a156301bc98e3b4f97a83.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_ac27160fc992b57b7bb5c34d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_9c4fb28a3790a9760a476b8d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_232e2c8b7de05d09ea7d644b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_77122241275c8632b6b24dbe.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_c6cca538ac0dcf6de501d35d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.939453;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_931192ce76daa6d270723b6e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.715820;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_90cca3e712a659b545ffbfb8.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:33.120000px;}
.ls40{letter-spacing:-0.057600px;}
.ls43{letter-spacing:-0.050400px;}
.ls41{letter-spacing:-0.043200px;}
.ls42{letter-spacing:-0.036000px;}
.ls57{letter-spacing:-0.028800px;}
.ls34{letter-spacing:-0.021600px;}
.ls33{letter-spacing:-0.014400px;}
.ls53{letter-spacing:-0.007200px;}
.ls14{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.012960px;}
.ls8{letter-spacing:0.014400px;}
.lsa{letter-spacing:0.060000px;}
.ls48{letter-spacing:0.109296px;}
.ls17{letter-spacing:0.118800px;}
.ls47{letter-spacing:0.123552px;}
.ls1{letter-spacing:0.142560px;}
.ls4a{letter-spacing:0.147312px;}
.ls19{letter-spacing:0.161568px;}
.ls1d{letter-spacing:0.171216px;}
.ls3a{letter-spacing:0.177120px;}
.ls49{letter-spacing:0.209088px;}
.ls0{letter-spacing:0.223344px;}
.ls6{letter-spacing:0.223776px;}
.lsc{letter-spacing:0.236160px;}
.ls4{letter-spacing:0.237600px;}
.ls15{letter-spacing:0.239760px;}
.ls9{letter-spacing:0.240000px;}
.ls2d{letter-spacing:0.242064px;}
.ls3{letter-spacing:0.242352px;}
.ls1e{letter-spacing:0.253872px;}
.ls46{letter-spacing:0.256608px;}
.ls2{letter-spacing:0.266400px;}
.ls13{letter-spacing:0.275616px;}
.lsb{letter-spacing:0.283392px;}
.ls2a{letter-spacing:0.295200px;}
.ls4c{letter-spacing:0.298080px;}
.ls3c{letter-spacing:0.307008px;}
.ls18{letter-spacing:0.309024px;}
.ls1a{letter-spacing:0.318816px;}
.ls27{letter-spacing:0.324000px;}
.ls4b{letter-spacing:0.332640px;}
.ls3e{letter-spacing:0.354240px;}
.ls16{letter-spacing:0.356400px;}
.ls7{letter-spacing:0.362304px;}
.ls3d{letter-spacing:0.366048px;}
.ls1b{letter-spacing:0.383760px;}
.ls11{letter-spacing:0.388800px;}
.ls24{letter-spacing:0.401760px;}
.ls4e{letter-spacing:0.413280px;}
.ls1f{letter-spacing:0.419184px;}
.ls35{letter-spacing:0.432000px;}
.ls22{letter-spacing:0.434160px;}
.ls4d{letter-spacing:0.442800px;}
.ls51{letter-spacing:0.460512px;}
.lsf{letter-spacing:0.472320px;}
.lsd{letter-spacing:0.478224px;}
.ls26{letter-spacing:0.479520px;}
.lse{letter-spacing:0.490032px;}
.ls50{letter-spacing:0.519552px;}
.ls28{letter-spacing:0.524880px;}
.ls45{letter-spacing:0.525456px;}
.ls44{letter-spacing:0.531360px;}
.ls4f{letter-spacing:0.554976px;}
.ls32{letter-spacing:0.578592px;}
.ls23{letter-spacing:0.602640px;}
.ls1c{letter-spacing:0.619920px;}
.ls2f{letter-spacing:0.637632px;}
.ls38{letter-spacing:0.666000px;}
.ls25{letter-spacing:0.680400px;}
.ls2e{letter-spacing:0.702576px;}
.ls21{letter-spacing:0.725760px;}
.ls36{letter-spacing:0.792000px;}
.ls20{letter-spacing:0.874800px;}
.ls29{letter-spacing:0.920160px;}
.ls54{letter-spacing:1.656000px;}
.ls56{letter-spacing:2.736000px;}
.ls10{letter-spacing:4.380480px;}
.ls2c{letter-spacing:5.611680px;}
.ls55{letter-spacing:7.416000px;}
.ls12{letter-spacing:9.564480px;}
.ls31{letter-spacing:11.160000px;}
.ls2b{letter-spacing:14.035680px;}
.ls3f{letter-spacing:22.907520px;}
.ls3b{letter-spacing:27.807840px;}
.ls52{letter-spacing:33.984000px;}
.ls37{letter-spacing:53.784000px;}
.ls30{letter-spacing:354.299040px;}
.ls5{letter-spacing:1702.008576px;}
.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;}
}
.ws3{word-spacing:-18.014400px;}
.wsf{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.120160px;}
.ws9{word-spacing:-17.074800px;}
.wsa{word-spacing:-16.802640px;}
.wsc{word-spacing:-16.200000px;}
.wse{word-spacing:-15.397632px;}
.ws8{word-spacing:-15.250032px;}
.ws5{word-spacing:-15.238224px;}
.ws6{word-spacing:-15.078816px;}
.ws4{word-spacing:-15.043392px;}
.ws7{word-spacing:-15.013872px;}
.ws19{word-spacing:-14.016096px;}
.ws1b{word-spacing:-13.980672px;}
.ws1a{word-spacing:-13.939344px;}
.ws2{word-spacing:-13.682304px;}
.ws0{word-spacing:-12.155616px;}
.ws1{word-spacing:-12.122352px;}
.ws17{word-spacing:-11.167200px;}
.ws11{word-spacing:-11.110176px;}
.ws12{word-spacing:-11.091168px;}
.ws13{word-spacing:-11.072160px;}
.ws14{word-spacing:-11.057904px;}
.ws15{word-spacing:-10.981872px;}
.ws16{word-spacing:-10.943856px;}
.ws10{word-spacing:-0.077760px;}
.ws18{word-spacing:-0.064800px;}
.wsd{word-spacing:0.000000px;}
._23{margin-left:-6.440400px;}
._3{margin-left:-1.021680px;}
._2{width:1.012320px;}
._14{width:2.093760px;}
._6{width:3.369600px;}
._7{width:5.001120px;}
._9{width:6.156000px;}
._f{width:7.177680px;}
._8{width:8.553600px;}
._d{width:9.979200px;}
._c{width:11.362320px;}
._b{width:13.002480px;}
._a{width:14.191200px;}
._15{width:16.034400px;}
._10{width:17.941680px;}
._19{width:19.094400px;}
._1c{width:20.656800px;}
._16{width:21.969360px;}
._18{width:23.145840px;}
._1d{width:24.393600px;}
._17{width:26.037360px;}
._11{width:27.265680px;}
._12{width:28.509120px;}
._1a{width:30.016800px;}
._1e{width:31.183200px;}
._20{width:32.407200px;}
._21{width:33.487200px;}
._1f{width:34.696800px;}
._26{width:35.992800px;}
._22{width:40.557600px;}
._24{width:44.013600px;}
._1b{width:48.988800px;}
._25{width:52.768800px;}
._30{width:54.943200px;}
._29{width:58.449600px;}
._2f{width:59.616000px;}
._2c{width:78.602400px;}
._2b{width:82.584000px;}
._28{width:89.337600px;}
._27{width:93.456000px;}
._2d{width:131.695200px;}
._2e{width:135.547200px;}
._2a{width:191.282400px;}
._31{width:211.226400px;}
._32{width:215.128800px;}
._0{width:401.638632px;}
._e{width:596.407248px;}
._4{width:794.797536px;}
._13{width:846.000000px;}
._1{width:880.931520px;}
._5{width:1262.256480px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs0{font-size:47.520000px;}
.fs1{font-size:53.280000px;}
.fs6{font-size:59.040000px;}
.fs2{font-size:64.800000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:2.514240px;}
.y81{bottom:2.520000px;}
.y85{bottom:2.868480px;}
.y87{bottom:6.480000px;}
.ye1{bottom:7.200000px;}
.yde{bottom:7.560000px;}
.y7b{bottom:9.360000px;}
.y7f{bottom:9.720000px;}
.y7c{bottom:16.200000px;}
.y84{bottom:16.554240px;}
.y80{bottom:16.560000px;}
.y1{bottom:19.500000px;}
.y83{bottom:30.240000px;}
.y77{bottom:90.348120px;}
.y2b{bottom:90.691200px;}
.ya6{bottom:95.040000px;}
.y100{bottom:96.120000px;}
.y162{bottom:103.320000px;}
.y51{bottom:105.120000px;}
.ybd{bottom:105.480000px;}
.y76{bottom:107.632080px;}
.y1bb{bottom:110.880000px;}
.y156{bottom:115.200000px;}
.y154{bottom:116.640000px;}
.yff{bottom:119.880000px;}
.y2a{bottom:121.649400px;}
.y106{bottom:122.400000px;}
.y75{bottom:124.916040px;}
.y161{bottom:127.080000px;}
.ya5{bottom:127.800000px;}
.y50{bottom:129.240000px;}
.y1ba{bottom:131.400000px;}
.y149{bottom:135.000000px;}
.y16e{bottom:136.080000px;}
.ybc{bottom:138.240000px;}
.ye6{bottom:139.740000px;}
.y153{bottom:140.400000px;}
.y29{bottom:141.089400px;}
.y195{bottom:143.280000px;}
.y155{bottom:145.440000px;}
.y74{bottom:149.040000px;}
.y160{bottom:150.840000px;}
.ya4{bottom:151.560000px;}
.y1b9{bottom:152.280000px;}
.y105{bottom:152.640000px;}
.y4f{bottom:153.000000px;}
.yfe{bottom:155.520000px;}
.y16d{bottom:156.600000px;}
.y148{bottom:158.760000px;}
.y73{bottom:159.480000px;}
.ye5{bottom:161.700000px;}
.ybb{bottom:162.000000px;}
.y194{bottom:163.800000px;}
.y152{bottom:164.160000px;}
.y28{bottom:171.691200px;}
.y15f{bottom:174.600000px;}
.ya3{bottom:175.320000px;}
.y4e{bottom:176.760000px;}
.y16c{bottom:177.480000px;}
.y125{bottom:177.840000px;}
.yfd{bottom:179.280000px;}
.y1b8{bottom:181.800000px;}
.y147{bottom:182.520000px;}
.ye4{bottom:183.660000px;}
.yba{bottom:185.760000px;}
.y151{bottom:187.920000px;}
.y193{bottom:193.680000px;}
.y120{bottom:198.360000px;}
.ya2{bottom:199.080000px;}
.y4d{bottom:200.520000px;}
.y124{bottom:201.600000px;}
.y27{bottom:202.649400px;}
.y1b7{bottom:202.680000px;}
.yfc{bottom:203.400000px;}
.y72{bottom:203.760000px;}
.ye3{bottom:205.620000px;}
.y146{bottom:206.280000px;}
.y16b{bottom:207.000000px;}
.yb9{bottom:209.880000px;}
.y192{bottom:214.200000px;}
.y26{bottom:222.089400px;}
.y11f{bottom:222.120000px;}
.ya1{bottom:222.840000px;}
.y1b6{bottom:223.200000px;}
.y150{bottom:223.560000px;}
.y4c{bottom:224.280000px;}
.y123{bottom:225.360000px;}
.yfb{bottom:227.160000px;}
.y71{bottom:227.520000px;}
.ye2{bottom:227.580000px;}
.y16a{bottom:227.880000px;}
.y145{bottom:230.040000px;}
.yb8{bottom:233.640000px;}
.y191{bottom:235.080000px;}
.y25{bottom:240.816600px;}
.y11e{bottom:245.880000px;}
.y4b{bottom:248.040000px;}
.ye0{bottom:249.900000px;}
.yfa{bottom:250.920000px;}
.y70{bottom:251.280000px;}
.y1b5{bottom:253.080000px;}
.y144{bottom:254.160000px;}
.ya0{bottom:255.600000px;}
.yb7{bottom:257.400000px;}
.y14f{bottom:259.560000px;}
.y24{bottom:259.900200px;}
.y122{bottom:261.360000px;}
.y190{bottom:264.600000px;}
.y130{bottom:268.920000px;}
.y11d{bottom:269.640000px;}
.y4a{bottom:271.800000px;}
.ydf{bottom:271.860000px;}
.y1b4{bottom:273.600000px;}
.yf9{bottom:274.680000px;}
.y6f{bottom:275.040000px;}
.y23{bottom:278.983800px;}
.y9f{bottom:279.360000px;}
.yb6{bottom:281.160000px;}
.y18f{bottom:285.480000px;}
.y169{bottom:287.280000px;}
.y143{bottom:289.800000px;}
.y15e{bottom:293.400000px;}
.y11c{bottom:293.760000px;}
.ydd{bottom:293.820000px;}
.y1b3{bottom:294.480000px;}
.y121{bottom:295.560000px;}
.y22{bottom:297.711000px;}
.yf8{bottom:298.440000px;}
.y6e{bottom:298.800000px;}
.y9e{bottom:303.480000px;}
.yb5{bottom:304.920000px;}
.y18e{bottom:306.000000px;}
.y49{bottom:307.800000px;}
.y12f{bottom:310.680000px;}
.ydc{bottom:315.360000px;}
.y21{bottom:316.794600px;}
.y11b{bottom:317.520000px;}
.y14e{bottom:324.000000px;}
.y142{bottom:325.440000px;}
.y15d{bottom:326.520000px;}
.y18d{bottom:326.880000px;}
.y9d{bottom:327.240000px;}
.yb4{bottom:328.680000px;}
.yf7{bottom:334.080000px;}
.y6d{bottom:334.800000px;}
.y20{bottom:335.878200px;}
.y168{bottom:337.680000px;}
.y48{bottom:340.560000px;}
.y1b2{bottom:344.880000px;}
.ydb{bottom:347.752800px;}
.y141{bottom:349.560000px;}
.y9c{bottom:351.000000px;}
.yb3{bottom:352.440000px;}
.y11a{bottom:353.160000px;}
.y18c{bottom:356.400000px;}
.yf6{bottom:358.200000px;}
.y15c{bottom:359.280000px;}
.y47{bottom:361.080000px;}
.y1b1{bottom:365.400000px;}
.y1f{bottom:366.480000px;}
.y6c{bottom:370.440000px;}
.y140{bottom:373.320000px;}
.yb2{bottom:376.200000px;}
.y119{bottom:376.920000px;}
.y18b{bottom:377.280000px;}
.yda{bottom:379.440000px;}
.yf5{bottom:381.960000px;}
.y9b{bottom:383.760000px;}
.y1b0{bottom:386.280000px;}
.y12e{bottom:394.200000px;}
.y15b{bottom:394.920000px;}
.y18a{bottom:397.800000px;}
.y1e{bottom:399.611880px;}
.yb1{bottom:400.320000px;}
.y118{bottom:400.680000px;}
.yd9{bottom:403.200000px;}
.yf4{bottom:405.720000px;}
.y6b{bottom:406.080000px;}
.y9a{bottom:407.520000px;}
.y13f{bottom:415.080000px;}
.y1af{bottom:415.800000px;}
.y12d{bottom:417.960000px;}
.y189{bottom:418.680000px;}
.yb0{bottom:424.080000px;}
.y117{bottom:424.440000px;}
.yd8{bottom:426.960000px;}
.yf3{bottom:429.480000px;}
.y167{bottom:429.840000px;}
.y6a{bottom:430.200000px;}
.y15a{bottom:430.920000px;}
.y99{bottom:431.280000px;}
.y1d{bottom:431.655840px;}
.y1ae{bottom:436.680000px;}
.y13e{bottom:438.840000px;}
.y12c{bottom:441.720000px;}
.y188{bottom:448.200000px;}
.y116{bottom:448.560000px;}
.y1c{bottom:449.294040px;}
.yd7{bottom:450.720000px;}
.yf2{bottom:453.240000px;}
.y69{bottom:453.960000px;}
.y98{bottom:455.040000px;}
.y1ad{bottom:457.200000px;}
.yaf{bottom:459.720000px;}
.y13d{bottom:462.600000px;}
.y159{bottom:465.120000px;}
.y166{bottom:465.480000px;}
.y12b{bottom:465.840000px;}
.y1b{bottom:468.732960px;}
.y187{bottom:469.080000px;}
.y115{bottom:472.320000px;}
.yd6{bottom:474.480000px;}
.yf1{bottom:477.000000px;}
.y68{bottom:477.720000px;}
.y97{bottom:478.800000px;}
.yae{bottom:483.480000px;}
.y104{bottom:484.200000px;}
.y13c{bottom:486.360000px;}
.y1ac{bottom:487.080000px;}
.y12a{bottom:489.600000px;}
.y158{bottom:494.994600px;}
.y114{bottom:496.080000px;}
.yd5{bottom:498.600000px;}
.y1a{bottom:500.407920px;}
.yf0{bottom:500.760000px;}
.y67{bottom:501.480000px;}
.y96{bottom:502.920000px;}
.y103{bottom:504.720000px;}
.yad{bottom:507.240000px;}
.y1ab{bottom:507.600000px;}
.y13b{bottom:510.120000px;}
.y186{bottom:510.480000px;}
.y129{bottom:513.360000px;}
.y113{bottom:519.840000px;}
.yd4{bottom:522.360000px;}
.y66{bottom:525.240000px;}
.y102{bottom:525.600000px;}
.y95{bottom:526.680000px;}
.y1aa{bottom:528.480000px;}
.yac{bottom:531.000000px;}
.y19{bottom:532.451880px;}
.y13a{bottom:533.880000px;}
.yef{bottom:536.760000px;}
.y128{bottom:537.120000px;}
.y185{bottom:540.000000px;}
.y112{bottom:543.600000px;}
.yd3{bottom:546.120000px;}
.y65{bottom:549.000000px;}
.y94{bottom:550.440000px;}
.yab{bottom:555.120000px;}
.y101{bottom:555.480000px;}
.y139{bottom:558.000000px;}
.y127{bottom:560.880000px;}
.y18{bottom:564.126840px;}
.yd2{bottom:569.880000px;}
.yee{bottom:572.400000px;}
.y64{bottom:572.760000px;}
.y93{bottom:574.200000px;}
.yaa{bottom:578.880000px;}
.y111{bottom:579.600000px;}
.y184{bottom:581.400000px;}
.y138{bottom:581.760000px;}
.y126{bottom:584.640000px;}
.y1a9{bottom:590.400000px;}
.y17{bottom:590.760000px;}
.y63{bottom:596.520000px;}
.y183{bottom:602.280000px;}
.ya9{bottom:602.640000px;}
.y110{bottom:603.360000px;}
.y137{bottom:605.520000px;}
.y92{bottom:606.960000px;}
.yed{bottom:608.400000px;}
.y1a8{bottom:620.280000px;}
.y62{bottom:620.640000px;}
.y16{bottom:622.800000px;}
.yd1{bottom:626.400000px;}
.y10f{bottom:627.120000px;}
.y136{bottom:629.280000px;}
.y91{bottom:630.720000px;}
.y182{bottom:631.800000px;}
.yec{bottom:632.160000px;}
.ya8{bottom:635.400000px;}
.y1a7{bottom:640.800000px;}
.y61{bottom:644.400000px;}
.y15{bottom:649.080000px;}
.yd0{bottom:650.160000px;}
.y10e{bottom:650.880000px;}
.y181{bottom:652.680000px;}
.y135{bottom:653.040000px;}
.y90{bottom:654.480000px;}
.yeb{bottom:655.920000px;}
.y165{bottom:656.280000px;}
.y1a6{bottom:661.680000px;}
.y60{bottom:668.160000px;}
.ya7{bottom:669.600000px;}
.y180{bottom:673.200000px;}
.ycf{bottom:673.920000px;}
.y10d{bottom:674.640000px;}
.y134{bottom:676.800000px;}
.y8f{bottom:678.240000px;}
.yea{bottom:679.680000px;}
.y164{bottom:680.040000px;}
.y1a5{bottom:682.200000px;}
.y14{bottom:684.720000px;}
.y5f{bottom:691.920000px;}
.yce{bottom:698.040000px;}
.y10c{bottom:698.400000px;}
.y8e{bottom:702.360000px;}
.y17f{bottom:703.080000px;}
.ye9{bottom:703.440000px;}
.y163{bottom:703.800000px;}
.y13{bottom:708.840000px;}
.y5e{bottom:715.680000px;}
.y133{bottom:718.560000px;}
.ycd{bottom:721.800000px;}
.y10b{bottom:722.160000px;}
.y17e{bottom:723.600000px;}
.y8d{bottom:726.120000px;}
.y14d{bottom:727.560000px;}
.y12{bottom:731.079000px;}
.y1a4{bottom:732.600000px;}
.y5d{bottom:739.440000px;}
.y17d{bottom:744.480000px;}
.ycc{bottom:745.560000px;}
.y10a{bottom:745.920000px;}
.y8c{bottom:749.880000px;}
.y14c{bottom:751.320000px;}
.y132{bottom:753.120000px;}
.y1a3{bottom:753.480000px;}
.y11{bottom:762.048000px;}
.y5c{bottom:763.200000px;}
.ycb{bottom:769.320000px;}
.y17c{bottom:774.000000px;}
.ye8{bottom:775.080000px;}
.y14b{bottom:775.440000px;}
.y109{bottom:781.920000px;}
.y8b{bottom:782.640000px;}
.y131{bottom:783.360000px;}
.y5b{bottom:786.960000px;}
.y10{bottom:793.017000px;}
.yca{bottom:793.080000px;}
.y17b{bottom:794.880000px;}
.y14a{bottom:799.200000px;}
.y1a2{bottom:803.880000px;}
.y5a{bottom:810.720000px;}
.y8a{bottom:815.400000px;}
.yc9{bottom:816.840000px;}
.y108{bottom:817.560000px;}
.y46{bottom:822.960000px;}
.yf{bottom:824.337000px;}
.y1a1{bottom:824.400000px;}
.ye7{bottom:834.840000px;}
.y17a{bottom:836.280000px;}
.yc8{bottom:840.600000px;}
.y59{bottom:846.720000px;}
.y107{bottom:852.120000px;}
.y89{bottom:852.180000px;}
.y1a0{bottom:854.280000px;}
.ye{bottom:855.306000px;}
.y45{bottom:858.600000px;}
.yc7{bottom:864.360000px;}
.y179{bottom:865.800000px;}
.y58{bottom:870.480000px;}
.y19f{bottom:874.800000px;}
.y38{bottom:875.880000px;}
.y88{bottom:880.620000px;}
.y44{bottom:882.360000px;}
.yd{bottom:886.275000px;}
.y178{bottom:886.680000px;}
.y1c0{bottom:888.120000px;}
.y57{bottom:894.240000px;}
.y19e{bottom:895.680000px;}
.yc6{bottom:897.480000px;}
.y43{bottom:906.480000px;}
.y177{bottom:907.200000px;}
.y37{bottom:907.887600px;}
.y86{bottom:908.700000px;}
.y19d{bottom:916.200000px;}
.yc{bottom:917.244000px;}
.y56{bottom:918.000000px;}
.yc5{bottom:921.240000px;}
.y36{bottom:927.327600px;}
.y176{bottom:928.080000px;}
.y42{bottom:930.240000px;}
.y82{bottom:931.020000px;}
.y1bf{bottom:937.080000px;}
.y55{bottom:941.760000px;}
.yc4{bottom:945.000000px;}
.y19c{bottom:946.080000px;}
.yb{bottom:948.213000px;}
.y175{bottom:948.600000px;}
.y41{bottom:954.000000px;}
.y1be{bottom:957.600000px;}
.y35{bottom:957.929400px;}
.y54{bottom:965.880000px;}
.y19b{bottom:966.600000px;}
.yc3{bottom:968.760000px;}
.y7e{bottom:973.140000px;}
.y34{bottom:977.013000px;}
.y40{bottom:977.760000px;}
.y174{bottom:978.480000px;}
.ya{bottom:979.533000px;}
.y19a{bottom:987.480000px;}
.y53{bottom:989.640000px;}
.yc2{bottom:992.520000px;}
.y33{bottom:996.096600px;}
.y173{bottom:999.000000px;}
.y3f{bottom:1001.520000px;}
.y7a{bottom:1001.580000px;}
.y1bd{bottom:1008.000000px;}
.y9{bottom:1010.502000px;}
.y52{bottom:1013.400000px;}
.y32{bottom:1015.180200px;}
.yc1{bottom:1016.280000px;}
.y199{bottom:1017.000000px;}
.y172{bottom:1019.880000px;}
.y3e{bottom:1025.280000px;}
.y79{bottom:1028.160000px;}
.y1bc{bottom:1028.880000px;}
.y31{bottom:1033.907400px;}
.y198{bottom:1037.880000px;}
.yc0{bottom:1040.040000px;}
.y8{bottom:1041.471000px;}
.y3d{bottom:1049.040000px;}
.y171{bottom:1049.400000px;}
.y30{bottom:1052.991000px;}
.y197{bottom:1058.400000px;}
.y78{bottom:1061.640000px;}
.ybf{bottom:1063.800000px;}
.y170{bottom:1070.280000px;}
.y2f{bottom:1072.074600px;}
.y7{bottom:1072.440000px;}
.y3c{bottom:1072.800000px;}
.y196{bottom:1079.280000px;}
.ybe{bottom:1087.560000px;}
.y2e{bottom:1091.158200px;}
.y3b{bottom:1096.560000px;}
.y16f{bottom:1099.800000px;}
.y6{bottom:1116.360000px;}
.y3a{bottom:1120.680000px;}
.y157{bottom:1121.400000px;}
.y2d{bottom:1121.760000px;}
.y5{bottom:1134.352080px;}
.y4{bottom:1148.037840px;}
.y3{bottom:1162.080000px;}
.y2c{bottom:1176.120000px;}
.y39{bottom:1176.480000px;}
.y2{bottom:1177.560000px;}
.h19{height:20.880000px;}
.h16{height:21.240000px;}
.h15{height:21.600000px;}
.h10{height:27.360000px;}
.h12{height:27.720000px;}
.ha{height:34.114922px;}
.h13{height:34.642266px;}
.h11{height:34.711875px;}
.h14{height:41.400000px;}
.h3{height:41.696016px;}
.h18{height:43.040391px;}
.h17{height:43.126875px;}
.hf{height:43.189453px;}
.h2{height:46.750078px;}
.h4{height:46.781758px;}
.h1a{height:48.761719px;}
.h1b{height:49.992188px;}
.hb{height:51.804141px;}
.h5{height:56.858203px;}
.hc{height:57.554297px;}
.hd{height:61.474922px;}
.h8{height:63.175781px;}
.he{height:63.949219px;}
.h9{height:74.816016px;}
.h7{height:94.763672px;}
.h6{height:95.923828px;}
.h1{height:1224.000000px;}
.h0{height:1263.000000px;}
.w8{width:41.760000px;}
.w7{width:48.600000px;}
.w5{width:52.560000px;}
.w3{width:63.000000px;}
.w2{width:63.360000px;}
.w4{width:73.800000px;}
.w6{width:105.480000px;}
.wa{width:231.840000px;}
.w9{width:232.200000px;}
.w1{width:853.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x24{left:5.147700px;}
.x10{left:7.858500px;}
.xe{left:9.780300px;}
.x1e{left:11.371500px;}
.x20{left:12.786150px;}
.x14{left:14.293050px;}
.x1c{left:15.524700px;}
.x18{left:16.974060px;}
.x1{left:19.500000px;}
.x23{left:20.686500px;}
.x21{left:22.028790px;}
.x12{left:24.351900px;}
.x22{left:28.861350px;}
.x25{left:36.166050px;}
.x16{left:37.289250px;}
.x26{left:43.830720px;}
.x2c{left:64.266600px;}
.x2a{left:87.931800px;}
.x2{left:108.000000px;}
.xd{left:110.580000px;}
.x39{left:116.280000px;}
.x4{left:118.848000px;}
.x7{left:129.000000px;}
.x8{left:131.592000px;}
.x3b{left:135.765750px;}
.x3c{left:139.878000px;}
.x5{left:154.056000px;}
.x35{left:161.003550px;}
.xc{left:167.006400px;}
.xf{left:174.300000px;}
.x32{left:183.736500px;}
.x28{left:188.513250px;}
.x33{left:203.740350px;}
.x29{left:213.900000px;}
.x31{left:219.486000px;}
.x11{left:238.020000px;}
.x2f{left:252.198900px;}
.x27{left:266.463450px;}
.x37{left:284.490000px;}
.x13{left:312.540000px;}
.x6{left:317.919000px;}
.x15{left:365.820000px;}
.x9{left:383.178000px;}
.x3{left:426.675000px;}
.x2b{left:446.820000px;}
.xa{left:452.884620px;}
.x17{left:472.020000px;}
.xb{left:490.404540px;}
.x19{left:521.340000px;}
.x1a{left:563.820000px;}
.x1b{left:617.100000px;}
.x38{left:643.428000px;}
.x1d{left:659.580000px;}
.x2d{left:677.774850px;}
.x36{left:683.208000px;}
.x34{left:684.674850px;}
.x2e{left:711.674850px;}
.x1f{left:723.300000px;}
.x30{left:745.349850px;}
.x3a{left:746.992800px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:29.440000pt;}
.ls40{letter-spacing:-0.051200pt;}
.ls43{letter-spacing:-0.044800pt;}
.ls41{letter-spacing:-0.038400pt;}
.ls42{letter-spacing:-0.032000pt;}
.ls57{letter-spacing:-0.025600pt;}
.ls34{letter-spacing:-0.019200pt;}
.ls33{letter-spacing:-0.012800pt;}
.ls53{letter-spacing:-0.006400pt;}
.ls14{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.011520pt;}
.ls8{letter-spacing:0.012800pt;}
.lsa{letter-spacing:0.053333pt;}
.ls48{letter-spacing:0.097152pt;}
.ls17{letter-spacing:0.105600pt;}
.ls47{letter-spacing:0.109824pt;}
.ls1{letter-spacing:0.126720pt;}
.ls4a{letter-spacing:0.130944pt;}
.ls19{letter-spacing:0.143616pt;}
.ls1d{letter-spacing:0.152192pt;}
.ls3a{letter-spacing:0.157440pt;}
.ls49{letter-spacing:0.185856pt;}
.ls0{letter-spacing:0.198528pt;}
.ls6{letter-spacing:0.198912pt;}
.lsc{letter-spacing:0.209920pt;}
.ls4{letter-spacing:0.211200pt;}
.ls15{letter-spacing:0.213120pt;}
.ls9{letter-spacing:0.213333pt;}
.ls2d{letter-spacing:0.215168pt;}
.ls3{letter-spacing:0.215424pt;}
.ls1e{letter-spacing:0.225664pt;}
.ls46{letter-spacing:0.228096pt;}
.ls2{letter-spacing:0.236800pt;}
.ls13{letter-spacing:0.244992pt;}
.lsb{letter-spacing:0.251904pt;}
.ls2a{letter-spacing:0.262400pt;}
.ls4c{letter-spacing:0.264960pt;}
.ls3c{letter-spacing:0.272896pt;}
.ls18{letter-spacing:0.274688pt;}
.ls1a{letter-spacing:0.283392pt;}
.ls27{letter-spacing:0.288000pt;}
.ls4b{letter-spacing:0.295680pt;}
.ls3e{letter-spacing:0.314880pt;}
.ls16{letter-spacing:0.316800pt;}
.ls7{letter-spacing:0.322048pt;}
.ls3d{letter-spacing:0.325376pt;}
.ls1b{letter-spacing:0.341120pt;}
.ls11{letter-spacing:0.345600pt;}
.ls24{letter-spacing:0.357120pt;}
.ls4e{letter-spacing:0.367360pt;}
.ls1f{letter-spacing:0.372608pt;}
.ls35{letter-spacing:0.384000pt;}
.ls22{letter-spacing:0.385920pt;}
.ls4d{letter-spacing:0.393600pt;}
.ls51{letter-spacing:0.409344pt;}
.lsf{letter-spacing:0.419840pt;}
.lsd{letter-spacing:0.425088pt;}
.ls26{letter-spacing:0.426240pt;}
.lse{letter-spacing:0.435584pt;}
.ls50{letter-spacing:0.461824pt;}
.ls28{letter-spacing:0.466560pt;}
.ls45{letter-spacing:0.467072pt;}
.ls44{letter-spacing:0.472320pt;}
.ls4f{letter-spacing:0.493312pt;}
.ls32{letter-spacing:0.514304pt;}
.ls23{letter-spacing:0.535680pt;}
.ls1c{letter-spacing:0.551040pt;}
.ls2f{letter-spacing:0.566784pt;}
.ls38{letter-spacing:0.592000pt;}
.ls25{letter-spacing:0.604800pt;}
.ls2e{letter-spacing:0.624512pt;}
.ls21{letter-spacing:0.645120pt;}
.ls36{letter-spacing:0.704000pt;}
.ls20{letter-spacing:0.777600pt;}
.ls29{letter-spacing:0.817920pt;}
.ls54{letter-spacing:1.472000pt;}
.ls56{letter-spacing:2.432000pt;}
.ls10{letter-spacing:3.893760pt;}
.ls2c{letter-spacing:4.988160pt;}
.ls55{letter-spacing:6.592000pt;}
.ls12{letter-spacing:8.501760pt;}
.ls31{letter-spacing:9.920000pt;}
.ls2b{letter-spacing:12.476160pt;}
.ls3f{letter-spacing:20.362240pt;}
.ls3b{letter-spacing:24.718080pt;}
.ls52{letter-spacing:30.208000pt;}
.ls37{letter-spacing:47.808000pt;}
.ls30{letter-spacing:314.932480pt;}
.ls5{letter-spacing:1512.896512pt;}
.ws3{word-spacing:-16.012800pt;}
.wsf{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.217920pt;}
.ws9{word-spacing:-15.177600pt;}
.wsa{word-spacing:-14.935680pt;}
.wsc{word-spacing:-14.400000pt;}
.wse{word-spacing:-13.686784pt;}
.ws8{word-spacing:-13.555584pt;}
.ws5{word-spacing:-13.545088pt;}
.ws6{word-spacing:-13.403392pt;}
.ws4{word-spacing:-13.371904pt;}
.ws7{word-spacing:-13.345664pt;}
.ws19{word-spacing:-12.458752pt;}
.ws1b{word-spacing:-12.427264pt;}
.ws1a{word-spacing:-12.390528pt;}
.ws2{word-spacing:-12.162048pt;}
.ws0{word-spacing:-10.804992pt;}
.ws1{word-spacing:-10.775424pt;}
.ws17{word-spacing:-9.926400pt;}
.ws11{word-spacing:-9.875712pt;}
.ws12{word-spacing:-9.858816pt;}
.ws13{word-spacing:-9.841920pt;}
.ws14{word-spacing:-9.829248pt;}
.ws15{word-spacing:-9.761664pt;}
.ws16{word-spacing:-9.727872pt;}
.ws10{word-spacing:-0.069120pt;}
.ws18{word-spacing:-0.057600pt;}
.wsd{word-spacing:0.000000pt;}
._23{margin-left:-5.724800pt;}
._3{margin-left:-0.908160pt;}
._2{width:0.899840pt;}
._14{width:1.861120pt;}
._6{width:2.995200pt;}
._7{width:4.445440pt;}
._9{width:5.472000pt;}
._f{width:6.380160pt;}
._8{width:7.603200pt;}
._d{width:8.870400pt;}
._c{width:10.099840pt;}
._b{width:11.557760pt;}
._a{width:12.614400pt;}
._15{width:14.252800pt;}
._10{width:15.948160pt;}
._19{width:16.972800pt;}
._1c{width:18.361600pt;}
._16{width:19.528320pt;}
._18{width:20.574080pt;}
._1d{width:21.683200pt;}
._17{width:23.144320pt;}
._11{width:24.236160pt;}
._12{width:25.341440pt;}
._1a{width:26.681600pt;}
._1e{width:27.718400pt;}
._20{width:28.806400pt;}
._21{width:29.766400pt;}
._1f{width:30.841600pt;}
._26{width:31.993600pt;}
._22{width:36.051200pt;}
._24{width:39.123200pt;}
._1b{width:43.545600pt;}
._25{width:46.905600pt;}
._30{width:48.838400pt;}
._29{width:51.955200pt;}
._2f{width:52.992000pt;}
._2c{width:69.868800pt;}
._2b{width:73.408000pt;}
._28{width:79.411200pt;}
._27{width:83.072000pt;}
._2d{width:117.062400pt;}
._2e{width:120.486400pt;}
._2a{width:170.028800pt;}
._31{width:187.756800pt;}
._32{width:191.225600pt;}
._0{width:357.012117pt;}
._e{width:530.139776pt;}
._4{width:706.486699pt;}
._13{width:752.000000pt;}
._1{width:783.050240pt;}
._5{width:1122.005760pt;}
.fs5{font-size:34.560000pt;}
.fs0{font-size:42.240000pt;}
.fs1{font-size:47.360000pt;}
.fs6{font-size:52.480000pt;}
.fs2{font-size:57.600000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:2.234880pt;}
.y81{bottom:2.240000pt;}
.y85{bottom:2.549760pt;}
.y87{bottom:5.760000pt;}
.ye1{bottom:6.400000pt;}
.yde{bottom:6.720000pt;}
.y7b{bottom:8.320000pt;}
.y7f{bottom:8.640000pt;}
.y7c{bottom:14.400000pt;}
.y84{bottom:14.714880pt;}
.y80{bottom:14.720000pt;}
.y1{bottom:17.333333pt;}
.y83{bottom:26.880000pt;}
.y77{bottom:80.309440pt;}
.y2b{bottom:80.614400pt;}
.ya6{bottom:84.480000pt;}
.y100{bottom:85.440000pt;}
.y162{bottom:91.840000pt;}
.y51{bottom:93.440000pt;}
.ybd{bottom:93.760000pt;}
.y76{bottom:95.672960pt;}
.y1bb{bottom:98.560000pt;}
.y156{bottom:102.400000pt;}
.y154{bottom:103.680000pt;}
.yff{bottom:106.560000pt;}
.y2a{bottom:108.132800pt;}
.y106{bottom:108.800000pt;}
.y75{bottom:111.036480pt;}
.y161{bottom:112.960000pt;}
.ya5{bottom:113.600000pt;}
.y50{bottom:114.880000pt;}
.y1ba{bottom:116.800000pt;}
.y149{bottom:120.000000pt;}
.y16e{bottom:120.960000pt;}
.ybc{bottom:122.880000pt;}
.ye6{bottom:124.213333pt;}
.y153{bottom:124.800000pt;}
.y29{bottom:125.412800pt;}
.y195{bottom:127.360000pt;}
.y155{bottom:129.280000pt;}
.y74{bottom:132.480000pt;}
.y160{bottom:134.080000pt;}
.ya4{bottom:134.720000pt;}
.y1b9{bottom:135.360000pt;}
.y105{bottom:135.680000pt;}
.y4f{bottom:136.000000pt;}
.yfe{bottom:138.240000pt;}
.y16d{bottom:139.200000pt;}
.y148{bottom:141.120000pt;}
.y73{bottom:141.760000pt;}
.ye5{bottom:143.733333pt;}
.ybb{bottom:144.000000pt;}
.y194{bottom:145.600000pt;}
.y152{bottom:145.920000pt;}
.y28{bottom:152.614400pt;}
.y15f{bottom:155.200000pt;}
.ya3{bottom:155.840000pt;}
.y4e{bottom:157.120000pt;}
.y16c{bottom:157.760000pt;}
.y125{bottom:158.080000pt;}
.yfd{bottom:159.360000pt;}
.y1b8{bottom:161.600000pt;}
.y147{bottom:162.240000pt;}
.ye4{bottom:163.253333pt;}
.yba{bottom:165.120000pt;}
.y151{bottom:167.040000pt;}
.y193{bottom:172.160000pt;}
.y120{bottom:176.320000pt;}
.ya2{bottom:176.960000pt;}
.y4d{bottom:178.240000pt;}
.y124{bottom:179.200000pt;}
.y27{bottom:180.132800pt;}
.y1b7{bottom:180.160000pt;}
.yfc{bottom:180.800000pt;}
.y72{bottom:181.120000pt;}
.ye3{bottom:182.773333pt;}
.y146{bottom:183.360000pt;}
.y16b{bottom:184.000000pt;}
.yb9{bottom:186.560000pt;}
.y192{bottom:190.400000pt;}
.y26{bottom:197.412800pt;}
.y11f{bottom:197.440000pt;}
.ya1{bottom:198.080000pt;}
.y1b6{bottom:198.400000pt;}
.y150{bottom:198.720000pt;}
.y4c{bottom:199.360000pt;}
.y123{bottom:200.320000pt;}
.yfb{bottom:201.920000pt;}
.y71{bottom:202.240000pt;}
.ye2{bottom:202.293333pt;}
.y16a{bottom:202.560000pt;}
.y145{bottom:204.480000pt;}
.yb8{bottom:207.680000pt;}
.y191{bottom:208.960000pt;}
.y25{bottom:214.059200pt;}
.y11e{bottom:218.560000pt;}
.y4b{bottom:220.480000pt;}
.ye0{bottom:222.133333pt;}
.yfa{bottom:223.040000pt;}
.y70{bottom:223.360000pt;}
.y1b5{bottom:224.960000pt;}
.y144{bottom:225.920000pt;}
.ya0{bottom:227.200000pt;}
.yb7{bottom:228.800000pt;}
.y14f{bottom:230.720000pt;}
.y24{bottom:231.022400pt;}
.y122{bottom:232.320000pt;}
.y190{bottom:235.200000pt;}
.y130{bottom:239.040000pt;}
.y11d{bottom:239.680000pt;}
.y4a{bottom:241.600000pt;}
.ydf{bottom:241.653333pt;}
.y1b4{bottom:243.200000pt;}
.yf9{bottom:244.160000pt;}
.y6f{bottom:244.480000pt;}
.y23{bottom:247.985600pt;}
.y9f{bottom:248.320000pt;}
.yb6{bottom:249.920000pt;}
.y18f{bottom:253.760000pt;}
.y169{bottom:255.360000pt;}
.y143{bottom:257.600000pt;}
.y15e{bottom:260.800000pt;}
.y11c{bottom:261.120000pt;}
.ydd{bottom:261.173333pt;}
.y1b3{bottom:261.760000pt;}
.y121{bottom:262.720000pt;}
.y22{bottom:264.632000pt;}
.yf8{bottom:265.280000pt;}
.y6e{bottom:265.600000pt;}
.y9e{bottom:269.760000pt;}
.yb5{bottom:271.040000pt;}
.y18e{bottom:272.000000pt;}
.y49{bottom:273.600000pt;}
.y12f{bottom:276.160000pt;}
.ydc{bottom:280.320000pt;}
.y21{bottom:281.595200pt;}
.y11b{bottom:282.240000pt;}
.y14e{bottom:288.000000pt;}
.y142{bottom:289.280000pt;}
.y15d{bottom:290.240000pt;}
.y18d{bottom:290.560000pt;}
.y9d{bottom:290.880000pt;}
.yb4{bottom:292.160000pt;}
.yf7{bottom:296.960000pt;}
.y6d{bottom:297.600000pt;}
.y20{bottom:298.558400pt;}
.y168{bottom:300.160000pt;}
.y48{bottom:302.720000pt;}
.y1b2{bottom:306.560000pt;}
.ydb{bottom:309.113600pt;}
.y141{bottom:310.720000pt;}
.y9c{bottom:312.000000pt;}
.yb3{bottom:313.280000pt;}
.y11a{bottom:313.920000pt;}
.y18c{bottom:316.800000pt;}
.yf6{bottom:318.400000pt;}
.y15c{bottom:319.360000pt;}
.y47{bottom:320.960000pt;}
.y1b1{bottom:324.800000pt;}
.y1f{bottom:325.760000pt;}
.y6c{bottom:329.280000pt;}
.y140{bottom:331.840000pt;}
.yb2{bottom:334.400000pt;}
.y119{bottom:335.040000pt;}
.y18b{bottom:335.360000pt;}
.yda{bottom:337.280000pt;}
.yf5{bottom:339.520000pt;}
.y9b{bottom:341.120000pt;}
.y1b0{bottom:343.360000pt;}
.y12e{bottom:350.400000pt;}
.y15b{bottom:351.040000pt;}
.y18a{bottom:353.600000pt;}
.y1e{bottom:355.210560pt;}
.yb1{bottom:355.840000pt;}
.y118{bottom:356.160000pt;}
.yd9{bottom:358.400000pt;}
.yf4{bottom:360.640000pt;}
.y6b{bottom:360.960000pt;}
.y9a{bottom:362.240000pt;}
.y13f{bottom:368.960000pt;}
.y1af{bottom:369.600000pt;}
.y12d{bottom:371.520000pt;}
.y189{bottom:372.160000pt;}
.yb0{bottom:376.960000pt;}
.y117{bottom:377.280000pt;}
.yd8{bottom:379.520000pt;}
.yf3{bottom:381.760000pt;}
.y167{bottom:382.080000pt;}
.y6a{bottom:382.400000pt;}
.y15a{bottom:383.040000pt;}
.y99{bottom:383.360000pt;}
.y1d{bottom:383.694080pt;}
.y1ae{bottom:388.160000pt;}
.y13e{bottom:390.080000pt;}
.y12c{bottom:392.640000pt;}
.y188{bottom:398.400000pt;}
.y116{bottom:398.720000pt;}
.y1c{bottom:399.372480pt;}
.yd7{bottom:400.640000pt;}
.yf2{bottom:402.880000pt;}
.y69{bottom:403.520000pt;}
.y98{bottom:404.480000pt;}
.y1ad{bottom:406.400000pt;}
.yaf{bottom:408.640000pt;}
.y13d{bottom:411.200000pt;}
.y159{bottom:413.440000pt;}
.y166{bottom:413.760000pt;}
.y12b{bottom:414.080000pt;}
.y1b{bottom:416.651520pt;}
.y187{bottom:416.960000pt;}
.y115{bottom:419.840000pt;}
.yd6{bottom:421.760000pt;}
.yf1{bottom:424.000000pt;}
.y68{bottom:424.640000pt;}
.y97{bottom:425.600000pt;}
.yae{bottom:429.760000pt;}
.y104{bottom:430.400000pt;}
.y13c{bottom:432.320000pt;}
.y1ac{bottom:432.960000pt;}
.y12a{bottom:435.200000pt;}
.y158{bottom:439.995200pt;}
.y114{bottom:440.960000pt;}
.yd5{bottom:443.200000pt;}
.y1a{bottom:444.807040pt;}
.yf0{bottom:445.120000pt;}
.y67{bottom:445.760000pt;}
.y96{bottom:447.040000pt;}
.y103{bottom:448.640000pt;}
.yad{bottom:450.880000pt;}
.y1ab{bottom:451.200000pt;}
.y13b{bottom:453.440000pt;}
.y186{bottom:453.760000pt;}
.y129{bottom:456.320000pt;}
.y113{bottom:462.080000pt;}
.yd4{bottom:464.320000pt;}
.y66{bottom:466.880000pt;}
.y102{bottom:467.200000pt;}
.y95{bottom:468.160000pt;}
.y1aa{bottom:469.760000pt;}
.yac{bottom:472.000000pt;}
.y19{bottom:473.290560pt;}
.y13a{bottom:474.560000pt;}
.yef{bottom:477.120000pt;}
.y128{bottom:477.440000pt;}
.y185{bottom:480.000000pt;}
.y112{bottom:483.200000pt;}
.yd3{bottom:485.440000pt;}
.y65{bottom:488.000000pt;}
.y94{bottom:489.280000pt;}
.yab{bottom:493.440000pt;}
.y101{bottom:493.760000pt;}
.y139{bottom:496.000000pt;}
.y127{bottom:498.560000pt;}
.y18{bottom:501.446080pt;}
.yd2{bottom:506.560000pt;}
.yee{bottom:508.800000pt;}
.y64{bottom:509.120000pt;}
.y93{bottom:510.400000pt;}
.yaa{bottom:514.560000pt;}
.y111{bottom:515.200000pt;}
.y184{bottom:516.800000pt;}
.y138{bottom:517.120000pt;}
.y126{bottom:519.680000pt;}
.y1a9{bottom:524.800000pt;}
.y17{bottom:525.120000pt;}
.y63{bottom:530.240000pt;}
.y183{bottom:535.360000pt;}
.ya9{bottom:535.680000pt;}
.y110{bottom:536.320000pt;}
.y137{bottom:538.240000pt;}
.y92{bottom:539.520000pt;}
.yed{bottom:540.800000pt;}
.y1a8{bottom:551.360000pt;}
.y62{bottom:551.680000pt;}
.y16{bottom:553.600000pt;}
.yd1{bottom:556.800000pt;}
.y10f{bottom:557.440000pt;}
.y136{bottom:559.360000pt;}
.y91{bottom:560.640000pt;}
.y182{bottom:561.600000pt;}
.yec{bottom:561.920000pt;}
.ya8{bottom:564.800000pt;}
.y1a7{bottom:569.600000pt;}
.y61{bottom:572.800000pt;}
.y15{bottom:576.960000pt;}
.yd0{bottom:577.920000pt;}
.y10e{bottom:578.560000pt;}
.y181{bottom:580.160000pt;}
.y135{bottom:580.480000pt;}
.y90{bottom:581.760000pt;}
.yeb{bottom:583.040000pt;}
.y165{bottom:583.360000pt;}
.y1a6{bottom:588.160000pt;}
.y60{bottom:593.920000pt;}
.ya7{bottom:595.200000pt;}
.y180{bottom:598.400000pt;}
.ycf{bottom:599.040000pt;}
.y10d{bottom:599.680000pt;}
.y134{bottom:601.600000pt;}
.y8f{bottom:602.880000pt;}
.yea{bottom:604.160000pt;}
.y164{bottom:604.480000pt;}
.y1a5{bottom:606.400000pt;}
.y14{bottom:608.640000pt;}
.y5f{bottom:615.040000pt;}
.yce{bottom:620.480000pt;}
.y10c{bottom:620.800000pt;}
.y8e{bottom:624.320000pt;}
.y17f{bottom:624.960000pt;}
.ye9{bottom:625.280000pt;}
.y163{bottom:625.600000pt;}
.y13{bottom:630.080000pt;}
.y5e{bottom:636.160000pt;}
.y133{bottom:638.720000pt;}
.ycd{bottom:641.600000pt;}
.y10b{bottom:641.920000pt;}
.y17e{bottom:643.200000pt;}
.y8d{bottom:645.440000pt;}
.y14d{bottom:646.720000pt;}
.y12{bottom:649.848000pt;}
.y1a4{bottom:651.200000pt;}
.y5d{bottom:657.280000pt;}
.y17d{bottom:661.760000pt;}
.ycc{bottom:662.720000pt;}
.y10a{bottom:663.040000pt;}
.y8c{bottom:666.560000pt;}
.y14c{bottom:667.840000pt;}
.y132{bottom:669.440000pt;}
.y1a3{bottom:669.760000pt;}
.y11{bottom:677.376000pt;}
.y5c{bottom:678.400000pt;}
.ycb{bottom:683.840000pt;}
.y17c{bottom:688.000000pt;}
.ye8{bottom:688.960000pt;}
.y14b{bottom:689.280000pt;}
.y109{bottom:695.040000pt;}
.y8b{bottom:695.680000pt;}
.y131{bottom:696.320000pt;}
.y5b{bottom:699.520000pt;}
.y10{bottom:704.904000pt;}
.yca{bottom:704.960000pt;}
.y17b{bottom:706.560000pt;}
.y14a{bottom:710.400000pt;}
.y1a2{bottom:714.560000pt;}
.y5a{bottom:720.640000pt;}
.y8a{bottom:724.800000pt;}
.yc9{bottom:726.080000pt;}
.y108{bottom:726.720000pt;}
.y46{bottom:731.520000pt;}
.yf{bottom:732.744000pt;}
.y1a1{bottom:732.800000pt;}
.ye7{bottom:742.080000pt;}
.y17a{bottom:743.360000pt;}
.yc8{bottom:747.200000pt;}
.y59{bottom:752.640000pt;}
.y107{bottom:757.440000pt;}
.y89{bottom:757.493333pt;}
.y1a0{bottom:759.360000pt;}
.ye{bottom:760.272000pt;}
.y45{bottom:763.200000pt;}
.yc7{bottom:768.320000pt;}
.y179{bottom:769.600000pt;}
.y58{bottom:773.760000pt;}
.y19f{bottom:777.600000pt;}
.y38{bottom:778.560000pt;}
.y88{bottom:782.773333pt;}
.y44{bottom:784.320000pt;}
.yd{bottom:787.800000pt;}
.y178{bottom:788.160000pt;}
.y1c0{bottom:789.440000pt;}
.y57{bottom:794.880000pt;}
.y19e{bottom:796.160000pt;}
.yc6{bottom:797.760000pt;}
.y43{bottom:805.760000pt;}
.y177{bottom:806.400000pt;}
.y37{bottom:807.011200pt;}
.y86{bottom:807.733333pt;}
.y19d{bottom:814.400000pt;}
.yc{bottom:815.328000pt;}
.y56{bottom:816.000000pt;}
.yc5{bottom:818.880000pt;}
.y36{bottom:824.291200pt;}
.y176{bottom:824.960000pt;}
.y42{bottom:826.880000pt;}
.y82{bottom:827.573333pt;}
.y1bf{bottom:832.960000pt;}
.y55{bottom:837.120000pt;}
.yc4{bottom:840.000000pt;}
.y19c{bottom:840.960000pt;}
.yb{bottom:842.856000pt;}
.y175{bottom:843.200000pt;}
.y41{bottom:848.000000pt;}
.y1be{bottom:851.200000pt;}
.y35{bottom:851.492800pt;}
.y54{bottom:858.560000pt;}
.y19b{bottom:859.200000pt;}
.yc3{bottom:861.120000pt;}
.y7e{bottom:865.013333pt;}
.y34{bottom:868.456000pt;}
.y40{bottom:869.120000pt;}
.y174{bottom:869.760000pt;}
.ya{bottom:870.696000pt;}
.y19a{bottom:877.760000pt;}
.y53{bottom:879.680000pt;}
.yc2{bottom:882.240000pt;}
.y33{bottom:885.419200pt;}
.y173{bottom:888.000000pt;}
.y3f{bottom:890.240000pt;}
.y7a{bottom:890.293333pt;}
.y1bd{bottom:896.000000pt;}
.y9{bottom:898.224000pt;}
.y52{bottom:900.800000pt;}
.y32{bottom:902.382400pt;}
.yc1{bottom:903.360000pt;}
.y199{bottom:904.000000pt;}
.y172{bottom:906.560000pt;}
.y3e{bottom:911.360000pt;}
.y79{bottom:913.920000pt;}
.y1bc{bottom:914.560000pt;}
.y31{bottom:919.028800pt;}
.y198{bottom:922.560000pt;}
.yc0{bottom:924.480000pt;}
.y8{bottom:925.752000pt;}
.y3d{bottom:932.480000pt;}
.y171{bottom:932.800000pt;}
.y30{bottom:935.992000pt;}
.y197{bottom:940.800000pt;}
.y78{bottom:943.680000pt;}
.ybf{bottom:945.600000pt;}
.y170{bottom:951.360000pt;}
.y2f{bottom:952.955200pt;}
.y7{bottom:953.280000pt;}
.y3c{bottom:953.600000pt;}
.y196{bottom:959.360000pt;}
.ybe{bottom:966.720000pt;}
.y2e{bottom:969.918400pt;}
.y3b{bottom:974.720000pt;}
.y16f{bottom:977.600000pt;}
.y6{bottom:992.320000pt;}
.y3a{bottom:996.160000pt;}
.y157{bottom:996.800000pt;}
.y2d{bottom:997.120000pt;}
.y5{bottom:1008.312960pt;}
.y4{bottom:1020.478080pt;}
.y3{bottom:1032.960000pt;}
.y2c{bottom:1045.440000pt;}
.y39{bottom:1045.760000pt;}
.y2{bottom:1046.720000pt;}
.h19{height:18.560000pt;}
.h16{height:18.880000pt;}
.h15{height:19.200000pt;}
.h10{height:24.320000pt;}
.h12{height:24.640000pt;}
.ha{height:30.324375pt;}
.h13{height:30.793125pt;}
.h11{height:30.855000pt;}
.h14{height:36.800000pt;}
.h3{height:37.063125pt;}
.h18{height:38.258125pt;}
.h17{height:38.335000pt;}
.hf{height:38.390625pt;}
.h2{height:41.555625pt;}
.h4{height:41.583785pt;}
.h1a{height:43.343750pt;}
.h1b{height:44.437500pt;}
.hb{height:46.048125pt;}
.h5{height:50.540625pt;}
.hc{height:51.159375pt;}
.hd{height:54.644375pt;}
.h8{height:56.156250pt;}
.he{height:56.843750pt;}
.h9{height:66.503125pt;}
.h7{height:84.234375pt;}
.h6{height:85.265625pt;}
.h1{height:1088.000000pt;}
.h0{height:1122.666667pt;}
.w8{width:37.120000pt;}
.w7{width:43.200000pt;}
.w5{width:46.720000pt;}
.w3{width:56.000000pt;}
.w2{width:56.320000pt;}
.w4{width:65.600000pt;}
.w6{width:93.760000pt;}
.wa{width:206.080000pt;}
.w9{width:206.400000pt;}
.w1{width:758.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x24{left:4.575733pt;}
.x10{left:6.985333pt;}
.xe{left:8.693600pt;}
.x1e{left:10.108000pt;}
.x20{left:11.365467pt;}
.x14{left:12.704933pt;}
.x1c{left:13.799733pt;}
.x18{left:15.088053pt;}
.x1{left:17.333333pt;}
.x23{left:18.388000pt;}
.x21{left:19.581147pt;}
.x12{left:21.646133pt;}
.x22{left:25.654533pt;}
.x25{left:32.147600pt;}
.x16{left:33.146000pt;}
.x26{left:38.960640pt;}
.x2c{left:57.125867pt;}
.x2a{left:78.161600pt;}
.x2{left:96.000000pt;}
.xd{left:98.293333pt;}
.x39{left:103.360000pt;}
.x4{left:105.642667pt;}
.x7{left:114.666667pt;}
.x8{left:116.970667pt;}
.x3b{left:120.680667pt;}
.x3c{left:124.336000pt;}
.x5{left:136.938667pt;}
.x35{left:143.114267pt;}
.xc{left:148.450133pt;}
.xf{left:154.933333pt;}
.x32{left:163.321333pt;}
.x28{left:167.567333pt;}
.x33{left:181.102533pt;}
.x29{left:190.133333pt;}
.x31{left:195.098667pt;}
.x11{left:211.573333pt;}
.x2f{left:224.176800pt;}
.x27{left:236.856400pt;}
.x37{left:252.880000pt;}
.x13{left:277.813333pt;}
.x6{left:282.594667pt;}
.x15{left:325.173333pt;}
.x9{left:340.602667pt;}
.x3{left:379.266667pt;}
.x2b{left:397.173333pt;}
.xa{left:402.564107pt;}
.x17{left:419.573333pt;}
.xb{left:435.915147pt;}
.x19{left:463.413333pt;}
.x1a{left:501.173333pt;}
.x1b{left:548.533333pt;}
.x38{left:571.936000pt;}
.x1d{left:586.293333pt;}
.x2d{left:602.466533pt;}
.x36{left:607.296000pt;}
.x34{left:608.599867pt;}
.x2e{left:632.599867pt;}
.x1f{left:642.933333pt;}
.x30{left:662.533200pt;}
.x3a{left:663.993600pt;}
}




    .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; }
  