
    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_0630d8e6b5bf9249fab9fe41.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.165000;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_0347d155469b3d2b77fa3cda.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.167000;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_8dc072380f54dbd34e9153f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.262000;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_61804f318ca27534c65f7aff.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.279900;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_bdf5eadf27ed8ce3bd72d172.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.165000;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_1a12f2ffb11e4f795984225a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.184000;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;}
.m27{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.247598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247598,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.247607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247607,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.247995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247995,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248214,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248273,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248311,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248843,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248966,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248982,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249011,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249091,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249432,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249434,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249507,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249634,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249711,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250071,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250364,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250498,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250559,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250943,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251084,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251114,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251218,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251432,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.251820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251820,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251941,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.252025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252025,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);}
.m5e{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);}
.v5{vertical-align:-5.280000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.280000px;}
.v1{vertical-align:33.003000px;}
.v2{vertical-align:66.006000px;}
.v3{vertical-align:99.009000px;}
.lse{letter-spacing:-3.300000px;}
.ls23{letter-spacing:-1.980000px;}
.ls14{letter-spacing:-1.710000px;}
.ls13{letter-spacing:-1.596000px;}
.ls1c{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.462000px;}
.ls1a{letter-spacing:-0.396000px;}
.ls1b{letter-spacing:-0.330000px;}
.ls16{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.264000px;}
.lsc{letter-spacing:-0.198000px;}
.ls1f{letter-spacing:-0.171000px;}
.lsd{letter-spacing:-0.132000px;}
.ls20{letter-spacing:-0.114000px;}
.ls6{letter-spacing:-0.066000px;}
.ls4{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.057000px;}
.ls8{letter-spacing:0.066000px;}
.ls3{letter-spacing:0.132000px;}
.ls2{letter-spacing:0.198000px;}
.lsa{letter-spacing:0.264000px;}
.ls15{letter-spacing:0.330000px;}
.ls9{letter-spacing:0.396000px;}
.ls1e{letter-spacing:0.399000px;}
.ls19{letter-spacing:0.528000px;}
.ls5{letter-spacing:0.600000px;}
.ls17{letter-spacing:0.660000px;}
.ls1{letter-spacing:0.720000px;}
.lsb{letter-spacing:1.080000px;}
.ls0{letter-spacing:1.350000px;}
.ls21{letter-spacing:1.914000px;}
.ls22{letter-spacing:1.980000px;}
.ls12{letter-spacing:203.034000px;}
.ls11{letter-spacing:203.661000px;}
.lsf{letter-spacing:205.542000px;}
.ls10{letter-spacing:206.625000px;}
.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;}
}
.ws10{word-spacing:-16.632000px;}
.wsa7{word-spacing:-13.992000px;}
.ws12{word-spacing:-13.878000px;}
.ws0{word-spacing:-13.860000px;}
.wsa5{word-spacing:-13.794000px;}
.ws1{word-spacing:-12.804000px;}
.ws66{word-spacing:-12.798000px;}
.ws43{word-spacing:-12.528000px;}
.ws76{word-spacing:-12.258000px;}
.ws2c{word-spacing:-11.970000px;}
.wsa6{word-spacing:-11.880000px;}
.ws9b{word-spacing:-11.856000px;}
.ws92{word-spacing:-11.514000px;}
.ws85{word-spacing:-11.115000px;}
.ws56{word-spacing:-2.970000px;}
.ws68{word-spacing:-2.904000px;}
.wsa{word-spacing:-2.838000px;}
.ws9{word-spacing:-2.772000px;}
.ws6d{word-spacing:-2.706000px;}
.ws5b{word-spacing:-2.640000px;}
.ws73{word-spacing:-2.574000px;}
.ws1a{word-spacing:-2.508000px;}
.ws8d{word-spacing:-2.451000px;}
.wsb0{word-spacing:-2.442000px;}
.ws9d{word-spacing:-2.394000px;}
.ws6c{word-spacing:-2.244000px;}
.ws8e{word-spacing:-2.223000px;}
.ws81{word-spacing:-2.178000px;}
.ws95{word-spacing:-2.166000px;}
.ws7f{word-spacing:-2.112000px;}
.ws94{word-spacing:-2.052000px;}
.ws5f{word-spacing:-2.046000px;}
.ws16{word-spacing:-1.914000px;}
.ws17{word-spacing:-1.848000px;}
.ws90{word-spacing:-1.824000px;}
.wsa4{word-spacing:-1.782000px;}
.ws15{word-spacing:-1.716000px;}
.ws11{word-spacing:-1.584000px;}
.ws57{word-spacing:-1.518000px;}
.ws6b{word-spacing:-1.452000px;}
.ws78{word-spacing:-1.386000px;}
.ws2{word-spacing:-1.350000px;}
.ws67{word-spacing:-1.320000px;}
.wsae{word-spacing:-1.254000px;}
.ws8f{word-spacing:-1.197000px;}
.wse{word-spacing:-1.188000px;}
.ws96{word-spacing:-1.140000px;}
.wsf{word-spacing:-1.122000px;}
.wsad{word-spacing:-1.056000px;}
.ws20{word-spacing:-0.990000px;}
.ws7d{word-spacing:-0.858000px;}
.ws58{word-spacing:-0.792000px;}
.ws8{word-spacing:-0.720000px;}
.ws22{word-spacing:-0.660000px;}
.wsaa{word-spacing:-0.600000px;}
.ws8b{word-spacing:-0.570000px;}
.ws5d{word-spacing:-0.528000px;}
.ws19{word-spacing:-0.462000px;}
.ws5{word-spacing:-0.399000px;}
.wsa3{word-spacing:-0.396000px;}
.ws1e{word-spacing:-0.264000px;}
.wsa0{word-spacing:-0.198000px;}
.ws1f{word-spacing:-0.132000px;}
.ws40{word-spacing:-0.066000px;}
.ws7{word-spacing:-0.057000px;}
.ws3{word-spacing:0.000000px;}
.wsd{word-spacing:0.066000px;}
.ws9c{word-spacing:0.114000px;}
.ws1c{word-spacing:0.132000px;}
.ws21{word-spacing:0.198000px;}
.ws1d{word-spacing:0.330000px;}
.wsb1{word-spacing:0.462000px;}
.ws97{word-spacing:0.513000px;}
.ws27{word-spacing:0.594000px;}
.ws74{word-spacing:0.726000px;}
.wsa2{word-spacing:0.792000px;}
.wsaf{word-spacing:0.858000px;}
.ws93{word-spacing:0.912000px;}
.ws72{word-spacing:0.924000px;}
.ws18{word-spacing:0.990000px;}
.ws62{word-spacing:1.056000px;}
.ws25{word-spacing:1.122000px;}
.ws4{word-spacing:1.254000px;}
.ws86{word-spacing:1.320000px;}
.ws7b{word-spacing:1.386000px;}
.ws65{word-spacing:1.452000px;}
.ws69{word-spacing:1.518000px;}
.wsa8{word-spacing:1.539000px;}
.ws3f{word-spacing:1.650000px;}
.ws42{word-spacing:1.710000px;}
.ws5a{word-spacing:1.716000px;}
.ws83{word-spacing:1.848000px;}
.ws8a{word-spacing:1.881000px;}
.ws7e{word-spacing:1.914000px;}
.ws63{word-spacing:1.980000px;}
.ws61{word-spacing:2.046000px;}
.ws89{word-spacing:2.052000px;}
.wsa9{word-spacing:2.109000px;}
.ws7a{word-spacing:2.112000px;}
.ws23{word-spacing:2.178000px;}
.ws6a{word-spacing:2.244000px;}
.wsb{word-spacing:2.376000px;}
.ws84{word-spacing:2.442000px;}
.ws14{word-spacing:2.574000px;}
.ws6{word-spacing:2.622000px;}
.wsab{word-spacing:2.640000px;}
.wsac{word-spacing:2.706000px;}
.wsa1{word-spacing:2.838000px;}
.ws24{word-spacing:2.904000px;}
.ws88{word-spacing:2.964000px;}
.ws41{word-spacing:2.970000px;}
.ws71{word-spacing:3.036000px;}
.ws87{word-spacing:3.192000px;}
.ws77{word-spacing:3.234000px;}
.ws9e{word-spacing:3.249000px;}
.ws26{word-spacing:3.300000px;}
.ws98{word-spacing:3.306000px;}
.ws59{word-spacing:3.432000px;}
.ws13{word-spacing:3.696000px;}
.ws99{word-spacing:3.705000px;}
.ws60{word-spacing:3.762000px;}
.ws6f{word-spacing:3.828000px;}
.ws91{word-spacing:3.933000px;}
.ws7c{word-spacing:3.960000px;}
.ws8c{word-spacing:3.990000px;}
.ws64{word-spacing:4.026000px;}
.ws82{word-spacing:4.158000px;}
.ws70{word-spacing:4.356000px;}
.ws9f{word-spacing:4.422000px;}
.ws5e{word-spacing:4.488000px;}
.wsc{word-spacing:4.554000px;}
.ws1b{word-spacing:4.620000px;}
.ws75{word-spacing:9.570000px;}
.ws2b{word-spacing:32.034000px;}
.ws29{word-spacing:38.874000px;}
.ws35{word-spacing:85.785000px;}
.ws4c{word-spacing:88.806000px;}
.ws37{word-spacing:97.242000px;}
.ws2e{word-spacing:130.815000px;}
.ws2d{word-spacing:135.090000px;}
.ws2a{word-spacing:144.096000px;}
.ws3e{word-spacing:152.133000px;}
.ws50{word-spacing:154.812000px;}
.ws30{word-spacing:155.667000px;}
.ws52{word-spacing:159.372000px;}
.ws46{word-spacing:160.455000px;}
.ws4e{word-spacing:162.735000px;}
.ws4b{word-spacing:164.274000px;}
.ws49{word-spacing:165.015000px;}
.ws38{word-spacing:171.969000px;}
.ws2f{word-spacing:173.394000px;}
.ws36{word-spacing:175.731000px;}
.ws3a{word-spacing:176.529000px;}
.ws34{word-spacing:177.213000px;}
.ws32{word-spacing:177.954000px;}
.ws54{word-spacing:181.545000px;}
.ws44{word-spacing:182.058000px;}
.ws51{word-spacing:184.338000px;}
.ws3d{word-spacing:185.592000px;}
.ws3b{word-spacing:187.359000px;}
.ws47{word-spacing:188.271000px;}
.ws39{word-spacing:192.090000px;}
.ws79{word-spacing:202.158000px;}
.ws33{word-spacing:286.083000px;}
.ws48{word-spacing:316.578000px;}
.ws45{word-spacing:319.827000px;}
.ws4d{word-spacing:325.983000px;}
.ws4a{word-spacing:614.118000px;}
.ws53{word-spacing:643.758000px;}
.ws4f{word-spacing:644.613000px;}
.ws3c{word-spacing:650.598000px;}
.ws31{word-spacing:729.771000px;}
.ws55{word-spacing:750.462000px;}
.ws6e{word-spacing:1864.678200px;}
.ws9a{word-spacing:1867.540200px;}
.ws5c{word-spacing:1869.214200px;}
.ws28{word-spacing:1869.808200px;}
.ws80{word-spacing:1874.668200px;}
._d{margin-left:-2620.296000px;}
._2d{margin-left:-2618.946000px;}
._48{margin-left:-202.158000px;}
._4{margin-left:-21.642000px;}
._50{margin-left:-17.466163px;}
._4e{margin-left:-14.961000px;}
._7{margin-left:-13.476000px;}
._c{margin-left:-11.159749px;}
._4c{margin-left:-10.080000px;}
._4d{margin-left:-9.000000px;}
._6{margin-left:-7.560000px;}
._9{margin-left:-6.108000px;}
._b{margin-left:-4.680000px;}
._2{margin-left:-3.570000px;}
._5{margin-left:-2.550000px;}
._3{margin-left:-1.530000px;}
._0{width:1.080000px;}
._1{width:2.160000px;}
._8{width:3.570000px;}
._a{width:5.322000px;}
._4f{width:16.272000px;}
._10{width:45.375000px;}
._28{width:47.223000px;}
._31{width:49.275000px;}
._e{width:55.746000px;}
._37{width:75.360000px;}
._30{width:76.494000px;}
._45{width:78.054000px;}
._25{width:83.019000px;}
._23{width:90.630000px;}
._24{width:96.387000px;}
._1c{width:103.740000px;}
._2a{width:107.160000px;}
._1b{width:108.699000px;}
._29{width:112.119000px;}
._13{width:115.083000px;}
._19{width:116.892000px;}
._27{width:118.545000px;}
._12{width:120.042000px;}
._41{width:125.532000px;}
._14{width:128.535000px;}
._1d{width:139.107000px;}
._2f{width:141.303000px;}
._15{width:146.262000px;}
._46{width:150.336000px;}
._f{width:157.254000px;}
._11{width:164.487000px;}
._1e{width:167.637000px;}
._2e{width:169.404000px;}
._22{width:180.348000px;}
._17{width:183.141000px;}
._18{width:186.732000px;}
._20{width:200.241000px;}
._47{width:202.158000px;}
._16{width:204.060000px;}
._1a{width:210.102000px;}
._35{width:223.254000px;}
._43{width:264.324000px;}
._2b{width:329.232000px;}
._42{width:337.068000px;}
._21{width:359.955000px;}
._34{width:413.682000px;}
._49{width:443.742000px;}
._3b{width:501.384000px;}
._4a{width:504.234000px;}
._3c{width:548.364000px;}
._26{width:704.007000px;}
._2c{width:717.687000px;}
._1f{width:734.958000px;}
._39{width:970.866000px;}
._40{width:1099.752000px;}
._3d{width:1191.684000px;}
._3a{width:1198.176000px;}
._4b{width:1238.544000px;}
._32{width:1265.088000px;}
._33{width:1311.438000px;}
._44{width:1446.588000px;}
._38{width:1659.792000px;}
._36{width:1672.944000px;}
._3e{width:1739.166000px;}
._3f{width:1865.556000px;}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:89.716500px;}
.ya8{bottom:89.735850px;}
.yc7{bottom:89.749650px;}
.y23{bottom:109.700850px;}
.ya7{bottom:109.717350px;}
.yc6{bottom:109.731150px;}
.y22{bottom:129.685050px;}
.ya6{bottom:129.698850px;}
.y12f{bottom:129.702300px;}
.yc5{bottom:129.712650px;}
.ye9{bottom:129.723600px;}
.y103{bottom:129.726450px;}
.y7c{bottom:137.962800px;}
.y21{bottom:149.669250px;}
.y14c{bottom:149.672100px;}
.ya5{bottom:149.680350px;}
.y12e{bottom:149.680800px;}
.yc4{bottom:149.694150px;}
.ye8{bottom:149.705100px;}
.y102{bottom:149.707950px;}
.y7b{bottom:154.464300px;}
.y142{bottom:157.613100px;}
.y20{bottom:169.653600px;}
.y45{bottom:169.659000px;}
.y12d{bottom:169.659300px;}
.ya4{bottom:169.661850px;}
.yc3{bottom:169.675650px;}
.ydb{bottom:169.686600px;}
.y101{bottom:169.689450px;}
.y141{bottom:175.610850px;}
.y79{bottom:176.808300px;}
.y7a{bottom:185.059050px;}
.y1f{bottom:189.637800px;}
.y44{bottom:189.640500px;}
.ya3{bottom:189.643350px;}
.yc2{bottom:189.657150px;}
.yda{bottom:189.668100px;}
.y100{bottom:189.670950px;}
.y78{bottom:193.309800px;}
.y140{bottom:193.608600px;}
.y1e{bottom:209.622000px;}
.ya2{bottom:209.624850px;}
.y14b{bottom:209.641350px;}
.yd9{bottom:209.649600px;}
.yff{bottom:209.652450px;}
.y13f{bottom:211.606350px;}
.y43{bottom:229.606350px;}
.y12c{bottom:229.617900px;}
.yc1{bottom:229.620150px;}
.y14a{bottom:229.622850px;}
.yd8{bottom:229.631100px;}
.y77{bottom:232.155300px;}
.y76{bottom:248.656800px;}
.y42{bottom:249.590550px;}
.y1d{bottom:249.594900px;}
.y12b{bottom:249.596400px;}
.yc0{bottom:249.601650px;}
.y149{bottom:249.604350px;}
.yd7{bottom:249.612600px;}
.yfe{bottom:249.615450px;}
.y75{bottom:267.851550px;}
.y11c{bottom:269.569350px;}
.y1c{bottom:269.574900px;}
.y13e{bottom:269.577600px;}
.ybf{bottom:269.583150px;}
.y148{bottom:269.585850px;}
.y12a{bottom:269.586600px;}
.yd6{bottom:269.594100px;}
.yfd{bottom:269.596950px;}
.y74{bottom:284.353050px;}
.ya1{bottom:289.559100px;}
.y41{bottom:289.564650px;}
.y129{bottom:289.565100px;}
.y147{bottom:289.567350px;}
.yd5{bottom:289.575600px;}
.yfc{bottom:289.578450px;}
.y73{bottom:303.547800px;}
.y13d{bottom:309.543300px;}
.y40{bottom:309.546150px;}
.y146{bottom:309.548850px;}
.yd4{bottom:309.557100px;}
.yfb{bottom:309.559950px;}
.ya0{bottom:309.562650px;}
.y128{bottom:309.572100px;}
.y72{bottom:320.049300px;}
.y6e{bottom:328.300050px;}
.y1b{bottom:329.527650px;}
.y11b{bottom:329.530350px;}
.yd3{bottom:329.538600px;}
.yfa{bottom:329.541450px;}
.y9f{bottom:329.544150px;}
.y127{bottom:329.550600px;}
.y71{bottom:336.550800px;}
.y6d{bottom:344.801550px;}
.y1a{bottom:349.511850px;}
.y13c{bottom:349.514550px;}
.yd2{bottom:349.520100px;}
.y9e{bottom:349.525650px;}
.y126{bottom:349.529100px;}
.y70{bottom:353.052300px;}
.y19{bottom:369.496050px;}
.ybe{bottom:369.498900px;}
.yd1{bottom:369.501600px;}
.yf9{bottom:369.504450px;}
.y9d{bottom:369.507150px;}
.y125{bottom:369.507600px;}
.y6f{bottom:369.553800px;}
.y6c{bottom:388.748550px;}
.y18{bottom:389.480400px;}
.yd0{bottom:389.483100px;}
.yf8{bottom:389.485950px;}
.y124{bottom:389.486100px;}
.y9c{bottom:389.488650px;}
.y11a{bottom:389.546400px;}
.y6b{bottom:405.250050px;}
.y17{bottom:409.464600px;}
.yf7{bottom:409.467450px;}
.y9b{bottom:409.470150px;}
.y67{bottom:413.500800px;}
.y6a{bottom:421.751550px;}
.y16{bottom:429.448950px;}
.y9a{bottom:429.451650px;}
.y13b{bottom:429.454350px;}
.ybd{bottom:429.470850px;}
.y119{bottom:429.509400px;}
.y66{bottom:430.002300px;}
.y69{bottom:438.253050px;}
.y3f{bottom:449.433150px;}
.y15{bottom:449.435850px;}
.y123{bottom:449.438850px;}
.ybc{bottom:449.452350px;}
.y118{bottom:449.490900px;}
.y68{bottom:454.754550px;}
.y14{bottom:469.417350px;}
.y145{bottom:469.420200px;}
.y3e{bottom:469.425600px;}
.ybb{bottom:469.433850px;}
.y117{bottom:469.472400px;}
.y65{bottom:473.949300px;}
.y13{bottom:489.401700px;}
.y3d{bottom:489.407100px;}
.yba{bottom:489.415350px;}
.y116{bottom:489.453900px;}
.y64{bottom:490.450800px;}
.y12{bottom:509.385900px;}
.y3c{bottom:509.388600px;}
.ycf{bottom:509.394150px;}
.yb9{bottom:509.396850px;}
.yf6{bottom:509.413350px;}
.y115{bottom:509.435400px;}
.y63{bottom:509.645550px;}
.y61{bottom:517.896300px;}
.y62{bottom:526.147050px;}
.y3b{bottom:529.370100px;}
.y11{bottom:529.372950px;}
.yce{bottom:529.375650px;}
.y122{bottom:529.393200px;}
.yf5{bottom:529.394850px;}
.y114{bottom:529.416900px;}
.y60{bottom:534.397800px;}
.y10{bottom:549.354450px;}
.ycd{bottom:549.357150px;}
.yb8{bottom:549.359850px;}
.y121{bottom:549.371700px;}
.y113{bottom:549.398400px;}
.y5f{bottom:564.992550px;}
.yf{bottom:569.338650px;}
.yb7{bottom:569.341350px;}
.y13a{bottom:569.346900px;}
.y120{bottom:569.350200px;}
.yf4{bottom:569.357850px;}
.y5d{bottom:573.243300px;}
.y5e{bottom:581.494050px;}
.ye{bottom:589.322850px;}
.y139{bottom:589.328400px;}
.y11f{bottom:589.328700px;}
.y112{bottom:589.361400px;}
.y5c{bottom:589.744800px;}
.y99{bottom:600.947400px;}
.y97{bottom:609.198150px;}
.y3a{bottom:609.307200px;}
.y138{bottom:609.309900px;}
.yf3{bottom:609.320850px;}
.y98{bottom:617.448900px;}
.y5b{bottom:620.339550px;}
.y96{bottom:625.699650px;}
.y59{bottom:628.590300px;}
.yd{bottom:629.291400px;}
.y39{bottom:629.296950px;}
.yf2{bottom:629.302350px;}
.y111{bottom:629.324400px;}
.yb6{bottom:629.327100px;}
.y5a{bottom:636.841050px;}
.y58{bottom:645.091800px;}
.ycc{bottom:649.275600px;}
.y38{bottom:649.278450px;}
.yf1{bottom:649.283850px;}
.y110{bottom:649.305900px;}
.yb5{bottom:649.308600px;}
.ye7{bottom:649.311450px;}
.y11e{bottom:651.259950px;}
.y95{bottom:653.145150px;}
.y37{bottom:669.259950px;}
.ycb{bottom:669.265350px;}
.y10f{bottom:669.287400px;}
.yb4{bottom:669.290100px;}
.y94{bottom:669.646650px;}
.y57{bottom:672.537300px;}
.y93{bottom:688.841400px;}
.y56{bottom:689.038800px;}
.y36{bottom:689.244150px;}
.yca{bottom:689.246850px;}
.y137{bottom:689.263500px;}
.yb3{bottom:689.271600px;}
.ye6{bottom:689.274450px;}
.y91{bottom:697.092150px;}
.y92{bottom:705.342900px;}
.y55{bottom:705.540300px;}
.y35{bottom:709.228350px;}
.y136{bottom:709.245000px;}
.y10e{bottom:709.250400px;}
.ye5{bottom:709.255950px;}
.y90{bottom:713.593650px;}
.y50{bottom:713.791050px;}
.yc{bottom:716.539200px;}
.y54{bottom:722.041800px;}
.y34{bottom:729.212700px;}
.y11d{bottom:729.218250px;}
.y135{bottom:729.226500px;}
.y10d{bottom:729.231900px;}
.yb2{bottom:729.234600px;}
.ye4{bottom:729.237450px;}
.y4f{bottom:730.292550px;}
.yb{bottom:734.539200px;}
.y53{bottom:738.543300px;}
.y8f{bottom:741.039150px;}
.y33{bottom:749.196900px;}
.yf0{bottom:749.199750px;}
.y134{bottom:749.208000px;}
.y10c{bottom:749.213400px;}
.ye3{bottom:749.218950px;}
.y144{bottom:752.539200px;}
.y52{bottom:755.044800px;}
.y8e{bottom:757.540650px;}
.yc9{bottom:769.181250px;}
.y32{bottom:769.186650px;}
.y133{bottom:769.189500px;}
.y10b{bottom:769.194900px;}
.yb1{bottom:769.197600px;}
.y143{bottom:770.539200px;}
.y51{bottom:771.546300px;}
.y8d{bottom:776.735400px;}
.y8b{bottom:784.986150px;}
.yef{bottom:789.165450px;}
.y31{bottom:789.168150px;}
.y132{bottom:789.171000px;}
.y10a{bottom:789.176400px;}
.yb0{bottom:789.179100px;}
.ye2{bottom:789.181950px;}
.y8c{bottom:793.236900px;}
.ya{bottom:795.067950px;}
.y4e{bottom:796.013550px;}
.y8a{bottom:801.487650px;}
.y30{bottom:809.149650px;}
.yee{bottom:809.152500px;}
.y109{bottom:809.157900px;}
.yaf{bottom:809.160600px;}
.ye1{bottom:809.163450px;}
.y9{bottom:813.065700px;}
.y2f{bottom:829.134000px;}
.y108{bottom:829.139400px;}
.yae{bottom:829.142100px;}
.ye0{bottom:829.144950px;}
.y8{bottom:831.063450px;}
.y4d{bottom:831.118200px;}
.y89{bottom:837.967650px;}
.y87{bottom:846.218400px;}
.y7{bottom:849.061200px;}
.yc8{bottom:849.118200px;}
.y107{bottom:849.120900px;}
.yad{bottom:849.123600px;}
.ydf{bottom:849.126450px;}
.y2e{bottom:849.137400px;}
.y88{bottom:854.469150px;}
.y86{bottom:862.719900px;}
.y6{bottom:867.058950px;}
.y4c{bottom:869.102400px;}
.yac{bottom:869.105100px;}
.yde{bottom:869.107950px;}
.y2d{bottom:869.118900px;}
.yed{bottom:869.124450px;}
.y5{bottom:885.058950px;}
.y4b{bottom:889.086600px;}
.ydd{bottom:889.089450px;}
.y131{bottom:889.090950px;}
.y2c{bottom:889.100400px;}
.yec{bottom:889.105950px;}
.y85{bottom:899.199900px;}
.y83{bottom:907.450650px;}
.y4a{bottom:909.070950px;}
.y106{bottom:909.079200px;}
.y2b{bottom:909.081900px;}
.yeb{bottom:909.087450px;}
.y84{bottom:915.701400px;}
.y82{bottom:923.952150px;}
.yab{bottom:929.055150px;}
.y49{bottom:929.057850px;}
.y105{bottom:929.060700px;}
.y2a{bottom:929.063400px;}
.yea{bottom:929.068950px;}
.y48{bottom:949.039350px;}
.y104{bottom:949.042200px;}
.y29{bottom:949.044900px;}
.y81{bottom:951.397650px;}
.y4{bottom:954.082650px;}
.y7f{bottom:967.899150px;}
.y47{bottom:969.023700px;}
.y28{bottom:969.026400px;}
.yaa{bottom:969.031950px;}
.y7e{bottom:984.400650px;}
.y27{bottom:989.007900px;}
.y46{bottom:989.010600px;}
.ydc{bottom:989.013450px;}
.y130{bottom:989.013600px;}
.y3{bottom:997.585350px;}
.y80{bottom:1000.902150px;}
.y26{bottom:1008.992100px;}
.ya9{bottom:1008.994950px;}
.y7d{bottom:1025.383650px;}
.y2{bottom:1026.094350px;}
.y25{bottom:1028.976450px;}
.y1{bottom:1082.225850px;}
.h2{height:50.868000px;}
.h9{height:52.098000px;}
.h6{height:55.689000px;}
.h5{height:56.700000px;}
.hd{height:62.172000px;}
.h8{height:64.482000px;}
.h7{height:68.040000px;}
.he{height:69.762000px;}
.h4{height:73.476000px;}
.hb{height:88.692000px;}
.h3{height:96.390000px;}
.ha{height:121.695000px;}
.hc{height:154.698000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x4{left:67.684500px;}
.x3{left:71.157000px;}
.x2{left:72.534000px;}
.x9{left:80.047050px;}
.x7{left:81.268050px;}
.x16{left:88.567500px;}
.x17{left:90.163500px;}
.x5{left:92.861250px;}
.x20{left:93.948450px;}
.xf{left:96.607800px;}
.x14{left:99.215550px;}
.xa{left:100.911300px;}
.x8{left:102.008550px;}
.x18{left:106.736250px;}
.xb{left:273.136800px;}
.x13{left:275.317050px;}
.xe{left:276.727800px;}
.x10{left:279.079050px;}
.x15{left:280.333050px;}
.x19{left:283.664250px;}
.x12{left:285.149550px;}
.x11{left:287.158800px;}
.x1b{left:289.107750px;}
.x1d{left:290.176500px;}
.xd{left:291.348300px;}
.x1c{left:299.838000px;}
.x22{left:409.881600px;}
.x21{left:411.064350px;}
.x1{left:499.169100px;}
.xc{left:583.074300px;}
.x1a{left:591.435750px;}
.x6{left:720.524850px;}
.x1f{left:723.751350px;}
.x1e{left:733.453050px;}
@media print{
.v5{vertical-align:-4.693333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.693333pt;}
.v1{vertical-align:29.336000pt;}
.v2{vertical-align:58.672000pt;}
.v3{vertical-align:88.008000pt;}
.lse{letter-spacing:-2.933333pt;}
.ls23{letter-spacing:-1.760000pt;}
.ls14{letter-spacing:-1.520000pt;}
.ls13{letter-spacing:-1.418667pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.410667pt;}
.ls1a{letter-spacing:-0.352000pt;}
.ls1b{letter-spacing:-0.293333pt;}
.ls16{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.234667pt;}
.lsc{letter-spacing:-0.176000pt;}
.ls1f{letter-spacing:-0.152000pt;}
.lsd{letter-spacing:-0.117333pt;}
.ls20{letter-spacing:-0.101333pt;}
.ls6{letter-spacing:-0.058667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.050667pt;}
.ls8{letter-spacing:0.058667pt;}
.ls3{letter-spacing:0.117333pt;}
.ls2{letter-spacing:0.176000pt;}
.lsa{letter-spacing:0.234667pt;}
.ls15{letter-spacing:0.293333pt;}
.ls9{letter-spacing:0.352000pt;}
.ls1e{letter-spacing:0.354667pt;}
.ls19{letter-spacing:0.469333pt;}
.ls5{letter-spacing:0.533333pt;}
.ls17{letter-spacing:0.586667pt;}
.ls1{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.960000pt;}
.ls0{letter-spacing:1.200000pt;}
.ls21{letter-spacing:1.701333pt;}
.ls22{letter-spacing:1.760000pt;}
.ls12{letter-spacing:180.474667pt;}
.ls11{letter-spacing:181.032000pt;}
.lsf{letter-spacing:182.704000pt;}
.ls10{letter-spacing:183.666667pt;}
.ws10{word-spacing:-14.784000pt;}
.wsa7{word-spacing:-12.437333pt;}
.ws12{word-spacing:-12.336000pt;}
.ws0{word-spacing:-12.320000pt;}
.wsa5{word-spacing:-12.261333pt;}
.ws1{word-spacing:-11.381333pt;}
.ws66{word-spacing:-11.376000pt;}
.ws43{word-spacing:-11.136000pt;}
.ws76{word-spacing:-10.896000pt;}
.ws2c{word-spacing:-10.640000pt;}
.wsa6{word-spacing:-10.560000pt;}
.ws9b{word-spacing:-10.538667pt;}
.ws92{word-spacing:-10.234667pt;}
.ws85{word-spacing:-9.880000pt;}
.ws56{word-spacing:-2.640000pt;}
.ws68{word-spacing:-2.581333pt;}
.wsa{word-spacing:-2.522667pt;}
.ws9{word-spacing:-2.464000pt;}
.ws6d{word-spacing:-2.405333pt;}
.ws5b{word-spacing:-2.346667pt;}
.ws73{word-spacing:-2.288000pt;}
.ws1a{word-spacing:-2.229333pt;}
.ws8d{word-spacing:-2.178667pt;}
.wsb0{word-spacing:-2.170667pt;}
.ws9d{word-spacing:-2.128000pt;}
.ws6c{word-spacing:-1.994667pt;}
.ws8e{word-spacing:-1.976000pt;}
.ws81{word-spacing:-1.936000pt;}
.ws95{word-spacing:-1.925333pt;}
.ws7f{word-spacing:-1.877333pt;}
.ws94{word-spacing:-1.824000pt;}
.ws5f{word-spacing:-1.818667pt;}
.ws16{word-spacing:-1.701333pt;}
.ws17{word-spacing:-1.642667pt;}
.ws90{word-spacing:-1.621333pt;}
.wsa4{word-spacing:-1.584000pt;}
.ws15{word-spacing:-1.525333pt;}
.ws11{word-spacing:-1.408000pt;}
.ws57{word-spacing:-1.349333pt;}
.ws6b{word-spacing:-1.290667pt;}
.ws78{word-spacing:-1.232000pt;}
.ws2{word-spacing:-1.200000pt;}
.ws67{word-spacing:-1.173333pt;}
.wsae{word-spacing:-1.114667pt;}
.ws8f{word-spacing:-1.064000pt;}
.wse{word-spacing:-1.056000pt;}
.ws96{word-spacing:-1.013333pt;}
.wsf{word-spacing:-0.997333pt;}
.wsad{word-spacing:-0.938667pt;}
.ws20{word-spacing:-0.880000pt;}
.ws7d{word-spacing:-0.762667pt;}
.ws58{word-spacing:-0.704000pt;}
.ws8{word-spacing:-0.640000pt;}
.ws22{word-spacing:-0.586667pt;}
.wsaa{word-spacing:-0.533333pt;}
.ws8b{word-spacing:-0.506667pt;}
.ws5d{word-spacing:-0.469333pt;}
.ws19{word-spacing:-0.410667pt;}
.ws5{word-spacing:-0.354667pt;}
.wsa3{word-spacing:-0.352000pt;}
.ws1e{word-spacing:-0.234667pt;}
.wsa0{word-spacing:-0.176000pt;}
.ws1f{word-spacing:-0.117333pt;}
.ws40{word-spacing:-0.058667pt;}
.ws7{word-spacing:-0.050667pt;}
.ws3{word-spacing:0.000000pt;}
.wsd{word-spacing:0.058667pt;}
.ws9c{word-spacing:0.101333pt;}
.ws1c{word-spacing:0.117333pt;}
.ws21{word-spacing:0.176000pt;}
.ws1d{word-spacing:0.293333pt;}
.wsb1{word-spacing:0.410667pt;}
.ws97{word-spacing:0.456000pt;}
.ws27{word-spacing:0.528000pt;}
.ws74{word-spacing:0.645333pt;}
.wsa2{word-spacing:0.704000pt;}
.wsaf{word-spacing:0.762667pt;}
.ws93{word-spacing:0.810667pt;}
.ws72{word-spacing:0.821333pt;}
.ws18{word-spacing:0.880000pt;}
.ws62{word-spacing:0.938667pt;}
.ws25{word-spacing:0.997333pt;}
.ws4{word-spacing:1.114667pt;}
.ws86{word-spacing:1.173333pt;}
.ws7b{word-spacing:1.232000pt;}
.ws65{word-spacing:1.290667pt;}
.ws69{word-spacing:1.349333pt;}
.wsa8{word-spacing:1.368000pt;}
.ws3f{word-spacing:1.466667pt;}
.ws42{word-spacing:1.520000pt;}
.ws5a{word-spacing:1.525333pt;}
.ws83{word-spacing:1.642667pt;}
.ws8a{word-spacing:1.672000pt;}
.ws7e{word-spacing:1.701333pt;}
.ws63{word-spacing:1.760000pt;}
.ws61{word-spacing:1.818667pt;}
.ws89{word-spacing:1.824000pt;}
.wsa9{word-spacing:1.874667pt;}
.ws7a{word-spacing:1.877333pt;}
.ws23{word-spacing:1.936000pt;}
.ws6a{word-spacing:1.994667pt;}
.wsb{word-spacing:2.112000pt;}
.ws84{word-spacing:2.170667pt;}
.ws14{word-spacing:2.288000pt;}
.ws6{word-spacing:2.330667pt;}
.wsab{word-spacing:2.346667pt;}
.wsac{word-spacing:2.405333pt;}
.wsa1{word-spacing:2.522667pt;}
.ws24{word-spacing:2.581333pt;}
.ws88{word-spacing:2.634667pt;}
.ws41{word-spacing:2.640000pt;}
.ws71{word-spacing:2.698667pt;}
.ws87{word-spacing:2.837333pt;}
.ws77{word-spacing:2.874667pt;}
.ws9e{word-spacing:2.888000pt;}
.ws26{word-spacing:2.933333pt;}
.ws98{word-spacing:2.938667pt;}
.ws59{word-spacing:3.050667pt;}
.ws13{word-spacing:3.285333pt;}
.ws99{word-spacing:3.293333pt;}
.ws60{word-spacing:3.344000pt;}
.ws6f{word-spacing:3.402667pt;}
.ws91{word-spacing:3.496000pt;}
.ws7c{word-spacing:3.520000pt;}
.ws8c{word-spacing:3.546667pt;}
.ws64{word-spacing:3.578667pt;}
.ws82{word-spacing:3.696000pt;}
.ws70{word-spacing:3.872000pt;}
.ws9f{word-spacing:3.930667pt;}
.ws5e{word-spacing:3.989333pt;}
.wsc{word-spacing:4.048000pt;}
.ws1b{word-spacing:4.106667pt;}
.ws75{word-spacing:8.506667pt;}
.ws2b{word-spacing:28.474667pt;}
.ws29{word-spacing:34.554667pt;}
.ws35{word-spacing:76.253333pt;}
.ws4c{word-spacing:78.938667pt;}
.ws37{word-spacing:86.437333pt;}
.ws2e{word-spacing:116.280000pt;}
.ws2d{word-spacing:120.080000pt;}
.ws2a{word-spacing:128.085333pt;}
.ws3e{word-spacing:135.229333pt;}
.ws50{word-spacing:137.610667pt;}
.ws30{word-spacing:138.370667pt;}
.ws52{word-spacing:141.664000pt;}
.ws46{word-spacing:142.626667pt;}
.ws4e{word-spacing:144.653333pt;}
.ws4b{word-spacing:146.021333pt;}
.ws49{word-spacing:146.680000pt;}
.ws38{word-spacing:152.861333pt;}
.ws2f{word-spacing:154.128000pt;}
.ws36{word-spacing:156.205333pt;}
.ws3a{word-spacing:156.914667pt;}
.ws34{word-spacing:157.522667pt;}
.ws32{word-spacing:158.181333pt;}
.ws54{word-spacing:161.373333pt;}
.ws44{word-spacing:161.829333pt;}
.ws51{word-spacing:163.856000pt;}
.ws3d{word-spacing:164.970667pt;}
.ws3b{word-spacing:166.541333pt;}
.ws47{word-spacing:167.352000pt;}
.ws39{word-spacing:170.746667pt;}
.ws79{word-spacing:179.696000pt;}
.ws33{word-spacing:254.296000pt;}
.ws48{word-spacing:281.402667pt;}
.ws45{word-spacing:284.290667pt;}
.ws4d{word-spacing:289.762667pt;}
.ws4a{word-spacing:545.882667pt;}
.ws53{word-spacing:572.229333pt;}
.ws4f{word-spacing:572.989333pt;}
.ws3c{word-spacing:578.309333pt;}
.ws31{word-spacing:648.685333pt;}
.ws55{word-spacing:667.077333pt;}
.ws6e{word-spacing:1657.491733pt;}
.ws9a{word-spacing:1660.035733pt;}
.ws5c{word-spacing:1661.523733pt;}
.ws28{word-spacing:1662.051733pt;}
.ws80{word-spacing:1666.371733pt;}
._d{margin-left:-2329.152000pt;}
._2d{margin-left:-2327.952000pt;}
._48{margin-left:-179.696000pt;}
._4{margin-left:-19.237333pt;}
._50{margin-left:-15.525478pt;}
._4e{margin-left:-13.298667pt;}
._7{margin-left:-11.978667pt;}
._c{margin-left:-9.919777pt;}
._4c{margin-left:-8.960000pt;}
._4d{margin-left:-8.000000pt;}
._6{margin-left:-6.720000pt;}
._9{margin-left:-5.429333pt;}
._b{margin-left:-4.160000pt;}
._2{margin-left:-3.173333pt;}
._5{margin-left:-2.266667pt;}
._3{margin-left:-1.360000pt;}
._0{width:0.960000pt;}
._1{width:1.920000pt;}
._8{width:3.173333pt;}
._a{width:4.730667pt;}
._4f{width:14.464000pt;}
._10{width:40.333333pt;}
._28{width:41.976000pt;}
._31{width:43.800000pt;}
._e{width:49.552000pt;}
._37{width:66.986667pt;}
._30{width:67.994667pt;}
._45{width:69.381333pt;}
._25{width:73.794667pt;}
._23{width:80.560000pt;}
._24{width:85.677333pt;}
._1c{width:92.213333pt;}
._2a{width:95.253333pt;}
._1b{width:96.621333pt;}
._29{width:99.661333pt;}
._13{width:102.296000pt;}
._19{width:103.904000pt;}
._27{width:105.373333pt;}
._12{width:106.704000pt;}
._41{width:111.584000pt;}
._14{width:114.253333pt;}
._1d{width:123.650667pt;}
._2f{width:125.602667pt;}
._15{width:130.010667pt;}
._46{width:133.632000pt;}
._f{width:139.781333pt;}
._11{width:146.210667pt;}
._1e{width:149.010667pt;}
._2e{width:150.581333pt;}
._22{width:160.309333pt;}
._17{width:162.792000pt;}
._18{width:165.984000pt;}
._20{width:177.992000pt;}
._47{width:179.696000pt;}
._16{width:181.386667pt;}
._1a{width:186.757333pt;}
._35{width:198.448000pt;}
._43{width:234.954667pt;}
._2b{width:292.650667pt;}
._42{width:299.616000pt;}
._21{width:319.960000pt;}
._34{width:367.717333pt;}
._49{width:394.437333pt;}
._3b{width:445.674667pt;}
._4a{width:448.208000pt;}
._3c{width:487.434667pt;}
._26{width:625.784000pt;}
._2c{width:637.944000pt;}
._1f{width:653.296000pt;}
._39{width:862.992000pt;}
._40{width:977.557333pt;}
._3d{width:1059.274667pt;}
._3a{width:1065.045333pt;}
._4b{width:1100.928000pt;}
._32{width:1124.522667pt;}
._33{width:1165.722667pt;}
._44{width:1285.856000pt;}
._38{width:1475.370667pt;}
._36{width:1487.061333pt;}
._3e{width:1545.925333pt;}
._3f{width:1658.272000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:79.748000pt;}
.ya8{bottom:79.765200pt;}
.yc7{bottom:79.777467pt;}
.y23{bottom:97.511867pt;}
.ya7{bottom:97.526533pt;}
.yc6{bottom:97.538800pt;}
.y22{bottom:115.275600pt;}
.ya6{bottom:115.287867pt;}
.y12f{bottom:115.290933pt;}
.yc5{bottom:115.300133pt;}
.ye9{bottom:115.309867pt;}
.y103{bottom:115.312400pt;}
.y7c{bottom:122.633600pt;}
.y21{bottom:133.039333pt;}
.y14c{bottom:133.041867pt;}
.ya5{bottom:133.049200pt;}
.y12e{bottom:133.049600pt;}
.yc4{bottom:133.061467pt;}
.ye8{bottom:133.071200pt;}
.y102{bottom:133.073733pt;}
.y7b{bottom:137.301600pt;}
.y142{bottom:140.100533pt;}
.y20{bottom:150.803200pt;}
.y45{bottom:150.808000pt;}
.y12d{bottom:150.808267pt;}
.ya4{bottom:150.810533pt;}
.yc3{bottom:150.822800pt;}
.ydb{bottom:150.832533pt;}
.y101{bottom:150.835067pt;}
.y141{bottom:156.098533pt;}
.y79{bottom:157.162933pt;}
.y7a{bottom:164.496933pt;}
.y1f{bottom:168.566933pt;}
.y44{bottom:168.569333pt;}
.ya3{bottom:168.571867pt;}
.yc2{bottom:168.584133pt;}
.yda{bottom:168.593867pt;}
.y100{bottom:168.596400pt;}
.y78{bottom:171.830933pt;}
.y140{bottom:172.096533pt;}
.y1e{bottom:186.330667pt;}
.ya2{bottom:186.333200pt;}
.y14b{bottom:186.347867pt;}
.yd9{bottom:186.355200pt;}
.yff{bottom:186.357733pt;}
.y13f{bottom:188.094533pt;}
.y43{bottom:204.094533pt;}
.y12c{bottom:204.104800pt;}
.yc1{bottom:204.106800pt;}
.y14a{bottom:204.109200pt;}
.yd8{bottom:204.116533pt;}
.y77{bottom:206.360267pt;}
.y76{bottom:221.028267pt;}
.y42{bottom:221.858267pt;}
.y1d{bottom:221.862133pt;}
.y12b{bottom:221.863467pt;}
.yc0{bottom:221.868133pt;}
.y149{bottom:221.870533pt;}
.yd7{bottom:221.877867pt;}
.yfe{bottom:221.880400pt;}
.y75{bottom:238.090267pt;}
.y11c{bottom:239.617200pt;}
.y1c{bottom:239.622133pt;}
.y13e{bottom:239.624533pt;}
.ybf{bottom:239.629467pt;}
.y148{bottom:239.631867pt;}
.y12a{bottom:239.632533pt;}
.yd6{bottom:239.639200pt;}
.yfd{bottom:239.641733pt;}
.y74{bottom:252.758267pt;}
.ya1{bottom:257.385867pt;}
.y41{bottom:257.390800pt;}
.y129{bottom:257.391200pt;}
.y147{bottom:257.393200pt;}
.yd5{bottom:257.400533pt;}
.yfc{bottom:257.403067pt;}
.y73{bottom:269.820267pt;}
.y13d{bottom:275.149600pt;}
.y40{bottom:275.152133pt;}
.y146{bottom:275.154533pt;}
.yd4{bottom:275.161867pt;}
.yfb{bottom:275.164400pt;}
.ya0{bottom:275.166800pt;}
.y128{bottom:275.175200pt;}
.y72{bottom:284.488267pt;}
.y6e{bottom:291.822267pt;}
.y1b{bottom:292.913467pt;}
.y11b{bottom:292.915867pt;}
.yd3{bottom:292.923200pt;}
.yfa{bottom:292.925733pt;}
.y9f{bottom:292.928133pt;}
.y127{bottom:292.933867pt;}
.y71{bottom:299.156267pt;}
.y6d{bottom:306.490267pt;}
.y1a{bottom:310.677200pt;}
.y13c{bottom:310.679600pt;}
.yd2{bottom:310.684533pt;}
.y9e{bottom:310.689467pt;}
.y126{bottom:310.692533pt;}
.y70{bottom:313.824267pt;}
.y19{bottom:328.440933pt;}
.ybe{bottom:328.443467pt;}
.yd1{bottom:328.445867pt;}
.yf9{bottom:328.448400pt;}
.y9d{bottom:328.450800pt;}
.y125{bottom:328.451200pt;}
.y6f{bottom:328.492267pt;}
.y6c{bottom:345.554267pt;}
.y18{bottom:346.204800pt;}
.yd0{bottom:346.207200pt;}
.yf8{bottom:346.209733pt;}
.y124{bottom:346.209867pt;}
.y9c{bottom:346.212133pt;}
.y11a{bottom:346.263467pt;}
.y6b{bottom:360.222267pt;}
.y17{bottom:363.968533pt;}
.yf7{bottom:363.971067pt;}
.y9b{bottom:363.973467pt;}
.y67{bottom:367.556267pt;}
.y6a{bottom:374.890267pt;}
.y16{bottom:381.732400pt;}
.y9a{bottom:381.734800pt;}
.y13b{bottom:381.737200pt;}
.ybd{bottom:381.751867pt;}
.y119{bottom:381.786133pt;}
.y66{bottom:382.224267pt;}
.y69{bottom:389.558267pt;}
.y3f{bottom:399.496133pt;}
.y15{bottom:399.498533pt;}
.y123{bottom:399.501200pt;}
.ybc{bottom:399.513200pt;}
.y118{bottom:399.547467pt;}
.y68{bottom:404.226267pt;}
.y14{bottom:417.259867pt;}
.y145{bottom:417.262400pt;}
.y3e{bottom:417.267200pt;}
.ybb{bottom:417.274533pt;}
.y117{bottom:417.308800pt;}
.y65{bottom:421.288267pt;}
.y13{bottom:435.023733pt;}
.y3d{bottom:435.028533pt;}
.yba{bottom:435.035867pt;}
.y116{bottom:435.070133pt;}
.y64{bottom:435.956267pt;}
.y12{bottom:452.787467pt;}
.y3c{bottom:452.789867pt;}
.ycf{bottom:452.794800pt;}
.yb9{bottom:452.797200pt;}
.yf6{bottom:452.811867pt;}
.y115{bottom:452.831467pt;}
.y63{bottom:453.018267pt;}
.y61{bottom:460.352267pt;}
.y62{bottom:467.686267pt;}
.y3b{bottom:470.551200pt;}
.y11{bottom:470.553733pt;}
.yce{bottom:470.556133pt;}
.y122{bottom:470.571733pt;}
.yf5{bottom:470.573200pt;}
.y114{bottom:470.592800pt;}
.y60{bottom:475.020267pt;}
.y10{bottom:488.315067pt;}
.ycd{bottom:488.317467pt;}
.yb8{bottom:488.319867pt;}
.y121{bottom:488.330400pt;}
.y113{bottom:488.354133pt;}
.y5f{bottom:502.215600pt;}
.yf{bottom:506.078800pt;}
.yb7{bottom:506.081200pt;}
.y13a{bottom:506.086133pt;}
.y120{bottom:506.089067pt;}
.yf4{bottom:506.095867pt;}
.y5d{bottom:509.549600pt;}
.y5e{bottom:516.883600pt;}
.ye{bottom:523.842533pt;}
.y139{bottom:523.847467pt;}
.y11f{bottom:523.847733pt;}
.y112{bottom:523.876800pt;}
.y5c{bottom:524.217600pt;}
.y99{bottom:534.175467pt;}
.y97{bottom:541.509467pt;}
.y3a{bottom:541.606400pt;}
.y138{bottom:541.608800pt;}
.yf3{bottom:541.618533pt;}
.y98{bottom:548.843467pt;}
.y5b{bottom:551.412933pt;}
.y96{bottom:556.177467pt;}
.y59{bottom:558.746933pt;}
.yd{bottom:559.370133pt;}
.y39{bottom:559.375067pt;}
.yf2{bottom:559.379867pt;}
.y111{bottom:559.399467pt;}
.yb6{bottom:559.401867pt;}
.y5a{bottom:566.080933pt;}
.y58{bottom:573.414933pt;}
.ycc{bottom:577.133867pt;}
.y38{bottom:577.136400pt;}
.yf1{bottom:577.141200pt;}
.y110{bottom:577.160800pt;}
.yb5{bottom:577.163200pt;}
.ye7{bottom:577.165733pt;}
.y11e{bottom:578.897733pt;}
.y95{bottom:580.573467pt;}
.y37{bottom:594.897733pt;}
.ycb{bottom:594.902533pt;}
.y10f{bottom:594.922133pt;}
.yb4{bottom:594.924533pt;}
.y94{bottom:595.241467pt;}
.y57{bottom:597.810933pt;}
.y93{bottom:612.303467pt;}
.y56{bottom:612.478933pt;}
.y36{bottom:612.661467pt;}
.yca{bottom:612.663867pt;}
.y137{bottom:612.678667pt;}
.yb3{bottom:612.685867pt;}
.ye6{bottom:612.688400pt;}
.y91{bottom:619.637467pt;}
.y92{bottom:626.971467pt;}
.y55{bottom:627.146933pt;}
.y35{bottom:630.425200pt;}
.y136{bottom:630.440000pt;}
.y10e{bottom:630.444800pt;}
.ye5{bottom:630.449733pt;}
.y90{bottom:634.305467pt;}
.y50{bottom:634.480933pt;}
.yc{bottom:636.923733pt;}
.y54{bottom:641.814933pt;}
.y34{bottom:648.189067pt;}
.y11d{bottom:648.194000pt;}
.y135{bottom:648.201333pt;}
.y10d{bottom:648.206133pt;}
.yb2{bottom:648.208533pt;}
.ye4{bottom:648.211067pt;}
.y4f{bottom:649.148933pt;}
.yb{bottom:652.923733pt;}
.y53{bottom:656.482933pt;}
.y8f{bottom:658.701467pt;}
.y33{bottom:665.952800pt;}
.yf0{bottom:665.955333pt;}
.y134{bottom:665.962667pt;}
.y10c{bottom:665.967467pt;}
.ye3{bottom:665.972400pt;}
.y144{bottom:668.923733pt;}
.y52{bottom:671.150933pt;}
.y8e{bottom:673.369467pt;}
.yc9{bottom:683.716667pt;}
.y32{bottom:683.721467pt;}
.y133{bottom:683.724000pt;}
.y10b{bottom:683.728800pt;}
.yb1{bottom:683.731200pt;}
.y143{bottom:684.923733pt;}
.y51{bottom:685.818933pt;}
.y8d{bottom:690.431467pt;}
.y8b{bottom:697.765467pt;}
.yef{bottom:701.480400pt;}
.y31{bottom:701.482800pt;}
.y132{bottom:701.485333pt;}
.y10a{bottom:701.490133pt;}
.yb0{bottom:701.492533pt;}
.ye2{bottom:701.495067pt;}
.y8c{bottom:705.099467pt;}
.ya{bottom:706.727067pt;}
.y4e{bottom:707.567600pt;}
.y8a{bottom:712.433467pt;}
.y30{bottom:719.244133pt;}
.yee{bottom:719.246667pt;}
.y109{bottom:719.251467pt;}
.yaf{bottom:719.253867pt;}
.ye1{bottom:719.256400pt;}
.y9{bottom:722.725067pt;}
.y2f{bottom:737.008000pt;}
.y108{bottom:737.012800pt;}
.yae{bottom:737.015200pt;}
.ye0{bottom:737.017733pt;}
.y8{bottom:738.723067pt;}
.y4d{bottom:738.771733pt;}
.y89{bottom:744.860133pt;}
.y87{bottom:752.194133pt;}
.y7{bottom:754.721067pt;}
.yc8{bottom:754.771733pt;}
.y107{bottom:754.774133pt;}
.yad{bottom:754.776533pt;}
.ydf{bottom:754.779067pt;}
.y2e{bottom:754.788800pt;}
.y88{bottom:759.528133pt;}
.y86{bottom:766.862133pt;}
.y6{bottom:770.719067pt;}
.y4c{bottom:772.535467pt;}
.yac{bottom:772.537867pt;}
.yde{bottom:772.540400pt;}
.y2d{bottom:772.550133pt;}
.yed{bottom:772.555067pt;}
.y5{bottom:786.719067pt;}
.y4b{bottom:790.299200pt;}
.ydd{bottom:790.301733pt;}
.y131{bottom:790.303067pt;}
.y2c{bottom:790.311467pt;}
.yec{bottom:790.316400pt;}
.y85{bottom:799.288800pt;}
.y83{bottom:806.622800pt;}
.y4a{bottom:808.063067pt;}
.y106{bottom:808.070400pt;}
.y2b{bottom:808.072800pt;}
.yeb{bottom:808.077733pt;}
.y84{bottom:813.956800pt;}
.y82{bottom:821.290800pt;}
.yab{bottom:825.826800pt;}
.y49{bottom:825.829200pt;}
.y105{bottom:825.831733pt;}
.y2a{bottom:825.834133pt;}
.yea{bottom:825.839067pt;}
.y48{bottom:843.590533pt;}
.y104{bottom:843.593067pt;}
.y29{bottom:843.595467pt;}
.y81{bottom:845.686800pt;}
.y4{bottom:848.073467pt;}
.y7f{bottom:860.354800pt;}
.y47{bottom:861.354400pt;}
.y28{bottom:861.356800pt;}
.yaa{bottom:861.361733pt;}
.y7e{bottom:875.022800pt;}
.y27{bottom:879.118133pt;}
.y46{bottom:879.120533pt;}
.ydc{bottom:879.123067pt;}
.y130{bottom:879.123200pt;}
.y3{bottom:886.742533pt;}
.y80{bottom:889.690800pt;}
.y26{bottom:896.881867pt;}
.ya9{bottom:896.884400pt;}
.y7d{bottom:911.452133pt;}
.y2{bottom:912.083867pt;}
.y25{bottom:914.645733pt;}
.y1{bottom:961.978533pt;}
.h2{height:45.216000pt;}
.h9{height:46.309333pt;}
.h6{height:49.501333pt;}
.h5{height:50.400000pt;}
.hd{height:55.264000pt;}
.h8{height:57.317333pt;}
.h7{height:60.480000pt;}
.he{height:62.010667pt;}
.h4{height:65.312000pt;}
.hb{height:78.837333pt;}
.h3{height:85.680000pt;}
.ha{height:108.173333pt;}
.hc{height:137.509333pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x4{left:60.164000pt;}
.x3{left:63.250667pt;}
.x2{left:64.474667pt;}
.x9{left:71.152933pt;}
.x7{left:72.238267pt;}
.x16{left:78.726667pt;}
.x17{left:80.145333pt;}
.x5{left:82.543333pt;}
.x20{left:83.509733pt;}
.xf{left:85.873600pt;}
.x14{left:88.191600pt;}
.xa{left:89.698933pt;}
.x8{left:90.674267pt;}
.x18{left:94.876667pt;}
.xb{left:242.788267pt;}
.x13{left:244.726267pt;}
.xe{left:245.980267pt;}
.x10{left:248.070267pt;}
.x15{left:249.184933pt;}
.x19{left:252.146000pt;}
.x12{left:253.466267pt;}
.x11{left:255.252267pt;}
.x1b{left:256.984667pt;}
.x1d{left:257.934667pt;}
.xd{left:258.976267pt;}
.x1c{left:266.522667pt;}
.x22{left:364.339200pt;}
.x21{left:365.390533pt;}
.x1{left:443.705867pt;}
.xc{left:518.288267pt;}
.x1a{left:525.720667pt;}
.x6{left:640.466533pt;}
.x1f{left:643.334533pt;}
.x1e{left:651.958267pt;}
}




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