
    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_cf7cf3f9065575ed0fa27183.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_ea530a12aa77c0757147ee0b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_db56594faf46d44c9dd0ffc6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_40ca8d22659c85ce87912fa4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.689453;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_105b5b590db9e24608cbe3cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_8242b97a1c6b4b701a6269f6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908691;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_853397467daa71acb4a601ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921875;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_ce0515ab2da8965c87eee755.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_078fc10179e324bca089b99c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.688965;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_70750bb60501bb31d4d7e38c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.881836;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_fa16e74c151a78dbaaae42b4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.881836;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_6ce5dc54ca29ad7eaa12b530.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_50b9cc50df444d50622f1157.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_639befad731f62a81cd19b13.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8de65afde657f8a3f823b008.woff2')format("woff");}.fff{font-family:fff;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c66158174258542236e4d136.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_80af353d811efad9ab2fef83.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_1c10df8e07c507e14fd7f89a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_31a833947800092a6cd00cb3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_1c67efc10a1b41aec98827f3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_ac8fb894079e1c1d1c5c36b2.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_56191ae97945d8171a23e3ba.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_dbfd998dacc7a106147efada.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_401ce7e3e7bed988b08db779.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_06c3d0b17154cd1e8c77a908.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_5017b0275f42bc8e4799b38d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_f9093d12d387d20d2afbd4fd.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_caa5c46d05d0d468b6bfcb7e.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_fbd48ffee76a53d5d1373356.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_da942c699778dec2c6458825.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_54fa1f48d57d94f12ffb23fe.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.937988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_0f0da43764085900d423bead.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.687500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_e66d6fc02de1de2866e7f11f.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_d4bbd7e01b44d8a5746c746f.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_057f1c29a3738286a604a4df.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_546e1fdf032135efd695ab16.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.917480;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_5a473a79a4f05e96aeb3c28d.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.666504;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;}
.m1{transform:matrix(0.223992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223992,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.229055,0.000000,-0.076344,0.238058,0,0);-ms-transform:matrix(0.229055,0.000000,-0.076344,0.238058,0,0);-webkit-transform:matrix(0.229055,0.000000,-0.076344,0.238058,0,0);}
.m6{transform:matrix(0.230055,0.000000,-0.076677,0.237951,0,0);-ms-transform:matrix(0.230055,0.000000,-0.076677,0.237951,0,0);-webkit-transform:matrix(0.230055,0.000000,-0.076677,0.237951,0,0);}
.m3{transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.241704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241704,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.241704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241704,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.244609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244609,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);}
.m8{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255492,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.258971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258971,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.270515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270515,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-27.579508px;}
.v4{vertical-align:-20.908825px;}
.v3{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.v2{vertical-align:33.120000px;}
.ls39{letter-spacing:-7.555647px;}
.ls65{letter-spacing:-0.850719px;}
.ls68{letter-spacing:-0.582600px;}
.ls16{letter-spacing:-0.014400px;}
.lse{letter-spacing:0.000000px;}
.ls3c{letter-spacing:0.000480px;}
.ls76{letter-spacing:0.000600px;}
.ls1d{letter-spacing:0.001200px;}
.ls21{letter-spacing:0.001800px;}
.ls1c{letter-spacing:0.005700px;}
.ls1e{letter-spacing:0.007200px;}
.ls28{letter-spacing:0.008100px;}
.ls3d{letter-spacing:0.011580px;}
.ls62{letter-spacing:0.012000px;}
.ls22{letter-spacing:0.012600px;}
.ls9{letter-spacing:0.014400px;}
.ls23{letter-spacing:0.016200px;}
.ls24{letter-spacing:0.026400px;}
.ls61{letter-spacing:0.035400px;}
.ls59{letter-spacing:0.036000px;}
.ls40{letter-spacing:0.060000px;}
.ls53{letter-spacing:0.116928px;}
.ls4{letter-spacing:0.119400px;}
.ls3{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.120600px;}
.ls18{letter-spacing:0.160440px;}
.ls73{letter-spacing:0.192096px;}
.ls25{letter-spacing:0.193920px;}
.ls1f{letter-spacing:0.194520px;}
.ls8{letter-spacing:0.200448px;}
.ls29{letter-spacing:0.205920px;}
.ls4e{letter-spacing:0.233400px;}
.lsa{letter-spacing:0.233856px;}
.ls27{letter-spacing:0.239400px;}
.ls1b{letter-spacing:0.239760px;}
.ls1{letter-spacing:0.240000px;}
.ls2b{letter-spacing:0.240600px;}
.ls57{letter-spacing:0.242064px;}
.ls19{letter-spacing:0.242208px;}
.ls34{letter-spacing:0.242352px;}
.lsd{letter-spacing:0.253872px;}
.ls4a{letter-spacing:0.256680px;}
.ls32{letter-spacing:0.266400px;}
.ls52{letter-spacing:0.275616px;}
.ls4d{letter-spacing:0.280080px;}
.ls10{letter-spacing:0.298080px;}
.ls6{letter-spacing:0.300000px;}
.ls30{letter-spacing:0.309024px;}
.lsc{letter-spacing:0.318816px;}
.ls0{letter-spacing:0.319680px;}
.ls47{letter-spacing:0.320280px;}
.ls15{letter-spacing:0.324000px;}
.ls46{letter-spacing:0.348336px;}
.ls20{letter-spacing:0.354360px;}
.ls26{letter-spacing:0.354960px;}
.ls51{letter-spacing:0.359136px;}
.ls1a{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.362304px;}
.ls49{letter-spacing:0.383760px;}
.ls54{letter-spacing:0.400896px;}
.ls13{letter-spacing:0.401760px;}
.ls6d{letter-spacing:0.416640px;}
.ls6b{letter-spacing:0.417240px;}
.ls43{letter-spacing:0.419184px;}
.ls7{letter-spacing:0.432600px;}
.ls5c{letter-spacing:0.448704px;}
.ls2{letter-spacing:0.478224px;}
.ls2d{letter-spacing:0.479520px;}
.ls55{letter-spacing:0.490032px;}
.ls5b{letter-spacing:0.524400px;}
.ls11{letter-spacing:0.524880px;}
.ls2e{letter-spacing:0.527472px;}
.ls33{letter-spacing:0.543168px;}
.ls3f{letter-spacing:0.543360px;}
.lsb{letter-spacing:0.578592px;}
.ls12{letter-spacing:0.602640px;}
.ls4c{letter-spacing:0.637632px;}
.ls6e{letter-spacing:0.639720px;}
.ls31{letter-spacing:0.671328px;}
.ls45{letter-spacing:0.673920px;}
.ls48{letter-spacing:0.702576px;}
.ls6c{letter-spacing:0.703320px;}
.lsf{letter-spacing:0.725760px;}
.ls14{letter-spacing:0.874800px;}
.ls44{letter-spacing:1.121040px;}
.ls60{letter-spacing:1.211400px;}
.ls5f{letter-spacing:3.505200px;}
.ls5d{letter-spacing:3.507000px;}
.ls4f{letter-spacing:4.138200px;}
.ls71{letter-spacing:5.011200px;}
.ls64{letter-spacing:5.191800px;}
.ls2a{letter-spacing:6.123000px;}
.ls5e{letter-spacing:7.681800px;}
.ls70{letter-spacing:9.234000px;}
.ls6f{letter-spacing:9.234600px;}
.ls3e{letter-spacing:10.125000px;}
.ls5a{letter-spacing:10.683000px;}
.ls75{letter-spacing:11.008740px;}
.ls72{letter-spacing:11.073600px;}
.ls6a{letter-spacing:11.526600px;}
.ls58{letter-spacing:13.888800px;}
.ls63{letter-spacing:17.107096px;}
.ls56{letter-spacing:17.784360px;}
.ls4b{letter-spacing:19.325400px;}
.ls50{letter-spacing:19.438800px;}
.ls17{letter-spacing:19.981140px;}
.ls74{letter-spacing:44.377920px;}
.ls3b{letter-spacing:79.049941px;}
.ls67{letter-spacing:101.844985px;}
.ls2c{letter-spacing:123.201689px;}
.ls36{letter-spacing:127.267272px;}
.ls35{letter-spacing:135.325839px;}
.ls42{letter-spacing:137.220298px;}
.ls69{letter-spacing:141.199098px;}
.ls37{letter-spacing:159.985370px;}
.ls41{letter-spacing:189.374742px;}
.ls66{letter-spacing:251.470296px;}
.ls3a{letter-spacing:284.433549px;}
.ls38{letter-spacing:337.032422px;}
.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;}
}
.ws29{word-spacing:-141.271175px;}
.ws11{word-spacing:-135.398439px;}
.ws12{word-spacing:-102.801174px;}
.ws27{word-spacing:-101.917062px;}
.ws1e{word-spacing:-21.280896px;}
.ws2a{word-spacing:-21.239136px;}
.ws1d{word-spacing:-21.155616px;}
.ws8{word-spacing:-21.122208px;}
.ws4{word-spacing:-21.113856px;}
.ws1{word-spacing:-21.080448px;}
.ws2b{word-spacing:-21.072096px;}
.ws7{word-spacing:-20.880000px;}
.ws23{word-spacing:-18.036000px;}
.ws2{word-spacing:-18.014400px;}
.ws6{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.985600px;}
.ws17{word-spacing:-17.074800px;}
.ws16{word-spacing:-16.802640px;}
.ws15{word-spacing:-16.679520px;}
.ws2c{word-spacing:-16.666992px;}
.ws20{word-spacing:-16.632412px;}
.ws1b{word-spacing:-15.462576px;}
.ws18{word-spacing:-15.338592px;}
.wse{word-spacing:-15.303168px;}
.ws21{word-spacing:-15.250032px;}
.ws0{word-spacing:-15.238224px;}
.ws1a{word-spacing:-15.179184px;}
.ws1c{word-spacing:-15.143760px;}
.ws22{word-spacing:-15.108336px;}
.ws19{word-spacing:-15.078816px;}
.ws14{word-spacing:-15.013872px;}
.ws24{word-spacing:-14.760000px;}
.wsa{word-spacing:-13.847472px;}
.ws9{word-spacing:-13.682304px;}
.wsb{word-spacing:-13.629024px;}
.wsc{word-spacing:-13.586400px;}
.wsd{word-spacing:-13.559760px;}
.ws10{word-spacing:-11.880000px;}
.ws1f{word-spacing:-6.523825px;}
.wsf{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws28{word-spacing:0.540986px;}
.ws25{word-spacing:0.812050px;}
.ws26{word-spacing:34.131988px;}
.ws13{word-spacing:82.322236px;}
._1f{margin-left:-394.656860px;}
._22{margin-left:-265.822760px;}
._20{margin-left:-191.695948px;}
._21{margin-left:-141.775715px;}
._14{margin-left:-130.422479px;}
._13{margin-left:-41.454428px;}
._19{margin-left:-4.457487px;}
._1a{margin-left:-2.594656px;}
._3{margin-left:-1.309908px;}
._0{width:1.771200px;}
._4{width:3.456000px;}
._2{width:5.313600px;}
._1{width:6.435360px;}
._8{width:7.640340px;}
._b{width:8.888700px;}
._7{width:9.914400px;}
._9{width:11.245500px;}
._c{width:12.636000px;}
._5{width:13.982400px;}
._f{width:15.487500px;}
._e{width:16.494900px;}
._a{width:19.627200px;}
._12{width:20.959200px;}
._11{width:22.015500px;}
._10{width:23.119200px;}
._d{width:24.422400px;}
._18{width:26.067300px;}
._17{width:27.134100px;}
._6{width:28.143300px;}
._1b{width:29.845500px;}
._1d{width:31.060800px;}
._1c{width:32.874300px;}
._24{width:34.657908px;}
._23{width:35.733264px;}
._25{width:46.699200px;}
._16{width:108.785068px;}
._26{width:121.262400px;}
._1e{width:239.615778px;}
._15{width:1032.144600px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(31,73,125);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:38.669028px;}
.fsd{font-size:38.880000px;}
.fs14{font-size:41.614289px;}
.fs3{font-size:41.760000px;}
.fs9{font-size:42.024000px;}
.fs10{font-size:44.523778px;}
.fs7{font-size:47.084719px;}
.fs4{font-size:47.520000px;}
.fs11{font-size:50.840255px;}
.fs6{font-size:53.280000px;}
.fs0{font-size:59.040000px;}
.fs2{font-size:64.800000px;}
.fse{font-size:66.529649px;}
.fs1{font-size:72.000000px;}
.fs15{font-size:72.077130px;}
.fsa{font-size:72.599699px;}
.fs12{font-size:76.873846px;}
.fs8{font-size:81.243516px;}
.fs5{font-size:83.520000px;}
.fsb{font-size:85.319042px;}
.fsc{font-size:85.357470px;}
.fs13{font-size:115.394550px;}
.y0{bottom:0.000000px;}
.y67{bottom:0.360000px;}
.y70{bottom:1.440000px;}
.y14b{bottom:2.503504px;}
.y153{bottom:3.253322px;}
.y8e{bottom:3.840131px;}
.y6b{bottom:5.040000px;}
.y86{bottom:5.147480px;}
.y73{bottom:5.400000px;}
.y64{bottom:5.760000px;}
.y14f{bottom:5.854284px;}
.y65{bottom:6.480000px;}
.yad{bottom:6.840000px;}
.y154{bottom:7.901006px;}
.y91{bottom:8.513551px;}
.y87{bottom:10.374686px;}
.y14d{bottom:11.361963px;}
.yaa{bottom:16.200000px;}
.y150{bottom:16.331115px;}
.y8d{bottom:16.664307px;}
.y1{bottom:18.000000px;}
.y94{bottom:19.471826px;}
.y90{bottom:22.714769px;}
.y14c{bottom:24.957469px;}
.ya9{bottom:25.560000px;}
.y14a{bottom:27.384019px;}
.y14e{bottom:30.888863px;}
.y8f{bottom:34.161903px;}
.y5{bottom:39.240030px;}
.y69{bottom:49.320000px;}
.y72{bottom:50.760000px;}
.y4{bottom:59.400030px;}
.y71{bottom:66.240000px;}
.y68{bottom:68.040000px;}
.y3{bottom:76.680030px;}
.y122{bottom:91.800030px;}
.y2{bottom:93.960030px;}
.y105{bottom:95.760030px;}
.y1ba{bottom:99.720030px;}
.y45{bottom:100.440030px;}
.y1a3{bottom:101.880030px;}
.yc2{bottom:104.760030px;}
.ye5{bottom:109.800030px;}
.y138{bottom:112.320030px;}
.y15d{bottom:118.800030px;}
.yb2{bottom:120.240030px;}
.y121{bottom:122.760030px;}
.yed{bottom:123.198729px;}
.y44{bottom:131.040030px;}
.y104{bottom:131.400030px;}
.y97{bottom:131.760030px;}
.y24{bottom:133.200000px;}
.y98{bottom:139.320015px;}
.yc1{bottom:140.400000px;}
.ye4{bottom:140.760000px;}
.y1a2{bottom:141.840000px;}
.yec{bottom:142.917410px;}
.y137{bottom:143.280000px;}
.y102{bottom:149.040000px;}
.y15c{bottom:149.760000px;}
.yb0{bottom:150.120000px;}
.y120{bottom:153.720000px;}
.yb1{bottom:157.680000px;}
.y43{bottom:162.000000px;}
.y103{bottom:162.360000px;}
.y23{bottom:163.800000px;}
.ye7{bottom:165.697158px;}
.y96{bottom:167.760000px;}
.yc0{bottom:171.360000px;}
.ye3{bottom:171.720000px;}
.y1a1{bottom:173.160000px;}
.y136{bottom:174.240000px;}
.yd1{bottom:176.760000px;}
.y162{bottom:179.640000px;}
.y15b{bottom:180.720000px;}
.y101{bottom:184.680000px;}
.y11f{bottom:185.040000px;}
.y42{bottom:193.320000px;}
.y173{bottom:193.680000px;}
.y141{bottom:198.000000px;}
.y18c{bottom:198.360000px;}
.y95{bottom:199.080000px;}
.yaf{bottom:199.440000px;}
.y22{bottom:201.960000px;}
.ybf{bottom:202.320000px;}
.ye2{bottom:202.680000px;}
.y161{bottom:203.040000px;}
.y1a0{bottom:204.120000px;}
.yea{bottom:204.501408px;}
.y135{bottom:205.200000px;}
.y166{bottom:206.280000px;}
.yd0{bottom:207.720000px;}
.y15a{bottom:211.680000px;}
.y11e{bottom:216.000000px;}
.y62{bottom:219.960000px;}
.y100{bottom:220.320000px;}
.yeb{bottom:221.115995px;}
.y140{bottom:221.400000px;}
.y41{bottom:224.280000px;}
.y172{bottom:224.640000px;}
.yae{bottom:225.000000px;}
.y18b{bottom:229.320000px;}
.y165{bottom:229.680000px;}
.y1b9{bottom:232.920000px;}
.ybe{bottom:233.280000px;}
.y92{bottom:236.520000px;}
.ycf{bottom:238.680000px;}
.y21{bottom:240.480000px;}
.y159{bottom:243.000000px;}
.y93{bottom:244.080000px;}
.y11d{bottom:246.960000px;}
.y61{bottom:250.920000px;}
.y40{bottom:255.240000px;}
.yff{bottom:255.600000px;}
.y13d{bottom:257.040000px;}
.ye9{bottom:258.684753px;}
.y18a{bottom:260.640000px;}
.ybd{bottom:264.240000px;}
.y134{bottom:267.480000px;}
.ye1{bottom:269.280000px;}
.yce{bottom:269.640000px;}
.y20{bottom:271.080000px;}
.y158{bottom:273.960000px;}
.y19f{bottom:275.040000px;}
.yac{bottom:276.480000px;}
.y11c{bottom:277.920000px;}
.y60{bottom:281.880000px;}
.y171{bottom:286.560000px;}
.y8c{bottom:289.800000px;}
.y3f{bottom:291.240000px;}
.y189{bottom:291.600000px;}
.y1b8{bottom:295.200000px;}
.ybc{bottom:295.560000px;}
.y8b{bottom:295.920000px;}
.yfe{bottom:298.440000px;}
.yfd{bottom:298.800000px;}
.y13c{bottom:299.520000px;}
.ye0{bottom:300.240000px;}
.ycd{bottom:300.600000px;}
.y1f{bottom:302.040000px;}
.yab{bottom:302.400000px;}
.y133{bottom:303.480000px;}
.y157{bottom:304.920000px;}
.y19e{bottom:306.360000px;}
.y5f{bottom:312.840000px;}
.y11b{bottom:313.920000px;}
.y170{bottom:317.880000px;}
.y3e{bottom:321.840000px;}
.y188{bottom:322.560000px;}
.y13b{bottom:322.920000px;}
.ye8{bottom:326.421619px;}
.ybb{bottom:326.520000px;}
.ya8{bottom:327.960000px;}
.yfc{bottom:329.760000px;}
.ycc{bottom:331.920000px;}
.y1e{bottom:333.000000px;}
.y132{bottom:334.080000px;}
.y1b7{bottom:335.160000px;}
.ydf{bottom:336.240000px;}
.y8a{bottom:342.000000px;}
.y5e{bottom:343.800000px;}
.y1c4{bottom:344.160000px;}
.y11a{bottom:344.520000px;}
.y156{bottom:345.960000px;}
.y19d{bottom:346.320000px;}
.y16f{bottom:348.840000px;}
.y3d{bottom:352.800000px;}
.y187{bottom:353.520000px;}
.y155{bottom:354.960000px;}
.yba{bottom:357.480000px;}
.yfb{bottom:360.720000px;}
.ycb{bottom:362.880000px;}
.y1d{bottom:364.320000px;}
.y131{bottom:365.040000px;}
.y1b6{bottom:366.120000px;}
.yde{bottom:366.840000px;}
.y89{bottom:372.960000px;}
.y1c3{bottom:375.120000px;}
.y119{bottom:375.840000px;}
.y19c{bottom:377.280000px;}
.y5d{bottom:379.800000px;}
.ya7{bottom:381.240000px;}
.y151{bottom:381.600000px;}
.y3c{bottom:384.120000px;}
.yb9{bottom:388.440000px;}
.y186{bottom:389.520000px;}
.y152{bottom:390.600000px;}
.yfa{bottom:391.680000px;}
.y1c{bottom:395.280000px;}
.y130{bottom:396.000000px;}
.y1b5{bottom:397.080000px;}
.ydd{bottom:397.800000px;}
.yca{bottom:398.880000px;}
.ya6{bottom:404.280000px;}
.y88{bottom:405.000000px;}
.y1c2{bottom:406.080000px;}
.y118{bottom:406.800000px;}
.y5c{bottom:410.400000px;}
.y16e{bottom:410.760000px;}
.y3b{bottom:415.080000px;}
.y19b{bottom:417.240000px;}
.yb8{bottom:419.400000px;}
.y185{bottom:420.120000px;}
.yf9{bottom:422.640000px;}
.y1b{bottom:426.240000px;}
.y12f{bottom:427.320000px;}
.y148{bottom:428.400000px;}
.ydc{bottom:429.120000px;}
.yc9{bottom:429.480000px;}
.y149{bottom:429.840000px;}
.y1b4{bottom:437.400000px;}
.y5b{bottom:441.720000px;}
.y16d{bottom:442.080000px;}
.y84{bottom:443.520000px;}
.y3a{bottom:446.040000px;}
.y117{bottom:446.760000px;}
.y19a{bottom:448.560000px;}
.yb7{bottom:450.720000px;}
.y85{bottom:451.080000px;}
.yf8{bottom:453.600000px;}
.y1a{bottom:457.200000px;}
.y12e{bottom:458.280000px;}
.ydb{bottom:460.080000px;}
.yc8{bottom:460.440000px;}
.y1b3{bottom:468.360000px;}
.y5a{bottom:472.680000px;}
.y16c{bottom:473.040000px;}
.y147{bottom:474.480000px;}
.y39{bottom:477.000000px;}
.y1c1{bottom:477.360000px;}
.y83{bottom:479.520000px;}
.yb6{bottom:481.680000px;}
.y184{bottom:482.400000px;}
.yf7{bottom:484.920000px;}
.y116{bottom:487.080000px;}
.y19{bottom:488.520000px;}
.y12d{bottom:489.240000px;}
.yda{bottom:491.040000px;}
.y1b2{bottom:499.320000px;}
.yc7{bottom:503.280000px;}
.y59{bottom:503.640000px;}
.y16b{bottom:504.000000px;}
.y146{bottom:505.080000px;}
.y38{bottom:508.320000px;}
.y82{bottom:510.480000px;}
.y183{bottom:513.360000px;}
.yf6{bottom:515.880000px;}
.y115{bottom:517.680000px;}
.y18{bottom:519.480000px;}
.y12c{bottom:520.200000px;}
.yd9{bottom:522.000000px;}
.yb5{bottom:524.520000px;}
.yc6{bottom:526.680000px;}
.y58{bottom:534.600000px;}
.y16a{bottom:534.960000px;}
.y145{bottom:536.040000px;}
.y37{bottom:539.280000px;}
.y81{bottom:542.520000px;}
.y182{bottom:544.320000px;}
.yf5{bottom:546.840000px;}
.yb4{bottom:547.560000px;}
.y114{bottom:549.000000px;}
.y17{bottom:550.440000px;}
.y12b{bottom:551.520000px;}
.yd8{bottom:558.000000px;}
.y199{bottom:559.440000px;}
.y57{bottom:565.920000px;}
.y169{bottom:566.280000px;}
.y144{bottom:567.000000px;}
.y36{bottom:570.240000px;}
.y1b1{bottom:570.600000px;}
.y80{bottom:574.920000px;}
.y181{bottom:575.280000px;}
.yf4{bottom:577.800000px;}
.y1c0{bottom:579.600000px;}
.y16{bottom:581.400000px;}
.y12a{bottom:582.480000px;}
.y113{bottom:584.640000px;}
.yd7{bottom:588.600000px;}
.y198{bottom:590.760000px;}
.y56{bottom:596.880000px;}
.y168{bottom:597.240000px;}
.y143{bottom:597.960000px;}
.y35{bottom:601.200000px;}
.y1b0{bottom:601.560000px;}
.y7f{bottom:605.880000px;}
.y180{bottom:606.600000px;}
.yf3{bottom:609.120000px;}
.y1bf{bottom:610.560000px;}
.y15{bottom:612.720000px;}
.y129{bottom:613.440000px;}
.y112{bottom:615.600000px;}
.yd6{bottom:619.920000px;}
.y197{bottom:631.080000px;}
.y34{bottom:632.520000px;}
.y7e{bottom:636.840000px;}
.y142{bottom:638.280000px;}
.y55{bottom:639.360000px;}
.y167{bottom:639.720000px;}
.yf2{bottom:640.080000px;}
.y1af{bottom:641.520000px;}
.y17f{bottom:642.240000px;}
.y14{bottom:643.680000px;}
.y111{bottom:646.560000px;}
.y128{bottom:649.440000px;}
.yd5{bottom:650.880000px;}
.y160{bottom:651.240000px;}
.y196{bottom:662.400000px;}
.y33{bottom:663.480000px;}
.y7d{bottom:667.800000px;}
.y1ae{bottom:672.480000px;}
.y17e{bottom:673.200000px;}
.y13{bottom:674.640000px;}
.y110{bottom:677.520000px;}
.yf1{bottom:680.040000px;}
.y13f{bottom:681.120000px;}
.y1be{bottom:681.480000px;}
.y15f{bottom:682.200000px;}
.y54{bottom:682.560000px;}
.y164{bottom:685.440000px;}
.y195{bottom:693.360000px;}
.yd4{bottom:693.720000px;}
.y32{bottom:694.440000px;}
.y7c{bottom:698.760000px;}
.y1ad{bottom:703.800000px;}
.y17d{bottom:704.160000px;}
.y13e{bottom:704.520000px;}
.y10f{bottom:708.480000px;}
.y163{bottom:708.840000px;}
.y127{bottom:711.000000px;}
.y12{bottom:712.800000px;}
.y53{bottom:713.160000px;}
.yf0{bottom:722.880000px;}
.y31{bottom:725.400000px;}
.y7b{bottom:730.080000px;}
.y194{bottom:733.320000px;}
.y17c{bottom:735.120000px;}
.yd3{bottom:739.080000px;}
.y126{bottom:742.320000px;}
.y1ac{bottom:743.760000px;}
.y52{bottom:744.120000px;}
.y10e{bottom:744.480000px;}
.y11{bottom:749.880000px;}
.y30{bottom:756.720000px;}
.y7a{bottom:761.040000px;}
.yd2{bottom:762.480000px;}
.y193{bottom:764.280000px;}
.y17b{bottom:766.080000px;}
.yef{bottom:768.240000px;}
.ya5{bottom:768.600000px;}
.y125{bottom:773.280000px;}
.y1ab{bottom:774.720000px;}
.y51{bottom:775.080000px;}
.y13a{bottom:775.440000px;}
.yc5{bottom:780.120000px;}
.ye6{bottom:780.122550px;}
.y10{bottom:782.640000px;}
.y1bd{bottom:783.720000px;}
.y2f{bottom:787.680000px;}
.yee{bottom:791.640000px;}
.y79{bottom:792.000000px;}
.y17a{bottom:797.400000px;}
.ya4{bottom:799.200000px;}
.y124{bottom:804.240000px;}
.y192{bottom:804.600000px;}
.y1aa{bottom:805.680000px;}
.y50{bottom:806.400000px;}
.yf{bottom:810.720000px;}
.y1bc{bottom:814.680000px;}
.y2e{bottom:823.680000px;}
.y179{bottom:828.360000px;}
.ya3{bottom:830.160000px;}
.y78{bottom:835.200000px;}
.y191{bottom:835.560000px;}
.y4f{bottom:837.360000px;}
.yc4{bottom:841.680000px;}
.ye{bottom:845.640000px;}
.y1a9{bottom:846.000000px;}
.y2d{bottom:854.280000px;}
.y178{bottom:859.320000px;}
.ya2{bottom:861.480000px;}
.y10d{bottom:868.320000px;}
.y123{bottom:871.920000px;}
.yc3{bottom:873.000000px;}
.y4e{bottom:873.360000px;}
.y6f{bottom:876.960000px;}
.y190{bottom:878.040000px;}
.yd{bottom:879.840000px;}
.y2c{bottom:885.240000px;}
.y1bb{bottom:885.960000px;}
.ya1{bottom:892.440000px;}
.y177{bottom:895.320000px;}
.y77{bottom:898.200000px;}
.y10c{bottom:899.280000px;}
.y4d{bottom:903.960000px;}
.yc{bottom:912.600000px;}
.y2b{bottom:916.200000px;}
.y1a8{bottom:916.920000px;}
.y76{bottom:919.440000px;}
.y18f{bottom:921.240000px;}
.ya0{bottom:923.400000px;}
.y10b{bottom:930.600000px;}
.y176{bottom:930.960000px;}
.y4c{bottom:934.920000px;}
.yb3{bottom:935.280000px;}
.y75{bottom:940.680000px;}
.yb{bottom:945.720000px;}
.y2a{bottom:947.160000px;}
.y1a7{bottom:947.880000px;}
.y18e{bottom:951.840000px;}
.y9f{bottom:954.360000px;}
.y10a{bottom:961.560000px;}
.y74{bottom:961.920000px;}
.y4b{bottom:965.880000px;}
.ya{bottom:978.480000px;}
.y18d{bottom:982.800000px;}
.y29{bottom:983.160000px;}
.y9e{bottom:985.680000px;}
.y1a6{bottom:988.200000px;}
.y109{bottom:992.520000px;}
.y4a{bottom:997.200000px;}
.y15e{bottom:997.560000px;}
.y66{bottom:1004.760000px;}
.y9{bottom:1013.040000px;}
.y28{bottom:1013.760000px;}
.y9d{bottom:1016.640000px;}
.y1a5{bottom:1019.160000px;}
.y108{bottom:1023.480000px;}
.y6e{bottom:1026.000000px;}
.y49{bottom:1028.160000px;}
.y139{bottom:1028.520000px;}
.y27{bottom:1045.080000px;}
.y8{bottom:1047.240000px;}
.y9c{bottom:1047.600000px;}
.y1a4{bottom:1050.120000px;}
.y107{bottom:1054.800000px;}
.y48{bottom:1059.120000px;}
.y6d{bottom:1068.480000px;}
.y26{bottom:1076.040000px;}
.y9b{bottom:1078.560000px;}
.y7{bottom:1081.440000px;}
.y175{bottom:1085.760000px;}
.y6c{bottom:1089.720000px;}
.y47{bottom:1090.080000px;}
.y106{bottom:1090.440000px;}
.y6a{bottom:1110.960000px;}
.y9a{bottom:1116.360000px;}
.y6{bottom:1117.080000px;}
.y25{bottom:1118.520000px;}
.y46{bottom:1121.400000px;}
.y174{bottom:1121.760000px;}
.y99{bottom:1123.920000px;}
.y63{bottom:1132.560000px;}
.hc{height:20.519985px;}
.he{height:20.879970px;}
.h9{height:22.680000px;}
.h21{height:24.840000px;}
.h22{height:25.200000px;}
.h2c{height:25.920000px;}
.h28{height:26.849296px;}
.h2d{height:28.122156px;}
.h15{height:28.460590px;}
.h2f{height:28.894296px;}
.h17{height:29.178774px;}
.h29{height:30.914459px;}
.h19{height:31.887942px;}
.h1d{height:32.399970px;}
.h1a{height:32.400000px;}
.h11{height:32.400015px;}
.h12{height:32.692613px;}
.h2a{height:35.300216px;}
.ha{height:37.020234px;}
.h2{height:41.022422px;}
.h1f{height:43.189453px;}
.h27{height:43.560015px;}
.h20{height:43.920000px;}
.h6{height:45.024609px;}
.h25{height:46.193926px;}
.h4{height:48.796875px;}
.h26{height:49.992188px;}
.h3{height:50.027344px;}
.h18{height:50.408580px;}
.h2e{height:50.820008px;}
.hf{height:51.117188px;}
.h16{height:51.188460px;}
.h14{height:51.479985px;}
.h23{height:54.374766px;}
.h13{height:56.410293px;}
.h8{height:56.604375px;}
.h1c{height:57.283026px;}
.h7{height:57.990938px;}
.h2b{height:59.755234px;}
.h1b{height:60.156591px;}
.h1e{height:60.183685px;}
.h5{height:66.114844px;}
.h10{height:66.138047px;}
.hb{height:126.719970px;}
.hd{height:127.079955px;}
.h24{height:375.687600px;}
.h1{height:1226.160000px;}
.h0{height:1263.000000px;}
.w7{width:25.920000px;}
.w12{width:48.240000px;}
.w13{width:64.440000px;}
.wa{width:72.720000px;}
.we{width:94.680000px;}
.wd{width:95.039985px;}
.wc{width:95.040000px;}
.w10{width:100.079955px;}
.wf{width:100.080000px;}
.wb{width:100.800000px;}
.w9{width:108.000000px;}
.w6{width:110.880015px;}
.w3{width:111.240000px;}
.w8{width:122.400015px;}
.w4{width:137.160000px;}
.w5{width:204.480000px;}
.w2{width:205.200000px;}
.w11{width:291.450000px;}
.w1{width:856.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x29{left:2.226782px;}
.x1c{left:3.289181px;}
.x23{left:4.701968px;}
.x35{left:8.721495px;}
.x58{left:9.748670px;}
.x17{left:11.162400px;}
.x16{left:13.228950px;}
.x37{left:14.371950px;}
.x28{left:16.546982px;}
.x1{left:18.000000px;}
.x1f{left:19.140753px;}
.x36{left:20.846730px;}
.x2b{left:24.417587px;}
.x11{left:27.622650px;}
.x21{left:32.469483px;}
.x3f{left:34.132125px;}
.x18{left:35.490000px;}
.x2e{left:36.880596px;}
.x3e{left:38.257140px;}
.x13{left:39.609900px;}
.x15{left:42.240000px;}
.x57{left:43.563337px;}
.x3d{left:46.507050px;}
.x55{left:50.157725px;}
.xf{left:55.769850px;}
.x14{left:58.544850px;}
.x19{left:61.926450px;}
.x2d{left:64.116789px;}
.x2a{left:66.113693px;}
.x56{left:77.479499px;}
.x2{left:88.200075px;}
.x9{left:93.435795px;}
.x5{left:96.171015px;}
.xd{left:102.419850px;}
.x34{left:103.680000px;}
.x3{left:104.898555px;}
.x20{left:106.553773px;}
.x22{left:111.663343px;}
.x5d{left:120.075075px;}
.x51{left:121.565535px;}
.x4b{left:126.159637px;}
.x40{left:128.502315px;}
.x4f{left:132.837450px;}
.x7{left:136.486500px;}
.x1a{left:141.773100px;}
.x6{left:142.895550px;}
.x48{left:144.623674px;}
.x5a{left:152.689500px;}
.x25{left:154.800000px;}
.x2f{left:160.744650px;}
.x26{left:162.747750px;}
.x4c{left:168.009813px;}
.x4a{left:171.092279px;}
.x5c{left:175.940550px;}
.x33{left:180.082350px;}
.x49{left:181.557900px;}
.x54{left:183.217200px;}
.x53{left:186.967200px;}
.x12{left:196.919850px;}
.x47{left:198.433200px;}
.x4d{left:201.246309px;}
.x4{left:206.042700px;}
.xc{left:219.240000px;}
.x8{left:231.006900px;}
.xa{left:276.434250px;}
.x38{left:300.960000px;}
.xb{left:314.195850px;}
.x30{left:322.920000px;}
.x31{left:330.579300px;}
.x43{left:351.304350px;}
.x41{left:358.920000px;}
.x42{left:366.782550px;}
.x1e{left:385.560000px;}
.x39{left:396.720000px;}
.xe{left:424.440000px;}
.x24{left:489.954000px;}
.x3a{left:492.480000px;}
.x10{left:536.400000px;}
.x44{left:566.812500px;}
.x46{left:575.707350px;}
.x3b{left:588.240000px;}
.x1b{left:613.440000px;}
.x1d{left:621.311250px;}
.x27{left:645.120000px;}
.x32{left:647.024700px;}
.x52{left:671.849850px;}
.x5b{left:680.362500px;}
.x3c{left:689.040000px;}
.x4e{left:698.362500px;}
.x45{left:723.090150px;}
.x59{left:728.876100px;}
.x2c{left:735.045000px;}
.x50{left:754.837350px;}
@media print{
.v6{vertical-align:-24.515119pt;}
.v4{vertical-align:-18.585622pt;}
.v3{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.v2{vertical-align:29.440000pt;}
.ls39{letter-spacing:-6.716131pt;}
.ls65{letter-spacing:-0.756194pt;}
.ls68{letter-spacing:-0.517867pt;}
.ls16{letter-spacing:-0.012800pt;}
.lse{letter-spacing:0.000000pt;}
.ls3c{letter-spacing:0.000427pt;}
.ls76{letter-spacing:0.000533pt;}
.ls1d{letter-spacing:0.001067pt;}
.ls21{letter-spacing:0.001600pt;}
.ls1c{letter-spacing:0.005067pt;}
.ls1e{letter-spacing:0.006400pt;}
.ls28{letter-spacing:0.007200pt;}
.ls3d{letter-spacing:0.010293pt;}
.ls62{letter-spacing:0.010667pt;}
.ls22{letter-spacing:0.011200pt;}
.ls9{letter-spacing:0.012800pt;}
.ls23{letter-spacing:0.014400pt;}
.ls24{letter-spacing:0.023467pt;}
.ls61{letter-spacing:0.031467pt;}
.ls59{letter-spacing:0.032000pt;}
.ls40{letter-spacing:0.053333pt;}
.ls53{letter-spacing:0.103936pt;}
.ls4{letter-spacing:0.106133pt;}
.ls3{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.107200pt;}
.ls18{letter-spacing:0.142613pt;}
.ls73{letter-spacing:0.170752pt;}
.ls25{letter-spacing:0.172373pt;}
.ls1f{letter-spacing:0.172907pt;}
.ls8{letter-spacing:0.178176pt;}
.ls29{letter-spacing:0.183040pt;}
.ls4e{letter-spacing:0.207467pt;}
.lsa{letter-spacing:0.207872pt;}
.ls27{letter-spacing:0.212800pt;}
.ls1b{letter-spacing:0.213120pt;}
.ls1{letter-spacing:0.213333pt;}
.ls2b{letter-spacing:0.213867pt;}
.ls57{letter-spacing:0.215168pt;}
.ls19{letter-spacing:0.215296pt;}
.ls34{letter-spacing:0.215424pt;}
.lsd{letter-spacing:0.225664pt;}
.ls4a{letter-spacing:0.228160pt;}
.ls32{letter-spacing:0.236800pt;}
.ls52{letter-spacing:0.244992pt;}
.ls4d{letter-spacing:0.248960pt;}
.ls10{letter-spacing:0.264960pt;}
.ls6{letter-spacing:0.266667pt;}
.ls30{letter-spacing:0.274688pt;}
.lsc{letter-spacing:0.283392pt;}
.ls0{letter-spacing:0.284160pt;}
.ls47{letter-spacing:0.284693pt;}
.ls15{letter-spacing:0.288000pt;}
.ls46{letter-spacing:0.309632pt;}
.ls20{letter-spacing:0.314987pt;}
.ls26{letter-spacing:0.315520pt;}
.ls51{letter-spacing:0.319232pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.322048pt;}
.ls49{letter-spacing:0.341120pt;}
.ls54{letter-spacing:0.356352pt;}
.ls13{letter-spacing:0.357120pt;}
.ls6d{letter-spacing:0.370347pt;}
.ls6b{letter-spacing:0.370880pt;}
.ls43{letter-spacing:0.372608pt;}
.ls7{letter-spacing:0.384533pt;}
.ls5c{letter-spacing:0.398848pt;}
.ls2{letter-spacing:0.425088pt;}
.ls2d{letter-spacing:0.426240pt;}
.ls55{letter-spacing:0.435584pt;}
.ls5b{letter-spacing:0.466133pt;}
.ls11{letter-spacing:0.466560pt;}
.ls2e{letter-spacing:0.468864pt;}
.ls33{letter-spacing:0.482816pt;}
.ls3f{letter-spacing:0.482987pt;}
.lsb{letter-spacing:0.514304pt;}
.ls12{letter-spacing:0.535680pt;}
.ls4c{letter-spacing:0.566784pt;}
.ls6e{letter-spacing:0.568640pt;}
.ls31{letter-spacing:0.596736pt;}
.ls45{letter-spacing:0.599040pt;}
.ls48{letter-spacing:0.624512pt;}
.ls6c{letter-spacing:0.625173pt;}
.lsf{letter-spacing:0.645120pt;}
.ls14{letter-spacing:0.777600pt;}
.ls44{letter-spacing:0.996480pt;}
.ls60{letter-spacing:1.076800pt;}
.ls5f{letter-spacing:3.115733pt;}
.ls5d{letter-spacing:3.117333pt;}
.ls4f{letter-spacing:3.678400pt;}
.ls71{letter-spacing:4.454400pt;}
.ls64{letter-spacing:4.614933pt;}
.ls2a{letter-spacing:5.442667pt;}
.ls5e{letter-spacing:6.828267pt;}
.ls70{letter-spacing:8.208000pt;}
.ls6f{letter-spacing:8.208533pt;}
.ls3e{letter-spacing:9.000000pt;}
.ls5a{letter-spacing:9.496000pt;}
.ls75{letter-spacing:9.785547pt;}
.ls72{letter-spacing:9.843200pt;}
.ls6a{letter-spacing:10.245867pt;}
.ls58{letter-spacing:12.345600pt;}
.ls63{letter-spacing:15.206308pt;}
.ls56{letter-spacing:15.808320pt;}
.ls4b{letter-spacing:17.178133pt;}
.ls50{letter-spacing:17.278933pt;}
.ls17{letter-spacing:17.761013pt;}
.ls74{letter-spacing:39.447040pt;}
.ls3b{letter-spacing:70.266614pt;}
.ls67{letter-spacing:90.528876pt;}
.ls2c{letter-spacing:109.512613pt;}
.ls36{letter-spacing:113.126464pt;}
.ls35{letter-spacing:120.289635pt;}
.ls42{letter-spacing:121.973598pt;}
.ls69{letter-spacing:125.510309pt;}
.ls37{letter-spacing:142.209217pt;}
.ls41{letter-spacing:168.333104pt;}
.ls66{letter-spacing:223.529152pt;}
.ls3a{letter-spacing:252.829821pt;}
.ls38{letter-spacing:299.584375pt;}
.ws29{word-spacing:-125.574378pt;}
.ws11{word-spacing:-120.354168pt;}
.ws12{word-spacing:-91.378821pt;}
.ws27{word-spacing:-90.592944pt;}
.ws1e{word-spacing:-18.916352pt;}
.ws2a{word-spacing:-18.879232pt;}
.ws1d{word-spacing:-18.804992pt;}
.ws8{word-spacing:-18.775296pt;}
.ws4{word-spacing:-18.767872pt;}
.ws1{word-spacing:-18.738176pt;}
.ws2b{word-spacing:-18.730752pt;}
.ws7{word-spacing:-18.560000pt;}
.ws23{word-spacing:-16.032000pt;}
.ws2{word-spacing:-16.012800pt;}
.ws6{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.987200pt;}
.ws17{word-spacing:-15.177600pt;}
.ws16{word-spacing:-14.935680pt;}
.ws15{word-spacing:-14.826240pt;}
.ws2c{word-spacing:-14.815104pt;}
.ws20{word-spacing:-14.784367pt;}
.ws1b{word-spacing:-13.744512pt;}
.ws18{word-spacing:-13.634304pt;}
.wse{word-spacing:-13.602816pt;}
.ws21{word-spacing:-13.555584pt;}
.ws0{word-spacing:-13.545088pt;}
.ws1a{word-spacing:-13.492608pt;}
.ws1c{word-spacing:-13.461120pt;}
.ws22{word-spacing:-13.429632pt;}
.ws19{word-spacing:-13.403392pt;}
.ws14{word-spacing:-13.345664pt;}
.ws24{word-spacing:-13.120000pt;}
.wsa{word-spacing:-12.308864pt;}
.ws9{word-spacing:-12.162048pt;}
.wsb{word-spacing:-12.114688pt;}
.wsc{word-spacing:-12.076800pt;}
.wsd{word-spacing:-12.053120pt;}
.ws10{word-spacing:-10.560000pt;}
.ws1f{word-spacing:-5.798955pt;}
.wsf{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws28{word-spacing:0.480876pt;}
.ws25{word-spacing:0.721822pt;}
.ws26{word-spacing:30.339545pt;}
.ws13{word-spacing:73.175321pt;}
._1f{margin-left:-350.806098pt;}
._22{margin-left:-236.286898pt;}
._20{margin-left:-170.396399pt;}
._21{margin-left:-126.022858pt;}
._14{margin-left:-115.931092pt;}
._13{margin-left:-36.848381pt;}
._19{margin-left:-3.962210pt;}
._1a{margin-left:-2.306361pt;}
._3{margin-left:-1.164363pt;}
._0{width:1.574400pt;}
._4{width:3.072000pt;}
._2{width:4.723200pt;}
._1{width:5.720320pt;}
._8{width:6.791413pt;}
._b{width:7.901067pt;}
._7{width:8.812800pt;}
._9{width:9.996000pt;}
._c{width:11.232000pt;}
._5{width:12.428800pt;}
._f{width:13.766667pt;}
._e{width:14.662133pt;}
._a{width:17.446400pt;}
._12{width:18.630400pt;}
._11{width:19.569333pt;}
._10{width:20.550400pt;}
._d{width:21.708800pt;}
._18{width:23.170933pt;}
._17{width:24.119200pt;}
._6{width:25.016267pt;}
._1b{width:26.529333pt;}
._1d{width:27.609600pt;}
._1c{width:29.221600pt;}
._24{width:30.807029pt;}
._23{width:31.762901pt;}
._25{width:41.510400pt;}
._16{width:96.697838pt;}
._26{width:107.788800pt;}
._1e{width:212.991802pt;}
._15{width:917.461867pt;}
.fsf{font-size:34.372469pt;}
.fsd{font-size:34.560000pt;}
.fs14{font-size:36.990479pt;}
.fs3{font-size:37.120000pt;}
.fs9{font-size:37.354667pt;}
.fs10{font-size:39.576691pt;}
.fs7{font-size:41.853084pt;}
.fs4{font-size:42.240000pt;}
.fs11{font-size:45.191337pt;}
.fs6{font-size:47.360000pt;}
.fs0{font-size:52.480000pt;}
.fs2{font-size:57.600000pt;}
.fse{font-size:59.137466pt;}
.fs1{font-size:64.000000pt;}
.fs15{font-size:64.068560pt;}
.fsa{font-size:64.533066pt;}
.fs12{font-size:68.332307pt;}
.fs8{font-size:72.216458pt;}
.fs5{font-size:74.240000pt;}
.fsb{font-size:75.839149pt;}
.fsc{font-size:75.873307pt;}
.fs13{font-size:102.572933pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:0.320000pt;}
.y70{bottom:1.280000pt;}
.y14b{bottom:2.225337pt;}
.y153{bottom:2.891841pt;}
.y8e{bottom:3.413450pt;}
.y6b{bottom:4.480000pt;}
.y86{bottom:4.575538pt;}
.y73{bottom:4.800000pt;}
.y64{bottom:5.120000pt;}
.y14f{bottom:5.203808pt;}
.y65{bottom:5.760000pt;}
.yad{bottom:6.080000pt;}
.y154{bottom:7.023117pt;}
.y91{bottom:7.567601pt;}
.y87{bottom:9.221943pt;}
.y14d{bottom:10.099523pt;}
.yaa{bottom:14.400000pt;}
.y150{bottom:14.516547pt;}
.y8d{bottom:14.812718pt;}
.y1{bottom:16.000000pt;}
.y94{bottom:17.308289pt;}
.y90{bottom:20.190906pt;}
.y14c{bottom:22.184417pt;}
.ya9{bottom:22.720000pt;}
.y14a{bottom:24.341350pt;}
.y14e{bottom:27.456767pt;}
.y8f{bottom:30.366136pt;}
.y5{bottom:34.880027pt;}
.y69{bottom:43.840000pt;}
.y72{bottom:45.120000pt;}
.y4{bottom:52.800027pt;}
.y71{bottom:58.880000pt;}
.y68{bottom:60.480000pt;}
.y3{bottom:68.160027pt;}
.y122{bottom:81.600027pt;}
.y2{bottom:83.520027pt;}
.y105{bottom:85.120027pt;}
.y1ba{bottom:88.640027pt;}
.y45{bottom:89.280027pt;}
.y1a3{bottom:90.560027pt;}
.yc2{bottom:93.120027pt;}
.ye5{bottom:97.600027pt;}
.y138{bottom:99.840027pt;}
.y15d{bottom:105.600027pt;}
.yb2{bottom:106.880027pt;}
.y121{bottom:109.120027pt;}
.yed{bottom:109.509981pt;}
.y44{bottom:116.480027pt;}
.y104{bottom:116.800027pt;}
.y97{bottom:117.120027pt;}
.y24{bottom:118.400000pt;}
.y98{bottom:123.840013pt;}
.yc1{bottom:124.800000pt;}
.ye4{bottom:125.120000pt;}
.y1a2{bottom:126.080000pt;}
.yec{bottom:127.037698pt;}
.y137{bottom:127.360000pt;}
.y102{bottom:132.480000pt;}
.y15c{bottom:133.120000pt;}
.yb0{bottom:133.440000pt;}
.y120{bottom:136.640000pt;}
.yb1{bottom:140.160000pt;}
.y43{bottom:144.000000pt;}
.y103{bottom:144.320000pt;}
.y23{bottom:145.600000pt;}
.ye7{bottom:147.286363pt;}
.y96{bottom:149.120000pt;}
.yc0{bottom:152.320000pt;}
.ye3{bottom:152.640000pt;}
.y1a1{bottom:153.920000pt;}
.y136{bottom:154.880000pt;}
.yd1{bottom:157.120000pt;}
.y162{bottom:159.680000pt;}
.y15b{bottom:160.640000pt;}
.y101{bottom:164.160000pt;}
.y11f{bottom:164.480000pt;}
.y42{bottom:171.840000pt;}
.y173{bottom:172.160000pt;}
.y141{bottom:176.000000pt;}
.y18c{bottom:176.320000pt;}
.y95{bottom:176.960000pt;}
.yaf{bottom:177.280000pt;}
.y22{bottom:179.520000pt;}
.ybf{bottom:179.840000pt;}
.ye2{bottom:180.160000pt;}
.y161{bottom:180.480000pt;}
.y1a0{bottom:181.440000pt;}
.yea{bottom:181.779029pt;}
.y135{bottom:182.400000pt;}
.y166{bottom:183.360000pt;}
.yd0{bottom:184.640000pt;}
.y15a{bottom:188.160000pt;}
.y11e{bottom:192.000000pt;}
.y62{bottom:195.520000pt;}
.y100{bottom:195.840000pt;}
.yeb{bottom:196.547551pt;}
.y140{bottom:196.800000pt;}
.y41{bottom:199.360000pt;}
.y172{bottom:199.680000pt;}
.yae{bottom:200.000000pt;}
.y18b{bottom:203.840000pt;}
.y165{bottom:204.160000pt;}
.y1b9{bottom:207.040000pt;}
.ybe{bottom:207.360000pt;}
.y92{bottom:210.240000pt;}
.ycf{bottom:212.160000pt;}
.y21{bottom:213.760000pt;}
.y159{bottom:216.000000pt;}
.y93{bottom:216.960000pt;}
.y11d{bottom:219.520000pt;}
.y61{bottom:223.040000pt;}
.y40{bottom:226.880000pt;}
.yff{bottom:227.200000pt;}
.y13d{bottom:228.480000pt;}
.ye9{bottom:229.942003pt;}
.y18a{bottom:231.680000pt;}
.ybd{bottom:234.880000pt;}
.y134{bottom:237.760000pt;}
.ye1{bottom:239.360000pt;}
.yce{bottom:239.680000pt;}
.y20{bottom:240.960000pt;}
.y158{bottom:243.520000pt;}
.y19f{bottom:244.480000pt;}
.yac{bottom:245.760000pt;}
.y11c{bottom:247.040000pt;}
.y60{bottom:250.560000pt;}
.y171{bottom:254.720000pt;}
.y8c{bottom:257.600000pt;}
.y3f{bottom:258.880000pt;}
.y189{bottom:259.200000pt;}
.y1b8{bottom:262.400000pt;}
.ybc{bottom:262.720000pt;}
.y8b{bottom:263.040000pt;}
.yfe{bottom:265.280000pt;}
.yfd{bottom:265.600000pt;}
.y13c{bottom:266.240000pt;}
.ye0{bottom:266.880000pt;}
.ycd{bottom:267.200000pt;}
.y1f{bottom:268.480000pt;}
.yab{bottom:268.800000pt;}
.y133{bottom:269.760000pt;}
.y157{bottom:271.040000pt;}
.y19e{bottom:272.320000pt;}
.y5f{bottom:278.080000pt;}
.y11b{bottom:279.040000pt;}
.y170{bottom:282.560000pt;}
.y3e{bottom:286.080000pt;}
.y188{bottom:286.720000pt;}
.y13b{bottom:287.040000pt;}
.ye8{bottom:290.152550pt;}
.ybb{bottom:290.240000pt;}
.ya8{bottom:291.520000pt;}
.yfc{bottom:293.120000pt;}
.ycc{bottom:295.040000pt;}
.y1e{bottom:296.000000pt;}
.y132{bottom:296.960000pt;}
.y1b7{bottom:297.920000pt;}
.ydf{bottom:298.880000pt;}
.y8a{bottom:304.000000pt;}
.y5e{bottom:305.600000pt;}
.y1c4{bottom:305.920000pt;}
.y11a{bottom:306.240000pt;}
.y156{bottom:307.520000pt;}
.y19d{bottom:307.840000pt;}
.y16f{bottom:310.080000pt;}
.y3d{bottom:313.600000pt;}
.y187{bottom:314.240000pt;}
.y155{bottom:315.520000pt;}
.yba{bottom:317.760000pt;}
.yfb{bottom:320.640000pt;}
.ycb{bottom:322.560000pt;}
.y1d{bottom:323.840000pt;}
.y131{bottom:324.480000pt;}
.y1b6{bottom:325.440000pt;}
.yde{bottom:326.080000pt;}
.y89{bottom:331.520000pt;}
.y1c3{bottom:333.440000pt;}
.y119{bottom:334.080000pt;}
.y19c{bottom:335.360000pt;}
.y5d{bottom:337.600000pt;}
.ya7{bottom:338.880000pt;}
.y151{bottom:339.200000pt;}
.y3c{bottom:341.440000pt;}
.yb9{bottom:345.280000pt;}
.y186{bottom:346.240000pt;}
.y152{bottom:347.200000pt;}
.yfa{bottom:348.160000pt;}
.y1c{bottom:351.360000pt;}
.y130{bottom:352.000000pt;}
.y1b5{bottom:352.960000pt;}
.ydd{bottom:353.600000pt;}
.yca{bottom:354.560000pt;}
.ya6{bottom:359.360000pt;}
.y88{bottom:360.000000pt;}
.y1c2{bottom:360.960000pt;}
.y118{bottom:361.600000pt;}
.y5c{bottom:364.800000pt;}
.y16e{bottom:365.120000pt;}
.y3b{bottom:368.960000pt;}
.y19b{bottom:370.880000pt;}
.yb8{bottom:372.800000pt;}
.y185{bottom:373.440000pt;}
.yf9{bottom:375.680000pt;}
.y1b{bottom:378.880000pt;}
.y12f{bottom:379.840000pt;}
.y148{bottom:380.800000pt;}
.ydc{bottom:381.440000pt;}
.yc9{bottom:381.760000pt;}
.y149{bottom:382.080000pt;}
.y1b4{bottom:388.800000pt;}
.y5b{bottom:392.640000pt;}
.y16d{bottom:392.960000pt;}
.y84{bottom:394.240000pt;}
.y3a{bottom:396.480000pt;}
.y117{bottom:397.120000pt;}
.y19a{bottom:398.720000pt;}
.yb7{bottom:400.640000pt;}
.y85{bottom:400.960000pt;}
.yf8{bottom:403.200000pt;}
.y1a{bottom:406.400000pt;}
.y12e{bottom:407.360000pt;}
.ydb{bottom:408.960000pt;}
.yc8{bottom:409.280000pt;}
.y1b3{bottom:416.320000pt;}
.y5a{bottom:420.160000pt;}
.y16c{bottom:420.480000pt;}
.y147{bottom:421.760000pt;}
.y39{bottom:424.000000pt;}
.y1c1{bottom:424.320000pt;}
.y83{bottom:426.240000pt;}
.yb6{bottom:428.160000pt;}
.y184{bottom:428.800000pt;}
.yf7{bottom:431.040000pt;}
.y116{bottom:432.960000pt;}
.y19{bottom:434.240000pt;}
.y12d{bottom:434.880000pt;}
.yda{bottom:436.480000pt;}
.y1b2{bottom:443.840000pt;}
.yc7{bottom:447.360000pt;}
.y59{bottom:447.680000pt;}
.y16b{bottom:448.000000pt;}
.y146{bottom:448.960000pt;}
.y38{bottom:451.840000pt;}
.y82{bottom:453.760000pt;}
.y183{bottom:456.320000pt;}
.yf6{bottom:458.560000pt;}
.y115{bottom:460.160000pt;}
.y18{bottom:461.760000pt;}
.y12c{bottom:462.400000pt;}
.yd9{bottom:464.000000pt;}
.yb5{bottom:466.240000pt;}
.yc6{bottom:468.160000pt;}
.y58{bottom:475.200000pt;}
.y16a{bottom:475.520000pt;}
.y145{bottom:476.480000pt;}
.y37{bottom:479.360000pt;}
.y81{bottom:482.240000pt;}
.y182{bottom:483.840000pt;}
.yf5{bottom:486.080000pt;}
.yb4{bottom:486.720000pt;}
.y114{bottom:488.000000pt;}
.y17{bottom:489.280000pt;}
.y12b{bottom:490.240000pt;}
.yd8{bottom:496.000000pt;}
.y199{bottom:497.280000pt;}
.y57{bottom:503.040000pt;}
.y169{bottom:503.360000pt;}
.y144{bottom:504.000000pt;}
.y36{bottom:506.880000pt;}
.y1b1{bottom:507.200000pt;}
.y80{bottom:511.040000pt;}
.y181{bottom:511.360000pt;}
.yf4{bottom:513.600000pt;}
.y1c0{bottom:515.200000pt;}
.y16{bottom:516.800000pt;}
.y12a{bottom:517.760000pt;}
.y113{bottom:519.680000pt;}
.yd7{bottom:523.200000pt;}
.y198{bottom:525.120000pt;}
.y56{bottom:530.560000pt;}
.y168{bottom:530.880000pt;}
.y143{bottom:531.520000pt;}
.y35{bottom:534.400000pt;}
.y1b0{bottom:534.720000pt;}
.y7f{bottom:538.560000pt;}
.y180{bottom:539.200000pt;}
.yf3{bottom:541.440000pt;}
.y1bf{bottom:542.720000pt;}
.y15{bottom:544.640000pt;}
.y129{bottom:545.280000pt;}
.y112{bottom:547.200000pt;}
.yd6{bottom:551.040000pt;}
.y197{bottom:560.960000pt;}
.y34{bottom:562.240000pt;}
.y7e{bottom:566.080000pt;}
.y142{bottom:567.360000pt;}
.y55{bottom:568.320000pt;}
.y167{bottom:568.640000pt;}
.yf2{bottom:568.960000pt;}
.y1af{bottom:570.240000pt;}
.y17f{bottom:570.880000pt;}
.y14{bottom:572.160000pt;}
.y111{bottom:574.720000pt;}
.y128{bottom:577.280000pt;}
.yd5{bottom:578.560000pt;}
.y160{bottom:578.880000pt;}
.y196{bottom:588.800000pt;}
.y33{bottom:589.760000pt;}
.y7d{bottom:593.600000pt;}
.y1ae{bottom:597.760000pt;}
.y17e{bottom:598.400000pt;}
.y13{bottom:599.680000pt;}
.y110{bottom:602.240000pt;}
.yf1{bottom:604.480000pt;}
.y13f{bottom:605.440000pt;}
.y1be{bottom:605.760000pt;}
.y15f{bottom:606.400000pt;}
.y54{bottom:606.720000pt;}
.y164{bottom:609.280000pt;}
.y195{bottom:616.320000pt;}
.yd4{bottom:616.640000pt;}
.y32{bottom:617.280000pt;}
.y7c{bottom:621.120000pt;}
.y1ad{bottom:625.600000pt;}
.y17d{bottom:625.920000pt;}
.y13e{bottom:626.240000pt;}
.y10f{bottom:629.760000pt;}
.y163{bottom:630.080000pt;}
.y127{bottom:632.000000pt;}
.y12{bottom:633.600000pt;}
.y53{bottom:633.920000pt;}
.yf0{bottom:642.560000pt;}
.y31{bottom:644.800000pt;}
.y7b{bottom:648.960000pt;}
.y194{bottom:651.840000pt;}
.y17c{bottom:653.440000pt;}
.yd3{bottom:656.960000pt;}
.y126{bottom:659.840000pt;}
.y1ac{bottom:661.120000pt;}
.y52{bottom:661.440000pt;}
.y10e{bottom:661.760000pt;}
.y11{bottom:666.560000pt;}
.y30{bottom:672.640000pt;}
.y7a{bottom:676.480000pt;}
.yd2{bottom:677.760000pt;}
.y193{bottom:679.360000pt;}
.y17b{bottom:680.960000pt;}
.yef{bottom:682.880000pt;}
.ya5{bottom:683.200000pt;}
.y125{bottom:687.360000pt;}
.y1ab{bottom:688.640000pt;}
.y51{bottom:688.960000pt;}
.y13a{bottom:689.280000pt;}
.yc5{bottom:693.440000pt;}
.ye6{bottom:693.442267pt;}
.y10{bottom:695.680000pt;}
.y1bd{bottom:696.640000pt;}
.y2f{bottom:700.160000pt;}
.yee{bottom:703.680000pt;}
.y79{bottom:704.000000pt;}
.y17a{bottom:708.800000pt;}
.ya4{bottom:710.400000pt;}
.y124{bottom:714.880000pt;}
.y192{bottom:715.200000pt;}
.y1aa{bottom:716.160000pt;}
.y50{bottom:716.800000pt;}
.yf{bottom:720.640000pt;}
.y1bc{bottom:724.160000pt;}
.y2e{bottom:732.160000pt;}
.y179{bottom:736.320000pt;}
.ya3{bottom:737.920000pt;}
.y78{bottom:742.400000pt;}
.y191{bottom:742.720000pt;}
.y4f{bottom:744.320000pt;}
.yc4{bottom:748.160000pt;}
.ye{bottom:751.680000pt;}
.y1a9{bottom:752.000000pt;}
.y2d{bottom:759.360000pt;}
.y178{bottom:763.840000pt;}
.ya2{bottom:765.760000pt;}
.y10d{bottom:771.840000pt;}
.y123{bottom:775.040000pt;}
.yc3{bottom:776.000000pt;}
.y4e{bottom:776.320000pt;}
.y6f{bottom:779.520000pt;}
.y190{bottom:780.480000pt;}
.yd{bottom:782.080000pt;}
.y2c{bottom:786.880000pt;}
.y1bb{bottom:787.520000pt;}
.ya1{bottom:793.280000pt;}
.y177{bottom:795.840000pt;}
.y77{bottom:798.400000pt;}
.y10c{bottom:799.360000pt;}
.y4d{bottom:803.520000pt;}
.yc{bottom:811.200000pt;}
.y2b{bottom:814.400000pt;}
.y1a8{bottom:815.040000pt;}
.y76{bottom:817.280000pt;}
.y18f{bottom:818.880000pt;}
.ya0{bottom:820.800000pt;}
.y10b{bottom:827.200000pt;}
.y176{bottom:827.520000pt;}
.y4c{bottom:831.040000pt;}
.yb3{bottom:831.360000pt;}
.y75{bottom:836.160000pt;}
.yb{bottom:840.640000pt;}
.y2a{bottom:841.920000pt;}
.y1a7{bottom:842.560000pt;}
.y18e{bottom:846.080000pt;}
.y9f{bottom:848.320000pt;}
.y10a{bottom:854.720000pt;}
.y74{bottom:855.040000pt;}
.y4b{bottom:858.560000pt;}
.ya{bottom:869.760000pt;}
.y18d{bottom:873.600000pt;}
.y29{bottom:873.920000pt;}
.y9e{bottom:876.160000pt;}
.y1a6{bottom:878.400000pt;}
.y109{bottom:882.240000pt;}
.y4a{bottom:886.400000pt;}
.y15e{bottom:886.720000pt;}
.y66{bottom:893.120000pt;}
.y9{bottom:900.480000pt;}
.y28{bottom:901.120000pt;}
.y9d{bottom:903.680000pt;}
.y1a5{bottom:905.920000pt;}
.y108{bottom:909.760000pt;}
.y6e{bottom:912.000000pt;}
.y49{bottom:913.920000pt;}
.y139{bottom:914.240000pt;}
.y27{bottom:928.960000pt;}
.y8{bottom:930.880000pt;}
.y9c{bottom:931.200000pt;}
.y1a4{bottom:933.440000pt;}
.y107{bottom:937.600000pt;}
.y48{bottom:941.440000pt;}
.y6d{bottom:949.760000pt;}
.y26{bottom:956.480000pt;}
.y9b{bottom:958.720000pt;}
.y7{bottom:961.280000pt;}
.y175{bottom:965.120000pt;}
.y6c{bottom:968.640000pt;}
.y47{bottom:968.960000pt;}
.y106{bottom:969.280000pt;}
.y6a{bottom:987.520000pt;}
.y9a{bottom:992.320000pt;}
.y6{bottom:992.960000pt;}
.y25{bottom:994.240000pt;}
.y46{bottom:996.800000pt;}
.y174{bottom:997.120000pt;}
.y99{bottom:999.040000pt;}
.y63{bottom:1006.720000pt;}
.hc{height:18.239987pt;}
.he{height:18.559973pt;}
.h9{height:20.160000pt;}
.h21{height:22.080000pt;}
.h22{height:22.400000pt;}
.h2c{height:23.040000pt;}
.h28{height:23.866041pt;}
.h2d{height:24.997472pt;}
.h15{height:25.298302pt;}
.h2f{height:25.683819pt;}
.h17{height:25.936688pt;}
.h29{height:27.479519pt;}
.h19{height:28.344838pt;}
.h1d{height:28.799973pt;}
.h1a{height:28.800000pt;}
.h11{height:28.800013pt;}
.h12{height:29.060100pt;}
.h2a{height:31.377970pt;}
.ha{height:32.906875pt;}
.h2{height:36.464375pt;}
.h1f{height:38.390625pt;}
.h27{height:38.720013pt;}
.h20{height:39.040000pt;}
.h6{height:40.021875pt;}
.h25{height:41.061268pt;}
.h4{height:43.375000pt;}
.h26{height:44.437500pt;}
.h3{height:44.468750pt;}
.h18{height:44.807627pt;}
.h2e{height:45.173340pt;}
.hf{height:45.437500pt;}
.h16{height:45.500853pt;}
.h14{height:45.759987pt;}
.h23{height:48.333125pt;}
.h13{height:50.142482pt;}
.h8{height:50.315000pt;}
.h1c{height:50.918245pt;}
.h7{height:51.547500pt;}
.h2b{height:53.115764pt;}
.h1b{height:53.472525pt;}
.h1e{height:53.496609pt;}
.h5{height:58.768750pt;}
.h10{height:58.789375pt;}
.hb{height:112.639973pt;}
.hd{height:112.959960pt;}
.h24{height:333.944533pt;}
.h1{height:1089.920000pt;}
.h0{height:1122.666667pt;}
.w7{width:23.040000pt;}
.w12{width:42.880000pt;}
.w13{width:57.280000pt;}
.wa{width:64.640000pt;}
.we{width:84.160000pt;}
.wd{width:84.479987pt;}
.wc{width:84.480000pt;}
.w10{width:88.959960pt;}
.wf{width:88.960000pt;}
.wb{width:89.600000pt;}
.w9{width:96.000000pt;}
.w6{width:98.560013pt;}
.w3{width:98.880000pt;}
.w8{width:108.800013pt;}
.w4{width:121.920000pt;}
.w5{width:181.760000pt;}
.w2{width:182.400000pt;}
.w11{width:259.066667pt;}
.w1{width:761.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x29{left:1.979362pt;}
.x1c{left:2.923717pt;}
.x23{left:4.179527pt;}
.x35{left:7.752440pt;}
.x58{left:8.665484pt;}
.x17{left:9.922133pt;}
.x16{left:11.759067pt;}
.x37{left:12.775067pt;}
.x28{left:14.708429pt;}
.x1{left:16.000000pt;}
.x1f{left:17.014003pt;}
.x36{left:18.530427pt;}
.x2b{left:21.704521pt;}
.x11{left:24.553467pt;}
.x21{left:28.861762pt;}
.x3f{left:30.339667pt;}
.x18{left:31.546667pt;}
.x2e{left:32.782752pt;}
.x3e{left:34.006347pt;}
.x13{left:35.208800pt;}
.x15{left:37.546667pt;}
.x57{left:38.722967pt;}
.x3d{left:41.339600pt;}
.x55{left:44.584644pt;}
.xf{left:49.573200pt;}
.x14{left:52.039867pt;}
.x19{left:55.045733pt;}
.x2d{left:56.992701pt;}
.x2a{left:58.767728pt;}
.x56{left:68.870666pt;}
.x2{left:78.400067pt;}
.x9{left:83.054040pt;}
.x5{left:85.485347pt;}
.xd{left:91.039867pt;}
.x34{left:92.160000pt;}
.x3{left:93.243160pt;}
.x20{left:94.714465pt;}
.x22{left:99.256305pt;}
.x5d{left:106.733400pt;}
.x51{left:108.058253pt;}
.x4b{left:112.141900pt;}
.x40{left:114.224280pt;}
.x4f{left:118.077733pt;}
.x7{left:121.321333pt;}
.x1a{left:126.020533pt;}
.x6{left:127.018267pt;}
.x48{left:128.554377pt;}
.x5a{left:135.724000pt;}
.x25{left:137.600000pt;}
.x2f{left:142.884133pt;}
.x26{left:144.664667pt;}
.x4c{left:149.342056pt;}
.x4a{left:152.082026pt;}
.x5c{left:156.391600pt;}
.x33{left:160.073200pt;}
.x49{left:161.384800pt;}
.x54{left:162.859733pt;}
.x53{left:166.193067pt;}
.x12{left:175.039867pt;}
.x47{left:176.385067pt;}
.x4d{left:178.885608pt;}
.x4{left:183.149067pt;}
.xc{left:194.880000pt;}
.x8{left:205.339467pt;}
.xa{left:245.719333pt;}
.x38{left:267.520000pt;}
.xb{left:279.285200pt;}
.x30{left:287.040000pt;}
.x31{left:293.848267pt;}
.x43{left:312.270533pt;}
.x41{left:319.040000pt;}
.x42{left:326.028933pt;}
.x1e{left:342.720000pt;}
.x39{left:352.640000pt;}
.xe{left:377.280000pt;}
.x24{left:435.514667pt;}
.x3a{left:437.760000pt;}
.x10{left:476.800000pt;}
.x44{left:503.833333pt;}
.x46{left:511.739867pt;}
.x3b{left:522.880000pt;}
.x1b{left:545.280000pt;}
.x1d{left:552.276667pt;}
.x27{left:573.440000pt;}
.x32{left:575.133067pt;}
.x52{left:597.199867pt;}
.x5b{left:604.766667pt;}
.x3c{left:612.480000pt;}
.x4e{left:620.766667pt;}
.x45{left:642.746800pt;}
.x59{left:647.889867pt;}
.x2c{left:653.373333pt;}
.x50{left:670.966533pt;}
}




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