
    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_c0ca3b79d0c947eafc5e5d6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.144531;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_9abb9e54f57c072cdfdbd4fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_2f77d7dd911f6a80ca617a0a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.891602;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_59ddaa437e1477e5d4c389b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_f0877b5b9528824e99a0d86d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6d0ac76db94462187b126c27.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.991338;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_927f75247b835e56651a3b6a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959961;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_687b6e314b8327a91033cef2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_1f03fb28211d5a529f0519bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.812500;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_76ed261181188af828f27d9f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;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_1484c429d3fe2ecd4d34d5a3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_f175657033f09a19fc748303.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.976074;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7af585c6694c4f992a868434.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.722656;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;}
.m5{transform:matrix(0.000000,-0.264623,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.264623,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.264623,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.264625,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.264625,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.264625,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.236184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236184,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m6{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-35.280000px;}
.v8{vertical-align:-32.400000px;}
.v4{vertical-align:-10.800000px;}
.v6{vertical-align:-6.750000px;}
.v3{vertical-align:-3.908909px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:7.236000px;}
.v7{vertical-align:19.531560px;}
.v2{vertical-align:32.400000px;}
.ls32{letter-spacing:-1.915200px;}
.ls3e{letter-spacing:-1.845360px;}
.ls2e{letter-spacing:-1.532160px;}
.ls2d{letter-spacing:-1.244880px;}
.ls49{letter-spacing:-1.192320px;}
.ls3f{letter-spacing:-1.174320px;}
.ls2b{letter-spacing:-1.149120px;}
.ls1c{letter-spacing:-1.080000px;}
.ls33{letter-spacing:-0.861840px;}
.ls2a{letter-spacing:-0.766080px;}
.ls3c{letter-spacing:-0.670320px;}
.ls1d{letter-spacing:-0.648000px;}
.lse{letter-spacing:-0.587039px;}
.ls2c{letter-spacing:-0.574560px;}
.ls27{letter-spacing:-0.478800px;}
.ls16{letter-spacing:-0.434323px;}
.ls7{letter-spacing:-0.384480px;}
.ls4a{letter-spacing:-0.336960px;}
.ls48{letter-spacing:-0.331200px;}
.ls8{letter-spacing:-0.324000px;}
.ls4b{letter-spacing:-0.303579px;}
.lsa{letter-spacing:-0.288000px;}
.ls2f{letter-spacing:-0.287280px;}
.ls4f{letter-spacing:-0.276480px;}
.ls14{letter-spacing:-0.271452px;}
.ls11{letter-spacing:-0.246487px;}
.ls19{letter-spacing:-0.240480px;}
.lsc{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.191520px;}
.ls1{letter-spacing:-0.162000px;}
.ls1f{letter-spacing:-0.151789px;}
.ls47{letter-spacing:-0.132480px;}
.ls18{letter-spacing:-0.120240px;}
.ls6{letter-spacing:-0.113842px;}
.lsf{letter-spacing:-0.108581px;}
.ls5{letter-spacing:-0.108000px;}
.ls35{letter-spacing:-0.100940px;}
.ls29{letter-spacing:-0.095760px;}
.ls10{letter-spacing:-0.061622px;}
.ls0{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.036600px;}
.ls1e{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.084240px;}
.ls36{letter-spacing:0.095760px;}
.ls2{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.144000px;}
.ls4c{letter-spacing:0.168480px;}
.ls37{letter-spacing:0.191520px;}
.ls40{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.246487px;}
.ls15{letter-spacing:0.271452px;}
.ls31{letter-spacing:0.287280px;}
.ls4{letter-spacing:0.288000px;}
.ls34{letter-spacing:0.302820px;}
.ls41{letter-spacing:0.303579px;}
.ls3b{letter-spacing:0.324000px;}
.ls44{letter-spacing:0.331200px;}
.ls1a{letter-spacing:0.336960px;}
.ls30{letter-spacing:0.383040px;}
.ls45{letter-spacing:0.397440px;}
.ls12{letter-spacing:0.409584px;}
.ls17{letter-spacing:0.432000px;}
.ls4d{letter-spacing:0.455368px;}
.ls3d{letter-spacing:0.478800px;}
.ls42{letter-spacing:0.864000px;}
.ls38{letter-spacing:0.957600px;}
.ls43{letter-spacing:18.017280px;}
.ls24{letter-spacing:32.941440px;}
.lsb{letter-spacing:46.039680px;}
.ls22{letter-spacing:56.098080px;}
.ls23{letter-spacing:66.361680px;}
.ls4e{letter-spacing:71.352000px;}
.ls39{letter-spacing:128.484000px;}
.ls20{letter-spacing:159.444000px;}
.ls25{letter-spacing:223.524000px;}
.ls26{letter-spacing:224.964000px;}
.ls3a{letter-spacing:285.444000px;}
.ls21{letter-spacing:286.884000px;}
.lsd{letter-spacing:354.136279px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1f{word-spacing:-369.229010px;}
.ws20{word-spacing:-61.621800px;}
.ws7b{word-spacing:-46.637280px;}
.wse{word-spacing:-45.648000px;}
.ws11{word-spacing:-45.216000px;}
.ws8{word-spacing:-35.860229px;}
.ws19{word-spacing:-34.236000px;}
.ws14{word-spacing:-34.128000px;}
.ws1b{word-spacing:-34.020000px;}
.ws1a{word-spacing:-33.912000px;}
.ws1c{word-spacing:-33.804000px;}
.ws58{word-spacing:-31.888080px;}
.ws57{word-spacing:-31.792320px;}
.ws56{word-spacing:-31.600800px;}
.ws7a{word-spacing:-31.313520px;}
.ws77{word-spacing:-31.217760px;}
.ws12{word-spacing:-30.260160px;}
.ws2a{word-spacing:-30.024000px;}
.ws38{word-spacing:-29.808000px;}
.ws37{word-spacing:-29.700000px;}
.ws94{word-spacing:-26.619840px;}
.ws13{word-spacing:-22.752000px;}
.ws36{word-spacing:-21.396960px;}
.ws35{word-spacing:-21.144240px;}
.ws7{word-spacing:-19.003680px;}
.ws6{word-spacing:-18.884160px;}
.ws84{word-spacing:-18.414720px;}
.ws82{word-spacing:-18.282240px;}
.ws86{word-spacing:-18.083520px;}
.ws1e{word-spacing:-17.545955px;}
.ws87{word-spacing:-17.222400px;}
.ws21{word-spacing:-14.984150px;}
.ws23{word-spacing:-14.658408px;}
.ws85{word-spacing:-12.209760px;}
.ws90{word-spacing:-6.991920px;}
.ws3c{word-spacing:-3.888000px;}
.ws96{word-spacing:-3.790800px;}
.ws78{word-spacing:-3.587760px;}
.ws79{word-spacing:-3.396240px;}
.ws8e{word-spacing:-3.369600px;}
.ws3d{word-spacing:-3.240000px;}
.ws97{word-spacing:-3.073734px;}
.ws7f{word-spacing:-3.064320px;}
.ws73{word-spacing:-2.968560px;}
.ws2e{word-spacing:-2.916000px;}
.ws72{word-spacing:-2.585520px;}
.ws45{word-spacing:-2.502720px;}
.ws3a{word-spacing:-2.484000px;}
.ws10{word-spacing:-2.304000px;}
.ws3f{word-spacing:-2.160000px;}
.ws7c{word-spacing:-2.087280px;}
.wsc{word-spacing:-2.016000px;}
.ws9b{word-spacing:-1.935360px;}
.ws7e{word-spacing:-1.915200px;}
.ws5{word-spacing:-1.836000px;}
.ws88{word-spacing:-1.722240px;}
.ws9d{word-spacing:-1.658880px;}
.ws0{word-spacing:-1.620000px;}
.ws9f{word-spacing:-1.512000px;}
.ws66{word-spacing:-1.465920px;}
.ws39{word-spacing:-1.263600px;}
.ws9c{word-spacing:-1.244160px;}
.ws99{word-spacing:-1.202400px;}
.ws3b{word-spacing:-1.188000px;}
.ws7d{word-spacing:-1.134720px;}
.ws9a{word-spacing:-1.082160px;}
.ws8d{word-spacing:-1.010880px;}
.ws8c{word-spacing:-0.993600px;}
.ws93{word-spacing:-0.972000px;}
.ws5b{word-spacing:-0.766080px;}
.ws41{word-spacing:-0.756000px;}
.ws1{word-spacing:-0.648000px;}
.ws68{word-spacing:-0.605639px;}
.ws2c{word-spacing:-0.576720px;}
.ws91{word-spacing:-0.505440px;}
.ws29{word-spacing:-0.488614px;}
.ws3e{word-spacing:-0.432000px;}
.ws27{word-spacing:-0.409584px;}
.ws4{word-spacing:-0.298800px;}
.ws17{word-spacing:-0.288000px;}
.ws89{word-spacing:-0.264960px;}
.ws2f{word-spacing:-0.216000px;}
.ws3{word-spacing:-0.179280px;}
.ws32{word-spacing:-0.108000px;}
.ws69{word-spacing:-0.095760px;}
.ws44{word-spacing:-0.075895px;}
.ws43{word-spacing:-0.072000px;}
.ws15{word-spacing:0.000000px;}
.ws5a{word-spacing:0.095760px;}
.ws76{word-spacing:0.100940px;}
.ws33{word-spacing:0.108000px;}
.ws24{word-spacing:0.108581px;}
.ws30{word-spacing:0.120240px;}
.ws8b{word-spacing:0.132480px;}
.ws9e{word-spacing:0.138240px;}
.ws80{word-spacing:0.144000px;}
.ws74{word-spacing:0.191520px;}
.ws34{word-spacing:0.216000px;}
.ws31{word-spacing:0.240480px;}
.ws28{word-spacing:0.271452px;}
.ws25{word-spacing:0.308109px;}
.ws18{word-spacing:0.324000px;}
.ws8f{word-spacing:0.336960px;}
.wsf{word-spacing:0.432000px;}
.ws8a{word-spacing:0.463680px;}
.ws26{word-spacing:0.492974px;}
.ws2{word-spacing:0.537840px;}
.wsa{word-spacing:0.540000px;}
.ws16{word-spacing:0.576000px;}
.ws71{word-spacing:0.670320px;}
.ws2b{word-spacing:0.756000px;}
.wsb{word-spacing:0.768960px;}
.ws40{word-spacing:0.972000px;}
.ws67{word-spacing:1.053360px;}
.ws75{word-spacing:1.149120px;}
.ws9{word-spacing:1.188000px;}
.wsd{word-spacing:1.296000px;}
.ws95{word-spacing:1.366104px;}
.ws1d{word-spacing:1.404000px;}
.ws59{word-spacing:1.436400px;}
.ws42{word-spacing:1.728000px;}
.ws81{word-spacing:2.052000px;}
.ws98{word-spacing:3.564000px;}
.ws83{word-spacing:5.844960px;}
.ws70{word-spacing:9.767520px;}
.ws6e{word-spacing:10.916640px;}
.ws6b{word-spacing:11.108160px;}
.ws6a{word-spacing:11.778480px;}
.ws6c{word-spacing:11.970000px;}
.ws6f{word-spacing:12.640320px;}
.ws6d{word-spacing:12.736080px;}
.ws4b{word-spacing:25.336080px;}
.ws4c{word-spacing:25.632720px;}
.ws46{word-spacing:25.960320px;}
.ws48{word-spacing:26.051760px;}
.ws49{word-spacing:26.084160px;}
.ws4a{word-spacing:26.123760px;}
.ws47{word-spacing:26.840160px;}
.ws50{word-spacing:33.336000px;}
.ws55{word-spacing:33.899040px;}
.ws54{word-spacing:34.282080px;}
.ws4e{word-spacing:34.336080px;}
.ws53{word-spacing:34.441200px;}
.ws4d{word-spacing:34.599600px;}
.ws4f{word-spacing:34.763760px;}
.ws51{word-spacing:35.338320px;}
.ws52{word-spacing:35.850960px;}
.ws63{word-spacing:37.267920px;}
.ws5e{word-spacing:37.571760px;}
.ws61{word-spacing:37.879920px;}
.ws5f{word-spacing:38.086560px;}
.ws65{word-spacing:38.176560px;}
.ws60{word-spacing:38.363760px;}
.ws5c{word-spacing:38.880000px;}
.ws5d{word-spacing:38.912400px;}
.ws64{word-spacing:38.938320px;}
.ws62{word-spacing:39.942000px;}
.ws22{word-spacing:146.041176px;}
.ws92{word-spacing:862.499400px;}
.ws2d{word-spacing:1014.480000px;}
._2{margin-left:-14.821279px;}
._f{margin-left:-13.087440px;}
._8{margin-left:-10.793520px;}
._4{margin-left:-3.044921px;}
._0{margin-left:-1.135440px;}
._1{width:1.374480px;}
._3{width:3.142712px;}
._e{width:5.227961px;}
._9{width:38.470320px;}
._a{width:45.288720px;}
._d{width:200.330488px;}
._c{width:275.261128px;}
._5{width:417.888000px;}
._6{width:826.445520px;}
._b{width:1071.974880px;}
._7{width:1129.759080px;}
.fca{color:rgb(255,255,0);}
.fc9{color:transparent;}
.fc7{color:rgb(255,64,64);}
.fc8{color:rgb(255,0,0);}
.fc5{color:rgb(153,102,51);}
.fc4{color:rgb(218,31,40);}
.fc3{color:rgb(0,128,0);}
.fc2{color:rgb(45,162,191);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(70,70,70);}
.fsc{font-size:40.958400px;}
.fs14{font-size:43.920000px;}
.fsa{font-size:54.290400px;}
.fs1{font-size:59.760000px;}
.fsb{font-size:61.621800px;}
.fs9{font-size:65.226600px;}
.fs13{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fsf{font-size:75.894664px;}
.fse{font-size:84.240000px;}
.fs15{font-size:93.600000px;}
.fs7{font-size:95.760000px;}
.fs10{font-size:100.939903px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:113.841996px;}
.fsd{font-size:120.240000px;}
.fs16{font-size:138.240000px;}
.fs6{font-size:144.000000px;}
.fs12{font-size:151.789328px;}
.fs0{font-size:162.000000px;}
.fs11{font-size:167.760000px;}
.fs4{font-size:192.240000px;}
.fs17{font-size:216.000000px;}
.fs5{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:12.007500px;}
.y9a{bottom:25.680000px;}
.y56{bottom:32.814000px;}
.y91{bottom:37.163700px;}
.y99{bottom:45.468480px;}
.ya9{bottom:51.195000px;}
.y90{bottom:56.969460px;}
.y23{bottom:62.297100px;}
.y98{bottom:65.274240px;}
.y18{bottom:68.310000px;}
.y8{bottom:73.980000px;}
.y8f{bottom:76.775220px;}
.y7{bottom:77.497500px;}
.y82{bottom:77.751000px;}
.y3{bottom:81.000000px;}
.y97{bottom:85.080000px;}
.y24{bottom:92.078250px;}
.y8e{bottom:96.580980px;}
.y7f{bottom:99.351000px;}
.y81{bottom:110.151000px;}
.y32{bottom:111.116550px;}
.y8d{bottom:116.386740px;}
.ybe{bottom:117.360000px;}
.y7b{bottom:122.760000px;}
.y7e{bottom:131.751000px;}
.y8c{bottom:136.192500px;}
.yd2{bottom:136.822500px;}
.y80{bottom:142.551000px;}
.y3b{bottom:149.489225px;}
.ybd{bottom:149.760000px;}
.y5c{bottom:152.100000px;}
.y9e{bottom:153.350220px;}
.y7a{bottom:155.160000px;}
.y28{bottom:156.425250px;}
.y16{bottom:158.820000px;}
.y7d{bottom:163.260000px;}
.y22{bottom:172.875000px;}
.y9d{bottom:173.155980px;}
.yd1{bottom:176.062500px;}
.y33{bottom:180.350383px;}
.ybc{bottom:182.160000px;}
.y4a{bottom:185.830500px;}
.y79{bottom:187.560000px;}
.y9c{bottom:192.961740px;}
.y2f{bottom:196.262550px;}
.y7c{bottom:196.551000px;}
.y67{bottom:202.065180px;}
.y29{bottom:206.521717px;}
.y5b{bottom:210.420000px;}
.yaa{bottom:211.695000px;}
.y9b{bottom:212.767500px;}
.ybb{bottom:214.560000px;}
.yd0{bottom:215.122500px;}
.y49{bottom:218.230500px;}
.ybf{bottom:223.551000px;}
.y25{bottom:225.460350px;}
.y66{bottom:230.865000px;}
.y1e{bottom:232.026000px;}
.y3a{bottom:232.974287px;}
.y30{bottom:245.280000px;}
.y52{bottom:245.632500px;}
.y53{bottom:245.820000px;}
.y3d{bottom:249.179972px;}
.y34{bottom:249.584215px;}
.y48{bottom:250.630500px;}
.ycf{bottom:254.182500px;}
.y4d{bottom:254.296110px;}
.y2a{bottom:256.713191px;}
.y31{bottom:256.899600px;}
.y54{bottom:268.635000px;}
.y5a{bottom:268.740000px;}
.y26{bottom:274.477650px;}
.yf{bottom:282.735000px;}
.y47{bottom:283.030500px;}
.y27{bottom:284.144400px;}
.y20{bottom:284.497500px;}
.ya{bottom:287.175600px;}
.y6b{bottom:287.925000px;}
.y2{bottom:288.744000px;}
.yce{bottom:293.422500px;}
.y39{bottom:294.878916px;}
.y2b{bottom:306.809658px;}
.y1d{bottom:308.517000px;}
.yb2{bottom:313.582500px;}
.y46{bottom:315.430500px;}
.y65{bottom:317.265000px;}
.y35{bottom:318.723040px;}
.y9{bottom:318.992700px;}
.y59{bottom:320.580000px;}
.y5{bottom:326.655600px;}
.yb{bottom:329.338650px;}
.ycd{bottom:332.482500px;}
.y1{bottom:343.297500px;}
.y4c{bottom:343.780050px;}
.yb1{bottom:345.982500px;}
.y64{bottom:346.065000px;}
.yc5{bottom:346.866300px;}
.y2c{bottom:357.001133px;}
.y4{bottom:358.472700px;}
.y6a{bottom:360.465000px;}
.ya8{bottom:363.258540px;}
.ya4{bottom:366.413700px;}
.ycc{bottom:371.542500px;}
.y6{bottom:375.838650px;}
.yb0{bottom:378.382500px;}
.y58{bottom:378.900000px;}
.y1c{bottom:385.008000px;}
.ya3{bottom:386.219460px;}
.y36{bottom:387.956872px;}
.ya7{bottom:388.467360px;}
.y6e{bottom:389.182500px;}
.y69{bottom:403.665000px;}
.y76{bottom:405.233460px;}
.ya2{bottom:406.025220px;}
.y15{bottom:406.057500px;}
.y2d{bottom:407.097599px;}
.ycb{bottom:410.782500px;}
.ya6{bottom:413.676180px;}
.y96{bottom:414.981960px;}
.yc4{bottom:418.860000px;}
.y3c{bottom:418.891762px;}
.y38{bottom:425.040150px;}
.y45{bottom:425.347500px;}
.ya1{bottom:425.830980px;}
.y1b{bottom:427.560000px;}
.y63{bottom:432.465180px;}
.y95{bottom:434.787720px;}
.y57{bottom:437.220000px;}
.ya5{bottom:438.885000px;}
.yaf{bottom:443.182500px;}
.ya0{bottom:445.636740px;}
.y4e{bottom:446.321190px;}
.yca{bottom:449.842500px;}
.y94{bottom:454.593480px;}
.y37{bottom:457.095697px;}
.y2e{bottom:457.289074px;}
.y44{bottom:457.747500px;}
.y62{bottom:461.265000px;}
.y9f{bottom:465.442500px;}
.y84{bottom:466.560000px;}
.y93{bottom:474.399240px;}
.y68{bottom:475.665000px;}
.yd3{bottom:482.340000px;}
.y4f{bottom:485.459250px;}
.yc9{bottom:488.902500px;}
.y61{bottom:490.065000px;}
.y43{bottom:491.023740px;}
.y92{bottom:494.205000px;}
.y75{bottom:494.717400px;}
.y51{bottom:500.820000px;}
.yae{bottom:507.982500px;}
.yad{bottom:515.169000px;}
.y6d{bottom:518.782500px;}
.y42{bottom:527.035620px;}
.yc8{bottom:528.142500px;}
.yd{bottom:535.222500px;}
.y14{bottom:535.657500px;}
.y5f{bottom:535.747350px;}
.y5e{bottom:535.747500px;}
.yac{bottom:547.569000px;}
.yab{bottom:556.560000px;}
.y60{bottom:562.065000px;}
.y41{bottom:565.747500px;}
.yc7{bottom:567.202350px;}
.yc{bottom:567.622500px;}
.y50{bottom:571.987500px;}
.y5d{bottom:574.627500px;}
.y6c{bottom:583.582500px;}
.yb7{bottom:592.560000px;}
.y77{bottom:597.258540px;}
.y8b{bottom:605.631960px;}
.yc6{bottom:606.262500px;}
.y40{bottom:616.560000px;}
.yc3{bottom:621.360000px;}
.yb6{bottom:624.960000px;}
.y8a{bottom:625.437720px;}
.y78{bottom:636.396750px;}
.y89{bottom:645.061320px;}
.ye{bottom:650.497500px;}
.yc2{bottom:653.760000px;}
.yb5{bottom:657.360000px;}
.y71{bottom:664.560000px;}
.y88{bottom:665.049240px;}
.y13{bottom:665.257500px;}
.y19{bottom:676.620000px;}
.y83{bottom:682.560000px;}
.y87{bottom:684.855000px;}
.yc1{bottom:686.160000px;}
.y74{bottom:689.760000px;}
.y1a{bottom:691.185000px;}
.yba{bottom:698.760000px;}
.yb4{bottom:701.460000px;}
.yc0{bottom:718.560000px;}
.y17{bottom:719.820000px;}
.y12{bottom:720.307500px;}
.y70{bottom:721.260000px;}
.y73{bottom:722.160000px;}
.yb3{bottom:726.660000px;}
.y86{bottom:728.542080px;}
.yb9{bottom:731.160000px;}
.y55{bottom:745.560000px;}
.y1f{bottom:747.007500px;}
.y85{bottom:750.255000px;}
.y4b{bottom:750.382500px;}
.y3e{bottom:753.622500px;}
.y6f{bottom:753.660000px;}
.y72{bottom:754.560000px;}
.y11{bottom:763.507500px;}
.yb8{bottom:763.560000px;}
.y21{bottom:763.935000px;}
.y10{bottom:778.320000px;}
.h12{height:27.678919px;}
.h11{height:42.718331px;}
.h3{height:56.170898px;}
.hf{height:56.623191px;}
.h19{height:61.181046px;}
.h10{height:64.269612px;}
.h18{height:64.490485px;}
.he{height:68.029305px;}
.h21{height:69.086250px;}
.h23{height:69.132330px;}
.h22{height:69.178410px;}
.h25{height:79.180664px;}
.h17{height:81.000000px;}
.h1b{height:81.370791px;}
.h15{height:82.676953px;}
.h27{height:84.585938px;}
.h24{height:84.898125px;}
.h1c{height:85.772345px;}
.h26{height:87.859687px;}
.h16{height:91.771569px;}
.h1a{height:99.874688px;}
.h5{height:101.513672px;}
.h13{height:102.218555px;}
.h8{height:107.004806px;}
.h20{height:108.749672px;}
.hb{height:112.640625px;}
.h14{height:113.018555px;}
.h1f{height:122.362092px;}
.h1e{height:128.980970px;}
.h28{height:129.937500px;}
.hc{height:135.351562px;}
.h1{height:152.270508px;}
.h1d{height:174.968437px;}
.h9{height:180.694336px;}
.h29{height:203.027344px;}
.ha{height:270.703125px;}
.h7{height:303.480000px;}
.h6{height:335.340000px;}
.h4{height:343.080000px;}
.h2{height:374.940000px;}
.hd{height:512.437500px;}
.h0{height:810.000000px;}
.w3{width:101.160000px;}
.w4{width:105.120000px;}
.w2{width:141.840000px;}
.w1{width:153.180000px;}
.w5{width:593.062500px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1c{left:10.331550px;}
.x4{left:11.469900px;}
.x1b{left:18.080400px;}
.x48{left:28.800000px;}
.x27{left:29.925000px;}
.x1d{left:32.563350px;}
.x46{left:37.049100px;}
.x52{left:40.612500px;}
.xc{left:42.862500px;}
.x43{left:46.800000px;}
.x2c{left:48.674100px;}
.xe{left:50.737500px;}
.x5d{left:55.809000px;}
.x32{left:57.487500px;}
.x1a{left:64.850400px;}
.x50{left:66.112500px;}
.x51{left:70.434660px;}
.x17{left:74.521500px;}
.x67{left:77.760000px;}
.x37{left:82.987500px;}
.x3d{left:84.870000px;}
.x47{left:91.800000px;}
.x5e{left:96.930000px;}
.x49{left:100.809000px;}
.x36{left:108.487500px;}
.x3a{left:115.050000px;}
.x2d{left:118.687500px;}
.x4c{left:125.550000px;}
.x35{left:129.727500px;}
.x3f{left:157.050000px;}
.x5f{left:164.430000px;}
.x44{left:171.691200px;}
.x2a{left:183.316200px;}
.x9{left:190.080000px;}
.x68{left:193.518750px;}
.x34{left:210.486000px;}
.x13{left:227.550000px;}
.xa{left:235.440000px;}
.x63{left:261.720000px;}
.x10{left:274.800000px;}
.x19{left:277.851000px;}
.x26{left:291.141235px;}
.x16{left:304.210500px;}
.x23{left:307.464214px;}
.x31{left:312.675000px;}
.x22{left:314.196000px;}
.x24{left:332.467991px;}
.x25{left:369.922368px;}
.x53{left:372.112500px;}
.x54{left:376.434660px;}
.x29{left:381.385500px;}
.x59{left:390.879270px;}
.x45{left:412.280640px;}
.x42{left:414.258750px;}
.x3b{left:419.250000px;}
.x2b{left:423.905640px;}
.x58{left:428.323950px;}
.x3e{left:430.290000px;}
.x57{left:432.641250px;}
.x60{left:435.135000px;}
.x61{left:449.715000px;}
.x41{left:461.055000px;}
.x3c{left:469.650000px;}
.x62{left:471.855000px;}
.x40{left:475.095000px;}
.x64{left:520.200000px;}
.x15{left:525.286500px;}
.x20{left:530.241150px;}
.x21{left:534.575138px;}
.x18{left:543.112500px;}
.xd{left:546.862500px;}
.x28{left:550.800000px;}
.x6{left:568.800000px;}
.x5c{left:577.800000px;}
.x1f{left:580.424250px;}
.x30{left:584.737500px;}
.x1e{left:588.265350px;}
.x65{left:595.791000px;}
.x11{left:602.220000px;}
.x4d{left:610.612500px;}
.xf{left:618.675000px;}
.x12{left:625.800000px;}
.x1{left:653.940000px;}
.x33{left:666.300000px;}
.x4b{left:685.809000px;}
.x2e{left:695.362500px;}
.xb{left:703.260000px;}
.x5a{left:712.612500px;}
.x66{left:721.800000px;}
.x14{left:729.487500px;}
.x5b{left:737.925150px;}
.x4a{left:748.800000px;}
.x2{left:775.440000px;}
.x38{left:784.627500px;}
.x4e{left:797.362500px;}
.x4f{left:801.684660px;}
.x2f{left:805.987500px;}
.x39{left:822.427500px;}
.x3{left:842.400000px;}
.x55{left:848.550000px;}
.x5{left:853.869900px;}
.x7{left:877.140000px;}
.x8{left:888.679800px;}
.x56{left:903.862500px;}
@media print{
.v1{vertical-align:-31.360000pt;}
.v8{vertical-align:-28.800000pt;}
.v4{vertical-align:-9.600000pt;}
.v6{vertical-align:-6.000000pt;}
.v3{vertical-align:-3.474586pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:6.432000pt;}
.v7{vertical-align:17.361387pt;}
.v2{vertical-align:28.800000pt;}
.ls32{letter-spacing:-1.702400pt;}
.ls3e{letter-spacing:-1.640320pt;}
.ls2e{letter-spacing:-1.361920pt;}
.ls2d{letter-spacing:-1.106560pt;}
.ls49{letter-spacing:-1.059840pt;}
.ls3f{letter-spacing:-1.043840pt;}
.ls2b{letter-spacing:-1.021440pt;}
.ls1c{letter-spacing:-0.960000pt;}
.ls33{letter-spacing:-0.766080pt;}
.ls2a{letter-spacing:-0.680960pt;}
.ls3c{letter-spacing:-0.595840pt;}
.ls1d{letter-spacing:-0.576000pt;}
.lse{letter-spacing:-0.521813pt;}
.ls2c{letter-spacing:-0.510720pt;}
.ls27{letter-spacing:-0.425600pt;}
.ls16{letter-spacing:-0.386065pt;}
.ls7{letter-spacing:-0.341760pt;}
.ls4a{letter-spacing:-0.299520pt;}
.ls48{letter-spacing:-0.294400pt;}
.ls8{letter-spacing:-0.288000pt;}
.ls4b{letter-spacing:-0.269848pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls2f{letter-spacing:-0.255360pt;}
.ls4f{letter-spacing:-0.245760pt;}
.ls14{letter-spacing:-0.241291pt;}
.ls11{letter-spacing:-0.219100pt;}
.ls19{letter-spacing:-0.213760pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.170240pt;}
.ls1{letter-spacing:-0.144000pt;}
.ls1f{letter-spacing:-0.134924pt;}
.ls47{letter-spacing:-0.117760pt;}
.ls18{letter-spacing:-0.106880pt;}
.ls6{letter-spacing:-0.101193pt;}
.lsf{letter-spacing:-0.096516pt;}
.ls5{letter-spacing:-0.096000pt;}
.ls35{letter-spacing:-0.089724pt;}
.ls29{letter-spacing:-0.085120pt;}
.ls10{letter-spacing:-0.054775pt;}
.ls0{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.032533pt;}
.ls1e{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.074880pt;}
.ls36{letter-spacing:0.085120pt;}
.ls2{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.128000pt;}
.ls4c{letter-spacing:0.149760pt;}
.ls37{letter-spacing:0.170240pt;}
.ls40{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.219100pt;}
.ls15{letter-spacing:0.241291pt;}
.ls31{letter-spacing:0.255360pt;}
.ls4{letter-spacing:0.256000pt;}
.ls34{letter-spacing:0.269173pt;}
.ls41{letter-spacing:0.269848pt;}
.ls3b{letter-spacing:0.288000pt;}
.ls44{letter-spacing:0.294400pt;}
.ls1a{letter-spacing:0.299520pt;}
.ls30{letter-spacing:0.340480pt;}
.ls45{letter-spacing:0.353280pt;}
.ls12{letter-spacing:0.364075pt;}
.ls17{letter-spacing:0.384000pt;}
.ls4d{letter-spacing:0.404772pt;}
.ls3d{letter-spacing:0.425600pt;}
.ls42{letter-spacing:0.768000pt;}
.ls38{letter-spacing:0.851200pt;}
.ls43{letter-spacing:16.015360pt;}
.ls24{letter-spacing:29.281280pt;}
.lsb{letter-spacing:40.924160pt;}
.ls22{letter-spacing:49.864960pt;}
.ls23{letter-spacing:58.988160pt;}
.ls4e{letter-spacing:63.424000pt;}
.ls39{letter-spacing:114.208000pt;}
.ls20{letter-spacing:141.728000pt;}
.ls25{letter-spacing:198.688000pt;}
.ls26{letter-spacing:199.968000pt;}
.ls3a{letter-spacing:253.728000pt;}
.ls21{letter-spacing:255.008000pt;}
.lsd{letter-spacing:314.787804pt;}
.ws1f{word-spacing:-328.203565pt;}
.ws20{word-spacing:-54.774933pt;}
.ws7b{word-spacing:-41.455360pt;}
.wse{word-spacing:-40.576000pt;}
.ws11{word-spacing:-40.192000pt;}
.ws8{word-spacing:-31.875759pt;}
.ws19{word-spacing:-30.432000pt;}
.ws14{word-spacing:-30.336000pt;}
.ws1b{word-spacing:-30.240000pt;}
.ws1a{word-spacing:-30.144000pt;}
.ws1c{word-spacing:-30.048000pt;}
.ws58{word-spacing:-28.344960pt;}
.ws57{word-spacing:-28.259840pt;}
.ws56{word-spacing:-28.089600pt;}
.ws7a{word-spacing:-27.834240pt;}
.ws77{word-spacing:-27.749120pt;}
.ws12{word-spacing:-26.897920pt;}
.ws2a{word-spacing:-26.688000pt;}
.ws38{word-spacing:-26.496000pt;}
.ws37{word-spacing:-26.400000pt;}
.ws94{word-spacing:-23.662080pt;}
.ws13{word-spacing:-20.224000pt;}
.ws36{word-spacing:-19.019520pt;}
.ws35{word-spacing:-18.794880pt;}
.ws7{word-spacing:-16.892160pt;}
.ws6{word-spacing:-16.785920pt;}
.ws84{word-spacing:-16.368640pt;}
.ws82{word-spacing:-16.250880pt;}
.ws86{word-spacing:-16.074240pt;}
.ws1e{word-spacing:-15.596405pt;}
.ws87{word-spacing:-15.308800pt;}
.ws21{word-spacing:-13.319245pt;}
.ws23{word-spacing:-13.029696pt;}
.ws85{word-spacing:-10.853120pt;}
.ws90{word-spacing:-6.215040pt;}
.ws3c{word-spacing:-3.456000pt;}
.ws96{word-spacing:-3.369600pt;}
.ws78{word-spacing:-3.189120pt;}
.ws79{word-spacing:-3.018880pt;}
.ws8e{word-spacing:-2.995200pt;}
.ws3d{word-spacing:-2.880000pt;}
.ws97{word-spacing:-2.732208pt;}
.ws7f{word-spacing:-2.723840pt;}
.ws73{word-spacing:-2.638720pt;}
.ws2e{word-spacing:-2.592000pt;}
.ws72{word-spacing:-2.298240pt;}
.ws45{word-spacing:-2.224640pt;}
.ws3a{word-spacing:-2.208000pt;}
.ws10{word-spacing:-2.048000pt;}
.ws3f{word-spacing:-1.920000pt;}
.ws7c{word-spacing:-1.855360pt;}
.wsc{word-spacing:-1.792000pt;}
.ws9b{word-spacing:-1.720320pt;}
.ws7e{word-spacing:-1.702400pt;}
.ws5{word-spacing:-1.632000pt;}
.ws88{word-spacing:-1.530880pt;}
.ws9d{word-spacing:-1.474560pt;}
.ws0{word-spacing:-1.440000pt;}
.ws9f{word-spacing:-1.344000pt;}
.ws66{word-spacing:-1.303040pt;}
.ws39{word-spacing:-1.123200pt;}
.ws9c{word-spacing:-1.105920pt;}
.ws99{word-spacing:-1.068800pt;}
.ws3b{word-spacing:-1.056000pt;}
.ws7d{word-spacing:-1.008640pt;}
.ws9a{word-spacing:-0.961920pt;}
.ws8d{word-spacing:-0.898560pt;}
.ws8c{word-spacing:-0.883200pt;}
.ws93{word-spacing:-0.864000pt;}
.ws5b{word-spacing:-0.680960pt;}
.ws41{word-spacing:-0.672000pt;}
.ws1{word-spacing:-0.576000pt;}
.ws68{word-spacing:-0.538346pt;}
.ws2c{word-spacing:-0.512640pt;}
.ws91{word-spacing:-0.449280pt;}
.ws29{word-spacing:-0.434323pt;}
.ws3e{word-spacing:-0.384000pt;}
.ws27{word-spacing:-0.364075pt;}
.ws4{word-spacing:-0.265600pt;}
.ws17{word-spacing:-0.256000pt;}
.ws89{word-spacing:-0.235520pt;}
.ws2f{word-spacing:-0.192000pt;}
.ws3{word-spacing:-0.159360pt;}
.ws32{word-spacing:-0.096000pt;}
.ws69{word-spacing:-0.085120pt;}
.ws44{word-spacing:-0.067462pt;}
.ws43{word-spacing:-0.064000pt;}
.ws15{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.085120pt;}
.ws76{word-spacing:0.089724pt;}
.ws33{word-spacing:0.096000pt;}
.ws24{word-spacing:0.096516pt;}
.ws30{word-spacing:0.106880pt;}
.ws8b{word-spacing:0.117760pt;}
.ws9e{word-spacing:0.122880pt;}
.ws80{word-spacing:0.128000pt;}
.ws74{word-spacing:0.170240pt;}
.ws34{word-spacing:0.192000pt;}
.ws31{word-spacing:0.213760pt;}
.ws28{word-spacing:0.241291pt;}
.ws25{word-spacing:0.273875pt;}
.ws18{word-spacing:0.288000pt;}
.ws8f{word-spacing:0.299520pt;}
.wsf{word-spacing:0.384000pt;}
.ws8a{word-spacing:0.412160pt;}
.ws26{word-spacing:0.438199pt;}
.ws2{word-spacing:0.478080pt;}
.wsa{word-spacing:0.480000pt;}
.ws16{word-spacing:0.512000pt;}
.ws71{word-spacing:0.595840pt;}
.ws2b{word-spacing:0.672000pt;}
.wsb{word-spacing:0.683520pt;}
.ws40{word-spacing:0.864000pt;}
.ws67{word-spacing:0.936320pt;}
.ws75{word-spacing:1.021440pt;}
.ws9{word-spacing:1.056000pt;}
.wsd{word-spacing:1.152000pt;}
.ws95{word-spacing:1.214315pt;}
.ws1d{word-spacing:1.248000pt;}
.ws59{word-spacing:1.276800pt;}
.ws42{word-spacing:1.536000pt;}
.ws81{word-spacing:1.824000pt;}
.ws98{word-spacing:3.168000pt;}
.ws83{word-spacing:5.195520pt;}
.ws70{word-spacing:8.682240pt;}
.ws6e{word-spacing:9.703680pt;}
.ws6b{word-spacing:9.873920pt;}
.ws6a{word-spacing:10.469760pt;}
.ws6c{word-spacing:10.640000pt;}
.ws6f{word-spacing:11.235840pt;}
.ws6d{word-spacing:11.320960pt;}
.ws4b{word-spacing:22.520960pt;}
.ws4c{word-spacing:22.784640pt;}
.ws46{word-spacing:23.075840pt;}
.ws48{word-spacing:23.157120pt;}
.ws49{word-spacing:23.185920pt;}
.ws4a{word-spacing:23.221120pt;}
.ws47{word-spacing:23.857920pt;}
.ws50{word-spacing:29.632000pt;}
.ws55{word-spacing:30.132480pt;}
.ws54{word-spacing:30.472960pt;}
.ws4e{word-spacing:30.520960pt;}
.ws53{word-spacing:30.614400pt;}
.ws4d{word-spacing:30.755200pt;}
.ws4f{word-spacing:30.901120pt;}
.ws51{word-spacing:31.411840pt;}
.ws52{word-spacing:31.867520pt;}
.ws63{word-spacing:33.127040pt;}
.ws5e{word-spacing:33.397120pt;}
.ws61{word-spacing:33.671040pt;}
.ws5f{word-spacing:33.854720pt;}
.ws65{word-spacing:33.934720pt;}
.ws60{word-spacing:34.101120pt;}
.ws5c{word-spacing:34.560000pt;}
.ws5d{word-spacing:34.588800pt;}
.ws64{word-spacing:34.611840pt;}
.ws62{word-spacing:35.504000pt;}
.ws22{word-spacing:129.814379pt;}
.ws92{word-spacing:766.666133pt;}
.ws2d{word-spacing:901.760000pt;}
._2{margin-left:-13.174470pt;}
._f{margin-left:-11.633280pt;}
._8{margin-left:-9.594240pt;}
._4{margin-left:-2.706596pt;}
._0{margin-left:-1.009280pt;}
._1{width:1.221760pt;}
._3{width:2.793522pt;}
._e{width:4.647076pt;}
._9{width:34.195840pt;}
._a{width:40.256640pt;}
._d{width:178.071545pt;}
._c{width:244.676558pt;}
._5{width:371.456000pt;}
._6{width:734.618240pt;}
._b{width:952.866560pt;}
._7{width:1004.230293pt;}
.fsc{font-size:36.407467pt;}
.fs14{font-size:39.040000pt;}
.fsa{font-size:48.258133pt;}
.fs1{font-size:53.120000pt;}
.fsb{font-size:54.774933pt;}
.fs9{font-size:57.979200pt;}
.fs13{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fsf{font-size:67.461923pt;}
.fse{font-size:74.880000pt;}
.fs15{font-size:83.200000pt;}
.fs7{font-size:85.120000pt;}
.fs10{font-size:89.724358pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:101.192885pt;}
.fsd{font-size:106.880000pt;}
.fs16{font-size:122.880000pt;}
.fs6{font-size:128.000000pt;}
.fs12{font-size:134.923847pt;}
.fs0{font-size:144.000000pt;}
.fs11{font-size:149.120000pt;}
.fs4{font-size:170.880000pt;}
.fs17{font-size:192.000000pt;}
.fs5{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:10.673333pt;}
.y9a{bottom:22.826667pt;}
.y56{bottom:29.168000pt;}
.y91{bottom:33.034400pt;}
.y99{bottom:40.416427pt;}
.ya9{bottom:45.506667pt;}
.y90{bottom:50.639520pt;}
.y23{bottom:55.375200pt;}
.y98{bottom:58.021547pt;}
.y18{bottom:60.720000pt;}
.y8{bottom:65.760000pt;}
.y8f{bottom:68.244640pt;}
.y7{bottom:68.886667pt;}
.y82{bottom:69.112000pt;}
.y3{bottom:72.000000pt;}
.y97{bottom:75.626667pt;}
.y24{bottom:81.847333pt;}
.y8e{bottom:85.849760pt;}
.y7f{bottom:88.312000pt;}
.y81{bottom:97.912000pt;}
.y32{bottom:98.770267pt;}
.y8d{bottom:103.454880pt;}
.ybe{bottom:104.320000pt;}
.y7b{bottom:109.120000pt;}
.y7e{bottom:117.112000pt;}
.y8c{bottom:121.060000pt;}
.yd2{bottom:121.620000pt;}
.y80{bottom:126.712000pt;}
.y3b{bottom:132.879311pt;}
.ybd{bottom:133.120000pt;}
.y5c{bottom:135.200000pt;}
.y9e{bottom:136.311307pt;}
.y7a{bottom:137.920000pt;}
.y28{bottom:139.044667pt;}
.y16{bottom:141.173333pt;}
.y7d{bottom:145.120000pt;}
.y22{bottom:153.666667pt;}
.y9d{bottom:153.916427pt;}
.yd1{bottom:156.500000pt;}
.y33{bottom:160.311451pt;}
.ybc{bottom:161.920000pt;}
.y4a{bottom:165.182667pt;}
.y79{bottom:166.720000pt;}
.y9c{bottom:171.521547pt;}
.y2f{bottom:174.455600pt;}
.y7c{bottom:174.712000pt;}
.y67{bottom:179.613493pt;}
.y29{bottom:183.574859pt;}
.y5b{bottom:187.040000pt;}
.yaa{bottom:188.173333pt;}
.y9b{bottom:189.126667pt;}
.ybb{bottom:190.720000pt;}
.yd0{bottom:191.220000pt;}
.y49{bottom:193.982667pt;}
.ybf{bottom:198.712000pt;}
.y25{bottom:200.409200pt;}
.y66{bottom:205.213333pt;}
.y1e{bottom:206.245333pt;}
.y3a{bottom:207.088255pt;}
.y30{bottom:218.026667pt;}
.y52{bottom:218.340000pt;}
.y53{bottom:218.506667pt;}
.y3d{bottom:221.493308pt;}
.y34{bottom:221.852636pt;}
.y48{bottom:222.782667pt;}
.ycf{bottom:225.940000pt;}
.y4d{bottom:226.040987pt;}
.y2a{bottom:228.189503pt;}
.y31{bottom:228.355200pt;}
.y54{bottom:238.786667pt;}
.y5a{bottom:238.880000pt;}
.y26{bottom:243.980133pt;}
.yf{bottom:251.320000pt;}
.y47{bottom:251.582667pt;}
.y27{bottom:252.572800pt;}
.y20{bottom:252.886667pt;}
.ya{bottom:255.267200pt;}
.y6b{bottom:255.933333pt;}
.y2{bottom:256.661333pt;}
.yce{bottom:260.820000pt;}
.y39{bottom:262.114592pt;}
.y2b{bottom:272.719696pt;}
.y1d{bottom:274.237333pt;}
.yb2{bottom:278.740000pt;}
.y46{bottom:280.382667pt;}
.y65{bottom:282.013333pt;}
.y35{bottom:283.309369pt;}
.y9{bottom:283.549067pt;}
.y59{bottom:284.960000pt;}
.y5{bottom:290.360533pt;}
.yb{bottom:292.745467pt;}
.ycd{bottom:295.540000pt;}
.y1{bottom:305.153333pt;}
.y4c{bottom:305.582267pt;}
.yb1{bottom:307.540000pt;}
.y64{bottom:307.613333pt;}
.yc5{bottom:308.325600pt;}
.y2c{bottom:317.334340pt;}
.y4{bottom:318.642400pt;}
.y6a{bottom:320.413333pt;}
.ya8{bottom:322.896480pt;}
.ya4{bottom:325.701067pt;}
.ycc{bottom:330.260000pt;}
.y6{bottom:334.078800pt;}
.yb0{bottom:336.340000pt;}
.y58{bottom:336.800000pt;}
.y1c{bottom:342.229333pt;}
.ya3{bottom:343.306187pt;}
.y36{bottom:344.850553pt;}
.ya7{bottom:345.304320pt;}
.y6e{bottom:345.940000pt;}
.y69{bottom:358.813333pt;}
.y76{bottom:360.207520pt;}
.ya2{bottom:360.911307pt;}
.y15{bottom:360.940000pt;}
.y2d{bottom:361.864533pt;}
.ycb{bottom:365.140000pt;}
.ya6{bottom:367.712160pt;}
.y96{bottom:368.872853pt;}
.yc4{bottom:372.320000pt;}
.y3c{bottom:372.348233pt;}
.y38{bottom:377.813467pt;}
.y45{bottom:378.086667pt;}
.ya1{bottom:378.516427pt;}
.y1b{bottom:380.053333pt;}
.y63{bottom:384.413493pt;}
.y95{bottom:386.477973pt;}
.y57{bottom:388.640000pt;}
.ya5{bottom:390.120000pt;}
.yaf{bottom:393.940000pt;}
.ya0{bottom:396.121547pt;}
.y4e{bottom:396.729947pt;}
.yca{bottom:399.860000pt;}
.y94{bottom:404.083093pt;}
.y37{bottom:406.307286pt;}
.y2e{bottom:406.479177pt;}
.y44{bottom:406.886667pt;}
.y62{bottom:410.013333pt;}
.y9f{bottom:413.726667pt;}
.y84{bottom:414.720000pt;}
.y93{bottom:421.688213pt;}
.y68{bottom:422.813333pt;}
.yd3{bottom:428.746667pt;}
.y4f{bottom:431.519333pt;}
.yc9{bottom:434.580000pt;}
.y61{bottom:435.613333pt;}
.y43{bottom:436.465547pt;}
.y92{bottom:439.293333pt;}
.y75{bottom:439.748800pt;}
.y51{bottom:445.173333pt;}
.yae{bottom:451.540000pt;}
.yad{bottom:457.928000pt;}
.y6d{bottom:461.140000pt;}
.y42{bottom:468.476107pt;}
.yc8{bottom:469.460000pt;}
.yd{bottom:475.753333pt;}
.y14{bottom:476.140000pt;}
.y5f{bottom:476.219867pt;}
.y5e{bottom:476.220000pt;}
.yac{bottom:486.728000pt;}
.yab{bottom:494.720000pt;}
.y60{bottom:499.613333pt;}
.y41{bottom:502.886667pt;}
.yc7{bottom:504.179867pt;}
.yc{bottom:504.553333pt;}
.y50{bottom:508.433333pt;}
.y5d{bottom:510.780000pt;}
.y6c{bottom:518.740000pt;}
.yb7{bottom:526.720000pt;}
.y77{bottom:530.896480pt;}
.y8b{bottom:538.339520pt;}
.yc6{bottom:538.900000pt;}
.y40{bottom:548.053333pt;}
.yc3{bottom:552.320000pt;}
.yb6{bottom:555.520000pt;}
.y8a{bottom:555.944640pt;}
.y78{bottom:565.686000pt;}
.y89{bottom:573.387840pt;}
.ye{bottom:578.220000pt;}
.yc2{bottom:581.120000pt;}
.yb5{bottom:584.320000pt;}
.y71{bottom:590.720000pt;}
.y88{bottom:591.154880pt;}
.y13{bottom:591.340000pt;}
.y19{bottom:601.440000pt;}
.y83{bottom:606.720000pt;}
.y87{bottom:608.760000pt;}
.yc1{bottom:609.920000pt;}
.y74{bottom:613.120000pt;}
.y1a{bottom:614.386667pt;}
.yba{bottom:621.120000pt;}
.yb4{bottom:623.520000pt;}
.yc0{bottom:638.720000pt;}
.y17{bottom:639.840000pt;}
.y12{bottom:640.273333pt;}
.y70{bottom:641.120000pt;}
.y73{bottom:641.920000pt;}
.yb3{bottom:645.920000pt;}
.y86{bottom:647.592960pt;}
.yb9{bottom:649.920000pt;}
.y55{bottom:662.720000pt;}
.y1f{bottom:664.006667pt;}
.y85{bottom:666.893333pt;}
.y4b{bottom:667.006667pt;}
.y3e{bottom:669.886667pt;}
.y6f{bottom:669.920000pt;}
.y72{bottom:670.720000pt;}
.y11{bottom:678.673333pt;}
.yb8{bottom:678.720000pt;}
.y21{bottom:679.053333pt;}
.y10{bottom:691.840000pt;}
.h12{height:24.603483pt;}
.h11{height:37.971850pt;}
.h3{height:49.929688pt;}
.hf{height:50.331725pt;}
.h19{height:54.383152pt;}
.h10{height:57.128544pt;}
.h18{height:57.324876pt;}
.he{height:60.470494pt;}
.h21{height:61.410000pt;}
.h23{height:61.450960pt;}
.h22{height:61.491920pt;}
.h25{height:70.382812pt;}
.h17{height:72.000000pt;}
.h1b{height:72.329592pt;}
.h15{height:73.490625pt;}
.h27{height:75.187500pt;}
.h24{height:75.465000pt;}
.h1c{height:76.242085pt;}
.h26{height:78.097500pt;}
.h16{height:81.574728pt;}
.h1a{height:88.777500pt;}
.h5{height:90.234375pt;}
.h13{height:90.860937pt;}
.h8{height:95.115383pt;}
.h20{height:96.666375pt;}
.hb{height:100.125000pt;}
.h14{height:100.460938pt;}
.h1f{height:108.766304pt;}
.h1e{height:114.649751pt;}
.h28{height:115.500000pt;}
.hc{height:120.312500pt;}
.h1{height:135.351562pt;}
.h1d{height:155.527500pt;}
.h9{height:160.617188pt;}
.h29{height:180.468750pt;}
.ha{height:240.625000pt;}
.h7{height:269.760000pt;}
.h6{height:298.080000pt;}
.h4{height:304.960000pt;}
.h2{height:333.280000pt;}
.hd{height:455.500000pt;}
.h0{height:720.000000pt;}
.w3{width:89.920000pt;}
.w4{width:93.440000pt;}
.w2{width:126.080000pt;}
.w1{width:136.160000pt;}
.w5{width:527.166667pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:9.183600pt;}
.x4{left:10.195467pt;}
.x1b{left:16.071467pt;}
.x48{left:25.600000pt;}
.x27{left:26.600000pt;}
.x1d{left:28.945200pt;}
.x46{left:32.932533pt;}
.x52{left:36.100000pt;}
.xc{left:38.100000pt;}
.x43{left:41.600000pt;}
.x2c{left:43.265867pt;}
.xe{left:45.100000pt;}
.x5d{left:49.608000pt;}
.x32{left:51.100000pt;}
.x1a{left:57.644800pt;}
.x50{left:58.766667pt;}
.x51{left:62.608587pt;}
.x17{left:66.241333pt;}
.x67{left:69.120000pt;}
.x37{left:73.766667pt;}
.x3d{left:75.440000pt;}
.x47{left:81.600000pt;}
.x5e{left:86.160000pt;}
.x49{left:89.608000pt;}
.x36{left:96.433333pt;}
.x3a{left:102.266667pt;}
.x2d{left:105.500000pt;}
.x4c{left:111.600000pt;}
.x35{left:115.313333pt;}
.x3f{left:139.600000pt;}
.x5f{left:146.160000pt;}
.x44{left:152.614400pt;}
.x2a{left:162.947733pt;}
.x9{left:168.960000pt;}
.x68{left:172.016667pt;}
.x34{left:187.098667pt;}
.x13{left:202.266667pt;}
.xa{left:209.280000pt;}
.x63{left:232.640000pt;}
.x10{left:244.266667pt;}
.x19{left:246.978667pt;}
.x26{left:258.792209pt;}
.x16{left:270.409333pt;}
.x23{left:273.301523pt;}
.x31{left:277.933333pt;}
.x22{left:279.285333pt;}
.x24{left:295.527103pt;}
.x25{left:328.819882pt;}
.x53{left:330.766667pt;}
.x54{left:334.608587pt;}
.x29{left:339.009333pt;}
.x59{left:347.448240pt;}
.x45{left:366.471680pt;}
.x42{left:368.230000pt;}
.x3b{left:372.666667pt;}
.x2b{left:376.805013pt;}
.x58{left:380.732400pt;}
.x3e{left:382.480000pt;}
.x57{left:384.570000pt;}
.x60{left:386.786667pt;}
.x61{left:399.746667pt;}
.x41{left:409.826667pt;}
.x3c{left:417.466667pt;}
.x62{left:419.426667pt;}
.x40{left:422.306667pt;}
.x64{left:462.400000pt;}
.x15{left:466.921333pt;}
.x20{left:471.325467pt;}
.x21{left:475.177901pt;}
.x18{left:482.766667pt;}
.xd{left:486.100000pt;}
.x28{left:489.600000pt;}
.x6{left:505.600000pt;}
.x5c{left:513.600000pt;}
.x1f{left:515.932667pt;}
.x30{left:519.766667pt;}
.x1e{left:522.902533pt;}
.x65{left:529.592000pt;}
.x11{left:535.306667pt;}
.x4d{left:542.766667pt;}
.xf{left:549.933333pt;}
.x12{left:556.266667pt;}
.x1{left:581.280000pt;}
.x33{left:592.266667pt;}
.x4b{left:609.608000pt;}
.x2e{left:618.100000pt;}
.xb{left:625.120000pt;}
.x5a{left:633.433333pt;}
.x66{left:641.600000pt;}
.x14{left:648.433333pt;}
.x5b{left:655.933467pt;}
.x4a{left:665.600000pt;}
.x2{left:689.280000pt;}
.x38{left:697.446667pt;}
.x4e{left:708.766667pt;}
.x4f{left:712.608587pt;}
.x2f{left:716.433333pt;}
.x39{left:731.046667pt;}
.x3{left:748.800000pt;}
.x55{left:754.266667pt;}
.x5{left:758.995467pt;}
.x7{left:779.680000pt;}
.x8{left:789.937600pt;}
.x56{left:803.433333pt;}
}




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