
    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_48fec382be0ec6ae37775353.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_2a9a8312dc091af999636a4e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_1348cf20944a954d9135e407.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_4f50b04a37b84ad3a7522c42.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.738000;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_a574a8fa4b292c84baaab9f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f9e94b2803ae774ef1a1562a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ac1646124842b8faab302fd9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8e00f02ed4a466548a91bc1b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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_dba34427375892b3fb75b479.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_916c47a9ef20864f49cd1f3e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.714000;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_96c25b948139d730d2496f1f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2048822d62e596dae2bf677e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.651000;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_227cbb81c974151fe4f63227.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.389000;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_5b3f7c1e4c4186b6c0f4759f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958000;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_1a500f818cb2f1aba6365ce0.woff2')format("woff");}.fff{font-family:fff;line-height:0.898000;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_dd3806947a57e5f10ca81599.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.898000;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_f264b6afb4d88dd6135bcec5.woff2')format("woff");}.ff11{font-family:ff11;line-height:2.399000;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_2183213169e705bd6500c7ba.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.046000;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;}
.m1c{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);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.v2{vertical-align:-10.662000px;}
.v1{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:6.366000px;}
.v4{vertical-align:8.964000px;}
.v3{vertical-align:10.662000px;}
.v6{vertical-align:16.656000px;}
.vb{vertical-align:19.002000px;}
.ve{vertical-align:23.754000px;}
.v5{vertical-align:27.024000px;}
.va{vertical-align:34.464000px;}
.v7{vertical-align:43.680000px;}
.vd{vertical-align:47.664000px;}
.v9{vertical-align:92.292000px;}
.vc{vertical-align:139.956000px;}
.ls4{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.001059px;}
.ls1c{letter-spacing:0.001580px;}
.lsd{letter-spacing:0.002096px;}
.ls3{letter-spacing:0.002174px;}
.ls1e{letter-spacing:0.004802px;}
.ls2c{letter-spacing:0.004948px;}
.ls1a{letter-spacing:0.005414px;}
.ls3a{letter-spacing:0.007867px;}
.ls29{letter-spacing:0.007898px;}
.ls14{letter-spacing:0.009626px;}
.lsc{letter-spacing:0.013296px;}
.ls18{letter-spacing:0.014587px;}
.ls41{letter-spacing:0.026608px;}
.ls38{letter-spacing:0.028429px;}
.ls2a{letter-spacing:0.028849px;}
.ls25{letter-spacing:0.031974px;}
.ls46{letter-spacing:0.485941px;}
.ls32{letter-spacing:0.875675px;}
.ls42{letter-spacing:1.291156px;}
.ls5{letter-spacing:2.356366px;}
.ls7{letter-spacing:2.582323px;}
.ls33{letter-spacing:2.984915px;}
.ls3c{letter-spacing:3.665458px;}
.ls43{letter-spacing:3.682186px;}
.ls0{letter-spacing:3.718526px;}
.ls23{letter-spacing:4.702593px;}
.ls28{letter-spacing:5.301823px;}
.ls10{letter-spacing:6.283642px;}
.ls44{letter-spacing:10.909062px;}
.ls2d{letter-spacing:13.270183px;}
.lsf{letter-spacing:14.530921px;}
.ls17{letter-spacing:15.610593px;}
.ls21{letter-spacing:15.616593px;}
.ls2e{letter-spacing:16.617617px;}
.ls3f{letter-spacing:18.179412px;}
.ls1b{letter-spacing:18.196379px;}
.ls1d{letter-spacing:21.164915px;}
.lse{letter-spacing:21.170915px;}
.ls3d{letter-spacing:21.796382px;}
.ls2f{letter-spacing:21.861836px;}
.ls22{letter-spacing:21.927291px;}
.lsb{letter-spacing:21.992746px;}
.ls2{letter-spacing:22.535401px;}
.ls1{letter-spacing:22.595177px;}
.ls20{letter-spacing:22.882593px;}
.ls6{letter-spacing:23.498201px;}
.ls45{letter-spacing:23.890929px;}
.ls3b{letter-spacing:24.806915px;}
.ls11{letter-spacing:25.330930px;}
.ls48{letter-spacing:25.592749px;}
.ls34{letter-spacing:27.098204px;}
.ls1f{letter-spacing:27.163659px;}
.ls9{letter-spacing:28.080023px;}
.ls8{letter-spacing:29.389115px;}
.ls39{letter-spacing:29.882915px;}
.ls47{letter-spacing:30.506915px;}
.lsa{letter-spacing:32.727300px;}
.ls13{letter-spacing:36.327303px;}
.ls12{letter-spacing:36.392758px;}
.ls16{letter-spacing:40.123670px;}
.ls3e{letter-spacing:66.763692px;}
.ls2b{letter-spacing:76.216843px;}
.ls31{letter-spacing:96.922593px;}
.ls40{letter-spacing:174.927191px;}
.ls26{letter-spacing:177.643784px;}
.ls27{letter-spacing:241.592929px;}
.ls24{letter-spacing:250.494754px;}
.ls35{letter-spacing:256.832688px;}
.ls36{letter-spacing:413.692338px;}
.ls37{letter-spacing:561.652273px;}
.ls19{letter-spacing:799.069757px;}
.ls15{letter-spacing:1087.069997px;}
.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;}
}
.ws94{word-spacing:-47.258221px;}
.ws54{word-spacing:-45.664082px;}
.ws2f{word-spacing:-42.637126px;}
.ws93{word-spacing:-39.141851px;}
.wse{word-spacing:-38.937826px;}
.ws64{word-spacing:-33.211407px;}
.ws7d{word-spacing:-31.633157px;}
.ws9c{word-spacing:-26.899125px;}
.ws89{word-spacing:-24.506202px;}
.ws75{word-spacing:-24.440748px;}
.ws8a{word-spacing:-20.906199px;}
.ws46{word-spacing:-18.183288px;}
.ws19{word-spacing:-16.730196px;}
.ws69{word-spacing:-16.605662px;}
.ws61{word-spacing:-14.111859px;}
.wsab{word-spacing:-9.778917px;}
.wsa4{word-spacing:-3.961152px;}
.ws56{word-spacing:-3.652367px;}
.ws7e{word-spacing:-3.335478px;}
.ws78{word-spacing:-3.325094px;}
.wsc{word-spacing:-1.781313px;}
.ws8b{word-spacing:-1.688729px;}
.ws9e{word-spacing:-1.492365px;}
.ws96{word-spacing:-1.466183px;}
.ws84{word-spacing:-1.361456px;}
.ws85{word-spacing:-1.296001px;}
.wsa1{word-spacing:-0.706910px;}
.ws70{word-spacing:-0.445091px;}
.ws98{word-spacing:-0.248727px;}
.wsa3{word-spacing:-0.065455px;}
.ws5b{word-spacing:-0.052364px;}
.ws23{word-spacing:0.000000px;}
.ws66{word-spacing:0.013091px;}
.ws88{word-spacing:0.340364px;}
.ws7{word-spacing:0.609711px;}
.ws90{word-spacing:0.798546px;}
.ws40{word-spacing:0.890183px;}
.ws3c{word-spacing:0.955637px;}
.ws45{word-spacing:1.152001px;}
.ws32{word-spacing:1.976729px;}
.ws13{word-spacing:1.984550px;}
.ws4a{word-spacing:2.304002px;}
.ws87{word-spacing:2.369457px;}
.ws49{word-spacing:2.657457px;}
.ws29{word-spacing:2.893093px;}
.ws1c{word-spacing:2.958548px;}
.ws11{word-spacing:3.000735px;}
.ws22{word-spacing:3.154912px;}
.ws31{word-spacing:3.220366px;}
.wsa{word-spacing:3.239838px;}
.ws7b{word-spacing:3.285821px;}
.ws4{word-spacing:3.299613px;}
.ws60{word-spacing:3.351276px;}
.ws10{word-spacing:3.359389px;}
.ws1d{word-spacing:3.416730px;}
.ws12{word-spacing:3.419164px;}
.ws67{word-spacing:3.423147px;}
.ws27{word-spacing:3.482185px;}
.ws30{word-spacing:3.547639px;}
.wsb{word-spacing:3.598491px;}
.ws1e{word-spacing:3.613094px;}
.ws2a{word-spacing:3.678549px;}
.ws2e{word-spacing:3.744003px;}
.ws7c{word-spacing:3.770185px;}
.ws17{word-spacing:3.809458px;}
.ws1{word-spacing:3.873485px;}
.ws59{word-spacing:3.874912px;}
.ws97{word-spacing:3.901094px;}
.ws2d{word-spacing:3.940367px;}
.ws3{word-spacing:3.945216px;}
.ws43{word-spacing:4.005822px;}
.wsd{word-spacing:4.076696px;}
.ws2c{word-spacing:4.097458px;}
.ws3d{word-spacing:4.162913px;}
.ws55{word-spacing:4.228367px;}
.ws44{word-spacing:4.424731px;}
.ws5e{word-spacing:4.464004px;}
.ws15{word-spacing:4.483200px;}
.ws77{word-spacing:4.490186px;}
.ws99{word-spacing:4.555640px;}
.ws95{word-spacing:4.621095px;}
.ws39{word-spacing:4.725822px;}
.ws48{word-spacing:5.053095px;}
.ws16{word-spacing:5.314914px;}
.ws41{word-spacing:5.379825px;}
.ws6a{word-spacing:5.406550px;}
.ws34{word-spacing:5.642187px;}
.ws47{word-spacing:5.799278px;}
.ws51{word-spacing:5.904005px;}
.ws86{word-spacing:5.969460px;}
.ws9{word-spacing:6.121021px;}
.ws0{word-spacing:6.455775px;}
.ws33{word-spacing:6.519278px;}
.ws8{word-spacing:6.599226px;}
.ws4f{word-spacing:6.637096px;}
.ws9b{word-spacing:6.702551px;}
.ws50{word-spacing:6.781097px;}
.ws58{word-spacing:6.885824px;}
.ws1a{word-spacing:7.016733px;}
.ws9a{word-spacing:7.029824px;}
.ws74{word-spacing:7.052943px;}
.ws68{word-spacing:7.053147px;}
.ws65{word-spacing:7.053168px;}
.wsa2{word-spacing:7.058943px;}
.ws9d{word-spacing:7.357097px;}
.ws3a{word-spacing:7.553461px;}
.ws24{word-spacing:7.605825px;}
.ws6b{word-spacing:7.671279px;}
.ws57{word-spacing:7.959279px;}
.ws92{word-spacing:7.998552px;}
.wsa7{word-spacing:8.155643px;}
.wsa0{word-spacing:8.194916px;}
.ws18{word-spacing:8.260371px;}
.wsaa{word-spacing:8.653098px;}
.ws91{word-spacing:9.137462px;}
.ws4d{word-spacing:9.242190px;}
.ws21{word-spacing:9.634917px;}
.ws1f{word-spacing:9.700372px;}
.ws2b{word-spacing:9.765826px;}
.ws25{word-spacing:9.831281px;}
.ws4e{word-spacing:9.896736px;}
.ws35{word-spacing:9.962190px;}
.wsa8{word-spacing:9.988372px;}
.ws5{word-spacing:10.472685px;}
.ws37{word-spacing:10.485827px;}
.ws6e{word-spacing:10.642918px;}
.ws52{word-spacing:10.688943px;}
.ws42{word-spacing:10.813100px;}
.ws9f{word-spacing:10.826191px;}
.ws53{word-spacing:11.088009px;}
.ws4c{word-spacing:11.205828px;}
.ws8f{word-spacing:11.297464px;}
.ws38{word-spacing:11.415282px;}
.ws26{word-spacing:11.729464px;}
.wsa6{word-spacing:11.925828px;}
.ws20{word-spacing:12.200737px;}
.ws83{word-spacing:12.266192px;}
.ws6{word-spacing:12.385504px;}
.ws5f{word-spacing:12.593465px;}
.ws4b{word-spacing:12.868374px;}
.wsf{word-spacing:12.983260px;}
.ws28{word-spacing:13.300375px;}
.ws6d{word-spacing:13.365829px;}
.ws1b{word-spacing:13.378920px;}
.ws62{word-spacing:13.431284px;}
.ws36{word-spacing:14.871285px;}
.ws6c{word-spacing:15.355649px;}
.ws3f{word-spacing:15.591286px;}
.ws3e{word-spacing:17.908379px;}
.wsa9{word-spacing:18.628379px;}
.ws2{word-spacing:22.535401px;}
.ws6f{word-spacing:25.238943px;}
.ws3b{word-spacing:33.713664px;}
.wsa5{word-spacing:44.548401px;}
.ws71{word-spacing:53.554954px;}
.ws7a{word-spacing:55.125058px;}
.ws5c{word-spacing:61.239324px;}
.ws5a{word-spacing:61.304778px;}
.ws14{word-spacing:69.937725px;}
.ws72{word-spacing:75.154972px;}
.ws5d{word-spacing:79.108430px;}
.ws76{word-spacing:93.940442px;}
.ws79{word-spacing:98.733257px;}
.ws73{word-spacing:118.093189px;}
.ws8e{word-spacing:135.997925px;}
.ws8d{word-spacing:311.622158px;}
.ws7f{word-spacing:330.092818px;}
.ws80{word-spacing:353.345527px;}
.ws8c{word-spacing:440.617903px;}
.ws82{word-spacing:449.644018px;}
.ws81{word-spacing:463.511958px;}
.ws63{word-spacing:1012.360116px;}
._4e{margin-left:-30.096170px;}
._4b{margin-left:-8.091257px;}
._1a{margin-left:-6.388557px;}
._4{margin-left:-4.841824px;}
._1{margin-left:-3.202064px;}
._3{margin-left:-1.793268px;}
._d{width:1.005293px;}
._2{width:2.080205px;}
._6{width:3.706087px;}
._2e{width:17.020716px;}
._1e{width:18.195252px;}
._3c{width:20.194346px;}
._9{width:21.232279px;}
._1d{width:22.830188px;}
._8{width:24.550093px;}
._5{width:26.062162px;}
._10{width:27.624361px;}
._7{width:28.871615px;}
._18{width:30.527837px;}
._13{width:32.138209px;}
._15{width:33.471478px;}
._11{width:35.757959px;}
._16{width:36.874049px;}
._c{width:39.548921px;}
._e{width:41.947267px;}
._b{width:43.658218px;}
._4f{width:45.794746px;}
._f{width:47.695559px;}
._4d{width:49.287314px;}
._17{width:50.334587px;}
._0{width:51.646200px;}
._12{width:54.274390px;}
._14{width:58.778231px;}
._1c{width:63.963791px;}
._1b{width:65.258236px;}
._4c{width:67.015676px;}
._21{width:71.738242px;}
._3d{width:76.386645px;}
._a{width:80.697600px;}
._26{width:82.170348px;}
._2d{width:83.637512px;}
._36{width:88.878796px;}
._19{width:96.836850px;}
._34{width:100.602335px;}
._2f{width:108.253612px;}
._43{width:114.589825px;}
._3f{width:132.940934px;}
._2b{width:150.087398px;}
._38{width:151.292044px;}
._2a{width:177.421427px;}
._33{width:180.036586px;}
._46{width:181.728716px;}
._32{width:184.945706px;}
._22{width:187.487968px;}
._35{width:189.122477px;}
._30{width:192.836086px;}
._3b{width:198.395216px;}
._44{width:200.068933px;}
._47{width:211.198087px;}
._39{width:216.387672px;}
._29{width:227.716553px;}
._48{width:238.205766px;}
._2c{width:246.672394px;}
._31{width:249.914262px;}
._41{width:257.274182px;}
._3a{width:275.087311px;}
._25{width:292.123880px;}
._27{width:314.640262px;}
._45{width:317.707314px;}
._1f{width:351.163929px;}
._24{width:384.611230px;}
._20{width:400.477237px;}
._42{width:411.375679px;}
._37{width:432.954671px;}
._40{width:436.328122px;}
._4a{width:463.978207px;}
._23{width:465.840388px;}
._3e{width:495.490841px;}
._49{width:544.436165px;}
._28{width:772.403741px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.yce{bottom:25.435500px;}
.y28{bottom:63.168000px;}
.y4f{bottom:121.119000px;}
.y92{bottom:126.130500px;}
.y27{bottom:128.115000px;}
.y127{bottom:131.965500px;}
.yb1{bottom:141.906000px;}
.y26{bottom:149.455500px;}
.y4e{bottom:152.455500px;}
.y126{bottom:156.579000px;}
.y91{bottom:157.468500px;}
.yb0{bottom:163.246500px;}
.y107{bottom:168.798000px;}
.y25{bottom:170.796000px;}
.y71{bottom:170.826000px;}
.y143{bottom:181.207500px;}
.y4d{bottom:183.793500px;}
.y125{bottom:188.487000px;}
.y90{bottom:188.806500px;}
.y106{bottom:190.138500px;}
.y24{bottom:192.135000px;}
.y70{bottom:192.166500px;}
.yaf{bottom:201.847500px;}
.y142{bottom:202.548000px;}
.y105{bottom:211.479000px;}
.y8f{bottom:213.418500px;}
.y23{bottom:213.475500px;}
.y4c{bottom:215.131500px;}
.y6f{bottom:223.503000px;}
.y124{bottom:233.352000px;}
.y8e{bottom:234.759000px;}
.y22{bottom:234.816000px;}
.y4b{bottom:239.743500px;}
.yae{bottom:240.447000px;}
.y104{bottom:243.387000px;}
.y6e{bottom:244.843500px;}
.y141{bottom:246.786000px;}
.y123{bottom:254.692500px;}
.y21{bottom:256.155000px;}
.ye9{bottom:258.571500px;}
.y140{bottom:268.125000px;}
.y4a{bottom:271.651500px;}
.yad{bottom:272.355000px;}
.y122{bottom:276.033000px;}
.y6d{bottom:276.181500px;}
.y20{bottom:277.495500px;}
.y8d{bottom:278.997000px;}
.y103{bottom:288.252000px;}
.ye8{bottom:290.479500px;}
.y6c{bottom:297.520500px;}
.y1f{bottom:298.836000px;}
.y8c{bottom:300.336000px;}
.y13f{bottom:312.363000px;}
.y49{bottom:316.518000px;}
.yac{bottom:317.220000px;}
.y102{bottom:319.590000px;}
.y8b{bottom:321.676500px;}
.y121{bottom:325.966500px;}
.y6b{bottom:328.858500px;}
.y1e{bottom:330.744000px;}
.y13e{bottom:333.703500px;}
.y48{bottom:337.857000px;}
.y11f{bottom:342.819000px;}
.ye7{bottom:345.121500px;}
.yab{bottom:348.558000px;}
.y6a{bottom:350.199000px;}
.y101{bottom:350.928000px;}
.y120{bottom:358.036500px;}
.y11d{bottom:358.128000px;}
.y47{bottom:359.197500px;}
.y8a{bottom:360.276000px;}
.ye6{bottom:363.949500px;}
.y13d{bottom:365.611500px;}
.y1d{bottom:368.916000px;}
.y11e{bottom:369.471000px;}
.y69{bottom:374.811000px;}
.y100{bottom:375.540000px;}
.yaa{bottom:379.896000px;}
.y46{bottom:380.538000px;}
.ye5{bottom:382.779000px;}
.ycc{bottom:385.141500px;}
.yff{bottom:396.880500px;}
.y89{bottom:398.877000px;}
.ye4{bottom:401.608500px;}
.y45{bottom:401.877000px;}
.ya9{bottom:404.508000px;}
.ycb{bottom:406.480500px;}
.y68{bottom:406.719000px;}
.y13c{bottom:410.476500px;}
.y11c{bottom:411.381000px;}
.ye3{bottom:420.438000px;}
.y1c{bottom:421.819500px;}
.ya8{bottom:425.848500px;}
.yca{bottom:427.821000px;}
.yfe{bottom:428.788500px;}
.y88{bottom:430.785000px;}
.y13b{bottom:431.817000px;}
.y44{bottom:433.786500px;}
.ye2{bottom:439.267500px;}
.y1b{bottom:440.649000px;}
.y11b{bottom:443.290500px;}
.yc9{bottom:449.161500px;}
.y67{bottom:451.584000px;}
.y13a{bottom:453.157500px;}
.ye1{bottom:458.097000px;}
.y1a{bottom:459.478500px;}
.ya7{bottom:464.449500px;}
.y66{bottom:472.924500px;}
.yfd{bottom:473.653500px;}
.y87{bottom:475.650000px;}
.ye0{bottom:476.926500px;}
.y19{bottom:478.308000px;}
.y43{bottom:478.651500px;}
.yc8{bottom:478.717500px;}
.y139{bottom:485.065500px;}
.y11a{bottom:488.155500px;}
.y65{bottom:494.265000px;}
.y86{bottom:496.990500px;}
.y18{bottom:497.137500px;}
.y42{bottom:499.990500px;}
.ya6{bottom:503.049000px;}
.ydf{bottom:503.971500px;}
.yc7{bottom:504.219000px;}
.yfc{bottom:504.991500px;}
.y17{bottom:515.967000px;}
.y41{bottom:521.331000px;}
.y85{bottom:521.604000px;}
.y138{bottom:523.237500px;}
.y119{bottom:525.699000px;}
.yde{bottom:527.718000px;}
.y64{bottom:529.054500px;}
.y16{bottom:534.796500px;}
.ya5{bottom:534.957000px;}
.yfb{bottom:536.328000px;}
.y40{bottom:542.671500px;}
.y63{bottom:550.395000px;}
.y84{bottom:552.940500px;}
.yc6{bottom:553.135500px;}
.y15{bottom:553.626000px;}
.yfa{bottom:560.941500px;}
.y156{bottom:562.261500px;}
.y62{bottom:571.734000px;}
.y14{bottom:572.455500px;}
.y3f{bottom:574.009500px;}
.y137{bottom:576.141000px;}
.ydd{bottom:577.543500px;}
.ya4{bottom:579.823500px;}
.yf9{bottom:582.282000px;}
.y155{bottom:583.602000px;}
.y83{bottom:584.278500px;}
.yc5{bottom:585.045000px;}
.y118{bottom:588.379500px;}
.y13{bottom:591.285000px;}
.y61{bottom:593.074500px;}
.y3e{bottom:595.348500px;}
.ydc{bottom:598.882500px;}
.ya3{bottom:601.162500px;}
.y154{bottom:604.942500px;}
.y117{bottom:607.209000px;}
.y82{bottom:608.890500px;}
.y12{bottom:610.114500px;}
.yf8{bottom:614.190000px;}
.y3d{bottom:616.689000px;}
.y136{bottom:620.377500px;}
.y116{bottom:626.038500px;}
.y60{bottom:627.864000px;}
.y11{bottom:628.944000px;}
.yc4{bottom:629.910000px;}
.ydb{bottom:630.790500px;}
.ya2{bottom:632.701500px;}
.y3c{bottom:638.029500px;}
.y153{bottom:639.732000px;}
.y81{bottom:640.800000px;}
.y115{bottom:644.866500px;}
.y10{bottom:647.772000px;}
.ya1{bottom:654.042000px;}
.y5f{bottom:655.465500px;}
.yf7{bottom:659.055000px;}
.y152{bottom:661.071000px;}
.y114{bottom:663.696000px;}
.y135{bottom:664.615500px;}
.yf{bottom:666.601500px;}
.yc3{bottom:668.509500px;}
.y3b{bottom:669.366000px;}
.ya0{bottom:675.382500px;}
.yda{bottom:675.657000px;}
.yf6{bottom:680.395500px;}
.y5e{bottom:683.067000px;}
.ye{bottom:685.431000px;}
.y80{bottom:685.665000px;}
.y134{bottom:685.956000px;}
.y3a{bottom:690.706500px;}
.y113{bottom:690.742500px;}
.y151{bottom:695.860500px;}
.yd9{bottom:696.996000px;}
.yd{bottom:704.260500px;}
.yc2{bottom:707.110500px;}
.y9f{bottom:707.290500px;}
.y5d{bottom:710.668500px;}
.y39{bottom:712.047000px;}
.y112{bottom:714.487500px;}
.y7f{bottom:717.001500px;}
.y150{bottom:717.201000px;}
.y133{bottom:717.864000px;}
.yf5{bottom:717.939000px;}
.yc{bottom:723.090000px;}
.y38{bottom:733.386000px;}
.yd8{bottom:734.541000px;}
.yc1{bottom:738.448500px;}
.y7e{bottom:741.615000px;}
.yb{bottom:741.919500px;}
.y5c{bottom:742.006500px;}
.y14f{bottom:751.990500px;}
.y9e{bottom:752.155500px;}
.y37{bottom:757.999500px;}
.ya{bottom:760.749000px;}
.y132{bottom:762.729000px;}
.y5b{bottom:763.345500px;}
.y111{bottom:763.404000px;}
.yc0{bottom:769.785000px;}
.y14e{bottom:773.331000px;}
.y9d{bottom:773.496000px;}
.y160{bottom:775.555500px;}
.yf4{bottom:780.618000px;}
.y5a{bottom:784.686000px;}
.y110{bottom:784.744500px;}
.y7d{bottom:785.853000px;}
.y9{bottom:788.919000px;}
.y36{bottom:789.907500px;}
.yd7{bottom:790.626000px;}
.ybf{bottom:794.398500px;}
.y9c{bottom:794.836500px;}
.yf3{bottom:799.447500px;}
.y15f{bottom:800.169000px;}
.y10f{bottom:806.083500px;}
.y131{bottom:806.967000px;}
.y14d{bottom:808.120500px;}
.yd6{bottom:811.966500px;}
.ybe{bottom:815.737500px;}
.y59{bottom:816.594000px;}
.y7c{bottom:817.189500px;}
.yf2{bottom:818.277000px;}
.y15e{bottom:821.509500px;}
.y130{bottom:828.307500px;}
.y14c{bottom:829.461000px;}
.y9b{bottom:832.380000px;}
.yd5{bottom:833.305500px;}
.y35{bottom:834.772500px;}
.y10e{bottom:837.991500px;}
.yf1{bottom:845.323500px;}
.ybd{bottom:847.647000px;}
.y7b{bottom:848.527500px;}
.y8{bottom:850.227000px;}
.y14b{bottom:850.800000px;}
.y15d{bottom:852.846000px;}
.y34{bottom:856.113000px;}
.y58{bottom:861.460500px;}
.yf0{bottom:869.068500px;}
.y12f{bottom:872.544000px;}
.y7a{bottom:873.141000px;}
.yd0{bottom:875.044500px;}
.y15c{bottom:877.459500px;}
.y57{bottom:882.799500px;}
.y10d{bottom:882.858000px;}
.y7{bottom:887.128500px;}
.y14a{bottom:888.345000px;}
.y33{bottom:890.902500px;}
.y12e{bottom:893.884500px;}
.y79{bottom:894.480000px;}
.ybc{bottom:895.693500px;}
.y9a{bottom:895.813500px;}
.ycf{bottom:897.070500px;}
.y10c{bottom:904.197000px;}
.y6{bottom:909.096000px;}
.y32{bottom:912.243000px;}
.ybb{bottom:917.034000px;}
.y99{bottom:917.152500px;}
.ycd{bottom:918.285000px;}
.y56{bottom:920.344500px;}
.y15b{bottom:921.697500px;}
.y5{bottom:931.063500px;}
.y31{bottom:933.582000px;}
.yef{bottom:936.826500px;}
.y12d{bottom:938.122500px;}
.yba{bottom:938.373000px;}
.y98{bottom:938.493000px;}
.y10b{bottom:938.634000px;}
.y78{bottom:938.718000px;}
.y149{bottom:941.248500px;}
.y10a{bottom:942.798000px;}
.y30{bottom:954.922500px;}
.y15a{bottom:956.353500px;}
.yee{bottom:958.167000px;}
.y12c{bottom:959.463000px;}
.y97{bottom:959.833500px;}
.y77{bottom:960.058500px;}
.y148{bottom:962.589000px;}
.y159{bottom:968.269500px;}
.y55{bottom:973.248000px;}
.y2f{bottom:976.263000px;}
.y4{bottom:977.577000px;}
.yed{bottom:979.506000px;}
.y96{bottom:981.172500px;}
.y76{bottom:981.397500px;}
.y147{bottom:983.928000px;}
.yb8{bottom:984.799500px;}
.yb7{bottom:984.801000px;}
.y12b{bottom:991.371000px;}
.y2e{bottom:997.602000px;}
.y54{bottom:997.860000px;}
.y109{bottom:1002.738000px;}
.y3{bottom:1005.186000px;}
.yb6{bottom:1006.140000px;}
.y95{bottom:1010.728500px;}
.y75{bottom:1013.307000px;}
.y158{bottom:1013.934000px;}
.yb9{bottom:1018.890000px;}
.y2d{bottom:1018.942500px;}
.y146{bottom:1021.473000px;}
.yd4{bottom:1022.751000px;}
.yb5{bottom:1027.480500px;}
.y53{bottom:1029.198000px;}
.y12a{bottom:1029.543000px;}
.y108{bottom:1034.646000px;}
.y157{bottom:1035.274500px;}
.y94{bottom:1036.231500px;}
.y2{bottom:1036.627500px;}
.y2c{bottom:1040.283000px;}
.yd3{bottom:1043.455500px;}
.y52{bottom:1050.538500px;}
.y74{bottom:1058.172000px;}
.yd2{bottom:1063.251000px;}
.y1{bottom:1071.148500px;}
.y2b{bottom:1072.191000px;}
.y145{bottom:1074.376500px;}
.yea{bottom:1074.453000px;}
.y73{bottom:1079.511000px;}
.y51{bottom:1081.875000px;}
.y129{bottom:1082.446500px;}
.yd1{bottom:1083.046500px;}
.y93{bottom:1085.148000px;}
.y144{bottom:1095.715500px;}
.y72{bottom:1100.851500px;}
.yeb{bottom:1103.181000px;}
.y50{bottom:1106.488500px;}
.y128{bottom:1107.058500px;}
.yb4{bottom:1116.079500px;}
.y2a{bottom:1117.056000px;}
.yb3{bottom:1120.215000px;}
.yb2{bottom:1137.420000px;}
.yec{bottom:1138.017000px;}
.y29{bottom:1138.396500px;}
.h8{height:29.127297px;}
.ha{height:35.865450px;}
.h4{height:44.831700px;}
.hf{height:46.865494px;}
.h7{height:49.090950px;}
.h3{height:51.216077px;}
.h6{height:53.798400px;}
.hd{height:55.090950px;}
.h12{height:59.619450px;}
.he{height:59.752950px;}
.hb{height:62.889450px;}
.h5{height:64.557900px;}
.h2{height:77.469300px;}
.hc{height:79.545450px;}
.h10{height:94.910184px;}
.h11{height:142.574184px;}
.h9{height:187.857675px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:487.834470px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:106.695000px;}
.x14{left:108.000000px;}
.x3c{left:116.967000px;}
.x26{left:124.317000px;}
.x19{left:128.908500px;}
.x83{left:132.400500px;}
.x17{left:133.404000px;}
.x1{left:136.332000px;}
.x13{left:147.160500px;}
.xb{left:148.909500px;}
.x3{left:153.865500px;}
.x30{left:162.954000px;}
.x49{left:166.959000px;}
.x43{left:168.094500px;}
.x31{left:169.279500px;}
.xa{left:171.325500px;}
.x27{left:176.031000px;}
.x32{left:179.928000px;}
.x73{left:183.609000px;}
.x35{left:185.067000px;}
.x44{left:188.485500px;}
.x36{left:193.249500px;}
.x2d{left:196.087500px;}
.x5c{left:198.126000px;}
.x4{left:204.976500px;}
.x64{left:208.723500px;}
.x65{left:216.412500px;}
.x5d{left:217.773000px;}
.x63{left:220.161000px;}
.x52{left:222.264000px;}
.x68{left:223.482000px;}
.x77{left:228.486000px;}
.x2e{left:232.804500px;}
.x4a{left:246.426000px;}
.x5b{left:251.616000px;}
.x4b{left:259.791000px;}
.xe{left:262.444500px;}
.x67{left:265.707000px;}
.x62{left:266.886000px;}
.x53{left:268.089000px;}
.xf{left:272.715000px;}
.x28{left:273.993000px;}
.x6d{left:275.038500px;}
.x5f{left:283.522500px;}
.x76{left:285.945000px;}
.x60{left:290.613000px;}
.x29{left:294.385500px;}
.x4c{left:296.194500px;}
.x74{left:298.516500px;}
.x88{left:300.379500px;}
.x61{left:302.568000px;}
.x3b{left:306.765000px;}
.x5e{left:308.206500px;}
.x1a{left:310.593000px;}
.xc{left:311.728500px;}
.x7c{left:313.747500px;}
.xd{left:319.201500px;}
.x2{left:320.832000px;}
.x48{left:326.761500px;}
.x7d{left:328.680000px;}
.x75{left:340.851000px;}
.x89{left:344.625000px;}
.x1b{left:350.985000px;}
.x8a{left:352.969500px;}
.x66{left:354.006000px;}
.x25{left:356.722500px;}
.x1c{left:364.567500px;}
.x6{left:368.229000px;}
.x45{left:372.829500px;}
.x5{left:376.674000px;}
.x56{left:382.821000px;}
.x4f{left:386.842500px;}
.x8{left:388.269000px;}
.x42{left:390.753000px;}
.x2f{left:394.387500px;}
.x12{left:397.386000px;}
.x3d{left:398.764500px;}
.x1d{left:401.269500px;}
.x51{left:404.766000px;}
.x3e{left:409.062000px;}
.x50{left:410.868000px;}
.x9{left:413.811000px;}
.x7{left:416.299500px;}
.x87{left:426.358500px;}
.x10{left:430.197000px;}
.x82{left:438.274500px;}
.x11{left:440.469000px;}
.x18{left:442.366500px;}
.x84{left:444.151500px;}
.x85{left:455.398500px;}
.x3f{left:457.500000px;}
.x79{left:481.260000px;}
.x7a{left:492.507000px;}
.x37{left:493.645500px;}
.x33{left:504.643500px;}
.x38{left:510.690000px;}
.x34{left:520.762500px;}
.x78{left:523.075500px;}
.x54{left:524.331000px;}
.x57{left:557.245500px;}
.x55{left:568.666500px;}
.x6b{left:578.374500px;}
.x1e{left:595.146000px;}
.x6c{left:597.852000px;}
.x4d{left:600.163500px;}
.x1f{left:603.327000px;}
.x15{left:612.964500px;}
.x16{left:621.145500px;}
.x20{left:629.136000px;}
.x86{left:635.145000px;}
.x21{left:640.383000px;}
.x24{left:641.998500px;}
.x69{left:649.801500px;}
.x58{left:651.930000px;}
.x22{left:653.940000px;}
.x4e{left:660.853500px;}
.x6a{left:667.075500px;}
.x6e{left:671.551500px;}
.x2b{left:675.904500px;}
.x23{left:678.882000px;}
.x6f{left:682.797000px;}
.x59{left:692.316000px;}
.x2c{left:696.982500px;}
.x46{left:704.953500px;}
.x7e{left:706.933500px;}
.x70{left:710.082000px;}
.x81{left:716.869500px;}
.x5a{left:723.051000px;}
.x80{left:724.482000px;}
.x47{left:731.323500px;}
.x71{left:747.897000px;}
.x39{left:749.539500px;}
.x72{left:752.442000px;}
.x7f{left:754.966500px;}
.x7b{left:767.791500px;}
.x40{left:770.634000px;}
.x3a{left:773.694000px;}
.x41{left:778.815000px;}
@media print{
.v2{vertical-align:-9.477333pt;}
.v1{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.658667pt;}
.v4{vertical-align:7.968000pt;}
.v3{vertical-align:9.477333pt;}
.v6{vertical-align:14.805333pt;}
.vb{vertical-align:16.890667pt;}
.ve{vertical-align:21.114667pt;}
.v5{vertical-align:24.021333pt;}
.va{vertical-align:30.634667pt;}
.v7{vertical-align:38.826667pt;}
.vd{vertical-align:42.368000pt;}
.v9{vertical-align:82.037333pt;}
.vc{vertical-align:124.405333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.000942pt;}
.ls1c{letter-spacing:0.001404pt;}
.lsd{letter-spacing:0.001863pt;}
.ls3{letter-spacing:0.001933pt;}
.ls1e{letter-spacing:0.004269pt;}
.ls2c{letter-spacing:0.004399pt;}
.ls1a{letter-spacing:0.004813pt;}
.ls3a{letter-spacing:0.006993pt;}
.ls29{letter-spacing:0.007020pt;}
.ls14{letter-spacing:0.008557pt;}
.lsc{letter-spacing:0.011819pt;}
.ls18{letter-spacing:0.012966pt;}
.ls41{letter-spacing:0.023652pt;}
.ls38{letter-spacing:0.025270pt;}
.ls2a{letter-spacing:0.025644pt;}
.ls25{letter-spacing:0.028422pt;}
.ls46{letter-spacing:0.431947pt;}
.ls32{letter-spacing:0.778377pt;}
.ls42{letter-spacing:1.147694pt;}
.ls5{letter-spacing:2.094547pt;}
.ls7{letter-spacing:2.295398pt;}
.ls33{letter-spacing:2.653258pt;}
.ls3c{letter-spacing:3.258185pt;}
.ls43{letter-spacing:3.273054pt;}
.ls0{letter-spacing:3.305357pt;}
.ls23{letter-spacing:4.180083pt;}
.ls28{letter-spacing:4.712731pt;}
.ls10{letter-spacing:5.585459pt;}
.ls44{letter-spacing:9.696944pt;}
.ls2d{letter-spacing:11.795718pt;}
.lsf{letter-spacing:12.916374pt;}
.ls17{letter-spacing:13.876083pt;}
.ls21{letter-spacing:13.881416pt;}
.ls2e{letter-spacing:14.771215pt;}
.ls3f{letter-spacing:16.159477pt;}
.ls1b{letter-spacing:16.174559pt;}
.ls1d{letter-spacing:18.813258pt;}
.lse{letter-spacing:18.818591pt;}
.ls3d{letter-spacing:19.374562pt;}
.ls2f{letter-spacing:19.432743pt;}
.ls22{letter-spacing:19.490925pt;}
.lsb{letter-spacing:19.549107pt;}
.ls2{letter-spacing:20.031468pt;}
.ls1{letter-spacing:20.084602pt;}
.ls20{letter-spacing:20.340083pt;}
.ls6{letter-spacing:20.887290pt;}
.ls45{letter-spacing:21.236381pt;}
.ls3b{letter-spacing:22.050591pt;}
.ls11{letter-spacing:22.516382pt;}
.ls48{letter-spacing:22.749110pt;}
.ls34{letter-spacing:24.087293pt;}
.ls1f{letter-spacing:24.145475pt;}
.ls9{letter-spacing:24.960021pt;}
.ls8{letter-spacing:26.123658pt;}
.ls39{letter-spacing:26.562591pt;}
.ls47{letter-spacing:27.117258pt;}
.lsa{letter-spacing:29.090933pt;}
.ls13{letter-spacing:32.290936pt;}
.ls12{letter-spacing:32.349118pt;}
.ls16{letter-spacing:35.665484pt;}
.ls3e{letter-spacing:59.345504pt;}
.ls2b{letter-spacing:67.748305pt;}
.ls31{letter-spacing:86.153416pt;}
.ls40{letter-spacing:155.490836pt;}
.ls26{letter-spacing:157.905586pt;}
.ls27{letter-spacing:214.749270pt;}
.ls24{letter-spacing:222.662004pt;}
.ls35{letter-spacing:228.295723pt;}
.ls36{letter-spacing:367.726523pt;}
.ls37{letter-spacing:499.246465pt;}
.ls19{letter-spacing:710.284228pt;}
.ls15{letter-spacing:966.284442pt;}
.ws94{word-spacing:-42.007308pt;}
.ws54{word-spacing:-40.590295pt;}
.ws2f{word-spacing:-37.899668pt;}
.ws93{word-spacing:-34.792756pt;}
.wse{word-spacing:-34.611401pt;}
.ws64{word-spacing:-29.521250pt;}
.ws7d{word-spacing:-28.118362pt;}
.ws9c{word-spacing:-23.910333pt;}
.ws89{word-spacing:-21.783291pt;}
.ws75{word-spacing:-21.725109pt;}
.ws8a{word-spacing:-18.583288pt;}
.ws46{word-spacing:-16.162923pt;}
.ws19{word-spacing:-14.871285pt;}
.ws69{word-spacing:-14.760588pt;}
.ws61{word-spacing:-12.543875pt;}
.wsab{word-spacing:-8.692371pt;}
.wsa4{word-spacing:-3.521024pt;}
.ws56{word-spacing:-3.246548pt;}
.ws7e{word-spacing:-2.964870pt;}
.ws78{word-spacing:-2.955639pt;}
.wsc{word-spacing:-1.583389pt;}
.ws8b{word-spacing:-1.501092pt;}
.ws9e{word-spacing:-1.326547pt;}
.ws96{word-spacing:-1.303274pt;}
.ws84{word-spacing:-1.210183pt;}
.ws85{word-spacing:-1.152001pt;}
.wsa1{word-spacing:-0.628364pt;}
.ws70{word-spacing:-0.395637pt;}
.ws98{word-spacing:-0.221091pt;}
.wsa3{word-spacing:-0.058182pt;}
.ws5b{word-spacing:-0.046545pt;}
.ws23{word-spacing:0.000000pt;}
.ws66{word-spacing:0.011636pt;}
.ws88{word-spacing:0.302546pt;}
.ws7{word-spacing:0.541965pt;}
.ws90{word-spacing:0.709819pt;}
.ws40{word-spacing:0.791273pt;}
.ws3c{word-spacing:0.849455pt;}
.ws45{word-spacing:1.024001pt;}
.ws32{word-spacing:1.757092pt;}
.ws13{word-spacing:1.764044pt;}
.ws4a{word-spacing:2.048002pt;}
.ws87{word-spacing:2.106184pt;}
.ws49{word-spacing:2.362184pt;}
.ws29{word-spacing:2.571639pt;}
.ws1c{word-spacing:2.629820pt;}
.ws11{word-spacing:2.667320pt;}
.ws22{word-spacing:2.804366pt;}
.ws31{word-spacing:2.862548pt;}
.wsa{word-spacing:2.879856pt;}
.ws7b{word-spacing:2.920730pt;}
.ws4{word-spacing:2.932989pt;}
.ws60{word-spacing:2.978912pt;}
.ws10{word-spacing:2.986123pt;}
.ws1d{word-spacing:3.037093pt;}
.ws12{word-spacing:3.039257pt;}
.ws67{word-spacing:3.042798pt;}
.ws27{word-spacing:3.095275pt;}
.ws30{word-spacing:3.153457pt;}
.wsb{word-spacing:3.198659pt;}
.ws1e{word-spacing:3.211639pt;}
.ws2a{word-spacing:3.269821pt;}
.ws2e{word-spacing:3.328003pt;}
.ws7c{word-spacing:3.351276pt;}
.ws17{word-spacing:3.386185pt;}
.ws1{word-spacing:3.443098pt;}
.ws59{word-spacing:3.444367pt;}
.ws97{word-spacing:3.467639pt;}
.ws2d{word-spacing:3.502548pt;}
.ws3{word-spacing:3.506859pt;}
.ws43{word-spacing:3.560730pt;}
.wsd{word-spacing:3.623730pt;}
.ws2c{word-spacing:3.642185pt;}
.ws3d{word-spacing:3.700367pt;}
.ws55{word-spacing:3.758549pt;}
.ws44{word-spacing:3.933094pt;}
.ws5e{word-spacing:3.968003pt;}
.ws15{word-spacing:3.985067pt;}
.ws77{word-spacing:3.991276pt;}
.ws99{word-spacing:4.049458pt;}
.ws95{word-spacing:4.107640pt;}
.ws39{word-spacing:4.200731pt;}
.ws48{word-spacing:4.491640pt;}
.ws16{word-spacing:4.724368pt;}
.ws41{word-spacing:4.782067pt;}
.ws6a{word-spacing:4.805822pt;}
.ws34{word-spacing:5.015277pt;}
.ws47{word-spacing:5.154913pt;}
.ws51{word-spacing:5.248004pt;}
.ws86{word-spacing:5.306186pt;}
.ws9{word-spacing:5.440908pt;}
.ws0{word-spacing:5.738467pt;}
.ws33{word-spacing:5.794914pt;}
.ws8{word-spacing:5.865979pt;}
.ws4f{word-spacing:5.899641pt;}
.ws9b{word-spacing:5.957823pt;}
.ws50{word-spacing:6.027641pt;}
.ws58{word-spacing:6.120732pt;}
.ws1a{word-spacing:6.237096pt;}
.ws9a{word-spacing:6.248732pt;}
.ws74{word-spacing:6.269282pt;}
.ws68{word-spacing:6.269464pt;}
.ws65{word-spacing:6.269483pt;}
.wsa2{word-spacing:6.274616pt;}
.ws9d{word-spacing:6.539642pt;}
.ws3a{word-spacing:6.714187pt;}
.ws24{word-spacing:6.760733pt;}
.ws6b{word-spacing:6.818915pt;}
.ws57{word-spacing:7.074915pt;}
.ws92{word-spacing:7.109824pt;}
.wsa7{word-spacing:7.249461pt;}
.wsa0{word-spacing:7.284370pt;}
.ws18{word-spacing:7.342552pt;}
.wsaa{word-spacing:7.691643pt;}
.ws91{word-spacing:8.122189pt;}
.ws4d{word-spacing:8.215280pt;}
.ws21{word-spacing:8.564371pt;}
.ws1f{word-spacing:8.622553pt;}
.ws2b{word-spacing:8.680735pt;}
.ws25{word-spacing:8.738916pt;}
.ws4e{word-spacing:8.797098pt;}
.ws35{word-spacing:8.855280pt;}
.wsa8{word-spacing:8.878553pt;}
.ws5{word-spacing:9.309053pt;}
.ws37{word-spacing:9.320735pt;}
.ws6e{word-spacing:9.460372pt;}
.ws52{word-spacing:9.501282pt;}
.ws42{word-spacing:9.611644pt;}
.ws9f{word-spacing:9.623281pt;}
.ws53{word-spacing:9.856008pt;}
.ws4c{word-spacing:9.960736pt;}
.ws8f{word-spacing:10.042190pt;}
.ws38{word-spacing:10.146918pt;}
.ws26{word-spacing:10.426191pt;}
.wsa6{word-spacing:10.600736pt;}
.ws20{word-spacing:10.845100pt;}
.ws83{word-spacing:10.903282pt;}
.ws6{word-spacing:11.009337pt;}
.ws5f{word-spacing:11.194191pt;}
.ws4b{word-spacing:11.438555pt;}
.wsf{word-spacing:11.540676pt;}
.ws28{word-spacing:11.822555pt;}
.ws6d{word-spacing:11.880737pt;}
.ws1b{word-spacing:11.892374pt;}
.ws62{word-spacing:11.938919pt;}
.ws36{word-spacing:13.218920pt;}
.ws6c{word-spacing:13.649466pt;}
.ws3f{word-spacing:13.858921pt;}
.ws3e{word-spacing:15.918559pt;}
.wsa9{word-spacing:16.558559pt;}
.ws2{word-spacing:20.031468pt;}
.ws6f{word-spacing:22.434616pt;}
.ws3b{word-spacing:29.967701pt;}
.wsa5{word-spacing:39.598578pt;}
.ws71{word-spacing:47.604403pt;}
.ws7a{word-spacing:49.000052pt;}
.ws5c{word-spacing:54.434954pt;}
.ws5a{word-spacing:54.493136pt;}
.ws14{word-spacing:62.166867pt;}
.ws72{word-spacing:66.804419pt;}
.ws5d{word-spacing:70.318604pt;}
.ws76{word-spacing:83.502615pt;}
.ws79{word-spacing:87.762895pt;}
.ws73{word-spacing:104.971724pt;}
.ws8e{word-spacing:120.887045pt;}
.ws8d{word-spacing:276.997474pt;}
.ws7f{word-spacing:293.415839pt;}
.ws80{word-spacing:314.084913pt;}
.ws8c{word-spacing:391.660358pt;}
.ws82{word-spacing:399.683572pt;}
.ws81{word-spacing:412.010629pt;}
.ws63{word-spacing:899.875659pt;}
._4e{margin-left:-26.752151pt;}
._4b{margin-left:-7.192228pt;}
._1a{margin-left:-5.678717pt;}
._4{margin-left:-4.303843pt;}
._1{margin-left:-2.846279pt;}
._3{margin-left:-1.594016pt;}
._d{width:0.893594pt;}
._2{width:1.849071pt;}
._6{width:3.294300pt;}
._2e{width:15.129525pt;}
._1e{width:16.173558pt;}
._3c{width:17.950530pt;}
._9{width:18.873137pt;}
._1d{width:20.293501pt;}
._8{width:21.822305pt;}
._5{width:23.166366pt;}
._10{width:24.554988pt;}
._7{width:25.663658pt;}
._18{width:27.135855pt;}
._13{width:28.567297pt;}
._15{width:29.752425pt;}
._11{width:31.784852pt;}
._16{width:32.776932pt;}
._c{width:35.154596pt;}
._e{width:37.286460pt;}
._b{width:38.807305pt;}
._4f{width:40.706441pt;}
._f{width:42.396053pt;}
._4d{width:43.810946pt;}
._17{width:44.741855pt;}
._0{width:45.907733pt;}
._12{width:48.243902pt;}
._14{width:52.247316pt;}
._1c{width:56.856703pt;}
._1b{width:58.007321pt;}
._4c{width:59.569490pt;}
._21{width:63.767326pt;}
._3d{width:67.899240pt;}
._a{width:71.731200pt;}
._26{width:73.040309pt;}
._2d{width:74.344455pt;}
._36{width:79.003374pt;}
._19{width:86.077200pt;}
._34{width:89.424298pt;}
._2f{width:96.225433pt;}
._43{width:101.857622pt;}
._3f{width:118.169719pt;}
._2b{width:133.411020pt;}
._38{width:134.481817pt;}
._2a{width:157.707935pt;}
._33{width:160.032521pt;}
._46{width:161.536637pt;}
._32{width:164.396183pt;}
._22{width:166.655972pt;}
._35{width:168.108868pt;}
._30{width:171.409854pt;}
._3b{width:176.351303pt;}
._44{width:177.839052pt;}
._47{width:187.731633pt;}
._39{width:192.344597pt;}
._29{width:202.414714pt;}
._48{width:211.738459pt;}
._2c{width:219.264350pt;}
._31{width:222.146011pt;}
._41{width:228.688162pt;}
._3a{width:244.522054pt;}
._25{width:259.665671pt;}
._27{width:279.680233pt;}
._45{width:282.406501pt;}
._1f{width:312.145715pt;}
._24{width:341.876649pt;}
._20{width:355.979766pt;}
._42{width:365.667270pt;}
._37{width:384.848596pt;}
._40{width:387.847220pt;}
._4a{width:412.425073pt;}
._23{width:414.080345pt;}
._3e{width:440.436303pt;}
._49{width:483.943258pt;}
._28{width:686.581103pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.yce{bottom:22.609333pt;}
.y28{bottom:56.149333pt;}
.y4f{bottom:107.661333pt;}
.y92{bottom:112.116000pt;}
.y27{bottom:113.880000pt;}
.y127{bottom:117.302667pt;}
.yb1{bottom:126.138667pt;}
.y26{bottom:132.849333pt;}
.y4e{bottom:135.516000pt;}
.y126{bottom:139.181333pt;}
.y91{bottom:139.972000pt;}
.yb0{bottom:145.108000pt;}
.y107{bottom:150.042667pt;}
.y25{bottom:151.818667pt;}
.y71{bottom:151.845333pt;}
.y143{bottom:161.073333pt;}
.y4d{bottom:163.372000pt;}
.y125{bottom:167.544000pt;}
.y90{bottom:167.828000pt;}
.y106{bottom:169.012000pt;}
.y24{bottom:170.786667pt;}
.y70{bottom:170.814667pt;}
.yaf{bottom:179.420000pt;}
.y142{bottom:180.042667pt;}
.y105{bottom:187.981333pt;}
.y8f{bottom:189.705333pt;}
.y23{bottom:189.756000pt;}
.y4c{bottom:191.228000pt;}
.y6f{bottom:198.669333pt;}
.y124{bottom:207.424000pt;}
.y8e{bottom:208.674667pt;}
.y22{bottom:208.725333pt;}
.y4b{bottom:213.105333pt;}
.yae{bottom:213.730667pt;}
.y104{bottom:216.344000pt;}
.y6e{bottom:217.638667pt;}
.y141{bottom:219.365333pt;}
.y123{bottom:226.393333pt;}
.y21{bottom:227.693333pt;}
.ye9{bottom:229.841333pt;}
.y140{bottom:238.333333pt;}
.y4a{bottom:241.468000pt;}
.yad{bottom:242.093333pt;}
.y122{bottom:245.362667pt;}
.y6d{bottom:245.494667pt;}
.y20{bottom:246.662667pt;}
.y8d{bottom:247.997333pt;}
.y103{bottom:256.224000pt;}
.ye8{bottom:258.204000pt;}
.y6c{bottom:264.462667pt;}
.y1f{bottom:265.632000pt;}
.y8c{bottom:266.965333pt;}
.y13f{bottom:277.656000pt;}
.y49{bottom:281.349333pt;}
.yac{bottom:281.973333pt;}
.y102{bottom:284.080000pt;}
.y8b{bottom:285.934667pt;}
.y121{bottom:289.748000pt;}
.y6b{bottom:292.318667pt;}
.y1e{bottom:293.994667pt;}
.y13e{bottom:296.625333pt;}
.y48{bottom:300.317333pt;}
.y11f{bottom:304.728000pt;}
.ye7{bottom:306.774667pt;}
.yab{bottom:309.829333pt;}
.y6a{bottom:311.288000pt;}
.y101{bottom:311.936000pt;}
.y120{bottom:318.254667pt;}
.y11d{bottom:318.336000pt;}
.y47{bottom:319.286667pt;}
.y8a{bottom:320.245333pt;}
.ye6{bottom:323.510667pt;}
.y13d{bottom:324.988000pt;}
.y1d{bottom:327.925333pt;}
.y11e{bottom:328.418667pt;}
.y69{bottom:333.165333pt;}
.y100{bottom:333.813333pt;}
.yaa{bottom:337.685333pt;}
.y46{bottom:338.256000pt;}
.ye5{bottom:340.248000pt;}
.ycc{bottom:342.348000pt;}
.yff{bottom:352.782667pt;}
.y89{bottom:354.557333pt;}
.ye4{bottom:356.985333pt;}
.y45{bottom:357.224000pt;}
.ya9{bottom:359.562667pt;}
.ycb{bottom:361.316000pt;}
.y68{bottom:361.528000pt;}
.y13c{bottom:364.868000pt;}
.y11c{bottom:365.672000pt;}
.ye3{bottom:373.722667pt;}
.y1c{bottom:374.950667pt;}
.ya8{bottom:378.532000pt;}
.yca{bottom:380.285333pt;}
.yfe{bottom:381.145333pt;}
.y88{bottom:382.920000pt;}
.y13b{bottom:383.837333pt;}
.y44{bottom:385.588000pt;}
.ye2{bottom:390.460000pt;}
.y1b{bottom:391.688000pt;}
.y11b{bottom:394.036000pt;}
.yc9{bottom:399.254667pt;}
.y67{bottom:401.408000pt;}
.y13a{bottom:402.806667pt;}
.ye1{bottom:407.197333pt;}
.y1a{bottom:408.425333pt;}
.ya7{bottom:412.844000pt;}
.y66{bottom:420.377333pt;}
.yfd{bottom:421.025333pt;}
.y87{bottom:422.800000pt;}
.ye0{bottom:423.934667pt;}
.y19{bottom:425.162667pt;}
.y43{bottom:425.468000pt;}
.yc8{bottom:425.526667pt;}
.y139{bottom:431.169333pt;}
.y11a{bottom:433.916000pt;}
.y65{bottom:439.346667pt;}
.y86{bottom:441.769333pt;}
.y18{bottom:441.900000pt;}
.y42{bottom:444.436000pt;}
.ya6{bottom:447.154667pt;}
.ydf{bottom:447.974667pt;}
.yc7{bottom:448.194667pt;}
.yfc{bottom:448.881333pt;}
.y17{bottom:458.637333pt;}
.y41{bottom:463.405333pt;}
.y85{bottom:463.648000pt;}
.y138{bottom:465.100000pt;}
.y119{bottom:467.288000pt;}
.yde{bottom:469.082667pt;}
.y64{bottom:470.270667pt;}
.y16{bottom:475.374667pt;}
.ya5{bottom:475.517333pt;}
.yfb{bottom:476.736000pt;}
.y40{bottom:482.374667pt;}
.y63{bottom:489.240000pt;}
.y84{bottom:491.502667pt;}
.yc6{bottom:491.676000pt;}
.y15{bottom:492.112000pt;}
.yfa{bottom:498.614667pt;}
.y156{bottom:499.788000pt;}
.y62{bottom:508.208000pt;}
.y14{bottom:508.849333pt;}
.y3f{bottom:510.230667pt;}
.y137{bottom:512.125333pt;}
.ydd{bottom:513.372000pt;}
.ya4{bottom:515.398667pt;}
.yf9{bottom:517.584000pt;}
.y155{bottom:518.757333pt;}
.y83{bottom:519.358667pt;}
.yc5{bottom:520.040000pt;}
.y118{bottom:523.004000pt;}
.y13{bottom:525.586667pt;}
.y61{bottom:527.177333pt;}
.y3e{bottom:529.198667pt;}
.ydc{bottom:532.340000pt;}
.ya3{bottom:534.366667pt;}
.y154{bottom:537.726667pt;}
.y117{bottom:539.741333pt;}
.y82{bottom:541.236000pt;}
.y12{bottom:542.324000pt;}
.yf8{bottom:545.946667pt;}
.y3d{bottom:548.168000pt;}
.y136{bottom:551.446667pt;}
.y116{bottom:556.478667pt;}
.y60{bottom:558.101333pt;}
.y11{bottom:559.061333pt;}
.yc4{bottom:559.920000pt;}
.ydb{bottom:560.702667pt;}
.ya2{bottom:562.401333pt;}
.y3c{bottom:567.137333pt;}
.y153{bottom:568.650667pt;}
.y81{bottom:569.600000pt;}
.y115{bottom:573.214667pt;}
.y10{bottom:575.797333pt;}
.ya1{bottom:581.370667pt;}
.y5f{bottom:582.636000pt;}
.yf7{bottom:585.826667pt;}
.y152{bottom:587.618667pt;}
.y114{bottom:589.952000pt;}
.y135{bottom:590.769333pt;}
.yf{bottom:592.534667pt;}
.yc3{bottom:594.230667pt;}
.y3b{bottom:594.992000pt;}
.ya0{bottom:600.340000pt;}
.yda{bottom:600.584000pt;}
.yf6{bottom:604.796000pt;}
.y5e{bottom:607.170667pt;}
.ye{bottom:609.272000pt;}
.y80{bottom:609.480000pt;}
.y134{bottom:609.738667pt;}
.y3a{bottom:613.961333pt;}
.y113{bottom:613.993333pt;}
.y151{bottom:618.542667pt;}
.yd9{bottom:619.552000pt;}
.yd{bottom:626.009333pt;}
.yc2{bottom:628.542667pt;}
.y9f{bottom:628.702667pt;}
.y5d{bottom:631.705333pt;}
.y39{bottom:632.930667pt;}
.y112{bottom:635.100000pt;}
.y7f{bottom:637.334667pt;}
.y150{bottom:637.512000pt;}
.y133{bottom:638.101333pt;}
.yf5{bottom:638.168000pt;}
.yc{bottom:642.746667pt;}
.y38{bottom:651.898667pt;}
.yd8{bottom:652.925333pt;}
.yc1{bottom:656.398667pt;}
.y7e{bottom:659.213333pt;}
.yb{bottom:659.484000pt;}
.y5c{bottom:659.561333pt;}
.y14f{bottom:668.436000pt;}
.y9e{bottom:668.582667pt;}
.y37{bottom:673.777333pt;}
.ya{bottom:676.221333pt;}
.y132{bottom:677.981333pt;}
.y5b{bottom:678.529333pt;}
.y111{bottom:678.581333pt;}
.yc0{bottom:684.253333pt;}
.y14e{bottom:687.405333pt;}
.y9d{bottom:687.552000pt;}
.y160{bottom:689.382667pt;}
.yf4{bottom:693.882667pt;}
.y5a{bottom:697.498667pt;}
.y110{bottom:697.550667pt;}
.y7d{bottom:698.536000pt;}
.y9{bottom:701.261333pt;}
.y36{bottom:702.140000pt;}
.yd7{bottom:702.778667pt;}
.ybf{bottom:706.132000pt;}
.y9c{bottom:706.521333pt;}
.yf3{bottom:710.620000pt;}
.y15f{bottom:711.261333pt;}
.y10f{bottom:716.518667pt;}
.y131{bottom:717.304000pt;}
.y14d{bottom:718.329333pt;}
.yd6{bottom:721.748000pt;}
.ybe{bottom:725.100000pt;}
.y59{bottom:725.861333pt;}
.y7c{bottom:726.390667pt;}
.yf2{bottom:727.357333pt;}
.y15e{bottom:730.230667pt;}
.y130{bottom:736.273333pt;}
.y14c{bottom:737.298667pt;}
.y9b{bottom:739.893333pt;}
.yd5{bottom:740.716000pt;}
.y35{bottom:742.020000pt;}
.y10e{bottom:744.881333pt;}
.yf1{bottom:751.398667pt;}
.ybd{bottom:753.464000pt;}
.y7b{bottom:754.246667pt;}
.y8{bottom:755.757333pt;}
.y14b{bottom:756.266667pt;}
.y15d{bottom:758.085333pt;}
.y34{bottom:760.989333pt;}
.y58{bottom:765.742667pt;}
.yf0{bottom:772.505333pt;}
.y12f{bottom:775.594667pt;}
.y7a{bottom:776.125333pt;}
.yd0{bottom:777.817333pt;}
.y15c{bottom:779.964000pt;}
.y57{bottom:784.710667pt;}
.y10d{bottom:784.762667pt;}
.y7{bottom:788.558667pt;}
.y14a{bottom:789.640000pt;}
.y33{bottom:791.913333pt;}
.y12e{bottom:794.564000pt;}
.y79{bottom:795.093333pt;}
.ybc{bottom:796.172000pt;}
.y9a{bottom:796.278667pt;}
.ycf{bottom:797.396000pt;}
.y10c{bottom:803.730667pt;}
.y6{bottom:808.085333pt;}
.y32{bottom:810.882667pt;}
.ybb{bottom:815.141333pt;}
.y99{bottom:815.246667pt;}
.ycd{bottom:816.253333pt;}
.y56{bottom:818.084000pt;}
.y15b{bottom:819.286667pt;}
.y5{bottom:827.612000pt;}
.y31{bottom:829.850667pt;}
.yef{bottom:832.734667pt;}
.y12d{bottom:833.886667pt;}
.yba{bottom:834.109333pt;}
.y98{bottom:834.216000pt;}
.y10b{bottom:834.341333pt;}
.y78{bottom:834.416000pt;}
.y149{bottom:836.665333pt;}
.y10a{bottom:838.042667pt;}
.y30{bottom:848.820000pt;}
.y15a{bottom:850.092000pt;}
.yee{bottom:851.704000pt;}
.y12c{bottom:852.856000pt;}
.y97{bottom:853.185333pt;}
.y77{bottom:853.385333pt;}
.y148{bottom:855.634667pt;}
.y159{bottom:860.684000pt;}
.y55{bottom:865.109333pt;}
.y2f{bottom:867.789333pt;}
.y4{bottom:868.957333pt;}
.yed{bottom:870.672000pt;}
.y96{bottom:872.153333pt;}
.y76{bottom:872.353333pt;}
.y147{bottom:874.602667pt;}
.yb8{bottom:875.377333pt;}
.yb7{bottom:875.378667pt;}
.y12b{bottom:881.218667pt;}
.y2e{bottom:886.757333pt;}
.y54{bottom:886.986667pt;}
.y109{bottom:891.322667pt;}
.y3{bottom:893.498667pt;}
.yb6{bottom:894.346667pt;}
.y95{bottom:898.425333pt;}
.y75{bottom:900.717333pt;}
.y158{bottom:901.274667pt;}
.yb9{bottom:905.680000pt;}
.y2d{bottom:905.726667pt;}
.y146{bottom:907.976000pt;}
.yd4{bottom:909.112000pt;}
.yb5{bottom:913.316000pt;}
.y53{bottom:914.842667pt;}
.y12a{bottom:915.149333pt;}
.y108{bottom:919.685333pt;}
.y157{bottom:920.244000pt;}
.y94{bottom:921.094667pt;}
.y2{bottom:921.446667pt;}
.y2c{bottom:924.696000pt;}
.yd3{bottom:927.516000pt;}
.y52{bottom:933.812000pt;}
.y74{bottom:940.597333pt;}
.yd2{bottom:945.112000pt;}
.y1{bottom:952.132000pt;}
.y2b{bottom:953.058667pt;}
.y145{bottom:955.001333pt;}
.yea{bottom:955.069333pt;}
.y73{bottom:959.565333pt;}
.y51{bottom:961.666667pt;}
.y129{bottom:962.174667pt;}
.yd1{bottom:962.708000pt;}
.y93{bottom:964.576000pt;}
.y144{bottom:973.969333pt;}
.y72{bottom:978.534667pt;}
.yeb{bottom:980.605333pt;}
.y50{bottom:983.545333pt;}
.y128{bottom:984.052000pt;}
.yb4{bottom:992.070667pt;}
.y2a{bottom:992.938667pt;}
.yb3{bottom:995.746667pt;}
.yb2{bottom:1011.040000pt;}
.yec{bottom:1011.570667pt;}
.y29{bottom:1011.908000pt;}
.h8{height:25.890931pt;}
.ha{height:31.880400pt;}
.h4{height:39.850400pt;}
.hf{height:41.658217pt;}
.h7{height:43.636400pt;}
.h3{height:45.525402pt;}
.h6{height:47.820800pt;}
.hd{height:48.969733pt;}
.h12{height:52.995067pt;}
.he{height:53.113733pt;}
.hb{height:55.901733pt;}
.h5{height:57.384800pt;}
.h2{height:68.861600pt;}
.hc{height:70.707067pt;}
.h10{height:84.364608pt;}
.h11{height:126.732608pt;}
.h9{height:166.984600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:433.630640pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:94.840000pt;}
.x14{left:96.000000pt;}
.x3c{left:103.970667pt;}
.x26{left:110.504000pt;}
.x19{left:114.585333pt;}
.x83{left:117.689333pt;}
.x17{left:118.581333pt;}
.x1{left:121.184000pt;}
.x13{left:130.809333pt;}
.xb{left:132.364000pt;}
.x3{left:136.769333pt;}
.x30{left:144.848000pt;}
.x49{left:148.408000pt;}
.x43{left:149.417333pt;}
.x31{left:150.470667pt;}
.xa{left:152.289333pt;}
.x27{left:156.472000pt;}
.x32{left:159.936000pt;}
.x73{left:163.208000pt;}
.x35{left:164.504000pt;}
.x44{left:167.542667pt;}
.x36{left:171.777333pt;}
.x2d{left:174.300000pt;}
.x5c{left:176.112000pt;}
.x4{left:182.201333pt;}
.x64{left:185.532000pt;}
.x65{left:192.366667pt;}
.x5d{left:193.576000pt;}
.x63{left:195.698667pt;}
.x52{left:197.568000pt;}
.x68{left:198.650667pt;}
.x77{left:203.098667pt;}
.x2e{left:206.937333pt;}
.x4a{left:219.045333pt;}
.x5b{left:223.658667pt;}
.x4b{left:230.925333pt;}
.xe{left:233.284000pt;}
.x67{left:236.184000pt;}
.x62{left:237.232000pt;}
.x53{left:238.301333pt;}
.xf{left:242.413333pt;}
.x28{left:243.549333pt;}
.x6d{left:244.478667pt;}
.x5f{left:252.020000pt;}
.x76{left:254.173333pt;}
.x60{left:258.322667pt;}
.x29{left:261.676000pt;}
.x4c{left:263.284000pt;}
.x74{left:265.348000pt;}
.x88{left:267.004000pt;}
.x61{left:268.949333pt;}
.x3b{left:272.680000pt;}
.x5e{left:273.961333pt;}
.x1a{left:276.082667pt;}
.xc{left:277.092000pt;}
.x7c{left:278.886667pt;}
.xd{left:283.734667pt;}
.x2{left:285.184000pt;}
.x48{left:290.454667pt;}
.x7d{left:292.160000pt;}
.x75{left:302.978667pt;}
.x89{left:306.333333pt;}
.x1b{left:311.986667pt;}
.x8a{left:313.750667pt;}
.x66{left:314.672000pt;}
.x25{left:317.086667pt;}
.x1c{left:324.060000pt;}
.x6{left:327.314667pt;}
.x45{left:331.404000pt;}
.x5{left:334.821333pt;}
.x56{left:340.285333pt;}
.x4f{left:343.860000pt;}
.x8{left:345.128000pt;}
.x42{left:347.336000pt;}
.x2f{left:350.566667pt;}
.x12{left:353.232000pt;}
.x3d{left:354.457333pt;}
.x1d{left:356.684000pt;}
.x51{left:359.792000pt;}
.x3e{left:363.610667pt;}
.x50{left:365.216000pt;}
.x9{left:367.832000pt;}
.x7{left:370.044000pt;}
.x87{left:378.985333pt;}
.x10{left:382.397333pt;}
.x82{left:389.577333pt;}
.x11{left:391.528000pt;}
.x18{left:393.214667pt;}
.x84{left:394.801333pt;}
.x85{left:404.798667pt;}
.x3f{left:406.666667pt;}
.x79{left:427.786667pt;}
.x7a{left:437.784000pt;}
.x37{left:438.796000pt;}
.x33{left:448.572000pt;}
.x38{left:453.946667pt;}
.x34{left:462.900000pt;}
.x78{left:464.956000pt;}
.x54{left:466.072000pt;}
.x57{left:495.329333pt;}
.x55{left:505.481333pt;}
.x6b{left:514.110667pt;}
.x1e{left:529.018667pt;}
.x6c{left:531.424000pt;}
.x4d{left:533.478667pt;}
.x1f{left:536.290667pt;}
.x15{left:544.857333pt;}
.x16{left:552.129333pt;}
.x20{left:559.232000pt;}
.x86{left:564.573333pt;}
.x21{left:569.229333pt;}
.x24{left:570.665333pt;}
.x69{left:577.601333pt;}
.x58{left:579.493333pt;}
.x22{left:581.280000pt;}
.x4e{left:587.425333pt;}
.x6a{left:592.956000pt;}
.x6e{left:596.934667pt;}
.x2b{left:600.804000pt;}
.x23{left:603.450667pt;}
.x6f{left:606.930667pt;}
.x59{left:615.392000pt;}
.x2c{left:619.540000pt;}
.x46{left:626.625333pt;}
.x7e{left:628.385333pt;}
.x70{left:631.184000pt;}
.x81{left:637.217333pt;}
.x5a{left:642.712000pt;}
.x80{left:643.984000pt;}
.x47{left:650.065333pt;}
.x71{left:664.797333pt;}
.x39{left:666.257333pt;}
.x72{left:668.837333pt;}
.x7f{left:671.081333pt;}
.x7b{left:682.481333pt;}
.x40{left:685.008000pt;}
.x3a{left:687.728000pt;}
.x41{left:692.280000pt;}
}




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