
    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_6130ad853120f4057719529f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_cd6bfefd46191e70d55770b4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_2c5d6eca74833758b8046647.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_c83803a623fd8dfe4e66a08e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_1211671681fd46f899ced59d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.364746;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_72f5f7e5bc9f8ed3463bfd0e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_b2875fcb9949d9ea2e739b0e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.281250;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_a3c8546dbd0079d0b344dd8e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.364746;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_55c78d9a7438a22c67bba74a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_f8985510c3b85ef619e42377.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_9c4d5aba064e94b49ece8286.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.311035;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_80961b2105169c484afd793d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;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_1fb02c64c21bd3bcc587e40d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_5bebf3a29ec2ee701c5e7d0d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;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_326166eba3f3271e151736c5.woff2')format("woff");}.fff{font-family:fff;line-height:1.364746;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_77e039f2f976f8bb322251d7.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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_ab5ba133c971d3c8750eb494.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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;}
.m10{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.188119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188119,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.202970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202970,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m3c{transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.260246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260246,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.266026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266026,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.274691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274691,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.275316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275316,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.276718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276718,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.284810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284810,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.288690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288690,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.294521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294521,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.296296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296296,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.313380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313380,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.323718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323718,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.336420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336420,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.336667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336667,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.387097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387097,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.766304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766304,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(1.055556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.055556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.055556,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2b{letter-spacing:-17.836875px;}
.ls2c{letter-spacing:-17.745075px;}
.ls3f{letter-spacing:-15.401925px;}
.ls40{letter-spacing:-14.628075px;}
.ls3e{letter-spacing:-11.250000px;}
.ls47{letter-spacing:-10.501575px;}
.ls2f{letter-spacing:-10.008075px;}
.ls32{letter-spacing:-9.240000px;}
.ls49{letter-spacing:-8.589900px;}
.ls20{letter-spacing:-6.161925px;}
.ls29{letter-spacing:-5.388075px;}
.ls4b{letter-spacing:-5.181300px;}
.ls1b{letter-spacing:-4.908600px;}
.ls26{letter-spacing:-4.620000px;}
.ls34{letter-spacing:-4.614000px;}
.ls4a{letter-spacing:-4.591125px;}
.ls2a{letter-spacing:-4.430700px;}
.ls3d{letter-spacing:-4.361700px;}
.ls4e{letter-spacing:-4.337700px;}
.ls2d{letter-spacing:-3.900150px;}
.ls22{letter-spacing:-3.851925px;}
.ls46{letter-spacing:-3.706200px;}
.ls38{letter-spacing:-3.100800px;}
.ls1f{letter-spacing:-3.078075px;}
.ls31{letter-spacing:-2.324100px;}
.ls30{letter-spacing:-2.310000px;}
.ls37{letter-spacing:-2.147850px;}
.ls48{letter-spacing:-1.956150px;}
.ls35{letter-spacing:-1.946700px;}
.ls36{letter-spacing:-1.901475px;}
.ls21{letter-spacing:-1.541925px;}
.ls44{letter-spacing:-1.463475px;}
.ls1d{letter-spacing:-1.366875px;}
.ls41{letter-spacing:-1.264050px;}
.ls3a{letter-spacing:-0.793800px;}
.ls1e{letter-spacing:-0.768075px;}
.ls2e{letter-spacing:-0.750000px;}
.ls16{letter-spacing:-0.722850px;}
.ls19{letter-spacing:-0.698475px;}
.ls45{letter-spacing:-0.696000px;}
.ls27{letter-spacing:-0.690300px;}
.ls17{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.707850px;}
.ls0{letter-spacing:0.722850px;}
.ls8{letter-spacing:0.768075px;}
.ls4d{letter-spacing:0.778050px;}
.ls3{letter-spacing:1.436550px;}
.ls33{letter-spacing:1.482000px;}
.ls43{letter-spacing:1.518825px;}
.ls7{letter-spacing:1.541925px;}
.ls18{letter-spacing:2.159400px;}
.ls23{letter-spacing:2.280000px;}
.ls5{letter-spacing:2.310000px;}
.ls3b{letter-spacing:2.365500px;}
.ls1a{letter-spacing:2.552700px;}
.ls2{letter-spacing:2.882250px;}
.lsb{letter-spacing:3.078075px;}
.ls6{letter-spacing:3.851925px;}
.ls25{letter-spacing:4.007250px;}
.ls24{letter-spacing:4.088250px;}
.lsd{letter-spacing:4.620000px;}
.lsc{letter-spacing:5.388075px;}
.ls1c{letter-spacing:5.400000px;}
.ls28{letter-spacing:6.002025px;}
.lsf{letter-spacing:6.161925px;}
.ls3c{letter-spacing:6.537150px;}
.ls9{letter-spacing:6.930000px;}
.ls39{letter-spacing:6.999300px;}
.ls42{letter-spacing:7.016700px;}
.ls1{letter-spacing:7.201050px;}
.ls13{letter-spacing:7.698075px;}
.lse{letter-spacing:8.471925px;}
.ls12{letter-spacing:9.240000px;}
.ls4{letter-spacing:9.369600px;}
.ls11{letter-spacing:10.008075px;}
.lsa{letter-spacing:10.781925px;}
.ls10{letter-spacing:11.550000px;}
.ls14{letter-spacing:12.318075px;}
.ls15{letter-spacing:13.860000px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._1a{margin-left:-57.077748px;}
._11{margin-left:-53.437854px;}
._2e{margin-left:-32.710832px;}
._21{margin-left:-27.057354px;}
._29{margin-left:-24.188148px;}
._19{margin-left:-22.446209px;}
._10{margin-left:-20.116173px;}
._15{margin-left:-17.078047px;}
._1b{margin-left:-14.502026px;}
._13{margin-left:-13.466347px;}
._20{margin-left:-10.532137px;}
._1c{margin-left:-7.045500px;}
._16{margin-left:-4.273500px;}
._27{margin-left:-2.671515px;}
._9{margin-left:-1.276275px;}
._8{width:1.975414px;}
._f{width:3.913987px;}
._4{width:5.078250px;}
._2d{width:6.098036px;}
._6{width:7.161000px;}
._17{width:8.396962px;}
._1{width:9.415350px;}
._d{width:10.731413px;}
._7{width:12.208350px;}
._e{width:13.398980px;}
._a{width:14.472150px;}
._5{width:16.378500px;}
._22{width:17.458189px;}
._b{width:18.491550px;}
._c{width:20.021941px;}
._14{width:21.234675px;}
._24{width:22.255758px;}
._0{width:23.259300px;}
._12{width:24.598056px;}
._3{width:25.665750px;}
._23{width:27.321937px;}
._1d{width:28.420007px;}
._18{width:30.406163px;}
._25{width:31.762644px;}
._1e{width:34.124496px;}
._28{width:36.146495px;}
._1f{width:37.646421px;}
._2{width:38.796000px;}
._26{width:43.302301px;}
._2c{width:47.788125px;}
._2a{width:51.156761px;}
._2b{width:52.963090px;}
._2f{width:87.650255px;}
.fc0{color:transparent;}
.fsc{font-size:22.500000px;}
.fs1b{font-size:39.750000px;}
.fs13{font-size:40.500000px;}
.fs12{font-size:41.250000px;}
.fs18{font-size:42.000000px;}
.fs15{font-size:45.750000px;}
.fs1a{font-size:46.500000px;}
.fs10{font-size:48.750000px;}
.fs2{font-size:50.250000px;}
.fs3{font-size:51.750000px;}
.fs17{font-size:52.500000px;}
.fs1f{font-size:53.250000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:54.750000px;}
.fs9{font-size:56.250000px;}
.fse{font-size:57.000000px;}
.fs8{font-size:57.750000px;}
.fsb{font-size:58.500000px;}
.fsf{font-size:59.250000px;}
.fs14{font-size:60.000000px;}
.fs7{font-size:60.750000px;}
.fs11{font-size:61.022400px;}
.fsa{font-size:61.500000px;}
.fs19{font-size:62.250000px;}
.fsd{font-size:63.000000px;}
.fs16{font-size:64.500000px;}
.fs20{font-size:65.250000px;}
.fs1e{font-size:68.250000px;}
.fs6{font-size:69.000000px;}
.fs1d{font-size:71.250000px;}
.fs1c{font-size:75.750000px;}
.fs0{font-size:91.500000px;}
.fs1{font-size:98.250000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:107.775300px;}
.y32{bottom:108.495450px;}
.y31{bottom:108.495975px;}
.y6a{bottom:123.976350px;}
.y30{bottom:124.694850px;}
.y69{bottom:140.716200px;}
.y2f{bottom:140.895900px;}
.y68{bottom:156.736425px;}
.y2e{bottom:157.095150px;}
.y2d{bottom:157.097325px;}
.y67{bottom:172.935300px;}
.y2c{bottom:173.296200px;}
.y66{bottom:189.136200px;}
.y65{bottom:189.136725px;}
.y2b{bottom:190.215600px;}
.y2a{bottom:190.217850px;}
.y64{bottom:205.335600px;}
.y29{bottom:205.694850px;}
.y63{bottom:221.536500px;}
.y28{bottom:221.895750px;}
.y62{bottom:237.735900px;}
.y61{bottom:237.742687px;}
.y27{bottom:238.095150px;}
.y26{bottom:254.296200px;}
.y60{bottom:254.469825px;}
.y25{bottom:270.495450px;}
.y5f{bottom:270.497625px;}
.y5e{bottom:286.696875px;}
.y24{bottom:287.055750px;}
.y5d{bottom:302.895750px;}
.y5c{bottom:302.896275px;}
.y23{bottom:303.255150px;}
.y5b{bottom:319.095150px;}
.y5a{bottom:319.095638px;}
.y22{bottom:319.456050px;}
.y59{bottom:335.655450px;}
.y58{bottom:335.657512px;}
.y21{bottom:336.016725px;}
.y57{bottom:351.495900px;}
.y20{bottom:352.215600px;}
.y1f{bottom:352.216125px;}
.y1e{bottom:368.415000px;}
.y56{bottom:368.416650px;}
.y55{bottom:384.616050px;}
.y54{bottom:384.618113px;}
.y1d{bottom:384.975300px;}
.y53{bottom:400.456050px;}
.y52{bottom:400.456575px;}
.y1c{bottom:401.176200px;}
.y51{bottom:416.655450px;}
.y1b{bottom:417.375975px;}
.y1a{bottom:433.575338px;}
.y50{bottom:433.577025px;}
.y4f{bottom:449.775900px;}
.y19{bottom:450.135150px;}
.y4e{bottom:465.616050px;}
.y18{bottom:466.336200px;}
.y17{bottom:482.535938px;}
.y4d{bottom:482.537962px;}
.y4c{bottom:498.736838px;}
.y16{bottom:499.095750px;}
.y15{bottom:515.295000px;}
.y4b{bottom:515.295487px;}
.y7f{bottom:523.935300px;}
.y14{bottom:531.496050px;}
.y4a{bottom:531.855300px;}
.y7e{bottom:540.675150px;}
.y13{bottom:548.056725px;}
.y49{bottom:548.590875px;}
.y7d{bottom:557.055750px;}
.y12{bottom:564.255600px;}
.y11{bottom:564.256088px;}
.y48{bottom:564.616987px;}
.y10{bottom:580.816237px;}
.y47{bottom:581.183587px;}
.y7c{bottom:588.375000px;}
.yf{bottom:597.376050px;}
.ye{bottom:597.376537px;}
.y46{bottom:597.916650px;}
.y7b{bottom:604.935637px;}
.yd{bottom:613.936350px;}
.yc{bottom:613.936875px;}
.y7a{bottom:621.495450px;}
.y79{bottom:621.495937px;}
.yb{bottom:630.135750px;}
.ya{bottom:630.136087px;}
.y78{bottom:638.055750px;}
.y9{bottom:646.695900px;}
.y8{bottom:646.696425px;}
.y7{bottom:662.895300px;}
.y45{bottom:662.895787px;}
.y77{bottom:669.735900px;}
.y6{bottom:679.455600px;}
.y44{bottom:679.455938px;}
.y76{bottom:686.296200px;}
.y5{bottom:695.654850px;}
.y43{bottom:696.017925px;}
.y75{bottom:702.854700px;}
.y4{bottom:712.215150px;}
.y42{bottom:712.217175px;}
.y41{bottom:728.416538px;}
.y40{bottom:744.976687px;}
.y3f{bottom:761.536500px;}
.y74{bottom:766.576050px;}
.y3{bottom:770.175150px;}
.y3e{bottom:778.095150px;}
.y72{bottom:783.135037px;}
.y73{bottom:783.136200px;}
.y3d{bottom:794.295862px;}
.y71{bottom:799.694850px;}
.y3c{bottom:810.855675px;}
.y2{bottom:815.895900px;}
.y3b{bottom:827.415487px;}
.y3a{bottom:843.977325px;}
.y70{bottom:849.016350px;}
.y1{bottom:856.936350px;}
.y39{bottom:860.176200px;}
.y38{bottom:876.736500px;}
.y6f{bottom:890.775787px;}
.y37{bottom:893.296650px;}
.y36{bottom:893.297175px;}
.y6e{bottom:907.335600px;}
.y6d{bottom:907.336087px;}
.y35{bottom:909.496537px;}
.y6c{bottom:923.895900px;}
.y34{bottom:926.056687px;}
.y33{bottom:942.616500px;}
.he{height:23.466797px;}
.h29{height:39.012451px;}
.h17{height:39.748535px;}
.h16{height:40.484619px;}
.h25{height:41.220703px;}
.h1e{height:45.213867px;}
.h28{height:48.498047px;}
.h12{height:50.844727px;}
.h24{height:51.525879px;}
.h4{height:52.409180px;}
.h27{height:53.734131px;}
.h5{height:53.973633px;}
.h2c{height:55.177734px;}
.hb{height:55.206299px;}
.h32{height:55.538086px;}
.h18{height:55.590820px;}
.h23{height:55.942383px;}
.h6{height:56.320312px;}
.h37{height:56.332031px;}
.ha{height:56.678467px;}
.h1c{height:56.679817px;}
.h21{height:56.683117px;}
.h20{height:56.695567px;}
.h2a{height:56.702167px;}
.h7{height:57.102539px;}
.h1f{height:57.385986px;}
.hd{height:57.414551px;}
.h10{height:57.445312px;}
.h11{height:58.150635px;}
.h1d{height:58.886719px;}
.h13{height:58.957031px;}
.h2b{height:59.449219px;}
.h1b{height:59.593140px;}
.h9{height:59.622803px;}
.h15{height:59.712891px;}
.h14{height:59.890148px;}
.h36{height:60.231445px;}
.h26{height:61.094971px;}
.h34{height:61.520508px;}
.hf{height:61.831055px;}
.hc{height:61.980469px;}
.h22{height:63.303223px;}
.h35{height:63.360352px;}
.h33{height:64.039307px;}
.h31{height:68.783203px;}
.h8{height:71.964844px;}
.h30{height:74.311523px;}
.h2f{height:79.004883px;}
.h2{height:95.431641px;}
.h3{height:102.471680px;}
.h0{height:1018.352550px;}
.h1{height:1018.500000px;}
.h19{height:1019.792550px;}
.h1a{height:1020.000000px;}
.h2d{height:1025.911050px;}
.h2e{height:1026.000000px;}
.w2{width:681.392550px;}
.w3{width:681.750000px;}
.w1{width:682.500000px;}
.w0{width:682.832550px;}
.w5{width:688.500000px;}
.w4{width:688.592550px;}
.x0{left:0.000000px;}
.x61{left:50.896350px;}
.x6c{left:52.336650px;}
.xf{left:56.296650px;}
.x17{left:58.098862px;}
.x6d{left:71.055750px;}
.x25{left:74.656500px;}
.xb{left:79.336650px;}
.x2b{left:80.416050px;}
.x2a{left:81.497100px;}
.x2d{left:85.457250px;}
.x2{left:87.256800px;}
.x71{left:88.695450px;}
.x56{left:89.776650px;}
.x34{left:90.857550px;}
.xc{left:100.577100px;}
.x38{left:105.257250px;}
.x1{left:107.416050px;}
.x3d{left:110.657550px;}
.x37{left:112.091475px;}
.x46{left:114.256800px;}
.x3{left:115.336200px;}
.x50{left:120.736500px;}
.x1f{left:128.656500px;}
.x40{left:129.737550px;}
.x20{left:132.977400px;}
.x76{left:135.495450px;}
.x3b{left:146.657100px;}
.x78{left:150.615450px;}
.x3c{left:163.217250px;}
.x79{left:166.816500px;}
.x6e{left:179.775900px;}
.x13{left:187.336650px;}
.x5a{left:189.856350px;}
.x51{left:192.376050px;}
.x6f{left:201.375600px;}
.x14{left:203.536050px;}
.x52{left:207.496050px;}
.x11{left:210.376650px;}
.x5b{left:214.336650px;}
.x41{left:221.536650px;}
.x7c{left:224.415600px;}
.x23{left:230.896950px;}
.x4{left:231.976350px;}
.x12{left:234.496050px;}
.x42{left:236.297250px;}
.x74{left:237.735900px;}
.x18{left:249.976950px;}
.x7d{left:253.576050px;}
.x43{left:261.496050px;}
.x77{left:265.456050px;}
.x5{left:266.537100px;}
.x5c{left:273.376050px;}
.xd{left:276.976950px;}
.x1b{left:281.657100px;}
.x6{left:289.936350px;}
.xe{left:292.456050px;}
.x44{left:293.896350px;}
.x1c{left:295.697550px;}
.x6a{left:298.215600px;}
.x66{left:299.655900px;}
.x10{left:302.536650px;}
.x47{left:303.616050px;}
.x6b{left:314.775900px;}
.x45{left:315.856950px;}
.x67{left:317.295600px;}
.x7{left:319.456050px;}
.x48{left:320.537100px;}
.x68{left:333.496650px;}
.x8{left:335.296200px;}
.x3e{left:341.057400px;}
.x7a{left:348.255600px;}
.x5e{left:350.056800px;}
.x3f{left:355.457100px;}
.x57{left:356.536650px;}
.x2e{left:357.976950px;}
.x7b{left:366.256200px;}
.x19{left:371.656500px;}
.x75{left:374.535450px;}
.x9{left:380.657550px;}
.x1a{left:387.857550px;}
.xa{left:389.657100px;}
.x62{left:391.095750px;}
.x72{left:394.335600px;}
.x39{left:395.777550px;}
.x2c{left:401.896350px;}
.x63{left:406.576500px;}
.x73{left:410.536500px;}
.x49{left:411.976950px;}
.x58{left:413.776500px;}
.x3a{left:418.456650px;}
.x4a{left:426.737550px;}
.x2f{left:445.097400px;}
.x7e{left:447.256200px;}
.x5d{left:460.937400px;}
.x7f{left:464.175600px;}
.x69{left:465.616050px;}
.x15{left:468.857550px;}
.x21{left:473.896950px;}
.x28{left:479.297250px;}
.x4b{left:480.376650px;}
.x16{left:485.416050px;}
.x22{left:490.096200px;}
.x4c{left:495.857550px;}
.x32{left:498.736500px;}
.x53{left:508.456050px;}
.x64{left:512.416050px;}
.x26{left:514.576500px;}
.x59{left:515.657550px;}
.x4d{left:518.177250px;}
.x33{left:519.976950px;}
.x1d{left:525.736500px;}
.x54{left:527.536050px;}
.x27{left:531.136800px;}
.x65{left:532.575450px;}
.x4e{left:536.896350px;}
.x1e{left:540.497100px;}
.x29{left:543.016950px;}
.x5f{left:544.816500px;}
.x24{left:553.817550px;}
.x55{left:561.376650px;}
.x60{left:566.416050px;}
.x70{left:572.536500px;}
.x30{left:577.576050px;}
.x31{left:582.617100px;}
.x4f{left:588.737550px;}
.x36{left:603.496650px;}
.x35{left:606.016350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2b{letter-spacing:-15.855000pt;}
.ls2c{letter-spacing:-15.773400pt;}
.ls3f{letter-spacing:-13.690600pt;}
.ls40{letter-spacing:-13.002733pt;}
.ls3e{letter-spacing:-10.000000pt;}
.ls47{letter-spacing:-9.334733pt;}
.ls2f{letter-spacing:-8.896067pt;}
.ls32{letter-spacing:-8.213333pt;}
.ls49{letter-spacing:-7.635467pt;}
.ls20{letter-spacing:-5.477267pt;}
.ls29{letter-spacing:-4.789400pt;}
.ls4b{letter-spacing:-4.605600pt;}
.ls1b{letter-spacing:-4.363200pt;}
.ls26{letter-spacing:-4.106667pt;}
.ls34{letter-spacing:-4.101333pt;}
.ls4a{letter-spacing:-4.081000pt;}
.ls2a{letter-spacing:-3.938400pt;}
.ls3d{letter-spacing:-3.877067pt;}
.ls4e{letter-spacing:-3.855733pt;}
.ls2d{letter-spacing:-3.466800pt;}
.ls22{letter-spacing:-3.423933pt;}
.ls46{letter-spacing:-3.294400pt;}
.ls38{letter-spacing:-2.756267pt;}
.ls1f{letter-spacing:-2.736067pt;}
.ls31{letter-spacing:-2.065867pt;}
.ls30{letter-spacing:-2.053333pt;}
.ls37{letter-spacing:-1.909200pt;}
.ls48{letter-spacing:-1.738800pt;}
.ls35{letter-spacing:-1.730400pt;}
.ls36{letter-spacing:-1.690200pt;}
.ls21{letter-spacing:-1.370600pt;}
.ls44{letter-spacing:-1.300867pt;}
.ls1d{letter-spacing:-1.215000pt;}
.ls41{letter-spacing:-1.123600pt;}
.ls3a{letter-spacing:-0.705600pt;}
.ls1e{letter-spacing:-0.682733pt;}
.ls2e{letter-spacing:-0.666667pt;}
.ls16{letter-spacing:-0.642533pt;}
.ls19{letter-spacing:-0.620867pt;}
.ls45{letter-spacing:-0.618667pt;}
.ls27{letter-spacing:-0.613600pt;}
.ls17{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.629200pt;}
.ls0{letter-spacing:0.642533pt;}
.ls8{letter-spacing:0.682733pt;}
.ls4d{letter-spacing:0.691600pt;}
.ls3{letter-spacing:1.276933pt;}
.ls33{letter-spacing:1.317333pt;}
.ls43{letter-spacing:1.350067pt;}
.ls7{letter-spacing:1.370600pt;}
.ls18{letter-spacing:1.919467pt;}
.ls23{letter-spacing:2.026667pt;}
.ls5{letter-spacing:2.053333pt;}
.ls3b{letter-spacing:2.102667pt;}
.ls1a{letter-spacing:2.269067pt;}
.ls2{letter-spacing:2.562000pt;}
.lsb{letter-spacing:2.736067pt;}
.ls6{letter-spacing:3.423933pt;}
.ls25{letter-spacing:3.562000pt;}
.ls24{letter-spacing:3.634000pt;}
.lsd{letter-spacing:4.106667pt;}
.lsc{letter-spacing:4.789400pt;}
.ls1c{letter-spacing:4.800000pt;}
.ls28{letter-spacing:5.335133pt;}
.lsf{letter-spacing:5.477267pt;}
.ls3c{letter-spacing:5.810800pt;}
.ls9{letter-spacing:6.160000pt;}
.ls39{letter-spacing:6.221600pt;}
.ls42{letter-spacing:6.237067pt;}
.ls1{letter-spacing:6.400933pt;}
.ls13{letter-spacing:6.842733pt;}
.lse{letter-spacing:7.530600pt;}
.ls12{letter-spacing:8.213333pt;}
.ls4{letter-spacing:8.328533pt;}
.ls11{letter-spacing:8.896067pt;}
.lsa{letter-spacing:9.583933pt;}
.ls10{letter-spacing:10.266667pt;}
.ls14{letter-spacing:10.949400pt;}
.ls15{letter-spacing:12.320000pt;}
.ws0{word-spacing:0.000000pt;}
._1a{margin-left:-50.735776pt;}
._11{margin-left:-47.500315pt;}
._2e{margin-left:-29.076295pt;}
._21{margin-left:-24.050981pt;}
._29{margin-left:-21.500576pt;}
._19{margin-left:-19.952186pt;}
._10{margin-left:-17.881043pt;}
._15{margin-left:-15.180486pt;}
._1b{margin-left:-12.890690pt;}
._13{margin-left:-11.970086pt;}
._20{margin-left:-9.361900pt;}
._1c{margin-left:-6.262667pt;}
._16{margin-left:-3.798667pt;}
._27{margin-left:-2.374680pt;}
._9{margin-left:-1.134467pt;}
._8{width:1.755924pt;}
._f{width:3.479100pt;}
._4{width:4.514000pt;}
._2d{width:5.420476pt;}
._6{width:6.365333pt;}
._17{width:7.463966pt;}
._1{width:8.369200pt;}
._d{width:9.539034pt;}
._7{width:10.851867pt;}
._e{width:11.910204pt;}
._a{width:12.864133pt;}
._5{width:14.558667pt;}
._22{width:15.518390pt;}
._b{width:16.436933pt;}
._c{width:17.797281pt;}
._14{width:18.875267pt;}
._24{width:19.782896pt;}
._0{width:20.674933pt;}
._12{width:21.864939pt;}
._3{width:22.814000pt;}
._23{width:24.286166pt;}
._1d{width:25.262228pt;}
._18{width:27.027700pt;}
._25{width:28.233461pt;}
._1e{width:30.332885pt;}
._28{width:32.130218pt;}
._1f{width:33.463485pt;}
._2{width:34.485333pt;}
._26{width:38.490934pt;}
._2c{width:42.478333pt;}
._2a{width:45.472676pt;}
._2b{width:47.078302pt;}
._2f{width:77.911338pt;}
.fsc{font-size:20.000000pt;}
.fs1b{font-size:35.333333pt;}
.fs13{font-size:36.000000pt;}
.fs12{font-size:36.666667pt;}
.fs18{font-size:37.333333pt;}
.fs15{font-size:40.666667pt;}
.fs1a{font-size:41.333333pt;}
.fs10{font-size:43.333333pt;}
.fs2{font-size:44.666667pt;}
.fs3{font-size:46.000000pt;}
.fs17{font-size:46.666667pt;}
.fs1f{font-size:47.333333pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:48.666667pt;}
.fs9{font-size:50.000000pt;}
.fse{font-size:50.666667pt;}
.fs8{font-size:51.333333pt;}
.fsb{font-size:52.000000pt;}
.fsf{font-size:52.666667pt;}
.fs14{font-size:53.333333pt;}
.fs7{font-size:54.000000pt;}
.fs11{font-size:54.242133pt;}
.fsa{font-size:54.666667pt;}
.fs19{font-size:55.333333pt;}
.fsd{font-size:56.000000pt;}
.fs16{font-size:57.333333pt;}
.fs20{font-size:58.000000pt;}
.fs1e{font-size:60.666667pt;}
.fs6{font-size:61.333333pt;}
.fs1d{font-size:63.333333pt;}
.fs1c{font-size:67.333333pt;}
.fs0{font-size:81.333333pt;}
.fs1{font-size:87.333333pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:95.800267pt;}
.y32{bottom:96.440400pt;}
.y31{bottom:96.440867pt;}
.y6a{bottom:110.201200pt;}
.y30{bottom:110.839867pt;}
.y69{bottom:125.081067pt;}
.y2f{bottom:125.240800pt;}
.y68{bottom:139.321267pt;}
.y2e{bottom:139.640133pt;}
.y2d{bottom:139.642067pt;}
.y67{bottom:153.720267pt;}
.y2c{bottom:154.041067pt;}
.y66{bottom:168.121067pt;}
.y65{bottom:168.121533pt;}
.y2b{bottom:169.080533pt;}
.y2a{bottom:169.082533pt;}
.y64{bottom:182.520533pt;}
.y29{bottom:182.839867pt;}
.y63{bottom:196.921333pt;}
.y28{bottom:197.240667pt;}
.y62{bottom:211.320800pt;}
.y61{bottom:211.326833pt;}
.y27{bottom:211.640133pt;}
.y26{bottom:226.041067pt;}
.y60{bottom:226.195400pt;}
.y25{bottom:240.440400pt;}
.y5f{bottom:240.442333pt;}
.y5e{bottom:254.841667pt;}
.y24{bottom:255.160667pt;}
.y5d{bottom:269.240667pt;}
.y5c{bottom:269.241133pt;}
.y23{bottom:269.560133pt;}
.y5b{bottom:283.640133pt;}
.y5a{bottom:283.640567pt;}
.y22{bottom:283.960933pt;}
.y59{bottom:298.360400pt;}
.y58{bottom:298.362233pt;}
.y21{bottom:298.681533pt;}
.y57{bottom:312.440800pt;}
.y20{bottom:313.080533pt;}
.y1f{bottom:313.081000pt;}
.y1e{bottom:327.480000pt;}
.y56{bottom:327.481467pt;}
.y55{bottom:341.880933pt;}
.y54{bottom:341.882767pt;}
.y1d{bottom:342.200267pt;}
.y53{bottom:355.960933pt;}
.y52{bottom:355.961400pt;}
.y1c{bottom:356.601067pt;}
.y51{bottom:370.360400pt;}
.y1b{bottom:371.000867pt;}
.y1a{bottom:385.400300pt;}
.y50{bottom:385.401800pt;}
.y4f{bottom:399.800800pt;}
.y19{bottom:400.120133pt;}
.y4e{bottom:413.880933pt;}
.y18{bottom:414.521067pt;}
.y17{bottom:428.920833pt;}
.y4d{bottom:428.922633pt;}
.y4c{bottom:443.321633pt;}
.y16{bottom:443.640667pt;}
.y15{bottom:458.040000pt;}
.y4b{bottom:458.040433pt;}
.y7f{bottom:465.720267pt;}
.y14{bottom:472.440933pt;}
.y4a{bottom:472.760267pt;}
.y7e{bottom:480.600133pt;}
.y13{bottom:487.161533pt;}
.y49{bottom:487.636333pt;}
.y7d{bottom:495.160667pt;}
.y12{bottom:501.560533pt;}
.y11{bottom:501.560967pt;}
.y48{bottom:501.881767pt;}
.y10{bottom:516.281100pt;}
.y47{bottom:516.607633pt;}
.y7c{bottom:523.000000pt;}
.yf{bottom:531.000933pt;}
.ye{bottom:531.001367pt;}
.y46{bottom:531.481467pt;}
.y7b{bottom:537.720567pt;}
.yd{bottom:545.721200pt;}
.yc{bottom:545.721667pt;}
.y7a{bottom:552.440400pt;}
.y79{bottom:552.440833pt;}
.yb{bottom:560.120667pt;}
.ya{bottom:560.120967pt;}
.y78{bottom:567.160667pt;}
.y9{bottom:574.840800pt;}
.y8{bottom:574.841267pt;}
.y7{bottom:589.240267pt;}
.y45{bottom:589.240700pt;}
.y77{bottom:595.320800pt;}
.y6{bottom:603.960533pt;}
.y44{bottom:603.960833pt;}
.y76{bottom:610.041067pt;}
.y5{bottom:618.359867pt;}
.y43{bottom:618.682600pt;}
.y75{bottom:624.759733pt;}
.y4{bottom:633.080133pt;}
.y42{bottom:633.081933pt;}
.y41{bottom:647.481367pt;}
.y40{bottom:662.201500pt;}
.y3f{bottom:676.921333pt;}
.y74{bottom:681.400933pt;}
.y3{bottom:684.600133pt;}
.y3e{bottom:691.640133pt;}
.y72{bottom:696.120033pt;}
.y73{bottom:696.121067pt;}
.y3d{bottom:706.040767pt;}
.y71{bottom:710.839867pt;}
.y3c{bottom:720.760600pt;}
.y2{bottom:725.240800pt;}
.y3b{bottom:735.480433pt;}
.y3a{bottom:750.202067pt;}
.y70{bottom:754.681200pt;}
.y1{bottom:761.721200pt;}
.y39{bottom:764.601067pt;}
.y38{bottom:779.321333pt;}
.y6f{bottom:791.800700pt;}
.y37{bottom:794.041467pt;}
.y36{bottom:794.041933pt;}
.y6e{bottom:806.520533pt;}
.y6d{bottom:806.520967pt;}
.y35{bottom:808.441367pt;}
.y6c{bottom:821.240800pt;}
.y34{bottom:823.161500pt;}
.y33{bottom:837.881333pt;}
.he{height:20.859375pt;}
.h29{height:34.677734pt;}
.h17{height:35.332031pt;}
.h16{height:35.986328pt;}
.h25{height:36.640625pt;}
.h1e{height:40.190104pt;}
.h28{height:43.109375pt;}
.h12{height:45.195312pt;}
.h24{height:45.800781pt;}
.h4{height:46.585938pt;}
.h27{height:47.763672pt;}
.h5{height:47.976562pt;}
.h2c{height:49.046875pt;}
.hb{height:49.072266pt;}
.h32{height:49.367188pt;}
.h18{height:49.414063pt;}
.h23{height:49.726562pt;}
.h6{height:50.062500pt;}
.h37{height:50.072917pt;}
.ha{height:50.380859pt;}
.h1c{height:50.382059pt;}
.h21{height:50.384993pt;}
.h20{height:50.396059pt;}
.h2a{height:50.401926pt;}
.h7{height:50.757812pt;}
.h1f{height:51.009766pt;}
.hd{height:51.035156pt;}
.h10{height:51.062500pt;}
.h11{height:51.689453pt;}
.h1d{height:52.343750pt;}
.h13{height:52.406250pt;}
.h2b{height:52.843750pt;}
.h1b{height:52.971680pt;}
.h9{height:52.998047pt;}
.h15{height:53.078125pt;}
.h14{height:53.235687pt;}
.h36{height:53.539062pt;}
.h26{height:54.306641pt;}
.h34{height:54.684896pt;}
.hf{height:54.960938pt;}
.hc{height:55.093750pt;}
.h22{height:56.269531pt;}
.h35{height:56.320312pt;}
.h33{height:56.923828pt;}
.h31{height:61.140625pt;}
.h8{height:63.968750pt;}
.h30{height:66.054688pt;}
.h2f{height:70.226562pt;}
.h2{height:84.828125pt;}
.h3{height:91.085938pt;}
.h0{height:905.202267pt;}
.h1{height:905.333333pt;}
.h19{height:906.482267pt;}
.h1a{height:906.666667pt;}
.h2d{height:911.920933pt;}
.h2e{height:912.000000pt;}
.w2{width:605.682267pt;}
.w3{width:606.000000pt;}
.w1{width:606.666667pt;}
.w0{width:606.962267pt;}
.w5{width:612.000000pt;}
.w4{width:612.082267pt;}
.x0{left:0.000000pt;}
.x61{left:45.241200pt;}
.x6c{left:46.521467pt;}
.xf{left:50.041467pt;}
.x17{left:51.643433pt;}
.x6d{left:63.160667pt;}
.x25{left:66.361333pt;}
.xb{left:70.521467pt;}
.x2b{left:71.480933pt;}
.x2a{left:72.441867pt;}
.x2d{left:75.962000pt;}
.x2{left:77.561600pt;}
.x71{left:78.840400pt;}
.x56{left:79.801467pt;}
.x34{left:80.762267pt;}
.xc{left:89.401867pt;}
.x38{left:93.562000pt;}
.x1{left:95.480933pt;}
.x3d{left:98.362267pt;}
.x37{left:99.636867pt;}
.x46{left:101.561600pt;}
.x3{left:102.521067pt;}
.x50{left:107.321333pt;}
.x1f{left:114.361333pt;}
.x40{left:115.322267pt;}
.x20{left:118.202133pt;}
.x76{left:120.440400pt;}
.x3b{left:130.361867pt;}
.x78{left:133.880400pt;}
.x3c{left:145.082000pt;}
.x79{left:148.281333pt;}
.x6e{left:159.800800pt;}
.x13{left:166.521467pt;}
.x5a{left:168.761200pt;}
.x51{left:171.000933pt;}
.x6f{left:179.000533pt;}
.x14{left:180.920933pt;}
.x52{left:184.440933pt;}
.x11{left:187.001467pt;}
.x5b{left:190.521467pt;}
.x41{left:196.921467pt;}
.x7c{left:199.480533pt;}
.x23{left:205.241733pt;}
.x4{left:206.201200pt;}
.x12{left:208.440933pt;}
.x42{left:210.042000pt;}
.x74{left:211.320800pt;}
.x18{left:222.201733pt;}
.x7d{left:225.400933pt;}
.x43{left:232.440933pt;}
.x77{left:235.960933pt;}
.x5{left:236.921867pt;}
.x5c{left:243.000933pt;}
.xd{left:246.201733pt;}
.x1b{left:250.361867pt;}
.x6{left:257.721200pt;}
.xe{left:259.960933pt;}
.x44{left:261.241200pt;}
.x1c{left:262.842267pt;}
.x6a{left:265.080533pt;}
.x66{left:266.360800pt;}
.x10{left:268.921467pt;}
.x47{left:269.880933pt;}
.x6b{left:279.800800pt;}
.x45{left:280.761733pt;}
.x67{left:282.040533pt;}
.x7{left:283.960933pt;}
.x48{left:284.921867pt;}
.x68{left:296.441467pt;}
.x8{left:298.041067pt;}
.x3e{left:303.162133pt;}
.x7a{left:309.560533pt;}
.x5e{left:311.161600pt;}
.x3f{left:315.961867pt;}
.x57{left:316.921467pt;}
.x2e{left:318.201733pt;}
.x7b{left:325.561067pt;}
.x19{left:330.361333pt;}
.x75{left:332.920400pt;}
.x9{left:338.362267pt;}
.x1a{left:344.762267pt;}
.xa{left:346.361867pt;}
.x62{left:347.640667pt;}
.x72{left:350.520533pt;}
.x39{left:351.802267pt;}
.x2c{left:357.241200pt;}
.x63{left:361.401333pt;}
.x73{left:364.921333pt;}
.x49{left:366.201733pt;}
.x58{left:367.801333pt;}
.x3a{left:371.961467pt;}
.x4a{left:379.322267pt;}
.x2f{left:395.642133pt;}
.x7e{left:397.561067pt;}
.x5d{left:409.722133pt;}
.x7f{left:412.600533pt;}
.x69{left:413.880933pt;}
.x15{left:416.762267pt;}
.x21{left:421.241733pt;}
.x28{left:426.042000pt;}
.x4b{left:427.001467pt;}
.x16{left:431.480933pt;}
.x22{left:435.641067pt;}
.x4c{left:440.762267pt;}
.x32{left:443.321333pt;}
.x53{left:451.960933pt;}
.x64{left:455.480933pt;}
.x26{left:457.401333pt;}
.x59{left:458.362267pt;}
.x4d{left:460.602000pt;}
.x33{left:462.201733pt;}
.x1d{left:467.321333pt;}
.x54{left:468.920933pt;}
.x27{left:472.121600pt;}
.x65{left:473.400400pt;}
.x4e{left:477.241200pt;}
.x1e{left:480.441867pt;}
.x29{left:482.681733pt;}
.x5f{left:484.281333pt;}
.x24{left:492.282267pt;}
.x55{left:499.001467pt;}
.x60{left:503.480933pt;}
.x70{left:508.921333pt;}
.x30{left:513.400933pt;}
.x31{left:517.881867pt;}
.x4f{left:523.322267pt;}
.x36{left:536.441467pt;}
.x35{left:538.681200pt;}
}




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