
    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_8029c459e27ec00638f50759.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_eb5367ba6276b7fe1c7ccd31.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_ea69ba8a8dbbfa1dbe4647dd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e9b5a3b94046da4ea125c654.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_aa6b90e0b565a07aab0fc716.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.124016;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_93741c74a1cdb232bfc80a57.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.122000;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_edf8dbbc13cdcfe20b750950.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000048;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_f3e7fda91c474d3b62bc20c1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_e23964be24feb0482f34a7e3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.841000;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_eb5367ba6276b7fe1c7ccd31.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.922852;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_eb5367ba6276b7fe1c7ccd31.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.922852;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_b7be7ad05c9fc2b08cd74c9e.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ea69ba8a8dbbfa1dbe4647dd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_49ae15bffb212a0d5a669fa1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.122000;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_1f7240eb50bc647db2db5c08.woff2')format("woff");}.fff{font-family:fff;line-height:0.924316;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_eb8e1877abfaf19e70899b89.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.922852;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_eb5367ba6276b7fe1c7ccd31.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.922852;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_eb5367ba6276b7fe1c7ccd31.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.922852;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_b7be7ad05c9fc2b08cd74c9e.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_ea69ba8a8dbbfa1dbe4647dd.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_49ae15bffb212a0d5a669fa1.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.122000;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_2205fe9d21ca2ace2e5da627.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.922852;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.v1{vertical-align:-7.956600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.825400px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws33{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.280000px;}
.wsb{word-spacing:-10.494000px;}
.ws50{word-spacing:-7.488000px;}
.ws2a{word-spacing:-7.344000px;}
.wsd1{word-spacing:-6.912000px;}
.wsc9{word-spacing:-6.840000px;}
.wscc{word-spacing:-6.264000px;}
.ws6{word-spacing:-6.192000px;}
.ws8f{word-spacing:-5.760000px;}
.ws7f{word-spacing:-5.472000px;}
.ws8b{word-spacing:-5.328000px;}
.ws76{word-spacing:-5.184000px;}
.ws15{word-spacing:-5.112000px;}
.ws94{word-spacing:-4.968000px;}
.ws5e{word-spacing:-4.608000px;}
.ws6d{word-spacing:-4.536000px;}
.wsaf{word-spacing:-4.320000px;}
.ws2c{word-spacing:-4.248000px;}
.ws17{word-spacing:-3.960000px;}
.ws66{word-spacing:-3.816000px;}
.ws60{word-spacing:-3.600000px;}
.ws4d{word-spacing:-3.456000px;}
.ws5d{word-spacing:-3.312000px;}
.ws70{word-spacing:-3.240000px;}
.wsc{word-spacing:-3.168000px;}
.wsd{word-spacing:-3.024000px;}
.ws9e{word-spacing:-2.952000px;}
.ws72{word-spacing:-2.880000px;}
.wsc7{word-spacing:-2.736000px;}
.ws9{word-spacing:-2.592000px;}
.ws5f{word-spacing:-2.520000px;}
.ws4c{word-spacing:-2.448000px;}
.ws56{word-spacing:-2.304000px;}
.wsb2{word-spacing:-2.232000px;}
.wsce{word-spacing:-2.160000px;}
.ws3a{word-spacing:-2.088000px;}
.ws87{word-spacing:-2.016000px;}
.ws36{word-spacing:-1.944000px;}
.ws4e{word-spacing:-1.800000px;}
.wsc6{word-spacing:-1.728000px;}
.wsb1{word-spacing:-1.656000px;}
.ws10{word-spacing:-1.584000px;}
.ws99{word-spacing:-1.512000px;}
.ws71{word-spacing:-1.440000px;}
.wsbe{word-spacing:-1.368000px;}
.wsb4{word-spacing:-1.296000px;}
.wsbd{word-spacing:-1.224000px;}
.ws55{word-spacing:-1.152000px;}
.ws51{word-spacing:-1.080000px;}
.ws1b{word-spacing:-1.008000px;}
.ws61{word-spacing:-0.936000px;}
.ws64{word-spacing:-0.864000px;}
.ws39{word-spacing:-0.792000px;}
.ws77{word-spacing:-0.720000px;}
.ws8e{word-spacing:-0.648000px;}
.wscb{word-spacing:-0.576000px;}
.ws34{word-spacing:-0.432000px;}
.ws1c{word-spacing:-0.360000px;}
.ws8{word-spacing:-0.288000px;}
.ws3e{word-spacing:-0.216000px;}
.ws3d{word-spacing:-0.144000px;}
.wsb7{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.ws78{word-spacing:0.072000px;}
.ws5{word-spacing:0.144000px;}
.ws42{word-spacing:0.216000px;}
.wsca{word-spacing:0.288000px;}
.ws69{word-spacing:0.360000px;}
.ws58{word-spacing:0.432000px;}
.ws5c{word-spacing:0.504000px;}
.ws1a{word-spacing:0.576000px;}
.ws46{word-spacing:0.648000px;}
.wsd2{word-spacing:0.720000px;}
.wsa5{word-spacing:0.792000px;}
.ws13{word-spacing:0.864000px;}
.wsa2{word-spacing:0.936000px;}
.ws3f{word-spacing:1.008000px;}
.ws2d{word-spacing:1.080000px;}
.ws30{word-spacing:1.152000px;}
.ws2{word-spacing:1.224000px;}
.wsbf{word-spacing:1.296000px;}
.ws9b{word-spacing:1.368000px;}
.ws82{word-spacing:1.440000px;}
.ws21{word-spacing:1.584000px;}
.ws85{word-spacing:1.656000px;}
.ws16{word-spacing:1.728000px;}
.ws6f{word-spacing:1.800000px;}
.ws40{word-spacing:1.872000px;}
.ws23{word-spacing:1.944000px;}
.ws22{word-spacing:2.088000px;}
.ws86{word-spacing:2.160000px;}
.ws49{word-spacing:2.304000px;}
.wsf{word-spacing:2.376000px;}
.ws2b{word-spacing:2.448000px;}
.ws9d{word-spacing:2.520000px;}
.ws7c{word-spacing:2.592000px;}
.ws6b{word-spacing:2.664000px;}
.ws14{word-spacing:2.736000px;}
.ws24{word-spacing:2.880000px;}
.ws93{word-spacing:2.952000px;}
.wsc1{word-spacing:3.024000px;}
.ws35{word-spacing:3.096000px;}
.ws4a{word-spacing:3.240000px;}
.ws12{word-spacing:3.312000px;}
.ws96{word-spacing:3.384000px;}
.ws48{word-spacing:3.456000px;}
.ws7d{word-spacing:3.528000px;}
.wsad{word-spacing:3.600000px;}
.ws6c{word-spacing:3.672000px;}
.ws4{word-spacing:3.744000px;}
.ws29{word-spacing:3.816000px;}
.ws19{word-spacing:3.888000px;}
.ws41{word-spacing:3.960000px;}
.wsba{word-spacing:4.032000px;}
.ws7{word-spacing:4.104000px;}
.wsae{word-spacing:4.176000px;}
.ws59{word-spacing:4.320000px;}
.ws57{word-spacing:4.392000px;}
.ws9f{word-spacing:4.536000px;}
.ws7a{word-spacing:4.608000px;}
.wsb8{word-spacing:4.752000px;}
.ws81{word-spacing:4.824000px;}
.ws6e{word-spacing:4.896000px;}
.wsc2{word-spacing:4.968000px;}
.wsa1{word-spacing:5.040000px;}
.ws28{word-spacing:5.112000px;}
.ws37{word-spacing:5.184000px;}
.wsab{word-spacing:5.256000px;}
.wsb9{word-spacing:5.544000px;}
.ws80{word-spacing:5.616000px;}
.ws31{word-spacing:5.688000px;}
.ws89{word-spacing:5.832000px;}
.ws84{word-spacing:5.904000px;}
.ws2e{word-spacing:5.976000px;}
.ws4b{word-spacing:6.048000px;}
.ws18{word-spacing:6.120000px;}
.wsbc{word-spacing:6.192000px;}
.ws73{word-spacing:6.336000px;}
.ws25{word-spacing:6.408000px;}
.wsb0{word-spacing:6.624000px;}
.wse{word-spacing:6.768000px;}
.wsb3{word-spacing:6.840000px;}
.wsa3{word-spacing:6.912000px;}
.ws20{word-spacing:6.984000px;}
.ws53{word-spacing:7.056000px;}
.ws2f{word-spacing:7.200000px;}
.ws88{word-spacing:7.344000px;}
.wsc0{word-spacing:7.488000px;}
.ws9c{word-spacing:7.560000px;}
.ws54{word-spacing:7.632000px;}
.ws68{word-spacing:7.704000px;}
.ws9a{word-spacing:7.776000px;}
.ws26{word-spacing:7.848000px;}
.wsaa{word-spacing:7.920000px;}
.ws65{word-spacing:8.064000px;}
.wsa6{word-spacing:8.136000px;}
.ws3{word-spacing:8.208000px;}
.ws1f{word-spacing:8.280000px;}
.wsa9{word-spacing:8.352000px;}
.wsd0{word-spacing:8.424000px;}
.ws98{word-spacing:8.496000px;}
.ws3c{word-spacing:9.000000px;}
.wsa7{word-spacing:9.144000px;}
.wsc4{word-spacing:9.216000px;}
.ws11{word-spacing:9.360000px;}
.ws8a{word-spacing:9.576000px;}
.wsb5{word-spacing:9.720000px;}
.ws38{word-spacing:9.792000px;}
.wsbb{word-spacing:9.864000px;}
.ws67{word-spacing:9.936000px;}
.ws83{word-spacing:10.008000px;}
.ws8c{word-spacing:10.080000px;}
.wsa8{word-spacing:10.152000px;}
.ws1d{word-spacing:10.296000px;}
.wscd{word-spacing:10.368000px;}
.wsc5{word-spacing:10.512000px;}
.ws92{word-spacing:10.944000px;}
.wsac{word-spacing:11.016000px;}
.ws91{word-spacing:11.088000px;}
.ws6a{word-spacing:11.304000px;}
.ws75{word-spacing:11.376000px;}
.wsa0{word-spacing:11.520000px;}
.ws5a{word-spacing:11.592000px;}
.ws44{word-spacing:11.736000px;}
.ws97{word-spacing:11.880000px;}
.ws79{word-spacing:11.952000px;}
.wsc3{word-spacing:12.096000px;}
.wsb6{word-spacing:12.168000px;}
.wsa4{word-spacing:12.240000px;}
.ws5b{word-spacing:12.528000px;}
.ws7b{word-spacing:13.032000px;}
.ws45{word-spacing:13.248000px;}
.wsd3{word-spacing:13.320000px;}
.ws43{word-spacing:13.680000px;}
.ws95{word-spacing:13.968000px;}
.ws62{word-spacing:15.048000px;}
.ws1e{word-spacing:15.408000px;}
.wsc8{word-spacing:16.200000px;}
.wscf{word-spacing:16.848000px;}
.ws63{word-spacing:17.208000px;}
.ws74{word-spacing:17.928000px;}
.ws90{word-spacing:18.936000px;}
.ws8d{word-spacing:19.224000px;}
.ws27{word-spacing:19.296000px;}
.ws4f{word-spacing:19.584000px;}
.ws47{word-spacing:20.088000px;}
.ws52{word-spacing:22.104000px;}
.ws7e{word-spacing:22.896000px;}
.ws3b{word-spacing:28.440000px;}
.wsd4{word-spacing:49.464000px;}
.ws32{word-spacing:2517.306600px;}
.wsa{word-spacing:2517.307200px;}
._d{margin-left:-10.231200px;}
._0{margin-left:-8.634000px;}
._c{margin-left:-7.626000px;}
._6{margin-left:-6.127200px;}
._2{margin-left:-4.752000px;}
._4{margin-left:-3.456000px;}
._5{margin-left:-2.167200px;}
._1{margin-left:-1.110000px;}
._3{width:1.296000px;}
._8{width:2.886000px;}
._9{width:3.967200px;}
._b{width:4.993200px;}
._a{width:10.296000px;}
._7{width:13.747200px;}
.fc2{color:rgb(248,249,249);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(250,250,250);}
.fs5{font-size:41.976000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:41.809500px;}
.y4{bottom:63.361950px;}
.y1{bottom:63.779550px;}
.y17{bottom:66.160500px;}
.y61{bottom:81.042450px;}
.yc8{bottom:81.048450px;}
.y7f{bottom:81.054300px;}
.y3{bottom:81.361950px;}
.y16{bottom:85.960500px;}
.y119{bottom:87.504600px;}
.y127{bottom:96.000600px;}
.y147{bottom:96.018600px;}
.y42{bottom:96.588300px;}
.y60{bottom:99.042450px;}
.y2{bottom:99.361950px;}
.y15{bottom:105.760500px;}
.y14f{bottom:107.214600px;}
.y118{bottom:107.304600px;}
.yc7{bottom:111.798450px;}
.y7e{bottom:111.804300px;}
.y10d{bottom:115.792650px;}
.y126{bottom:115.800600px;}
.y146{bottom:115.818600px;}
.y41{bottom:116.388300px;}
.ye2{bottom:117.042450px;}
.y14{bottom:125.560500px;}
.yae{bottom:127.104600px;}
.ya6{bottom:129.870900px;}
.y96{bottom:129.880950px;}
.y14e{bottom:135.510600px;}
.y10c{bottom:135.592650px;}
.y117{bottom:135.600600px;}
.y145{bottom:135.618600px;}
.y40{bottom:136.188300px;}
.yf9{bottom:141.192900px;}
.y7d{bottom:142.554300px;}
.y13{bottom:145.360500px;}
.yde{bottom:146.886600px;}
.y5f{bottom:146.896650px;}
.yad{bottom:146.904600px;}
.y95{bottom:149.680950px;}
.yc6{bottom:152.520600px;}
.y10b{bottom:155.392650px;}
.y116{bottom:155.400600px;}
.y144{bottom:155.418600px;}
.y3f{bottom:155.988300px;}
.ye1{bottom:158.184900px;}
.y7c{bottom:160.554300px;}
.yf8{bottom:160.992900px;}
.y14d{bottom:163.806600px;}
.ydd{bottom:166.686600px;}
.y5e{bottom:166.696650px;}
.yac{bottom:166.704600px;}
.y94{bottom:169.480950px;}
.yc5{bottom:172.320600px;}
.y10a{bottom:175.192650px;}
.y115{bottom:175.200600px;}
.y3e{bottom:175.788300px;}
.ye0{bottom:177.984900px;}
.yf7{bottom:180.792900px;}
.y14c{bottom:183.606600px;}
.y143{bottom:183.714600px;}
.ydc{bottom:186.486600px;}
.y5d{bottom:186.496650px;}
.ya5{bottom:186.504600px;}
.y7b{bottom:189.273000px;}
.y93{bottom:189.280950px;}
.yc4{bottom:192.120600px;}
.y109{bottom:194.992650px;}
.y114{bottom:195.000600px;}
.y3d{bottom:195.588300px;}
.ydf{bottom:197.784900px;}
.yf6{bottom:200.592900px;}
.y142{bottom:203.514600px;}
.ydb{bottom:206.286600px;}
.y5c{bottom:206.296650px;}
.ya4{bottom:206.304600px;}
.y7a{bottom:209.073000px;}
.y92{bottom:209.080950px;}
.y14b{bottom:211.902600px;}
.yc3{bottom:211.920600px;}
.y113{bottom:214.800600px;}
.y3c{bottom:215.388300px;}
.y163{bottom:217.590600px;}
.yf5{bottom:220.392900px;}
.y108{bottom:223.288650px;}
.y141{bottom:223.314600px;}
.yda{bottom:226.086600px;}
.y5b{bottom:226.096650px;}
.ya3{bottom:226.104600px;}
.y79{bottom:228.896700px;}
.yc2{bottom:231.720600px;}
.y112{bottom:234.600600px;}
.y3b{bottom:235.188300px;}
.y91{bottom:237.376950px;}
.y12{bottom:238.483650px;}
.yf4{bottom:240.192900px;}
.y14a{bottom:240.198600px;}
.y107{bottom:243.088650px;}
.y140{bottom:243.114600px;}
.yd9{bottom:245.886600px;}
.y5a{bottom:245.896650px;}
.ya2{bottom:245.904600px;}
.yc1{bottom:251.520600px;}
.y111{bottom:254.400600px;}
.y3a{bottom:254.988300px;}
.y90{bottom:257.176950px;}
.y78{bottom:257.192700px;}
.yf3{bottom:259.992900px;}
.y106{bottom:262.888650px;}
.y125{bottom:262.896600px;}
.y13f{bottom:262.914600px;}
.yd8{bottom:265.686600px;}
.y59{bottom:265.696650px;}
.ya1{bottom:265.704600px;}
.y11{bottom:266.779650px;}
.y149{bottom:268.494600px;}
.yc0{bottom:271.320600px;}
.y110{bottom:274.200600px;}
.y77{bottom:276.992700px;}
.y105{bottom:282.688650px;}
.y124{bottom:282.696600px;}
.y13e{bottom:282.714600px;}
.y39{bottom:283.284300px;}
.yd7{bottom:285.486600px;}
.y58{bottom:285.496650px;}
.y8f{bottom:285.504600px;}
.y10{bottom:286.579650px;}
.yf2{bottom:288.288900px;}
.ybf{bottom:291.120600px;}
.y162{bottom:293.982600px;}
.y10f{bottom:294.000600px;}
.y148{bottom:296.790600px;}
.y76{bottom:296.792700px;}
.y104{bottom:302.488650px;}
.y123{bottom:302.496600px;}
.y13d{bottom:302.514600px;}
.y38{bottom:303.084300px;}
.yd6{bottom:305.286600px;}
.y8e{bottom:305.304600px;}
.yf{bottom:306.379650px;}
.yf1{bottom:308.088900px;}
.ybe{bottom:310.920600px;}
.y57{bottom:313.792650px;}
.y10e{bottom:313.800600px;}
.y75{bottom:316.592700px;}
.y161{bottom:322.278600px;}
.y103{bottom:322.288650px;}
.y122{bottom:322.296600px;}
.y13c{bottom:322.314600px;}
.y37{bottom:322.884300px;}
.yd5{bottom:325.086600px;}
.y8d{bottom:325.104600px;}
.ye{bottom:326.179650px;}
.yf0{bottom:327.888900px;}
.ybd{bottom:330.720600px;}
.y56{bottom:333.592650px;}
.yab{bottom:333.600600px;}
.y160{bottom:342.078600px;}
.y102{bottom:342.088650px;}
.y121{bottom:342.096600px;}
.y13b{bottom:342.114600px;}
.y36{bottom:342.684300px;}
.yd4{bottom:344.886600px;}
.y74{bottom:344.888700px;}
.y8c{bottom:344.904600px;}
.yd{bottom:345.979650px;}
.yef{bottom:347.688900px;}
.y55{bottom:353.392650px;}
.yaa{bottom:353.400600px;}
.ybc{bottom:359.016600px;}
.y101{bottom:361.888650px;}
.y120{bottom:361.896600px;}
.y13a{bottom:361.914600px;}
.y35{bottom:362.484300px;}
.yd3{bottom:364.686600px;}
.y73{bottom:364.688700px;}
.y8b{bottom:364.704600px;}
.yee{bottom:367.488900px;}
.y15f{bottom:370.374600px;}
.ya0{bottom:373.200600px;}
.yc{bottom:374.275650px;}
.ybb{bottom:378.816600px;}
.y100{bottom:381.688650px;}
.y11f{bottom:381.696600px;}
.y139{bottom:381.714600px;}
.y54{bottom:381.726300px;}
.y34{bottom:382.284300px;}
.yd2{bottom:384.486600px;}
.y72{bottom:384.488700px;}
.y8a{bottom:384.504600px;}
.yed{bottom:387.288900px;}
.y15e{bottom:390.174600px;}
.ya9{bottom:393.000600px;}
.yba{bottom:398.616600px;}
.yff{bottom:401.488650px;}
.y9f{bottom:401.496600px;}
.y138{bottom:401.514600px;}
.y53{bottom:401.526300px;}
.y33{bottom:402.084300px;}
.yd1{bottom:404.286600px;}
.y71{bottom:404.288700px;}
.y89{bottom:404.304600px;}
.yec{bottom:407.088900px;}
.ya8{bottom:412.800600px;}
.yb9{bottom:418.416600px;}
.y15d{bottom:418.470600px;}
.yfe{bottom:421.288650px;}
.y9e{bottom:421.296600px;}
.y137{bottom:421.314600px;}
.y52{bottom:421.326300px;}
.y32{bottom:421.884300px;}
.yd0{bottom:424.086600px;}
.y70{bottom:424.088700px;}
.y88{bottom:424.104600px;}
.yeb{bottom:426.888900px;}
.y11e{bottom:429.792600px;}
.yb{bottom:430.885650px;}
.ya7{bottom:432.600600px;}
.yfd{bottom:441.088650px;}
.y9d{bottom:441.096600px;}
.y51{bottom:441.126300px;}
.y31{bottom:441.684300px;}
.ycf{bottom:443.886600px;}
.y87{bottom:443.904600px;}
.yb8{bottom:446.712600px;}
.y15c{bottom:446.766600px;}
.y11d{bottom:449.592600px;}
.y136{bottom:449.610600px;}
.y6f{bottom:452.400600px;}
.yea{bottom:455.184900px;}
.ya{bottom:459.181650px;}
.yfc{bottom:460.888650px;}
.y9c{bottom:460.896600px;}
.y50{bottom:460.926300px;}
.y30{bottom:461.484300px;}
.y86{bottom:463.704600px;}
.yb7{bottom:466.512600px;}
.y15b{bottom:466.566600px;}
.y11c{bottom:469.392600px;}
.y135{bottom:469.410600px;}
.yce{bottom:472.182600px;}
.y6e{bottom:472.200600px;}
.ye9{bottom:474.984900px;}
.y9{bottom:478.981650px;}
.yfb{bottom:480.688650px;}
.y9b{bottom:480.696600px;}
.y4f{bottom:480.726300px;}
.y11b{bottom:489.192600px;}
.y134{bottom:489.210600px;}
.y2f{bottom:489.780300px;}
.y6d{bottom:492.000600px;}
.ye8{bottom:494.784900px;}
.yb6{bottom:494.808600px;}
.y15a{bottom:494.862600px;}
.y8{bottom:498.781650px;}
.yfa{bottom:500.488650px;}
.y9a{bottom:500.496600px;}
.y11a{bottom:508.992600px;}
.y133{bottom:509.010600px;}
.y4e{bottom:509.022300px;}
.y6c{bottom:511.800600px;}
.yb5{bottom:514.608600px;}
.y2e{bottom:518.076300px;}
.y7{bottom:518.581650px;}
.y99{bottom:520.296600px;}
.ye7{bottom:523.096800px;}
.y159{bottom:523.158600px;}
.ycd{bottom:528.792600px;}
.y132{bottom:528.810600px;}
.y4d{bottom:528.822300px;}
.y6b{bottom:531.600600px;}
.y6{bottom:538.381650px;}
.y98{bottom:540.096600px;}
.ye6{bottom:542.896800px;}
.yb4{bottom:542.904600px;}
.y158{bottom:542.958600px;}
.y2d{bottom:546.380100px;}
.ycc{bottom:548.592600px;}
.y131{bottom:548.610600px;}
.y4c{bottom:548.622300px;}
.y6a{bottom:551.400600px;}
.y85{bottom:559.896600px;}
.ye5{bottom:562.696800px;}
.yb3{bottom:562.704600px;}
.y157{bottom:562.758600px;}
.y2c{bottom:564.530100px;}
.y5{bottom:566.677650px;}
.ycb{bottom:568.392600px;}
.y130{bottom:568.410600px;}
.y4b{bottom:568.422300px;}
.y69{bottom:571.200600px;}
.y84{bottom:579.696600px;}
.y156{bottom:582.558600px;}
.y2b{bottom:582.680100px;}
.yca{bottom:588.192600px;}
.y12f{bottom:588.210600px;}
.y4a{bottom:588.222300px;}
.ye4{bottom:590.992800px;}
.y68{bottom:591.000600px;}
.y83{bottom:599.496600px;}
.y2a{bottom:600.830100px;}
.yc9{bottom:607.992600px;}
.y12e{bottom:608.010600px;}
.y49{bottom:608.022300px;}
.y67{bottom:610.800600px;}
.y155{bottom:610.854600px;}
.y29{bottom:618.980100px;}
.y97{bottom:619.296600px;}
.y82{bottom:627.792600px;}
.y12d{bottom:627.810600px;}
.y48{bottom:627.822300px;}
.yb2{bottom:630.600600px;}
.y154{bottom:630.654600px;}
.y28{bottom:637.130100px;}
.y66{bottom:639.096600px;}
.y81{bottom:647.592600px;}
.y12c{bottom:647.610600px;}
.y47{bottom:647.622300px;}
.yb1{bottom:650.400600px;}
.y1a{bottom:652.411500px;}
.y27{bottom:655.280100px;}
.y65{bottom:658.896600px;}
.y153{bottom:658.950600px;}
.y80{bottom:667.392600px;}
.y12b{bottom:667.410600px;}
.y46{bottom:667.422300px;}
.yb0{bottom:670.200600px;}
.y26{bottom:673.430100px;}
.y19{bottom:674.011500px;}
.ye3{bottom:678.696600px;}
.y152{bottom:678.750600px;}
.y64{bottom:687.192600px;}
.y12a{bottom:687.210600px;}
.y45{bottom:687.222300px;}
.y25{bottom:691.580100px;}
.y18{bottom:695.611500px;}
.yaf{bottom:698.496600px;}
.y63{bottom:706.992600px;}
.y129{bottom:707.010600px;}
.y44{bottom:707.022300px;}
.y151{bottom:707.046600px;}
.y24{bottom:709.730100px;}
.y62{bottom:726.792600px;}
.y128{bottom:726.810600px;}
.y43{bottom:726.822300px;}
.y150{bottom:726.846600px;}
.y23{bottom:727.880100px;}
.y1c{bottom:749.601000px;}
.y1b{bottom:774.801000px;}
.y1f{bottom:784.480050px;}
.y1e{bottom:816.880050px;}
.y22{bottom:817.077450px;}
.y21{bottom:847.695450px;}
.y1d{bottom:849.280050px;}
.hc{height:39.990234px;}
.h4{height:40.664062px;}
.h3{height:48.281250px;}
.h2{height:48.796875px;}
.h8{height:49.992188px;}
.hb{height:51.180000px;}
.h7{height:56.298000px;}
.h6{height:61.416000px;}
.h5{height:62.856000px;}
.h9{height:69.468000px;}
.ha{height:86.906250px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xa{left:54.000000px;}
.x15{left:75.292950px;}
.x1c{left:96.541800px;}
.x9{left:112.677150px;}
.x1a{left:114.803100px;}
.x1b{left:117.835800px;}
.x10{left:153.436500px;}
.x11{left:156.175500px;}
.x12{left:159.376500px;}
.xd{left:169.078500px;}
.xf{left:174.804000px;}
.xe{left:178.879500px;}
.x1{left:185.103750px;}
.x3{left:243.779550px;}
.x13{left:262.006500px;}
.x14{left:364.336950px;}
.x8{left:414.161700px;}
.x17{left:649.420950px;}
.x16{left:670.714950px;}
.x19{left:691.954950px;}
.x18{left:713.248950px;}
.x2{left:735.448800px;}
.x6{left:758.507850px;}
.x7{left:772.529550px;}
.x5{left:792.365850px;}
.xb{left:814.894650px;}
.x4{left:1008.707850px;}
.xc{left:1025.584650px;}
@media print{
.v1{vertical-align:-7.072533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.178133pt;}
.ls0{letter-spacing:0.000000pt;}
.ws33{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.360000pt;}
.wsb{word-spacing:-9.328000pt;}
.ws50{word-spacing:-6.656000pt;}
.ws2a{word-spacing:-6.528000pt;}
.wsd1{word-spacing:-6.144000pt;}
.wsc9{word-spacing:-6.080000pt;}
.wscc{word-spacing:-5.568000pt;}
.ws6{word-spacing:-5.504000pt;}
.ws8f{word-spacing:-5.120000pt;}
.ws7f{word-spacing:-4.864000pt;}
.ws8b{word-spacing:-4.736000pt;}
.ws76{word-spacing:-4.608000pt;}
.ws15{word-spacing:-4.544000pt;}
.ws94{word-spacing:-4.416000pt;}
.ws5e{word-spacing:-4.096000pt;}
.ws6d{word-spacing:-4.032000pt;}
.wsaf{word-spacing:-3.840000pt;}
.ws2c{word-spacing:-3.776000pt;}
.ws17{word-spacing:-3.520000pt;}
.ws66{word-spacing:-3.392000pt;}
.ws60{word-spacing:-3.200000pt;}
.ws4d{word-spacing:-3.072000pt;}
.ws5d{word-spacing:-2.944000pt;}
.ws70{word-spacing:-2.880000pt;}
.wsc{word-spacing:-2.816000pt;}
.wsd{word-spacing:-2.688000pt;}
.ws9e{word-spacing:-2.624000pt;}
.ws72{word-spacing:-2.560000pt;}
.wsc7{word-spacing:-2.432000pt;}
.ws9{word-spacing:-2.304000pt;}
.ws5f{word-spacing:-2.240000pt;}
.ws4c{word-spacing:-2.176000pt;}
.ws56{word-spacing:-2.048000pt;}
.wsb2{word-spacing:-1.984000pt;}
.wsce{word-spacing:-1.920000pt;}
.ws3a{word-spacing:-1.856000pt;}
.ws87{word-spacing:-1.792000pt;}
.ws36{word-spacing:-1.728000pt;}
.ws4e{word-spacing:-1.600000pt;}
.wsc6{word-spacing:-1.536000pt;}
.wsb1{word-spacing:-1.472000pt;}
.ws10{word-spacing:-1.408000pt;}
.ws99{word-spacing:-1.344000pt;}
.ws71{word-spacing:-1.280000pt;}
.wsbe{word-spacing:-1.216000pt;}
.wsb4{word-spacing:-1.152000pt;}
.wsbd{word-spacing:-1.088000pt;}
.ws55{word-spacing:-1.024000pt;}
.ws51{word-spacing:-0.960000pt;}
.ws1b{word-spacing:-0.896000pt;}
.ws61{word-spacing:-0.832000pt;}
.ws64{word-spacing:-0.768000pt;}
.ws39{word-spacing:-0.704000pt;}
.ws77{word-spacing:-0.640000pt;}
.ws8e{word-spacing:-0.576000pt;}
.wscb{word-spacing:-0.512000pt;}
.ws34{word-spacing:-0.384000pt;}
.ws1c{word-spacing:-0.320000pt;}
.ws8{word-spacing:-0.256000pt;}
.ws3e{word-spacing:-0.192000pt;}
.ws3d{word-spacing:-0.128000pt;}
.wsb7{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.ws78{word-spacing:0.064000pt;}
.ws5{word-spacing:0.128000pt;}
.ws42{word-spacing:0.192000pt;}
.wsca{word-spacing:0.256000pt;}
.ws69{word-spacing:0.320000pt;}
.ws58{word-spacing:0.384000pt;}
.ws5c{word-spacing:0.448000pt;}
.ws1a{word-spacing:0.512000pt;}
.ws46{word-spacing:0.576000pt;}
.wsd2{word-spacing:0.640000pt;}
.wsa5{word-spacing:0.704000pt;}
.ws13{word-spacing:0.768000pt;}
.wsa2{word-spacing:0.832000pt;}
.ws3f{word-spacing:0.896000pt;}
.ws2d{word-spacing:0.960000pt;}
.ws30{word-spacing:1.024000pt;}
.ws2{word-spacing:1.088000pt;}
.wsbf{word-spacing:1.152000pt;}
.ws9b{word-spacing:1.216000pt;}
.ws82{word-spacing:1.280000pt;}
.ws21{word-spacing:1.408000pt;}
.ws85{word-spacing:1.472000pt;}
.ws16{word-spacing:1.536000pt;}
.ws6f{word-spacing:1.600000pt;}
.ws40{word-spacing:1.664000pt;}
.ws23{word-spacing:1.728000pt;}
.ws22{word-spacing:1.856000pt;}
.ws86{word-spacing:1.920000pt;}
.ws49{word-spacing:2.048000pt;}
.wsf{word-spacing:2.112000pt;}
.ws2b{word-spacing:2.176000pt;}
.ws9d{word-spacing:2.240000pt;}
.ws7c{word-spacing:2.304000pt;}
.ws6b{word-spacing:2.368000pt;}
.ws14{word-spacing:2.432000pt;}
.ws24{word-spacing:2.560000pt;}
.ws93{word-spacing:2.624000pt;}
.wsc1{word-spacing:2.688000pt;}
.ws35{word-spacing:2.752000pt;}
.ws4a{word-spacing:2.880000pt;}
.ws12{word-spacing:2.944000pt;}
.ws96{word-spacing:3.008000pt;}
.ws48{word-spacing:3.072000pt;}
.ws7d{word-spacing:3.136000pt;}
.wsad{word-spacing:3.200000pt;}
.ws6c{word-spacing:3.264000pt;}
.ws4{word-spacing:3.328000pt;}
.ws29{word-spacing:3.392000pt;}
.ws19{word-spacing:3.456000pt;}
.ws41{word-spacing:3.520000pt;}
.wsba{word-spacing:3.584000pt;}
.ws7{word-spacing:3.648000pt;}
.wsae{word-spacing:3.712000pt;}
.ws59{word-spacing:3.840000pt;}
.ws57{word-spacing:3.904000pt;}
.ws9f{word-spacing:4.032000pt;}
.ws7a{word-spacing:4.096000pt;}
.wsb8{word-spacing:4.224000pt;}
.ws81{word-spacing:4.288000pt;}
.ws6e{word-spacing:4.352000pt;}
.wsc2{word-spacing:4.416000pt;}
.wsa1{word-spacing:4.480000pt;}
.ws28{word-spacing:4.544000pt;}
.ws37{word-spacing:4.608000pt;}
.wsab{word-spacing:4.672000pt;}
.wsb9{word-spacing:4.928000pt;}
.ws80{word-spacing:4.992000pt;}
.ws31{word-spacing:5.056000pt;}
.ws89{word-spacing:5.184000pt;}
.ws84{word-spacing:5.248000pt;}
.ws2e{word-spacing:5.312000pt;}
.ws4b{word-spacing:5.376000pt;}
.ws18{word-spacing:5.440000pt;}
.wsbc{word-spacing:5.504000pt;}
.ws73{word-spacing:5.632000pt;}
.ws25{word-spacing:5.696000pt;}
.wsb0{word-spacing:5.888000pt;}
.wse{word-spacing:6.016000pt;}
.wsb3{word-spacing:6.080000pt;}
.wsa3{word-spacing:6.144000pt;}
.ws20{word-spacing:6.208000pt;}
.ws53{word-spacing:6.272000pt;}
.ws2f{word-spacing:6.400000pt;}
.ws88{word-spacing:6.528000pt;}
.wsc0{word-spacing:6.656000pt;}
.ws9c{word-spacing:6.720000pt;}
.ws54{word-spacing:6.784000pt;}
.ws68{word-spacing:6.848000pt;}
.ws9a{word-spacing:6.912000pt;}
.ws26{word-spacing:6.976000pt;}
.wsaa{word-spacing:7.040000pt;}
.ws65{word-spacing:7.168000pt;}
.wsa6{word-spacing:7.232000pt;}
.ws3{word-spacing:7.296000pt;}
.ws1f{word-spacing:7.360000pt;}
.wsa9{word-spacing:7.424000pt;}
.wsd0{word-spacing:7.488000pt;}
.ws98{word-spacing:7.552000pt;}
.ws3c{word-spacing:8.000000pt;}
.wsa7{word-spacing:8.128000pt;}
.wsc4{word-spacing:8.192000pt;}
.ws11{word-spacing:8.320000pt;}
.ws8a{word-spacing:8.512000pt;}
.wsb5{word-spacing:8.640000pt;}
.ws38{word-spacing:8.704000pt;}
.wsbb{word-spacing:8.768000pt;}
.ws67{word-spacing:8.832000pt;}
.ws83{word-spacing:8.896000pt;}
.ws8c{word-spacing:8.960000pt;}
.wsa8{word-spacing:9.024000pt;}
.ws1d{word-spacing:9.152000pt;}
.wscd{word-spacing:9.216000pt;}
.wsc5{word-spacing:9.344000pt;}
.ws92{word-spacing:9.728000pt;}
.wsac{word-spacing:9.792000pt;}
.ws91{word-spacing:9.856000pt;}
.ws6a{word-spacing:10.048000pt;}
.ws75{word-spacing:10.112000pt;}
.wsa0{word-spacing:10.240000pt;}
.ws5a{word-spacing:10.304000pt;}
.ws44{word-spacing:10.432000pt;}
.ws97{word-spacing:10.560000pt;}
.ws79{word-spacing:10.624000pt;}
.wsc3{word-spacing:10.752000pt;}
.wsb6{word-spacing:10.816000pt;}
.wsa4{word-spacing:10.880000pt;}
.ws5b{word-spacing:11.136000pt;}
.ws7b{word-spacing:11.584000pt;}
.ws45{word-spacing:11.776000pt;}
.wsd3{word-spacing:11.840000pt;}
.ws43{word-spacing:12.160000pt;}
.ws95{word-spacing:12.416000pt;}
.ws62{word-spacing:13.376000pt;}
.ws1e{word-spacing:13.696000pt;}
.wsc8{word-spacing:14.400000pt;}
.wscf{word-spacing:14.976000pt;}
.ws63{word-spacing:15.296000pt;}
.ws74{word-spacing:15.936000pt;}
.ws90{word-spacing:16.832000pt;}
.ws8d{word-spacing:17.088000pt;}
.ws27{word-spacing:17.152000pt;}
.ws4f{word-spacing:17.408000pt;}
.ws47{word-spacing:17.856000pt;}
.ws52{word-spacing:19.648000pt;}
.ws7e{word-spacing:20.352000pt;}
.ws3b{word-spacing:25.280000pt;}
.wsd4{word-spacing:43.968000pt;}
.ws32{word-spacing:2237.605867pt;}
.wsa{word-spacing:2237.606400pt;}
._d{margin-left:-9.094400pt;}
._0{margin-left:-7.674667pt;}
._c{margin-left:-6.778667pt;}
._6{margin-left:-5.446400pt;}
._2{margin-left:-4.224000pt;}
._4{margin-left:-3.072000pt;}
._5{margin-left:-1.926400pt;}
._1{margin-left:-0.986667pt;}
._3{width:1.152000pt;}
._8{width:2.565333pt;}
._9{width:3.526400pt;}
._b{width:4.438400pt;}
._a{width:9.152000pt;}
._7{width:12.219733pt;}
.fs5{font-size:37.312000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:37.164000pt;}
.y4{bottom:56.321733pt;}
.y1{bottom:56.692933pt;}
.y17{bottom:58.809333pt;}
.y61{bottom:72.037733pt;}
.yc8{bottom:72.043067pt;}
.y7f{bottom:72.048267pt;}
.y3{bottom:72.321733pt;}
.y16{bottom:76.409333pt;}
.y119{bottom:77.781867pt;}
.y127{bottom:85.333867pt;}
.y147{bottom:85.349867pt;}
.y42{bottom:85.856267pt;}
.y60{bottom:88.037733pt;}
.y2{bottom:88.321733pt;}
.y15{bottom:94.009333pt;}
.y14f{bottom:95.301867pt;}
.y118{bottom:95.381867pt;}
.yc7{bottom:99.376400pt;}
.y7e{bottom:99.381600pt;}
.y10d{bottom:102.926800pt;}
.y126{bottom:102.933867pt;}
.y146{bottom:102.949867pt;}
.y41{bottom:103.456267pt;}
.ye2{bottom:104.037733pt;}
.y14{bottom:111.609333pt;}
.yae{bottom:112.981867pt;}
.ya6{bottom:115.440800pt;}
.y96{bottom:115.449733pt;}
.y14e{bottom:120.453867pt;}
.y10c{bottom:120.526800pt;}
.y117{bottom:120.533867pt;}
.y145{bottom:120.549867pt;}
.y40{bottom:121.056267pt;}
.yf9{bottom:125.504800pt;}
.y7d{bottom:126.714933pt;}
.y13{bottom:129.209333pt;}
.yde{bottom:130.565867pt;}
.y5f{bottom:130.574800pt;}
.yad{bottom:130.581867pt;}
.y95{bottom:133.049733pt;}
.yc6{bottom:135.573867pt;}
.y10b{bottom:138.126800pt;}
.y116{bottom:138.133867pt;}
.y144{bottom:138.149867pt;}
.y3f{bottom:138.656267pt;}
.ye1{bottom:140.608800pt;}
.y7c{bottom:142.714933pt;}
.yf8{bottom:143.104800pt;}
.y14d{bottom:145.605867pt;}
.ydd{bottom:148.165867pt;}
.y5e{bottom:148.174800pt;}
.yac{bottom:148.181867pt;}
.y94{bottom:150.649733pt;}
.yc5{bottom:153.173867pt;}
.y10a{bottom:155.726800pt;}
.y115{bottom:155.733867pt;}
.y3e{bottom:156.256267pt;}
.ye0{bottom:158.208800pt;}
.yf7{bottom:160.704800pt;}
.y14c{bottom:163.205867pt;}
.y143{bottom:163.301867pt;}
.ydc{bottom:165.765867pt;}
.y5d{bottom:165.774800pt;}
.ya5{bottom:165.781867pt;}
.y7b{bottom:168.242667pt;}
.y93{bottom:168.249733pt;}
.yc4{bottom:170.773867pt;}
.y109{bottom:173.326800pt;}
.y114{bottom:173.333867pt;}
.y3d{bottom:173.856267pt;}
.ydf{bottom:175.808800pt;}
.yf6{bottom:178.304800pt;}
.y142{bottom:180.901867pt;}
.ydb{bottom:183.365867pt;}
.y5c{bottom:183.374800pt;}
.ya4{bottom:183.381867pt;}
.y7a{bottom:185.842667pt;}
.y92{bottom:185.849733pt;}
.y14b{bottom:188.357867pt;}
.yc3{bottom:188.373867pt;}
.y113{bottom:190.933867pt;}
.y3c{bottom:191.456267pt;}
.y163{bottom:193.413867pt;}
.yf5{bottom:195.904800pt;}
.y108{bottom:198.478800pt;}
.y141{bottom:198.501867pt;}
.yda{bottom:200.965867pt;}
.y5b{bottom:200.974800pt;}
.ya3{bottom:200.981867pt;}
.y79{bottom:203.463733pt;}
.yc2{bottom:205.973867pt;}
.y112{bottom:208.533867pt;}
.y3b{bottom:209.056267pt;}
.y91{bottom:211.001733pt;}
.y12{bottom:211.985467pt;}
.yf4{bottom:213.504800pt;}
.y14a{bottom:213.509867pt;}
.y107{bottom:216.078800pt;}
.y140{bottom:216.101867pt;}
.yd9{bottom:218.565867pt;}
.y5a{bottom:218.574800pt;}
.ya2{bottom:218.581867pt;}
.yc1{bottom:223.573867pt;}
.y111{bottom:226.133867pt;}
.y3a{bottom:226.656267pt;}
.y90{bottom:228.601733pt;}
.y78{bottom:228.615733pt;}
.yf3{bottom:231.104800pt;}
.y106{bottom:233.678800pt;}
.y125{bottom:233.685867pt;}
.y13f{bottom:233.701867pt;}
.yd8{bottom:236.165867pt;}
.y59{bottom:236.174800pt;}
.ya1{bottom:236.181867pt;}
.y11{bottom:237.137467pt;}
.y149{bottom:238.661867pt;}
.yc0{bottom:241.173867pt;}
.y110{bottom:243.733867pt;}
.y77{bottom:246.215733pt;}
.y105{bottom:251.278800pt;}
.y124{bottom:251.285867pt;}
.y13e{bottom:251.301867pt;}
.y39{bottom:251.808267pt;}
.yd7{bottom:253.765867pt;}
.y58{bottom:253.774800pt;}
.y8f{bottom:253.781867pt;}
.y10{bottom:254.737467pt;}
.yf2{bottom:256.256800pt;}
.ybf{bottom:258.773867pt;}
.y162{bottom:261.317867pt;}
.y10f{bottom:261.333867pt;}
.y148{bottom:263.813867pt;}
.y76{bottom:263.815733pt;}
.y104{bottom:268.878800pt;}
.y123{bottom:268.885867pt;}
.y13d{bottom:268.901867pt;}
.y38{bottom:269.408267pt;}
.yd6{bottom:271.365867pt;}
.y8e{bottom:271.381867pt;}
.yf{bottom:272.337467pt;}
.yf1{bottom:273.856800pt;}
.ybe{bottom:276.373867pt;}
.y57{bottom:278.926800pt;}
.y10e{bottom:278.933867pt;}
.y75{bottom:281.415733pt;}
.y161{bottom:286.469867pt;}
.y103{bottom:286.478800pt;}
.y122{bottom:286.485867pt;}
.y13c{bottom:286.501867pt;}
.y37{bottom:287.008267pt;}
.yd5{bottom:288.965867pt;}
.y8d{bottom:288.981867pt;}
.ye{bottom:289.937467pt;}
.yf0{bottom:291.456800pt;}
.ybd{bottom:293.973867pt;}
.y56{bottom:296.526800pt;}
.yab{bottom:296.533867pt;}
.y160{bottom:304.069867pt;}
.y102{bottom:304.078800pt;}
.y121{bottom:304.085867pt;}
.y13b{bottom:304.101867pt;}
.y36{bottom:304.608267pt;}
.yd4{bottom:306.565867pt;}
.y74{bottom:306.567733pt;}
.y8c{bottom:306.581867pt;}
.yd{bottom:307.537467pt;}
.yef{bottom:309.056800pt;}
.y55{bottom:314.126800pt;}
.yaa{bottom:314.133867pt;}
.ybc{bottom:319.125867pt;}
.y101{bottom:321.678800pt;}
.y120{bottom:321.685867pt;}
.y13a{bottom:321.701867pt;}
.y35{bottom:322.208267pt;}
.yd3{bottom:324.165867pt;}
.y73{bottom:324.167733pt;}
.y8b{bottom:324.181867pt;}
.yee{bottom:326.656800pt;}
.y15f{bottom:329.221867pt;}
.ya0{bottom:331.733867pt;}
.yc{bottom:332.689467pt;}
.ybb{bottom:336.725867pt;}
.y100{bottom:339.278800pt;}
.y11f{bottom:339.285867pt;}
.y139{bottom:339.301867pt;}
.y54{bottom:339.312267pt;}
.y34{bottom:339.808267pt;}
.yd2{bottom:341.765867pt;}
.y72{bottom:341.767733pt;}
.y8a{bottom:341.781867pt;}
.yed{bottom:344.256800pt;}
.y15e{bottom:346.821867pt;}
.ya9{bottom:349.333867pt;}
.yba{bottom:354.325867pt;}
.yff{bottom:356.878800pt;}
.y9f{bottom:356.885867pt;}
.y138{bottom:356.901867pt;}
.y53{bottom:356.912267pt;}
.y33{bottom:357.408267pt;}
.yd1{bottom:359.365867pt;}
.y71{bottom:359.367733pt;}
.y89{bottom:359.381867pt;}
.yec{bottom:361.856800pt;}
.ya8{bottom:366.933867pt;}
.yb9{bottom:371.925867pt;}
.y15d{bottom:371.973867pt;}
.yfe{bottom:374.478800pt;}
.y9e{bottom:374.485867pt;}
.y137{bottom:374.501867pt;}
.y52{bottom:374.512267pt;}
.y32{bottom:375.008267pt;}
.yd0{bottom:376.965867pt;}
.y70{bottom:376.967733pt;}
.y88{bottom:376.981867pt;}
.yeb{bottom:379.456800pt;}
.y11e{bottom:382.037867pt;}
.yb{bottom:383.009467pt;}
.ya7{bottom:384.533867pt;}
.yfd{bottom:392.078800pt;}
.y9d{bottom:392.085867pt;}
.y51{bottom:392.112267pt;}
.y31{bottom:392.608267pt;}
.ycf{bottom:394.565867pt;}
.y87{bottom:394.581867pt;}
.yb8{bottom:397.077867pt;}
.y15c{bottom:397.125867pt;}
.y11d{bottom:399.637867pt;}
.y136{bottom:399.653867pt;}
.y6f{bottom:402.133867pt;}
.yea{bottom:404.608800pt;}
.ya{bottom:408.161467pt;}
.yfc{bottom:409.678800pt;}
.y9c{bottom:409.685867pt;}
.y50{bottom:409.712267pt;}
.y30{bottom:410.208267pt;}
.y86{bottom:412.181867pt;}
.yb7{bottom:414.677867pt;}
.y15b{bottom:414.725867pt;}
.y11c{bottom:417.237867pt;}
.y135{bottom:417.253867pt;}
.yce{bottom:419.717867pt;}
.y6e{bottom:419.733867pt;}
.ye9{bottom:422.208800pt;}
.y9{bottom:425.761467pt;}
.yfb{bottom:427.278800pt;}
.y9b{bottom:427.285867pt;}
.y4f{bottom:427.312267pt;}
.y11b{bottom:434.837867pt;}
.y134{bottom:434.853867pt;}
.y2f{bottom:435.360267pt;}
.y6d{bottom:437.333867pt;}
.ye8{bottom:439.808800pt;}
.yb6{bottom:439.829867pt;}
.y15a{bottom:439.877867pt;}
.y8{bottom:443.361467pt;}
.yfa{bottom:444.878800pt;}
.y9a{bottom:444.885867pt;}
.y11a{bottom:452.437867pt;}
.y133{bottom:452.453867pt;}
.y4e{bottom:452.464267pt;}
.y6c{bottom:454.933867pt;}
.yb5{bottom:457.429867pt;}
.y2e{bottom:460.512267pt;}
.y7{bottom:460.961467pt;}
.y99{bottom:462.485867pt;}
.ye7{bottom:464.974933pt;}
.y159{bottom:465.029867pt;}
.ycd{bottom:470.037867pt;}
.y132{bottom:470.053867pt;}
.y4d{bottom:470.064267pt;}
.y6b{bottom:472.533867pt;}
.y6{bottom:478.561467pt;}
.y98{bottom:480.085867pt;}
.ye6{bottom:482.574933pt;}
.yb4{bottom:482.581867pt;}
.y158{bottom:482.629867pt;}
.y2d{bottom:485.671200pt;}
.ycc{bottom:487.637867pt;}
.y131{bottom:487.653867pt;}
.y4c{bottom:487.664267pt;}
.y6a{bottom:490.133867pt;}
.y85{bottom:497.685867pt;}
.ye5{bottom:500.174933pt;}
.yb3{bottom:500.181867pt;}
.y157{bottom:500.229867pt;}
.y2c{bottom:501.804533pt;}
.y5{bottom:503.713467pt;}
.ycb{bottom:505.237867pt;}
.y130{bottom:505.253867pt;}
.y4b{bottom:505.264267pt;}
.y69{bottom:507.733867pt;}
.y84{bottom:515.285867pt;}
.y156{bottom:517.829867pt;}
.y2b{bottom:517.937867pt;}
.yca{bottom:522.837867pt;}
.y12f{bottom:522.853867pt;}
.y4a{bottom:522.864267pt;}
.ye4{bottom:525.326933pt;}
.y68{bottom:525.333867pt;}
.y83{bottom:532.885867pt;}
.y2a{bottom:534.071200pt;}
.yc9{bottom:540.437867pt;}
.y12e{bottom:540.453867pt;}
.y49{bottom:540.464267pt;}
.y67{bottom:542.933867pt;}
.y155{bottom:542.981867pt;}
.y29{bottom:550.204533pt;}
.y97{bottom:550.485867pt;}
.y82{bottom:558.037867pt;}
.y12d{bottom:558.053867pt;}
.y48{bottom:558.064267pt;}
.yb2{bottom:560.533867pt;}
.y154{bottom:560.581867pt;}
.y28{bottom:566.337867pt;}
.y66{bottom:568.085867pt;}
.y81{bottom:575.637867pt;}
.y12c{bottom:575.653867pt;}
.y47{bottom:575.664267pt;}
.yb1{bottom:578.133867pt;}
.y1a{bottom:579.921333pt;}
.y27{bottom:582.471200pt;}
.y65{bottom:585.685867pt;}
.y153{bottom:585.733867pt;}
.y80{bottom:593.237867pt;}
.y12b{bottom:593.253867pt;}
.y46{bottom:593.264267pt;}
.yb0{bottom:595.733867pt;}
.y26{bottom:598.604533pt;}
.y19{bottom:599.121333pt;}
.ye3{bottom:603.285867pt;}
.y152{bottom:603.333867pt;}
.y64{bottom:610.837867pt;}
.y12a{bottom:610.853867pt;}
.y45{bottom:610.864267pt;}
.y25{bottom:614.737867pt;}
.y18{bottom:618.321333pt;}
.yaf{bottom:620.885867pt;}
.y63{bottom:628.437867pt;}
.y129{bottom:628.453867pt;}
.y44{bottom:628.464267pt;}
.y151{bottom:628.485867pt;}
.y24{bottom:630.871200pt;}
.y62{bottom:646.037867pt;}
.y128{bottom:646.053867pt;}
.y43{bottom:646.064267pt;}
.y150{bottom:646.085867pt;}
.y23{bottom:647.004533pt;}
.y1c{bottom:666.312000pt;}
.y1b{bottom:688.712000pt;}
.y1f{bottom:697.315600pt;}
.y1e{bottom:726.115600pt;}
.y22{bottom:726.291067pt;}
.y21{bottom:753.507067pt;}
.y1d{bottom:754.915600pt;}
.hc{height:35.546875pt;}
.h4{height:36.145833pt;}
.h3{height:42.916667pt;}
.h2{height:43.375000pt;}
.h8{height:44.437500pt;}
.hb{height:45.493333pt;}
.h7{height:50.042667pt;}
.h6{height:54.592000pt;}
.h5{height:55.872000pt;}
.h9{height:61.749333pt;}
.ha{height:77.250000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xa{left:48.000000pt;}
.x15{left:66.927067pt;}
.x1c{left:85.814933pt;}
.x9{left:100.157467pt;}
.x1a{left:102.047200pt;}
.x1b{left:104.742933pt;}
.x10{left:136.388000pt;}
.x11{left:138.822667pt;}
.x12{left:141.668000pt;}
.xd{left:150.292000pt;}
.xf{left:155.381333pt;}
.xe{left:159.004000pt;}
.x1{left:164.536667pt;}
.x3{left:216.692933pt;}
.x13{left:232.894667pt;}
.x14{left:323.855067pt;}
.x8{left:368.143733pt;}
.x17{left:577.263067pt;}
.x16{left:596.191067pt;}
.x19{left:615.071067pt;}
.x18{left:633.999067pt;}
.x2{left:653.732267pt;}
.x6{left:674.229200pt;}
.x7{left:686.692933pt;}
.x5{left:704.325200pt;}
.xb{left:724.350800pt;}
.x4{left:896.629200pt;}
.xc{left:911.630800pt;}
}




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