
    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_27bb1701c6366e6ef735742e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_54f0590f0e47e34ec87d7ebc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_4adbe614ed2cd99e9fbe2288.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_a37a60bc166603d3b19d9617.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_ee9124fa742a2ce482bf100c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_ce67cfc7099d02c670695645.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_6351c46222d6550bd1fd5074.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.719238;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_5226fb337107631d3a03cb73.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.678711;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_eaa7f597f112f45fc9462156.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.075000;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_77902be127e4d3042d45b439.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.970000;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_a38b40150db6cd0cb637d41b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.276000;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_03efb0204e142530e0c9261a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958496;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_f45ed0c088f9785830dc2e8e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958496;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_54f0590f0e47e34ec87d7ebc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958496;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_4adbe614ed2cd99e9fbe2288.woff2')format("woff");}.fff{font-family:fff;line-height:0.958496;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_44633eb99c7b2dcf42f4da2a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958496;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_3aa4100cf2cc534a18fc3e50.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.800500;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_a8ca0d2f5cc6fdde739b4ea3.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_ec17e5ae9eff3ab651f68d6b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958496;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_a59ee486e4ad3fe7c07bb7f2.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.958496;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_7a7eff334f04b61450297a18.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958496;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_212ddef3a6761d3884c2afd8.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.958496;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_a59ee486e4ad3fe7c07bb7f2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.958496;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_7a7eff334f04b61450297a18.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.958496;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:ff19;src:url('chunks/assets/font_212ddef3a6761d3884c2afd8.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.958496;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:ff1a;src:url('chunks/assets/font_8b33eb323770442faf48741e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_a59ee486e4ad3fe7c07bb7f2.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.958496;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:ff1c;src:url('chunks/assets/font_7a7eff334f04b61450297a18.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.958496;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:ff1d;src:url('chunks/assets/font_212ddef3a6761d3884c2afd8.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.958496;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:ff1e;src:url('chunks/assets/font_61708f95ab376673348d8320.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.958496;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:ff1f;src:url('chunks/assets/font_a59ee486e4ad3fe7c07bb7f2.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.958496;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:ff20;src:url('chunks/assets/font_7a7eff334f04b61450297a18.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.958496;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:ff21;src:url('chunks/assets/font_b20ddcd77cab52243af8e5b0.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.958496;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:ff22;src:url('chunks/assets/font_8a3bfb7c31acd1a0567e9f4d.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.958496;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:ff23;src:url('chunks/assets/font_48651c6b9d8529d3222a8ff4.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.958496;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:ff24;src:url('chunks/assets/font_198687d311ac0aeebe2ae249.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.719238;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:ff25;src:url('chunks/assets/font_7089d799e76da164c5a3c081.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.970000;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:ff26;src:url('chunks/assets/font_927df3df20dd8e04dd556886.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.075000;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:ff27;src:url('chunks/assets/font_201dd9d648da27ced5722683.woff2')format("woff");}.ff27{font-family:ff27;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;}
.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);}
.v3{vertical-align:-18.360000px;}
.v4{vertical-align:-17.340000px;}
.v5{vertical-align:-10.806000px;}
.v6{vertical-align:-8.400000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.234000px;}
.v1{vertical-align:20.400000px;}
.ls8a{letter-spacing:-2.880000px;}
.ls63{letter-spacing:-2.772000px;}
.ls23{letter-spacing:-1.728000px;}
.ls24{letter-spacing:-1.512000px;}
.ls89{letter-spacing:-1.485000px;}
.ls60{letter-spacing:-1.404000px;}
.ls88{letter-spacing:-1.395000px;}
.ls7c{letter-spacing:-1.305000px;}
.ls8c{letter-spacing:-1.260000px;}
.ls72{letter-spacing:-1.242000px;}
.ls75{letter-spacing:-1.176000px;}
.ls91{letter-spacing:-1.140000px;}
.ls62{letter-spacing:-1.134000px;}
.ls8b{letter-spacing:-1.125000px;}
.ls6f{letter-spacing:-1.080000px;}
.ls56{letter-spacing:-1.026000px;}
.ls84{letter-spacing:-0.945000px;}
.ls67{letter-spacing:-0.924000px;}
.ls55{letter-spacing:-0.918000px;}
.ls7d{letter-spacing:-0.900000px;}
.ls5e{letter-spacing:-0.864000px;}
.ls71{letter-spacing:-0.756000px;}
.ls7e{letter-spacing:-0.720000px;}
.ls8f{letter-spacing:-0.630000px;}
.ls64{letter-spacing:-0.546000px;}
.ls30{letter-spacing:-0.540000px;}
.ls87{letter-spacing:-0.495000px;}
.ls2f{letter-spacing:-0.486000px;}
.ls86{letter-spacing:-0.450000px;}
.ls1d{letter-spacing:-0.432000px;}
.ls59{letter-spacing:-0.420000px;}
.ls5a{letter-spacing:-0.378000px;}
.ls68{letter-spacing:-0.336000px;}
.ls32{letter-spacing:-0.324000px;}
.ls52{letter-spacing:-0.315900px;}
.ls81{letter-spacing:-0.315000px;}
.ls2d{letter-spacing:-0.270000px;}
.ls4c{letter-spacing:-0.245700px;}
.ls7f{letter-spacing:-0.225000px;}
.ls61{letter-spacing:-0.216000px;}
.ls58{letter-spacing:-0.210600px;}
.ls65{letter-spacing:-0.210000px;}
.ls8d{letter-spacing:-0.180000px;}
.ls51{letter-spacing:-0.175500px;}
.ls74{letter-spacing:-0.168000px;}
.ls2c{letter-spacing:-0.162000px;}
.ls53{letter-spacing:-0.140400px;}
.ls90{letter-spacing:-0.135000px;}
.ls2e{letter-spacing:-0.108000px;}
.ls35{letter-spacing:-0.105300px;}
.ls83{letter-spacing:-0.090000px;}
.ls54{letter-spacing:-0.060000px;}
.ls1e{letter-spacing:-0.054000px;}
.ls80{letter-spacing:-0.045000px;}
.ls22{letter-spacing:-0.035100px;}
.ls1c{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.013200px;}
.ls13{letter-spacing:0.017850px;}
.ls15{letter-spacing:0.018450px;}
.ls4{letter-spacing:0.022200px;}
.ls2{letter-spacing:0.022800px;}
.ls6e{letter-spacing:0.034200px;}
.ls7b{letter-spacing:0.045000px;}
.ls14{letter-spacing:0.051000px;}
.ls21{letter-spacing:0.054000px;}
.lsb{letter-spacing:0.070200px;}
.ls8e{letter-spacing:0.085500px;}
.ls78{letter-spacing:0.090000px;}
.ls6d{letter-spacing:0.091800px;}
.ls12{letter-spacing:0.092850px;}
.ls44{letter-spacing:0.096600px;}
.ls6{letter-spacing:0.105300px;}
.lsa{letter-spacing:0.108000px;}
.ls5b{letter-spacing:0.120000px;}
.ls79{letter-spacing:0.135000px;}
.ls4e{letter-spacing:0.140400px;}
.ls11{letter-spacing:0.153000px;}
.ls49{letter-spacing:0.159000px;}
.ls9{letter-spacing:0.162000px;}
.ls77{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.198600px;}
.ls4a{letter-spacing:0.210600px;}
.ls29{letter-spacing:0.216000px;}
.ls4b{letter-spacing:0.223200px;}
.ls45{letter-spacing:0.229200px;}
.ls57{letter-spacing:0.240000px;}
.ls5f{letter-spacing:0.245700px;}
.ls66{letter-spacing:0.252000px;}
.ls47{letter-spacing:0.252600px;}
.ls1f{letter-spacing:0.270000px;}
.ls48{letter-spacing:0.272400px;}
.ls46{letter-spacing:0.280800px;}
.ls76{letter-spacing:0.294000px;}
.ls3d{letter-spacing:0.298350px;}
.ls39{letter-spacing:0.315000px;}
.ls41{letter-spacing:0.315900px;}
.ls42{letter-spacing:0.318300px;}
.ls5c{letter-spacing:0.318600px;}
.lsd{letter-spacing:0.324000px;}
.ls38{letter-spacing:0.351000px;}
.ls4f{letter-spacing:0.360000px;}
.ls6b{letter-spacing:0.368550px;}
.ls2a{letter-spacing:0.378000px;}
.ls43{letter-spacing:0.394200px;}
.ls40{letter-spacing:0.399600px;}
.ls18{letter-spacing:0.404850px;}
.ls85{letter-spacing:0.405000px;}
.ls3f{letter-spacing:0.420000px;}
.ls7{letter-spacing:0.421200px;}
.ls20{letter-spacing:0.432000px;}
.ls3c{letter-spacing:0.442800px;}
.ls7a{letter-spacing:0.450000px;}
.ls4d{letter-spacing:0.456300px;}
.lse{letter-spacing:0.486000px;}
.ls1a{letter-spacing:0.491250px;}
.ls3b{letter-spacing:0.491400px;}
.ls82{letter-spacing:0.495000px;}
.ls6c{letter-spacing:0.502200px;}
.ls50{letter-spacing:0.526500px;}
.ls28{letter-spacing:0.540000px;}
.ls17{letter-spacing:0.567450px;}
.ls31{letter-spacing:0.594000px;}
.lsc{letter-spacing:0.637200px;}
.ls8{letter-spacing:0.648000px;}
.ls25{letter-spacing:0.663000px;}
.ls3e{letter-spacing:0.675600px;}
.lsf{letter-spacing:0.677250px;}
.ls27{letter-spacing:0.702000px;}
.ls3a{letter-spacing:0.756000px;}
.ls19{letter-spacing:0.765000px;}
.ls2b{letter-spacing:0.810000px;}
.ls34{letter-spacing:0.864000px;}
.ls16{letter-spacing:0.867000px;}
.ls36{letter-spacing:0.900000px;}
.ls37{letter-spacing:0.918000px;}
.ls1b{letter-spacing:0.960000px;}
.ls70{letter-spacing:0.972000px;}
.ls10{letter-spacing:1.071000px;}
.ls33{letter-spacing:1.080000px;}
.ls6a{letter-spacing:1.134000px;}
.ls69{letter-spacing:1.458000px;}
.ls73{letter-spacing:2.052000px;}
.ls0{letter-spacing:2.592000px;}
.ls26{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls5d{letter-spacing:14.742000px;}
.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;}
}
.ws5{word-spacing:-54.000000px;}
.ws2{word-spacing:-15.067500px;}
.ws80{word-spacing:-13.824000px;}
.ws4b{word-spacing:-13.596000px;}
.ws82{word-spacing:-12.960000px;}
.ws7f{word-spacing:-12.906000px;}
.ws64{word-spacing:-12.852000px;}
.ws7d{word-spacing:-12.744000px;}
.ws60{word-spacing:-12.636000px;}
.wsf{word-spacing:-12.474000px;}
.ws10{word-spacing:-12.366000px;}
.wscb{word-spacing:-12.360000px;}
.wsc{word-spacing:-12.312000px;}
.ws9{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws83{word-spacing:-12.150000px;}
.wsc5{word-spacing:-12.096000px;}
.ws7b{word-spacing:-11.988000px;}
.ws7c{word-spacing:-11.610000px;}
.ws61{word-spacing:-11.502000px;}
.ws66{word-spacing:-11.448000px;}
.ws9a{word-spacing:-11.340000px;}
.ws7a{word-spacing:-11.286000px;}
.ws65{word-spacing:-11.232000px;}
.wsca{word-spacing:-11.220000px;}
.ws4{word-spacing:-11.124000px;}
.ws63{word-spacing:-10.962000px;}
.wsd{word-spacing:-10.854000px;}
.wsc3{word-spacing:-10.665000px;}
.wsb{word-spacing:-10.638000px;}
.ws9e{word-spacing:-10.440000px;}
.ws9d{word-spacing:-10.305000px;}
.wsa8{word-spacing:-10.260000px;}
.wsa3{word-spacing:-10.215000px;}
.ws9f{word-spacing:-10.125000px;}
.wsa4{word-spacing:-10.080000px;}
.ws56{word-spacing:-10.044000px;}
.wsa1{word-spacing:-10.035000px;}
.ws25{word-spacing:-9.990000px;}
.wscc{word-spacing:-9.984000px;}
.wsa0{word-spacing:-9.855000px;}
.wsc4{word-spacing:-9.810000px;}
.wsa2{word-spacing:-9.585000px;}
.ws9c{word-spacing:-9.405000px;}
.wsa6{word-spacing:-9.360000px;}
.wsc2{word-spacing:-9.225000px;}
.ws59{word-spacing:-9.180000px;}
.wsa9{word-spacing:-9.045000px;}
.ws9b{word-spacing:-9.000000px;}
.wsa5{word-spacing:-8.910000px;}
.ws6d{word-spacing:-8.904000px;}
.wsa7{word-spacing:-8.820000px;}
.ws6f{word-spacing:-8.778000px;}
.ws45{word-spacing:-8.494200px;}
.ws43{word-spacing:-8.459100px;}
.ws41{word-spacing:-8.424000px;}
.ws8{word-spacing:-8.388900px;}
.ws81{word-spacing:-8.336250px;}
.wsb1{word-spacing:-8.325000px;}
.ws7e{word-spacing:-8.318700px;}
.ws46{word-spacing:-8.283600px;}
.ws44{word-spacing:-8.266050px;}
.ws62{word-spacing:-8.213400px;}
.ws6b{word-spacing:-8.190000px;}
.ws42{word-spacing:-8.108100px;}
.ws6{word-spacing:-8.073000px;}
.wse{word-spacing:-8.037900px;}
.ws3{word-spacing:-8.034000px;}
.ws7{word-spacing:-7.967700px;}
.wsa{word-spacing:-7.932600px;}
.ws32{word-spacing:-7.862400px;}
.ws49{word-spacing:-7.827300px;}
.ws15{word-spacing:-7.800000px;}
.ws47{word-spacing:-7.792200px;}
.ws79{word-spacing:-7.770000px;}
.ws4c{word-spacing:-7.757100px;}
.ws40{word-spacing:-7.722000px;}
.ws48{word-spacing:-7.651800px;}
.ws11{word-spacing:-6.630000px;}
.ws16{word-spacing:-4.440000px;}
.wscd{word-spacing:-3.600000px;}
.wsce{word-spacing:-3.300000px;}
.ws13{word-spacing:-3.276000px;}
.ws31{word-spacing:-2.760000px;}
.ws1{word-spacing:-2.640000px;}
.ws75{word-spacing:-1.998000px;}
.ws55{word-spacing:-1.944000px;}
.ws36{word-spacing:-1.890000px;}
.ws1e{word-spacing:-1.836000px;}
.ws39{word-spacing:-1.782000px;}
.ws18{word-spacing:-1.728000px;}
.wsb8{word-spacing:-1.665000px;}
.ws74{word-spacing:-1.620000px;}
.wsc6{word-spacing:-1.575000px;}
.ws58{word-spacing:-1.566000px;}
.ws2e{word-spacing:-1.530000px;}
.ws34{word-spacing:-1.512000px;}
.ws1b{word-spacing:-1.458000px;}
.ws5b{word-spacing:-1.404000px;}
.wsb0{word-spacing:-1.395000px;}
.wsaf{word-spacing:-1.350000px;}
.ws19{word-spacing:-1.296000px;}
.ws14{word-spacing:-1.260000px;}
.ws20{word-spacing:-1.242000px;}
.ws3f{word-spacing:-1.188000px;}
.wsac{word-spacing:-1.170000px;}
.ws17{word-spacing:-1.134000px;}
.wsbf{word-spacing:-1.125000px;}
.ws5f{word-spacing:-1.080000px;}
.wsad{word-spacing:-1.035000px;}
.ws93{word-spacing:-1.026000px;}
.ws54{word-spacing:-0.972000px;}
.ws99{word-spacing:-0.924000px;}
.ws77{word-spacing:-0.918000px;}
.ws4d{word-spacing:-0.900000px;}
.ws2b{word-spacing:-0.867000px;}
.ws38{word-spacing:-0.810000px;}
.ws2f{word-spacing:-0.765000px;}
.ws24{word-spacing:-0.756000px;}
.wsb2{word-spacing:-0.720000px;}
.ws78{word-spacing:-0.702000px;}
.wsc0{word-spacing:-0.675000px;}
.ws2d{word-spacing:-0.663000px;}
.ws35{word-spacing:-0.648000px;}
.ws1d{word-spacing:-0.594000px;}
.wsba{word-spacing:-0.585000px;}
.ws1f{word-spacing:-0.540000px;}
.ws2a{word-spacing:-0.510000px;}
.wsaa{word-spacing:-0.495000px;}
.ws1a{word-spacing:-0.486000px;}
.ws5d{word-spacing:-0.432000px;}
.wsc7{word-spacing:-0.405000px;}
.ws1c{word-spacing:-0.378000px;}
.ws51{word-spacing:-0.360000px;}
.ws3e{word-spacing:-0.324000px;}
.wsae{word-spacing:-0.315000px;}
.ws97{word-spacing:-0.270000px;}
.ws5a{word-spacing:-0.240000px;}
.wsb9{word-spacing:-0.225000px;}
.ws3d{word-spacing:-0.216000px;}
.wsab{word-spacing:-0.180000px;}
.ws5c{word-spacing:-0.162000px;}
.ws28{word-spacing:-0.153000px;}
.ws72{word-spacing:-0.120000px;}
.ws22{word-spacing:-0.108000px;}
.wsb7{word-spacing:-0.090000px;}
.ws4a{word-spacing:-0.054000px;}
.ws29{word-spacing:-0.051000px;}
.wsb6{word-spacing:-0.045000px;}
.ws86{word-spacing:-0.042000px;}
.ws12{word-spacing:0.000000px;}
.wsbb{word-spacing:0.045000px;}
.ws23{word-spacing:0.054000px;}
.ws57{word-spacing:0.060000px;}
.wsbe{word-spacing:0.090000px;}
.ws76{word-spacing:0.108000px;}
.wsb4{word-spacing:0.135000px;}
.ws94{word-spacing:0.162000px;}
.wsb3{word-spacing:0.180000px;}
.ws73{word-spacing:0.216000px;}
.wsbc{word-spacing:0.270000px;}
.wsc1{word-spacing:0.315000px;}
.ws3a{word-spacing:0.324000px;}
.ws52{word-spacing:0.378000px;}
.ws5e{word-spacing:0.420000px;}
.ws26{word-spacing:0.432000px;}
.ws21{word-spacing:0.486000px;}
.ws37{word-spacing:0.540000px;}
.ws4f{word-spacing:0.594000px;}
.ws50{word-spacing:0.648000px;}
.ws91{word-spacing:0.702000px;}
.ws53{word-spacing:0.756000px;}
.ws33{word-spacing:0.810000px;}
.ws30{word-spacing:0.918000px;}
.wsb5{word-spacing:0.945000px;}
.ws3c{word-spacing:0.972000px;}
.ws4e{word-spacing:1.026000px;}
.ws92{word-spacing:1.134000px;}
.ws2c{word-spacing:1.224000px;}
.wsc8{word-spacing:1.242000px;}
.wsbd{word-spacing:1.260000px;}
.ws3b{word-spacing:1.404000px;}
.ws27{word-spacing:1.632000px;}
.wsc9{word-spacing:2.322000px;}
.ws95{word-spacing:2.430000px;}
.ws96{word-spacing:2.754000px;}
.ws98{word-spacing:3.834000px;}
.ws70{word-spacing:53.214000px;}
.ws8c{word-spacing:55.104000px;}
.ws6a{word-spacing:56.868000px;}
.ws71{word-spacing:58.002000px;}
.ws89{word-spacing:58.842000px;}
.ws6e{word-spacing:59.514000px;}
.ws8e{word-spacing:77.154000px;}
.ws69{word-spacing:79.380000px;}
.ws90{word-spacing:80.808000px;}
.ws8b{word-spacing:93.870000px;}
.ws6c{word-spacing:101.472000px;}
.ws85{word-spacing:112.644000px;}
.ws88{word-spacing:119.280000px;}
.ws8f{word-spacing:133.224000px;}
.ws67{word-spacing:150.990000px;}
.ws8d{word-spacing:152.628000px;}
.ws68{word-spacing:153.972000px;}
.ws8a{word-spacing:166.446000px;}
.ws87{word-spacing:171.570000px;}
.ws84{word-spacing:252.546000px;}
._11{margin-left:-697.158000px;}
._1d{margin-left:-18.981600px;}
._2b{margin-left:-15.522000px;}
._e{margin-left:-9.741000px;}
._9{margin-left:-8.676000px;}
._3{margin-left:-7.104000px;}
._c{margin-left:-5.886600px;}
._4{margin-left:-4.674000px;}
._1{margin-left:-3.463200px;}
._0{margin-left:-1.776000px;}
._5{width:1.219200px;}
._6{width:2.508900px;}
._2{width:3.781800px;}
._d{width:5.320800px;}
._2c{width:6.739200px;}
._7{width:8.722200px;}
._f{width:9.743400px;}
._a{width:15.282000px;}
._10{width:46.750800px;}
._8{width:48.181800px;}
._b{width:49.542000px;}
._1e{width:59.892000px;}
._1f{width:65.770800px;}
._1a{width:67.536000px;}
._2a{width:69.802800px;}
._1b{width:72.828000px;}
._13{width:76.314000px;}
._18{width:77.616000px;}
._15{width:83.244000px;}
._14{width:87.024000px;}
._16{width:89.334000px;}
._19{width:94.416000px;}
._1c{width:99.414000px;}
._28{width:100.560000px;}
._24{width:101.568000px;}
._17{width:104.496000px;}
._22{width:114.715200px;}
._26{width:129.402000px;}
._12{width:143.682000px;}
._20{width:160.356000px;}
._21{width:161.406000px;}
._29{width:173.796000px;}
._27{width:174.888000px;}
._23{width:175.896000px;}
._25{width:184.170000px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsc{font-size:27.300000px;}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:27.197850px;}
.y2{bottom:27.253800px;}
.y2f{bottom:68.307900px;}
.y5f{bottom:74.046300px;}
.yd6{bottom:79.281300px;}
.y2e{bottom:83.307900px;}
.ya0{bottom:83.553000px;}
.y12c{bottom:85.522050px;}
.y5e{bottom:89.044800px;}
.yd5{bottom:94.279800px;}
.y12b{bottom:98.268300px;}
.y2d{bottom:98.307900px;}
.y9f{bottom:98.551500px;}
.y5d{bottom:104.044800px;}
.yd4{bottom:109.279800px;}
.y12a{bottom:111.014550px;}
.y2c{bottom:113.307900px;}
.y9e{bottom:113.551500px;}
.y5c{bottom:119.047800px;}
.yae{bottom:121.281300px;}
.y129{bottom:123.760800px;}
.yd3{bottom:124.279800px;}
.y2b{bottom:128.307900px;}
.y9d{bottom:128.562000px;}
.y5b{bottom:134.046300px;}
.yad{bottom:136.279800px;}
.y128{bottom:136.507050px;}
.yd2{bottom:139.279800px;}
.y2a{bottom:143.307900px;}
.y9c{bottom:143.560500px;}
.y5a{bottom:149.044800px;}
.y127{bottom:149.253300px;}
.yac{bottom:151.281300px;}
.yd1{bottom:154.279800px;}
.y9b{bottom:158.559000px;}
.y126{bottom:161.999550px;}
.y29{bottom:162.636900px;}
.y59{bottom:164.049300px;}
.yab{bottom:166.279800px;}
.yd0{bottom:169.281300px;}
.y28{bottom:173.307900px;}
.y9a{bottom:173.557500px;}
.y125{bottom:174.745800px;}
.y58{bottom:179.047800px;}
.yaa{bottom:181.279800px;}
.ycf{bottom:184.279800px;}
.y124{bottom:187.492050px;}
.y99{bottom:188.556000px;}
.y27{bottom:192.636900px;}
.y57{bottom:194.046300px;}
.ya9{bottom:196.281300px;}
.yce{bottom:199.282800px;}
.y123{bottom:200.238300px;}
.y98{bottom:203.554500px;}
.y56{bottom:209.044800px;}
.ya8{bottom:211.279800px;}
.y122{bottom:212.984550px;}
.ycd{bottom:214.281300px;}
.y97{bottom:218.553000px;}
.y55{bottom:224.046300px;}
.y121{bottom:225.730800px;}
.ya7{bottom:226.281300px;}
.ycc{bottom:229.279800px;}
.y26{bottom:233.185800px;}
.y96{bottom:233.551500px;}
.y120{bottom:238.477050px;}
.y54{bottom:239.044800px;}
.ya6{bottom:241.279800px;}
.ycb{bottom:244.290300px;}
.y25{bottom:248.185800px;}
.y95{bottom:248.551500px;}
.y11f{bottom:251.223300px;}
.y53{bottom:254.043300px;}
.ya5{bottom:256.284300px;}
.yca{bottom:259.288800px;}
.y24{bottom:263.187300px;}
.y94{bottom:263.550000px;}
.y11e{bottom:263.969550px;}
.ya4{bottom:271.282800px;}
.yc9{bottom:274.287300px;}
.y11d{bottom:276.715800px;}
.y23{bottom:278.185800px;}
.ya3{bottom:286.281300px;}
.y52{bottom:287.046300px;}
.yc8{bottom:289.285800px;}
.y11c{bottom:289.462050px;}
.y22{bottom:293.187300px;}
.y93{bottom:293.613750px;}
.ya2{bottom:301.279800px;}
.y51{bottom:302.044800px;}
.y11b{bottom:302.208300px;}
.yc7{bottom:304.284300px;}
.y21{bottom:308.185800px;}
.y92{bottom:308.612250px;}
.y11a{bottom:314.954550px;}
.ya1{bottom:316.278300px;}
.y50{bottom:317.050800px;}
.yc6{bottom:319.282800px;}
.y20{bottom:323.188800px;}
.y91{bottom:323.625750px;}
.y119{bottom:327.700800px;}
.y4f{bottom:332.049300px;}
.yc5{bottom:334.281300px;}
.y1f{bottom:338.187300px;}
.y90{bottom:338.624250px;}
.y118{bottom:340.447050px;}
.y4e{bottom:347.047800px;}
.yc4{bottom:349.279800px;}
.y1e{bottom:353.185800px;}
.y117{bottom:353.193300px;}
.y8f{bottom:353.622750px;}
.y4d{bottom:362.046300px;}
.yc3{bottom:364.278300px;}
.y116{bottom:365.939550px;}
.yc1{bottom:367.656300px;}
.y1d{bottom:368.190300px;}
.y8e{bottom:368.621250px;}
.y4c{bottom:377.044800px;}
.y115{bottom:378.685800px;}
.yc2{bottom:379.278300px;}
.yc0{bottom:382.654800px;}
.y1c{bottom:383.188800px;}
.y8d{bottom:383.619750px;}
.y114{bottom:391.432050px;}
.y4b{bottom:392.043300px;}
.ybf{bottom:397.653300px;}
.y1b{bottom:398.187300px;}
.y8c{bottom:398.618250px;}
.y113{bottom:404.178300px;}
.y1a{bottom:413.185800px;}
.y8b{bottom:413.616750px;}
.y112{bottom:416.924550px;}
.y4a{bottom:425.047800px;}
.ybe{bottom:427.810800px;}
.y19{bottom:428.185800px;}
.y8a{bottom:428.615250px;}
.y111{bottom:429.670800px;}
.ye8{bottom:429.904800px;}
.y49{bottom:440.046300px;}
.y110{bottom:442.417050px;}
.y18{bottom:443.187300px;}
.y15e{bottom:443.190300px;}
.y89{bottom:443.613750px;}
.ye7{bottom:444.903300px;}
.ybd{bottom:445.251300px;}
.y48{bottom:455.044800px;}
.y10f{bottom:455.163300px;}
.y17{bottom:458.185800px;}
.y15d{bottom:458.188800px;}
.y88{bottom:458.612250px;}
.ybc{bottom:462.691800px;}
.y10e{bottom:467.909550px;}
.y47{bottom:470.043300px;}
.y15c{bottom:473.187300px;}
.y16{bottom:473.215800px;}
.y87{bottom:473.610750px;}
.ye6{bottom:475.060800px;}
.ybb{bottom:480.132300px;}
.y10d{bottom:480.655800px;}
.y46{bottom:485.043300px;}
.y15b{bottom:488.185800px;}
.y15{bottom:488.214300px;}
.y86{bottom:488.610750px;}
.ye5{bottom:492.501300px;}
.y10c{bottom:493.402050px;}
.yba{bottom:497.572800px;}
.y15a{bottom:503.184300px;}
.y10b{bottom:506.148300px;}
.ye4{bottom:509.941800px;}
.yb9{bottom:515.013300px;}
.y45{bottom:518.052300px;}
.y85{bottom:518.677650px;}
.y10a{bottom:518.894550px;}
.ye3{bottom:527.382300px;}
.y151{bottom:528.549300px;}
.y109{bottom:531.640800px;}
.yb8{bottom:532.453800px;}
.y44{bottom:533.050800px;}
.y84{bottom:533.676150px;}
.y159{bottom:533.926800px;}
.y14{bottom:535.464300px;}
.y150{bottom:543.547800px;}
.y108{bottom:544.387050px;}
.ye2{bottom:544.822800px;}
.y43{bottom:548.049300px;}
.y83{bottom:548.674650px;}
.y158{bottom:548.925300px;}
.yb7{bottom:549.894300px;}
.y13{bottom:551.961300px;}
.y107{bottom:557.133300px;}
.y14f{bottom:558.546300px;}
.ye1{bottom:562.263300px;}
.y42{bottom:563.047800px;}
.y82{bottom:563.673150px;}
.yb6{bottom:567.334800px;}
.y12{bottom:568.458300px;}
.y106{bottom:569.879550px;}
.y14e{bottom:573.544800px;}
.y41{bottom:578.046300px;}
.y81{bottom:578.671650px;}
.y157{bottom:579.678300px;}
.ye0{bottom:579.703800px;}
.y105{bottom:582.625800px;}
.yb5{bottom:584.775300px;}
.y11{bottom:584.955300px;}
.y14d{bottom:588.543300px;}
.y40{bottom:593.044800px;}
.y104{bottom:595.372050px;}
.ydf{bottom:597.144300px;}
.y10{bottom:601.452300px;}
.yb3{bottom:602.215800px;}
.y3f{bottom:608.047800px;}
.y103{bottom:608.118300px;}
.y80{bottom:608.733900px;}
.y14c{bottom:610.297800px;}
.y156{bottom:610.431300px;}
.yde{bottom:614.584800px;}
.yf{bottom:617.949300px;}
.yb4{bottom:619.656300px;}
.y102{bottom:620.864550px;}
.y3e{bottom:623.046300px;}
.y7f{bottom:623.733900px;}
.y14b{bottom:625.296300px;}
.y155{bottom:625.429800px;}
.ydd{bottom:632.025300px;}
.y101{bottom:633.610800px;}
.ye{bottom:634.446300px;}
.y3d{bottom:638.044800px;}
.y7e{bottom:638.741400px;}
.y154{bottom:640.428300px;}
.y100{bottom:646.357050px;}
.y14a{bottom:647.044800px;}
.ydb{bottom:649.465800px;}
.yd{bottom:650.943300px;}
.y3c{bottom:653.046300px;}
.y7d{bottom:653.739900px;}
.yff{bottom:659.103300px;}
.ydc{bottom:666.906300px;}
.yc{bottom:667.440300px;}
.y3b{bottom:668.044800px;}
.y7c{bottom:668.738400px;}
.y149{bottom:668.793300px;}
.yb2{bottom:669.543450px;}
.y153{bottom:671.181300px;}
.yfe{bottom:671.849550px;}
.y3a{bottom:683.050800px;}
.y7b{bottom:683.736900px;}
.y148{bottom:683.793300px;}
.yb{bottom:683.937300px;}
.yb1{bottom:684.541950px;}
.yfd{bottom:684.595800px;}
.yfc{bottom:697.342050px;}
.y39{bottom:698.049300px;}
.y7a{bottom:698.735400px;}
.yb0{bottom:699.540450px;}
.ya{bottom:700.434300px;}
.y152{bottom:701.934300px;}
.yfb{bottom:710.088300px;}
.y147{bottom:710.797800px;}
.y38{bottom:713.047800px;}
.y79{bottom:713.733900px;}
.yaf{bottom:714.538950px;}
.yfa{bottom:722.834550px;}
.yda{bottom:725.521950px;}
.y146{bottom:725.796300px;}
.y37{bottom:728.046300px;}
.y78{bottom:728.733900px;}
.y9{bottom:730.434300px;}
.yf9{bottom:735.580800px;}
.yd9{bottom:740.520450px;}
.y145{bottom:740.794800px;}
.y36{bottom:743.044800px;}
.y77{bottom:743.733900px;}
.yf8{bottom:748.327050px;}
.y8{bottom:748.434300px;}
.yd8{bottom:755.520450px;}
.y144{bottom:755.793300px;}
.y32{bottom:757.050000px;}
.y35{bottom:758.043300px;}
.y76{bottom:758.734050px;}
.yf7{bottom:761.073300px;}
.yd7{bottom:770.518950px;}
.y143{bottom:770.793300px;}
.y75{bottom:773.732550px;}
.yf6{bottom:773.819550px;}
.y31{bottom:778.050000px;}
.y7{bottom:781.416300px;}
.yf5{bottom:786.565800px;}
.y142{bottom:797.799300px;}
.y30{bottom:799.050000px;}
.yf4{bottom:799.312050px;}
.y74{bottom:803.802300px;}
.yf3{bottom:812.058300px;}
.y141{bottom:812.797800px;}
.y60{bottom:818.218950px;}
.y73{bottom:818.800800px;}
.yf2{bottom:824.804550px;}
.y6{bottom:826.422300px;}
.y140{bottom:827.796300px;}
.y72{bottom:833.799300px;}
.yf1{bottom:837.550800px;}
.y13f{bottom:842.794800px;}
.y71{bottom:848.797800px;}
.yf0{bottom:850.297050px;}
.y13e{bottom:857.793300px;}
.yef{bottom:863.043300px;}
.y70{bottom:863.796300px;}
.y5{bottom:871.428300px;}
.y13d{bottom:872.793300px;}
.yee{bottom:875.793300px;}
.y6f{bottom:878.794800px;}
.y6e{bottom:893.794800px;}
.y13c{bottom:899.849550px;}
.y6d{bottom:908.794800px;}
.yed{bottom:908.802300px;}
.y13b{bottom:912.595800px;}
.y4{bottom:916.434300px;}
.y6c{bottom:923.800800px;}
.y13a{bottom:925.342050px;}
.y33{bottom:926.409600px;}
.y139{bottom:938.088300px;}
.y6b{bottom:938.799300px;}
.y138{bottom:950.834550px;}
.y6a{bottom:953.797800px;}
.y137{bottom:963.580800px;}
.y69{bottom:968.796300px;}
.y136{bottom:976.327050px;}
.y68{bottom:983.794800px;}
.y135{bottom:989.073300px;}
.y67{bottom:998.794800px;}
.yec{bottom:998.796300px;}
.y134{bottom:1001.819550px;}
.yeb{bottom:1013.794800px;}
.y66{bottom:1013.797800px;}
.y133{bottom:1014.565800px;}
.y132{bottom:1027.312050px;}
.y65{bottom:1028.796300px;}
.yea{bottom:1028.797800px;}
.y131{bottom:1040.058300px;}
.y64{bottom:1043.794800px;}
.ye9{bottom:1043.796300px;}
.y130{bottom:1052.804550px;}
.y63{bottom:1058.794800px;}
.y12f{bottom:1065.550800px;}
.y62{bottom:1073.794800px;}
.y12e{bottom:1078.297050px;}
.y61{bottom:1088.793300px;}
.y12d{bottom:1091.043300px;}
.y34{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.he{height:23.842749px;}
.h18{height:29.988000px;}
.h19{height:34.356000px;}
.h3{height:34.523438px;}
.h10{height:36.681152px;}
.h1b{height:36.810000px;}
.h7{height:38.838867px;}
.hf{height:41.158749px;}
.h2{height:43.154297px;}
.h8{height:44.172000px;}
.h4{height:44.233154px;}
.h9{height:46.945800px;}
.h16{height:47.011800px;}
.h17{height:47.023200px;}
.h1a{height:47.023800px;}
.h15{height:47.035800px;}
.h12{height:47.041800px;}
.hc{height:47.047800px;}
.hd{height:47.053800px;}
.ha{height:47.059800px;}
.h14{height:47.065200px;}
.hb{height:47.065800px;}
.h13{height:47.469727px;}
.h6{height:48.450293px;}
.h11{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x6{left:64.191300px;}
.x8{left:71.139300px;}
.x7{left:78.951300px;}
.x9{left:140.952750px;}
.x4{left:233.456400px;}
.xb{left:238.143900px;}
.x5{left:251.456850px;}
.x11{left:300.348750px;}
.x10{left:370.240200px;}
.xe{left:391.863900px;}
.xc{left:508.508400px;}
.xf{left:572.978400px;}
.x3{left:584.586600px;}
.xd{left:590.324400px;}
.xa{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v3{vertical-align:-16.320000pt;}
.v4{vertical-align:-15.413333pt;}
.v5{vertical-align:-9.605333pt;}
.v6{vertical-align:-7.466667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.208000pt;}
.v1{vertical-align:18.133333pt;}
.ls8a{letter-spacing:-2.560000pt;}
.ls63{letter-spacing:-2.464000pt;}
.ls23{letter-spacing:-1.536000pt;}
.ls24{letter-spacing:-1.344000pt;}
.ls89{letter-spacing:-1.320000pt;}
.ls60{letter-spacing:-1.248000pt;}
.ls88{letter-spacing:-1.240000pt;}
.ls7c{letter-spacing:-1.160000pt;}
.ls8c{letter-spacing:-1.120000pt;}
.ls72{letter-spacing:-1.104000pt;}
.ls75{letter-spacing:-1.045333pt;}
.ls91{letter-spacing:-1.013333pt;}
.ls62{letter-spacing:-1.008000pt;}
.ls8b{letter-spacing:-1.000000pt;}
.ls6f{letter-spacing:-0.960000pt;}
.ls56{letter-spacing:-0.912000pt;}
.ls84{letter-spacing:-0.840000pt;}
.ls67{letter-spacing:-0.821333pt;}
.ls55{letter-spacing:-0.816000pt;}
.ls7d{letter-spacing:-0.800000pt;}
.ls5e{letter-spacing:-0.768000pt;}
.ls71{letter-spacing:-0.672000pt;}
.ls7e{letter-spacing:-0.640000pt;}
.ls8f{letter-spacing:-0.560000pt;}
.ls64{letter-spacing:-0.485333pt;}
.ls30{letter-spacing:-0.480000pt;}
.ls87{letter-spacing:-0.440000pt;}
.ls2f{letter-spacing:-0.432000pt;}
.ls86{letter-spacing:-0.400000pt;}
.ls1d{letter-spacing:-0.384000pt;}
.ls59{letter-spacing:-0.373333pt;}
.ls5a{letter-spacing:-0.336000pt;}
.ls68{letter-spacing:-0.298667pt;}
.ls32{letter-spacing:-0.288000pt;}
.ls52{letter-spacing:-0.280800pt;}
.ls81{letter-spacing:-0.280000pt;}
.ls2d{letter-spacing:-0.240000pt;}
.ls4c{letter-spacing:-0.218400pt;}
.ls7f{letter-spacing:-0.200000pt;}
.ls61{letter-spacing:-0.192000pt;}
.ls58{letter-spacing:-0.187200pt;}
.ls65{letter-spacing:-0.186667pt;}
.ls8d{letter-spacing:-0.160000pt;}
.ls51{letter-spacing:-0.156000pt;}
.ls74{letter-spacing:-0.149333pt;}
.ls2c{letter-spacing:-0.144000pt;}
.ls53{letter-spacing:-0.124800pt;}
.ls90{letter-spacing:-0.120000pt;}
.ls2e{letter-spacing:-0.096000pt;}
.ls35{letter-spacing:-0.093600pt;}
.ls83{letter-spacing:-0.080000pt;}
.ls54{letter-spacing:-0.053333pt;}
.ls1e{letter-spacing:-0.048000pt;}
.ls80{letter-spacing:-0.040000pt;}
.ls22{letter-spacing:-0.031200pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011733pt;}
.ls13{letter-spacing:0.015867pt;}
.ls15{letter-spacing:0.016400pt;}
.ls4{letter-spacing:0.019733pt;}
.ls2{letter-spacing:0.020267pt;}
.ls6e{letter-spacing:0.030400pt;}
.ls7b{letter-spacing:0.040000pt;}
.ls14{letter-spacing:0.045333pt;}
.ls21{letter-spacing:0.048000pt;}
.lsb{letter-spacing:0.062400pt;}
.ls8e{letter-spacing:0.076000pt;}
.ls78{letter-spacing:0.080000pt;}
.ls6d{letter-spacing:0.081600pt;}
.ls12{letter-spacing:0.082533pt;}
.ls44{letter-spacing:0.085867pt;}
.ls6{letter-spacing:0.093600pt;}
.lsa{letter-spacing:0.096000pt;}
.ls5b{letter-spacing:0.106667pt;}
.ls79{letter-spacing:0.120000pt;}
.ls4e{letter-spacing:0.124800pt;}
.ls11{letter-spacing:0.136000pt;}
.ls49{letter-spacing:0.141333pt;}
.ls9{letter-spacing:0.144000pt;}
.ls77{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.176533pt;}
.ls4a{letter-spacing:0.187200pt;}
.ls29{letter-spacing:0.192000pt;}
.ls4b{letter-spacing:0.198400pt;}
.ls45{letter-spacing:0.203733pt;}
.ls57{letter-spacing:0.213333pt;}
.ls5f{letter-spacing:0.218400pt;}
.ls66{letter-spacing:0.224000pt;}
.ls47{letter-spacing:0.224533pt;}
.ls1f{letter-spacing:0.240000pt;}
.ls48{letter-spacing:0.242133pt;}
.ls46{letter-spacing:0.249600pt;}
.ls76{letter-spacing:0.261333pt;}
.ls3d{letter-spacing:0.265200pt;}
.ls39{letter-spacing:0.280000pt;}
.ls41{letter-spacing:0.280800pt;}
.ls42{letter-spacing:0.282933pt;}
.ls5c{letter-spacing:0.283200pt;}
.lsd{letter-spacing:0.288000pt;}
.ls38{letter-spacing:0.312000pt;}
.ls4f{letter-spacing:0.320000pt;}
.ls6b{letter-spacing:0.327600pt;}
.ls2a{letter-spacing:0.336000pt;}
.ls43{letter-spacing:0.350400pt;}
.ls40{letter-spacing:0.355200pt;}
.ls18{letter-spacing:0.359867pt;}
.ls85{letter-spacing:0.360000pt;}
.ls3f{letter-spacing:0.373333pt;}
.ls7{letter-spacing:0.374400pt;}
.ls20{letter-spacing:0.384000pt;}
.ls3c{letter-spacing:0.393600pt;}
.ls7a{letter-spacing:0.400000pt;}
.ls4d{letter-spacing:0.405600pt;}
.lse{letter-spacing:0.432000pt;}
.ls1a{letter-spacing:0.436667pt;}
.ls3b{letter-spacing:0.436800pt;}
.ls82{letter-spacing:0.440000pt;}
.ls6c{letter-spacing:0.446400pt;}
.ls50{letter-spacing:0.468000pt;}
.ls28{letter-spacing:0.480000pt;}
.ls17{letter-spacing:0.504400pt;}
.ls31{letter-spacing:0.528000pt;}
.lsc{letter-spacing:0.566400pt;}
.ls8{letter-spacing:0.576000pt;}
.ls25{letter-spacing:0.589333pt;}
.ls3e{letter-spacing:0.600533pt;}
.lsf{letter-spacing:0.602000pt;}
.ls27{letter-spacing:0.624000pt;}
.ls3a{letter-spacing:0.672000pt;}
.ls19{letter-spacing:0.680000pt;}
.ls2b{letter-spacing:0.720000pt;}
.ls34{letter-spacing:0.768000pt;}
.ls16{letter-spacing:0.770667pt;}
.ls36{letter-spacing:0.800000pt;}
.ls37{letter-spacing:0.816000pt;}
.ls1b{letter-spacing:0.853333pt;}
.ls70{letter-spacing:0.864000pt;}
.ls10{letter-spacing:0.952000pt;}
.ls33{letter-spacing:0.960000pt;}
.ls6a{letter-spacing:1.008000pt;}
.ls69{letter-spacing:1.296000pt;}
.ls73{letter-spacing:1.824000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls26{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls5d{letter-spacing:13.104000pt;}
.ws5{word-spacing:-48.000000pt;}
.ws2{word-spacing:-13.393333pt;}
.ws80{word-spacing:-12.288000pt;}
.ws4b{word-spacing:-12.085333pt;}
.ws82{word-spacing:-11.520000pt;}
.ws7f{word-spacing:-11.472000pt;}
.ws64{word-spacing:-11.424000pt;}
.ws7d{word-spacing:-11.328000pt;}
.ws60{word-spacing:-11.232000pt;}
.wsf{word-spacing:-11.088000pt;}
.ws10{word-spacing:-10.992000pt;}
.wscb{word-spacing:-10.986667pt;}
.wsc{word-spacing:-10.944000pt;}
.ws9{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws83{word-spacing:-10.800000pt;}
.wsc5{word-spacing:-10.752000pt;}
.ws7b{word-spacing:-10.656000pt;}
.ws7c{word-spacing:-10.320000pt;}
.ws61{word-spacing:-10.224000pt;}
.ws66{word-spacing:-10.176000pt;}
.ws9a{word-spacing:-10.080000pt;}
.ws7a{word-spacing:-10.032000pt;}
.ws65{word-spacing:-9.984000pt;}
.wsca{word-spacing:-9.973333pt;}
.ws4{word-spacing:-9.888000pt;}
.ws63{word-spacing:-9.744000pt;}
.wsd{word-spacing:-9.648000pt;}
.wsc3{word-spacing:-9.480000pt;}
.wsb{word-spacing:-9.456000pt;}
.ws9e{word-spacing:-9.280000pt;}
.ws9d{word-spacing:-9.160000pt;}
.wsa8{word-spacing:-9.120000pt;}
.wsa3{word-spacing:-9.080000pt;}
.ws9f{word-spacing:-9.000000pt;}
.wsa4{word-spacing:-8.960000pt;}
.ws56{word-spacing:-8.928000pt;}
.wsa1{word-spacing:-8.920000pt;}
.ws25{word-spacing:-8.880000pt;}
.wscc{word-spacing:-8.874667pt;}
.wsa0{word-spacing:-8.760000pt;}
.wsc4{word-spacing:-8.720000pt;}
.wsa2{word-spacing:-8.520000pt;}
.ws9c{word-spacing:-8.360000pt;}
.wsa6{word-spacing:-8.320000pt;}
.wsc2{word-spacing:-8.200000pt;}
.ws59{word-spacing:-8.160000pt;}
.wsa9{word-spacing:-8.040000pt;}
.ws9b{word-spacing:-8.000000pt;}
.wsa5{word-spacing:-7.920000pt;}
.ws6d{word-spacing:-7.914667pt;}
.wsa7{word-spacing:-7.840000pt;}
.ws6f{word-spacing:-7.802667pt;}
.ws45{word-spacing:-7.550400pt;}
.ws43{word-spacing:-7.519200pt;}
.ws41{word-spacing:-7.488000pt;}
.ws8{word-spacing:-7.456800pt;}
.ws81{word-spacing:-7.410000pt;}
.wsb1{word-spacing:-7.400000pt;}
.ws7e{word-spacing:-7.394400pt;}
.ws46{word-spacing:-7.363200pt;}
.ws44{word-spacing:-7.347600pt;}
.ws62{word-spacing:-7.300800pt;}
.ws6b{word-spacing:-7.280000pt;}
.ws42{word-spacing:-7.207200pt;}
.ws6{word-spacing:-7.176000pt;}
.wse{word-spacing:-7.144800pt;}
.ws3{word-spacing:-7.141333pt;}
.ws7{word-spacing:-7.082400pt;}
.wsa{word-spacing:-7.051200pt;}
.ws32{word-spacing:-6.988800pt;}
.ws49{word-spacing:-6.957600pt;}
.ws15{word-spacing:-6.933333pt;}
.ws47{word-spacing:-6.926400pt;}
.ws79{word-spacing:-6.906667pt;}
.ws4c{word-spacing:-6.895200pt;}
.ws40{word-spacing:-6.864000pt;}
.ws48{word-spacing:-6.801600pt;}
.ws11{word-spacing:-5.893333pt;}
.ws16{word-spacing:-3.946667pt;}
.wscd{word-spacing:-3.200000pt;}
.wsce{word-spacing:-2.933333pt;}
.ws13{word-spacing:-2.912000pt;}
.ws31{word-spacing:-2.453333pt;}
.ws1{word-spacing:-2.346667pt;}
.ws75{word-spacing:-1.776000pt;}
.ws55{word-spacing:-1.728000pt;}
.ws36{word-spacing:-1.680000pt;}
.ws1e{word-spacing:-1.632000pt;}
.ws39{word-spacing:-1.584000pt;}
.ws18{word-spacing:-1.536000pt;}
.wsb8{word-spacing:-1.480000pt;}
.ws74{word-spacing:-1.440000pt;}
.wsc6{word-spacing:-1.400000pt;}
.ws58{word-spacing:-1.392000pt;}
.ws2e{word-spacing:-1.360000pt;}
.ws34{word-spacing:-1.344000pt;}
.ws1b{word-spacing:-1.296000pt;}
.ws5b{word-spacing:-1.248000pt;}
.wsb0{word-spacing:-1.240000pt;}
.wsaf{word-spacing:-1.200000pt;}
.ws19{word-spacing:-1.152000pt;}
.ws14{word-spacing:-1.120000pt;}
.ws20{word-spacing:-1.104000pt;}
.ws3f{word-spacing:-1.056000pt;}
.wsac{word-spacing:-1.040000pt;}
.ws17{word-spacing:-1.008000pt;}
.wsbf{word-spacing:-1.000000pt;}
.ws5f{word-spacing:-0.960000pt;}
.wsad{word-spacing:-0.920000pt;}
.ws93{word-spacing:-0.912000pt;}
.ws54{word-spacing:-0.864000pt;}
.ws99{word-spacing:-0.821333pt;}
.ws77{word-spacing:-0.816000pt;}
.ws4d{word-spacing:-0.800000pt;}
.ws2b{word-spacing:-0.770667pt;}
.ws38{word-spacing:-0.720000pt;}
.ws2f{word-spacing:-0.680000pt;}
.ws24{word-spacing:-0.672000pt;}
.wsb2{word-spacing:-0.640000pt;}
.ws78{word-spacing:-0.624000pt;}
.wsc0{word-spacing:-0.600000pt;}
.ws2d{word-spacing:-0.589333pt;}
.ws35{word-spacing:-0.576000pt;}
.ws1d{word-spacing:-0.528000pt;}
.wsba{word-spacing:-0.520000pt;}
.ws1f{word-spacing:-0.480000pt;}
.ws2a{word-spacing:-0.453333pt;}
.wsaa{word-spacing:-0.440000pt;}
.ws1a{word-spacing:-0.432000pt;}
.ws5d{word-spacing:-0.384000pt;}
.wsc7{word-spacing:-0.360000pt;}
.ws1c{word-spacing:-0.336000pt;}
.ws51{word-spacing:-0.320000pt;}
.ws3e{word-spacing:-0.288000pt;}
.wsae{word-spacing:-0.280000pt;}
.ws97{word-spacing:-0.240000pt;}
.ws5a{word-spacing:-0.213333pt;}
.wsb9{word-spacing:-0.200000pt;}
.ws3d{word-spacing:-0.192000pt;}
.wsab{word-spacing:-0.160000pt;}
.ws5c{word-spacing:-0.144000pt;}
.ws28{word-spacing:-0.136000pt;}
.ws72{word-spacing:-0.106667pt;}
.ws22{word-spacing:-0.096000pt;}
.wsb7{word-spacing:-0.080000pt;}
.ws4a{word-spacing:-0.048000pt;}
.ws29{word-spacing:-0.045333pt;}
.wsb6{word-spacing:-0.040000pt;}
.ws86{word-spacing:-0.037333pt;}
.ws12{word-spacing:0.000000pt;}
.wsbb{word-spacing:0.040000pt;}
.ws23{word-spacing:0.048000pt;}
.ws57{word-spacing:0.053333pt;}
.wsbe{word-spacing:0.080000pt;}
.ws76{word-spacing:0.096000pt;}
.wsb4{word-spacing:0.120000pt;}
.ws94{word-spacing:0.144000pt;}
.wsb3{word-spacing:0.160000pt;}
.ws73{word-spacing:0.192000pt;}
.wsbc{word-spacing:0.240000pt;}
.wsc1{word-spacing:0.280000pt;}
.ws3a{word-spacing:0.288000pt;}
.ws52{word-spacing:0.336000pt;}
.ws5e{word-spacing:0.373333pt;}
.ws26{word-spacing:0.384000pt;}
.ws21{word-spacing:0.432000pt;}
.ws37{word-spacing:0.480000pt;}
.ws4f{word-spacing:0.528000pt;}
.ws50{word-spacing:0.576000pt;}
.ws91{word-spacing:0.624000pt;}
.ws53{word-spacing:0.672000pt;}
.ws33{word-spacing:0.720000pt;}
.ws30{word-spacing:0.816000pt;}
.wsb5{word-spacing:0.840000pt;}
.ws3c{word-spacing:0.864000pt;}
.ws4e{word-spacing:0.912000pt;}
.ws92{word-spacing:1.008000pt;}
.ws2c{word-spacing:1.088000pt;}
.wsc8{word-spacing:1.104000pt;}
.wsbd{word-spacing:1.120000pt;}
.ws3b{word-spacing:1.248000pt;}
.ws27{word-spacing:1.450667pt;}
.wsc9{word-spacing:2.064000pt;}
.ws95{word-spacing:2.160000pt;}
.ws96{word-spacing:2.448000pt;}
.ws98{word-spacing:3.408000pt;}
.ws70{word-spacing:47.301333pt;}
.ws8c{word-spacing:48.981333pt;}
.ws6a{word-spacing:50.549333pt;}
.ws71{word-spacing:51.557333pt;}
.ws89{word-spacing:52.304000pt;}
.ws6e{word-spacing:52.901333pt;}
.ws8e{word-spacing:68.581333pt;}
.ws69{word-spacing:70.560000pt;}
.ws90{word-spacing:71.829333pt;}
.ws8b{word-spacing:83.440000pt;}
.ws6c{word-spacing:90.197333pt;}
.ws85{word-spacing:100.128000pt;}
.ws88{word-spacing:106.026667pt;}
.ws8f{word-spacing:118.421333pt;}
.ws67{word-spacing:134.213333pt;}
.ws8d{word-spacing:135.669333pt;}
.ws68{word-spacing:136.864000pt;}
.ws8a{word-spacing:147.952000pt;}
.ws87{word-spacing:152.506667pt;}
.ws84{word-spacing:224.485333pt;}
._11{margin-left:-619.696000pt;}
._1d{margin-left:-16.872533pt;}
._2b{margin-left:-13.797333pt;}
._e{margin-left:-8.658667pt;}
._9{margin-left:-7.712000pt;}
._3{margin-left:-6.314667pt;}
._c{margin-left:-5.232533pt;}
._4{margin-left:-4.154667pt;}
._1{margin-left:-3.078400pt;}
._0{margin-left:-1.578667pt;}
._5{width:1.083733pt;}
._6{width:2.230133pt;}
._2{width:3.361600pt;}
._d{width:4.729600pt;}
._2c{width:5.990400pt;}
._7{width:7.753067pt;}
._f{width:8.660800pt;}
._a{width:13.584000pt;}
._10{width:41.556267pt;}
._8{width:42.828267pt;}
._b{width:44.037333pt;}
._1e{width:53.237333pt;}
._1f{width:58.462933pt;}
._1a{width:60.032000pt;}
._2a{width:62.046933pt;}
._1b{width:64.736000pt;}
._13{width:67.834667pt;}
._18{width:68.992000pt;}
._15{width:73.994667pt;}
._14{width:77.354667pt;}
._16{width:79.408000pt;}
._19{width:83.925333pt;}
._1c{width:88.368000pt;}
._28{width:89.386667pt;}
._24{width:90.282667pt;}
._17{width:92.885333pt;}
._22{width:101.969067pt;}
._26{width:115.024000pt;}
._12{width:127.717333pt;}
._20{width:142.538667pt;}
._21{width:143.472000pt;}
._29{width:154.485333pt;}
._27{width:155.456000pt;}
._23{width:156.352000pt;}
._25{width:163.706667pt;}
.fsc{font-size:24.266667pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:24.175867pt;}
.y2{bottom:24.225600pt;}
.y2f{bottom:60.718133pt;}
.y5f{bottom:65.818933pt;}
.yd6{bottom:70.472267pt;}
.y2e{bottom:74.051467pt;}
.ya0{bottom:74.269333pt;}
.y12c{bottom:76.019600pt;}
.y5e{bottom:79.150933pt;}
.yd5{bottom:83.804267pt;}
.y12b{bottom:87.349600pt;}
.y2d{bottom:87.384800pt;}
.y9f{bottom:87.601333pt;}
.y5d{bottom:92.484267pt;}
.yd4{bottom:97.137600pt;}
.y12a{bottom:98.679600pt;}
.y2c{bottom:100.718133pt;}
.y9e{bottom:100.934667pt;}
.y5c{bottom:105.820267pt;}
.yae{bottom:107.805600pt;}
.y129{bottom:110.009600pt;}
.yd3{bottom:110.470933pt;}
.y2b{bottom:114.051467pt;}
.y9d{bottom:114.277333pt;}
.y5b{bottom:119.152267pt;}
.yad{bottom:121.137600pt;}
.y128{bottom:121.339600pt;}
.yd2{bottom:123.804267pt;}
.y2a{bottom:127.384800pt;}
.y9c{bottom:127.609333pt;}
.y5a{bottom:132.484267pt;}
.y127{bottom:132.669600pt;}
.yac{bottom:134.472267pt;}
.yd1{bottom:137.137600pt;}
.y9b{bottom:140.941333pt;}
.y126{bottom:143.999600pt;}
.y29{bottom:144.566133pt;}
.y59{bottom:145.821600pt;}
.yab{bottom:147.804267pt;}
.yd0{bottom:150.472267pt;}
.y28{bottom:154.051467pt;}
.y9a{bottom:154.273333pt;}
.y125{bottom:155.329600pt;}
.y58{bottom:159.153600pt;}
.yaa{bottom:161.137600pt;}
.ycf{bottom:163.804267pt;}
.y124{bottom:166.659600pt;}
.y99{bottom:167.605333pt;}
.y27{bottom:171.232800pt;}
.y57{bottom:172.485600pt;}
.ya9{bottom:174.472267pt;}
.yce{bottom:177.140267pt;}
.y123{bottom:177.989600pt;}
.y98{bottom:180.937333pt;}
.y56{bottom:185.817600pt;}
.ya8{bottom:187.804267pt;}
.y122{bottom:189.319600pt;}
.ycd{bottom:190.472267pt;}
.y97{bottom:194.269333pt;}
.y55{bottom:199.152267pt;}
.y121{bottom:200.649600pt;}
.ya7{bottom:201.138933pt;}
.ycc{bottom:203.804267pt;}
.y26{bottom:207.276267pt;}
.y96{bottom:207.601333pt;}
.y120{bottom:211.979600pt;}
.y54{bottom:212.484267pt;}
.ya6{bottom:214.470933pt;}
.ycb{bottom:217.146933pt;}
.y25{bottom:220.609600pt;}
.y95{bottom:220.934667pt;}
.y11f{bottom:223.309600pt;}
.y53{bottom:225.816267pt;}
.ya5{bottom:227.808267pt;}
.yca{bottom:230.478933pt;}
.y24{bottom:233.944267pt;}
.y94{bottom:234.266667pt;}
.y11e{bottom:234.639600pt;}
.ya4{bottom:241.140267pt;}
.yc9{bottom:243.810933pt;}
.y11d{bottom:245.969600pt;}
.y23{bottom:247.276267pt;}
.ya3{bottom:254.472267pt;}
.y52{bottom:255.152267pt;}
.yc8{bottom:257.142933pt;}
.y11c{bottom:257.299600pt;}
.y22{bottom:260.610933pt;}
.y93{bottom:260.990000pt;}
.ya2{bottom:267.804267pt;}
.y51{bottom:268.484267pt;}
.y11b{bottom:268.629600pt;}
.yc7{bottom:270.474933pt;}
.y21{bottom:273.942933pt;}
.y92{bottom:274.322000pt;}
.y11a{bottom:279.959600pt;}
.ya1{bottom:281.136267pt;}
.y50{bottom:281.822933pt;}
.yc6{bottom:283.806933pt;}
.y20{bottom:287.278933pt;}
.y91{bottom:287.667333pt;}
.y119{bottom:291.289600pt;}
.y4f{bottom:295.154933pt;}
.yc5{bottom:297.138933pt;}
.y1f{bottom:300.610933pt;}
.y90{bottom:300.999333pt;}
.y118{bottom:302.619600pt;}
.y4e{bottom:308.486933pt;}
.yc4{bottom:310.470933pt;}
.y1e{bottom:313.942933pt;}
.y117{bottom:313.949600pt;}
.y8f{bottom:314.331333pt;}
.y4d{bottom:321.818933pt;}
.yc3{bottom:323.802933pt;}
.y116{bottom:325.279600pt;}
.yc1{bottom:326.805600pt;}
.y1d{bottom:327.280267pt;}
.y8e{bottom:327.663333pt;}
.y4c{bottom:335.150933pt;}
.y115{bottom:336.609600pt;}
.yc2{bottom:337.136267pt;}
.yc0{bottom:340.137600pt;}
.y1c{bottom:340.612267pt;}
.y8d{bottom:340.995333pt;}
.y114{bottom:347.939600pt;}
.y4b{bottom:348.482933pt;}
.ybf{bottom:353.469600pt;}
.y1b{bottom:353.944267pt;}
.y8c{bottom:354.327333pt;}
.y113{bottom:359.269600pt;}
.y1a{bottom:367.276267pt;}
.y8b{bottom:367.659333pt;}
.y112{bottom:370.599600pt;}
.y4a{bottom:377.820267pt;}
.ybe{bottom:380.276267pt;}
.y19{bottom:380.609600pt;}
.y8a{bottom:380.991333pt;}
.y111{bottom:381.929600pt;}
.ye8{bottom:382.137600pt;}
.y49{bottom:391.152267pt;}
.y110{bottom:393.259600pt;}
.y18{bottom:393.944267pt;}
.y15e{bottom:393.946933pt;}
.y89{bottom:394.323333pt;}
.ye7{bottom:395.469600pt;}
.ybd{bottom:395.778933pt;}
.y48{bottom:404.484267pt;}
.y10f{bottom:404.589600pt;}
.y17{bottom:407.276267pt;}
.y15d{bottom:407.278933pt;}
.y88{bottom:407.655333pt;}
.ybc{bottom:411.281600pt;}
.y10e{bottom:415.919600pt;}
.y47{bottom:417.816267pt;}
.y15c{bottom:420.610933pt;}
.y16{bottom:420.636267pt;}
.y87{bottom:420.987333pt;}
.ye6{bottom:422.276267pt;}
.ybb{bottom:426.784267pt;}
.y10d{bottom:427.249600pt;}
.y46{bottom:431.149600pt;}
.y15b{bottom:433.942933pt;}
.y15{bottom:433.968267pt;}
.y86{bottom:434.320667pt;}
.ye5{bottom:437.778933pt;}
.y10c{bottom:438.579600pt;}
.yba{bottom:442.286933pt;}
.y15a{bottom:447.274933pt;}
.y10b{bottom:449.909600pt;}
.ye4{bottom:453.281600pt;}
.yb9{bottom:457.789600pt;}
.y45{bottom:460.490933pt;}
.y85{bottom:461.046800pt;}
.y10a{bottom:461.239600pt;}
.ye3{bottom:468.784267pt;}
.y151{bottom:469.821600pt;}
.y109{bottom:472.569600pt;}
.yb8{bottom:473.292267pt;}
.y44{bottom:473.822933pt;}
.y84{bottom:474.378800pt;}
.y159{bottom:474.601600pt;}
.y14{bottom:475.968267pt;}
.y150{bottom:483.153600pt;}
.y108{bottom:483.899600pt;}
.ye2{bottom:484.286933pt;}
.y43{bottom:487.154933pt;}
.y83{bottom:487.710800pt;}
.y158{bottom:487.933600pt;}
.yb7{bottom:488.794933pt;}
.y13{bottom:490.632267pt;}
.y107{bottom:495.229600pt;}
.y14f{bottom:496.485600pt;}
.ye1{bottom:499.789600pt;}
.y42{bottom:500.486933pt;}
.y82{bottom:501.042800pt;}
.yb6{bottom:504.297600pt;}
.y12{bottom:505.296267pt;}
.y106{bottom:506.559600pt;}
.y14e{bottom:509.817600pt;}
.y41{bottom:513.818933pt;}
.y81{bottom:514.374800pt;}
.y157{bottom:515.269600pt;}
.ye0{bottom:515.292267pt;}
.y105{bottom:517.889600pt;}
.yb5{bottom:519.800267pt;}
.y11{bottom:519.960267pt;}
.y14d{bottom:523.149600pt;}
.y40{bottom:527.150933pt;}
.y104{bottom:529.219600pt;}
.ydf{bottom:530.794933pt;}
.y10{bottom:534.624267pt;}
.yb3{bottom:535.302933pt;}
.y3f{bottom:540.486933pt;}
.y103{bottom:540.549600pt;}
.y80{bottom:541.096800pt;}
.y14c{bottom:542.486933pt;}
.y156{bottom:542.605600pt;}
.yde{bottom:546.297600pt;}
.yf{bottom:549.288267pt;}
.yb4{bottom:550.805600pt;}
.y102{bottom:551.879600pt;}
.y3e{bottom:553.818933pt;}
.y7f{bottom:554.430133pt;}
.y14b{bottom:555.818933pt;}
.y155{bottom:555.937600pt;}
.ydd{bottom:561.800267pt;}
.y101{bottom:563.209600pt;}
.ye{bottom:563.952267pt;}
.y3d{bottom:567.150933pt;}
.y7e{bottom:567.770133pt;}
.y154{bottom:569.269600pt;}
.y100{bottom:574.539600pt;}
.y14a{bottom:575.150933pt;}
.ydb{bottom:577.302933pt;}
.yd{bottom:578.616267pt;}
.y3c{bottom:580.485600pt;}
.y7d{bottom:581.102133pt;}
.yff{bottom:585.869600pt;}
.ydc{bottom:592.805600pt;}
.yc{bottom:593.280267pt;}
.y3b{bottom:593.817600pt;}
.y7c{bottom:594.434133pt;}
.y149{bottom:594.482933pt;}
.yb2{bottom:595.149733pt;}
.y153{bottom:596.605600pt;}
.yfe{bottom:597.199600pt;}
.y3a{bottom:607.156267pt;}
.y7b{bottom:607.766133pt;}
.y148{bottom:607.816267pt;}
.yb{bottom:607.944267pt;}
.yb1{bottom:608.481733pt;}
.yfd{bottom:608.529600pt;}
.yfc{bottom:619.859600pt;}
.y39{bottom:620.488267pt;}
.y7a{bottom:621.098133pt;}
.yb0{bottom:621.813733pt;}
.ya{bottom:622.608267pt;}
.y152{bottom:623.941600pt;}
.yfb{bottom:631.189600pt;}
.y147{bottom:631.820267pt;}
.y38{bottom:633.820267pt;}
.y79{bottom:634.430133pt;}
.yaf{bottom:635.145733pt;}
.yfa{bottom:642.519600pt;}
.yda{bottom:644.908400pt;}
.y146{bottom:645.152267pt;}
.y37{bottom:647.152267pt;}
.y78{bottom:647.763467pt;}
.y9{bottom:649.274933pt;}
.yf9{bottom:653.849600pt;}
.yd9{bottom:658.240400pt;}
.y145{bottom:658.484267pt;}
.y36{bottom:660.484267pt;}
.y77{bottom:661.096800pt;}
.yf8{bottom:665.179600pt;}
.y8{bottom:665.274933pt;}
.yd8{bottom:671.573733pt;}
.y144{bottom:671.816267pt;}
.y32{bottom:672.933333pt;}
.y35{bottom:673.816267pt;}
.y76{bottom:674.430267pt;}
.yf7{bottom:676.509600pt;}
.yd7{bottom:684.905733pt;}
.y143{bottom:685.149600pt;}
.y75{bottom:687.762267pt;}
.yf6{bottom:687.839600pt;}
.y31{bottom:691.600000pt;}
.y7{bottom:694.592267pt;}
.yf5{bottom:699.169600pt;}
.y142{bottom:709.154933pt;}
.y30{bottom:710.266667pt;}
.yf4{bottom:710.499600pt;}
.y74{bottom:714.490933pt;}
.yf3{bottom:721.829600pt;}
.y141{bottom:722.486933pt;}
.y60{bottom:727.305733pt;}
.y73{bottom:727.822933pt;}
.yf2{bottom:733.159600pt;}
.y6{bottom:734.597600pt;}
.y140{bottom:735.818933pt;}
.y72{bottom:741.154933pt;}
.yf1{bottom:744.489600pt;}
.y13f{bottom:749.150933pt;}
.y71{bottom:754.486933pt;}
.yf0{bottom:755.819600pt;}
.y13e{bottom:762.482933pt;}
.yef{bottom:767.149600pt;}
.y70{bottom:767.818933pt;}
.y5{bottom:774.602933pt;}
.y13d{bottom:775.816267pt;}
.yee{bottom:778.482933pt;}
.y6f{bottom:781.150933pt;}
.y6e{bottom:794.484267pt;}
.y13c{bottom:799.866267pt;}
.y6d{bottom:807.817600pt;}
.yed{bottom:807.824267pt;}
.y13b{bottom:811.196267pt;}
.y4{bottom:814.608267pt;}
.y6c{bottom:821.156267pt;}
.y13a{bottom:822.526267pt;}
.y33{bottom:823.475200pt;}
.y139{bottom:833.856267pt;}
.y6b{bottom:834.488267pt;}
.y138{bottom:845.186267pt;}
.y6a{bottom:847.820267pt;}
.y137{bottom:856.516267pt;}
.y69{bottom:861.152267pt;}
.y136{bottom:867.846267pt;}
.y68{bottom:874.484267pt;}
.y135{bottom:879.176267pt;}
.y67{bottom:887.817600pt;}
.yec{bottom:887.818933pt;}
.y134{bottom:890.506267pt;}
.yeb{bottom:901.150933pt;}
.y66{bottom:901.153600pt;}
.y133{bottom:901.836267pt;}
.y132{bottom:913.166267pt;}
.y65{bottom:914.485600pt;}
.yea{bottom:914.486933pt;}
.y131{bottom:924.496267pt;}
.y64{bottom:927.817600pt;}
.ye9{bottom:927.818933pt;}
.y130{bottom:935.826267pt;}
.y63{bottom:941.150933pt;}
.y12f{bottom:947.156267pt;}
.y62{bottom:954.484267pt;}
.y12e{bottom:958.486267pt;}
.y61{bottom:967.816267pt;}
.y12d{bottom:969.816267pt;}
.y34{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.he{height:21.193555pt;}
.h18{height:26.656000pt;}
.h19{height:30.538667pt;}
.h3{height:30.687500pt;}
.h10{height:32.605469pt;}
.h1b{height:32.720000pt;}
.h7{height:34.523438pt;}
.hf{height:36.585555pt;}
.h2{height:38.359375pt;}
.h8{height:39.264000pt;}
.h4{height:39.318359pt;}
.h9{height:41.729600pt;}
.h16{height:41.788267pt;}
.h17{height:41.798400pt;}
.h1a{height:41.798933pt;}
.h15{height:41.809600pt;}
.h12{height:41.814933pt;}
.hc{height:41.820267pt;}
.hd{height:41.825600pt;}
.ha{height:41.830933pt;}
.h14{height:41.835733pt;}
.hb{height:41.836267pt;}
.h13{height:42.195312pt;}
.h6{height:43.066927pt;}
.h11{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x6{left:57.058933pt;}
.x8{left:63.234933pt;}
.x7{left:70.178933pt;}
.x9{left:125.291333pt;}
.x4{left:207.516800pt;}
.xb{left:211.683467pt;}
.x5{left:223.517200pt;}
.x11{left:266.976667pt;}
.x10{left:329.102400pt;}
.xe{left:348.323467pt;}
.xc{left:452.007467pt;}
.xf{left:509.314133pt;}
.x3{left:519.632533pt;}
.xd{left:524.732800pt;}
.xa{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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