
    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_f91567353565a4eabcbe2029.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_6099690b635297e70125c668.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_c3b9a8010624dbc8474cdaae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854004;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_7455234cfecaabed36952eab.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_88057614d8d6ea1837c7f6b2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_59db9406d0ba66ac484300ae.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_0cfcc6b004a5e86741ea5349.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_780e730a7bb2e204306c1860.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005859;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);}
.v1{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.240000px;}
.ls18{letter-spacing:-0.780000px;}
.ls28{letter-spacing:-0.660000px;}
.ls9{letter-spacing:-0.463800px;}
.lsb{letter-spacing:-0.303000px;}
.ls1a{letter-spacing:-0.214800px;}
.ls26{letter-spacing:-0.208800px;}
.ls35{letter-spacing:-0.186600px;}
.ls2c{letter-spacing:-0.175800px;}
.ls8{letter-spacing:-0.164400px;}
.ls7{letter-spacing:-0.132600px;}
.lsf{letter-spacing:-0.115800px;}
.ls27{letter-spacing:-0.107400px;}
.ls19{letter-spacing:-0.069600px;}
.ls43{letter-spacing:-0.061200px;}
.ls17{letter-spacing:-0.058320px;}
.ls2e{letter-spacing:-0.038160px;}
.ls42{letter-spacing:-0.001440px;}
.ls5{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.012960px;}
.ls41{letter-spacing:0.018720px;}
.ls6{letter-spacing:0.038880px;}
.lse{letter-spacing:0.066000px;}
.ls40{letter-spacing:0.066240px;}
.ls1e{letter-spacing:0.067200px;}
.ls44{letter-spacing:0.075000px;}
.ls36{letter-spacing:0.093000px;}
.ls46{letter-spacing:0.135360px;}
.lsd{letter-spacing:0.140400px;}
.ls2d{letter-spacing:0.143400px;}
.ls33{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.lsa{letter-spacing:0.150000px;}
.ls23{letter-spacing:0.174240px;}
.ls11{letter-spacing:0.179280px;}
.ls1d{letter-spacing:0.180000px;}
.ls3f{letter-spacing:0.180600px;}
.lsc{letter-spacing:0.186600px;}
.ls25{letter-spacing:0.218400px;}
.ls2b{letter-spacing:0.243600px;}
.ls1{letter-spacing:0.269760px;}
.ls49{letter-spacing:0.306000px;}
.ls1c{letter-spacing:0.314400px;}
.ls48{letter-spacing:0.357000px;}
.ls21{letter-spacing:0.479520px;}
.ls2f{letter-spacing:0.505440px;}
.ls3e{letter-spacing:0.604080px;}
.ls22{letter-spacing:0.612720px;}
.ls3{letter-spacing:0.617760px;}
.ls1b{letter-spacing:0.642000px;}
.ls31{letter-spacing:0.792000px;}
.ls24{letter-spacing:2.106720px;}
.ls29{letter-spacing:2.334240px;}
.ls20{letter-spacing:5.706720px;}
.ls32{letter-spacing:9.534240px;}
.ls4b{letter-spacing:12.186720px;}
.ls1f{letter-spacing:15.786720px;}
.ls38{letter-spacing:16.535280px;}
.ls13{letter-spacing:17.226720px;}
.ls3d{letter-spacing:17.255280px;}
.ls3b{letter-spacing:17.279280px;}
.ls2a{letter-spacing:17.946720px;}
.ls3a{letter-spacing:19.386720px;}
.ls3c{letter-spacing:19.549440px;}
.ls37{letter-spacing:19.926720px;}
.ls15{letter-spacing:20.106720px;}
.ls12{letter-spacing:21.546720px;}
.ls16{letter-spacing:22.266720px;}
.ls45{letter-spacing:24.426720px;}
.ls2{letter-spacing:38.106720px;}
.ls4a{letter-spacing:42.570720px;}
.ls30{letter-spacing:46.026720px;}
.ls10{letter-spacing:46.170720px;}
.ls47{letter-spacing:55.362720px;}
.ls34{letter-spacing:55.386720px;}
.ls4{letter-spacing:64.026720px;}
.ls14{letter-spacing:64.170720px;}
.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;}
}
.ws18{word-spacing:-59.772960px;}
.wsa{word-spacing:-59.760000px;}
.ws0{word-spacing:-19.077120px;}
.ws5{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.805840px;}
.ws4{word-spacing:-14.506440px;}
.wsf{word-spacing:-14.147760px;}
.ws1d{word-spacing:-13.862760px;}
.ws10{word-spacing:-13.820160px;}
.ws15{word-spacing:-13.724160px;}
.ws7{word-spacing:-13.692360px;}
.ws19{word-spacing:-13.686360px;}
.ws16{word-spacing:-13.649160px;}
.ws8{word-spacing:-13.646160px;}
.ws1c{word-spacing:-13.580760px;}
.ws11{word-spacing:-13.572960px;}
.ws6{word-spacing:-13.505760px;}
.ws1a{word-spacing:-13.504320px;}
.ws17{word-spacing:-13.467600px;}
.wsc{word-spacing:-13.447440px;}
.ws1b{word-spacing:-13.444560px;}
.wsd{word-spacing:-13.436160px;}
.ws14{word-spacing:-13.398360px;}
.ws9{word-spacing:-13.389960px;}
.ws12{word-spacing:-13.296960px;}
.wse{word-spacing:-13.290960px;}
.ws13{word-spacing:-10.902240px;}
.ws3{word-spacing:-0.066240px;}
.wsb{word-spacing:0.000000px;}
._22{margin-left:-532.918560px;}
._23{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._16{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._1b{margin-left:-247.991040px;}
._b{margin-left:-240.510240px;}
._1a{margin-left:-222.774000px;}
._25{margin-left:-214.738560px;}
._10{margin-left:-203.247360px;}
._1d{margin-left:-201.453120px;}
._1c{margin-left:-199.655040px;}
._24{margin-left:-189.590400px;}
._e{margin-left:-170.334720px;}
._d{margin-left:-165.419520px;}
._f{margin-left:-154.885440px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._28{margin-left:-145.290240px;}
._c{margin-left:-134.912160px;}
._14{margin-left:-133.843680px;}
._12{margin-left:-120.386160px;}
._11{margin-left:-117.792000px;}
._15{margin-left:-115.871040px;}
._26{margin-left:-110.367360px;}
._27{margin-left:-109.224000px;}
._21{margin-left:-102.529440px;}
._7{margin-left:-91.124880px;}
._20{margin-left:-86.399760px;}
._1f{margin-left:-83.520000px;}
._17{margin-left:-81.351360px;}
._19{margin-left:-66.703680px;}
._13{margin-left:-56.822400px;}
._18{margin-left:-49.123920px;}
._1e{margin-left:-31.530240px;}
._39{margin-left:-3.950160px;}
._29{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._2a{width:1.244880px;}
._2b{width:2.624160px;}
._2c{width:3.662880px;}
._2d{width:5.079600px;}
._2e{width:6.121680px;}
._31{width:7.396320px;}
._30{width:8.663040px;}
._2f{width:10.025280px;}
._35{width:11.414160px;}
._34{width:12.420000px;}
._3a{width:14.750400px;}
._36{width:15.949680px;}
._33{width:17.581680px;}
._32{width:18.794160px;}
._44{width:20.017440px;}
._43{width:21.934080px;}
._3d{width:23.186880px;}
._38{width:24.788640px;}
._37{width:25.796880px;}
._4e{width:27.443280px;}
._49{width:29.103120px;}
._4f{width:30.238560px;}
._40{width:32.091120px;}
._4a{width:35.437680px;}
._46{width:37.507680px;}
._41{width:41.156640px;}
._3c{width:42.387840px;}
._47{width:46.134720px;}
._42{width:47.628720px;}
._3b{width:51.214320px;}
._4d{width:60.118560px;}
._4b{width:62.519040px;}
._48{width:65.616480px;}
._4c{width:69.897600px;}
._51{width:71.054640px;}
._45{width:87.301920px;}
._3f{width:92.090160px;}
._3e{width:93.823200px;}
._52{width:151.403520px;}
._50{width:220.514400px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y93{bottom:6.660000px;}
.y161{bottom:6.705000px;}
.y91{bottom:17.100000px;}
.yb8{bottom:17.274000px;}
.y96{bottom:17.280000px;}
.ybc{bottom:17.310000px;}
.yba{bottom:27.714000px;}
.y92{bottom:27.720000px;}
.ybd{bottom:27.750000px;}
.y9b{bottom:27.765000px;}
.y99{bottom:38.160000px;}
.y9c{bottom:38.205000px;}
.yb7{bottom:38.334000px;}
.y95{bottom:38.340000px;}
.yb9{bottom:48.774000px;}
.y97{bottom:48.780000px;}
.y9d{bottom:48.825000px;}
.yb6{bottom:59.220000px;}
.ybf{bottom:59.400000px;}
.y6{bottom:59.760000px;}
.yb5{bottom:69.840000px;}
.y19b{bottom:90.396000px;}
.y62{bottom:92.016000px;}
.y128{bottom:94.716000px;}
.y1c0{bottom:99.216000px;}
.y8f{bottom:100.116000px;}
.ydd{bottom:103.536000px;}
.y19a{bottom:112.176000px;}
.y61{bottom:113.076000px;}
.y127{bottom:115.776000px;}
.y8e{bottom:121.176000px;}
.y102{bottom:122.796000px;}
.ydc{bottom:124.596000px;}
.y153{bottom:125.316000px;}
.y181{bottom:129.816000px;}
.y2e{bottom:131.616000px;}
.y199{bottom:133.236000px;}
.y60{bottom:134.136000px;}
.y126{bottom:136.836000px;}
.y8d{bottom:142.236000px;}
.y101{bottom:143.856000px;}
.ydb{bottom:145.656000px;}
.y152{bottom:147.096000px;}
.y180{bottom:151.770000px;}
.y2d{bottom:152.850000px;}
.y198{bottom:154.290000px;}
.y5f{bottom:155.190000px;}
.y125{bottom:157.890000px;}
.y8c{bottom:163.290000px;}
.y100{bottom:164.910000px;}
.yda{bottom:166.710000px;}
.y151{bottom:168.150000px;}
.y17f{bottom:173.550000px;}
.y2c{bottom:174.630000px;}
.y197{bottom:175.350000px;}
.y5e{bottom:176.250000px;}
.y124{bottom:178.950000px;}
.y8b{bottom:184.350000px;}
.yff{bottom:185.970000px;}
.yd9{bottom:187.770000px;}
.y150{bottom:189.210000px;}
.y17e{bottom:194.610000px;}
.y2b{bottom:195.690000px;}
.y1bf{bottom:195.870000px;}
.y196{bottom:196.410000px;}
.y5d{bottom:197.310000px;}
.y123{bottom:200.910000px;}
.y8a{bottom:206.130000px;}
.yfe{bottom:207.030000px;}
.yd8{bottom:208.830000px;}
.y14f{bottom:210.270000px;}
.yb4{bottom:211.530000px;}
.y17d{bottom:216.390000px;}
.y2a{bottom:216.750000px;}
.y1be{bottom:216.930000px;}
.y195{bottom:217.470000px;}
.y5c{bottom:218.370000px;}
.y122{bottom:222.690000px;}
.y89{bottom:227.370000px;}
.yfd{bottom:228.090000px;}
.yd7{bottom:229.890000px;}
.y14e{bottom:232.050000px;}
.y17c{bottom:237.450000px;}
.y1bd{bottom:237.990000px;}
.y29{bottom:238.530000px;}
.y5b{bottom:239.430000px;}
.y121{bottom:243.750000px;}
.yd6{bottom:247.530000px;}
.y88{bottom:249.150000px;}
.y14d{bottom:253.290000px;}
.y1bc{bottom:259.050000px;}
.y17b{bottom:259.410000px;}
.y28{bottom:259.590000px;}
.y5a{bottom:260.490000px;}
.y120{bottom:264.810000px;}
.y87{bottom:270.210000px;}
.y14c{bottom:275.070000px;}
.y1bb{bottom:280.110000px;}
.y194{bottom:280.650000px;}
.y27{bottom:280.830000px;}
.y17a{bottom:281.190000px;}
.y11f{bottom:286.590000px;}
.y59{bottom:290.550000px;}
.y86{bottom:291.270000px;}
.y14b{bottom:296.130000px;}
.y1ba{bottom:301.170000px;}
.yb3{bottom:301.710000px;}
.y179{bottom:302.250000px;}
.y26{bottom:302.610000px;}
.y11e{bottom:307.650000px;}
.y58{bottom:311.610000px;}
.y85{bottom:313.050000px;}
.yd5{bottom:316.830000px;}
.y14a{bottom:317.910000px;}
.y1b9{bottom:322.230000px;}
.y193{bottom:322.770000px;}
.y178{bottom:323.310000px;}
.y25{bottom:323.670000px;}
.y11d{bottom:329.655000px;}
.y57{bottom:332.715000px;}
.y84{bottom:334.155000px;}
.yfc{bottom:334.335000px;}
.y149{bottom:339.015000px;}
.y1b8{bottom:343.335000px;}
.y192{bottom:343.875000px;}
.y177{bottom:344.415000px;}
.y24{bottom:344.775000px;}
.y11c{bottom:351.435000px;}
.y56{bottom:353.775000px;}
.yb2{bottom:353.955000px;}
.y83{bottom:355.215000px;}
.yfb{bottom:356.115000px;}
.y1b7{bottom:364.395000px;}
.y191{bottom:365.655000px;}
.y148{bottom:369.075000px;}
.y11b{bottom:373.215000px;}
.y176{bottom:374.475000px;}
.y55{bottom:374.835000px;}
.yb1{bottom:375.015000px;}
.y82{bottom:376.275000px;}
.yfa{bottom:377.175000px;}
.y1b6{bottom:385.455000px;}
.yd4{bottom:385.995000px;}
.y190{bottom:386.895000px;}
.y23{bottom:389.235000px;}
.y147{bottom:390.315000px;}
.y11a{bottom:394.275000px;}
.y175{bottom:395.535000px;}
.y54{bottom:395.895000px;}
.yb0{bottom:396.075000px;}
.y81{bottom:397.335000px;}
.yf9{bottom:398.955000px;}
.y1b5{bottom:406.515000px;}
.y18f{bottom:408.675000px;}
.y146{bottom:412.095000px;}
.y119{bottom:415.515000px;}
.y174{bottom:416.595000px;}
.y53{bottom:416.955000px;}
.yaf{bottom:417.135000px;}
.y80{bottom:418.395000px;}
.y22{bottom:419.115000px;}
.yf8{bottom:420.015000px;}
.y1b4{bottom:427.575000px;}
.y18e{bottom:430.455000px;}
.y145{bottom:433.875000px;}
.y118{bottom:437.295000px;}
.y52{bottom:438.015000px;}
.yae{bottom:438.195000px;}
.y173{bottom:438.555000px;}
.y7f{bottom:439.455000px;}
.y21{bottom:440.175000px;}
.yf7{bottom:441.075000px;}
.y1b3{bottom:448.635000px;}
.y18d{bottom:451.515000px;}
.yd3{bottom:455.115000px;}
.y144{bottom:455.655000px;}
.y51{bottom:459.075000px;}
.yad{bottom:459.255000px;}
.y172{bottom:460.335000px;}
.y7e{bottom:460.515000px;}
.y20{bottom:461.235000px;}
.yf6{bottom:462.135000px;}
.y1b2{bottom:469.695000px;}
.y143{bottom:476.895000px;}
.yac{bottom:480.315000px;}
.y117{bottom:480.855000px;}
.y7d{bottom:481.575000px;}
.y171{bottom:482.115000px;}
.y1f{bottom:482.295000px;}
.yf5{bottom:483.195000px;}
.y50{bottom:489.135000px;}
.y1b1{bottom:490.755000px;}
.y142{bottom:498.675000px;}
.yab{bottom:501.375000px;}
.y116{bottom:501.915000px;}
.y7c{bottom:502.635000px;}
.y170{bottom:503.175000px;}
.y1e{bottom:503.355000px;}
.yf4{bottom:504.255000px;}
.y4f{bottom:510.195000px;}
.y1b0{bottom:511.815000px;}
.y141{bottom:520.635000px;}
.y115{bottom:522.975000px;}
.yaa{bottom:523.155000px;}
.y7b{bottom:523.695000px;}
.yd2{bottom:524.235000px;}
.y1d{bottom:524.415000px;}
.y16f{bottom:524.955000px;}
.yf3{bottom:525.315000px;}
.y4e{bottom:531.255000px;}
.y1af{bottom:532.875000px;}
.y140{bottom:542.415000px;}
.y114{bottom:544.035000px;}
.ya9{bottom:544.215000px;}
.y18c{bottom:544.755000px;}
.y1c{bottom:545.475000px;}
.y16e{bottom:546.195000px;}
.yf2{bottom:546.375000px;}
.y4d{bottom:553.035000px;}
.y7a{bottom:553.755000px;}
.y1ae{bottom:553.935000px;}
.y13f{bottom:563.475000px;}
.y113{bottom:565.095000px;}
.ya8{bottom:565.995000px;}
.y1b{bottom:566.535000px;}
.yf1{bottom:567.435000px;}
.y16d{bottom:567.975000px;}
.y4c{bottom:574.095000px;}
.y1ad{bottom:574.995000px;}
.y79{bottom:575.715000px;}
.yd1{bottom:576.435000px;}
.y13e{bottom:585.435000px;}
.y112{bottom:586.155000px;}
.ya7{bottom:587.055000px;}
.y1a{bottom:587.595000px;}
.yf0{bottom:588.495000px;}
.y4b{bottom:595.365000px;}
.y1ac{bottom:596.085000px;}
.y78{bottom:597.525000px;}
.y16c{bottom:598.065000px;}
.y111{bottom:607.245000px;}
.ya6{bottom:608.325000px;}
.y19{bottom:608.685000px;}
.yef{bottom:609.585000px;}
.y4a{bottom:617.145000px;}
.yd0{bottom:618.585000px;}
.y77{bottom:619.485000px;}
.y16b{bottom:620.025000px;}
.y110{bottom:628.305000px;}
.y13d{bottom:629.025000px;}
.y18{bottom:629.745000px;}
.y18b{bottom:629.925000px;}
.ya5{bottom:630.105000px;}
.yee{bottom:631.545000px;}
.y49{bottom:638.205000px;}
.ycf{bottom:639.645000px;}
.y76{bottom:641.265000px;}
.y16a{bottom:641.805000px;}
.y10f{bottom:649.365000px;}
.y13c{bottom:650.085000px;}
.y17{bottom:650.805000px;}
.ya4{bottom:651.165000px;}
.y18a{bottom:651.705000px;}
.yed{bottom:653.325000px;}
.y1ab{bottom:659.265000px;}
.y48{bottom:659.985000px;}
.yce{bottom:660.705000px;}
.y75{bottom:663.045000px;}
.y169{bottom:663.585000px;}
.y10e{bottom:670.425000px;}
.y13b{bottom:671.145000px;}
.y16{bottom:671.865000px;}
.ya3{bottom:672.225000px;}
.y189{bottom:672.765000px;}
.yec{bottom:674.385000px;}
.y1aa{bottom:680.325000px;}
.y47{bottom:681.225000px;}
.ycd{bottom:681.945000px;}
.y74{bottom:684.105000px;}
.y168{bottom:684.645000px;}
.y10d{bottom:691.485000px;}
.y13a{bottom:692.205000px;}
.y15{bottom:692.925000px;}
.ya2{bottom:693.285000px;}
.y188{bottom:693.825000px;}
.y1a9{bottom:701.385000px;}
.y46{bottom:703.005000px;}
.ycc{bottom:703.545000px;}
.yeb{bottom:704.445000px;}
.y167{bottom:705.705000px;}
.y10c{bottom:712.545000px;}
.y14{bottom:713.985000px;}
.y73{bottom:714.165000px;}
.ya1{bottom:714.345000px;}
.y187{bottom:714.885000px;}
.y139{bottom:722.265000px;}
.y1a8{bottom:722.445000px;}
.y45{bottom:724.065000px;}
.ycb{bottom:724.785000px;}
.yea{bottom:725.505000px;}
.y166{bottom:726.765000px;}
.y10b{bottom:733.605000px;}
.y13{bottom:735.045000px;}
.y72{bottom:735.225000px;}
.ya0{bottom:735.405000px;}
.y186{bottom:736.665000px;}
.y138{bottom:743.325000px;}
.y1a7{bottom:743.505000px;}
.y44{bottom:745.125000px;}
.yca{bottom:746.565000px;}
.y10a{bottom:754.665000px;}
.y12{bottom:756.105000px;}
.y71{bottom:756.285000px;}
.y9f{bottom:756.465000px;}
.y165{bottom:756.825000px;}
.y185{bottom:757.725000px;}
.y137{bottom:764.385000px;}
.y1a6{bottom:764.565000px;}
.y43{bottom:766.005000px;}
.yc9{bottom:767.625000px;}
.y9e{bottom:774.105000px;}
.y109{bottom:775.725000px;}
.y11{bottom:777.165000px;}
.y70{bottom:777.345000px;}
.y164{bottom:778.785000px;}
.y136{bottom:785.445000px;}
.y1a5{bottom:785.625000px;}
.y42{bottom:787.065000px;}
.y184{bottom:787.785000px;}
.yc8{bottom:789.405000px;}
.ye9{bottom:797.685000px;}
.y10{bottom:798.225000px;}
.y6f{bottom:798.405000px;}
.y163{bottom:800.565000px;}
.y108{bottom:805.785000px;}
.y135{bottom:806.505000px;}
.y1a4{bottom:806.685000px;}
.y41{bottom:808.125000px;}
.y183{bottom:809.025000px;}
.yc7{bottom:810.465000px;}
.ye8{bottom:818.745000px;}
.yf{bottom:819.285000px;}
.y6e{bottom:819.465000px;}
.y162{bottom:822.345000px;}
.y107{bottom:826.845000px;}
.y134{bottom:827.565000px;}
.y1a3{bottom:827.745000px;}
.y40{bottom:829.185000px;}
.y182{bottom:830.805000px;}
.yc6{bottom:831.525000px;}
.ye7{bottom:839.805000px;}
.ye{bottom:840.345000px;}
.y6d{bottom:840.525000px;}
.y9a{bottom:843.405000px;}
.y106{bottom:847.905000px;}
.y133{bottom:848.625000px;}
.y1a2{bottom:848.805000px;}
.y3f{bottom:850.245000px;}
.yc5{bottom:852.585000px;}
.ye6{bottom:860.865000px;}
.y160{bottom:861.225000px;}
.yd{bottom:861.405000px;}
.y6c{bottom:861.585000px;}
.y105{bottom:869.190000px;}
.y1a1{bottom:869.910000px;}
.y3e{bottom:871.350000px;}
.yc4{bottom:873.690000px;}
.y132{bottom:878.730000px;}
.ye5{bottom:881.970000px;}
.y6b{bottom:882.690000px;}
.yc{bottom:884.670000px;}
.y15f{bottom:888.270000px;}
.y104{bottom:890.970000px;}
.y3d{bottom:892.410000px;}
.yc3{bottom:894.750000px;}
.y131{bottom:899.790000px;}
.y6a{bottom:903.750000px;}
.yb{bottom:905.730000px;}
.ye4{bottom:912.030000px;}
.y98{bottom:912.570000px;}
.y103{bottom:912.750000px;}
.y3c{bottom:913.470000px;}
.y15e{bottom:915.450000px;}
.yc2{bottom:915.810000px;}
.y130{bottom:921.750000px;}
.y69{bottom:924.810000px;}
.ya{bottom:927.690000px;}
.ye3{bottom:932.910000px;}
.y3b{bottom:934.530000px;}
.yc1{bottom:936.870000px;}
.y15d{bottom:942.450000px;}
.y12f{bottom:943.530000px;}
.y68{bottom:945.870000px;}
.y9{bottom:950.010000px;}
.ye2{bottom:953.970000px;}
.yc0{bottom:954.690000px;}
.y3a{bottom:955.590000px;}
.y12e{bottom:965.310000px;}
.y67{bottom:966.930000px;}
.y15c{bottom:973.590000px;}
.ye1{bottom:975.030000px;}
.y8{bottom:975.210000px;}
.y39{bottom:976.650000px;}
.y94{bottom:981.690000px;}
.y12d{bottom:986.370000px;}
.y66{bottom:987.990000px;}
.y15b{bottom:994.650000px;}
.ye0{bottom:996.090000px;}
.y38{bottom:997.710000px;}
.y12c{bottom:1008.330000px;}
.y7{bottom:1008.870000px;}
.y15a{bottom:1015.710000px;}
.ydf{bottom:1017.150000px;}
.y65{bottom:1018.050000px;}
.y37{bottom:1018.770000px;}
.ybe{bottom:1023.810000px;}
.y12b{bottom:1030.110000px;}
.y159{bottom:1036.770000px;}
.y1a0{bottom:1038.210000px;}
.yde{bottom:1038.390000px;}
.y64{bottom:1039.110000px;}
.y36{bottom:1039.830000px;}
.y5{bottom:1049.010000px;}
.y90{bottom:1050.990000px;}
.y12a{bottom:1051.890000px;}
.y158{bottom:1058.550000px;}
.y19f{bottom:1059.270000px;}
.y63{bottom:1060.170000px;}
.y35{bottom:1060.890000px;}
.y129{bottom:1072.950000px;}
.y19e{bottom:1080.330000px;}
.y157{bottom:1080.510000px;}
.y4{bottom:1081.230000px;}
.y34{bottom:1081.950000px;}
.y19d{bottom:1101.390000px;}
.y156{bottom:1102.290000px;}
.y33{bottom:1103.010000px;}
.y3{bottom:1113.270000px;}
.ybb{bottom:1113.990000px;}
.y19c{bottom:1122.630000px;}
.y155{bottom:1123.350000px;}
.y32{bottom:1124.070000px;}
.y154{bottom:1144.440000px;}
.y31{bottom:1145.160000px;}
.y2{bottom:1145.700000px;}
.y30{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y2f{bottom:1193.220000px;}
.he{height:21.060000px;}
.hf{height:21.096000px;}
.h9{height:42.120000px;}
.hc{height:42.156000px;}
.h8{height:48.088125px;}
.h7{height:59.439023px;}
.h5{height:61.189805px;}
.ha{height:63.180000px;}
.hb{height:63.216000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.hd{height:84.240000px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:69.696000px;}
.w10{width:78.156000px;}
.w7{width:88.596000px;}
.wf{width:89.640000px;}
.wb{width:111.816000px;}
.w3{width:114.156000px;}
.wc{width:198.030000px;}
.w8{width:203.970000px;}
.w6{width:207.210000px;}
.w4{width:214.590000px;}
.wa{width:218.010000px;}
.wd{width:223.770000px;}
.w5{width:233.310000px;}
.we{width:236.010000px;}
.w9{width:258.690000px;}
.w11{width:288.390000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:1.080000px;}
.x6{left:53.999987px;}
.x9{left:56.340000px;}
.x19{left:75.599987px;}
.x7{left:80.999987px;}
.x1a{left:102.635987px;}
.x8{left:108.035987px;}
.x18{left:135.035987px;}
.xe{left:148.716000px;}
.x5{left:156.449987px;}
.x11{left:171.930000px;}
.xb{left:174.270000px;}
.x14{left:178.050000px;}
.x15{left:271.470000px;}
.x3{left:286.634987px;}
.x2{left:350.714987px;}
.x16{left:353.415000px;}
.xf{left:356.475000px;}
.x12{left:373.575000px;}
.xc{left:392.655000px;}
.x4{left:419.114987px;}
.x1{left:479.264987px;}
.x13{left:600.945000px;}
.x10{left:618.945000px;}
.xd{left:629.745000px;}
.x17{left:645.405000px;}
.x1b{left:839.309987px;}
@media print{
.v1{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.880000pt;}
.ls18{letter-spacing:-0.693333pt;}
.ls28{letter-spacing:-0.586667pt;}
.ls9{letter-spacing:-0.412267pt;}
.lsb{letter-spacing:-0.269333pt;}
.ls1a{letter-spacing:-0.190933pt;}
.ls26{letter-spacing:-0.185600pt;}
.ls35{letter-spacing:-0.165867pt;}
.ls2c{letter-spacing:-0.156267pt;}
.ls8{letter-spacing:-0.146133pt;}
.ls7{letter-spacing:-0.117867pt;}
.lsf{letter-spacing:-0.102933pt;}
.ls27{letter-spacing:-0.095467pt;}
.ls19{letter-spacing:-0.061867pt;}
.ls43{letter-spacing:-0.054400pt;}
.ls17{letter-spacing:-0.051840pt;}
.ls2e{letter-spacing:-0.033920pt;}
.ls42{letter-spacing:-0.001280pt;}
.ls5{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.011520pt;}
.ls41{letter-spacing:0.016640pt;}
.ls6{letter-spacing:0.034560pt;}
.lse{letter-spacing:0.058667pt;}
.ls40{letter-spacing:0.058880pt;}
.ls1e{letter-spacing:0.059733pt;}
.ls44{letter-spacing:0.066667pt;}
.ls36{letter-spacing:0.082667pt;}
.ls46{letter-spacing:0.120320pt;}
.lsd{letter-spacing:0.124800pt;}
.ls2d{letter-spacing:0.127467pt;}
.ls33{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.lsa{letter-spacing:0.133333pt;}
.ls23{letter-spacing:0.154880pt;}
.ls11{letter-spacing:0.159360pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls3f{letter-spacing:0.160533pt;}
.lsc{letter-spacing:0.165867pt;}
.ls25{letter-spacing:0.194133pt;}
.ls2b{letter-spacing:0.216533pt;}
.ls1{letter-spacing:0.239787pt;}
.ls49{letter-spacing:0.272000pt;}
.ls1c{letter-spacing:0.279467pt;}
.ls48{letter-spacing:0.317333pt;}
.ls21{letter-spacing:0.426240pt;}
.ls2f{letter-spacing:0.449280pt;}
.ls3e{letter-spacing:0.536960pt;}
.ls22{letter-spacing:0.544640pt;}
.ls3{letter-spacing:0.549120pt;}
.ls1b{letter-spacing:0.570667pt;}
.ls31{letter-spacing:0.704000pt;}
.ls24{letter-spacing:1.872640pt;}
.ls29{letter-spacing:2.074880pt;}
.ls20{letter-spacing:5.072640pt;}
.ls32{letter-spacing:8.474880pt;}
.ls4b{letter-spacing:10.832640pt;}
.ls1f{letter-spacing:14.032640pt;}
.ls38{letter-spacing:14.698027pt;}
.ls13{letter-spacing:15.312640pt;}
.ls3d{letter-spacing:15.338027pt;}
.ls3b{letter-spacing:15.359360pt;}
.ls2a{letter-spacing:15.952640pt;}
.ls3a{letter-spacing:17.232640pt;}
.ls3c{letter-spacing:17.377280pt;}
.ls37{letter-spacing:17.712640pt;}
.ls15{letter-spacing:17.872640pt;}
.ls12{letter-spacing:19.152640pt;}
.ls16{letter-spacing:19.792640pt;}
.ls45{letter-spacing:21.712640pt;}
.ls2{letter-spacing:33.872640pt;}
.ls4a{letter-spacing:37.840640pt;}
.ls30{letter-spacing:40.912640pt;}
.ls10{letter-spacing:41.040640pt;}
.ls47{letter-spacing:49.211307pt;}
.ls34{letter-spacing:49.232640pt;}
.ls4{letter-spacing:56.912640pt;}
.ls14{letter-spacing:57.040640pt;}
.ws18{word-spacing:-53.131520pt;}
.wsa{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.957440pt;}
.ws5{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-13.160747pt;}
.ws4{word-spacing:-12.894613pt;}
.wsf{word-spacing:-12.575787pt;}
.ws1d{word-spacing:-12.322453pt;}
.ws10{word-spacing:-12.284587pt;}
.ws15{word-spacing:-12.199253pt;}
.ws7{word-spacing:-12.170987pt;}
.ws19{word-spacing:-12.165653pt;}
.ws16{word-spacing:-12.132587pt;}
.ws8{word-spacing:-12.129920pt;}
.ws1c{word-spacing:-12.071787pt;}
.ws11{word-spacing:-12.064853pt;}
.ws6{word-spacing:-12.005120pt;}
.ws1a{word-spacing:-12.003840pt;}
.ws17{word-spacing:-11.971200pt;}
.wsc{word-spacing:-11.953280pt;}
.ws1b{word-spacing:-11.950720pt;}
.wsd{word-spacing:-11.943253pt;}
.ws14{word-spacing:-11.909653pt;}
.ws9{word-spacing:-11.902187pt;}
.ws12{word-spacing:-11.819520pt;}
.wse{word-spacing:-11.814187pt;}
.ws13{word-spacing:-9.690880pt;}
.ws3{word-spacing:-0.058880pt;}
.wsb{word-spacing:0.000000pt;}
._22{margin-left:-473.705387pt;}
._23{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._16{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._1b{margin-left:-220.436480pt;}
._b{margin-left:-213.786880pt;}
._1a{margin-left:-198.021333pt;}
._25{margin-left:-190.878720pt;}
._10{margin-left:-180.664320pt;}
._1d{margin-left:-179.069440pt;}
._1c{margin-left:-177.471147pt;}
._24{margin-left:-168.524800pt;}
._e{margin-left:-151.408640pt;}
._d{margin-left:-147.039573pt;}
._f{margin-left:-137.675947pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._28{margin-left:-129.146880pt;}
._c{margin-left:-119.921920pt;}
._14{margin-left:-118.972160pt;}
._12{margin-left:-107.009920pt;}
._11{margin-left:-104.704000pt;}
._15{margin-left:-102.996480pt;}
._26{margin-left:-98.104320pt;}
._27{margin-left:-97.088000pt;}
._21{margin-left:-91.137280pt;}
._7{margin-left:-80.999893pt;}
._20{margin-left:-76.799787pt;}
._1f{margin-left:-74.240000pt;}
._17{margin-left:-72.312320pt;}
._19{margin-left:-59.292160pt;}
._13{margin-left:-50.508800pt;}
._18{margin-left:-43.665707pt;}
._1e{margin-left:-28.026880pt;}
._39{margin-left:-3.511253pt;}
._29{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._2a{width:1.106560pt;}
._2b{width:2.332587pt;}
._2c{width:3.255893pt;}
._2d{width:4.515200pt;}
._2e{width:5.441493pt;}
._31{width:6.574507pt;}
._30{width:7.700480pt;}
._2f{width:8.911360pt;}
._35{width:10.145920pt;}
._34{width:11.040000pt;}
._3a{width:13.111467pt;}
._36{width:14.177493pt;}
._33{width:15.628160pt;}
._32{width:16.705920pt;}
._44{width:17.793280pt;}
._43{width:19.496960pt;}
._3d{width:20.610560pt;}
._38{width:22.034347pt;}
._37{width:22.930560pt;}
._4e{width:24.394027pt;}
._49{width:25.869440pt;}
._4f{width:26.878720pt;}
._40{width:28.525440pt;}
._4a{width:31.500160pt;}
._46{width:33.340160pt;}
._41{width:36.583680pt;}
._3c{width:37.678080pt;}
._47{width:41.008640pt;}
._42{width:42.336640pt;}
._3b{width:45.523840pt;}
._4d{width:53.438720pt;}
._4b{width:55.572480pt;}
._48{width:58.325760pt;}
._4c{width:62.131200pt;}
._51{width:63.159680pt;}
._45{width:77.601707pt;}
._3f{width:81.857920pt;}
._3e{width:83.398400pt;}
._52{width:134.580907pt;}
._50{width:196.012800pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:5.920000pt;}
.y161{bottom:5.960000pt;}
.y91{bottom:15.200000pt;}
.yb8{bottom:15.354667pt;}
.y96{bottom:15.360000pt;}
.ybc{bottom:15.386667pt;}
.yba{bottom:24.634667pt;}
.y92{bottom:24.640000pt;}
.ybd{bottom:24.666667pt;}
.y9b{bottom:24.680000pt;}
.y99{bottom:33.920000pt;}
.y9c{bottom:33.960000pt;}
.yb7{bottom:34.074667pt;}
.y95{bottom:34.080000pt;}
.yb9{bottom:43.354667pt;}
.y97{bottom:43.360000pt;}
.y9d{bottom:43.400000pt;}
.yb6{bottom:52.640000pt;}
.ybf{bottom:52.800000pt;}
.y6{bottom:53.120000pt;}
.yb5{bottom:62.080000pt;}
.y19b{bottom:80.352000pt;}
.y62{bottom:81.792000pt;}
.y128{bottom:84.192000pt;}
.y1c0{bottom:88.192000pt;}
.y8f{bottom:88.992000pt;}
.ydd{bottom:92.032000pt;}
.y19a{bottom:99.712000pt;}
.y61{bottom:100.512000pt;}
.y127{bottom:102.912000pt;}
.y8e{bottom:107.712000pt;}
.y102{bottom:109.152000pt;}
.ydc{bottom:110.752000pt;}
.y153{bottom:111.392000pt;}
.y181{bottom:115.392000pt;}
.y2e{bottom:116.992000pt;}
.y199{bottom:118.432000pt;}
.y60{bottom:119.232000pt;}
.y126{bottom:121.632000pt;}
.y8d{bottom:126.432000pt;}
.y101{bottom:127.872000pt;}
.ydb{bottom:129.472000pt;}
.y152{bottom:130.752000pt;}
.y180{bottom:134.906667pt;}
.y2d{bottom:135.866667pt;}
.y198{bottom:137.146667pt;}
.y5f{bottom:137.946667pt;}
.y125{bottom:140.346667pt;}
.y8c{bottom:145.146667pt;}
.y100{bottom:146.586667pt;}
.yda{bottom:148.186667pt;}
.y151{bottom:149.466667pt;}
.y17f{bottom:154.266667pt;}
.y2c{bottom:155.226667pt;}
.y197{bottom:155.866667pt;}
.y5e{bottom:156.666667pt;}
.y124{bottom:159.066667pt;}
.y8b{bottom:163.866667pt;}
.yff{bottom:165.306667pt;}
.yd9{bottom:166.906667pt;}
.y150{bottom:168.186667pt;}
.y17e{bottom:172.986667pt;}
.y2b{bottom:173.946667pt;}
.y1bf{bottom:174.106667pt;}
.y196{bottom:174.586667pt;}
.y5d{bottom:175.386667pt;}
.y123{bottom:178.586667pt;}
.y8a{bottom:183.226667pt;}
.yfe{bottom:184.026667pt;}
.yd8{bottom:185.626667pt;}
.y14f{bottom:186.906667pt;}
.yb4{bottom:188.026667pt;}
.y17d{bottom:192.346667pt;}
.y2a{bottom:192.666667pt;}
.y1be{bottom:192.826667pt;}
.y195{bottom:193.306667pt;}
.y5c{bottom:194.106667pt;}
.y122{bottom:197.946667pt;}
.y89{bottom:202.106667pt;}
.yfd{bottom:202.746667pt;}
.yd7{bottom:204.346667pt;}
.y14e{bottom:206.266667pt;}
.y17c{bottom:211.066667pt;}
.y1bd{bottom:211.546667pt;}
.y29{bottom:212.026667pt;}
.y5b{bottom:212.826667pt;}
.y121{bottom:216.666667pt;}
.yd6{bottom:220.026667pt;}
.y88{bottom:221.466667pt;}
.y14d{bottom:225.146667pt;}
.y1bc{bottom:230.266667pt;}
.y17b{bottom:230.586667pt;}
.y28{bottom:230.746667pt;}
.y5a{bottom:231.546667pt;}
.y120{bottom:235.386667pt;}
.y87{bottom:240.186667pt;}
.y14c{bottom:244.506667pt;}
.y1bb{bottom:248.986667pt;}
.y194{bottom:249.466667pt;}
.y27{bottom:249.626667pt;}
.y17a{bottom:249.946667pt;}
.y11f{bottom:254.746667pt;}
.y59{bottom:258.266667pt;}
.y86{bottom:258.906667pt;}
.y14b{bottom:263.226667pt;}
.y1ba{bottom:267.706667pt;}
.yb3{bottom:268.186667pt;}
.y179{bottom:268.666667pt;}
.y26{bottom:268.986667pt;}
.y11e{bottom:273.466667pt;}
.y58{bottom:276.986667pt;}
.y85{bottom:278.266667pt;}
.yd5{bottom:281.626667pt;}
.y14a{bottom:282.586667pt;}
.y1b9{bottom:286.426667pt;}
.y193{bottom:286.906667pt;}
.y178{bottom:287.386667pt;}
.y25{bottom:287.706667pt;}
.y11d{bottom:293.026667pt;}
.y57{bottom:295.746667pt;}
.y84{bottom:297.026667pt;}
.yfc{bottom:297.186667pt;}
.y149{bottom:301.346667pt;}
.y1b8{bottom:305.186667pt;}
.y192{bottom:305.666667pt;}
.y177{bottom:306.146667pt;}
.y24{bottom:306.466667pt;}
.y11c{bottom:312.386667pt;}
.y56{bottom:314.466667pt;}
.yb2{bottom:314.626667pt;}
.y83{bottom:315.746667pt;}
.yfb{bottom:316.546667pt;}
.y1b7{bottom:323.906667pt;}
.y191{bottom:325.026667pt;}
.y148{bottom:328.066667pt;}
.y11b{bottom:331.746667pt;}
.y176{bottom:332.866667pt;}
.y55{bottom:333.186667pt;}
.yb1{bottom:333.346667pt;}
.y82{bottom:334.466667pt;}
.yfa{bottom:335.266667pt;}
.y1b6{bottom:342.626667pt;}
.yd4{bottom:343.106667pt;}
.y190{bottom:343.906667pt;}
.y23{bottom:345.986667pt;}
.y147{bottom:346.946667pt;}
.y11a{bottom:350.466667pt;}
.y175{bottom:351.586667pt;}
.y54{bottom:351.906667pt;}
.yb0{bottom:352.066667pt;}
.y81{bottom:353.186667pt;}
.yf9{bottom:354.626667pt;}
.y1b5{bottom:361.346667pt;}
.y18f{bottom:363.266667pt;}
.y146{bottom:366.306667pt;}
.y119{bottom:369.346667pt;}
.y174{bottom:370.306667pt;}
.y53{bottom:370.626667pt;}
.yaf{bottom:370.786667pt;}
.y80{bottom:371.906667pt;}
.y22{bottom:372.546667pt;}
.yf8{bottom:373.346667pt;}
.y1b4{bottom:380.066667pt;}
.y18e{bottom:382.626667pt;}
.y145{bottom:385.666667pt;}
.y118{bottom:388.706667pt;}
.y52{bottom:389.346667pt;}
.yae{bottom:389.506667pt;}
.y173{bottom:389.826667pt;}
.y7f{bottom:390.626667pt;}
.y21{bottom:391.266667pt;}
.yf7{bottom:392.066667pt;}
.y1b3{bottom:398.786667pt;}
.y18d{bottom:401.346667pt;}
.yd3{bottom:404.546667pt;}
.y144{bottom:405.026667pt;}
.y51{bottom:408.066667pt;}
.yad{bottom:408.226667pt;}
.y172{bottom:409.186667pt;}
.y7e{bottom:409.346667pt;}
.y20{bottom:409.986667pt;}
.yf6{bottom:410.786667pt;}
.y1b2{bottom:417.506667pt;}
.y143{bottom:423.906667pt;}
.yac{bottom:426.946667pt;}
.y117{bottom:427.426667pt;}
.y7d{bottom:428.066667pt;}
.y171{bottom:428.546667pt;}
.y1f{bottom:428.706667pt;}
.yf5{bottom:429.506667pt;}
.y50{bottom:434.786667pt;}
.y1b1{bottom:436.226667pt;}
.y142{bottom:443.266667pt;}
.yab{bottom:445.666667pt;}
.y116{bottom:446.146667pt;}
.y7c{bottom:446.786667pt;}
.y170{bottom:447.266667pt;}
.y1e{bottom:447.426667pt;}
.yf4{bottom:448.226667pt;}
.y4f{bottom:453.506667pt;}
.y1b0{bottom:454.946667pt;}
.y141{bottom:462.786667pt;}
.y115{bottom:464.866667pt;}
.yaa{bottom:465.026667pt;}
.y7b{bottom:465.506667pt;}
.yd2{bottom:465.986667pt;}
.y1d{bottom:466.146667pt;}
.y16f{bottom:466.626667pt;}
.yf3{bottom:466.946667pt;}
.y4e{bottom:472.226667pt;}
.y1af{bottom:473.666667pt;}
.y140{bottom:482.146667pt;}
.y114{bottom:483.586667pt;}
.ya9{bottom:483.746667pt;}
.y18c{bottom:484.226667pt;}
.y1c{bottom:484.866667pt;}
.y16e{bottom:485.506667pt;}
.yf2{bottom:485.666667pt;}
.y4d{bottom:491.586667pt;}
.y7a{bottom:492.226667pt;}
.y1ae{bottom:492.386667pt;}
.y13f{bottom:500.866667pt;}
.y113{bottom:502.306667pt;}
.ya8{bottom:503.106667pt;}
.y1b{bottom:503.586667pt;}
.yf1{bottom:504.386667pt;}
.y16d{bottom:504.866667pt;}
.y4c{bottom:510.306667pt;}
.y1ad{bottom:511.106667pt;}
.y79{bottom:511.746667pt;}
.yd1{bottom:512.386667pt;}
.y13e{bottom:520.386667pt;}
.y112{bottom:521.026667pt;}
.ya7{bottom:521.826667pt;}
.y1a{bottom:522.306667pt;}
.yf0{bottom:523.106667pt;}
.y4b{bottom:529.213333pt;}
.y1ac{bottom:529.853333pt;}
.y78{bottom:531.133333pt;}
.y16c{bottom:531.613333pt;}
.y111{bottom:539.773333pt;}
.ya6{bottom:540.733333pt;}
.y19{bottom:541.053333pt;}
.yef{bottom:541.853333pt;}
.y4a{bottom:548.573333pt;}
.yd0{bottom:549.853333pt;}
.y77{bottom:550.653333pt;}
.y16b{bottom:551.133333pt;}
.y110{bottom:558.493333pt;}
.y13d{bottom:559.133333pt;}
.y18{bottom:559.773333pt;}
.y18b{bottom:559.933333pt;}
.ya5{bottom:560.093333pt;}
.yee{bottom:561.373333pt;}
.y49{bottom:567.293333pt;}
.ycf{bottom:568.573333pt;}
.y76{bottom:570.013333pt;}
.y16a{bottom:570.493333pt;}
.y10f{bottom:577.213333pt;}
.y13c{bottom:577.853333pt;}
.y17{bottom:578.493333pt;}
.ya4{bottom:578.813333pt;}
.y18a{bottom:579.293333pt;}
.yed{bottom:580.733333pt;}
.y1ab{bottom:586.013333pt;}
.y48{bottom:586.653333pt;}
.yce{bottom:587.293333pt;}
.y75{bottom:589.373333pt;}
.y169{bottom:589.853333pt;}
.y10e{bottom:595.933333pt;}
.y13b{bottom:596.573333pt;}
.y16{bottom:597.213333pt;}
.ya3{bottom:597.533333pt;}
.y189{bottom:598.013333pt;}
.yec{bottom:599.453333pt;}
.y1aa{bottom:604.733333pt;}
.y47{bottom:605.533333pt;}
.ycd{bottom:606.173333pt;}
.y74{bottom:608.093333pt;}
.y168{bottom:608.573333pt;}
.y10d{bottom:614.653333pt;}
.y13a{bottom:615.293333pt;}
.y15{bottom:615.933333pt;}
.ya2{bottom:616.253333pt;}
.y188{bottom:616.733333pt;}
.y1a9{bottom:623.453333pt;}
.y46{bottom:624.893333pt;}
.ycc{bottom:625.373333pt;}
.yeb{bottom:626.173333pt;}
.y167{bottom:627.293333pt;}
.y10c{bottom:633.373333pt;}
.y14{bottom:634.653333pt;}
.y73{bottom:634.813333pt;}
.ya1{bottom:634.973333pt;}
.y187{bottom:635.453333pt;}
.y139{bottom:642.013333pt;}
.y1a8{bottom:642.173333pt;}
.y45{bottom:643.613333pt;}
.ycb{bottom:644.253333pt;}
.yea{bottom:644.893333pt;}
.y166{bottom:646.013333pt;}
.y10b{bottom:652.093333pt;}
.y13{bottom:653.373333pt;}
.y72{bottom:653.533333pt;}
.ya0{bottom:653.693333pt;}
.y186{bottom:654.813333pt;}
.y138{bottom:660.733333pt;}
.y1a7{bottom:660.893333pt;}
.y44{bottom:662.333333pt;}
.yca{bottom:663.613333pt;}
.y10a{bottom:670.813333pt;}
.y12{bottom:672.093333pt;}
.y71{bottom:672.253333pt;}
.y9f{bottom:672.413333pt;}
.y165{bottom:672.733333pt;}
.y185{bottom:673.533333pt;}
.y137{bottom:679.453333pt;}
.y1a6{bottom:679.613333pt;}
.y43{bottom:680.893333pt;}
.yc9{bottom:682.333333pt;}
.y9e{bottom:688.093333pt;}
.y109{bottom:689.533333pt;}
.y11{bottom:690.813333pt;}
.y70{bottom:690.973333pt;}
.y164{bottom:692.253333pt;}
.y136{bottom:698.173333pt;}
.y1a5{bottom:698.333333pt;}
.y42{bottom:699.613333pt;}
.y184{bottom:700.253333pt;}
.yc8{bottom:701.693333pt;}
.ye9{bottom:709.053333pt;}
.y10{bottom:709.533333pt;}
.y6f{bottom:709.693333pt;}
.y163{bottom:711.613333pt;}
.y108{bottom:716.253333pt;}
.y135{bottom:716.893333pt;}
.y1a4{bottom:717.053333pt;}
.y41{bottom:718.333333pt;}
.y183{bottom:719.133333pt;}
.yc7{bottom:720.413333pt;}
.ye8{bottom:727.773333pt;}
.yf{bottom:728.253333pt;}
.y6e{bottom:728.413333pt;}
.y162{bottom:730.973333pt;}
.y107{bottom:734.973333pt;}
.y134{bottom:735.613333pt;}
.y1a3{bottom:735.773333pt;}
.y40{bottom:737.053333pt;}
.y182{bottom:738.493333pt;}
.yc6{bottom:739.133333pt;}
.ye7{bottom:746.493333pt;}
.ye{bottom:746.973333pt;}
.y6d{bottom:747.133333pt;}
.y9a{bottom:749.693333pt;}
.y106{bottom:753.693333pt;}
.y133{bottom:754.333333pt;}
.y1a2{bottom:754.493333pt;}
.y3f{bottom:755.773333pt;}
.yc5{bottom:757.853333pt;}
.ye6{bottom:765.213333pt;}
.y160{bottom:765.533333pt;}
.yd{bottom:765.693333pt;}
.y6c{bottom:765.853333pt;}
.y105{bottom:772.613333pt;}
.y1a1{bottom:773.253333pt;}
.y3e{bottom:774.533333pt;}
.yc4{bottom:776.613333pt;}
.y132{bottom:781.093333pt;}
.ye5{bottom:783.973333pt;}
.y6b{bottom:784.613333pt;}
.yc{bottom:786.373333pt;}
.y15f{bottom:789.573333pt;}
.y104{bottom:791.973333pt;}
.y3d{bottom:793.253333pt;}
.yc3{bottom:795.333333pt;}
.y131{bottom:799.813333pt;}
.y6a{bottom:803.333333pt;}
.yb{bottom:805.093333pt;}
.ye4{bottom:810.693333pt;}
.y98{bottom:811.173333pt;}
.y103{bottom:811.333333pt;}
.y3c{bottom:811.973333pt;}
.y15e{bottom:813.733333pt;}
.yc2{bottom:814.053333pt;}
.y130{bottom:819.333333pt;}
.y69{bottom:822.053333pt;}
.ya{bottom:824.613333pt;}
.ye3{bottom:829.253333pt;}
.y3b{bottom:830.693333pt;}
.yc1{bottom:832.773333pt;}
.y15d{bottom:837.733333pt;}
.y12f{bottom:838.693333pt;}
.y68{bottom:840.773333pt;}
.y9{bottom:844.453333pt;}
.ye2{bottom:847.973333pt;}
.yc0{bottom:848.613333pt;}
.y3a{bottom:849.413333pt;}
.y12e{bottom:858.053333pt;}
.y67{bottom:859.493333pt;}
.y15c{bottom:865.413333pt;}
.ye1{bottom:866.693333pt;}
.y8{bottom:866.853333pt;}
.y39{bottom:868.133333pt;}
.y94{bottom:872.613333pt;}
.y12d{bottom:876.773333pt;}
.y66{bottom:878.213333pt;}
.y15b{bottom:884.133333pt;}
.ye0{bottom:885.413333pt;}
.y38{bottom:886.853333pt;}
.y12c{bottom:896.293333pt;}
.y7{bottom:896.773333pt;}
.y15a{bottom:902.853333pt;}
.ydf{bottom:904.133333pt;}
.y65{bottom:904.933333pt;}
.y37{bottom:905.573333pt;}
.ybe{bottom:910.053333pt;}
.y12b{bottom:915.653333pt;}
.y159{bottom:921.573333pt;}
.y1a0{bottom:922.853333pt;}
.yde{bottom:923.013333pt;}
.y64{bottom:923.653333pt;}
.y36{bottom:924.293333pt;}
.y5{bottom:932.453333pt;}
.y90{bottom:934.213333pt;}
.y12a{bottom:935.013333pt;}
.y158{bottom:940.933333pt;}
.y19f{bottom:941.573333pt;}
.y63{bottom:942.373333pt;}
.y35{bottom:943.013333pt;}
.y129{bottom:953.733333pt;}
.y19e{bottom:960.293333pt;}
.y157{bottom:960.453333pt;}
.y4{bottom:961.093333pt;}
.y34{bottom:961.733333pt;}
.y19d{bottom:979.013333pt;}
.y156{bottom:979.813333pt;}
.y33{bottom:980.453333pt;}
.y3{bottom:989.573333pt;}
.ybb{bottom:990.213333pt;}
.y19c{bottom:997.893333pt;}
.y155{bottom:998.533333pt;}
.y32{bottom:999.173333pt;}
.y154{bottom:1017.280000pt;}
.y31{bottom:1017.920000pt;}
.y2{bottom:1018.400000pt;}
.y30{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y2f{bottom:1060.640000pt;}
.he{height:18.720000pt;}
.hf{height:18.752000pt;}
.h9{height:37.440000pt;}
.hc{height:37.472000pt;}
.h8{height:42.745000pt;}
.h7{height:52.834688pt;}
.h5{height:54.390938pt;}
.ha{height:56.160000pt;}
.hb{height:56.192000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.hd{height:74.880000pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:61.952000pt;}
.w10{width:69.472000pt;}
.w7{width:78.752000pt;}
.wf{width:79.680000pt;}
.wb{width:99.392000pt;}
.w3{width:101.472000pt;}
.wc{width:176.026667pt;}
.w8{width:181.306667pt;}
.w6{width:184.186667pt;}
.w4{width:190.746667pt;}
.wa{width:193.786667pt;}
.wd{width:198.906667pt;}
.w5{width:207.386667pt;}
.we{width:209.786667pt;}
.w9{width:229.946667pt;}
.w11{width:256.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:0.960000pt;}
.x6{left:47.999988pt;}
.x9{left:50.080000pt;}
.x19{left:67.199988pt;}
.x7{left:71.999988pt;}
.x1a{left:91.231988pt;}
.x8{left:96.031988pt;}
.x18{left:120.031988pt;}
.xe{left:132.192000pt;}
.x5{left:139.066655pt;}
.x11{left:152.826667pt;}
.xb{left:154.906667pt;}
.x14{left:158.266667pt;}
.x15{left:241.306667pt;}
.x3{left:254.786655pt;}
.x2{left:311.746655pt;}
.x16{left:314.146667pt;}
.xf{left:316.866667pt;}
.x12{left:332.066667pt;}
.xc{left:349.026667pt;}
.x4{left:372.546655pt;}
.x1{left:426.013322pt;}
.x13{left:534.173333pt;}
.x10{left:550.173333pt;}
.xd{left:559.773333pt;}
.x17{left:573.693333pt;}
.x1b{left:746.053322pt;}
}




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