
    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_4b922c1c8206745bf7a9cfdf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_860e25dcd2b8432feedba375.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.961000;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_ff0c89a36f3c22830a372ece.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_a46c1a92a4ff433a2c6c523b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940000;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_00789a02ef809bc931dd650b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.723000;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_a71b0133e613840a014990a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_25deab89fae042037fe00637.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940000;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_78dc23fe4ab72150d3929b8e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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_19a99caa50f5799140aa758d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.082000;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_80988ba0d67ef66f0e974a8b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682129;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_a25c23c04e2b033feabb11ac.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.926000;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_8f2c36df70b778de3ba4c4a9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.049805;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_7f47c36af9644182e41aaed7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893555;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_410ccf8b586224e5d1e40555.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.106000;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_0b65119fe40bf8f022ab1879.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_db387b41659f857a05aebd8f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.681152;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_c95bbd16f9e7db3f3b9c82d4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.893555;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_807a4c5b50ec6f973f361f31.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.940000;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_dde0ab6d26f8e6592cbe8bda.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.808105;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_8920d255f7763cf8ddfcf741.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.051758;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_64af8d67e7026bbb04662635.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_af45b6cc5c9eb372f4e8113d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_792dd915af4f80c02bd68e58.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.909000;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:ff18;src:url('chunks/assets/font_5c69ba4c5beb9781af0e0074.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.706055;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:27.267840px;}
.ls12{letter-spacing:-1.064448px;}
.ls1b{letter-spacing:-0.985824px;}
.ls17{letter-spacing:-0.937440px;}
.ls18{letter-spacing:-0.919296px;}
.ls1a{letter-spacing:-0.901152px;}
.ls14{letter-spacing:-0.858816px;}
.ls13{letter-spacing:-0.840672px;}
.ls2a{letter-spacing:-0.834624px;}
.ls3c{letter-spacing:-0.828000px;}
.ls15{letter-spacing:-0.822528px;}
.ls20{letter-spacing:-0.801504px;}
.ls16{letter-spacing:-0.762048px;}
.ls1d{letter-spacing:-0.761760px;}
.ls21{letter-spacing:-0.755136px;}
.ls33{letter-spacing:-0.748512px;}
.ls19{letter-spacing:-0.743904px;}
.ls32{letter-spacing:-0.735264px;}
.ls1e{letter-spacing:-0.722016px;}
.ls27{letter-spacing:-0.715392px;}
.ls1f{letter-spacing:-0.682272px;}
.ls22{letter-spacing:-0.675648px;}
.ls2e{letter-spacing:-0.662400px;}
.lsd{letter-spacing:-0.604800px;}
.lsc{letter-spacing:-0.597600px;}
.ls3e{letter-spacing:-0.582912px;}
.ls46{letter-spacing:-0.476064px;}
.ls44{letter-spacing:-0.467712px;}
.lse{letter-spacing:-0.459360px;}
.ls47{letter-spacing:-0.442656px;}
.ls40{letter-spacing:-0.397440px;}
.ls28{letter-spacing:-0.334080px;}
.ls29{letter-spacing:-0.325728px;}
.lsf{letter-spacing:-0.317376px;}
.ls10{letter-spacing:-0.309024px;}
.ls1c{letter-spacing:-0.292320px;}
.lsb{letter-spacing:-0.266112px;}
.ls11{letter-spacing:-0.258912px;}
.ls45{letter-spacing:-0.242208px;}
.ls59{letter-spacing:-0.238464px;}
.ls48{letter-spacing:-0.225504px;}
.ls55{letter-spacing:-0.205344px;}
.ls58{letter-spacing:-0.198720px;}
.ls56{letter-spacing:-0.158976px;}
.ls3f{letter-spacing:-0.152352px;}
.ls54{letter-spacing:-0.125856px;}
.ls57{letter-spacing:-0.119232px;}
.ls53{letter-spacing:-0.079488px;}
.ls8{letter-spacing:-0.059616px;}
.ls0{letter-spacing:0.000000px;}
.ls5a{letter-spacing:0.058464px;}
.ls52{letter-spacing:0.072480px;}
.ls2{letter-spacing:0.133056px;}
.lsa{letter-spacing:0.156816px;}
.ls3{letter-spacing:0.171072px;}
.ls26{letter-spacing:0.198720px;}
.ls4{letter-spacing:0.266112px;}
.ls3d{letter-spacing:0.278208px;}
.ls1{letter-spacing:0.285120px;}
.ls24{letter-spacing:0.304704px;}
.ls23{letter-spacing:0.331200px;}
.ls9{letter-spacing:0.346896px;}
.ls2f{letter-spacing:0.569664px;}
.ls4b{letter-spacing:0.907488px;}
.ls5{letter-spacing:0.967680px;}
.ls4d{letter-spacing:1.126080px;}
.ls4f{letter-spacing:1.324800px;}
.ls4c{letter-spacing:2.384640px;}
.ls4a{letter-spacing:2.517120px;}
.ls49{letter-spacing:2.629728px;}
.ls50{letter-spacing:2.914560px;}
.ls2d{letter-spacing:2.980800px;}
.ls42{letter-spacing:3.444480px;}
.ls30{letter-spacing:3.510720px;}
.ls2c{letter-spacing:4.007520px;}
.ls34{letter-spacing:4.371840px;}
.ls6{letter-spacing:4.475520px;}
.ls35{letter-spacing:4.570560px;}
.ls51{letter-spacing:4.968000px;}
.ls41{letter-spacing:5.054112px;}
.ls2b{letter-spacing:5.630400px;}
.ls7{letter-spacing:5.890752px;}
.ls3b{letter-spacing:5.895360px;}
.ls25{letter-spacing:6.491520px;}
.ls43{letter-spacing:7.730208px;}
.ls4e{letter-spacing:10.929600px;}
.ls39{letter-spacing:11.194560px;}
.ls3a{letter-spacing:11.327040px;}
.ls31{letter-spacing:16.891200px;}
.ls36{letter-spacing:53.985600px;}
.ls38{letter-spacing:59.086080px;}
.ls37{letter-spacing:60.013440px;}
.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;}
}
.ws13{word-spacing:-23.218560px;}
.ws2a{word-spacing:-22.993056px;}
.ws27{word-spacing:-22.976352px;}
.ws15{word-spacing:-22.926240px;}
.ws26{word-spacing:-22.909536px;}
.ws25{word-spacing:-22.901184px;}
.ws29{word-spacing:-22.775904px;}
.ws28{word-spacing:-22.742496px;}
.ws7{word-spacing:-20.016000px;}
.ws1c{word-spacing:-19.418400px;}
.ws8{word-spacing:-19.411200px;}
.ws20{word-spacing:-18.692928px;}
.ws22{word-spacing:-18.262368px;}
.ws23{word-spacing:-18.017280px;}
.ws21{word-spacing:-17.831808px;}
.ws1f{word-spacing:-17.586720px;}
.ws6{word-spacing:-17.402400px;}
.ws16{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.547328px;}
.ws2d{word-spacing:-16.480512px;}
.ws31{word-spacing:-16.440768px;}
.ws2e{word-spacing:-16.434144px;}
.ws30{word-spacing:-16.401024px;}
.ws32{word-spacing:-16.361280px;}
.ws2f{word-spacing:-16.354656px;}
.ws33{word-spacing:-16.321536px;}
.ws2c{word-spacing:-15.897600px;}
.ws24{word-spacing:-15.884352px;}
.ws1d{word-spacing:-15.877728px;}
.ws1b{word-spacing:-15.844608px;}
.ws1a{word-spacing:-15.837984px;}
.ws19{word-spacing:-15.804864px;}
.ws17{word-spacing:-15.798240px;}
.ws18{word-spacing:-15.758496px;}
.ws2b{word-spacing:-15.725376px;}
.ws11{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.113228px;}
.ws10{word-spacing:-14.376096px;}
.wsb{word-spacing:-14.297472px;}
.wsa{word-spacing:-14.279328px;}
.wse{word-spacing:-14.261184px;}
.wsd{word-spacing:-14.200704px;}
.wsc{word-spacing:-14.182560px;}
.ws3{word-spacing:-13.476672px;}
.ws2{word-spacing:-13.367376px;}
.ws4{word-spacing:-13.210560px;}
.ws34{word-spacing:-10.498464px;}
.ws14{word-spacing:-0.083520px;}
.ws9{word-spacing:-0.072000px;}
.ws1e{word-spacing:-0.066240px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:0.798336px;}
.ws12{word-spacing:0.925344px;}
._b{margin-left:-4.753728px;}
._c{margin-left:-2.890944px;}
._9{margin-left:-1.059840px;}
._5{width:1.698879px;}
._8{width:3.669579px;}
._a{width:5.008962px;}
._3{width:6.727561px;}
._6{width:7.950754px;}
._d{width:9.132480px;}
._e{width:10.149984px;}
._11{width:12.121920px;}
._2{width:13.794897px;}
._f{width:16.828803px;}
._10{width:18.278397px;}
._14{width:20.534400px;}
._15{width:21.885696px;}
._4{width:24.158059px;}
._1{width:29.152764px;}
._13{width:40.605120px;}
._12{width:44.645760px;}
._7{width:46.549285px;}
._0{width:845.197156px;}
.fc4{color:transparent;}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc5{color:rgb(95,95,95);}
.fc3{color:rgb(56,56,56);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:33.977580px;}
.fs3{font-size:38.831520px;}
.fsd{font-size:41.760000px;}
.fs6{font-size:42.714672px;}
.fs7{font-size:43.685460px;}
.fsa{font-size:47.520000px;}
.fs2{font-size:48.539400px;}
.fs1{font-size:53.393340px;}
.fs5{font-size:54.364128px;}
.fs9{font-size:60.480000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:67.955160px;}
.fsb{font-size:72.000000px;}
.fsc{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.307155px;}
.y20{bottom:3.780000px;}
.y49{bottom:3.960000px;}
.y24{bottom:4.260000px;}
.y46{bottom:4.500000px;}
.y48{bottom:49.818900px;}
.y23{bottom:51.318900px;}
.y1e{bottom:51.755135px;}
.y47{bottom:52.340340px;}
.y22{bottom:58.458900px;}
.y1d{bottom:65.516055px;}
.y1c{bottom:79.276975px;}
.y1b{bottom:93.037895px;}
.y122{bottom:97.148820px;}
.y104{bottom:97.354020px;}
.yce{bottom:100.000740px;}
.ye1{bottom:104.241540px;}
.y1a{bottom:104.796565px;}
.y14c{bottom:107.400180px;}
.yee{bottom:107.773860px;}
.y130{bottom:108.181380px;}
.y45{bottom:109.250580px;}
.y6f{bottom:109.266420px;}
.y120{bottom:111.463140px;}
.y121{bottom:116.225940px;}
.y103{bottom:117.871860px;}
.ycd{bottom:119.077860px;}
.ye0{bottom:123.318660px;}
.y94{bottom:124.399380px;}
.yed{bottom:125.056020px;}
.y14b{bottom:125.400900px;}
.y12f{bottom:126.894180px;}
.y19{bottom:127.076149px;}
.y44{bottom:128.327700px;}
.y6e{bottom:129.784260px;}
.y11f{bottom:130.540260px;}
.y18d{bottom:134.794740px;}
.ya8{bottom:135.303060px;}
.y176{bottom:137.989380px;}
.ycc{bottom:138.154980px;}
.y102{bottom:138.389700px;}
.ydf{bottom:142.031460px;}
.y14a{bottom:143.401620px;}
.y93{bottom:143.476500px;}
.y12e{bottom:145.971300px;}
.y43{bottom:147.404820px;}
.yec{bottom:148.098900px;}
.y11e{bottom:149.253060px;}
.y6d{bottom:150.302100px;}
.y18c{bottom:153.507540px;}
.ya7{bottom:154.380180px;}
.y175{bottom:155.990100px;}
.ycb{bottom:156.867780px;}
.y101{bottom:158.907540px;}
.yde{bottom:161.108580px;}
.y149{bottom:161.402340px;}
.y92{bottom:162.553620px;}
.y42{bottom:166.481940px;}
.y12d{bottom:166.489140px;}
.y11d{bottom:168.330180px;}
.y6c{bottom:170.819940px;}
.y18b{bottom:172.584660px;}
.ya6{bottom:173.092980px;}
.y174{bottom:173.990820px;}
.yca{bottom:175.944900px;}
.y148{bottom:179.403060px;}
.y100{bottom:179.425380px;}
.ydd{bottom:180.185700px;}
.y91{bottom:181.630740px;}
.y41{bottom:185.194740px;}
.y12c{bottom:186.642660px;}
.y11c{bottom:187.407300px;}
.y6b{bottom:191.337780px;}
.y18{bottom:191.803439px;}
.y173{bottom:191.991540px;}
.ya5{bottom:192.170100px;}
.yc9{bottom:195.022020px;}
.y147{bottom:197.403780px;}
.ydc{bottom:198.898500px;}
.yff{bottom:199.943220px;}
.y18a{bottom:200.306100px;}
.y90{bottom:200.343540px;}
.y17{bottom:202.118062px;}
.y40{bottom:204.271860px;}
.y11b{bottom:206.484420px;}
.y12b{bottom:207.160500px;}
.y172{bottom:209.992260px;}
.ya4{bottom:211.247220px;}
.y16{bottom:211.583245px;}
.y6a{bottom:211.855620px;}
.yc8{bottom:214.099140px;}
.y146{bottom:215.404500px;}
.ydb{bottom:217.975620px;}
.y189{bottom:219.383220px;}
.y8f{bottom:219.420660px;}
.y15{bottom:220.174718px;}
.yfe{bottom:220.461060px;}
.y3f{bottom:223.348980px;}
.y11a{bottom:225.197220px;}
.y12a{bottom:227.678340px;}
.y171{bottom:227.992980px;}
.y14{bottom:228.778327px;}
.ya3{bottom:229.960020px;}
.y69{bottom:232.373460px;}
.yc7{bottom:232.811940px;}
.y145{bottom:233.405220px;}
.yda{bottom:237.052740px;}
.y13{bottom:237.381936px;}
.y188{bottom:238.460340px;}
.y8e{bottom:238.497780px;}
.yfd{bottom:240.978900px;}
.y3e{bottom:242.061780px;}
.y119{bottom:244.274340px;}
.y12{bottom:245.973410px;}
.y170{bottom:245.993700px;}
.y129{bottom:248.196180px;}
.ya2{bottom:249.037140px;}
.y144{bottom:251.405940px;}
.yc6{bottom:251.889060px;}
.y68{bottom:252.891300px;}
.y11{bottom:254.577018px;}
.yd9{bottom:256.129860px;}
.y8d{bottom:257.210580px;}
.y187{bottom:257.537460px;}
.y3d{bottom:261.138900px;}
.y118{bottom:263.351460px;}
.y16f{bottom:263.994420px;}
.ya1{bottom:268.114260px;}
.yfc{bottom:268.698900px;}
.y128{bottom:268.714020px;}
.y143{bottom:269.406660px;}
.yc5{bottom:270.966180px;}
.y10{bottom:272.269629px;}
.y67{bottom:273.044820px;}
.yd8{bottom:274.842660px;}
.y8c{bottom:276.287700px;}
.y16e{bottom:281.995140px;}
.y117{bottom:282.064260px;}
.y186{bottom:285.281940px;}
.ya0{bottom:286.827060px;}
.y142{bottom:287.407380px;}
.y127{bottom:289.231860px;}
.yc4{bottom:289.678980px;}
.yfb{bottom:291.378900px;}
.y66{bottom:293.562660px;}
.y8b{bottom:295.364820px;}
.y3c{bottom:298.938900px;}
.y16d{bottom:299.995860px;}
.y116{bottom:301.141380px;}
.y185{bottom:304.359060px;}
.y141{bottom:305.408100px;}
.y9f{bottom:305.904180px;}
.yc3{bottom:308.756100px;}
.y126{bottom:309.749700px;}
.yd7{bottom:311.920500px;}
.y8a{bottom:314.077620px;}
.y65{bottom:314.080500px;}
.y16c{bottom:317.996580px;}
.y115{bottom:320.218500px;}
.y140{bottom:323.408820px;}
.y184{bottom:323.436180px;}
.y9e{bottom:324.981300px;}
.yc2{bottom:327.833220px;}
.y125{bottom:330.267540px;}
.y89{bottom:333.154740px;}
.y64{bottom:333.157620px;}
.y16b{bottom:335.997300px;}
.y114{bottom:339.295620px;}
.y13f{bottom:341.409540px;}
.y183{bottom:342.513300px;}
.y9d{bottom:344.058420px;}
.yc1{bottom:346.546020px;}
.y3b{bottom:347.898900px;}
.yd6{bottom:347.921940px;}
.y124{bottom:350.421060px;}
.y88{bottom:352.231860px;}
.y63{bottom:352.234740px;}
.y16a{bottom:353.998020px;}
.y113{bottom:358.008420px;}
.y13e{bottom:359.410260px;}
.y182{bottom:361.226100px;}
.y9c{bottom:362.771220px;}
.yc0{bottom:365.623140px;}
.yd5{bottom:366.999060px;}
.y3a{bottom:368.052420px;}
.y123{bottom:370.938900px;}
.y87{bottom:371.308980px;}
.y62{bottom:371.311860px;}
.y169{bottom:371.998740px;}
.y112{bottom:377.085540px;}
.y13d{bottom:377.410980px;}
.y9b{bottom:381.848340px;}
.ybf{bottom:384.700260px;}
.y39{bottom:385.334580px;}
.yd4{bottom:385.711860px;}
.y181{bottom:389.311860px;}
.y168{bottom:389.999460px;}
.y86{bottom:390.021780px;}
.y61{bottom:390.024660px;}
.yf{bottom:395.013637px;}
.y13c{bottom:395.411700px;}
.y111{bottom:396.162660px;}
.y9a{bottom:400.925460px;}
.yd3{bottom:404.788980px;}
.y167{bottom:408.000180px;}
.y180{bottom:408.388980px;}
.y85{bottom:409.098900px;}
.y60{bottom:409.101780px;}
.y38{bottom:411.613140px;}
.y13b{bottom:413.412420px;}
.y110{bottom:416.316180px;}
.y99{bottom:419.638260px;}
.ybe{bottom:421.778100px;}
.yd2{bottom:423.866100px;}
.y166{bottom:426.000900px;}
.y17f{bottom:427.101780px;}
.y5f{bottom:428.178900px;}
.y37{bottom:428.895300px;}
.y13a{bottom:431.413140px;}
.y10f{bottom:436.834020px;}
.y98{bottom:438.715380px;}
.yd1{bottom:442.578900px;}
.y165{bottom:444.001620px;}
.y36{bottom:445.814580px;}
.y84{bottom:446.538900px;}
.y139{bottom:449.413860px;}
.y17e{bottom:455.187540px;}
.y10e{bottom:457.351860px;}
.ybd{bottom:457.415220px;}
.y97{bottom:457.792500px;}
.y164{bottom:462.002340px;}
.y35{bottom:463.096740px;}
.y5e{bottom:465.978900px;}
.y138{bottom:467.414580px;}
.yd0{bottom:470.298900px;}
.y17d{bottom:474.264660px;}
.ybc{bottom:476.492340px;}
.y96{bottom:476.869620px;}
.y10d{bottom:477.869700px;}
.y163{bottom:480.003060px;}
.y34{bottom:480.378900px;}
.y83{bottom:483.692340px;}
.y137{bottom:485.415300px;}
.y17c{bottom:492.977460px;}
.ycf{bottom:493.346820px;}
.ybb{bottom:495.569460px;}
.y95{bottom:495.582420px;}
.y162{bottom:498.003780px;}
.y10c{bottom:498.387540px;}
.y82{bottom:502.769460px;}
.y136{bottom:503.416020px;}
.yeb{bottom:505.650900px;}
.yba{bottom:514.646580px;}
.y5d{bottom:514.659540px;}
.y161{bottom:516.004500px;}
.y33{bottom:516.378900px;}
.y10b{bottom:518.905380px;}
.y17b{bottom:521.063220px;}
.y135{bottom:521.416740px;}
.y81{bottom:521.482260px;}
.yea{bottom:524.728020px;}
.yb9{bottom:533.359380px;}
.y5c{bottom:533.736660px;}
.y160{bottom:534.005220px;}
.y32{bottom:538.338900px;}
.y10a{bottom:539.058900px;}
.y134{bottom:539.417460px;}
.y17a{bottom:540.140340px;}
.y80{bottom:540.559380px;}
.ye9{bottom:543.440820px;}
.y15f{bottom:552.005940px;}
.yb8{bottom:552.436500px;}
.y5b{bottom:552.449460px;}
.y133{bottom:557.418180px;}
.y179{bottom:559.217460px;}
.y7f{bottom:559.636500px;}
.y31{bottom:560.298900px;}
.ye8{bottom:562.517940px;}
.y15e{bottom:570.006660px;}
.yb7{bottom:571.513620px;}
.y5a{bottom:571.526580px;}
.y132{bottom:575.418900px;}
.y109{bottom:577.223220px;}
.ye{bottom:577.691669px;}
.y7e{bottom:578.349300px;}
.ye7{bottom:581.595060px;}
.y178{bottom:586.938900px;}
.y15d{bottom:588.007380px;}
.y30{bottom:590.529540px;}
.yb6{bottom:590.590740px;}
.y59{bottom:590.603700px;}
.y7d{bottom:597.426420px;}
.y108{bottom:599.898900px;}
.ye6{bottom:600.307860px;}
.yd{bottom:604.218451px;}
.y15c{bottom:606.008100px;}
.y2f{bottom:607.811700px;}
.yb5{bottom:609.303540px;}
.y58{bottom:609.316500px;}
.y131{bottom:611.418900px;}
.y7c{bottom:616.503540px;}
.yc{bottom:617.967236px;}
.ye5{bottom:619.384980px;}
.y15b{bottom:624.008820px;}
.y177{bottom:624.018900px;}
.yb4{bottom:628.380660px;}
.y57{bottom:628.393620px;}
.yfa{bottom:628.743540px;}
.y2e{bottom:634.090260px;}
.y7b{bottom:635.216340px;}
.ye4{bottom:638.462100px;}
.y15a{bottom:642.009540px;}
.yb{bottom:644.760985px;}
.yb3{bottom:647.457780px;}
.y56{bottom:647.470740px;}
.yf9{bottom:647.820660px;}
.y107{bottom:649.606980px;}
.y2d{bottom:651.372420px;}
.y7a{bottom:654.293460px;}
.ye3{bottom:657.539220px;}
.ya{bottom:658.521905px;}
.y159{bottom:660.010260px;}
.yb2{bottom:666.170580px;}
.y55{bottom:666.547860px;}
.yf8{bottom:666.897780px;}
.y2c{bottom:668.654580px;}
.y106{bottom:670.124820px;}
.y9{bottom:672.282825px;}
.y79{bottom:673.370580px;}
.ye2{bottom:676.252020px;}
.y158{bottom:678.010980px;}
.yb1{bottom:685.247700px;}
.y54{bottom:685.260660px;}
.yf7{bottom:685.610580px;}
.y2b{bottom:685.936740px;}
.y8{bottom:686.043745px;}
.y105{bottom:690.642660px;}
.y78{bottom:692.447700px;}
.y157{bottom:696.011700px;}
.y7{bottom:699.804665px;}
.y2a{bottom:703.218900px;}
.yb0{bottom:704.324820px;}
.y53{bottom:704.337780px;}
.yf6{bottom:704.687700px;}
.y77{bottom:711.160500px;}
.y156{bottom:714.012420px;}
.yaf{bottom:723.037620px;}
.y52{bottom:723.414900px;}
.yf5{bottom:723.764820px;}
.y76{bottom:731.678340px;}
.y155{bottom:732.013140px;}
.y29{bottom:739.589700px;}
.y6{bottom:739.849670px;}
.yae{bottom:742.114740px;}
.y51{bottom:742.127700px;}
.yf4{bottom:742.841940px;}
.y154{bottom:750.013860px;}
.y75{bottom:752.196180px;}
.y5{bottom:760.260487px;}
.yad{bottom:761.191860px;}
.y50{bottom:761.204820px;}
.yf3{bottom:761.554740px;}
.y28{bottom:765.501780px;}
.y153{bottom:768.014580px;}
.y74{bottom:772.714020px;}
.yac{bottom:780.268980px;}
.y4f{bottom:780.281940px;}
.yf2{bottom:780.631860px;}
.y4{bottom:784.336030px;}
.y152{bottom:786.015300px;}
.y27{bottom:791.058900px;}
.y73{bottom:792.867540px;}
.yab{bottom:798.981780px;}
.y4e{bottom:798.994740px;}
.yf1{bottom:799.708980px;}
.y151{bottom:804.016020px;}
.y3{bottom:808.411572px;}
.y72{bottom:813.385380px;}
.yaa{bottom:818.058900px;}
.y4d{bottom:818.071860px;}
.yf0{bottom:818.421780px;}
.y150{bottom:822.016740px;}
.y2{bottom:832.499249px;}
.y26{bottom:833.898900px;}
.y71{bottom:833.903220px;}
.y4c{bottom:837.148980px;}
.yef{bottom:837.498900px;}
.y14f{bottom:840.017460px;}
.y70{bottom:854.421060px;}
.ya9{bottom:855.498900px;}
.y4b{bottom:856.226100px;}
.y14e{bottom:858.018180px;}
.y25{bottom:873.498900px;}
.y4a{bottom:874.938900px;}
.y14d{bottom:876.018900px;}
.y21{bottom:894.018900px;}
.y1f{bottom:909.318900px;}
.hf{height:19.500000px;}
.h9{height:25.177387px;}
.h7{height:28.774156px;}
.h8{height:28.851819px;}
.hc{height:32.370926px;}
.h12{height:34.737120px;}
.h6{height:35.967695px;}
.ha{height:36.064774px;}
.h5{height:39.564465px;}
.hb{height:40.283819px;}
.h1c{height:40.310156px;}
.h13{height:43.061760px;}
.h1a{height:44.149219px;}
.h19{height:44.893125px;}
.h1d{height:47.295360px;}
.h14{height:47.988281px;}
.h10{height:48.421440px;}
.h3{height:50.354774px;}
.h17{height:50.439375px;}
.h4{height:50.490684px;}
.h11{height:55.243125px;}
.h1b{height:55.372500px;}
.h1e{height:56.263309px;}
.h16{height:61.053120px;}
.h15{height:62.856000px;}
.h18{height:65.592000px;}
.hd{height:1020.518400px;}
.he{height:1020.750000px;}
.h2{height:1021.620887px;}
.h0{height:1022.235000px;}
.h1{height:1022.250000px;}
.w4{width:18.000000px;}
.w6{width:84.400500px;}
.w5{width:468.000000px;}
.w3{width:552.000000px;}
.w1{width:722.250000px;}
.w0{width:722.355000px;}
.w2{width:722.361150px;}
.x0{left:0.000000px;}
.x6{left:8.280000px;}
.x3{left:37.836462px;}
.x1{left:44.716922px;}
.x7{left:84.880650px;}
.x5{left:85.960650px;}
.x14{left:106.136490px;}
.x9{left:110.383050px;}
.xd{left:111.880650px;}
.xf{left:114.670650px;}
.x2{left:120.389847px;}
.x13{left:131.670180px;}
.x10{left:135.852330px;}
.x11{left:138.468810px;}
.xb{left:139.852500px;}
.xa{left:171.460650px;}
.x8{left:298.993500px;}
.x4{left:354.301215px;}
.x12{left:609.250500px;}
.xe{left:619.960650px;}
.xc{left:637.960650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.238080pt;}
.ls12{letter-spacing:-0.946176pt;}
.ls1b{letter-spacing:-0.876288pt;}
.ls17{letter-spacing:-0.833280pt;}
.ls18{letter-spacing:-0.817152pt;}
.ls1a{letter-spacing:-0.801024pt;}
.ls14{letter-spacing:-0.763392pt;}
.ls13{letter-spacing:-0.747264pt;}
.ls2a{letter-spacing:-0.741888pt;}
.ls3c{letter-spacing:-0.736000pt;}
.ls15{letter-spacing:-0.731136pt;}
.ls20{letter-spacing:-0.712448pt;}
.ls16{letter-spacing:-0.677376pt;}
.ls1d{letter-spacing:-0.677120pt;}
.ls21{letter-spacing:-0.671232pt;}
.ls33{letter-spacing:-0.665344pt;}
.ls19{letter-spacing:-0.661248pt;}
.ls32{letter-spacing:-0.653568pt;}
.ls1e{letter-spacing:-0.641792pt;}
.ls27{letter-spacing:-0.635904pt;}
.ls1f{letter-spacing:-0.606464pt;}
.ls22{letter-spacing:-0.600576pt;}
.ls2e{letter-spacing:-0.588800pt;}
.lsd{letter-spacing:-0.537600pt;}
.lsc{letter-spacing:-0.531200pt;}
.ls3e{letter-spacing:-0.518144pt;}
.ls46{letter-spacing:-0.423168pt;}
.ls44{letter-spacing:-0.415744pt;}
.lse{letter-spacing:-0.408320pt;}
.ls47{letter-spacing:-0.393472pt;}
.ls40{letter-spacing:-0.353280pt;}
.ls28{letter-spacing:-0.296960pt;}
.ls29{letter-spacing:-0.289536pt;}
.lsf{letter-spacing:-0.282112pt;}
.ls10{letter-spacing:-0.274688pt;}
.ls1c{letter-spacing:-0.259840pt;}
.lsb{letter-spacing:-0.236544pt;}
.ls11{letter-spacing:-0.230144pt;}
.ls45{letter-spacing:-0.215296pt;}
.ls59{letter-spacing:-0.211968pt;}
.ls48{letter-spacing:-0.200448pt;}
.ls55{letter-spacing:-0.182528pt;}
.ls58{letter-spacing:-0.176640pt;}
.ls56{letter-spacing:-0.141312pt;}
.ls3f{letter-spacing:-0.135424pt;}
.ls54{letter-spacing:-0.111872pt;}
.ls57{letter-spacing:-0.105984pt;}
.ls53{letter-spacing:-0.070656pt;}
.ls8{letter-spacing:-0.052992pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5a{letter-spacing:0.051968pt;}
.ls52{letter-spacing:0.064427pt;}
.ls2{letter-spacing:0.118272pt;}
.lsa{letter-spacing:0.139392pt;}
.ls3{letter-spacing:0.152064pt;}
.ls26{letter-spacing:0.176640pt;}
.ls4{letter-spacing:0.236544pt;}
.ls3d{letter-spacing:0.247296pt;}
.ls1{letter-spacing:0.253440pt;}
.ls24{letter-spacing:0.270848pt;}
.ls23{letter-spacing:0.294400pt;}
.ls9{letter-spacing:0.308352pt;}
.ls2f{letter-spacing:0.506368pt;}
.ls4b{letter-spacing:0.806656pt;}
.ls5{letter-spacing:0.860160pt;}
.ls4d{letter-spacing:1.000960pt;}
.ls4f{letter-spacing:1.177600pt;}
.ls4c{letter-spacing:2.119680pt;}
.ls4a{letter-spacing:2.237440pt;}
.ls49{letter-spacing:2.337536pt;}
.ls50{letter-spacing:2.590720pt;}
.ls2d{letter-spacing:2.649600pt;}
.ls42{letter-spacing:3.061760pt;}
.ls30{letter-spacing:3.120640pt;}
.ls2c{letter-spacing:3.562240pt;}
.ls34{letter-spacing:3.886080pt;}
.ls6{letter-spacing:3.978240pt;}
.ls35{letter-spacing:4.062720pt;}
.ls51{letter-spacing:4.416000pt;}
.ls41{letter-spacing:4.492544pt;}
.ls2b{letter-spacing:5.004800pt;}
.ls7{letter-spacing:5.236224pt;}
.ls3b{letter-spacing:5.240320pt;}
.ls25{letter-spacing:5.770240pt;}
.ls43{letter-spacing:6.871296pt;}
.ls4e{letter-spacing:9.715200pt;}
.ls39{letter-spacing:9.950720pt;}
.ls3a{letter-spacing:10.068480pt;}
.ls31{letter-spacing:15.014400pt;}
.ls36{letter-spacing:47.987200pt;}
.ls38{letter-spacing:52.520960pt;}
.ls37{letter-spacing:53.345280pt;}
.ws13{word-spacing:-20.638720pt;}
.ws2a{word-spacing:-20.438272pt;}
.ws27{word-spacing:-20.423424pt;}
.ws15{word-spacing:-20.378880pt;}
.ws26{word-spacing:-20.364032pt;}
.ws25{word-spacing:-20.356608pt;}
.ws29{word-spacing:-20.245248pt;}
.ws28{word-spacing:-20.215552pt;}
.ws7{word-spacing:-17.792000pt;}
.ws1c{word-spacing:-17.260800pt;}
.ws8{word-spacing:-17.254400pt;}
.ws20{word-spacing:-16.615936pt;}
.ws22{word-spacing:-16.233216pt;}
.ws23{word-spacing:-16.015360pt;}
.ws21{word-spacing:-15.850496pt;}
.ws1f{word-spacing:-15.632640pt;}
.ws6{word-spacing:-15.468800pt;}
.ws16{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.708736pt;}
.ws2d{word-spacing:-14.649344pt;}
.ws31{word-spacing:-14.614016pt;}
.ws2e{word-spacing:-14.608128pt;}
.ws30{word-spacing:-14.578688pt;}
.ws32{word-spacing:-14.543360pt;}
.ws2f{word-spacing:-14.537472pt;}
.ws33{word-spacing:-14.508032pt;}
.ws2c{word-spacing:-14.131200pt;}
.ws24{word-spacing:-14.119424pt;}
.ws1d{word-spacing:-14.113536pt;}
.ws1b{word-spacing:-14.084096pt;}
.ws1a{word-spacing:-14.078208pt;}
.ws19{word-spacing:-14.048768pt;}
.ws17{word-spacing:-14.042880pt;}
.ws18{word-spacing:-14.007552pt;}
.ws2b{word-spacing:-13.978112pt;}
.ws11{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.433980pt;}
.ws10{word-spacing:-12.778752pt;}
.wsb{word-spacing:-12.708864pt;}
.wsa{word-spacing:-12.692736pt;}
.wse{word-spacing:-12.676608pt;}
.wsd{word-spacing:-12.622848pt;}
.wsc{word-spacing:-12.606720pt;}
.ws3{word-spacing:-11.979264pt;}
.ws2{word-spacing:-11.882112pt;}
.ws4{word-spacing:-11.742720pt;}
.ws34{word-spacing:-9.331968pt;}
.ws14{word-spacing:-0.074240pt;}
.ws9{word-spacing:-0.064000pt;}
.ws1e{word-spacing:-0.058880pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:0.709632pt;}
.ws12{word-spacing:0.822528pt;}
._b{margin-left:-4.225536pt;}
._c{margin-left:-2.569728pt;}
._9{margin-left:-0.942080pt;}
._5{width:1.510115pt;}
._8{width:3.261848pt;}
._a{width:4.452411pt;}
._3{width:5.980054pt;}
._6{width:7.067337pt;}
._d{width:8.117760pt;}
._e{width:9.022208pt;}
._11{width:10.775040pt;}
._2{width:12.262131pt;}
._f{width:14.958936pt;}
._10{width:16.247464pt;}
._14{width:18.252800pt;}
._15{width:19.453952pt;}
._4{width:21.473831pt;}
._1{width:25.913568pt;}
._13{width:36.093440pt;}
._12{width:39.685120pt;}
._7{width:41.377142pt;}
._0{width:751.286361pt;}
.fs4{font-size:30.202293pt;}
.fs3{font-size:34.516907pt;}
.fsd{font-size:37.120000pt;}
.fs6{font-size:37.968597pt;}
.fs7{font-size:38.831520pt;}
.fsa{font-size:42.240000pt;}
.fs2{font-size:43.146133pt;}
.fs1{font-size:47.460747pt;}
.fs5{font-size:48.323669pt;}
.fs9{font-size:53.760000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:60.404587pt;}
.fsb{font-size:64.000000pt;}
.fsc{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.273027pt;}
.y20{bottom:3.360000pt;}
.y49{bottom:3.520000pt;}
.y24{bottom:3.786667pt;}
.y46{bottom:4.000000pt;}
.y48{bottom:44.283467pt;}
.y23{bottom:45.616800pt;}
.y1e{bottom:46.004565pt;}
.y47{bottom:46.524747pt;}
.y22{bottom:51.963467pt;}
.y1d{bottom:58.236493pt;}
.y1c{bottom:70.468422pt;}
.y1b{bottom:82.700351pt;}
.y122{bottom:86.354507pt;}
.y104{bottom:86.536907pt;}
.yce{bottom:88.889547pt;}
.ye1{bottom:92.659147pt;}
.y1a{bottom:93.152502pt;}
.y14c{bottom:95.466827pt;}
.yee{bottom:95.798987pt;}
.y130{bottom:96.161227pt;}
.y45{bottom:97.111627pt;}
.y6f{bottom:97.125707pt;}
.y120{bottom:99.078347pt;}
.y121{bottom:103.311947pt;}
.y103{bottom:104.774987pt;}
.ycd{bottom:105.846987pt;}
.ye0{bottom:109.616587pt;}
.y94{bottom:110.577227pt;}
.yed{bottom:111.160907pt;}
.y14b{bottom:111.467467pt;}
.y12f{bottom:112.794827pt;}
.y19{bottom:112.956577pt;}
.y44{bottom:114.069067pt;}
.y6e{bottom:115.363787pt;}
.y11f{bottom:116.035787pt;}
.y18d{bottom:119.817547pt;}
.ya8{bottom:120.269387pt;}
.y176{bottom:122.657227pt;}
.ycc{bottom:122.804427pt;}
.y102{bottom:123.013067pt;}
.ydf{bottom:126.250187pt;}
.y14a{bottom:127.468107pt;}
.y93{bottom:127.534667pt;}
.y12e{bottom:129.752267pt;}
.y43{bottom:131.026507pt;}
.yec{bottom:131.643467pt;}
.y11e{bottom:132.669387pt;}
.y6d{bottom:133.601867pt;}
.y18c{bottom:136.451147pt;}
.ya7{bottom:137.226827pt;}
.y175{bottom:138.657867pt;}
.ycb{bottom:139.438027pt;}
.y101{bottom:141.251147pt;}
.yde{bottom:143.207627pt;}
.y149{bottom:143.468747pt;}
.y92{bottom:144.492107pt;}
.y42{bottom:147.983947pt;}
.y12d{bottom:147.990347pt;}
.y11d{bottom:149.626827pt;}
.y6c{bottom:151.839947pt;}
.y18b{bottom:153.408587pt;}
.ya6{bottom:153.860427pt;}
.y174{bottom:154.658507pt;}
.yca{bottom:156.395467pt;}
.y148{bottom:159.469387pt;}
.y100{bottom:159.489227pt;}
.ydd{bottom:160.165067pt;}
.y91{bottom:161.449547pt;}
.y41{bottom:164.617547pt;}
.y12c{bottom:165.904587pt;}
.y11c{bottom:166.584267pt;}
.y6b{bottom:170.078027pt;}
.y18{bottom:170.491946pt;}
.y173{bottom:170.659147pt;}
.ya5{bottom:170.817867pt;}
.yc9{bottom:173.352907pt;}
.y147{bottom:175.470027pt;}
.ydc{bottom:176.798667pt;}
.yff{bottom:177.727307pt;}
.y18a{bottom:178.049867pt;}
.y90{bottom:178.083147pt;}
.y17{bottom:179.660499pt;}
.y40{bottom:181.574987pt;}
.y11b{bottom:183.541707pt;}
.y12b{bottom:184.142667pt;}
.y172{bottom:186.659787pt;}
.ya4{bottom:187.775307pt;}
.y16{bottom:188.073995pt;}
.y6a{bottom:188.316107pt;}
.yc8{bottom:190.310347pt;}
.y146{bottom:191.470667pt;}
.ydb{bottom:193.756107pt;}
.y189{bottom:195.007307pt;}
.y8f{bottom:195.040587pt;}
.y15{bottom:195.710861pt;}
.yfe{bottom:195.965387pt;}
.y3f{bottom:198.532427pt;}
.y11a{bottom:200.175307pt;}
.y12a{bottom:202.380747pt;}
.y171{bottom:202.660427pt;}
.y14{bottom:203.358513pt;}
.ya3{bottom:204.408907pt;}
.y69{bottom:206.554187pt;}
.yc7{bottom:206.943947pt;}
.y145{bottom:207.471307pt;}
.yda{bottom:210.713547pt;}
.y13{bottom:211.006165pt;}
.y188{bottom:211.964747pt;}
.y8e{bottom:211.998027pt;}
.yfd{bottom:214.203467pt;}
.y3e{bottom:215.166027pt;}
.y119{bottom:217.132747pt;}
.y12{bottom:218.643031pt;}
.y170{bottom:218.661067pt;}
.y129{bottom:220.618827pt;}
.ya2{bottom:221.366347pt;}
.y144{bottom:223.471947pt;}
.yc6{bottom:223.901387pt;}
.y68{bottom:224.792267pt;}
.y11{bottom:226.290683pt;}
.yd9{bottom:227.670987pt;}
.y8d{bottom:228.631627pt;}
.y187{bottom:228.922187pt;}
.y3d{bottom:232.123467pt;}
.y118{bottom:234.090187pt;}
.y16f{bottom:234.661707pt;}
.ya1{bottom:238.323787pt;}
.yfc{bottom:238.843467pt;}
.y128{bottom:238.856907pt;}
.y143{bottom:239.472587pt;}
.yc5{bottom:240.858827pt;}
.y10{bottom:242.017448pt;}
.y67{bottom:242.706507pt;}
.yd8{bottom:244.304587pt;}
.y8c{bottom:245.589067pt;}
.y16e{bottom:250.662347pt;}
.y117{bottom:250.723787pt;}
.y186{bottom:253.583947pt;}
.ya0{bottom:254.957387pt;}
.y142{bottom:255.473227pt;}
.y127{bottom:257.094987pt;}
.yc4{bottom:257.492427pt;}
.yfb{bottom:259.003467pt;}
.y66{bottom:260.944587pt;}
.y8b{bottom:262.546507pt;}
.y3c{bottom:265.723467pt;}
.y16d{bottom:266.662987pt;}
.y116{bottom:267.681227pt;}
.y185{bottom:270.541387pt;}
.y141{bottom:271.473867pt;}
.y9f{bottom:271.914827pt;}
.yc3{bottom:274.449867pt;}
.y126{bottom:275.333067pt;}
.yd7{bottom:277.262667pt;}
.y8a{bottom:279.180107pt;}
.y65{bottom:279.182667pt;}
.y16c{bottom:282.663627pt;}
.y115{bottom:284.638667pt;}
.y140{bottom:287.474507pt;}
.y184{bottom:287.498827pt;}
.y9e{bottom:288.872267pt;}
.yc2{bottom:291.407307pt;}
.y125{bottom:293.571147pt;}
.y89{bottom:296.137547pt;}
.y64{bottom:296.140107pt;}
.y16b{bottom:298.664267pt;}
.y114{bottom:301.596107pt;}
.y13f{bottom:303.475147pt;}
.y183{bottom:304.456267pt;}
.y9d{bottom:305.829707pt;}
.yc1{bottom:308.040907pt;}
.y3b{bottom:309.243467pt;}
.yd6{bottom:309.263947pt;}
.y124{bottom:311.485387pt;}
.y88{bottom:313.094987pt;}
.y63{bottom:313.097547pt;}
.y16a{bottom:314.664907pt;}
.y113{bottom:318.229707pt;}
.y13e{bottom:319.475787pt;}
.y182{bottom:321.089867pt;}
.y9c{bottom:322.463307pt;}
.yc0{bottom:324.998347pt;}
.yd5{bottom:326.221387pt;}
.y3a{bottom:327.157707pt;}
.y123{bottom:329.723467pt;}
.y87{bottom:330.052427pt;}
.y62{bottom:330.054987pt;}
.y169{bottom:330.665547pt;}
.y112{bottom:335.187147pt;}
.y13d{bottom:335.476427pt;}
.y9b{bottom:339.420747pt;}
.ybf{bottom:341.955787pt;}
.y39{bottom:342.519627pt;}
.yd4{bottom:342.854987pt;}
.y181{bottom:346.054987pt;}
.y168{bottom:346.666187pt;}
.y86{bottom:346.686027pt;}
.y61{bottom:346.688587pt;}
.yf{bottom:351.123233pt;}
.y13c{bottom:351.477067pt;}
.y111{bottom:352.144587pt;}
.y9a{bottom:356.378187pt;}
.yd3{bottom:359.812427pt;}
.y167{bottom:362.666827pt;}
.y180{bottom:363.012427pt;}
.y85{bottom:363.643467pt;}
.y60{bottom:363.646027pt;}
.y38{bottom:365.878347pt;}
.y13b{bottom:367.477707pt;}
.y110{bottom:370.058827pt;}
.y99{bottom:373.011787pt;}
.ybe{bottom:374.913867pt;}
.yd2{bottom:376.769867pt;}
.y166{bottom:378.667467pt;}
.y17f{bottom:379.646027pt;}
.y5f{bottom:380.603467pt;}
.y37{bottom:381.240267pt;}
.y13a{bottom:383.478347pt;}
.y10f{bottom:388.296907pt;}
.y98{bottom:389.969227pt;}
.yd1{bottom:393.403467pt;}
.y165{bottom:394.668107pt;}
.y36{bottom:396.279627pt;}
.y84{bottom:396.923467pt;}
.y139{bottom:399.478987pt;}
.y17e{bottom:404.611147pt;}
.y10e{bottom:406.534987pt;}
.ybd{bottom:406.591307pt;}
.y97{bottom:406.926667pt;}
.y164{bottom:410.668747pt;}
.y35{bottom:411.641547pt;}
.y5e{bottom:414.203467pt;}
.y138{bottom:415.479627pt;}
.yd0{bottom:418.043467pt;}
.y17d{bottom:421.568587pt;}
.ybc{bottom:423.548747pt;}
.y96{bottom:423.884107pt;}
.y10d{bottom:424.773067pt;}
.y163{bottom:426.669387pt;}
.y34{bottom:427.003467pt;}
.y83{bottom:429.948747pt;}
.y137{bottom:431.480267pt;}
.y17c{bottom:438.202187pt;}
.ycf{bottom:438.530507pt;}
.ybb{bottom:440.506187pt;}
.y95{bottom:440.517707pt;}
.y162{bottom:442.670027pt;}
.y10c{bottom:443.011147pt;}
.y82{bottom:446.906187pt;}
.y136{bottom:447.480907pt;}
.yeb{bottom:449.467467pt;}
.yba{bottom:457.463627pt;}
.y5d{bottom:457.475147pt;}
.y161{bottom:458.670667pt;}
.y33{bottom:459.003467pt;}
.y10b{bottom:461.249227pt;}
.y17b{bottom:463.167307pt;}
.y135{bottom:463.481547pt;}
.y81{bottom:463.539787pt;}
.yea{bottom:466.424907pt;}
.yb9{bottom:474.097227pt;}
.y5c{bottom:474.432587pt;}
.y160{bottom:474.671307pt;}
.y32{bottom:478.523467pt;}
.y10a{bottom:479.163467pt;}
.y134{bottom:479.482187pt;}
.y17a{bottom:480.124747pt;}
.y80{bottom:480.497227pt;}
.ye9{bottom:483.058507pt;}
.y15f{bottom:490.671947pt;}
.yb8{bottom:491.054667pt;}
.y5b{bottom:491.066187pt;}
.y133{bottom:495.482827pt;}
.y179{bottom:497.082187pt;}
.y7f{bottom:497.454667pt;}
.y31{bottom:498.043467pt;}
.ye8{bottom:500.015947pt;}
.y15e{bottom:506.672587pt;}
.yb7{bottom:508.012107pt;}
.y5a{bottom:508.023627pt;}
.y132{bottom:511.483467pt;}
.y109{bottom:513.087307pt;}
.ye{bottom:513.503706pt;}
.y7e{bottom:514.088267pt;}
.ye7{bottom:516.973387pt;}
.y178{bottom:521.723467pt;}
.y15d{bottom:522.673227pt;}
.y30{bottom:524.915147pt;}
.yb6{bottom:524.969547pt;}
.y59{bottom:524.981067pt;}
.y7d{bottom:531.045707pt;}
.y108{bottom:533.243467pt;}
.ye6{bottom:533.606987pt;}
.yd{bottom:537.083068pt;}
.y15c{bottom:538.673867pt;}
.y2f{bottom:540.277067pt;}
.yb5{bottom:541.603147pt;}
.y58{bottom:541.614667pt;}
.y131{bottom:543.483467pt;}
.y7c{bottom:548.003147pt;}
.yc{bottom:549.304210pt;}
.ye5{bottom:550.564427pt;}
.y15b{bottom:554.674507pt;}
.y177{bottom:554.683467pt;}
.yb4{bottom:558.560587pt;}
.y57{bottom:558.572107pt;}
.yfa{bottom:558.883147pt;}
.y2e{bottom:563.635787pt;}
.y7b{bottom:564.636747pt;}
.ye4{bottom:567.521867pt;}
.y15a{bottom:570.675147pt;}
.yb{bottom:573.120876pt;}
.yb3{bottom:575.518027pt;}
.y56{bottom:575.529547pt;}
.yf9{bottom:575.840587pt;}
.y107{bottom:577.428427pt;}
.y2d{bottom:578.997707pt;}
.y7a{bottom:581.594187pt;}
.ye3{bottom:584.479307pt;}
.ya{bottom:585.352804pt;}
.y159{bottom:586.675787pt;}
.yb2{bottom:592.151627pt;}
.y55{bottom:592.486987pt;}
.yf8{bottom:592.798027pt;}
.y2c{bottom:594.359627pt;}
.y106{bottom:595.666507pt;}
.y9{bottom:597.584733pt;}
.y79{bottom:598.551627pt;}
.ye2{bottom:601.112907pt;}
.y158{bottom:602.676427pt;}
.yb1{bottom:609.109067pt;}
.y54{bottom:609.120587pt;}
.yf7{bottom:609.431627pt;}
.y2b{bottom:609.721547pt;}
.y8{bottom:609.816662pt;}
.y105{bottom:613.904587pt;}
.y78{bottom:615.509067pt;}
.y157{bottom:618.677067pt;}
.y7{bottom:622.048591pt;}
.y2a{bottom:625.083467pt;}
.yb0{bottom:626.066507pt;}
.y53{bottom:626.078027pt;}
.yf6{bottom:626.389067pt;}
.y77{bottom:632.142667pt;}
.y156{bottom:634.677707pt;}
.yaf{bottom:642.700107pt;}
.y52{bottom:643.035467pt;}
.yf5{bottom:643.346507pt;}
.y76{bottom:650.380747pt;}
.y155{bottom:650.678347pt;}
.y29{bottom:657.413067pt;}
.y6{bottom:657.644151pt;}
.yae{bottom:659.657547pt;}
.y51{bottom:659.669067pt;}
.yf4{bottom:660.303947pt;}
.y154{bottom:666.678987pt;}
.y75{bottom:668.618827pt;}
.y5{bottom:675.787100pt;}
.yad{bottom:676.614987pt;}
.y50{bottom:676.626507pt;}
.yf3{bottom:676.937547pt;}
.y28{bottom:680.446027pt;}
.y153{bottom:682.679627pt;}
.y74{bottom:686.856907pt;}
.yac{bottom:693.572427pt;}
.y4f{bottom:693.583947pt;}
.yf2{bottom:693.894987pt;}
.y4{bottom:697.187582pt;}
.y152{bottom:698.680267pt;}
.y27{bottom:703.163467pt;}
.y73{bottom:704.771147pt;}
.yab{bottom:710.206027pt;}
.y4e{bottom:710.217547pt;}
.yf1{bottom:710.852427pt;}
.y151{bottom:714.680907pt;}
.y3{bottom:718.588064pt;}
.y72{bottom:723.009227pt;}
.yaa{bottom:727.163467pt;}
.y4d{bottom:727.174987pt;}
.yf0{bottom:727.486027pt;}
.y150{bottom:730.681547pt;}
.y2{bottom:739.999333pt;}
.y26{bottom:741.243467pt;}
.y71{bottom:741.247307pt;}
.y4c{bottom:744.132427pt;}
.yef{bottom:744.443467pt;}
.y14f{bottom:746.682187pt;}
.y70{bottom:759.485387pt;}
.ya9{bottom:760.443467pt;}
.y4b{bottom:761.089867pt;}
.y14e{bottom:762.682827pt;}
.y25{bottom:776.443467pt;}
.y4a{bottom:777.723467pt;}
.y14d{bottom:778.683467pt;}
.y21{bottom:794.683467pt;}
.y1f{bottom:808.283467pt;}
.hf{height:17.333333pt;}
.h9{height:22.379899pt;}
.h7{height:25.577028pt;}
.h8{height:25.646062pt;}
.hc{height:28.774156pt;}
.h12{height:30.877440pt;}
.h6{height:31.971285pt;}
.ha{height:32.057577pt;}
.h5{height:35.168413pt;}
.hb{height:35.807839pt;}
.h1c{height:35.831250pt;}
.h13{height:38.277120pt;}
.h1a{height:39.243750pt;}
.h19{height:39.905000pt;}
.h1d{height:42.040320pt;}
.h14{height:42.656250pt;}
.h10{height:43.041280pt;}
.h3{height:44.759799pt;}
.h17{height:44.835000pt;}
.h4{height:44.880608pt;}
.h11{height:49.105000pt;}
.h1b{height:49.220000pt;}
.h1e{height:50.011830pt;}
.h16{height:54.269440pt;}
.h15{height:55.872000pt;}
.h18{height:58.304000pt;}
.hd{height:907.127467pt;}
.he{height:907.333333pt;}
.h2{height:908.107455pt;}
.h0{height:908.653333pt;}
.h1{height:908.666667pt;}
.w4{width:16.000000pt;}
.w6{width:75.022667pt;}
.w5{width:416.000000pt;}
.w3{width:490.666667pt;}
.w1{width:642.000000pt;}
.w0{width:642.093333pt;}
.w2{width:642.098800pt;}
.x0{left:0.000000pt;}
.x6{left:7.360000pt;}
.x3{left:33.632411pt;}
.x1{left:39.748375pt;}
.x7{left:75.449467pt;}
.x5{left:76.409467pt;}
.x14{left:94.343547pt;}
.x9{left:98.118267pt;}
.xd{left:99.449467pt;}
.xf{left:101.929467pt;}
.x2{left:107.013197pt;}
.x13{left:117.040160pt;}
.x10{left:120.757627pt;}
.x11{left:123.083387pt;}
.xb{left:124.313333pt;}
.xa{left:152.409467pt;}
.x8{left:265.772000pt;}
.x4{left:314.934414pt;}
.x12{left:541.556000pt;}
.xe{left:551.076133pt;}
.xc{left:567.076133pt;}
}




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