
    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_50e5142ff8df06665e801e2a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_89f64bb21799a7201d0e4c21.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_90e9c29ad2f72cae1779b9cf.woff')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_b4eedb6b70eaefece081424c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_2aa430aa2c22ba9a0938eba4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_aff436e41bb69a9615e1654b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_61d4fe8b0fe541aa04f431a9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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_f544a65ac9244fc06dabac9e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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_9ec28462dfd74a0d11aa6476.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_8de13da1c0085c56911d903a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_0eb61859df62f5cb17c2767b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.400000;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_45b23c2fc4f7980c53d52864.woff')format("woff");}.ffc{font-family:ffc;line-height:1.400000;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_e7fb834cebae8596643eb610.woff')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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:ffe;src:url('chunks/assets/font_8de64a62330a1b8aa9bbbcaf.woff')format("woff");}.ffe{font-family:ffe;line-height:1.400000;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:fff;src:url('chunks/assets/font_c30825b404daa57824068bed.woff')format("woff");}.fff{font-family:fff;line-height:1.400000;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:ff10;src:url('chunks/assets/font_c7c8734a4998f61fa8fff682.woff')format("woff");}.ff10{font-family:ff10;line-height:1.400000;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:ff11;src:url('chunks/assets/font_97230cbc768e13c65db8e59a.woff')format("woff");}.ff11{font-family:ff11;line-height:1.400000;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:ff12;src:url('chunks/assets/font_7c7a01f36095fcf6ebb762cb.woff')format("woff");}.ff12{font-family:ff12;line-height:1.400000;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:ff13;src:url('chunks/assets/font_c93fbe8a68cdb7db41c1ad19.woff')format("woff");}.ff13{font-family:ff13;line-height:1.000000;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:ff14;src:url('chunks/assets/font_89f64bb21799a7201d0e4c21.woff')format("woff");}.ff14{font-family:ff14;line-height:1.400000;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:ff15;src:url('chunks/assets/font_f666641a01b6c42b2126d4ed.woff')format("woff");}.ff15{font-family:ff15;line-height:1.000000;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:ff16;src:url('chunks/assets/font_d3b9126e9a8e561bbba1b97e.woff')format("woff");}.ff16{font-family:ff16;line-height:1.400000;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:ff17;src:url('chunks/assets/font_ac3516082bba4b935f2fd288.woff')format("woff");}.ff17{font-family:ff17;line-height:1.400000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.638000px;}
.ls5{letter-spacing:-3.455052px;}
.lsd{letter-spacing:-0.660000px;}
.lsc{letter-spacing:-0.396000px;}
.ls9{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.264000px;}
.ls6{letter-spacing:-0.066000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000186px;}
.ls0{letter-spacing:0.428985px;}
.lse{letter-spacing:0.462000px;}
.ls8{letter-spacing:0.594000px;}
.ls2{letter-spacing:1.200000px;}
.lsb{letter-spacing:1.254000px;}
.ls1{letter-spacing:3.600000px;}
.ls4{letter-spacing:9.590400px;}
.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;}
}
.ws1{word-spacing:-28.440000px;}
.ws1a{word-spacing:-18.414000px;}
.ws40{word-spacing:-18.216000px;}
.ws53{word-spacing:-17.754000px;}
.ws2{word-spacing:-16.740000px;}
.ws61{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.066000px;}
.ws19{word-spacing:-14.100000px;}
.ws3{word-spacing:-13.284000px;}
.ws1b{word-spacing:-9.686400px;}
.ws27{word-spacing:-7.986000px;}
.ws25{word-spacing:-5.874000px;}
.ws21{word-spacing:-5.544000px;}
.ws7{word-spacing:-3.672000px;}
.ws6{word-spacing:-3.618000px;}
.ws46{word-spacing:-3.564000px;}
.ws50{word-spacing:-2.970000px;}
.ws26{word-spacing:-2.838000px;}
.ws6b{word-spacing:-2.820000px;}
.ws9{word-spacing:-2.700000px;}
.wsa{word-spacing:-2.646000px;}
.ws2a{word-spacing:-2.508000px;}
.ws64{word-spacing:-2.340000px;}
.wsc{word-spacing:-2.268000px;}
.ws2b{word-spacing:-2.046000px;}
.wsb{word-spacing:-1.836000px;}
.ws65{word-spacing:-1.800000px;}
.ws62{word-spacing:-1.620000px;}
.ws49{word-spacing:-1.386000px;}
.ws12{word-spacing:-1.350000px;}
.ws29{word-spacing:-1.254000px;}
.ws8{word-spacing:-0.600000px;}
.ws36{word-spacing:-0.594000px;}
.ws58{word-spacing:-0.462000px;}
.ws31{word-spacing:-0.240000px;}
.ws2c{word-spacing:-0.120000px;}
.ws4{word-spacing:0.000000px;}
.ws23{word-spacing:0.066000px;}
.ws63{word-spacing:0.120000px;}
.ws2d{word-spacing:0.132000px;}
.wsd{word-spacing:0.216000px;}
.ws33{word-spacing:0.264000px;}
.ws3c{word-spacing:0.330000px;}
.ws32{word-spacing:0.360000px;}
.ws4e{word-spacing:0.396000px;}
.ws38{word-spacing:0.660000px;}
.ws2e{word-spacing:0.792000px;}
.ws48{word-spacing:0.924000px;}
.ws68{word-spacing:0.960000px;}
.ws4f{word-spacing:0.990000px;}
.ws5a{word-spacing:1.080000px;}
.ws4c{word-spacing:1.386000px;}
.ws69{word-spacing:1.500000px;}
.ws5e{word-spacing:1.620000px;}
.ws60{word-spacing:1.800000px;}
.ws1d{word-spacing:1.848000px;}
.ws5f{word-spacing:1.860000px;}
.ws41{word-spacing:1.914000px;}
.ws42{word-spacing:2.046000px;}
.ws13{word-spacing:2.106000px;}
.ws43{word-spacing:2.112000px;}
.ws1f{word-spacing:2.310000px;}
.ws1e{word-spacing:2.376000px;}
.ws6a{word-spacing:2.460000px;}
.ws15{word-spacing:2.538000px;}
.ws5{word-spacing:2.592000px;}
.ws17{word-spacing:2.646000px;}
.ws14{word-spacing:2.808000px;}
.ws55{word-spacing:2.970000px;}
.ws66{word-spacing:3.000000px;}
.ws4d{word-spacing:3.102000px;}
.ws20{word-spacing:3.168000px;}
.ws5c{word-spacing:3.180000px;}
.ws5b{word-spacing:3.240000px;}
.ws44{word-spacing:3.366000px;}
.ws3f{word-spacing:3.432000px;}
.ws1c{word-spacing:3.455052px;}
.ws34{word-spacing:3.564000px;}
.ws54{word-spacing:3.630000px;}
.ws16{word-spacing:3.942000px;}
.ws56{word-spacing:3.960000px;}
.ws2f{word-spacing:4.092000px;}
.ws28{word-spacing:4.224000px;}
.ws5d{word-spacing:4.380000px;}
.ws6c{word-spacing:4.620000px;}
.ws47{word-spacing:4.686000px;}
.ws24{word-spacing:4.818000px;}
.ws22{word-spacing:5.148000px;}
.ws30{word-spacing:5.460000px;}
.wse{word-spacing:5.616000px;}
.ws45{word-spacing:5.808000px;}
.ws51{word-spacing:5.820000px;}
.ws67{word-spacing:6.180000px;}
.ws4a{word-spacing:6.204000px;}
.ws35{word-spacing:6.336000px;}
.ws52{word-spacing:6.468000px;}
.ws59{word-spacing:6.600000px;}
.ws3e{word-spacing:6.666000px;}
.ws18{word-spacing:7.344000px;}
.ws3d{word-spacing:7.524000px;}
.ws3b{word-spacing:7.788000px;}
.ws39{word-spacing:10.692000px;}
.ws37{word-spacing:10.758000px;}
.wsf{word-spacing:11.880000px;}
.ws11{word-spacing:13.014000px;}
.ws10{word-spacing:13.176000px;}
.ws3a{word-spacing:13.860000px;}
.ws4b{word-spacing:16.962000px;}
.ws57{word-spacing:33.000000px;}
._12{margin-left:-26.868000px;}
._9{margin-left:-9.590400px;}
._8{margin-left:-7.200000px;}
._3{margin-left:-5.884763px;}
._4{margin-left:-3.908542px;}
._2{margin-left:-2.844000px;}
._0{margin-left:-1.501448px;}
._1{width:1.681621px;}
._a{width:2.713169px;}
._b{width:4.125779px;}
._7{width:5.812200px;}
._6{width:7.498800px;}
._c{width:8.561295px;}
._e{width:9.635258px;}
._f{width:10.804560px;}
._10{width:12.290183px;}
._13{width:13.404000px;}
._5{width:14.742000px;}
._d{width:16.163400px;}
._14{width:17.298600px;}
._15{width:22.710600px;}
._11{width:33.108000px;}
.fc2{color:rgb(101,98,99);}
.fc1{color:rgb(181,170,105);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:36.000000px;}
.fsa{font-size:38.478000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs7{font-size:84.000000px;}
.fs0{font-size:85.797000px;}
.fs5{font-size:90.000000px;}
.fs8{font-size:96.000000px;}
.fs4{font-size:120.000000px;}
.fs9{font-size:172.752600px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.767300px;}
.y2d{bottom:15.700200px;}
.y30{bottom:17.983350px;}
.y31{bottom:30.614100px;}
.y2c{bottom:36.700200px;}
.y2{bottom:42.949800px;}
.ya{bottom:53.999400px;}
.y32{bottom:55.288350px;}
.y2b{bottom:57.700200px;}
.y9{bottom:70.199400px;}
.y2a{bottom:78.700200px;}
.y8{bottom:86.399400px;}
.y7{bottom:106.851900px;}
.y81{bottom:170.087700px;}
.yfe{bottom:173.415900px;}
.y155{bottom:173.462400px;}
.ye9{bottom:173.577900px;}
.yca{bottom:179.331900px;}
.y10f{bottom:179.559900px;}
.y174{bottom:180.996900px;}
.y119{bottom:181.083900px;}
.y80{bottom:186.584700px;}
.y197{bottom:187.034400px;}
.y1a7{bottom:187.107900px;}
.ya2{bottom:188.448900px;}
.y59{bottom:188.844900px;}
.yfd{bottom:195.921900px;}
.y154{bottom:195.968400px;}
.ye8{bottom:196.083900px;}
.yc9{bottom:201.837900px;}
.y131{bottom:202.004400px;}
.y10e{bottom:202.065900px;}
.y7f{bottom:203.081700px;}
.y173{bottom:203.502900px;}
.y118{bottom:203.589900px;}
.y1c6{bottom:208.010400px;}
.y1a6{bottom:208.107900px;}
.y196{bottom:209.540400px;}
.ya1{bottom:210.954900px;}
.y58{bottom:211.350900px;}
.yfc{bottom:218.427900px;}
.y153{bottom:218.474400px;}
.ye7{bottom:218.589900px;}
.y7e{bottom:219.578700px;}
.yc8{bottom:224.343900px;}
.y130{bottom:224.510400px;}
.y10d{bottom:224.571900px;}
.y172{bottom:226.008900px;}
.y117{bottom:226.095900px;}
.y17a{bottom:229.107900px;}
.y195{bottom:232.046400px;}
.ya0{bottom:233.460900px;}
.y57{bottom:233.856900px;}
.y1c5{bottom:239.510400px;}
.y1a5{bottom:239.607900px;}
.y157{bottom:240.917400px;}
.yfb{bottom:240.933900px;}
.y152{bottom:240.980400px;}
.ye6{bottom:241.095900px;}
.yc7{bottom:246.849900px;}
.y12f{bottom:247.016400px;}
.y10c{bottom:247.077900px;}
.y171{bottom:248.514900px;}
.y116{bottom:248.601900px;}
.y179{bottom:250.107900px;}
.y194{bottom:254.552400px;}
.y9f{bottom:255.966900px;}
.y1c4{bottom:260.510400px;}
.y1a4{bottom:260.607900px;}
.y156{bottom:263.423400px;}
.y151{bottom:263.486400px;}
.ye5{bottom:263.601900px;}
.yc6{bottom:269.355900px;}
.y12e{bottom:269.522400px;}
.y10b{bottom:269.583900px;}
.y170{bottom:271.020900px;}
.y115{bottom:271.107900px;}
.y193{bottom:277.058400px;}
.y9e{bottom:278.472900px;}
.y56{bottom:278.852400px;}
.y1c3{bottom:281.510400px;}
.y1a3{bottom:281.607900px;}
.yfa{bottom:285.929400px;}
.y150{bottom:285.992400px;}
.y7d{bottom:286.094400px;}
.ye4{bottom:286.107900px;}
.yc5{bottom:291.861900px;}
.y12d{bottom:292.028400px;}
.y10a{bottom:292.089900px;}
.y178{bottom:292.107900px;}
.y16f{bottom:293.526900px;}
.y27{bottom:295.415400px;}
.y192{bottom:299.564400px;}
.y9d{bottom:300.978900px;}
.y55{bottom:301.358400px;}
.y1c2{bottom:302.510400px;}
.yf9{bottom:308.435400px;}
.y14f{bottom:308.498400px;}
.y7c{bottom:308.600400px;}
.y26{bottom:311.912400px;}
.y177{bottom:313.107900px;}
.y12c{bottom:314.534400px;}
.y109{bottom:314.595900px;}
.y16e{bottom:316.032900px;}
.y114{bottom:316.107900px;}
.y191{bottom:322.070400px;}
.y9c{bottom:323.484900px;}
.y54{bottom:323.864400px;}
.yf8{bottom:330.941400px;}
.y14e{bottom:331.004400px;}
.y7b{bottom:331.106400px;}
.ye3{bottom:331.107900px;}
.y25{bottom:332.918400px;}
.y1c1{bottom:334.010400px;}
.y176{bottom:334.107900px;}
.yc4{bottom:336.857400px;}
.y12b{bottom:337.040400px;}
.y108{bottom:337.101900px;}
.y190{bottom:344.576400px;}
.y1a2{bottom:344.607900px;}
.y9b{bottom:345.990900px;}
.y53{bottom:346.370400px;}
.y24{bottom:349.415400px;}
.ye2{bottom:352.107900px;}
.yf7{bottom:353.447400px;}
.y14d{bottom:353.510400px;}
.y7a{bottom:353.612400px;}
.y1c0{bottom:355.010400px;}
.y175{bottom:355.107900px;}
.yc3{bottom:359.363400px;}
.y12a{bottom:359.546400px;}
.y107{bottom:359.607900px;}
.y16d{bottom:361.028400px;}
.y1a1{bottom:365.607900px;}
.y23{bottom:365.912400px;}
.y9a{bottom:368.496900px;}
.y52{bottom:368.876400px;}
.ye1{bottom:373.107900px;}
.yf6{bottom:375.953400px;}
.yc2{bottom:381.869400px;}
.y129{bottom:382.052400px;}
.y22{bottom:382.409400px;}
.y16c{bottom:383.534400px;}
.y1bf{bottom:386.510400px;}
.y1a0{bottom:386.607900px;}
.y18f{bottom:389.571900px;}
.y51{bottom:391.382400px;}
.ye0{bottom:394.107900px;}
.y79{bottom:398.442900px;}
.yf5{bottom:398.459400px;}
.y14c{bottom:398.510400px;}
.y21{bottom:398.906400px;}
.yc1{bottom:404.375400px;}
.y128{bottom:404.558400px;}
.y106{bottom:404.607900px;}
.y16b{bottom:406.040400px;}
.y1be{bottom:407.510400px;}
.y18e{bottom:412.077900px;}
.y99{bottom:413.492400px;}
.y50{bottom:413.888400px;}
.ydf{bottom:415.107900px;}
.y20{bottom:415.403400px;}
.y19f{bottom:418.107900px;}
.y14b{bottom:419.510400px;}
.y78{bottom:420.948900px;}
.yf4{bottom:420.965400px;}
.y105{bottom:425.607900px;}
.yc0{bottom:426.881400px;}
.y1bd{bottom:428.510400px;}
.y16a{bottom:428.546400px;}
.y1f{bottom:431.900400px;}
.y18d{bottom:434.583900px;}
.y98{bottom:435.998400px;}
.yde{bottom:436.107900px;}
.y4f{bottom:436.394400px;}
.y19e{bottom:439.107900px;}
.y14a{bottom:440.510400px;}
.y77{bottom:443.454900px;}
.yf3{bottom:443.471400px;}
.y104{bottom:446.607900px;}
.y1e{bottom:448.397400px;}
.ybf{bottom:449.387400px;}
.y127{bottom:449.553900px;}
.y169{bottom:451.052400px;}
.y18c{bottom:457.089900px;}
.y97{bottom:458.504400px;}
.y4e{bottom:458.900400px;}
.y1bc{bottom:460.010400px;}
.y149{bottom:461.510400px;}
.y76{bottom:465.960900px;}
.yf2{bottom:465.977400px;}
.y103{bottom:467.607900px;}
.y19d{bottom:470.607900px;}
.ybe{bottom:471.893400px;}
.y126{bottom:472.059900px;}
.y168{bottom:473.558400px;}
.ydd{bottom:479.564400px;}
.y18b{bottom:479.595900px;}
.y96{bottom:481.010400px;}
.y4d{bottom:481.406400px;}
.y1d{bottom:482.147400px;}
.y75{bottom:488.466900px;}
.yf1{bottom:488.483400px;}
.y19c{bottom:491.607900px;}
.y125{bottom:494.565900px;}
.y167{bottom:496.064400px;}
.y1c{bottom:499.400400px;}
.ydc{bottom:502.070400px;}
.y18a{bottom:502.101900px;}
.y95{bottom:503.516400px;}
.y4c{bottom:503.912400px;}
.y148{bottom:504.950400px;}
.y74{bottom:510.972900px;}
.yf0{bottom:510.989400px;}
.y1bb{bottom:512.510400px;}
.y19b{bottom:512.607900px;}
.ybd{bottom:516.888900px;}
.y124{bottom:517.071900px;}
.y166{bottom:518.570400px;}
.y1b{bottom:520.406400px;}
.ydb{bottom:524.576400px;}
.y189{bottom:524.607900px;}
.y94{bottom:526.022400px;}
.y147{bottom:527.456400px;}
.y73{bottom:533.478900px;}
.yef{bottom:533.495400px;}
.y1ba{bottom:533.510400px;}
.y1a{bottom:537.659400px;}
.ybc{bottom:539.394900px;}
.y123{bottom:539.577900px;}
.y19a{bottom:544.107900px;}
.yda{bottom:547.082400px;}
.y93{bottom:548.528400px;}
.y4b{bottom:548.907900px;}
.y146{bottom:549.962400px;}
.y19{bottom:554.912400px;}
.y72{bottom:555.984900px;}
.yee{bottom:556.001400px;}
.ybb{bottom:561.900900px;}
.y122{bottom:562.083900px;}
.y165{bottom:563.565900px;}
.y1b9{bottom:565.010400px;}
.y199{bottom:565.107900px;}
.yd9{bottom:569.588400px;}
.y188{bottom:569.607900px;}
.y92{bottom:571.034400px;}
.y4a{bottom:571.413900px;}
.y18{bottom:572.165400px;}
.y145{bottom:572.468400px;}
.y71{bottom:578.490900px;}
.yba{bottom:584.406900px;}
.y121{bottom:584.589900px;}
.y1b8{bottom:586.010400px;}
.y164{bottom:586.071900px;}
.y17{bottom:589.418400px;}
.yd8{bottom:592.094400px;}
.y91{bottom:593.540400px;}
.y49{bottom:593.919900px;}
.y144{bottom:594.974400px;}
.y70{bottom:600.996900px;}
.y16{bottom:606.671400px;}
.yb9{bottom:606.912900px;}
.y1b7{bottom:607.010400px;}
.y120{bottom:607.095900px;}
.y163{bottom:608.577900px;}
.y198{bottom:608.607900px;}
.yd7{bottom:614.600400px;}
.y90{bottom:616.046400px;}
.y48{bottom:616.425900px;}
.y143{bottom:617.480400px;}
.y6f{bottom:623.502900px;}
.y15{bottom:623.924400px;}
.yb8{bottom:629.418900px;}
.y11f{bottom:629.601900px;}
.y162{bottom:631.083900px;}
.y1b6{bottom:638.510400px;}
.y8f{bottom:638.552400px;}
.y47{bottom:638.931900px;}
.y142{bottom:639.986400px;}
.y14{bottom:641.177400px;}
.y6e{bottom:646.008900px;}
.yb7{bottom:651.924900px;}
.y187{bottom:652.059900px;}
.y11e{bottom:652.107900px;}
.y161{bottom:653.589900px;}
.y1b5{bottom:659.510400px;}
.yd6{bottom:659.595900px;}
.y8e{bottom:661.058400px;}
.y46{bottom:661.437900px;}
.y141{bottom:662.492400px;}
.y6d{bottom:668.514900px;}
.yb6{bottom:674.430900px;}
.y186{bottom:674.565900px;}
.y160{bottom:676.095900px;}
.yd5{bottom:682.101900px;}
.y45{bottom:683.943900px;}
.y140{bottom:684.998400px;}
.y1b4{bottom:691.010400px;}
.y6c{bottom:691.020900px;}
.y13{bottom:695.430750px;}
.yb5{bottom:696.936900px;}
.y185{bottom:697.071900px;}
.y11d{bottom:697.107900px;}
.y15f{bottom:698.601900px;}
.yd4{bottom:704.607900px;}
.y8d{bottom:706.053900px;}
.y44{bottom:706.449900px;}
.y13f{bottom:707.504400px;}
.y1b3{bottom:712.010400px;}
.y6b{bottom:713.526900px;}
.y12{bottom:716.430750px;}
.y11c{bottom:718.107900px;}
.yb4{bottom:719.442900px;}
.y184{bottom:719.577900px;}
.y15e{bottom:721.107900px;}
.y8c{bottom:728.559900px;}
.y43{bottom:728.955900px;}
.y13e{bottom:730.010400px;}
.y1b2{bottom:733.010400px;}
.yff{bottom:736.016400px;}
.yed{bottom:736.032900px;}
.y11{bottom:737.430750px;}
.y11b{bottom:739.107900px;}
.y29{bottom:741.738900px;}
.yb3{bottom:741.948900px;}
.y183{bottom:742.083900px;}
.yd3{bottom:749.607900px;}
.y8b{bottom:751.065900px;}
.y42{bottom:751.461900px;}
.y10{bottom:758.430750px;}
.y6a{bottom:758.522400px;}
.yec{bottom:758.538900px;}
.y11a{bottom:760.107900px;}
.y28{bottom:761.232900px;}
.y1b1{bottom:764.510400px;}
.y182{bottom:764.589900px;}
.y15d{bottom:766.107900px;}
.yd2{bottom:770.607900px;}
.y8a{bottom:773.571900px;}
.y41{bottom:773.967900px;}
.y13d{bottom:775.010400px;}
.y69{bottom:781.028400px;}
.yeb{bottom:781.044900px;}
.y1b0{bottom:785.510400px;}
.yb2{bottom:786.944400px;}
.y181{bottom:787.095900px;}
.y15c{bottom:787.107900px;}
.yd1{bottom:791.607900px;}
.y13c{bottom:796.010400px;}
.y89{bottom:796.077900px;}
.y40{bottom:796.473900px;}
.y68{bottom:803.534400px;}
.y102{bottom:803.550900px;}
.y15b{bottom:808.107900px;}
.yb1{bottom:809.450400px;}
.y180{bottom:809.601900px;}
.yd0{bottom:812.607900px;}
.y13b{bottom:817.010400px;}
.y88{bottom:818.583900px;}
.y3f{bottom:818.979900px;}
.y67{bottom:826.040400px;}
.y101{bottom:826.056900px;}
.y15a{bottom:829.107900px;}
.yb0{bottom:831.956400px;}
.y17f{bottom:832.107900px;}
.ycf{bottom:833.607900px;}
.y13a{bottom:838.010400px;}
.y87{bottom:841.089900px;}
.y66{bottom:848.546400px;}
.y159{bottom:850.107900px;}
.yaf{bottom:854.462400px;}
.yce{bottom:854.607900px;}
.y1af{bottom:859.010400px;}
.yf{bottom:861.981600px;}
.y86{bottom:863.595900px;}
.y3e{bottom:863.975400px;}
.y65{bottom:871.052400px;}
.ycd{bottom:875.607900px;}
.yae{bottom:876.968400px;}
.y17e{bottom:877.107900px;}
.y139{bottom:881.486400px;}
.y85{bottom:886.101900px;}
.y3d{bottom:886.481400px;}
.ye{bottom:888.981600px;}
.y1ae{bottom:890.510400px;}
.y64{bottom:893.558400px;}
.ycc{bottom:896.607900px;}
.y17d{bottom:898.107900px;}
.yad{bottom:899.474400px;}
.y138{bottom:903.992400px;}
.y84{bottom:908.607900px;}
.y3c{bottom:908.987400px;}
.y1ad{bottom:911.510400px;}
.y113{bottom:916.047900px;}
.y63{bottom:916.064400px;}
.ycb{bottom:917.607900px;}
.y17c{bottom:919.107900px;}
.yac{bottom:921.980400px;}
.y137{bottom:926.498400px;}
.yd{bottom:928.737450px;}
.y3b{bottom:931.493400px;}
.y1ac{bottom:932.510400px;}
.y112{bottom:938.553900px;}
.y62{bottom:938.570400px;}
.y17b{bottom:940.107900px;}
.yab{bottom:944.486400px;}
.y136{bottom:949.004400px;}
.y83{bottom:953.607900px;}
.y3a{bottom:953.999400px;}
.y111{bottom:961.059900px;}
.y61{bottom:961.076400px;}
.yc{bottom:963.237450px;}
.y1ab{bottom:964.010400px;}
.yaa{bottom:966.992400px;}
.y135{bottom:971.510400px;}
.y39{bottom:976.505400px;}
.y110{bottom:983.565900px;}
.yea{bottom:983.582400px;}
.y1aa{bottom:985.010400px;}
.ya9{bottom:989.498400px;}
.y82{bottom:991.107900px;}
.yb{bottom:997.737450px;}
.y38{bottom:999.011400px;}
.y60{bottom:1006.071900px;}
.y100{bottom:1006.088400px;}
.ya8{bottom:1012.004400px;}
.y134{bottom:1016.510400px;}
.y37{bottom:1021.517400px;}
.y5f{bottom:1028.577900px;}
.y158{bottom:1028.594400px;}
.ya7{bottom:1034.510400px;}
.y133{bottom:1037.510400px;}
.y36{bottom:1044.023400px;}
.y5e{bottom:1051.083900px;}
.y132{bottom:1058.510400px;}
.y35{bottom:1066.529400px;}
.y1a9{bottom:1069.010400px;}
.y5d{bottom:1073.589900px;}
.ya6{bottom:1079.510400px;}
.y34{bottom:1089.035400px;}
.y1a8{bottom:1090.010400px;}
.y5c{bottom:1096.095900px;}
.y6{bottom:1099.267350px;}
.ya5{bottom:1100.510400px;}
.y5b{bottom:1118.601900px;}
.ya4{bottom:1121.510400px;}
.y5{bottom:1131.232500px;}
.y33{bottom:1134.035400px;}
.y5a{bottom:1141.107900px;}
.ya3{bottom:1142.510400px;}
.y1{bottom:1146.411000px;}
.y3{bottom:1168.769550px;}
.y2e{bottom:1185.328350px;}
.y2f{bottom:1220.509800px;}
.h4{height:37.800000px;}
.h6{height:56.700000px;}
.h2{height:62.424000px;}
.h9{height:63.000000px;}
.h3{height:64.347750px;}
.h8{height:67.500000px;}
.h5{height:69.300000px;}
.hd{height:69.960000px;}
.ha{height:72.000000px;}
.hc{height:90.000000px;}
.h7{height:126.000000px;}
.hb{height:181.390230px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:354.229500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:21.259800px;}
.xe{left:52.789050px;}
.x1{left:54.000000px;}
.x5{left:57.401550px;}
.x4{left:60.612150px;}
.xf{left:106.299150px;}
.x11{left:136.062900px;}
.x10{left:144.549150px;}
.x2{left:155.902500px;}
.x3{left:209.902500px;}
.xa{left:212.598450px;}
.x6{left:221.456700px;}
.x7{left:223.378050px;}
.x9{left:236.359200px;}
.x8{left:239.130750px;}
.xb{left:820.393050px;}
.x12{left:828.705900px;}
.xc{left:830.013300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.122667pt;}
.ls5{letter-spacing:-3.071157pt;}
.lsd{letter-spacing:-0.586667pt;}
.lsc{letter-spacing:-0.352000pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.234667pt;}
.ls6{letter-spacing:-0.058667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000165pt;}
.ls0{letter-spacing:0.381320pt;}
.lse{letter-spacing:0.410667pt;}
.ls8{letter-spacing:0.528000pt;}
.ls2{letter-spacing:1.066667pt;}
.lsb{letter-spacing:1.114667pt;}
.ls1{letter-spacing:3.200000pt;}
.ls4{letter-spacing:8.524800pt;}
.ws1{word-spacing:-25.280000pt;}
.ws1a{word-spacing:-16.368000pt;}
.ws40{word-spacing:-16.192000pt;}
.ws53{word-spacing:-15.781333pt;}
.ws2{word-spacing:-14.880000pt;}
.ws61{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.392000pt;}
.ws19{word-spacing:-12.533333pt;}
.ws3{word-spacing:-11.808000pt;}
.ws1b{word-spacing:-8.610133pt;}
.ws27{word-spacing:-7.098667pt;}
.ws25{word-spacing:-5.221333pt;}
.ws21{word-spacing:-4.928000pt;}
.ws7{word-spacing:-3.264000pt;}
.ws6{word-spacing:-3.216000pt;}
.ws46{word-spacing:-3.168000pt;}
.ws50{word-spacing:-2.640000pt;}
.ws26{word-spacing:-2.522667pt;}
.ws6b{word-spacing:-2.506667pt;}
.ws9{word-spacing:-2.400000pt;}
.wsa{word-spacing:-2.352000pt;}
.ws2a{word-spacing:-2.229333pt;}
.ws64{word-spacing:-2.080000pt;}
.wsc{word-spacing:-2.016000pt;}
.ws2b{word-spacing:-1.818667pt;}
.wsb{word-spacing:-1.632000pt;}
.ws65{word-spacing:-1.600000pt;}
.ws62{word-spacing:-1.440000pt;}
.ws49{word-spacing:-1.232000pt;}
.ws12{word-spacing:-1.200000pt;}
.ws29{word-spacing:-1.114667pt;}
.ws8{word-spacing:-0.533333pt;}
.ws36{word-spacing:-0.528000pt;}
.ws58{word-spacing:-0.410667pt;}
.ws31{word-spacing:-0.213333pt;}
.ws2c{word-spacing:-0.106667pt;}
.ws4{word-spacing:0.000000pt;}
.ws23{word-spacing:0.058667pt;}
.ws63{word-spacing:0.106667pt;}
.ws2d{word-spacing:0.117333pt;}
.wsd{word-spacing:0.192000pt;}
.ws33{word-spacing:0.234667pt;}
.ws3c{word-spacing:0.293333pt;}
.ws32{word-spacing:0.320000pt;}
.ws4e{word-spacing:0.352000pt;}
.ws38{word-spacing:0.586667pt;}
.ws2e{word-spacing:0.704000pt;}
.ws48{word-spacing:0.821333pt;}
.ws68{word-spacing:0.853333pt;}
.ws4f{word-spacing:0.880000pt;}
.ws5a{word-spacing:0.960000pt;}
.ws4c{word-spacing:1.232000pt;}
.ws69{word-spacing:1.333333pt;}
.ws5e{word-spacing:1.440000pt;}
.ws60{word-spacing:1.600000pt;}
.ws1d{word-spacing:1.642667pt;}
.ws5f{word-spacing:1.653333pt;}
.ws41{word-spacing:1.701333pt;}
.ws42{word-spacing:1.818667pt;}
.ws13{word-spacing:1.872000pt;}
.ws43{word-spacing:1.877333pt;}
.ws1f{word-spacing:2.053333pt;}
.ws1e{word-spacing:2.112000pt;}
.ws6a{word-spacing:2.186667pt;}
.ws15{word-spacing:2.256000pt;}
.ws5{word-spacing:2.304000pt;}
.ws17{word-spacing:2.352000pt;}
.ws14{word-spacing:2.496000pt;}
.ws55{word-spacing:2.640000pt;}
.ws66{word-spacing:2.666667pt;}
.ws4d{word-spacing:2.757333pt;}
.ws20{word-spacing:2.816000pt;}
.ws5c{word-spacing:2.826667pt;}
.ws5b{word-spacing:2.880000pt;}
.ws44{word-spacing:2.992000pt;}
.ws3f{word-spacing:3.050667pt;}
.ws1c{word-spacing:3.071157pt;}
.ws34{word-spacing:3.168000pt;}
.ws54{word-spacing:3.226667pt;}
.ws16{word-spacing:3.504000pt;}
.ws56{word-spacing:3.520000pt;}
.ws2f{word-spacing:3.637333pt;}
.ws28{word-spacing:3.754667pt;}
.ws5d{word-spacing:3.893333pt;}
.ws6c{word-spacing:4.106667pt;}
.ws47{word-spacing:4.165333pt;}
.ws24{word-spacing:4.282667pt;}
.ws22{word-spacing:4.576000pt;}
.ws30{word-spacing:4.853333pt;}
.wse{word-spacing:4.992000pt;}
.ws45{word-spacing:5.162667pt;}
.ws51{word-spacing:5.173333pt;}
.ws67{word-spacing:5.493333pt;}
.ws4a{word-spacing:5.514667pt;}
.ws35{word-spacing:5.632000pt;}
.ws52{word-spacing:5.749333pt;}
.ws59{word-spacing:5.866667pt;}
.ws3e{word-spacing:5.925333pt;}
.ws18{word-spacing:6.528000pt;}
.ws3d{word-spacing:6.688000pt;}
.ws3b{word-spacing:6.922667pt;}
.ws39{word-spacing:9.504000pt;}
.ws37{word-spacing:9.562667pt;}
.wsf{word-spacing:10.560000pt;}
.ws11{word-spacing:11.568000pt;}
.ws10{word-spacing:11.712000pt;}
.ws3a{word-spacing:12.320000pt;}
.ws4b{word-spacing:15.077333pt;}
.ws57{word-spacing:29.333333pt;}
._12{margin-left:-23.882667pt;}
._9{margin-left:-8.524800pt;}
._8{margin-left:-6.400000pt;}
._3{margin-left:-5.230900pt;}
._4{margin-left:-3.474260pt;}
._2{margin-left:-2.528000pt;}
._0{margin-left:-1.334620pt;}
._1{width:1.494774pt;}
._a{width:2.411706pt;}
._b{width:3.667359pt;}
._7{width:5.166400pt;}
._6{width:6.665600pt;}
._c{width:7.610040pt;}
._e{width:8.564673pt;}
._f{width:9.604053pt;}
._10{width:10.924607pt;}
._13{width:11.914667pt;}
._5{width:13.104000pt;}
._d{width:14.367467pt;}
._14{width:15.376533pt;}
._15{width:20.187200pt;}
._11{width:29.429333pt;}
.fs1{font-size:32.000000pt;}
.fsa{font-size:34.202667pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs7{font-size:74.666667pt;}
.fs0{font-size:76.264000pt;}
.fs5{font-size:80.000000pt;}
.fs8{font-size:85.333333pt;}
.fs4{font-size:106.666667pt;}
.fs9{font-size:153.557867pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.570933pt;}
.y2d{bottom:13.955733pt;}
.y30{bottom:15.985200pt;}
.y31{bottom:27.212533pt;}
.y2c{bottom:32.622400pt;}
.y2{bottom:38.177600pt;}
.ya{bottom:47.999467pt;}
.y32{bottom:49.145200pt;}
.y2b{bottom:51.289067pt;}
.y9{bottom:62.399467pt;}
.y2a{bottom:69.955733pt;}
.y8{bottom:76.799467pt;}
.y7{bottom:94.979467pt;}
.y81{bottom:151.189067pt;}
.yfe{bottom:154.147467pt;}
.y155{bottom:154.188800pt;}
.ye9{bottom:154.291467pt;}
.yca{bottom:159.406133pt;}
.y10f{bottom:159.608800pt;}
.y174{bottom:160.886133pt;}
.y119{bottom:160.963467pt;}
.y80{bottom:165.853067pt;}
.y197{bottom:166.252800pt;}
.y1a7{bottom:166.318133pt;}
.ya2{bottom:167.510133pt;}
.y59{bottom:167.862133pt;}
.yfd{bottom:174.152800pt;}
.y154{bottom:174.194133pt;}
.ye8{bottom:174.296800pt;}
.yc9{bottom:179.411467pt;}
.y131{bottom:179.559467pt;}
.y10e{bottom:179.614133pt;}
.y7f{bottom:180.517067pt;}
.y173{bottom:180.891467pt;}
.y118{bottom:180.968800pt;}
.y1c6{bottom:184.898133pt;}
.y1a6{bottom:184.984800pt;}
.y196{bottom:186.258133pt;}
.ya1{bottom:187.515467pt;}
.y58{bottom:187.867467pt;}
.yfc{bottom:194.158133pt;}
.y153{bottom:194.199467pt;}
.ye7{bottom:194.302133pt;}
.y7e{bottom:195.181067pt;}
.yc8{bottom:199.416800pt;}
.y130{bottom:199.564800pt;}
.y10d{bottom:199.619467pt;}
.y172{bottom:200.896800pt;}
.y117{bottom:200.974133pt;}
.y17a{bottom:203.651467pt;}
.y195{bottom:206.263467pt;}
.ya0{bottom:207.520800pt;}
.y57{bottom:207.872800pt;}
.y1c5{bottom:212.898133pt;}
.y1a5{bottom:212.984800pt;}
.y157{bottom:214.148800pt;}
.yfb{bottom:214.163467pt;}
.y152{bottom:214.204800pt;}
.ye6{bottom:214.307467pt;}
.yc7{bottom:219.422133pt;}
.y12f{bottom:219.570133pt;}
.y10c{bottom:219.624800pt;}
.y171{bottom:220.902133pt;}
.y116{bottom:220.979467pt;}
.y179{bottom:222.318133pt;}
.y194{bottom:226.268800pt;}
.y9f{bottom:227.526133pt;}
.y1c4{bottom:231.564800pt;}
.y1a4{bottom:231.651467pt;}
.y156{bottom:234.154133pt;}
.y151{bottom:234.210133pt;}
.ye5{bottom:234.312800pt;}
.yc6{bottom:239.427467pt;}
.y12e{bottom:239.575467pt;}
.y10b{bottom:239.630133pt;}
.y170{bottom:240.907467pt;}
.y115{bottom:240.984800pt;}
.y193{bottom:246.274133pt;}
.y9e{bottom:247.531467pt;}
.y56{bottom:247.868800pt;}
.y1c3{bottom:250.231467pt;}
.y1a3{bottom:250.318133pt;}
.yfa{bottom:254.159467pt;}
.y150{bottom:254.215467pt;}
.y7d{bottom:254.306133pt;}
.ye4{bottom:254.318133pt;}
.yc5{bottom:259.432800pt;}
.y12d{bottom:259.580800pt;}
.y10a{bottom:259.635467pt;}
.y178{bottom:259.651467pt;}
.y16f{bottom:260.912800pt;}
.y27{bottom:262.591467pt;}
.y192{bottom:266.279467pt;}
.y9d{bottom:267.536800pt;}
.y55{bottom:267.874133pt;}
.y1c2{bottom:268.898133pt;}
.yf9{bottom:274.164800pt;}
.y14f{bottom:274.220800pt;}
.y7c{bottom:274.311467pt;}
.y26{bottom:277.255467pt;}
.y177{bottom:278.318133pt;}
.y12c{bottom:279.586133pt;}
.y109{bottom:279.640800pt;}
.y16e{bottom:280.918133pt;}
.y114{bottom:280.984800pt;}
.y191{bottom:286.284800pt;}
.y9c{bottom:287.542133pt;}
.y54{bottom:287.879467pt;}
.yf8{bottom:294.170133pt;}
.y14e{bottom:294.226133pt;}
.y7b{bottom:294.316800pt;}
.ye3{bottom:294.318133pt;}
.y25{bottom:295.927467pt;}
.y1c1{bottom:296.898133pt;}
.y176{bottom:296.984800pt;}
.yc4{bottom:299.428800pt;}
.y12b{bottom:299.591467pt;}
.y108{bottom:299.646133pt;}
.y190{bottom:306.290133pt;}
.y1a2{bottom:306.318133pt;}
.y9b{bottom:307.547467pt;}
.y53{bottom:307.884800pt;}
.y24{bottom:310.591467pt;}
.ye2{bottom:312.984800pt;}
.yf7{bottom:314.175467pt;}
.y14d{bottom:314.231467pt;}
.y7a{bottom:314.322133pt;}
.y1c0{bottom:315.564800pt;}
.y175{bottom:315.651467pt;}
.yc3{bottom:319.434133pt;}
.y12a{bottom:319.596800pt;}
.y107{bottom:319.651467pt;}
.y16d{bottom:320.914133pt;}
.y1a1{bottom:324.984800pt;}
.y23{bottom:325.255467pt;}
.y9a{bottom:327.552800pt;}
.y52{bottom:327.890133pt;}
.ye1{bottom:331.651467pt;}
.yf6{bottom:334.180800pt;}
.yc2{bottom:339.439467pt;}
.y129{bottom:339.602133pt;}
.y22{bottom:339.919467pt;}
.y16c{bottom:340.919467pt;}
.y1bf{bottom:343.564800pt;}
.y1a0{bottom:343.651467pt;}
.y18f{bottom:346.286133pt;}
.y51{bottom:347.895467pt;}
.ye0{bottom:350.318133pt;}
.y79{bottom:354.171467pt;}
.yf5{bottom:354.186133pt;}
.y14c{bottom:354.231467pt;}
.y21{bottom:354.583467pt;}
.yc1{bottom:359.444800pt;}
.y128{bottom:359.607467pt;}
.y106{bottom:359.651467pt;}
.y16b{bottom:360.924800pt;}
.y1be{bottom:362.231467pt;}
.y18e{bottom:366.291467pt;}
.y99{bottom:367.548800pt;}
.y50{bottom:367.900800pt;}
.ydf{bottom:368.984800pt;}
.y20{bottom:369.247467pt;}
.y19f{bottom:371.651467pt;}
.y14b{bottom:372.898133pt;}
.y78{bottom:374.176800pt;}
.yf4{bottom:374.191467pt;}
.y105{bottom:378.318133pt;}
.yc0{bottom:379.450133pt;}
.y1bd{bottom:380.898133pt;}
.y16a{bottom:380.930133pt;}
.y1f{bottom:383.911467pt;}
.y18d{bottom:386.296800pt;}
.y98{bottom:387.554133pt;}
.yde{bottom:387.651467pt;}
.y4f{bottom:387.906133pt;}
.y19e{bottom:390.318133pt;}
.y14a{bottom:391.564800pt;}
.y77{bottom:394.182133pt;}
.yf3{bottom:394.196800pt;}
.y104{bottom:396.984800pt;}
.y1e{bottom:398.575467pt;}
.ybf{bottom:399.455467pt;}
.y127{bottom:399.603467pt;}
.y169{bottom:400.935467pt;}
.y18c{bottom:406.302133pt;}
.y97{bottom:407.559467pt;}
.y4e{bottom:407.911467pt;}
.y1bc{bottom:408.898133pt;}
.y149{bottom:410.231467pt;}
.y76{bottom:414.187467pt;}
.yf2{bottom:414.202133pt;}
.y103{bottom:415.651467pt;}
.y19d{bottom:418.318133pt;}
.ybe{bottom:419.460800pt;}
.y126{bottom:419.608800pt;}
.y168{bottom:420.940800pt;}
.ydd{bottom:426.279467pt;}
.y18b{bottom:426.307467pt;}
.y96{bottom:427.564800pt;}
.y4d{bottom:427.916800pt;}
.y1d{bottom:428.575467pt;}
.y75{bottom:434.192800pt;}
.yf1{bottom:434.207467pt;}
.y19c{bottom:436.984800pt;}
.y125{bottom:439.614133pt;}
.y167{bottom:440.946133pt;}
.y1c{bottom:443.911467pt;}
.ydc{bottom:446.284800pt;}
.y18a{bottom:446.312800pt;}
.y95{bottom:447.570133pt;}
.y4c{bottom:447.922133pt;}
.y148{bottom:448.844800pt;}
.y74{bottom:454.198133pt;}
.yf0{bottom:454.212800pt;}
.y1bb{bottom:455.564800pt;}
.y19b{bottom:455.651467pt;}
.ybd{bottom:459.456800pt;}
.y124{bottom:459.619467pt;}
.y166{bottom:460.951467pt;}
.y1b{bottom:462.583467pt;}
.ydb{bottom:466.290133pt;}
.y189{bottom:466.318133pt;}
.y94{bottom:467.575467pt;}
.y147{bottom:468.850133pt;}
.y73{bottom:474.203467pt;}
.yef{bottom:474.218133pt;}
.y1ba{bottom:474.231467pt;}
.y1a{bottom:477.919467pt;}
.ybc{bottom:479.462133pt;}
.y123{bottom:479.624800pt;}
.y19a{bottom:483.651467pt;}
.yda{bottom:486.295467pt;}
.y93{bottom:487.580800pt;}
.y4b{bottom:487.918133pt;}
.y146{bottom:488.855467pt;}
.y19{bottom:493.255467pt;}
.y72{bottom:494.208800pt;}
.yee{bottom:494.223467pt;}
.ybb{bottom:499.467467pt;}
.y122{bottom:499.630133pt;}
.y165{bottom:500.947467pt;}
.y1b9{bottom:502.231467pt;}
.y199{bottom:502.318133pt;}
.yd9{bottom:506.300800pt;}
.y188{bottom:506.318133pt;}
.y92{bottom:507.586133pt;}
.y4a{bottom:507.923467pt;}
.y18{bottom:508.591467pt;}
.y145{bottom:508.860800pt;}
.y71{bottom:514.214133pt;}
.yba{bottom:519.472800pt;}
.y121{bottom:519.635467pt;}
.y1b8{bottom:520.898133pt;}
.y164{bottom:520.952800pt;}
.y17{bottom:523.927467pt;}
.yd8{bottom:526.306133pt;}
.y91{bottom:527.591467pt;}
.y49{bottom:527.928800pt;}
.y144{bottom:528.866133pt;}
.y70{bottom:534.219467pt;}
.y16{bottom:539.263467pt;}
.yb9{bottom:539.478133pt;}
.y1b7{bottom:539.564800pt;}
.y120{bottom:539.640800pt;}
.y163{bottom:540.958133pt;}
.y198{bottom:540.984800pt;}
.yd7{bottom:546.311467pt;}
.y90{bottom:547.596800pt;}
.y48{bottom:547.934133pt;}
.y143{bottom:548.871467pt;}
.y6f{bottom:554.224800pt;}
.y15{bottom:554.599467pt;}
.yb8{bottom:559.483467pt;}
.y11f{bottom:559.646133pt;}
.y162{bottom:560.963467pt;}
.y1b6{bottom:567.564800pt;}
.y8f{bottom:567.602133pt;}
.y47{bottom:567.939467pt;}
.y142{bottom:568.876800pt;}
.y14{bottom:569.935467pt;}
.y6e{bottom:574.230133pt;}
.yb7{bottom:579.488800pt;}
.y187{bottom:579.608800pt;}
.y11e{bottom:579.651467pt;}
.y161{bottom:580.968800pt;}
.y1b5{bottom:586.231467pt;}
.yd6{bottom:586.307467pt;}
.y8e{bottom:587.607467pt;}
.y46{bottom:587.944800pt;}
.y141{bottom:588.882133pt;}
.y6d{bottom:594.235467pt;}
.yb6{bottom:599.494133pt;}
.y186{bottom:599.614133pt;}
.y160{bottom:600.974133pt;}
.yd5{bottom:606.312800pt;}
.y45{bottom:607.950133pt;}
.y140{bottom:608.887467pt;}
.y1b4{bottom:614.231467pt;}
.y6c{bottom:614.240800pt;}
.y13{bottom:618.160667pt;}
.yb5{bottom:619.499467pt;}
.y185{bottom:619.619467pt;}
.y11d{bottom:619.651467pt;}
.y15f{bottom:620.979467pt;}
.yd4{bottom:626.318133pt;}
.y8d{bottom:627.603467pt;}
.y44{bottom:627.955467pt;}
.y13f{bottom:628.892800pt;}
.y1b3{bottom:632.898133pt;}
.y6b{bottom:634.246133pt;}
.y12{bottom:636.827333pt;}
.y11c{bottom:638.318133pt;}
.yb4{bottom:639.504800pt;}
.y184{bottom:639.624800pt;}
.y15e{bottom:640.984800pt;}
.y8c{bottom:647.608800pt;}
.y43{bottom:647.960800pt;}
.y13e{bottom:648.898133pt;}
.y1b2{bottom:651.564800pt;}
.yff{bottom:654.236800pt;}
.yed{bottom:654.251467pt;}
.y11{bottom:655.494000pt;}
.y11b{bottom:656.984800pt;}
.y29{bottom:659.323467pt;}
.yb3{bottom:659.510133pt;}
.y183{bottom:659.630133pt;}
.yd3{bottom:666.318133pt;}
.y8b{bottom:667.614133pt;}
.y42{bottom:667.966133pt;}
.y10{bottom:674.160667pt;}
.y6a{bottom:674.242133pt;}
.yec{bottom:674.256800pt;}
.y11a{bottom:675.651467pt;}
.y28{bottom:676.651467pt;}
.y1b1{bottom:679.564800pt;}
.y182{bottom:679.635467pt;}
.y15d{bottom:680.984800pt;}
.yd2{bottom:684.984800pt;}
.y8a{bottom:687.619467pt;}
.y41{bottom:687.971467pt;}
.y13d{bottom:688.898133pt;}
.y69{bottom:694.247467pt;}
.yeb{bottom:694.262133pt;}
.y1b0{bottom:698.231467pt;}
.yb2{bottom:699.506133pt;}
.y181{bottom:699.640800pt;}
.y15c{bottom:699.651467pt;}
.yd1{bottom:703.651467pt;}
.y13c{bottom:707.564800pt;}
.y89{bottom:707.624800pt;}
.y40{bottom:707.976800pt;}
.y68{bottom:714.252800pt;}
.y102{bottom:714.267467pt;}
.y15b{bottom:718.318133pt;}
.yb1{bottom:719.511467pt;}
.y180{bottom:719.646133pt;}
.yd0{bottom:722.318133pt;}
.y13b{bottom:726.231467pt;}
.y88{bottom:727.630133pt;}
.y3f{bottom:727.982133pt;}
.y67{bottom:734.258133pt;}
.y101{bottom:734.272800pt;}
.y15a{bottom:736.984800pt;}
.yb0{bottom:739.516800pt;}
.y17f{bottom:739.651467pt;}
.ycf{bottom:740.984800pt;}
.y13a{bottom:744.898133pt;}
.y87{bottom:747.635467pt;}
.y66{bottom:754.263467pt;}
.y159{bottom:755.651467pt;}
.yaf{bottom:759.522133pt;}
.yce{bottom:759.651467pt;}
.y1af{bottom:763.564800pt;}
.yf{bottom:766.205867pt;}
.y86{bottom:767.640800pt;}
.y3e{bottom:767.978133pt;}
.y65{bottom:774.268800pt;}
.ycd{bottom:778.318133pt;}
.yae{bottom:779.527467pt;}
.y17e{bottom:779.651467pt;}
.y139{bottom:783.543467pt;}
.y85{bottom:787.646133pt;}
.y3d{bottom:787.983467pt;}
.ye{bottom:790.205867pt;}
.y1ae{bottom:791.564800pt;}
.y64{bottom:794.274133pt;}
.ycc{bottom:796.984800pt;}
.y17d{bottom:798.318133pt;}
.yad{bottom:799.532800pt;}
.y138{bottom:803.548800pt;}
.y84{bottom:807.651467pt;}
.y3c{bottom:807.988800pt;}
.y1ad{bottom:810.231467pt;}
.y113{bottom:814.264800pt;}
.y63{bottom:814.279467pt;}
.ycb{bottom:815.651467pt;}
.y17c{bottom:816.984800pt;}
.yac{bottom:819.538133pt;}
.y137{bottom:823.554133pt;}
.yd{bottom:825.544400pt;}
.y3b{bottom:827.994133pt;}
.y1ac{bottom:828.898133pt;}
.y112{bottom:834.270133pt;}
.y62{bottom:834.284800pt;}
.y17b{bottom:835.651467pt;}
.yab{bottom:839.543467pt;}
.y136{bottom:843.559467pt;}
.y83{bottom:847.651467pt;}
.y3a{bottom:847.999467pt;}
.y111{bottom:854.275467pt;}
.y61{bottom:854.290133pt;}
.yc{bottom:856.211067pt;}
.y1ab{bottom:856.898133pt;}
.yaa{bottom:859.548800pt;}
.y135{bottom:863.564800pt;}
.y39{bottom:868.004800pt;}
.y110{bottom:874.280800pt;}
.yea{bottom:874.295467pt;}
.y1aa{bottom:875.564800pt;}
.ya9{bottom:879.554133pt;}
.y82{bottom:880.984800pt;}
.yb{bottom:886.877733pt;}
.y38{bottom:888.010133pt;}
.y60{bottom:894.286133pt;}
.y100{bottom:894.300800pt;}
.ya8{bottom:899.559467pt;}
.y134{bottom:903.564800pt;}
.y37{bottom:908.015467pt;}
.y5f{bottom:914.291467pt;}
.y158{bottom:914.306133pt;}
.ya7{bottom:919.564800pt;}
.y133{bottom:922.231467pt;}
.y36{bottom:928.020800pt;}
.y5e{bottom:934.296800pt;}
.y132{bottom:940.898133pt;}
.y35{bottom:948.026133pt;}
.y1a9{bottom:950.231467pt;}
.y5d{bottom:954.302133pt;}
.ya6{bottom:959.564800pt;}
.y34{bottom:968.031467pt;}
.y1a8{bottom:968.898133pt;}
.y5c{bottom:974.307467pt;}
.y6{bottom:977.126533pt;}
.ya5{bottom:978.231467pt;}
.y5b{bottom:994.312800pt;}
.ya4{bottom:996.898133pt;}
.y5{bottom:1005.540000pt;}
.y33{bottom:1008.031467pt;}
.y5a{bottom:1014.318133pt;}
.ya3{bottom:1015.564800pt;}
.y1{bottom:1019.032000pt;}
.y3{bottom:1038.906267pt;}
.y2e{bottom:1053.625200pt;}
.y2f{bottom:1084.897600pt;}
.h4{height:33.600000pt;}
.h6{height:50.400000pt;}
.h2{height:55.488000pt;}
.h9{height:56.000000pt;}
.h3{height:57.198000pt;}
.h8{height:60.000000pt;}
.h5{height:61.600000pt;}
.hd{height:62.186667pt;}
.ha{height:64.000000pt;}
.hc{height:80.000000pt;}
.h7{height:112.000000pt;}
.hb{height:161.235760pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:314.870667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:18.897600pt;}
.xe{left:46.923600pt;}
.x1{left:48.000000pt;}
.x5{left:51.023600pt;}
.x4{left:53.877467pt;}
.xf{left:94.488133pt;}
.x11{left:120.944800pt;}
.x10{left:128.488133pt;}
.x2{left:138.580000pt;}
.x3{left:186.580000pt;}
.xa{left:188.976400pt;}
.x6{left:196.850400pt;}
.x7{left:198.558267pt;}
.x9{left:210.097067pt;}
.x8{left:212.560667pt;}
.xb{left:729.238267pt;}
.x12{left:736.627467pt;}
.xc{left:737.789600pt;}
}




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