
    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_cd1d3c9b382adb7d6b55eb74.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.975000;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_561122dd490d487a6e745523.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.168000;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_0282ab55007adf883c0f8fa2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.174000;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_b44bcf7960022b3e42c1ec51.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.203900;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_9d7d3c206805db49f4af90ff.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.168000;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_53461bf801105674b3025d26.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.174000;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;}
.m1e{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);}
.m3f{transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.247723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247723,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.247823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247823,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247852,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.247855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247855,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.247873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247873,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248009,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248093,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248152,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248202,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.248261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248261,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248366,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.248418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248418,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248489,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.248509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248509,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248641,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248686,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248691,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248766,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248777,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248784,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.248798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248798,0.000000,0.000000,0.250000,0,0);}
.m61{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);}
.m25{transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.248948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248948,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248959,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248984,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248991,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249098,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);}
.m80{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);}
.m23{transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249234,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249261,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249279,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249327,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.249414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249414,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249607,0.000000,0.000000,0.250000,0,0);}
.m79{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);}
.m7a{transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249686,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m6f{transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,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);}
.m4f{transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);}
.m36{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);}
.m1c{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250249,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250281,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.250351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250351,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250586,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.250843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250843,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.251068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251068,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.251143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251143,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251266,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251441,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251527,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.251561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251561,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.251782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251782,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.252375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252375,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.856800px;}
.ls14{letter-spacing:-5.610000px;}
.lsc{letter-spacing:-3.510000px;}
.ls23{letter-spacing:-1.848000px;}
.ls18{letter-spacing:-1.650000px;}
.ls1e{letter-spacing:-1.077384px;}
.ls2c{letter-spacing:-0.924000px;}
.ls17{letter-spacing:-0.810000px;}
.ls33{letter-spacing:-0.660000px;}
.ls2f{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.528000px;}
.ls15{letter-spacing:-0.462000px;}
.ls19{letter-spacing:-0.396000px;}
.ls6{letter-spacing:-0.330000px;}
.lsd{letter-spacing:-0.264000px;}
.ls8{letter-spacing:-0.198000px;}
.lsf{letter-spacing:-0.192390px;}
.ls5{letter-spacing:-0.132000px;}
.ls2d{letter-spacing:-0.115434px;}
.ls20{letter-spacing:-0.076956px;}
.lse{letter-spacing:-0.066000px;}
.ls2b{letter-spacing:-0.038478px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000600px;}
.ls21{letter-spacing:0.033000px;}
.ls1d{letter-spacing:0.038478px;}
.ls2a{letter-spacing:0.051600px;}
.ls11{letter-spacing:0.066000px;}
.ls22{letter-spacing:0.076956px;}
.ls16{letter-spacing:0.132000px;}
.ls31{letter-spacing:0.153912px;}
.ls30{letter-spacing:0.192390px;}
.lsa{letter-spacing:0.198000px;}
.ls24{letter-spacing:0.231000px;}
.ls10{letter-spacing:0.264000px;}
.ls32{letter-spacing:0.269346px;}
.ls13{letter-spacing:0.270000px;}
.ls28{letter-spacing:0.270600px;}
.lsb{letter-spacing:0.330000px;}
.ls9{letter-spacing:0.396000px;}
.ls29{letter-spacing:0.429000px;}
.ls1f{letter-spacing:0.462000px;}
.ls1a{letter-spacing:0.528000px;}
.ls25{letter-spacing:0.594000px;}
.ls4{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.660000px;}
.ls0{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.726000px;}
.ls2e{letter-spacing:0.904200px;}
.ls27{letter-spacing:0.990000px;}
.ls1c{letter-spacing:1.080000px;}
.ls2{letter-spacing:1.350000px;}
.ls26{letter-spacing:1.973400px;}
.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;}
}
.ws1{word-spacing:-16.302000px;}
.ws7f{word-spacing:-14.190000px;}
.ws95{word-spacing:-14.124000px;}
.ws7d{word-spacing:-13.878000px;}
.ws3{word-spacing:-13.860000px;}
.ws75{word-spacing:-13.728000px;}
.ws2{word-spacing:-13.530000px;}
.wsa0{word-spacing:-13.200000px;}
.ws24{word-spacing:-13.068000px;}
.ws8e{word-spacing:-12.936000px;}
.ws4d{word-spacing:-12.870000px;}
.ws8c{word-spacing:-12.804000px;}
.ws5a{word-spacing:-12.798000px;}
.ws84{word-spacing:-12.738000px;}
.ws4{word-spacing:-12.540000px;}
.ws94{word-spacing:-12.258000px;}
.ws4c{word-spacing:-12.210000px;}
.ws80{word-spacing:-12.012000px;}
.ws0{word-spacing:-11.970000px;}
.ws9c{word-spacing:-8.349726px;}
.ws96{word-spacing:-8.272770px;}
.ws38{word-spacing:-8.250000px;}
.ws97{word-spacing:-8.234292px;}
.ws7e{word-spacing:-8.157336px;}
.ws5{word-spacing:-8.080380px;}
.ws8d{word-spacing:-8.041902px;}
.ws74{word-spacing:-8.003424px;}
.ws8f{word-spacing:-7.964946px;}
.ws5b{word-spacing:-7.887990px;}
.ws65{word-spacing:-7.503210px;}
.ws64{word-spacing:-6.425826px;}
.ws51{word-spacing:-3.762000px;}
.ws56{word-spacing:-3.498000px;}
.ws91{word-spacing:-3.432000px;}
.ws68{word-spacing:-3.300000px;}
.ws52{word-spacing:-3.102000px;}
.wsa{word-spacing:-2.838000px;}
.wsb{word-spacing:-2.772000px;}
.wsf{word-spacing:-2.706000px;}
.ws4e{word-spacing:-2.640000px;}
.ws45{word-spacing:-2.574000px;}
.ws6a{word-spacing:-2.508000px;}
.ws59{word-spacing:-2.442000px;}
.ws6f{word-spacing:-2.376000px;}
.ws33{word-spacing:-2.310000px;}
.ws54{word-spacing:-2.244000px;}
.ws20{word-spacing:-2.178000px;}
.ws90{word-spacing:-2.112000px;}
.ws49{word-spacing:-2.046000px;}
.ws53{word-spacing:-1.980000px;}
.ws44{word-spacing:-1.914000px;}
.ws87{word-spacing:-1.848000px;}
.ws99{word-spacing:-1.782000px;}
.ws92{word-spacing:-1.716000px;}
.wsc{word-spacing:-1.650000px;}
.ws41{word-spacing:-1.584000px;}
.ws6c{word-spacing:-1.518000px;}
.ws2c{word-spacing:-1.452000px;}
.ws12{word-spacing:-1.386000px;}
.ws22{word-spacing:-1.350000px;}
.ws1c{word-spacing:-1.320000px;}
.ws60{word-spacing:-1.254000px;}
.ws7c{word-spacing:-1.188000px;}
.ws61{word-spacing:-1.122000px;}
.ws14{word-spacing:-1.056000px;}
.ws9d{word-spacing:-0.990000px;}
.ws4f{word-spacing:-0.924000px;}
.ws47{word-spacing:-0.858000px;}
.ws43{word-spacing:-0.792000px;}
.ws13{word-spacing:-0.726000px;}
.ws8{word-spacing:-0.720000px;}
.ws16{word-spacing:-0.660000px;}
.ws7{word-spacing:-0.600000px;}
.ws21{word-spacing:-0.594000px;}
.ws31{word-spacing:-0.528000px;}
.ws86{word-spacing:-0.462000px;}
.ws3b{word-spacing:-0.396000px;}
.ws82{word-spacing:-0.330000px;}
.ws9f{word-spacing:-0.264000px;}
.ws3e{word-spacing:-0.198000px;}
.ws3f{word-spacing:-0.132000px;}
.ws4b{word-spacing:-0.066000px;}
.ws69{word-spacing:-0.038478px;}
.ws6{word-spacing:0.000000px;}
.ws93{word-spacing:0.038478px;}
.ws40{word-spacing:0.066000px;}
.ws34{word-spacing:0.132000px;}
.ws2d{word-spacing:0.192390px;}
.ws1d{word-spacing:0.198000px;}
.ws58{word-spacing:0.264000px;}
.ws6e{word-spacing:0.330000px;}
.ws19{word-spacing:0.396000px;}
.ws5e{word-spacing:0.462000px;}
.ws71{word-spacing:0.594000px;}
.ws66{word-spacing:0.660000px;}
.ws11{word-spacing:0.726000px;}
.ws15{word-spacing:0.792000px;}
.ws2e{word-spacing:0.858000px;}
.ws27{word-spacing:0.924000px;}
.ws35{word-spacing:0.990000px;}
.ws36{word-spacing:1.056000px;}
.ws25{word-spacing:1.122000px;}
.ws1a{word-spacing:1.188000px;}
.ws30{word-spacing:1.254000px;}
.ws55{word-spacing:1.386000px;}
.ws6b{word-spacing:1.452000px;}
.ws57{word-spacing:1.518000px;}
.ws46{word-spacing:1.584000px;}
.ws2f{word-spacing:1.650000px;}
.ws28{word-spacing:1.716000px;}
.ws9e{word-spacing:1.782000px;}
.ws37{word-spacing:1.848000px;}
.ws81{word-spacing:1.914000px;}
.ws5d{word-spacing:1.980000px;}
.ws7a{word-spacing:2.046000px;}
.ws17{word-spacing:2.112000px;}
.ws9{word-spacing:2.178000px;}
.ws3c{word-spacing:2.244000px;}
.ws5c{word-spacing:2.310000px;}
.ws6d{word-spacing:2.376000px;}
.ws2b{word-spacing:2.442000px;}
.ws62{word-spacing:2.508000px;}
.ws7b{word-spacing:2.574000px;}
.wsd{word-spacing:2.640000px;}
.ws77{word-spacing:2.706000px;}
.ws48{word-spacing:2.772000px;}
.ws98{word-spacing:2.838000px;}
.ws2a{word-spacing:2.904000px;}
.ws42{word-spacing:2.970000px;}
.ws5f{word-spacing:3.036000px;}
.ws72{word-spacing:3.102000px;}
.ws76{word-spacing:3.168000px;}
.ws50{word-spacing:3.234000px;}
.ws26{word-spacing:3.300000px;}
.ws39{word-spacing:3.366000px;}
.wse{word-spacing:3.432000px;}
.ws67{word-spacing:3.498000px;}
.ws1f{word-spacing:3.564000px;}
.ws8a{word-spacing:3.630000px;}
.ws18{word-spacing:3.696000px;}
.ws1e{word-spacing:3.762000px;}
.ws3a{word-spacing:3.828000px;}
.ws1b{word-spacing:3.894000px;}
.ws89{word-spacing:3.960000px;}
.ws70{word-spacing:4.026000px;}
.ws79{word-spacing:4.158000px;}
.ws78{word-spacing:4.224000px;}
.ws10{word-spacing:4.290000px;}
.ws32{word-spacing:4.422000px;}
.ws88{word-spacing:4.488000px;}
.ws29{word-spacing:4.554000px;}
.ws3d{word-spacing:4.620000px;}
.ws9a{word-spacing:4.884000px;}
.ws85{word-spacing:6.666000px;}
.ws63{word-spacing:1866.891600px;}
.ws83{word-spacing:1869.753600px;}
.ws8b{word-spacing:1870.941600px;}
.ws9b{word-spacing:1871.157600px;}
.ws73{word-spacing:1876.071600px;}
.ws4a{word-spacing:1878.447600px;}
.ws23{word-spacing:1886.331600px;}
._d{margin-left:-2619.486000px;}
._15{margin-left:-2618.136000px;}
._f{margin-left:-18.480000px;}
._13{margin-left:-17.119800px;}
._e{margin-left:-16.104000px;}
._16{margin-left:-14.895000px;}
._c{margin-left:-13.860000px;}
._11{margin-left:-11.769000px;}
._8{margin-left:-10.560000px;}
._3{margin-left:-9.169800px;}
._2{margin-left:-7.599000px;}
._7{margin-left:-6.255600px;}
._4{margin-left:-5.130000px;}
._12{margin-left:-4.125000px;}
._0{margin-left:-3.060000px;}
._b{margin-left:-2.047800px;}
._1{margin-left:-1.030200px;}
._5{width:1.080000px;}
._a{width:2.167800px;}
._6{width:4.095600px;}
._9{width:5.340600px;}
._14{width:7.416000px;}
._10{width:13.853400px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:38.478000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:89.716500px;}
.y6a{bottom:89.719350px;}
.yff{bottom:89.727600px;}
.y4c{bottom:89.735850px;}
.y24{bottom:89.738550px;}
.y69{bottom:109.700850px;}
.yf5{bottom:109.709100px;}
.ycc{bottom:109.714350px;}
.ya6{bottom:109.714500px;}
.y4b{bottom:109.717350px;}
.y23{bottom:109.720050px;}
.y10c{bottom:109.722900px;}
.y68{bottom:129.685050px;}
.yad{bottom:129.687750px;}
.yf4{bottom:129.690600px;}
.ycb{bottom:129.695850px;}
.ya5{bottom:129.696000px;}
.y22{bottom:129.701550px;}
.y10b{bottom:129.704400px;}
.y79{bottom:129.709800px;}
.y88{bottom:149.669250px;}
.yfe{bottom:149.672100px;}
.yca{bottom:149.677350px;}
.ya4{bottom:149.677500px;}
.y4a{bottom:149.680350px;}
.y21{bottom:149.683050px;}
.y78{bottom:149.691300px;}
.y67{bottom:149.696850px;}
.yac{bottom:169.653600px;}
.yd7{bottom:169.656300px;}
.ya3{bottom:169.659000px;}
.y20{bottom:169.664550px;}
.y10a{bottom:169.667400px;}
.y77{bottom:169.672800px;}
.y66{bottom:169.678350px;}
.yab{bottom:189.637800px;}
.yc9{bottom:189.640350px;}
.ya2{bottom:189.640500px;}
.y49{bottom:189.643350px;}
.y1f{bottom:189.646050px;}
.y76{bottom:189.654300px;}
.y65{bottom:189.659850px;}
.yc8{bottom:209.621850px;}
.ya1{bottom:209.622000px;}
.y48{bottom:209.624850px;}
.y1e{bottom:209.627550px;}
.y109{bottom:209.630400px;}
.yef{bottom:209.633100px;}
.y75{bottom:209.635800px;}
.y64{bottom:209.641350px;}
.yc7{bottom:229.606200px;}
.y47{bottom:229.606350px;}
.y1d{bottom:229.609050px;}
.yee{bottom:229.614600px;}
.y74{bottom:229.617300px;}
.y63{bottom:229.622850px;}
.y46{bottom:249.590550px;}
.ya0{bottom:249.593400px;}
.ye4{bottom:249.596100px;}
.y73{bottom:249.598800px;}
.y62{bottom:249.604350px;}
.y1c{bottom:249.620850px;}
.y87{bottom:269.574900px;}
.yc6{bottom:269.577450px;}
.ye3{bottom:269.577600px;}
.y45{bottom:269.580300px;}
.y61{bottom:269.585850px;}
.y108{bottom:269.591400px;}
.y1b{bottom:269.602350px;}
.yc5{bottom:289.558950px;}
.y86{bottom:289.559100px;}
.y44{bottom:289.561800px;}
.y60{bottom:289.567350px;}
.y107{bottom:289.572900px;}
.yd6{bottom:289.575600px;}
.y1a{bottom:289.583850px;}
.yc4{bottom:309.543150px;}
.y43{bottom:309.543300px;}
.y5f{bottom:309.548850px;}
.yaa{bottom:309.551550px;}
.y19{bottom:309.565350px;}
.y42{bottom:329.527650px;}
.y5e{bottom:329.530350px;}
.ya9{bottom:329.533050px;}
.y106{bottom:329.535900px;}
.yd5{bottom:329.538600px;}
.y9f{bottom:329.555100px;}
.yc3{bottom:349.511700px;}
.y5d{bottom:349.511850px;}
.y41{bottom:349.514550px;}
.yd4{bottom:349.520100px;}
.ye2{bottom:349.522950px;}
.y18{bottom:349.528350px;}
.y9e{bottom:349.536600px;}
.yc2{bottom:369.495900px;}
.y5c{bottom:369.496050px;}
.y40{bottom:369.498900px;}
.yd3{bottom:369.501600px;}
.ye1{bottom:369.504450px;}
.y9d{bottom:369.518100px;}
.y5b{bottom:389.480400px;}
.yc1{bottom:389.482950px;}
.y85{bottom:389.483100px;}
.ye0{bottom:389.485950px;}
.y3f{bottom:389.488650px;}
.y17{bottom:389.491350px;}
.y9c{bottom:389.499600px;}
.yc0{bottom:409.464450px;}
.y72{bottom:409.464600px;}
.y84{bottom:409.467450px;}
.y3e{bottom:409.470150px;}
.y16{bottom:409.472850px;}
.ya8{bottom:409.475700px;}
.y9b{bottom:409.481100px;}
.y5a{bottom:409.486650px;}
.ybf{bottom:429.448650px;}
.y71{bottom:429.448950px;}
.y3d{bottom:429.451650px;}
.y15{bottom:429.454350px;}
.ya7{bottom:429.457200px;}
.yed{bottom:429.459900px;}
.y9a{bottom:429.462600px;}
.y59{bottom:429.468150px;}
.yd2{bottom:434.943300px;}
.y3c{bottom:449.433150px;}
.y14{bottom:449.435850px;}
.y70{bottom:449.438700px;}
.yec{bottom:449.441400px;}
.y58{bottom:449.449650px;}
.y105{bottom:449.463450px;}
.y13{bottom:469.417350px;}
.y6f{bottom:469.420200px;}
.yeb{bottom:469.422900px;}
.ybe{bottom:469.425450px;}
.y99{bottom:469.425600px;}
.y3b{bottom:474.911850px;}
.y12{bottom:489.401700px;}
.ybd{bottom:489.406950px;}
.y92{bottom:489.407100px;}
.y57{bottom:489.412650px;}
.y104{bottom:489.426450px;}
.y11{bottom:509.385900px;}
.y91{bottom:509.388600px;}
.yfd{bottom:509.394150px;}
.ybc{bottom:529.369950px;}
.y3a{bottom:529.370100px;}
.y10{bottom:529.372950px;}
.y56{bottom:529.375650px;}
.y90{bottom:529.383900px;}
.y103{bottom:529.389450px;}
.ybb{bottom:549.354150px;}
.yf{bottom:549.354450px;}
.y39{bottom:549.357150px;}
.yf3{bottom:549.362700px;}
.y8f{bottom:549.365400px;}
.y102{bottom:549.370950px;}
.ydf{bottom:549.381900px;}
.yba{bottom:569.338500px;}
.ye{bottom:569.338650px;}
.y55{bottom:569.341350px;}
.yf2{bottom:569.344200px;}
.y8e{bottom:569.346900px;}
.y101{bottom:569.352450px;}
.yde{bottom:569.363400px;}
.y38{bottom:589.322850px;}
.y8d{bottom:589.328400px;}
.yd{bottom:589.331100px;}
.yea{bottom:609.307200px;}
.yb9{bottom:609.309750px;}
.y83{bottom:609.309900px;}
.yc{bottom:609.312600px;}
.y100{bottom:609.315450px;}
.y37{bottom:609.320850px;}
.yd1{bottom:609.323700px;}
.ydd{bottom:609.326400px;}
.yb8{bottom:629.291250px;}
.y98{bottom:629.291400px;}
.yb{bottom:629.294100px;}
.ye9{bottom:629.296950px;}
.y8c{bottom:629.299650px;}
.ydc{bottom:629.307900px;}
.yb7{bottom:649.275450px;}
.ya{bottom:649.275600px;}
.y36{bottom:649.283850px;}
.yd0{bottom:649.286700px;}
.y9{bottom:669.259950px;}
.y8b{bottom:669.262650px;}
.y35{bottom:669.265350px;}
.y97{bottom:669.268200px;}
.ydb{bottom:669.270900px;}
.y8{bottom:689.244150px;}
.yb6{bottom:689.246700px;}
.y34{bottom:689.246850px;}
.yfc{bottom:689.249700px;}
.yda{bottom:689.252400px;}
.ye8{bottom:694.738650px;}
.yb5{bottom:709.228200px;}
.y33{bottom:709.228350px;}
.y96{bottom:709.231200px;}
.y7{bottom:709.233900px;}
.y8a{bottom:714.722850px;}
.yb4{bottom:729.212550px;}
.y32{bottom:729.212700px;}
.y82{bottom:729.220950px;}
.y89{bottom:729.223650px;}
.yfb{bottom:729.226500px;}
.ycf{bottom:729.229200px;}
.y6{bottom:749.196900px;}
.ye7{bottom:749.199750px;}
.y81{bottom:749.202450px;}
.y6e{bottom:749.205150px;}
.yfa{bottom:749.208000px;}
.yce{bottom:749.210700px;}
.y31{bottom:769.181250px;}
.y80{bottom:769.183950px;}
.y54{bottom:769.186650px;}
.yf1{bottom:769.189500px;}
.ycd{bottom:769.192200px;}
.yb3{bottom:769.194900px;}
.y5{bottom:789.165450px;}
.y6d{bottom:789.168150px;}
.yf0{bottom:789.171000px;}
.yd9{bottom:789.173700px;}
.yb2{bottom:789.176400px;}
.y53{bottom:809.149650px;}
.yf9{bottom:809.152500px;}
.y30{bottom:809.155200px;}
.y52{bottom:829.134000px;}
.y2f{bottom:829.136700px;}
.yb1{bottom:829.139400px;}
.yf8{bottom:829.144950px;}
.y2e{bottom:849.118200px;}
.y51{bottom:849.123600px;}
.y95{bottom:849.126450px;}
.y2d{bottom:869.102400px;}
.y50{bottom:869.105100px;}
.y94{bottom:869.107950px;}
.y7f{bottom:869.116200px;}
.ye6{bottom:874.596900px;}
.y4f{bottom:889.086600px;}
.y2c{bottom:889.089450px;}
.y2b{bottom:909.070950px;}
.yb0{bottom:909.076350px;}
.y7e{bottom:909.079200px;}
.y6c{bottom:909.087450px;}
.y4{bottom:918.082650px;}
.y2a{bottom:929.055150px;}
.yaf{bottom:929.057850px;}
.y6b{bottom:929.068950px;}
.y3{bottom:936.082650px;}
.y29{bottom:949.039350px;}
.y7d{bottom:949.042200px;}
.yf7{bottom:949.044900px;}
.yd8{bottom:949.050450px;}
.yae{bottom:969.023550px;}
.y28{bottom:969.023700px;}
.ye5{bottom:969.026400px;}
.y4e{bottom:969.031950px;}
.y7c{bottom:989.007900px;}
.y27{bottom:989.013450px;}
.y2{bottom:997.585350px;}
.y7b{bottom:1008.992100px;}
.y4d{bottom:1008.994950px;}
.y93{bottom:1008.996450px;}
.yf6{bottom:1014.486750px;}
.y1{bottom:1026.094350px;}
.y26{bottom:1028.976450px;}
.y25{bottom:1082.225850px;}
.hb{height:34.668678px;}
.h9{height:34.707156px;}
.h3{height:44.100000px;}
.h8{height:50.868000px;}
.h4{height:51.414000px;}
.h5{height:52.920000px;}
.ha{height:59.466000px;}
.h7{height:59.532000px;}
.h6{height:62.172000px;}
.h2{height:74.970000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.xb{left:67.682400px;}
.x4{left:72.283500px;}
.xc{left:76.188300px;}
.x10{left:77.352900px;}
.x1{left:79.660950px;}
.x2{left:81.518250px;}
.x6{left:88.630650px;}
.xa{left:95.107950px;}
.x5{left:97.201350px;}
.x3{left:105.704850px;}
.x7{left:128.269200px;}
.x8{left:139.102950px;}
.xd{left:268.398450px;}
.xe{left:277.874550px;}
.x15{left:369.559950px;}
.x16{left:377.997750px;}
.x11{left:392.076600px;}
.x12{left:396.050400px;}
.x17{left:399.030300px;}
.x18{left:407.468100px;}
.x13{left:420.057150px;}
.x14{left:424.030950px;}
.x19{left:662.206350px;}
.x1a{left:671.125050px;}
.x9{left:716.056500px;}
.xf{left:719.026500px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.428267pt;}
.ls14{letter-spacing:-4.986667pt;}
.lsc{letter-spacing:-3.120000pt;}
.ls23{letter-spacing:-1.642667pt;}
.ls18{letter-spacing:-1.466667pt;}
.ls1e{letter-spacing:-0.957675pt;}
.ls2c{letter-spacing:-0.821333pt;}
.ls17{letter-spacing:-0.720000pt;}
.ls33{letter-spacing:-0.586667pt;}
.ls2f{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.469333pt;}
.ls15{letter-spacing:-0.410667pt;}
.ls19{letter-spacing:-0.352000pt;}
.ls6{letter-spacing:-0.293333pt;}
.lsd{letter-spacing:-0.234667pt;}
.ls8{letter-spacing:-0.176000pt;}
.lsf{letter-spacing:-0.171013pt;}
.ls5{letter-spacing:-0.117333pt;}
.ls2d{letter-spacing:-0.102608pt;}
.ls20{letter-spacing:-0.068405pt;}
.lse{letter-spacing:-0.058667pt;}
.ls2b{letter-spacing:-0.034203pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000533pt;}
.ls21{letter-spacing:0.029333pt;}
.ls1d{letter-spacing:0.034203pt;}
.ls2a{letter-spacing:0.045867pt;}
.ls11{letter-spacing:0.058667pt;}
.ls22{letter-spacing:0.068405pt;}
.ls16{letter-spacing:0.117333pt;}
.ls31{letter-spacing:0.136811pt;}
.ls30{letter-spacing:0.171013pt;}
.lsa{letter-spacing:0.176000pt;}
.ls24{letter-spacing:0.205333pt;}
.ls10{letter-spacing:0.234667pt;}
.ls32{letter-spacing:0.239419pt;}
.ls13{letter-spacing:0.240000pt;}
.ls28{letter-spacing:0.240533pt;}
.lsb{letter-spacing:0.293333pt;}
.ls9{letter-spacing:0.352000pt;}
.ls29{letter-spacing:0.381333pt;}
.ls1f{letter-spacing:0.410667pt;}
.ls1a{letter-spacing:0.469333pt;}
.ls25{letter-spacing:0.528000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.586667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.645333pt;}
.ls2e{letter-spacing:0.803733pt;}
.ls27{letter-spacing:0.880000pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls2{letter-spacing:1.200000pt;}
.ls26{letter-spacing:1.754133pt;}
.ws1{word-spacing:-14.490667pt;}
.ws7f{word-spacing:-12.613333pt;}
.ws95{word-spacing:-12.554667pt;}
.ws7d{word-spacing:-12.336000pt;}
.ws3{word-spacing:-12.320000pt;}
.ws75{word-spacing:-12.202667pt;}
.ws2{word-spacing:-12.026667pt;}
.wsa0{word-spacing:-11.733333pt;}
.ws24{word-spacing:-11.616000pt;}
.ws8e{word-spacing:-11.498667pt;}
.ws4d{word-spacing:-11.440000pt;}
.ws8c{word-spacing:-11.381333pt;}
.ws5a{word-spacing:-11.376000pt;}
.ws84{word-spacing:-11.322667pt;}
.ws4{word-spacing:-11.146667pt;}
.ws94{word-spacing:-10.896000pt;}
.ws4c{word-spacing:-10.853333pt;}
.ws80{word-spacing:-10.677333pt;}
.ws0{word-spacing:-10.640000pt;}
.ws9c{word-spacing:-7.421979pt;}
.ws96{word-spacing:-7.353573pt;}
.ws38{word-spacing:-7.333333pt;}
.ws97{word-spacing:-7.319371pt;}
.ws7e{word-spacing:-7.250965pt;}
.ws5{word-spacing:-7.182560pt;}
.ws8d{word-spacing:-7.148357pt;}
.ws74{word-spacing:-7.114155pt;}
.ws8f{word-spacing:-7.079952pt;}
.ws5b{word-spacing:-7.011547pt;}
.ws65{word-spacing:-6.669520pt;}
.ws64{word-spacing:-5.711845pt;}
.ws51{word-spacing:-3.344000pt;}
.ws56{word-spacing:-3.109333pt;}
.ws91{word-spacing:-3.050667pt;}
.ws68{word-spacing:-2.933333pt;}
.ws52{word-spacing:-2.757333pt;}
.wsa{word-spacing:-2.522667pt;}
.wsb{word-spacing:-2.464000pt;}
.wsf{word-spacing:-2.405333pt;}
.ws4e{word-spacing:-2.346667pt;}
.ws45{word-spacing:-2.288000pt;}
.ws6a{word-spacing:-2.229333pt;}
.ws59{word-spacing:-2.170667pt;}
.ws6f{word-spacing:-2.112000pt;}
.ws33{word-spacing:-2.053333pt;}
.ws54{word-spacing:-1.994667pt;}
.ws20{word-spacing:-1.936000pt;}
.ws90{word-spacing:-1.877333pt;}
.ws49{word-spacing:-1.818667pt;}
.ws53{word-spacing:-1.760000pt;}
.ws44{word-spacing:-1.701333pt;}
.ws87{word-spacing:-1.642667pt;}
.ws99{word-spacing:-1.584000pt;}
.ws92{word-spacing:-1.525333pt;}
.wsc{word-spacing:-1.466667pt;}
.ws41{word-spacing:-1.408000pt;}
.ws6c{word-spacing:-1.349333pt;}
.ws2c{word-spacing:-1.290667pt;}
.ws12{word-spacing:-1.232000pt;}
.ws22{word-spacing:-1.200000pt;}
.ws1c{word-spacing:-1.173333pt;}
.ws60{word-spacing:-1.114667pt;}
.ws7c{word-spacing:-1.056000pt;}
.ws61{word-spacing:-0.997333pt;}
.ws14{word-spacing:-0.938667pt;}
.ws9d{word-spacing:-0.880000pt;}
.ws4f{word-spacing:-0.821333pt;}
.ws47{word-spacing:-0.762667pt;}
.ws43{word-spacing:-0.704000pt;}
.ws13{word-spacing:-0.645333pt;}
.ws8{word-spacing:-0.640000pt;}
.ws16{word-spacing:-0.586667pt;}
.ws7{word-spacing:-0.533333pt;}
.ws21{word-spacing:-0.528000pt;}
.ws31{word-spacing:-0.469333pt;}
.ws86{word-spacing:-0.410667pt;}
.ws3b{word-spacing:-0.352000pt;}
.ws82{word-spacing:-0.293333pt;}
.ws9f{word-spacing:-0.234667pt;}
.ws3e{word-spacing:-0.176000pt;}
.ws3f{word-spacing:-0.117333pt;}
.ws4b{word-spacing:-0.058667pt;}
.ws69{word-spacing:-0.034203pt;}
.ws6{word-spacing:0.000000pt;}
.ws93{word-spacing:0.034203pt;}
.ws40{word-spacing:0.058667pt;}
.ws34{word-spacing:0.117333pt;}
.ws2d{word-spacing:0.171013pt;}
.ws1d{word-spacing:0.176000pt;}
.ws58{word-spacing:0.234667pt;}
.ws6e{word-spacing:0.293333pt;}
.ws19{word-spacing:0.352000pt;}
.ws5e{word-spacing:0.410667pt;}
.ws71{word-spacing:0.528000pt;}
.ws66{word-spacing:0.586667pt;}
.ws11{word-spacing:0.645333pt;}
.ws15{word-spacing:0.704000pt;}
.ws2e{word-spacing:0.762667pt;}
.ws27{word-spacing:0.821333pt;}
.ws35{word-spacing:0.880000pt;}
.ws36{word-spacing:0.938667pt;}
.ws25{word-spacing:0.997333pt;}
.ws1a{word-spacing:1.056000pt;}
.ws30{word-spacing:1.114667pt;}
.ws55{word-spacing:1.232000pt;}
.ws6b{word-spacing:1.290667pt;}
.ws57{word-spacing:1.349333pt;}
.ws46{word-spacing:1.408000pt;}
.ws2f{word-spacing:1.466667pt;}
.ws28{word-spacing:1.525333pt;}
.ws9e{word-spacing:1.584000pt;}
.ws37{word-spacing:1.642667pt;}
.ws81{word-spacing:1.701333pt;}
.ws5d{word-spacing:1.760000pt;}
.ws7a{word-spacing:1.818667pt;}
.ws17{word-spacing:1.877333pt;}
.ws9{word-spacing:1.936000pt;}
.ws3c{word-spacing:1.994667pt;}
.ws5c{word-spacing:2.053333pt;}
.ws6d{word-spacing:2.112000pt;}
.ws2b{word-spacing:2.170667pt;}
.ws62{word-spacing:2.229333pt;}
.ws7b{word-spacing:2.288000pt;}
.wsd{word-spacing:2.346667pt;}
.ws77{word-spacing:2.405333pt;}
.ws48{word-spacing:2.464000pt;}
.ws98{word-spacing:2.522667pt;}
.ws2a{word-spacing:2.581333pt;}
.ws42{word-spacing:2.640000pt;}
.ws5f{word-spacing:2.698667pt;}
.ws72{word-spacing:2.757333pt;}
.ws76{word-spacing:2.816000pt;}
.ws50{word-spacing:2.874667pt;}
.ws26{word-spacing:2.933333pt;}
.ws39{word-spacing:2.992000pt;}
.wse{word-spacing:3.050667pt;}
.ws67{word-spacing:3.109333pt;}
.ws1f{word-spacing:3.168000pt;}
.ws8a{word-spacing:3.226667pt;}
.ws18{word-spacing:3.285333pt;}
.ws1e{word-spacing:3.344000pt;}
.ws3a{word-spacing:3.402667pt;}
.ws1b{word-spacing:3.461333pt;}
.ws89{word-spacing:3.520000pt;}
.ws70{word-spacing:3.578667pt;}
.ws79{word-spacing:3.696000pt;}
.ws78{word-spacing:3.754667pt;}
.ws10{word-spacing:3.813333pt;}
.ws32{word-spacing:3.930667pt;}
.ws88{word-spacing:3.989333pt;}
.ws29{word-spacing:4.048000pt;}
.ws3d{word-spacing:4.106667pt;}
.ws9a{word-spacing:4.341333pt;}
.ws85{word-spacing:5.925333pt;}
.ws63{word-spacing:1659.459200pt;}
.ws83{word-spacing:1662.003200pt;}
.ws8b{word-spacing:1663.059200pt;}
.ws9b{word-spacing:1663.251200pt;}
.ws73{word-spacing:1667.619200pt;}
.ws4a{word-spacing:1669.731200pt;}
.ws23{word-spacing:1676.739200pt;}
._d{margin-left:-2328.432000pt;}
._15{margin-left:-2327.232000pt;}
._f{margin-left:-16.426667pt;}
._13{margin-left:-15.217600pt;}
._e{margin-left:-14.314667pt;}
._16{margin-left:-13.240000pt;}
._c{margin-left:-12.320000pt;}
._11{margin-left:-10.461333pt;}
._8{margin-left:-9.386667pt;}
._3{margin-left:-8.150933pt;}
._2{margin-left:-6.754667pt;}
._7{margin-left:-5.560533pt;}
._4{margin-left:-4.560000pt;}
._12{margin-left:-3.666667pt;}
._0{margin-left:-2.720000pt;}
._b{margin-left:-1.820267pt;}
._1{margin-left:-0.915733pt;}
._5{width:0.960000pt;}
._a{width:1.926933pt;}
._6{width:3.640533pt;}
._9{width:4.747200pt;}
._14{width:6.592000pt;}
._10{width:12.314133pt;}
.fs5{font-size:34.202667pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:79.748000pt;}
.y6a{bottom:79.750533pt;}
.yff{bottom:79.757867pt;}
.y4c{bottom:79.765200pt;}
.y24{bottom:79.767600pt;}
.y69{bottom:97.511867pt;}
.yf5{bottom:97.519200pt;}
.ycc{bottom:97.523867pt;}
.ya6{bottom:97.524000pt;}
.y4b{bottom:97.526533pt;}
.y23{bottom:97.528933pt;}
.y10c{bottom:97.531467pt;}
.y68{bottom:115.275600pt;}
.yad{bottom:115.278000pt;}
.yf4{bottom:115.280533pt;}
.ycb{bottom:115.285200pt;}
.ya5{bottom:115.285333pt;}
.y22{bottom:115.290267pt;}
.y10b{bottom:115.292800pt;}
.y79{bottom:115.297600pt;}
.y88{bottom:133.039333pt;}
.yfe{bottom:133.041867pt;}
.yca{bottom:133.046533pt;}
.ya4{bottom:133.046667pt;}
.y4a{bottom:133.049200pt;}
.y21{bottom:133.051600pt;}
.y78{bottom:133.058933pt;}
.y67{bottom:133.063867pt;}
.yac{bottom:150.803200pt;}
.yd7{bottom:150.805600pt;}
.ya3{bottom:150.808000pt;}
.y20{bottom:150.812933pt;}
.y10a{bottom:150.815467pt;}
.y77{bottom:150.820267pt;}
.y66{bottom:150.825200pt;}
.yab{bottom:168.566933pt;}
.yc9{bottom:168.569200pt;}
.ya2{bottom:168.569333pt;}
.y49{bottom:168.571867pt;}
.y1f{bottom:168.574267pt;}
.y76{bottom:168.581600pt;}
.y65{bottom:168.586533pt;}
.yc8{bottom:186.330533pt;}
.ya1{bottom:186.330667pt;}
.y48{bottom:186.333200pt;}
.y1e{bottom:186.335600pt;}
.y109{bottom:186.338133pt;}
.yef{bottom:186.340533pt;}
.y75{bottom:186.342933pt;}
.y64{bottom:186.347867pt;}
.yc7{bottom:204.094400pt;}
.y47{bottom:204.094533pt;}
.y1d{bottom:204.096933pt;}
.yee{bottom:204.101867pt;}
.y74{bottom:204.104267pt;}
.y63{bottom:204.109200pt;}
.y46{bottom:221.858267pt;}
.ya0{bottom:221.860800pt;}
.ye4{bottom:221.863200pt;}
.y73{bottom:221.865600pt;}
.y62{bottom:221.870533pt;}
.y1c{bottom:221.885200pt;}
.y87{bottom:239.622133pt;}
.yc6{bottom:239.624400pt;}
.ye3{bottom:239.624533pt;}
.y45{bottom:239.626933pt;}
.y61{bottom:239.631867pt;}
.y108{bottom:239.636800pt;}
.y1b{bottom:239.646533pt;}
.yc5{bottom:257.385733pt;}
.y86{bottom:257.385867pt;}
.y44{bottom:257.388267pt;}
.y60{bottom:257.393200pt;}
.y107{bottom:257.398133pt;}
.yd6{bottom:257.400533pt;}
.y1a{bottom:257.407867pt;}
.yc4{bottom:275.149467pt;}
.y43{bottom:275.149600pt;}
.y5f{bottom:275.154533pt;}
.yaa{bottom:275.156933pt;}
.y19{bottom:275.169200pt;}
.y42{bottom:292.913467pt;}
.y5e{bottom:292.915867pt;}
.ya9{bottom:292.918267pt;}
.y106{bottom:292.920800pt;}
.yd5{bottom:292.923200pt;}
.y9f{bottom:292.937867pt;}
.yc3{bottom:310.677067pt;}
.y5d{bottom:310.677200pt;}
.y41{bottom:310.679600pt;}
.yd4{bottom:310.684533pt;}
.ye2{bottom:310.687067pt;}
.y18{bottom:310.691867pt;}
.y9e{bottom:310.699200pt;}
.yc2{bottom:328.440800pt;}
.y5c{bottom:328.440933pt;}
.y40{bottom:328.443467pt;}
.yd3{bottom:328.445867pt;}
.ye1{bottom:328.448400pt;}
.y9d{bottom:328.460533pt;}
.y5b{bottom:346.204800pt;}
.yc1{bottom:346.207067pt;}
.y85{bottom:346.207200pt;}
.ye0{bottom:346.209733pt;}
.y3f{bottom:346.212133pt;}
.y17{bottom:346.214533pt;}
.y9c{bottom:346.221867pt;}
.yc0{bottom:363.968400pt;}
.y72{bottom:363.968533pt;}
.y84{bottom:363.971067pt;}
.y3e{bottom:363.973467pt;}
.y16{bottom:363.975867pt;}
.ya8{bottom:363.978400pt;}
.y9b{bottom:363.983200pt;}
.y5a{bottom:363.988133pt;}
.ybf{bottom:381.732133pt;}
.y71{bottom:381.732400pt;}
.y3d{bottom:381.734800pt;}
.y15{bottom:381.737200pt;}
.ya7{bottom:381.739733pt;}
.yed{bottom:381.742133pt;}
.y9a{bottom:381.744533pt;}
.y59{bottom:381.749467pt;}
.yd2{bottom:386.616267pt;}
.y3c{bottom:399.496133pt;}
.y14{bottom:399.498533pt;}
.y70{bottom:399.501067pt;}
.yec{bottom:399.503467pt;}
.y58{bottom:399.510800pt;}
.y105{bottom:399.523067pt;}
.y13{bottom:417.259867pt;}
.y6f{bottom:417.262400pt;}
.yeb{bottom:417.264800pt;}
.ybe{bottom:417.267067pt;}
.y99{bottom:417.267200pt;}
.y3b{bottom:422.143867pt;}
.y12{bottom:435.023733pt;}
.ybd{bottom:435.028400pt;}
.y92{bottom:435.028533pt;}
.y57{bottom:435.033467pt;}
.y104{bottom:435.045733pt;}
.y11{bottom:452.787467pt;}
.y91{bottom:452.789867pt;}
.yfd{bottom:452.794800pt;}
.ybc{bottom:470.551067pt;}
.y3a{bottom:470.551200pt;}
.y10{bottom:470.553733pt;}
.y56{bottom:470.556133pt;}
.y90{bottom:470.563467pt;}
.y103{bottom:470.568400pt;}
.ybb{bottom:488.314800pt;}
.yf{bottom:488.315067pt;}
.y39{bottom:488.317467pt;}
.yf3{bottom:488.322400pt;}
.y8f{bottom:488.324800pt;}
.y102{bottom:488.329733pt;}
.ydf{bottom:488.339467pt;}
.yba{bottom:506.078667pt;}
.ye{bottom:506.078800pt;}
.y55{bottom:506.081200pt;}
.yf2{bottom:506.083733pt;}
.y8e{bottom:506.086133pt;}
.y101{bottom:506.091067pt;}
.yde{bottom:506.100800pt;}
.y38{bottom:523.842533pt;}
.y8d{bottom:523.847467pt;}
.yd{bottom:523.849867pt;}
.yea{bottom:541.606400pt;}
.yb9{bottom:541.608667pt;}
.y83{bottom:541.608800pt;}
.yc{bottom:541.611200pt;}
.y100{bottom:541.613733pt;}
.y37{bottom:541.618533pt;}
.yd1{bottom:541.621067pt;}
.ydd{bottom:541.623467pt;}
.yb8{bottom:559.370000pt;}
.y98{bottom:559.370133pt;}
.yb{bottom:559.372533pt;}
.ye9{bottom:559.375067pt;}
.y8c{bottom:559.377467pt;}
.ydc{bottom:559.384800pt;}
.yb7{bottom:577.133733pt;}
.ya{bottom:577.133867pt;}
.y36{bottom:577.141200pt;}
.yd0{bottom:577.143733pt;}
.y9{bottom:594.897733pt;}
.y8b{bottom:594.900133pt;}
.y35{bottom:594.902533pt;}
.y97{bottom:594.905067pt;}
.ydb{bottom:594.907467pt;}
.y8{bottom:612.661467pt;}
.yb6{bottom:612.663733pt;}
.y34{bottom:612.663867pt;}
.yfc{bottom:612.666400pt;}
.yda{bottom:612.668800pt;}
.ye8{bottom:617.545467pt;}
.yb5{bottom:630.425067pt;}
.y33{bottom:630.425200pt;}
.y96{bottom:630.427733pt;}
.y7{bottom:630.430133pt;}
.y8a{bottom:635.309200pt;}
.yb4{bottom:648.188933pt;}
.y32{bottom:648.189067pt;}
.y82{bottom:648.196400pt;}
.y89{bottom:648.198800pt;}
.yfb{bottom:648.201333pt;}
.ycf{bottom:648.203733pt;}
.y6{bottom:665.952800pt;}
.ye7{bottom:665.955333pt;}
.y81{bottom:665.957733pt;}
.y6e{bottom:665.960133pt;}
.yfa{bottom:665.962667pt;}
.yce{bottom:665.965067pt;}
.y31{bottom:683.716667pt;}
.y80{bottom:683.719067pt;}
.y54{bottom:683.721467pt;}
.yf1{bottom:683.724000pt;}
.ycd{bottom:683.726400pt;}
.yb3{bottom:683.728800pt;}
.y5{bottom:701.480400pt;}
.y6d{bottom:701.482800pt;}
.yf0{bottom:701.485333pt;}
.yd9{bottom:701.487733pt;}
.yb2{bottom:701.490133pt;}
.y53{bottom:719.244133pt;}
.yf9{bottom:719.246667pt;}
.y30{bottom:719.249067pt;}
.y52{bottom:737.008000pt;}
.y2f{bottom:737.010400pt;}
.yb1{bottom:737.012800pt;}
.yf8{bottom:737.017733pt;}
.y2e{bottom:754.771733pt;}
.y51{bottom:754.776533pt;}
.y95{bottom:754.779067pt;}
.y2d{bottom:772.535467pt;}
.y50{bottom:772.537867pt;}
.y94{bottom:772.540400pt;}
.y7f{bottom:772.547733pt;}
.ye6{bottom:777.419467pt;}
.y4f{bottom:790.299200pt;}
.y2c{bottom:790.301733pt;}
.y2b{bottom:808.063067pt;}
.yb0{bottom:808.067867pt;}
.y7e{bottom:808.070400pt;}
.y6c{bottom:808.077733pt;}
.y4{bottom:816.073467pt;}
.y2a{bottom:825.826800pt;}
.yaf{bottom:825.829200pt;}
.y6b{bottom:825.839067pt;}
.y3{bottom:832.073467pt;}
.y29{bottom:843.590533pt;}
.y7d{bottom:843.593067pt;}
.yf7{bottom:843.595467pt;}
.yd8{bottom:843.600400pt;}
.yae{bottom:861.354267pt;}
.y28{bottom:861.354400pt;}
.ye5{bottom:861.356800pt;}
.y4e{bottom:861.361733pt;}
.y7c{bottom:879.118133pt;}
.y27{bottom:879.123067pt;}
.y2{bottom:886.742533pt;}
.y7b{bottom:896.881867pt;}
.y4d{bottom:896.884400pt;}
.y93{bottom:896.885733pt;}
.yf6{bottom:901.766000pt;}
.y1{bottom:912.083867pt;}
.y26{bottom:914.645733pt;}
.y25{bottom:961.978533pt;}
.hb{height:30.816603pt;}
.h9{height:30.850805pt;}
.h3{height:39.200000pt;}
.h8{height:45.216000pt;}
.h4{height:45.701333pt;}
.h5{height:47.040000pt;}
.ha{height:52.858667pt;}
.h7{height:52.917333pt;}
.h6{height:55.264000pt;}
.h2{height:66.640000pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.xb{left:60.162133pt;}
.x4{left:64.252000pt;}
.xc{left:67.722933pt;}
.x10{left:68.758133pt;}
.x1{left:70.809733pt;}
.x2{left:72.460667pt;}
.x6{left:78.782800pt;}
.xa{left:84.540400pt;}
.x5{left:86.401200pt;}
.x3{left:93.959867pt;}
.x7{left:114.017067pt;}
.x8{left:123.647067pt;}
.xd{left:238.576400pt;}
.xe{left:246.999600pt;}
.x15{left:328.497733pt;}
.x16{left:335.998000pt;}
.x11{left:348.512533pt;}
.x12{left:352.044800pt;}
.x17{left:354.693600pt;}
.x18{left:362.193867pt;}
.x13{left:373.384133pt;}
.x14{left:376.916400pt;}
.x19{left:588.627867pt;}
.x1a{left:596.555600pt;}
.x9{left:636.494667pt;}
.xf{left:639.134667pt;}
}




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