
    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_fe264d175bdc0c10dcda74a2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959633;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_e44b273ea1720e699dc07900.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.146000;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_a4a6b1b3c581e6a98226bf7a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.038000;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_04dd5999cc3ea0bb678ac43e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.967000;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_5558ef7670f397b87f097d61.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938000;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_67f51eef17a14b94052841c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.811000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_532c33d122c28d0e9c07482b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.679000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b5831ea783599c7d5feb54e4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_52bdd9996b71fcab53b78ecb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.038000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9dbf80a4ba0ff7d2ecb99e5c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.967000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9693ae67b278648467eb6d51.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.038000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9b80a732d77acf84041df3bb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.964000;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;}
.m31{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3f{transform:matrix(0.232347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232347,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.232467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232467,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.243098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243098,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.243264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243264,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.243405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243405,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.243934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243934,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.244034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244034,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.244248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244248,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.244300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244300,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.244434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244434,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.244580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244580,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.244852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244852,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.245286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245286,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.245295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245295,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.245343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245343,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245398,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.245484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245484,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.246227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246227,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.246232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246232,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246364,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246661,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246680,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.246714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246714,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.246830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246830,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.246836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246836,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246865,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.246993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246993,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.247018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247018,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.247345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247345,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247377,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.247632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247632,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247707,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.247791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247791,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248059,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248157,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248191,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m4d{transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.248491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248491,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248523,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m5f{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);}
.m4c{transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.248811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248811,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.248909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248909,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248934,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);}
.m60{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);}
.m4a{transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);}
.m36{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);}
.m28{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249706,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);}
.m62{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);}
.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);}
.m49{transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250341,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m8{transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250802,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.250934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250934,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251018,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.251064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251064,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.251203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251203,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.251402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251402,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251455,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.251598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251598,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.251686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251686,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.251768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251768,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252084,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252116,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.252193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252193,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.252344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252344,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.252347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252347,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.252359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252359,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.252489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252489,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252602,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.252798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252798,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252805,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252977,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253052,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.253252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253252,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.253593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253593,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.253827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253827,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.253839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253839,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.253939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253939,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254075,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.254239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254239,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.254916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254916,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.255032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255032,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.255334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255334,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.255666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255666,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.256316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256316,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.256330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256330,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.256425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256425,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.256868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256868,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.257289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257289,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.981000px;}
.v1{vertical-align:21.978000px;}
.ls32{letter-spacing:-3.132000px;}
.ls14{letter-spacing:-2.484000px;}
.ls47{letter-spacing:-2.376000px;}
.ls15{letter-spacing:-2.052000px;}
.ls11{letter-spacing:-1.944000px;}
.ls30{letter-spacing:-1.890000px;}
.ls48{letter-spacing:-1.836000px;}
.ls12{letter-spacing:-1.296000px;}
.ls16{letter-spacing:-0.972000px;}
.ls2c{letter-spacing:-0.858000px;}
.ls3c{letter-spacing:-0.741000px;}
.ls2f{letter-spacing:-0.726000px;}
.ls31{letter-spacing:-0.702000px;}
.ls2d{letter-spacing:-0.660000px;}
.ls24{letter-spacing:-0.648000px;}
.ls21{letter-spacing:-0.594000px;}
.ls3b{letter-spacing:-0.570000px;}
.ls3d{letter-spacing:-0.513000px;}
.ls2e{letter-spacing:-0.462000px;}
.ls3a{letter-spacing:-0.456000px;}
.ls39{letter-spacing:-0.399000px;}
.ls4b{letter-spacing:-0.396000px;}
.ls38{letter-spacing:-0.342000px;}
.lsf{letter-spacing:-0.264000px;}
.ls3e{letter-spacing:-0.228000px;}
.ls20{letter-spacing:-0.198000px;}
.ls10{letter-spacing:-0.162000px;}
.ls36{letter-spacing:-0.153912px;}
.lsd{letter-spacing:-0.132000px;}
.ls4{letter-spacing:-0.120000px;}
.ls13{letter-spacing:-0.108000px;}
.ls4c{letter-spacing:-0.076956px;}
.lse{letter-spacing:-0.066000px;}
.ls37{letter-spacing:-0.057000px;}
.ls3{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000360px;}
.ls8{letter-spacing:0.000600px;}
.ls43{letter-spacing:0.033000px;}
.ls1a{letter-spacing:0.054000px;}
.ls42{letter-spacing:0.057000px;}
.ls2{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.066000px;}
.ls1d{letter-spacing:0.066878px;}
.ls1e{letter-spacing:0.073012px;}
.ls1f{letter-spacing:0.073043px;}
.ls41{letter-spacing:0.085500px;}
.ls6{letter-spacing:0.099000px;}
.ls29{letter-spacing:0.108000px;}
.ls40{letter-spacing:0.114000px;}
.ls17{letter-spacing:0.132000px;}
.ls26{letter-spacing:0.162000px;}
.ls34{letter-spacing:0.171000px;}
.ls1{letter-spacing:0.192000px;}
.ls5{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.264000px;}
.ls3f{letter-spacing:0.285000px;}
.lsa{letter-spacing:0.320400px;}
.ls9{letter-spacing:0.321000px;}
.ls33{letter-spacing:0.342000px;}
.ls49{letter-spacing:0.372600px;}
.ls35{letter-spacing:0.399000px;}
.ls2a{letter-spacing:0.591000px;}
.ls2b{letter-spacing:0.591600px;}
.ls19{letter-spacing:2.163526px;}
.ls46{letter-spacing:2.179200px;}
.ls45{letter-spacing:2.179800px;}
.ls1c{letter-spacing:2.206627px;}
.ls1b{letter-spacing:2.207221px;}
.ls22{letter-spacing:2.214000px;}
.lsb{letter-spacing:2.251800px;}
.lsc{letter-spacing:2.252400px;}
.ls44{letter-spacing:2.391598px;}
.ls28{letter-spacing:2.416281px;}
.ls27{letter-spacing:2.416875px;}
.ls23{letter-spacing:2.430000px;}
.ls4a{letter-spacing:2.617200px;}
.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;}
}
.ws23{word-spacing:-14.454000px;}
.ws7{word-spacing:-13.200000px;}
.ws18{word-spacing:-11.880000px;}
.ws8{word-spacing:-11.826000px;}
.wsb{word-spacing:-11.718000px;}
.ws30{word-spacing:-11.571000px;}
.ws44{word-spacing:-11.457000px;}
.ws3f{word-spacing:-11.400000px;}
.ws27{word-spacing:-11.124000px;}
.wsd{word-spacing:-10.854000px;}
.ws31{word-spacing:-10.830000px;}
.ws24{word-spacing:-10.800000px;}
.wsa{word-spacing:-10.530000px;}
.ws26{word-spacing:-10.098000px;}
.ws46{word-spacing:-9.990000px;}
.ws25{word-spacing:-9.936000px;}
.ws9{word-spacing:-9.882000px;}
.ws0{word-spacing:-9.792000px;}
.wsc{word-spacing:-9.774000px;}
.ws17{word-spacing:-8.426682px;}
.ws4b{word-spacing:-8.349726px;}
.ws2f{word-spacing:-8.272770px;}
.ws22{word-spacing:-7.800000px;}
.ws45{word-spacing:-7.277589px;}
.ws3d{word-spacing:-2.508000px;}
.ws35{word-spacing:-2.451000px;}
.ws20{word-spacing:-2.430000px;}
.ws4e{word-spacing:-2.223000px;}
.ws1f{word-spacing:-2.214000px;}
.ws3c{word-spacing:-1.767000px;}
.ws2{word-spacing:-1.440000px;}
.ws47{word-spacing:-1.140000px;}
.ws4d{word-spacing:-0.627000px;}
.ws52{word-spacing:-0.570000px;}
.ws54{word-spacing:-0.456000px;}
.ws3a{word-spacing:-0.399000px;}
.ws32{word-spacing:-0.342000px;}
.ws1d{word-spacing:-0.264000px;}
.ws3{word-spacing:-0.240000px;}
.ws11{word-spacing:-0.198000px;}
.ws4{word-spacing:-0.192000px;}
.ws2c{word-spacing:-0.162000px;}
.ws12{word-spacing:-0.132000px;}
.ws1a{word-spacing:-0.108000px;}
.ws13{word-spacing:-0.066000px;}
.ws6{word-spacing:-0.060000px;}
.ws1c{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws42{word-spacing:0.057000px;}
.wsf{word-spacing:0.066000px;}
.ws15{word-spacing:0.108000px;}
.ws4f{word-spacing:0.114000px;}
.ws5{word-spacing:0.120000px;}
.wse{word-spacing:0.132000px;}
.ws49{word-spacing:0.153912px;}
.ws14{word-spacing:0.162000px;}
.ws1e{word-spacing:0.198000px;}
.ws10{word-spacing:0.264000px;}
.ws4a{word-spacing:0.396000px;}
.ws39{word-spacing:0.456000px;}
.ws2a{word-spacing:0.462000px;}
.ws19{word-spacing:0.540000px;}
.ws1b{word-spacing:0.594000px;}
.ws21{word-spacing:0.648000px;}
.ws29{word-spacing:0.660000px;}
.ws2d{word-spacing:0.702000px;}
.ws2b{word-spacing:0.726000px;}
.ws28{word-spacing:0.858000px;}
.ws50{word-spacing:0.969000px;}
.ws53{word-spacing:1.026000px;}
.ws55{word-spacing:1.140000px;}
.ws43{word-spacing:1.539000px;}
.ws4c{word-spacing:1.710000px;}
.ws51{word-spacing:1.938000px;}
.ws3b{word-spacing:2.052000px;}
.ws48{word-spacing:2.376000px;}
.ws38{word-spacing:2.451000px;}
.ws16{word-spacing:2.484000px;}
.ws36{word-spacing:2.508000px;}
.ws40{word-spacing:2.565000px;}
.ws2e{word-spacing:3.132000px;}
.ws33{word-spacing:3.249000px;}
.ws3e{word-spacing:3.363000px;}
.ws34{word-spacing:3.591000px;}
.ws41{word-spacing:3.648000px;}
.ws37{word-spacing:3.990000px;}
._6{margin-left:-6.624000px;}
._0{margin-left:-4.752000px;}
._2{margin-left:-2.928000px;}
._1{margin-left:-1.584000px;}
._4{width:1.325400px;}
._3{width:2.457600px;}
._5{width:3.543600px;}
.fc1{color:rgb(167,165,166);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:33.231000px;}
.fs4{font-size:38.478000px;}
.fs6{font-size:39.000000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:366.990000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:106.299150px;}
.y118{bottom:106.299300px;}
.y2c{bottom:125.799150px;}
.y2b{bottom:145.299150px;}
.ya6{bottom:149.029350px;}
.y109{bottom:149.583300px;}
.yd3{bottom:149.687250px;}
.y2a{bottom:164.799150px;}
.yf3{bottom:167.087250px;}
.yf2{bottom:167.237250px;}
.y108{bottom:169.833300px;}
.ya5{bottom:171.754350px;}
.yd2{bottom:171.887250px;}
.y87{bottom:173.075400px;}
.y29{bottom:184.299150px;}
.yf1{bottom:189.587250px;}
.y107{bottom:190.083300px;}
.y86{bottom:193.325400px;}
.yd1{bottom:194.087250px;}
.ya4{bottom:194.479350px;}
.y28{bottom:203.799150px;}
.y106{bottom:210.333300px;}
.yf0{bottom:211.937250px;}
.y85{bottom:213.575400px;}
.yd0{bottom:216.287250px;}
.ya3{bottom:217.204350px;}
.y27{bottom:223.299150px;}
.yb3{bottom:224.329350px;}
.y4a{bottom:225.887250px;}
.y105{bottom:230.583300px;}
.y4b{bottom:231.381750px;}
.y84{bottom:233.825400px;}
.yef{bottom:234.287250px;}
.ycf{bottom:238.487250px;}
.ya2{bottom:239.929350px;}
.y68{bottom:242.799150px;}
.yb2{bottom:246.829350px;}
.y49{bottom:248.537250px;}
.y104{bottom:250.833300px;}
.y83{bottom:254.075400px;}
.yee{bottom:256.637250px;}
.yce{bottom:260.687250px;}
.y67{bottom:262.299150px;}
.ya1{bottom:262.654350px;}
.y26{bottom:267.287250px;}
.yb1{bottom:269.329350px;}
.y103{bottom:271.083300px;}
.y48{bottom:271.187250px;}
.y82{bottom:274.325400px;}
.yed{bottom:278.987250px;}
.y66{bottom:281.799150px;}
.ycd{bottom:282.887250px;}
.ya0{bottom:285.379350px;}
.y24{bottom:290.087250px;}
.y102{bottom:291.333300px;}
.yb0{bottom:291.829350px;}
.y47{bottom:293.837250px;}
.y81{bottom:294.575400px;}
.y25{bottom:295.581750px;}
.y65{bottom:301.299150px;}
.yec{bottom:301.337250px;}
.ycc{bottom:305.087250px;}
.y9f{bottom:308.104350px;}
.y23{bottom:312.887250px;}
.yaf{bottom:314.329350px;}
.y80{bottom:314.825400px;}
.y46{bottom:316.487250px;}
.y101{bottom:320.087250px;}
.y64{bottom:320.799150px;}
.yeb{bottom:323.687250px;}
.ycb{bottom:327.287250px;}
.y9e{bottom:330.829350px;}
.y7f{bottom:335.075400px;}
.y22{bottom:335.687250px;}
.yae{bottom:336.829350px;}
.y45{bottom:339.137250px;}
.y63{bottom:340.299150px;}
.y100{bottom:342.587250px;}
.yea{bottom:346.037250px;}
.yca{bottom:349.487250px;}
.y9d{bottom:353.554350px;}
.y7e{bottom:355.325400px;}
.y21{bottom:358.487250px;}
.yad{bottom:359.329350px;}
.y44{bottom:361.787250px;}
.yff{bottom:365.087250px;}
.ye9{bottom:368.387250px;}
.yc9{bottom:371.687250px;}
.y9c{bottom:376.279350px;}
.y62{bottom:379.937250px;}
.y20{bottom:381.287250px;}
.yac{bottom:381.829350px;}
.y7d{bottom:384.079350px;}
.y43{bottom:384.437250px;}
.yfe{bottom:387.587250px;}
.ye8{bottom:390.737250px;}
.yc8{bottom:393.887250px;}
.y9b{bottom:399.004350px;}
.y61{bottom:401.762250px;}
.y1f{bottom:404.087250px;}
.yab{bottom:404.329350px;}
.y7c{bottom:406.579350px;}
.y42{bottom:407.087250px;}
.yfd{bottom:410.087250px;}
.ye7{bottom:413.087250px;}
.yc7{bottom:416.087250px;}
.y9a{bottom:421.729350px;}
.y60{bottom:423.587250px;}
.y9{bottom:425.686950px;}
.yaa{bottom:426.829350px;}
.y1e{bottom:426.887250px;}
.y7b{bottom:429.079350px;}
.y41{bottom:429.737250px;}
.yfc{bottom:432.587250px;}
.ye6{bottom:435.437250px;}
.yc6{bottom:438.287250px;}
.y5{bottom:444.716850px;}
.y5f{bottom:445.412250px;}
.ya9{bottom:449.329350px;}
.y1d{bottom:449.687250px;}
.y7a{bottom:451.579350px;}
.y40{bottom:452.387250px;}
.y99{bottom:452.958300px;}
.yfb{bottom:455.087250px;}
.ye5{bottom:457.787250px;}
.yc5{bottom:460.487250px;}
.y4{bottom:462.716850px;}
.y5e{bottom:467.237250px;}
.ya8{bottom:471.829350px;}
.y1c{bottom:472.487250px;}
.y98{bottom:473.208300px;}
.y79{bottom:474.079350px;}
.y3f{bottom:475.037250px;}
.yfa{bottom:477.587250px;}
.ye4{bottom:480.137250px;}
.yc4{bottom:482.687250px;}
.y5d{bottom:489.062250px;}
.y97{bottom:493.458300px;}
.ya7{bottom:494.329350px;}
.y1b{bottom:495.287250px;}
.y3e{bottom:497.687250px;}
.yf9{bottom:500.087250px;}
.ye3{bottom:502.487250px;}
.yc3{bottom:504.887250px;}
.y78{bottom:505.083300px;}
.y5c{bottom:510.887250px;}
.y3{bottom:513.648750px;}
.y96{bottom:513.708300px;}
.y1a{bottom:518.087250px;}
.y3d{bottom:520.337250px;}
.yf8{bottom:522.587250px;}
.ye2{bottom:524.837250px;}
.y77{bottom:525.333300px;}
.yc2{bottom:527.087250px;}
.y2{bottom:531.648750px;}
.y5b{bottom:532.712250px;}
.y95{bottom:533.958300px;}
.y19{bottom:540.887250px;}
.y3c{bottom:542.987250px;}
.yf7{bottom:545.087250px;}
.y76{bottom:545.583300px;}
.ye1{bottom:547.187250px;}
.yc1{bottom:549.287250px;}
.y1{bottom:554.332350px;}
.y5a{bottom:554.537250px;}
.y94{bottom:562.712250px;}
.y18{bottom:563.687250px;}
.y3b{bottom:565.637250px;}
.y75{bottom:565.833300px;}
.yf6{bottom:567.587250px;}
.ye0{bottom:569.537250px;}
.yc0{bottom:571.487250px;}
.y117{bottom:574.017900px;}
.y59{bottom:576.362250px;}
.y93{bottom:585.587250px;}
.y74{bottom:586.083300px;}
.y17{bottom:586.487250px;}
.y3a{bottom:588.287250px;}
.yf5{bottom:590.087250px;}
.ydf{bottom:591.887250px;}
.ybf{bottom:593.687250px;}
.y116{bottom:596.517900px;}
.y58{bottom:598.187250px;}
.y73{bottom:606.333300px;}
.y92{bottom:608.462250px;}
.y16{bottom:609.287250px;}
.y39{bottom:610.937250px;}
.yf4{bottom:612.587250px;}
.yde{bottom:614.237250px;}
.ybe{bottom:615.887250px;}
.y115{bottom:619.017900px;}
.y57{bottom:620.012250px;}
.y91{bottom:631.337250px;}
.y15{bottom:632.087250px;}
.y38{bottom:633.587250px;}
.y72{bottom:635.087250px;}
.ydd{bottom:636.587250px;}
.ybd{bottom:638.087250px;}
.y114{bottom:641.517900px;}
.y56{bottom:641.837250px;}
.y90{bottom:654.212250px;}
.y14{bottom:654.887250px;}
.y37{bottom:656.237250px;}
.y71{bottom:657.587250px;}
.ydc{bottom:658.937250px;}
.ybc{bottom:660.287250px;}
.y55{bottom:663.662250px;}
.y113{bottom:664.017900px;}
.y8f{bottom:677.087250px;}
.y13{bottom:677.687250px;}
.y36{bottom:678.887250px;}
.y70{bottom:680.087250px;}
.ydb{bottom:681.287250px;}
.ybb{bottom:682.487250px;}
.y54{bottom:685.487250px;}
.y112{bottom:686.517900px;}
.y8e{bottom:699.962250px;}
.y12{bottom:700.487250px;}
.y35{bottom:701.537250px;}
.y6f{bottom:702.587250px;}
.yda{bottom:703.637250px;}
.yba{bottom:704.687250px;}
.y53{bottom:707.312250px;}
.y111{bottom:709.017900px;}
.y8d{bottom:722.837250px;}
.y11{bottom:723.287250px;}
.y34{bottom:724.187250px;}
.y6e{bottom:725.087250px;}
.yd9{bottom:725.987250px;}
.yb9{bottom:726.887250px;}
.y52{bottom:729.137250px;}
.y110{bottom:740.021850px;}
.y8c{bottom:745.712250px;}
.y10{bottom:746.087250px;}
.y33{bottom:746.837250px;}
.y6d{bottom:747.587250px;}
.yd8{bottom:748.337250px;}
.yb8{bottom:749.087250px;}
.y51{bottom:750.962250px;}
.y10f{bottom:760.271850px;}
.y8b{bottom:768.587250px;}
.yf{bottom:768.887250px;}
.y32{bottom:769.487250px;}
.y6c{bottom:770.087250px;}
.yd7{bottom:770.687250px;}
.yb7{bottom:771.287250px;}
.y50{bottom:772.787250px;}
.y10e{bottom:780.521850px;}
.y8a{bottom:791.462250px;}
.ye{bottom:791.687250px;}
.y31{bottom:792.137250px;}
.y6b{bottom:792.587250px;}
.yd6{bottom:793.037250px;}
.yb6{bottom:793.487250px;}
.y4f{bottom:794.612250px;}
.y10d{bottom:800.771850px;}
.y89{bottom:814.337250px;}
.yb{bottom:814.487250px;}
.y30{bottom:814.787250px;}
.y6a{bottom:815.087250px;}
.yd5{bottom:815.387250px;}
.yb5{bottom:815.687250px;}
.y4e{bottom:816.437250px;}
.y8{bottom:819.138750px;}
.y10c{bottom:821.021850px;}
.y88{bottom:837.212250px;}
.yd{bottom:837.287250px;}
.y2f{bottom:837.437250px;}
.y69{bottom:837.587250px;}
.yd4{bottom:837.737250px;}
.yb4{bottom:837.887250px;}
.y4d{bottom:838.262250px;}
.y7{bottom:840.138750px;}
.y10b{bottom:841.271850px;}
.yc{bottom:860.087250px;}
.y6{bottom:861.138750px;}
.y10a{bottom:861.521850px;}
.y4c{bottom:871.653600px;}
.y2e{bottom:930.708000px;}
.ya{bottom:946.311000px;}
.he{height:25.626348px;}
.ha{height:29.820450px;}
.h10{height:30.225000px;}
.h6{height:33.600000px;}
.hc{height:35.964000px;}
.h4{height:37.200000px;}
.hb{height:41.850000px;}
.h3{height:43.584000px;}
.hf{height:43.956000px;}
.h11{height:44.175000px;}
.h12{height:44.735025px;}
.h5{height:46.500000px;}
.hd{height:50.760000px;}
.h8{height:51.150000px;}
.h9{height:51.798450px;}
.h2{height:62.040000px;}
.h7{height:284.417250px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.xd{left:40.189650px;}
.x9{left:41.580300px;}
.x4{left:103.822050px;}
.x1{left:106.298250px;}
.x3{left:135.239550px;}
.x2{left:137.365500px;}
.x5{left:163.366200px;}
.x6{left:545.376600px;}
.x7{left:549.949650px;}
.xf{left:589.476450px;}
.x8{left:590.515800px;}
.xa{left:595.275600px;}
.xe{left:636.059250px;}
.xb{left:637.233900px;}
.xc{left:645.842550px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.872000pt;}
.v1{vertical-align:19.536000pt;}
.ls32{letter-spacing:-2.784000pt;}
.ls14{letter-spacing:-2.208000pt;}
.ls47{letter-spacing:-2.112000pt;}
.ls15{letter-spacing:-1.824000pt;}
.ls11{letter-spacing:-1.728000pt;}
.ls30{letter-spacing:-1.680000pt;}
.ls48{letter-spacing:-1.632000pt;}
.ls12{letter-spacing:-1.152000pt;}
.ls16{letter-spacing:-0.864000pt;}
.ls2c{letter-spacing:-0.762667pt;}
.ls3c{letter-spacing:-0.658667pt;}
.ls2f{letter-spacing:-0.645333pt;}
.ls31{letter-spacing:-0.624000pt;}
.ls2d{letter-spacing:-0.586667pt;}
.ls24{letter-spacing:-0.576000pt;}
.ls21{letter-spacing:-0.528000pt;}
.ls3b{letter-spacing:-0.506667pt;}
.ls3d{letter-spacing:-0.456000pt;}
.ls2e{letter-spacing:-0.410667pt;}
.ls3a{letter-spacing:-0.405333pt;}
.ls39{letter-spacing:-0.354667pt;}
.ls4b{letter-spacing:-0.352000pt;}
.ls38{letter-spacing:-0.304000pt;}
.lsf{letter-spacing:-0.234667pt;}
.ls3e{letter-spacing:-0.202667pt;}
.ls20{letter-spacing:-0.176000pt;}
.ls10{letter-spacing:-0.144000pt;}
.ls36{letter-spacing:-0.136811pt;}
.lsd{letter-spacing:-0.117333pt;}
.ls4{letter-spacing:-0.106667pt;}
.ls13{letter-spacing:-0.096000pt;}
.ls4c{letter-spacing:-0.068405pt;}
.lse{letter-spacing:-0.058667pt;}
.ls37{letter-spacing:-0.050667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000320pt;}
.ls8{letter-spacing:0.000533pt;}
.ls43{letter-spacing:0.029333pt;}
.ls1a{letter-spacing:0.048000pt;}
.ls42{letter-spacing:0.050667pt;}
.ls2{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.058667pt;}
.ls1d{letter-spacing:0.059447pt;}
.ls1e{letter-spacing:0.064900pt;}
.ls1f{letter-spacing:0.064927pt;}
.ls41{letter-spacing:0.076000pt;}
.ls6{letter-spacing:0.088000pt;}
.ls29{letter-spacing:0.096000pt;}
.ls40{letter-spacing:0.101333pt;}
.ls17{letter-spacing:0.117333pt;}
.ls26{letter-spacing:0.144000pt;}
.ls34{letter-spacing:0.152000pt;}
.ls1{letter-spacing:0.170667pt;}
.ls5{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.234667pt;}
.ls3f{letter-spacing:0.253333pt;}
.lsa{letter-spacing:0.284800pt;}
.ls9{letter-spacing:0.285333pt;}
.ls33{letter-spacing:0.304000pt;}
.ls49{letter-spacing:0.331200pt;}
.ls35{letter-spacing:0.354667pt;}
.ls2a{letter-spacing:0.525333pt;}
.ls2b{letter-spacing:0.525867pt;}
.ls19{letter-spacing:1.923134pt;}
.ls46{letter-spacing:1.937067pt;}
.ls45{letter-spacing:1.937600pt;}
.ls1c{letter-spacing:1.961446pt;}
.ls1b{letter-spacing:1.961974pt;}
.ls22{letter-spacing:1.968000pt;}
.lsb{letter-spacing:2.001600pt;}
.lsc{letter-spacing:2.002133pt;}
.ls44{letter-spacing:2.125864pt;}
.ls28{letter-spacing:2.147805pt;}
.ls27{letter-spacing:2.148334pt;}
.ls23{letter-spacing:2.160000pt;}
.ls4a{letter-spacing:2.326400pt;}
.ws23{word-spacing:-12.848000pt;}
.ws7{word-spacing:-11.733333pt;}
.ws18{word-spacing:-10.560000pt;}
.ws8{word-spacing:-10.512000pt;}
.wsb{word-spacing:-10.416000pt;}
.ws30{word-spacing:-10.285333pt;}
.ws44{word-spacing:-10.184000pt;}
.ws3f{word-spacing:-10.133333pt;}
.ws27{word-spacing:-9.888000pt;}
.wsd{word-spacing:-9.648000pt;}
.ws31{word-spacing:-9.626667pt;}
.ws24{word-spacing:-9.600000pt;}
.wsa{word-spacing:-9.360000pt;}
.ws26{word-spacing:-8.976000pt;}
.ws46{word-spacing:-8.880000pt;}
.ws25{word-spacing:-8.832000pt;}
.ws9{word-spacing:-8.784000pt;}
.ws0{word-spacing:-8.704000pt;}
.wsc{word-spacing:-8.688000pt;}
.ws17{word-spacing:-7.490384pt;}
.ws4b{word-spacing:-7.421979pt;}
.ws2f{word-spacing:-7.353573pt;}
.ws22{word-spacing:-6.933333pt;}
.ws45{word-spacing:-6.468968pt;}
.ws3d{word-spacing:-2.229333pt;}
.ws35{word-spacing:-2.178667pt;}
.ws20{word-spacing:-2.160000pt;}
.ws4e{word-spacing:-1.976000pt;}
.ws1f{word-spacing:-1.968000pt;}
.ws3c{word-spacing:-1.570667pt;}
.ws2{word-spacing:-1.280000pt;}
.ws47{word-spacing:-1.013333pt;}
.ws4d{word-spacing:-0.557333pt;}
.ws52{word-spacing:-0.506667pt;}
.ws54{word-spacing:-0.405333pt;}
.ws3a{word-spacing:-0.354667pt;}
.ws32{word-spacing:-0.304000pt;}
.ws1d{word-spacing:-0.234667pt;}
.ws3{word-spacing:-0.213333pt;}
.ws11{word-spacing:-0.176000pt;}
.ws4{word-spacing:-0.170667pt;}
.ws2c{word-spacing:-0.144000pt;}
.ws12{word-spacing:-0.117333pt;}
.ws1a{word-spacing:-0.096000pt;}
.ws13{word-spacing:-0.058667pt;}
.ws6{word-spacing:-0.053333pt;}
.ws1c{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws42{word-spacing:0.050667pt;}
.wsf{word-spacing:0.058667pt;}
.ws15{word-spacing:0.096000pt;}
.ws4f{word-spacing:0.101333pt;}
.ws5{word-spacing:0.106667pt;}
.wse{word-spacing:0.117333pt;}
.ws49{word-spacing:0.136811pt;}
.ws14{word-spacing:0.144000pt;}
.ws1e{word-spacing:0.176000pt;}
.ws10{word-spacing:0.234667pt;}
.ws4a{word-spacing:0.352000pt;}
.ws39{word-spacing:0.405333pt;}
.ws2a{word-spacing:0.410667pt;}
.ws19{word-spacing:0.480000pt;}
.ws1b{word-spacing:0.528000pt;}
.ws21{word-spacing:0.576000pt;}
.ws29{word-spacing:0.586667pt;}
.ws2d{word-spacing:0.624000pt;}
.ws2b{word-spacing:0.645333pt;}
.ws28{word-spacing:0.762667pt;}
.ws50{word-spacing:0.861333pt;}
.ws53{word-spacing:0.912000pt;}
.ws55{word-spacing:1.013333pt;}
.ws43{word-spacing:1.368000pt;}
.ws4c{word-spacing:1.520000pt;}
.ws51{word-spacing:1.722667pt;}
.ws3b{word-spacing:1.824000pt;}
.ws48{word-spacing:2.112000pt;}
.ws38{word-spacing:2.178667pt;}
.ws16{word-spacing:2.208000pt;}
.ws36{word-spacing:2.229333pt;}
.ws40{word-spacing:2.280000pt;}
.ws2e{word-spacing:2.784000pt;}
.ws33{word-spacing:2.888000pt;}
.ws3e{word-spacing:2.989333pt;}
.ws34{word-spacing:3.192000pt;}
.ws41{word-spacing:3.242667pt;}
.ws37{word-spacing:3.546667pt;}
._6{margin-left:-5.888000pt;}
._0{margin-left:-4.224000pt;}
._2{margin-left:-2.602667pt;}
._1{margin-left:-1.408000pt;}
._4{width:1.178133pt;}
._3{width:2.184533pt;}
._5{width:3.149867pt;}
.fs8{font-size:29.538667pt;}
.fs4{font-size:34.202667pt;}
.fs6{font-size:34.666667pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:326.213333pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:94.488133pt;}
.y118{bottom:94.488267pt;}
.y2c{bottom:111.821467pt;}
.y2b{bottom:129.154800pt;}
.ya6{bottom:132.470533pt;}
.y109{bottom:132.962933pt;}
.yd3{bottom:133.055333pt;}
.y2a{bottom:146.488133pt;}
.yf3{bottom:148.522000pt;}
.yf2{bottom:148.655333pt;}
.y108{bottom:150.962933pt;}
.ya5{bottom:152.670533pt;}
.yd2{bottom:152.788667pt;}
.y87{bottom:153.844800pt;}
.y29{bottom:163.821467pt;}
.yf1{bottom:168.522000pt;}
.y107{bottom:168.962933pt;}
.y86{bottom:171.844800pt;}
.yd1{bottom:172.522000pt;}
.ya4{bottom:172.870533pt;}
.y28{bottom:181.154800pt;}
.y106{bottom:186.962933pt;}
.yf0{bottom:188.388667pt;}
.y85{bottom:189.844800pt;}
.yd0{bottom:192.255333pt;}
.ya3{bottom:193.070533pt;}
.y27{bottom:198.488133pt;}
.yb3{bottom:199.403867pt;}
.y4a{bottom:200.788667pt;}
.y105{bottom:204.962933pt;}
.y4b{bottom:205.672667pt;}
.y84{bottom:207.844800pt;}
.yef{bottom:208.255333pt;}
.ycf{bottom:211.988667pt;}
.ya2{bottom:213.270533pt;}
.y68{bottom:215.821467pt;}
.yb2{bottom:219.403867pt;}
.y49{bottom:220.922000pt;}
.y104{bottom:222.962933pt;}
.y83{bottom:225.844800pt;}
.yee{bottom:228.122000pt;}
.yce{bottom:231.722000pt;}
.y67{bottom:233.154800pt;}
.ya1{bottom:233.470533pt;}
.y26{bottom:237.588667pt;}
.yb1{bottom:239.403867pt;}
.y103{bottom:240.962933pt;}
.y48{bottom:241.055333pt;}
.y82{bottom:243.844800pt;}
.yed{bottom:247.988667pt;}
.y66{bottom:250.488133pt;}
.ycd{bottom:251.455333pt;}
.ya0{bottom:253.670533pt;}
.y24{bottom:257.855333pt;}
.y102{bottom:258.962933pt;}
.yb0{bottom:259.403867pt;}
.y47{bottom:261.188667pt;}
.y81{bottom:261.844800pt;}
.y25{bottom:262.739333pt;}
.y65{bottom:267.821467pt;}
.yec{bottom:267.855333pt;}
.ycc{bottom:271.188667pt;}
.y9f{bottom:273.870533pt;}
.y23{bottom:278.122000pt;}
.yaf{bottom:279.403867pt;}
.y80{bottom:279.844800pt;}
.y46{bottom:281.322000pt;}
.y101{bottom:284.522000pt;}
.y64{bottom:285.154800pt;}
.yeb{bottom:287.722000pt;}
.ycb{bottom:290.922000pt;}
.y9e{bottom:294.070533pt;}
.y7f{bottom:297.844800pt;}
.y22{bottom:298.388667pt;}
.yae{bottom:299.403867pt;}
.y45{bottom:301.455333pt;}
.y63{bottom:302.488133pt;}
.y100{bottom:304.522000pt;}
.yea{bottom:307.588667pt;}
.yca{bottom:310.655333pt;}
.y9d{bottom:314.270533pt;}
.y7e{bottom:315.844800pt;}
.y21{bottom:318.655333pt;}
.yad{bottom:319.403867pt;}
.y44{bottom:321.588667pt;}
.yff{bottom:324.522000pt;}
.ye9{bottom:327.455333pt;}
.yc9{bottom:330.388667pt;}
.y9c{bottom:334.470533pt;}
.y62{bottom:337.722000pt;}
.y20{bottom:338.922000pt;}
.yac{bottom:339.403867pt;}
.y7d{bottom:341.403867pt;}
.y43{bottom:341.722000pt;}
.yfe{bottom:344.522000pt;}
.ye8{bottom:347.322000pt;}
.yc8{bottom:350.122000pt;}
.y9b{bottom:354.670533pt;}
.y61{bottom:357.122000pt;}
.y1f{bottom:359.188667pt;}
.yab{bottom:359.403867pt;}
.y7c{bottom:361.403867pt;}
.y42{bottom:361.855333pt;}
.yfd{bottom:364.522000pt;}
.ye7{bottom:367.188667pt;}
.yc7{bottom:369.855333pt;}
.y9a{bottom:374.870533pt;}
.y60{bottom:376.522000pt;}
.y9{bottom:378.388400pt;}
.yaa{bottom:379.403867pt;}
.y1e{bottom:379.455333pt;}
.y7b{bottom:381.403867pt;}
.y41{bottom:381.988667pt;}
.yfc{bottom:384.522000pt;}
.ye6{bottom:387.055333pt;}
.yc6{bottom:389.588667pt;}
.y5{bottom:395.303867pt;}
.y5f{bottom:395.922000pt;}
.ya9{bottom:399.403867pt;}
.y1d{bottom:399.722000pt;}
.y7a{bottom:401.403867pt;}
.y40{bottom:402.122000pt;}
.y99{bottom:402.629600pt;}
.yfb{bottom:404.522000pt;}
.ye5{bottom:406.922000pt;}
.yc5{bottom:409.322000pt;}
.y4{bottom:411.303867pt;}
.y5e{bottom:415.322000pt;}
.ya8{bottom:419.403867pt;}
.y1c{bottom:419.988667pt;}
.y98{bottom:420.629600pt;}
.y79{bottom:421.403867pt;}
.y3f{bottom:422.255333pt;}
.yfa{bottom:424.522000pt;}
.ye4{bottom:426.788667pt;}
.yc4{bottom:429.055333pt;}
.y5d{bottom:434.722000pt;}
.y97{bottom:438.629600pt;}
.ya7{bottom:439.403867pt;}
.y1b{bottom:440.255333pt;}
.y3e{bottom:442.388667pt;}
.yf9{bottom:444.522000pt;}
.ye3{bottom:446.655333pt;}
.yc3{bottom:448.788667pt;}
.y78{bottom:448.962933pt;}
.y5c{bottom:454.122000pt;}
.y3{bottom:456.576667pt;}
.y96{bottom:456.629600pt;}
.y1a{bottom:460.522000pt;}
.y3d{bottom:462.522000pt;}
.yf8{bottom:464.522000pt;}
.ye2{bottom:466.522000pt;}
.y77{bottom:466.962933pt;}
.yc2{bottom:468.522000pt;}
.y2{bottom:472.576667pt;}
.y5b{bottom:473.522000pt;}
.y95{bottom:474.629600pt;}
.y19{bottom:480.788667pt;}
.y3c{bottom:482.655333pt;}
.yf7{bottom:484.522000pt;}
.y76{bottom:484.962933pt;}
.ye1{bottom:486.388667pt;}
.yc1{bottom:488.255333pt;}
.y1{bottom:492.739867pt;}
.y5a{bottom:492.922000pt;}
.y94{bottom:500.188667pt;}
.y18{bottom:501.055333pt;}
.y3b{bottom:502.788667pt;}
.y75{bottom:502.962933pt;}
.yf6{bottom:504.522000pt;}
.ye0{bottom:506.255333pt;}
.yc0{bottom:507.988667pt;}
.y117{bottom:510.238133pt;}
.y59{bottom:512.322000pt;}
.y93{bottom:520.522000pt;}
.y74{bottom:520.962933pt;}
.y17{bottom:521.322000pt;}
.y3a{bottom:522.922000pt;}
.yf5{bottom:524.522000pt;}
.ydf{bottom:526.122000pt;}
.ybf{bottom:527.722000pt;}
.y116{bottom:530.238133pt;}
.y58{bottom:531.722000pt;}
.y73{bottom:538.962933pt;}
.y92{bottom:540.855333pt;}
.y16{bottom:541.588667pt;}
.y39{bottom:543.055333pt;}
.yf4{bottom:544.522000pt;}
.yde{bottom:545.988667pt;}
.ybe{bottom:547.455333pt;}
.y115{bottom:550.238133pt;}
.y57{bottom:551.122000pt;}
.y91{bottom:561.188667pt;}
.y15{bottom:561.855333pt;}
.y38{bottom:563.188667pt;}
.y72{bottom:564.522000pt;}
.ydd{bottom:565.855333pt;}
.ybd{bottom:567.188667pt;}
.y114{bottom:570.238133pt;}
.y56{bottom:570.522000pt;}
.y90{bottom:581.522000pt;}
.y14{bottom:582.122000pt;}
.y37{bottom:583.322000pt;}
.y71{bottom:584.522000pt;}
.ydc{bottom:585.722000pt;}
.ybc{bottom:586.922000pt;}
.y55{bottom:589.922000pt;}
.y113{bottom:590.238133pt;}
.y8f{bottom:601.855333pt;}
.y13{bottom:602.388667pt;}
.y36{bottom:603.455333pt;}
.y70{bottom:604.522000pt;}
.ydb{bottom:605.588667pt;}
.ybb{bottom:606.655333pt;}
.y54{bottom:609.322000pt;}
.y112{bottom:610.238133pt;}
.y8e{bottom:622.188667pt;}
.y12{bottom:622.655333pt;}
.y35{bottom:623.588667pt;}
.y6f{bottom:624.522000pt;}
.yda{bottom:625.455333pt;}
.yba{bottom:626.388667pt;}
.y53{bottom:628.722000pt;}
.y111{bottom:630.238133pt;}
.y8d{bottom:642.522000pt;}
.y11{bottom:642.922000pt;}
.y34{bottom:643.722000pt;}
.y6e{bottom:644.522000pt;}
.yd9{bottom:645.322000pt;}
.yb9{bottom:646.122000pt;}
.y52{bottom:648.122000pt;}
.y110{bottom:657.797200pt;}
.y8c{bottom:662.855333pt;}
.y10{bottom:663.188667pt;}
.y33{bottom:663.855333pt;}
.y6d{bottom:664.522000pt;}
.yd8{bottom:665.188667pt;}
.yb8{bottom:665.855333pt;}
.y51{bottom:667.522000pt;}
.y10f{bottom:675.797200pt;}
.y8b{bottom:683.188667pt;}
.yf{bottom:683.455333pt;}
.y32{bottom:683.988667pt;}
.y6c{bottom:684.522000pt;}
.yd7{bottom:685.055333pt;}
.yb7{bottom:685.588667pt;}
.y50{bottom:686.922000pt;}
.y10e{bottom:693.797200pt;}
.y8a{bottom:703.522000pt;}
.ye{bottom:703.722000pt;}
.y31{bottom:704.122000pt;}
.y6b{bottom:704.522000pt;}
.yd6{bottom:704.922000pt;}
.yb6{bottom:705.322000pt;}
.y4f{bottom:706.322000pt;}
.y10d{bottom:711.797200pt;}
.y89{bottom:723.855333pt;}
.yb{bottom:723.988667pt;}
.y30{bottom:724.255333pt;}
.y6a{bottom:724.522000pt;}
.yd5{bottom:724.788667pt;}
.yb5{bottom:725.055333pt;}
.y4e{bottom:725.722000pt;}
.y8{bottom:728.123333pt;}
.y10c{bottom:729.797200pt;}
.y88{bottom:744.188667pt;}
.yd{bottom:744.255333pt;}
.y2f{bottom:744.388667pt;}
.y69{bottom:744.522000pt;}
.yd4{bottom:744.655333pt;}
.yb4{bottom:744.788667pt;}
.y4d{bottom:745.122000pt;}
.y7{bottom:746.790000pt;}
.y10b{bottom:747.797200pt;}
.yc{bottom:764.522000pt;}
.y6{bottom:765.456667pt;}
.y10a{bottom:765.797200pt;}
.y4c{bottom:774.803200pt;}
.y2e{bottom:827.296000pt;}
.ya{bottom:841.165333pt;}
.he{height:22.778976pt;}
.ha{height:26.507067pt;}
.h10{height:26.866667pt;}
.h6{height:29.866667pt;}
.hc{height:31.968000pt;}
.h4{height:33.066667pt;}
.hb{height:37.200000pt;}
.h3{height:38.741333pt;}
.hf{height:39.072000pt;}
.h11{height:39.266667pt;}
.h12{height:39.764467pt;}
.h5{height:41.333333pt;}
.hd{height:45.120000pt;}
.h8{height:45.466667pt;}
.h9{height:46.043067pt;}
.h2{height:55.146667pt;}
.h7{height:252.815333pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.xd{left:35.724133pt;}
.x9{left:36.960267pt;}
.x4{left:92.286267pt;}
.x1{left:94.487333pt;}
.x3{left:120.212933pt;}
.x2{left:122.102667pt;}
.x5{left:145.214400pt;}
.x6{left:484.779200pt;}
.x7{left:488.844133pt;}
.xf{left:523.979067pt;}
.x8{left:524.902933pt;}
.xa{left:529.133867pt;}
.xe{left:565.386000pt;}
.xb{left:566.430133pt;}
.xc{left:574.082267pt;}
}




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