
    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_e72ea2dd85d82b386d9a65a0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_051f89459e858bd75b4b4ae6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932129;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_6193fc93719873dbca485474.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_f84bf6b9a229d59891301c72.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932129;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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_cd457468d684459a3fd593d3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.892578;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_2326c2ea83459665efa5d33e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0c590e53262b516c718afa29.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.892578;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_23ec33b74c0b7014d6d2133c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fb98c14824ef07abde647b68.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.944824;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_0786a494b441be78678aeacf.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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_a1a6ad6d1de41fa3e264742e.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2e5fc3d75455f2c85cfc9f3f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a888e2c7555f320ebe372caf.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.944824;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_c996c443c195c71e6a5c0274.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.040039;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_6193fc93719873dbca485474.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.739746;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;}
.m2{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);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-18.000000px;}
.v4{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1a{letter-spacing:-15.660000px;}
.ls16{letter-spacing:-9.900000px;}
.ls17{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.181200px;}
.ls6{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.089400px;}
.ls14{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.100800px;}
.lse{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.144720px;}
.ls0{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.223800px;}
.lsf{letter-spacing:0.259800px;}
.ls1d{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.493800px;}
.lsd{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.978000px;}
.ls18{letter-spacing:4.500000px;}
.ls19{letter-spacing:6.660000px;}
.ls1e{letter-spacing:15.238800px;}
.ls1b{letter-spacing:19.386720px;}
.ls9{letter-spacing:29.700000px;}
.ls2{letter-spacing:48.420000px;}
.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;}
}
.ws11{word-spacing:-18.000000px;}
.wsd{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.ws10{word-spacing:-14.993280px;}
.wsf{word-spacing:-14.940000px;}
.ws17{word-spacing:-14.886720px;}
.ws15{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.500000px;}
.ws3{word-spacing:-12.420000px;}
.ws12{word-spacing:-12.283800px;}
.ws2{word-spacing:-12.060000px;}
.ws13{word-spacing:-11.878800px;}
.ws1{word-spacing:-11.700000px;}
.ws0{word-spacing:-11.340000px;}
.wsb{word-spacing:-11.160000px;}
.ws5{word-spacing:-10.980000px;}
.wsa{word-spacing:-10.933800px;}
.ws8{word-spacing:-10.440000px;}
.ws9{word-spacing:-10.350600px;}
.ws7{word-spacing:-9.000000px;}
.ws4{word-spacing:-7.560000px;}
.ws16{word-spacing:-0.059040px;}
.wsc{word-spacing:0.000000px;}
._26{margin-left:-2871.216000px;}
._27{margin-left:-2843.963520px;}
._3d{margin-left:-728.465760px;}
._63{margin-left:-720.876240px;}
._40{margin-left:-644.091120px;}
._42{margin-left:-566.328240px;}
._52{margin-left:-537.660000px;}
._53{margin-left:-510.841440px;}
._47{margin-left:-437.621040px;}
._4a{margin-left:-423.813600px;}
._4b{margin-left:-410.306400px;}
._50{margin-left:-386.138160px;}
._48{margin-left:-370.712160px;}
._51{margin-left:-348.703920px;}
._4f{margin-left:-334.038960px;}
._4c{margin-left:-326.476080px;}
._3b{margin-left:-309.822480px;}
._46{margin-left:-301.814640px;}
._45{margin-left:-296.953200px;}
._43{margin-left:-286.195680px;}
._44{margin-left:-276.837120px;}
._4e{margin-left:-275.041440px;}
._3a{margin-left:-230.802480px;}
._4d{margin-left:-180.450720px;}
._3c{margin-left:-145.080000px;}
._7{margin-left:-60.300000px;}
._3f{margin-left:-36.540000px;}
._3e{margin-left:-34.380000px;}
._21{margin-left:-29.133840px;}
._62{margin-left:-14.959200px;}
._5e{margin-left:-11.033280px;}
._67{margin-left:-6.986400px;}
._59{margin-left:-5.633280px;}
._10{margin-left:-3.134160px;}
._0{margin-left:-1.347840px;}
._1{width:1.200720px;}
._a{width:2.262720px;}
._2{width:3.332640px;}
._1a{width:4.954560px;}
._1e{width:6.074400px;}
._1d{width:7.285200px;}
._1f{width:8.784720px;}
._16{width:10.050720px;}
._e{width:11.468400px;}
._f{width:12.500880px;}
._b{width:13.913040px;}
._9{width:16.493760px;}
._15{width:17.558400px;}
._12{width:18.938400px;}
._11{width:20.019600px;}
._2c{width:21.155040px;}
._2d{width:22.284960px;}
._d{width:23.360640px;}
._28{width:24.621120px;}
._24{width:26.298000px;}
._23{width:27.486000px;}
._19{width:28.739040px;}
._18{width:30.417840px;}
._2b{width:31.553280px;}
._2e{width:32.802720px;}
._1b{width:34.834560px;}
._1c{width:35.921280px;}
._13{width:36.926160px;}
._14{width:38.012880px;}
._33{width:39.734880px;}
._32{width:41.174640px;}
._35{width:42.244800px;}
._22{width:43.923600px;}
._20{width:44.999280px;}
._31{width:46.509840px;}
._29{width:47.981760px;}
._2a{width:49.242240px;}
._38{width:51.035040px;}
._39{width:52.469280px;}
._c{width:54.316320px;}
._17{width:55.756080px;}
._30{width:56.826240px;}
._34{width:58.146480px;}
._2f{width:59.515440px;}
._56{width:61.552800px;}
._58{width:62.622960px;}
._57{width:64.176720px;}
._5{width:65.496000px;}
._36{width:67.392000px;}
._37{width:68.760000px;}
._4{width:70.841280px;}
._3{width:72.776160px;}
._66{width:79.584720px;}
._65{width:80.676000px;}
._55{width:83.533440px;}
._54{width:84.739680px;}
._5b{width:86.652000px;}
._5a{width:88.146000px;}
._5f{width:107.986320px;}
._5c{width:119.759040px;}
._64{width:123.637920px;}
._61{width:125.974800px;}
._60{width:127.527840px;}
._6a{width:136.726800px;}
._6b{width:154.088880px;}
._69{width:158.354160px;}
._49{width:160.020000px;}
._5d{width:187.581120px;}
._6{width:199.620000px;}
._25{width:282.270000px;}
._68{width:284.452080px;}
._41{width:667.020000px;}
._8{width:755.976000px;}
.fc8{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(70,120,134);}
.fc7{color:rgb(0,0,255);}
.fc1{color:rgb(26,123,123);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs11{font-size:6.000000px;}
.fsf{font-size:23.760000px;}
.fsc{font-size:30.240000px;}
.fsb{font-size:33.120000px;}
.fs10{font-size:36.000000px;}
.fse{font-size:37.946952px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fsd{font-size:72.000000px;}
.fs1{font-size:81.360000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.y4d{bottom:-246.630000px;}
.y4c{bottom:-212.970000px;}
.y7b{bottom:-189.405000px;}
.y4b{bottom:-179.310000px;}
.y7a{bottom:-155.565000px;}
.y4a{bottom:-145.470000px;}
.y79{bottom:-121.905000px;}
.y49{bottom:-111.810000px;}
.y78{bottom:-88.065000px;}
.y48{bottom:-77.940000px;}
.y77{bottom:-54.360000px;}
.y47{bottom:-44.280000px;}
.y76{bottom:-20.700000px;}
.y7d{bottom:-17.922750px;}
.y46{bottom:-10.440000px;}
.y0{bottom:0.000000px;}
.y275{bottom:1.837500px;}
.y190{bottom:2.520000px;}
.y5{bottom:3.780000px;}
.y14e{bottom:4.500000px;}
.y155{bottom:4.680000px;}
.y1a4{bottom:5.040000px;}
.y6c{bottom:5.550000px;}
.y178{bottom:6.660000px;}
.y1a5{bottom:6.705000px;}
.y63{bottom:7.200000px;}
.y17d{bottom:7.380000px;}
.y45{bottom:7.740000px;}
.y151{bottom:7.920000px;}
.y15e{bottom:7.965000px;}
.y15c{bottom:8.100000px;}
.y196{bottom:8.460000px;}
.y177{bottom:8.820000px;}
.y16f{bottom:9.180000px;}
.y171{bottom:9.720000px;}
.y75{bottom:10.260000px;}
.y6a{bottom:10.620000px;}
.y175{bottom:10.980000px;}
.y8{bottom:12.420000px;}
.y16e{bottom:14.040000px;}
.y199{bottom:15.660000px;}
.y44{bottom:21.600000px;}
.y9{bottom:21.780000px;}
.y195{bottom:22.140000px;}
.y198{bottom:22.500000px;}
.y62{bottom:22.860000px;}
.y19e{bottom:22.905000px;}
.y6{bottom:23.220000px;}
.y74{bottom:23.400000px;}
.y69{bottom:23.580000px;}
.y7{bottom:24.480000px;}
.y1a0{bottom:25.740000px;}
.yb{bottom:35.100000px;}
.y43{bottom:35.640000px;}
.y194{bottom:36.000000px;}
.y73{bottom:36.360000px;}
.y68{bottom:36.540000px;}
.y19d{bottom:36.765000px;}
.y80{bottom:47.520000px;}
.y42{bottom:49.500000px;}
.y67{bottom:49.680000px;}
.y193{bottom:49.860000px;}
.y19c{bottom:50.625000px;}
.y61{bottom:52.920000px;}
.y4{bottom:57.420000px;}
.y41{bottom:62.460000px;}
.y66{bottom:62.640000px;}
.y192{bottom:63.540000px;}
.y7c{bottom:63.780000px;}
.y7f{bottom:66.420000px;}
.y60{bottom:70.740000px;}
.y72{bottom:75.420000px;}
.y65{bottom:79.740000px;}
.y5f{bottom:86.220000px;}
.y71{bottom:88.560000px;}
.y204{bottom:95.940000px;}
.y5e{bottom:98.460000px;}
.y274{bottom:99.900000px;}
.y238{bottom:101.160000px;}
.y70{bottom:101.520000px;}
.yf9{bottom:102.060000px;}
.y189{bottom:102.780000px;}
.ydf{bottom:103.140000px;}
.yc1{bottom:103.320000px;}
.y203{bottom:105.840000px;}
.y139{bottom:107.280000px;}
.y10c{bottom:109.260000px;}
.y1e0{bottom:109.980000px;}
.y1cb{bottom:113.940000px;}
.y6f{bottom:114.660000px;}
.y3f{bottom:115.020000px;}
.y5d{bottom:116.460000px;}
.y202{bottom:118.620000px;}
.y237{bottom:120.960000px;}
.y273{bottom:121.500000px;}
.yf8{bottom:122.040000px;}
.y188{bottom:122.580000px;}
.yde{bottom:122.940000px;}
.yb1{bottom:123.120000px;}
.y22b{bottom:124.020000px;}
.yc0{bottom:125.100000px;}
.y6e{bottom:126.900000px;}
.y138{bottom:127.080000px;}
.y10b{bottom:129.060000px;}
.y1df{bottom:129.780000px;}
.y1ca{bottom:133.740000px;}
.y5c{bottom:134.280000px;}
.y18e{bottom:134.460000px;}
.y3e{bottom:134.820000px;}
.y201{bottom:138.420000px;}
.y236{bottom:140.760000px;}
.yf7{bottom:141.840000px;}
.y187{bottom:142.380000px;}
.y272{bottom:142.560000px;}
.ydd{bottom:142.740000px;}
.yb0{bottom:142.920000px;}
.y22a{bottom:144.000000px;}
.ybf{bottom:144.900000px;}
.y137{bottom:146.880000px;}
.y247{bottom:148.140000px;}
.y10a{bottom:148.860000px;}
.y1de{bottom:149.580000px;}
.y5b{bottom:152.100000px;}
.y1c9{bottom:153.720000px;}
.y18d{bottom:154.260000px;}
.y3d{bottom:154.620000px;}
.y200{bottom:158.400000px;}
.y235{bottom:160.740000px;}
.yf6{bottom:161.640000px;}
.y271{bottom:162.390000px;}
.yaf{bottom:162.750000px;}
.y186{bottom:163.470000px;}
.y229{bottom:163.830000px;}
.ybe{bottom:164.730000px;}
.y136{bottom:166.710000px;}
.y5a{bottom:167.580000px;}
.y109{bottom:168.690000px;}
.y1dd{bottom:169.590000px;}
.y246{bottom:171.930000px;}
.y1c8{bottom:173.550000px;}
.y18c{bottom:174.090000px;}
.y3c{bottom:174.630000px;}
.y1ff{bottom:178.230000px;}
.y59{bottom:179.820000px;}
.y234{bottom:180.570000px;}
.y270{bottom:182.190000px;}
.ydc{bottom:182.550000px;}
.yae{bottom:182.730000px;}
.y228{bottom:183.630000px;}
.ybd{bottom:184.710000px;}
.y135{bottom:186.690000px;}
.y185{bottom:187.230000px;}
.y108{bottom:188.670000px;}
.y1dc{bottom:189.390000px;}
.y1c7{bottom:193.350000px;}
.y18b{bottom:193.890000px;}
.y3b{bottom:194.430000px;}
.y245{bottom:195.150000px;}
.y58{bottom:197.670000px;}
.y1fe{bottom:198.030000px;}
.y233{bottom:200.370000px;}
.y26f{bottom:201.990000px;}
.ydb{bottom:202.350000px;}
.yad{bottom:202.530000px;}
.y227{bottom:203.430000px;}
.yf5{bottom:203.610000px;}
.ybc{bottom:204.510000px;}
.y134{bottom:206.490000px;}
.y107{bottom:208.470000px;}
.y1db{bottom:209.190000px;}
.y184{bottom:211.170000px;}
.y1c6{bottom:213.150000px;}
.y18a{bottom:213.870000px;}
.y3a{bottom:214.230000px;}
.y57{bottom:215.670000px;}
.y244{bottom:216.390000px;}
.y1fd{bottom:217.830000px;}
.yf4{bottom:219.270000px;}
.y232{bottom:220.170000px;}
.y26e{bottom:221.790000px;}
.yda{bottom:222.150000px;}
.yac{bottom:222.330000px;}
.y226{bottom:223.230000px;}
.ybb{bottom:224.310000px;}
.y133{bottom:226.290000px;}
.y106{bottom:228.270000px;}
.y1da{bottom:228.990000px;}
.y1c5{bottom:232.950000px;}
.y56{bottom:233.490000px;}
.y183{bottom:233.670000px;}
.y39{bottom:234.030000px;}
.y243{bottom:236.190000px;}
.y1fc{bottom:237.630000px;}
.yf3{bottom:239.070000px;}
.y231{bottom:239.970000px;}
.y26d{bottom:241.770000px;}
.yd9{bottom:241.950000px;}
.yab{bottom:242.130000px;}
.y225{bottom:243.210000px;}
.yba{bottom:244.110000px;}
.y132{bottom:246.090000px;}
.y105{bottom:248.070000px;}
.y1d9{bottom:248.790000px;}
.y55{bottom:248.970000px;}
.y182{bottom:251.850000px;}
.y1c4{bottom:252.930000px;}
.y38{bottom:253.830000px;}
.y242{bottom:255.990000px;}
.y1fb{bottom:257.610000px;}
.yf2{bottom:258.870000px;}
.y230{bottom:259.950000px;}
.y54{bottom:261.210000px;}
.y26c{bottom:261.570000px;}
.yaa{bottom:261.930000px;}
.y224{bottom:263.010000px;}
.yb9{bottom:263.910000px;}
.y181{bottom:265.710000px;}
.y131{bottom:265.890000px;}
.y104{bottom:267.870000px;}
.y1d8{bottom:268.770000px;}
.y1c3{bottom:272.730000px;}
.y37{bottom:273.810000px;}
.y241{bottom:275.790000px;}
.y1fa{bottom:277.410000px;}
.y180{bottom:277.770000px;}
.yf1{bottom:278.670000px;}
.y53{bottom:279.030000px;}
.y22f{bottom:279.750000px;}
.y26b{bottom:281.370000px;}
.yd8{bottom:281.730000px;}
.ya9{bottom:281.910000px;}
.y223{bottom:282.810000px;}
.yb8{bottom:283.890000px;}
.y130{bottom:285.870000px;}
.y103{bottom:287.850000px;}
.y1d7{bottom:288.570000px;}
.y1c2{bottom:292.530000px;}
.y36{bottom:293.610000px;}
.y240{bottom:295.770000px;}
.y52{bottom:296.850000px;}
.y1f9{bottom:297.210000px;}
.yf0{bottom:298.470000px;}
.y22e{bottom:299.550000px;}
.y26a{bottom:301.170000px;}
.yd7{bottom:301.530000px;}
.ya8{bottom:301.710000px;}
.y222{bottom:302.610000px;}
.yb7{bottom:303.690000px;}
.y12f{bottom:305.670000px;}
.y102{bottom:307.650000px;}
.y1d6{bottom:308.370000px;}
.y17f{bottom:309.450000px;}
.y1c1{bottom:312.330000px;}
.y35{bottom:313.410000px;}
.y51{bottom:314.850000px;}
.y23f{bottom:315.570000px;}
.y1f8{bottom:317.010000px;}
.yef{bottom:318.450000px;}
.y22d{bottom:319.350000px;}
.y269{bottom:320.970000px;}
.yd6{bottom:321.330000px;}
.ya7{bottom:321.510000px;}
.y221{bottom:322.410000px;}
.yb6{bottom:323.490000px;}
.y17e{bottom:325.290000px;}
.y12e{bottom:325.470000px;}
.y101{bottom:327.450000px;}
.y1d5{bottom:328.170000px;}
.y1c0{bottom:332.130000px;}
.y50{bottom:332.670000px;}
.y34{bottom:333.210000px;}
.y23e{bottom:335.370000px;}
.y1f7{bottom:336.810000px;}
.yee{bottom:338.250000px;}
.y22c{bottom:340.410000px;}
.y268{bottom:340.950000px;}
.yd5{bottom:341.130000px;}
.ya6{bottom:341.310000px;}
.y220{bottom:342.390000px;}
.yb5{bottom:343.290000px;}
.y12d{bottom:345.270000px;}
.y100{bottom:347.250000px;}
.y1d4{bottom:347.970000px;}
.y4f{bottom:350.490000px;}
.y1bf{bottom:352.110000px;}
.y33{bottom:353.010000px;}
.y23d{bottom:355.170000px;}
.y1f6{bottom:356.790000px;}
.yed{bottom:358.050000px;}
.y267{bottom:360.750000px;}
.ya5{bottom:361.110000px;}
.y21f{bottom:362.190000px;}
.y17c{bottom:362.730000px;}
.yb4{bottom:363.090000px;}
.y12c{bottom:365.070000px;}
.yff{bottom:367.050000px;}
.y1d3{bottom:367.950000px;}
.y1be{bottom:371.910000px;}
.y32{bottom:372.990000px;}
.y23c{bottom:374.970000px;}
.y1f5{bottom:376.590000px;}
.yec{bottom:377.850000px;}
.y17b{bottom:378.570000px;}
.y266{bottom:380.550000px;}
.yd4{bottom:380.910000px;}
.ya4{bottom:381.090000px;}
.y21e{bottom:381.990000px;}
.yb3{bottom:383.610000px;}
.y12b{bottom:385.050000px;}
.yfe{bottom:387.030000px;}
.y1d2{bottom:387.750000px;}
.y1bd{bottom:391.710000px;}
.y31{bottom:392.835000px;}
.y17a{bottom:394.635000px;}
.y23b{bottom:394.995000px;}
.y1f4{bottom:396.435000px;}
.yeb{bottom:397.695000px;}
.y265{bottom:400.395000px;}
.yd3{bottom:400.755000px;}
.ya3{bottom:400.935000px;}
.y21d{bottom:401.835000px;}
.yb2{bottom:403.635000px;}
.y12a{bottom:404.895000px;}
.yfd{bottom:406.875000px;}
.y1d1{bottom:407.595000px;}
.y179{bottom:410.475000px;}
.y1bc{bottom:411.555000px;}
.y30{bottom:413.895000px;}
.y23a{bottom:416.055000px;}
.y1f3{bottom:416.235000px;}
.yea{bottom:417.675000px;}
.y264{bottom:420.195000px;}
.yd2{bottom:420.555000px;}
.ya2{bottom:420.735000px;}
.y21c{bottom:421.635000px;}
.y129{bottom:424.695000px;}
.y176{bottom:426.315000px;}
.yfc{bottom:426.675000px;}
.y1d0{bottom:427.395000px;}
.y2f{bottom:431.175000px;}
.y1bb{bottom:431.355000px;}
.y1f2{bottom:436.035000px;}
.ye9{bottom:437.475000px;}
.y4e{bottom:437.835000px;}
.y239{bottom:439.095000px;}
.y2e{bottom:439.635000px;}
.y263{bottom:440.175000px;}
.yd1{bottom:440.355000px;}
.ya1{bottom:440.535000px;}
.y21b{bottom:441.615000px;}
.y128{bottom:444.495000px;}
.y174{bottom:446.475000px;}
.y1cf{bottom:447.195000px;}
.yfb{bottom:447.735000px;}
.y1ba{bottom:451.335000px;}
.y1f1{bottom:456.015000px;}
.ye8{bottom:457.275000px;}
.y262{bottom:459.975000px;}
.ya0{bottom:460.335000px;}
.y2d{bottom:460.515000px;}
.y21a{bottom:461.415000px;}
.y127{bottom:464.295000px;}
.yfa{bottom:467.355000px;}
.y1ce{bottom:468.435000px;}
.y173{bottom:468.795000px;}
.y1b9{bottom:471.135000px;}
.y2c{bottom:475.635000px;}
.y1f0{bottom:475.815000px;}
.y6d{bottom:476.355000px;}
.ye7{bottom:477.075000px;}
.y261{bottom:479.775000px;}
.yd0{bottom:480.135000px;}
.y9f{bottom:480.315000px;}
.y219{bottom:481.215000px;}
.y126{bottom:484.275000px;}
.y172{bottom:484.635000px;}
.y1b8{bottom:490.935000px;}
.y1cd{bottom:492.195000px;}
.y1ef{bottom:495.615000px;}
.ye6{bottom:496.875000px;}
.y260{bottom:499.575000px;}
.ycf{bottom:499.935000px;}
.y9e{bottom:500.115000px;}
.y170{bottom:500.475000px;}
.y2b{bottom:500.835000px;}
.y218{bottom:501.015000px;}
.y125{bottom:504.075000px;}
.y1b7{bottom:510.735000px;}
.y1cc{bottom:513.435000px;}
.y2a{bottom:514.695000px;}
.y1ee{bottom:515.415000px;}
.ye5{bottom:516.855000px;}
.y25f{bottom:519.375000px;}
.yce{bottom:519.735000px;}
.y9d{bottom:519.915000px;}
.y217{bottom:520.815000px;}
.y16d{bottom:521.535000px;}
.y29{bottom:523.335000px;}
.y124{bottom:523.875000px;}
.y1b6{bottom:530.535000px;}
.y1ed{bottom:535.215000px;}
.ye4{bottom:536.655000px;}
.ycd{bottom:539.535000px;}
.y9c{bottom:539.715000px;}
.y25e{bottom:540.615000px;}
.y216{bottom:540.795000px;}
.y123{bottom:543.675000px;}
.y28{bottom:546.555000px;}
.y16c{bottom:549.075000px;}
.y1b5{bottom:550.515000px;}
.y1ec{bottom:555.195000px;}
.ye3{bottom:556.455000px;}
.y9b{bottom:559.515000px;}
.y215{bottom:560.595000px;}
.y25d{bottom:563.115000px;}
.y122{bottom:563.475000px;}
.y27{bottom:569.775000px;}
.y16b{bottom:570.135000px;}
.y1b4{bottom:570.315000px;}
.y1eb{bottom:574.995000px;}
.ye2{bottom:576.255000px;}
.ycc{bottom:579.315000px;}
.y9a{bottom:579.495000px;}
.y214{bottom:580.395000px;}
.y25c{bottom:582.915000px;}
.y121{bottom:583.455000px;}
.y16a{bottom:587.415000px;}
.y1b3{bottom:590.115000px;}
.y26{bottom:593.175000px;}
.y1ea{bottom:594.795000px;}
.ye1{bottom:597.315000px;}
.ycb{bottom:599.115000px;}
.y99{bottom:599.295000px;}
.y213{bottom:600.195000px;}
.y25b{bottom:602.715000px;}
.y120{bottom:603.255000px;}
.y169{bottom:604.515000px;}
.y14a{bottom:605.235000px;}
.y1b2{bottom:609.915000px;}
.y1e9{bottom:614.595000px;}
.ye0{bottom:618.015000px;}
.yca{bottom:618.915000px;}
.y98{bottom:619.095000px;}
.y212{bottom:619.995000px;}
.y25a{bottom:622.545000px;}
.y64{bottom:623.085000px;}
.y168{bottom:624.345000px;}
.y149{bottom:625.065000px;}
.y1b1{bottom:629.745000px;}
.y1e8{bottom:634.425000px;}
.yc9{bottom:638.745000px;}
.y97{bottom:638.925000px;}
.y211{bottom:640.005000px;}
.y259{bottom:642.525000px;}
.y11f{bottom:642.885000px;}
.y167{bottom:644.145000px;}
.y148{bottom:644.865000px;}
.y25{bottom:648.285000px;}
.y1b0{bottom:649.545000px;}
.y1e7{bottom:654.405000px;}
.y96{bottom:658.725000px;}
.y210{bottom:659.805000px;}
.y258{bottom:662.325000px;}
.y11e{bottom:662.685000px;}
.y24{bottom:663.945000px;}
.y147{bottom:664.665000px;}
.y1af{bottom:669.525000px;}
.y1e6{bottom:674.205000px;}
.yc8{bottom:678.525000px;}
.y95{bottom:678.705000px;}
.y23{bottom:679.425000px;}
.y20f{bottom:679.605000px;}
.y11d{bottom:682.665000px;}
.y257{bottom:683.385000px;}
.y166{bottom:683.925000px;}
.y146{bottom:684.645000px;}
.y1ae{bottom:689.325000px;}
.y1e5{bottom:694.005000px;}
.y22{bottom:694.905000px;}
.yc7{bottom:698.325000px;}
.y94{bottom:698.505000px;}
.y20e{bottom:699.405000px;}
.y11c{bottom:702.465000px;}
.y165{bottom:703.725000px;}
.y145{bottom:704.445000px;}
.y256{bottom:706.425000px;}
.y1ad{bottom:709.125000px;}
.y21{bottom:710.385000px;}
.y1e4{bottom:713.805000px;}
.yc6{bottom:718.125000px;}
.y93{bottom:718.305000px;}
.y20d{bottom:719.205000px;}
.y20{bottom:721.005000px;}
.y11b{bottom:722.265000px;}
.y164{bottom:723.525000px;}
.y144{bottom:724.245000px;}
.y255{bottom:727.845000px;}
.y1ac{bottom:728.925000px;}
.y40{bottom:730.725000px;}
.y1f{bottom:735.945000px;}
.yc5{bottom:737.925000px;}
.y92{bottom:738.105000px;}
.y20c{bottom:739.185000px;}
.y1e3{bottom:740.085000px;}
.y11a{bottom:742.065000px;}
.y163{bottom:743.325000px;}
.y143{bottom:744.045000px;}
.y254{bottom:747.645000px;}
.y1ab{bottom:748.725000px;}
.y1e2{bottom:751.065000px;}
.y1e{bottom:753.765000px;}
.y91{bottom:757.905000px;}
.y20b{bottom:758.985000px;}
.y119{bottom:761.865000px;}
.y142{bottom:763.845000px;}
.y162{bottom:764.385000px;}
.y1d{bottom:766.725000px;}
.y1e1{bottom:767.085000px;}
.yc4{bottom:767.985000px;}
.y1aa{bottom:768.705000px;}
.y90{bottom:777.885000px;}
.y20a{bottom:778.785000px;}
.y1c{bottom:779.685000px;}
.y118{bottom:781.845000px;}
.yc3{bottom:783.285000px;}
.y141{bottom:783.825000px;}
.y1a9{bottom:788.505000px;}
.y1b{bottom:793.725000px;}
.y8f{bottom:797.685000px;}
.y209{bottom:798.585000px;}
.y117{bottom:801.645000px;}
.y161{bottom:803.265000px;}
.y140{bottom:803.625000px;}
.y1a8{bottom:808.305000px;}
.y1a{bottom:808.665000px;}
.y253{bottom:809.205000px;}
.y160{bottom:817.305000px;}
.y8e{bottom:817.485000px;}
.y208{bottom:818.385000px;}
.y19{bottom:819.645000px;}
.y116{bottom:821.445000px;}
.y13f{bottom:823.425000px;}
.y1a7{bottom:826.485000px;}
.y252{bottom:829.005000px;}
.y15f{bottom:829.185000px;}
.y8d{bottom:837.285000px;}
.y207{bottom:838.365000px;}
.y1a6{bottom:840.345000px;}
.y115{bottom:841.245000px;}
.y13e{bottom:843.225000px;}
.y18{bottom:843.945000px;}
.y15d{bottom:845.025000px;}
.y251{bottom:848.985000px;}
.y19b{bottom:852.405000px;}
.y8c{bottom:857.130000px;}
.y206{bottom:858.210000px;}
.y15b{bottom:860.910000px;}
.y114{bottom:861.090000px;}
.y13d{bottom:863.070000px;}
.y17{bottom:867.750000px;}
.y250{bottom:868.830000px;}
.y19f{bottom:874.410000px;}
.y205{bottom:876.210000px;}
.y15a{bottom:876.930000px;}
.y8b{bottom:877.110000px;}
.y113{bottom:881.070000px;}
.y16{bottom:882.690000px;}
.y13c{bottom:883.050000px;}
.y24f{bottom:888.630000px;}
.y159{bottom:892.770000px;}
.y15{bottom:893.130000px;}
.y1a3{bottom:893.310000px;}
.y8a{bottom:896.910000px;}
.y112{bottom:900.870000px;}
.y13b{bottom:904.110000px;}
.y1a2{bottom:907.170000px;}
.y14{bottom:907.530000px;}
.y158{bottom:908.610000px;}
.y24e{bottom:909.690000px;}
.y89{bottom:916.710000px;}
.y111{bottom:920.670000px;}
.y1a1{bottom:920.850000px;}
.y13a{bottom:923.730000px;}
.y157{bottom:924.450000px;}
.y13{bottom:931.830000px;}
.y197{bottom:934.710000px;}
.y88{bottom:936.510000px;}
.y156{bottom:940.290000px;}
.y110{bottom:940.470000px;}
.y24d{bottom:950.190000px;}
.y12{bottom:953.070000px;}
.y154{bottom:956.130000px;}
.y87{bottom:956.310000px;}
.y10f{bottom:960.270000px;}
.y19a{bottom:960.990000px;}
.y24c{bottom:971.430000px;}
.y153{bottom:972.150000px;}
.y11{bottom:972.330000px;}
.y191{bottom:974.850000px;}
.y86{bottom:976.290000px;}
.y10e{bottom:981.510000px;}
.y152{bottom:987.990000px;}
.y85{bottom:996.090000px;}
.y10{bottom:1000.050000px;}
.y10d{bottom:1001.670000px;}
.y150{bottom:1003.830000px;}
.y24b{bottom:1011.930000px;}
.y84{bottom:1015.890000px;}
.y14f{bottom:1019.670000px;}
.yf{bottom:1024.890000px;}
.y24a{bottom:1031.730000px;}
.y83{bottom:1035.690000px;}
.y14d{bottom:1037.850000px;}
.ye{bottom:1039.110000px;}
.y6b{bottom:1049.580000px;}
.y249{bottom:1051.530000px;}
.yd{bottom:1054.590000px;}
.y82{bottom:1055.490000px;}
.y18f{bottom:1057.830000px;}
.y14c{bottom:1059.990000px;}
.yc{bottom:1070.070000px;}
.y248{bottom:1072.590000px;}
.y81{bottom:1075.290000px;}
.y14b{bottom:1076.730000px;}
.y3{bottom:1087.560000px;}
.ya{bottom:1088.100000px;}
.y2{bottom:1101.240000px;}
.yc2{bottom:1105.380000px;}
.y1{bottom:1117.080000px;}
.y7e{bottom:1122.660000px;}
.h1e{height:4.064063px;}
.h9{height:4.125938px;}
.h45{height:6.257812px;}
.h5{height:13.500000px;}
.h40{height:13.680000px;}
.h3a{height:13.860000px;}
.h31{height:15.840000px;}
.h33{height:15.876000px;}
.h32{height:16.020000px;}
.h38{height:16.056000px;}
.h1c{height:17.019492px;}
.h41{height:18.900000px;}
.h37{height:20.160000px;}
.h36{height:21.060000px;}
.h23{height:21.336328px;}
.h39{height:21.600000px;}
.h22{height:21.661172px;}
.h42{height:21.996000px;}
.h26{height:22.320000px;}
.h12{height:24.806602px;}
.h2f{height:24.924375px;}
.h35{height:25.380000px;}
.h25{height:25.400391px;}
.h30{height:25.787109px;}
.h1a{height:26.144116px;}
.h3d{height:26.280000px;}
.h1d{height:29.464453px;}
.h8{height:29.913047px;}
.h15{height:30.963516px;}
.h17{height:32.491758px;}
.h20{height:32.868281px;}
.h11{height:32.942109px;}
.h34{height:34.036523px;}
.h7{height:34.200000px;}
.h28{height:34.419375px;}
.h19{height:34.554727px;}
.hd{height:35.120039px;}
.h3{height:36.617695px;}
.h1b{height:38.680664px;}
.hc{height:39.313477px;}
.h3c{height:40.140000px;}
.h43{height:41.493516px;}
.hf{height:42.164648px;}
.h6{height:42.806602px;}
.h44{height:43.506914px;}
.h18{height:45.992812px;}
.h2d{height:47.448281px;}
.h2c{height:47.998125px;}
.hb{height:48.224531px;}
.h2b{height:49.255313px;}
.h14{height:50.800781px;}
.h2e{height:52.171875px;}
.h29{height:52.998047px;}
.h10{height:53.673047px;}
.h16{height:55.291992px;}
.h2{height:59.436914px;}
.h3f{height:60.300000px;}
.h4{height:65.884219px;}
.he{height:67.565039px;}
.h13{height:67.824844px;}
.ha{height:68.400000px;}
.h1f{height:72.900000px;}
.h2a{height:75.093750px;}
.h3b{height:80.820000px;}
.h3e{height:82.296000px;}
.h24{height:87.840000px;}
.h27{height:138.060000px;}
.h21{height:363.090000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w10{width:81.000000px;}
.w4{width:82.080000px;}
.wd{width:87.660000px;}
.w11{width:94.536000px;}
.w6{width:101.160000px;}
.wc{width:121.176000px;}
.we{width:121.536000px;}
.w12{width:121.896000px;}
.wf{width:127.836000px;}
.w7{width:154.470000px;}
.w13{width:168.870000px;}
.wb{width:180.390000px;}
.w9{width:182.550000px;}
.w15{width:199.470000px;}
.w14{width:210.090000px;}
.w16{width:217.515000px;}
.w8{width:532.725000px;}
.w5{width:639.870000px;}
.w3{width:721.950000px;}
.wa{width:743.040000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x45{left:4.252500px;}
.x8{left:8.100000px;}
.x15{left:10.800000px;}
.x2c{left:12.780000px;}
.x2b{left:14.580000px;}
.x22{left:20.160000px;}
.x1a{left:21.255000px;}
.x27{left:26.100000px;}
.x32{left:27.900000px;}
.x29{left:29.700000px;}
.x25{left:31.500000px;}
.xf{left:33.659987px;}
.x2d{left:35.820000px;}
.x26{left:38.730000px;}
.x3a{left:40.005000px;}
.x28{left:41.790000px;}
.x2a{left:44.670000px;}
.x24{left:45.930000px;}
.x43{left:47.205000px;}
.xa{left:50.580000px;}
.x3d{left:55.470000px;}
.x3e{left:58.185000px;}
.x3f{left:59.805000px;}
.x41{left:62.865000px;}
.x38{left:64.290000px;}
.x42{left:67.545000px;}
.x40{left:69.345000px;}
.x6{left:73.974000px;}
.x3b{left:75.105000px;}
.x3c{left:76.185000px;}
.x35{left:78.300000px;}
.x9{left:79.416000px;}
.x17{left:80.460000px;}
.x5{left:87.654000px;}
.x14{left:93.456000px;}
.x19{left:94.896000px;}
.x4{left:108.036000px;}
.xb{left:114.695987px;}
.xc{left:121.895987px;}
.x36{left:155.369987px;}
.xd{left:158.609987px;}
.x2e{left:168.869987px;}
.x2f{left:171.750000px;}
.x10{left:185.249987px;}
.x7{left:190.110000px;}
.x1{left:239.969987px;}
.x11{left:245.774987px;}
.x30{left:299.595000px;}
.x16{left:303.015000px;}
.x18{left:310.395000px;}
.xe{left:340.274987px;}
.x37{left:365.295000px;}
.x3{left:366.374987px;}
.x31{left:380.595000px;}
.x2{left:401.654987px;}
.x44{left:438.764987px;}
.x1d{left:461.984987px;}
.x33{left:475.125000px;}
.x12{left:489.164987px;}
.x13{left:490.784987px;}
.x20{left:494.925000px;}
.x39{left:564.765000px;}
.x34{left:597.030000px;}
.x21{left:616.110000px;}
.x1b{left:620.253000px;}
.x23{left:703.770000px;}
.x1f{left:733.649987px;}
.x1e{left:799.199987px;}
.x1c{left:812.699987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-16.000000pt;}
.v4{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1a{letter-spacing:-13.920000pt;}
.ls16{letter-spacing:-8.800000pt;}
.ls17{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.161067pt;}
.ls6{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.079467pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.089600pt;}
.lse{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.128640pt;}
.ls0{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.198933pt;}
.lsf{letter-spacing:0.230933pt;}
.ls1d{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.438933pt;}
.lsd{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.869333pt;}
.ls18{letter-spacing:4.000000pt;}
.ls19{letter-spacing:5.920000pt;}
.ls1e{letter-spacing:13.545600pt;}
.ls1b{letter-spacing:17.232640pt;}
.ls9{letter-spacing:26.400000pt;}
.ls2{letter-spacing:43.040000pt;}
.ws11{word-spacing:-16.000000pt;}
.wsd{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.327360pt;}
.wsf{word-spacing:-13.280000pt;}
.ws17{word-spacing:-13.232640pt;}
.ws15{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws12{word-spacing:-10.918933pt;}
.ws2{word-spacing:-10.720000pt;}
.ws13{word-spacing:-10.558933pt;}
.ws1{word-spacing:-10.400000pt;}
.ws0{word-spacing:-10.080000pt;}
.wsb{word-spacing:-9.920000pt;}
.ws5{word-spacing:-9.760000pt;}
.wsa{word-spacing:-9.718933pt;}
.ws8{word-spacing:-9.280000pt;}
.ws9{word-spacing:-9.200533pt;}
.ws7{word-spacing:-8.000000pt;}
.ws4{word-spacing:-6.720000pt;}
.ws16{word-spacing:-0.052480pt;}
.wsc{word-spacing:0.000000pt;}
._26{margin-left:-2552.192000pt;}
._27{margin-left:-2527.967573pt;}
._3d{margin-left:-647.525120pt;}
._63{margin-left:-640.778880pt;}
._40{margin-left:-572.525440pt;}
._42{margin-left:-503.402880pt;}
._52{margin-left:-477.920000pt;}
._53{margin-left:-454.081280pt;}
._47{margin-left:-388.996480pt;}
._4a{margin-left:-376.723200pt;}
._4b{margin-left:-364.716800pt;}
._50{margin-left:-343.233920pt;}
._48{margin-left:-329.521920pt;}
._51{margin-left:-309.959040pt;}
._4f{margin-left:-296.923520pt;}
._4c{margin-left:-290.200960pt;}
._3b{margin-left:-275.397760pt;}
._46{margin-left:-268.279680pt;}
._45{margin-left:-263.958400pt;}
._43{margin-left:-254.396160pt;}
._44{margin-left:-246.077440pt;}
._4e{margin-left:-244.481280pt;}
._3a{margin-left:-205.157760pt;}
._4d{margin-left:-160.400640pt;}
._3c{margin-left:-128.960000pt;}
._7{margin-left:-53.600000pt;}
._3f{margin-left:-32.480000pt;}
._3e{margin-left:-30.560000pt;}
._21{margin-left:-25.896747pt;}
._62{margin-left:-13.297067pt;}
._5e{margin-left:-9.807360pt;}
._67{margin-left:-6.210133pt;}
._59{margin-left:-5.007360pt;}
._10{margin-left:-2.785920pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.067307pt;}
._a{width:2.011307pt;}
._2{width:2.962347pt;}
._1a{width:4.404053pt;}
._1e{width:5.399467pt;}
._1d{width:6.475733pt;}
._1f{width:7.808640pt;}
._16{width:8.933973pt;}
._e{width:10.194133pt;}
._f{width:11.111893pt;}
._b{width:12.367147pt;}
._9{width:14.661120pt;}
._15{width:15.607467pt;}
._12{width:16.834133pt;}
._11{width:17.795200pt;}
._2c{width:18.804480pt;}
._2d{width:19.808853pt;}
._d{width:20.765013pt;}
._28{width:21.885440pt;}
._24{width:23.376000pt;}
._23{width:24.432000pt;}
._19{width:25.545813pt;}
._18{width:27.038080pt;}
._2b{width:28.047360pt;}
._2e{width:29.157973pt;}
._1b{width:30.964053pt;}
._1c{width:31.930027pt;}
._13{width:32.823253pt;}
._14{width:33.789227pt;}
._33{width:35.319893pt;}
._32{width:36.599680pt;}
._35{width:37.550933pt;}
._22{width:39.043200pt;}
._20{width:39.999360pt;}
._31{width:41.342080pt;}
._29{width:42.650453pt;}
._2a{width:43.770880pt;}
._38{width:45.364480pt;}
._39{width:46.639360pt;}
._c{width:48.281173pt;}
._17{width:49.560960pt;}
._30{width:50.512213pt;}
._34{width:51.685760pt;}
._2f{width:52.902613pt;}
._56{width:54.713600pt;}
._58{width:55.664853pt;}
._57{width:57.045973pt;}
._5{width:58.218667pt;}
._36{width:59.904000pt;}
._37{width:61.120000pt;}
._4{width:62.970027pt;}
._3{width:64.689920pt;}
._66{width:70.741973pt;}
._65{width:71.712000pt;}
._55{width:74.251947pt;}
._54{width:75.324160pt;}
._5b{width:77.024000pt;}
._5a{width:78.352000pt;}
._5f{width:95.987840pt;}
._5c{width:106.452480pt;}
._64{width:109.900373pt;}
._61{width:111.977600pt;}
._60{width:113.358080pt;}
._6a{width:121.534933pt;}
._6b{width:136.967893pt;}
._69{width:140.759253pt;}
._49{width:142.240000pt;}
._5d{width:166.738773pt;}
._6{width:177.440000pt;}
._25{width:250.906667pt;}
._68{width:252.846293pt;}
._41{width:592.906667pt;}
._8{width:671.978667pt;}
.fs8{font-size:5.120000pt;}
.fs11{font-size:5.333333pt;}
.fsf{font-size:21.120000pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:29.440000pt;}
.fs10{font-size:32.000000pt;}
.fse{font-size:33.730624pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fsd{font-size:64.000000pt;}
.fs1{font-size:72.320000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.y4d{bottom:-219.226667pt;}
.y4c{bottom:-189.306667pt;}
.y7b{bottom:-168.360000pt;}
.y4b{bottom:-159.386667pt;}
.y7a{bottom:-138.280000pt;}
.y4a{bottom:-129.306667pt;}
.y79{bottom:-108.360000pt;}
.y49{bottom:-99.386667pt;}
.y78{bottom:-78.280000pt;}
.y48{bottom:-69.280000pt;}
.y77{bottom:-48.320000pt;}
.y47{bottom:-39.360000pt;}
.y76{bottom:-18.400000pt;}
.y7d{bottom:-15.931333pt;}
.y46{bottom:-9.280000pt;}
.y0{bottom:0.000000pt;}
.y275{bottom:1.633333pt;}
.y190{bottom:2.240000pt;}
.y5{bottom:3.360000pt;}
.y14e{bottom:4.000000pt;}
.y155{bottom:4.160000pt;}
.y1a4{bottom:4.480000pt;}
.y6c{bottom:4.933333pt;}
.y178{bottom:5.920000pt;}
.y1a5{bottom:5.960000pt;}
.y63{bottom:6.400000pt;}
.y17d{bottom:6.560000pt;}
.y45{bottom:6.880000pt;}
.y151{bottom:7.040000pt;}
.y15e{bottom:7.080000pt;}
.y15c{bottom:7.200000pt;}
.y196{bottom:7.520000pt;}
.y177{bottom:7.840000pt;}
.y16f{bottom:8.160000pt;}
.y171{bottom:8.640000pt;}
.y75{bottom:9.120000pt;}
.y6a{bottom:9.440000pt;}
.y175{bottom:9.760000pt;}
.y8{bottom:11.040000pt;}
.y16e{bottom:12.480000pt;}
.y199{bottom:13.920000pt;}
.y44{bottom:19.200000pt;}
.y9{bottom:19.360000pt;}
.y195{bottom:19.680000pt;}
.y198{bottom:20.000000pt;}
.y62{bottom:20.320000pt;}
.y19e{bottom:20.360000pt;}
.y6{bottom:20.640000pt;}
.y74{bottom:20.800000pt;}
.y69{bottom:20.960000pt;}
.y7{bottom:21.760000pt;}
.y1a0{bottom:22.880000pt;}
.yb{bottom:31.200000pt;}
.y43{bottom:31.680000pt;}
.y194{bottom:32.000000pt;}
.y73{bottom:32.320000pt;}
.y68{bottom:32.480000pt;}
.y19d{bottom:32.680000pt;}
.y80{bottom:42.240000pt;}
.y42{bottom:44.000000pt;}
.y67{bottom:44.160000pt;}
.y193{bottom:44.320000pt;}
.y19c{bottom:45.000000pt;}
.y61{bottom:47.040000pt;}
.y4{bottom:51.040000pt;}
.y41{bottom:55.520000pt;}
.y66{bottom:55.680000pt;}
.y192{bottom:56.480000pt;}
.y7c{bottom:56.693333pt;}
.y7f{bottom:59.040000pt;}
.y60{bottom:62.880000pt;}
.y72{bottom:67.040000pt;}
.y65{bottom:70.880000pt;}
.y5f{bottom:76.640000pt;}
.y71{bottom:78.720000pt;}
.y204{bottom:85.280000pt;}
.y5e{bottom:87.520000pt;}
.y274{bottom:88.800000pt;}
.y238{bottom:89.920000pt;}
.y70{bottom:90.240000pt;}
.yf9{bottom:90.720000pt;}
.y189{bottom:91.360000pt;}
.ydf{bottom:91.680000pt;}
.yc1{bottom:91.840000pt;}
.y203{bottom:94.080000pt;}
.y139{bottom:95.360000pt;}
.y10c{bottom:97.120000pt;}
.y1e0{bottom:97.760000pt;}
.y1cb{bottom:101.280000pt;}
.y6f{bottom:101.920000pt;}
.y3f{bottom:102.240000pt;}
.y5d{bottom:103.520000pt;}
.y202{bottom:105.440000pt;}
.y237{bottom:107.520000pt;}
.y273{bottom:108.000000pt;}
.yf8{bottom:108.480000pt;}
.y188{bottom:108.960000pt;}
.yde{bottom:109.280000pt;}
.yb1{bottom:109.440000pt;}
.y22b{bottom:110.240000pt;}
.yc0{bottom:111.200000pt;}
.y6e{bottom:112.800000pt;}
.y138{bottom:112.960000pt;}
.y10b{bottom:114.720000pt;}
.y1df{bottom:115.360000pt;}
.y1ca{bottom:118.880000pt;}
.y5c{bottom:119.360000pt;}
.y18e{bottom:119.520000pt;}
.y3e{bottom:119.840000pt;}
.y201{bottom:123.040000pt;}
.y236{bottom:125.120000pt;}
.yf7{bottom:126.080000pt;}
.y187{bottom:126.560000pt;}
.y272{bottom:126.720000pt;}
.ydd{bottom:126.880000pt;}
.yb0{bottom:127.040000pt;}
.y22a{bottom:128.000000pt;}
.ybf{bottom:128.800000pt;}
.y137{bottom:130.560000pt;}
.y247{bottom:131.680000pt;}
.y10a{bottom:132.320000pt;}
.y1de{bottom:132.960000pt;}
.y5b{bottom:135.200000pt;}
.y1c9{bottom:136.640000pt;}
.y18d{bottom:137.120000pt;}
.y3d{bottom:137.440000pt;}
.y200{bottom:140.800000pt;}
.y235{bottom:142.880000pt;}
.yf6{bottom:143.680000pt;}
.y271{bottom:144.346667pt;}
.yaf{bottom:144.666667pt;}
.y186{bottom:145.306667pt;}
.y229{bottom:145.626667pt;}
.ybe{bottom:146.426667pt;}
.y136{bottom:148.186667pt;}
.y5a{bottom:148.960000pt;}
.y109{bottom:149.946667pt;}
.y1dd{bottom:150.746667pt;}
.y246{bottom:152.826667pt;}
.y1c8{bottom:154.266667pt;}
.y18c{bottom:154.746667pt;}
.y3c{bottom:155.226667pt;}
.y1ff{bottom:158.426667pt;}
.y59{bottom:159.840000pt;}
.y234{bottom:160.506667pt;}
.y270{bottom:161.946667pt;}
.ydc{bottom:162.266667pt;}
.yae{bottom:162.426667pt;}
.y228{bottom:163.226667pt;}
.ybd{bottom:164.186667pt;}
.y135{bottom:165.946667pt;}
.y185{bottom:166.426667pt;}
.y108{bottom:167.706667pt;}
.y1dc{bottom:168.346667pt;}
.y1c7{bottom:171.866667pt;}
.y18b{bottom:172.346667pt;}
.y3b{bottom:172.826667pt;}
.y245{bottom:173.466667pt;}
.y58{bottom:175.706667pt;}
.y1fe{bottom:176.026667pt;}
.y233{bottom:178.106667pt;}
.y26f{bottom:179.546667pt;}
.ydb{bottom:179.866667pt;}
.yad{bottom:180.026667pt;}
.y227{bottom:180.826667pt;}
.yf5{bottom:180.986667pt;}
.ybc{bottom:181.786667pt;}
.y134{bottom:183.546667pt;}
.y107{bottom:185.306667pt;}
.y1db{bottom:185.946667pt;}
.y184{bottom:187.706667pt;}
.y1c6{bottom:189.466667pt;}
.y18a{bottom:190.106667pt;}
.y3a{bottom:190.426667pt;}
.y57{bottom:191.706667pt;}
.y244{bottom:192.346667pt;}
.y1fd{bottom:193.626667pt;}
.yf4{bottom:194.906667pt;}
.y232{bottom:195.706667pt;}
.y26e{bottom:197.146667pt;}
.yda{bottom:197.466667pt;}
.yac{bottom:197.626667pt;}
.y226{bottom:198.426667pt;}
.ybb{bottom:199.386667pt;}
.y133{bottom:201.146667pt;}
.y106{bottom:202.906667pt;}
.y1da{bottom:203.546667pt;}
.y1c5{bottom:207.066667pt;}
.y56{bottom:207.546667pt;}
.y183{bottom:207.706667pt;}
.y39{bottom:208.026667pt;}
.y243{bottom:209.946667pt;}
.y1fc{bottom:211.226667pt;}
.yf3{bottom:212.506667pt;}
.y231{bottom:213.306667pt;}
.y26d{bottom:214.906667pt;}
.yd9{bottom:215.066667pt;}
.yab{bottom:215.226667pt;}
.y225{bottom:216.186667pt;}
.yba{bottom:216.986667pt;}
.y132{bottom:218.746667pt;}
.y105{bottom:220.506667pt;}
.y1d9{bottom:221.146667pt;}
.y55{bottom:221.306667pt;}
.y182{bottom:223.866667pt;}
.y1c4{bottom:224.826667pt;}
.y38{bottom:225.626667pt;}
.y242{bottom:227.546667pt;}
.y1fb{bottom:228.986667pt;}
.yf2{bottom:230.106667pt;}
.y230{bottom:231.066667pt;}
.y54{bottom:232.186667pt;}
.y26c{bottom:232.506667pt;}
.yaa{bottom:232.826667pt;}
.y224{bottom:233.786667pt;}
.yb9{bottom:234.586667pt;}
.y181{bottom:236.186667pt;}
.y131{bottom:236.346667pt;}
.y104{bottom:238.106667pt;}
.y1d8{bottom:238.906667pt;}
.y1c3{bottom:242.426667pt;}
.y37{bottom:243.386667pt;}
.y241{bottom:245.146667pt;}
.y1fa{bottom:246.586667pt;}
.y180{bottom:246.906667pt;}
.yf1{bottom:247.706667pt;}
.y53{bottom:248.026667pt;}
.y22f{bottom:248.666667pt;}
.y26b{bottom:250.106667pt;}
.yd8{bottom:250.426667pt;}
.ya9{bottom:250.586667pt;}
.y223{bottom:251.386667pt;}
.yb8{bottom:252.346667pt;}
.y130{bottom:254.106667pt;}
.y103{bottom:255.866667pt;}
.y1d7{bottom:256.506667pt;}
.y1c2{bottom:260.026667pt;}
.y36{bottom:260.986667pt;}
.y240{bottom:262.906667pt;}
.y52{bottom:263.866667pt;}
.y1f9{bottom:264.186667pt;}
.yf0{bottom:265.306667pt;}
.y22e{bottom:266.266667pt;}
.y26a{bottom:267.706667pt;}
.yd7{bottom:268.026667pt;}
.ya8{bottom:268.186667pt;}
.y222{bottom:268.986667pt;}
.yb7{bottom:269.946667pt;}
.y12f{bottom:271.706667pt;}
.y102{bottom:273.466667pt;}
.y1d6{bottom:274.106667pt;}
.y17f{bottom:275.066667pt;}
.y1c1{bottom:277.626667pt;}
.y35{bottom:278.586667pt;}
.y51{bottom:279.866667pt;}
.y23f{bottom:280.506667pt;}
.y1f8{bottom:281.786667pt;}
.yef{bottom:283.066667pt;}
.y22d{bottom:283.866667pt;}
.y269{bottom:285.306667pt;}
.yd6{bottom:285.626667pt;}
.ya7{bottom:285.786667pt;}
.y221{bottom:286.586667pt;}
.yb6{bottom:287.546667pt;}
.y17e{bottom:289.146667pt;}
.y12e{bottom:289.306667pt;}
.y101{bottom:291.066667pt;}
.y1d5{bottom:291.706667pt;}
.y1c0{bottom:295.226667pt;}
.y50{bottom:295.706667pt;}
.y34{bottom:296.186667pt;}
.y23e{bottom:298.106667pt;}
.y1f7{bottom:299.386667pt;}
.yee{bottom:300.666667pt;}
.y22c{bottom:302.586667pt;}
.y268{bottom:303.066667pt;}
.yd5{bottom:303.226667pt;}
.ya6{bottom:303.386667pt;}
.y220{bottom:304.346667pt;}
.yb5{bottom:305.146667pt;}
.y12d{bottom:306.906667pt;}
.y100{bottom:308.666667pt;}
.y1d4{bottom:309.306667pt;}
.y4f{bottom:311.546667pt;}
.y1bf{bottom:312.986667pt;}
.y33{bottom:313.786667pt;}
.y23d{bottom:315.706667pt;}
.y1f6{bottom:317.146667pt;}
.yed{bottom:318.266667pt;}
.y267{bottom:320.666667pt;}
.ya5{bottom:320.986667pt;}
.y21f{bottom:321.946667pt;}
.y17c{bottom:322.426667pt;}
.yb4{bottom:322.746667pt;}
.y12c{bottom:324.506667pt;}
.yff{bottom:326.266667pt;}
.y1d3{bottom:327.066667pt;}
.y1be{bottom:330.586667pt;}
.y32{bottom:331.546667pt;}
.y23c{bottom:333.306667pt;}
.y1f5{bottom:334.746667pt;}
.yec{bottom:335.866667pt;}
.y17b{bottom:336.506667pt;}
.y266{bottom:338.266667pt;}
.yd4{bottom:338.586667pt;}
.ya4{bottom:338.746667pt;}
.y21e{bottom:339.546667pt;}
.yb3{bottom:340.986667pt;}
.y12b{bottom:342.266667pt;}
.yfe{bottom:344.026667pt;}
.y1d2{bottom:344.666667pt;}
.y1bd{bottom:348.186667pt;}
.y31{bottom:349.186667pt;}
.y17a{bottom:350.786667pt;}
.y23b{bottom:351.106667pt;}
.y1f4{bottom:352.386667pt;}
.yeb{bottom:353.506667pt;}
.y265{bottom:355.906667pt;}
.yd3{bottom:356.226667pt;}
.ya3{bottom:356.386667pt;}
.y21d{bottom:357.186667pt;}
.yb2{bottom:358.786667pt;}
.y12a{bottom:359.906667pt;}
.yfd{bottom:361.666667pt;}
.y1d1{bottom:362.306667pt;}
.y179{bottom:364.866667pt;}
.y1bc{bottom:365.826667pt;}
.y30{bottom:367.906667pt;}
.y23a{bottom:369.826667pt;}
.y1f3{bottom:369.986667pt;}
.yea{bottom:371.266667pt;}
.y264{bottom:373.506667pt;}
.yd2{bottom:373.826667pt;}
.ya2{bottom:373.986667pt;}
.y21c{bottom:374.786667pt;}
.y129{bottom:377.506667pt;}
.y176{bottom:378.946667pt;}
.yfc{bottom:379.266667pt;}
.y1d0{bottom:379.906667pt;}
.y2f{bottom:383.266667pt;}
.y1bb{bottom:383.426667pt;}
.y1f2{bottom:387.586667pt;}
.ye9{bottom:388.866667pt;}
.y4e{bottom:389.186667pt;}
.y239{bottom:390.306667pt;}
.y2e{bottom:390.786667pt;}
.y263{bottom:391.266667pt;}
.yd1{bottom:391.426667pt;}
.ya1{bottom:391.586667pt;}
.y21b{bottom:392.546667pt;}
.y128{bottom:395.106667pt;}
.y174{bottom:396.866667pt;}
.y1cf{bottom:397.506667pt;}
.yfb{bottom:397.986667pt;}
.y1ba{bottom:401.186667pt;}
.y1f1{bottom:405.346667pt;}
.ye8{bottom:406.466667pt;}
.y262{bottom:408.866667pt;}
.ya0{bottom:409.186667pt;}
.y2d{bottom:409.346667pt;}
.y21a{bottom:410.146667pt;}
.y127{bottom:412.706667pt;}
.yfa{bottom:415.426667pt;}
.y1ce{bottom:416.386667pt;}
.y173{bottom:416.706667pt;}
.y1b9{bottom:418.786667pt;}
.y2c{bottom:422.786667pt;}
.y1f0{bottom:422.946667pt;}
.y6d{bottom:423.426667pt;}
.ye7{bottom:424.066667pt;}
.y261{bottom:426.466667pt;}
.yd0{bottom:426.786667pt;}
.y9f{bottom:426.946667pt;}
.y219{bottom:427.746667pt;}
.y126{bottom:430.466667pt;}
.y172{bottom:430.786667pt;}
.y1b8{bottom:436.386667pt;}
.y1cd{bottom:437.506667pt;}
.y1ef{bottom:440.546667pt;}
.ye6{bottom:441.666667pt;}
.y260{bottom:444.066667pt;}
.ycf{bottom:444.386667pt;}
.y9e{bottom:444.546667pt;}
.y170{bottom:444.866667pt;}
.y2b{bottom:445.186667pt;}
.y218{bottom:445.346667pt;}
.y125{bottom:448.066667pt;}
.y1b7{bottom:453.986667pt;}
.y1cc{bottom:456.386667pt;}
.y2a{bottom:457.506667pt;}
.y1ee{bottom:458.146667pt;}
.ye5{bottom:459.426667pt;}
.y25f{bottom:461.666667pt;}
.yce{bottom:461.986667pt;}
.y9d{bottom:462.146667pt;}
.y217{bottom:462.946667pt;}
.y16d{bottom:463.586667pt;}
.y29{bottom:465.186667pt;}
.y124{bottom:465.666667pt;}
.y1b6{bottom:471.586667pt;}
.y1ed{bottom:475.746667pt;}
.ye4{bottom:477.026667pt;}
.ycd{bottom:479.586667pt;}
.y9c{bottom:479.746667pt;}
.y25e{bottom:480.546667pt;}
.y216{bottom:480.706667pt;}
.y123{bottom:483.266667pt;}
.y28{bottom:485.826667pt;}
.y16c{bottom:488.066667pt;}
.y1b5{bottom:489.346667pt;}
.y1ec{bottom:493.506667pt;}
.ye3{bottom:494.626667pt;}
.y9b{bottom:497.346667pt;}
.y215{bottom:498.306667pt;}
.y25d{bottom:500.546667pt;}
.y122{bottom:500.866667pt;}
.y27{bottom:506.466667pt;}
.y16b{bottom:506.786667pt;}
.y1b4{bottom:506.946667pt;}
.y1eb{bottom:511.106667pt;}
.ye2{bottom:512.226667pt;}
.ycc{bottom:514.946667pt;}
.y9a{bottom:515.106667pt;}
.y214{bottom:515.906667pt;}
.y25c{bottom:518.146667pt;}
.y121{bottom:518.626667pt;}
.y16a{bottom:522.146667pt;}
.y1b3{bottom:524.546667pt;}
.y26{bottom:527.266667pt;}
.y1ea{bottom:528.706667pt;}
.ye1{bottom:530.946667pt;}
.ycb{bottom:532.546667pt;}
.y99{bottom:532.706667pt;}
.y213{bottom:533.506667pt;}
.y25b{bottom:535.746667pt;}
.y120{bottom:536.226667pt;}
.y169{bottom:537.346667pt;}
.y14a{bottom:537.986667pt;}
.y1b2{bottom:542.146667pt;}
.y1e9{bottom:546.306667pt;}
.ye0{bottom:549.346667pt;}
.yca{bottom:550.146667pt;}
.y98{bottom:550.306667pt;}
.y212{bottom:551.106667pt;}
.y25a{bottom:553.373333pt;}
.y64{bottom:553.853333pt;}
.y168{bottom:554.973333pt;}
.y149{bottom:555.613333pt;}
.y1b1{bottom:559.773333pt;}
.y1e8{bottom:563.933333pt;}
.yc9{bottom:567.773333pt;}
.y97{bottom:567.933333pt;}
.y211{bottom:568.893333pt;}
.y259{bottom:571.133333pt;}
.y11f{bottom:571.453333pt;}
.y167{bottom:572.573333pt;}
.y148{bottom:573.213333pt;}
.y25{bottom:576.253333pt;}
.y1b0{bottom:577.373333pt;}
.y1e7{bottom:581.693333pt;}
.y96{bottom:585.533333pt;}
.y210{bottom:586.493333pt;}
.y258{bottom:588.733333pt;}
.y11e{bottom:589.053333pt;}
.y24{bottom:590.173333pt;}
.y147{bottom:590.813333pt;}
.y1af{bottom:595.133333pt;}
.y1e6{bottom:599.293333pt;}
.yc8{bottom:603.133333pt;}
.y95{bottom:603.293333pt;}
.y23{bottom:603.933333pt;}
.y20f{bottom:604.093333pt;}
.y11d{bottom:606.813333pt;}
.y257{bottom:607.453333pt;}
.y166{bottom:607.933333pt;}
.y146{bottom:608.573333pt;}
.y1ae{bottom:612.733333pt;}
.y1e5{bottom:616.893333pt;}
.y22{bottom:617.693333pt;}
.yc7{bottom:620.733333pt;}
.y94{bottom:620.893333pt;}
.y20e{bottom:621.693333pt;}
.y11c{bottom:624.413333pt;}
.y165{bottom:625.533333pt;}
.y145{bottom:626.173333pt;}
.y256{bottom:627.933333pt;}
.y1ad{bottom:630.333333pt;}
.y21{bottom:631.453333pt;}
.y1e4{bottom:634.493333pt;}
.yc6{bottom:638.333333pt;}
.y93{bottom:638.493333pt;}
.y20d{bottom:639.293333pt;}
.y20{bottom:640.893333pt;}
.y11b{bottom:642.013333pt;}
.y164{bottom:643.133333pt;}
.y144{bottom:643.773333pt;}
.y255{bottom:646.973333pt;}
.y1ac{bottom:647.933333pt;}
.y40{bottom:649.533333pt;}
.y1f{bottom:654.173333pt;}
.yc5{bottom:655.933333pt;}
.y92{bottom:656.093333pt;}
.y20c{bottom:657.053333pt;}
.y1e3{bottom:657.853333pt;}
.y11a{bottom:659.613333pt;}
.y163{bottom:660.733333pt;}
.y143{bottom:661.373333pt;}
.y254{bottom:664.573333pt;}
.y1ab{bottom:665.533333pt;}
.y1e2{bottom:667.613333pt;}
.y1e{bottom:670.013333pt;}
.y91{bottom:673.693333pt;}
.y20b{bottom:674.653333pt;}
.y119{bottom:677.213333pt;}
.y142{bottom:678.973333pt;}
.y162{bottom:679.453333pt;}
.y1d{bottom:681.533333pt;}
.y1e1{bottom:681.853333pt;}
.yc4{bottom:682.653333pt;}
.y1aa{bottom:683.293333pt;}
.y90{bottom:691.453333pt;}
.y20a{bottom:692.253333pt;}
.y1c{bottom:693.053333pt;}
.y118{bottom:694.973333pt;}
.yc3{bottom:696.253333pt;}
.y141{bottom:696.733333pt;}
.y1a9{bottom:700.893333pt;}
.y1b{bottom:705.533333pt;}
.y8f{bottom:709.053333pt;}
.y209{bottom:709.853333pt;}
.y117{bottom:712.573333pt;}
.y161{bottom:714.013333pt;}
.y140{bottom:714.333333pt;}
.y1a8{bottom:718.493333pt;}
.y1a{bottom:718.813333pt;}
.y253{bottom:719.293333pt;}
.y160{bottom:726.493333pt;}
.y8e{bottom:726.653333pt;}
.y208{bottom:727.453333pt;}
.y19{bottom:728.573333pt;}
.y116{bottom:730.173333pt;}
.y13f{bottom:731.933333pt;}
.y1a7{bottom:734.653333pt;}
.y252{bottom:736.893333pt;}
.y15f{bottom:737.053333pt;}
.y8d{bottom:744.253333pt;}
.y207{bottom:745.213333pt;}
.y1a6{bottom:746.973333pt;}
.y115{bottom:747.773333pt;}
.y13e{bottom:749.533333pt;}
.y18{bottom:750.173333pt;}
.y15d{bottom:751.133333pt;}
.y251{bottom:754.653333pt;}
.y19b{bottom:757.693333pt;}
.y8c{bottom:761.893333pt;}
.y206{bottom:762.853333pt;}
.y15b{bottom:765.253333pt;}
.y114{bottom:765.413333pt;}
.y13d{bottom:767.173333pt;}
.y17{bottom:771.333333pt;}
.y250{bottom:772.293333pt;}
.y19f{bottom:777.253333pt;}
.y205{bottom:778.853333pt;}
.y15a{bottom:779.493333pt;}
.y8b{bottom:779.653333pt;}
.y113{bottom:783.173333pt;}
.y16{bottom:784.613333pt;}
.y13c{bottom:784.933333pt;}
.y24f{bottom:789.893333pt;}
.y159{bottom:793.573333pt;}
.y15{bottom:793.893333pt;}
.y1a3{bottom:794.053333pt;}
.y8a{bottom:797.253333pt;}
.y112{bottom:800.773333pt;}
.y13b{bottom:803.653333pt;}
.y1a2{bottom:806.373333pt;}
.y14{bottom:806.693333pt;}
.y158{bottom:807.653333pt;}
.y24e{bottom:808.613333pt;}
.y89{bottom:814.853333pt;}
.y111{bottom:818.373333pt;}
.y1a1{bottom:818.533333pt;}
.y13a{bottom:821.093333pt;}
.y157{bottom:821.733333pt;}
.y13{bottom:828.293333pt;}
.y197{bottom:830.853333pt;}
.y88{bottom:832.453333pt;}
.y156{bottom:835.813333pt;}
.y110{bottom:835.973333pt;}
.y24d{bottom:844.613333pt;}
.y12{bottom:847.173333pt;}
.y154{bottom:849.893333pt;}
.y87{bottom:850.053333pt;}
.y10f{bottom:853.573333pt;}
.y19a{bottom:854.213333pt;}
.y24c{bottom:863.493333pt;}
.y153{bottom:864.133333pt;}
.y11{bottom:864.293333pt;}
.y191{bottom:866.533333pt;}
.y86{bottom:867.813333pt;}
.y10e{bottom:872.453333pt;}
.y152{bottom:878.213333pt;}
.y85{bottom:885.413333pt;}
.y10{bottom:888.933333pt;}
.y10d{bottom:890.373333pt;}
.y150{bottom:892.293333pt;}
.y24b{bottom:899.493333pt;}
.y84{bottom:903.013333pt;}
.y14f{bottom:906.373333pt;}
.yf{bottom:911.013333pt;}
.y24a{bottom:917.093333pt;}
.y83{bottom:920.613333pt;}
.y14d{bottom:922.533333pt;}
.ye{bottom:923.653333pt;}
.y6b{bottom:932.960000pt;}
.y249{bottom:934.693333pt;}
.yd{bottom:937.413333pt;}
.y82{bottom:938.213333pt;}
.y18f{bottom:940.293333pt;}
.y14c{bottom:942.213333pt;}
.yc{bottom:951.173333pt;}
.y248{bottom:953.413333pt;}
.y81{bottom:955.813333pt;}
.y14b{bottom:957.093333pt;}
.y3{bottom:966.720000pt;}
.ya{bottom:967.200000pt;}
.y2{bottom:978.880000pt;}
.yc2{bottom:982.560000pt;}
.y1{bottom:992.960000pt;}
.y7e{bottom:997.920000pt;}
.h1e{height:3.612500pt;}
.h9{height:3.667500pt;}
.h45{height:5.562500pt;}
.h5{height:12.000000pt;}
.h40{height:12.160000pt;}
.h3a{height:12.320000pt;}
.h31{height:14.080000pt;}
.h33{height:14.112000pt;}
.h32{height:14.240000pt;}
.h38{height:14.272000pt;}
.h1c{height:15.128437pt;}
.h41{height:16.800000pt;}
.h37{height:17.920000pt;}
.h36{height:18.720000pt;}
.h23{height:18.965625pt;}
.h39{height:19.200000pt;}
.h22{height:19.254375pt;}
.h42{height:19.552000pt;}
.h26{height:19.840000pt;}
.h12{height:22.050313pt;}
.h2f{height:22.155000pt;}
.h35{height:22.560000pt;}
.h25{height:22.578125pt;}
.h30{height:22.921875pt;}
.h1a{height:23.239214pt;}
.h3d{height:23.360000pt;}
.h1d{height:26.190625pt;}
.h8{height:26.589375pt;}
.h15{height:27.523125pt;}
.h17{height:28.881562pt;}
.h20{height:29.216250pt;}
.h11{height:29.281875pt;}
.h34{height:30.254687pt;}
.h7{height:30.400000pt;}
.h28{height:30.595000pt;}
.h19{height:30.715312pt;}
.hd{height:31.217812pt;}
.h3{height:32.549062pt;}
.h1b{height:34.382812pt;}
.hc{height:34.945312pt;}
.h3c{height:35.680000pt;}
.h43{height:36.883125pt;}
.hf{height:37.479688pt;}
.h6{height:38.050313pt;}
.h44{height:38.672812pt;}
.h18{height:40.882500pt;}
.h2d{height:42.176250pt;}
.h2c{height:42.665000pt;}
.hb{height:42.866250pt;}
.h2b{height:43.782500pt;}
.h14{height:45.156250pt;}
.h2e{height:46.375000pt;}
.h29{height:47.109375pt;}
.h10{height:47.709375pt;}
.h16{height:49.148438pt;}
.h2{height:52.832812pt;}
.h3f{height:53.600000pt;}
.h4{height:58.563750pt;}
.he{height:60.057813pt;}
.h13{height:60.288750pt;}
.ha{height:60.800000pt;}
.h1f{height:64.800000pt;}
.h2a{height:66.750000pt;}
.h3b{height:71.840000pt;}
.h3e{height:73.152000pt;}
.h24{height:78.080000pt;}
.h27{height:122.720000pt;}
.h21{height:322.746667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w10{width:72.000000pt;}
.w4{width:72.960000pt;}
.wd{width:77.920000pt;}
.w11{width:84.032000pt;}
.w6{width:89.920000pt;}
.wc{width:107.712000pt;}
.we{width:108.032000pt;}
.w12{width:108.352000pt;}
.wf{width:113.632000pt;}
.w7{width:137.306667pt;}
.w13{width:150.106667pt;}
.wb{width:160.346667pt;}
.w9{width:162.266667pt;}
.w15{width:177.306667pt;}
.w14{width:186.746667pt;}
.w16{width:193.346667pt;}
.w8{width:473.533333pt;}
.w5{width:568.773333pt;}
.w3{width:641.733333pt;}
.wa{width:660.480000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x45{left:3.780000pt;}
.x8{left:7.200000pt;}
.x15{left:9.600000pt;}
.x2c{left:11.360000pt;}
.x2b{left:12.960000pt;}
.x22{left:17.920000pt;}
.x1a{left:18.893333pt;}
.x27{left:23.200000pt;}
.x32{left:24.800000pt;}
.x29{left:26.400000pt;}
.x25{left:28.000000pt;}
.xf{left:29.919988pt;}
.x2d{left:31.840000pt;}
.x26{left:34.426667pt;}
.x3a{left:35.560000pt;}
.x28{left:37.146667pt;}
.x2a{left:39.706667pt;}
.x24{left:40.826667pt;}
.x43{left:41.960000pt;}
.xa{left:44.960000pt;}
.x3d{left:49.306667pt;}
.x3e{left:51.720000pt;}
.x3f{left:53.160000pt;}
.x41{left:55.880000pt;}
.x38{left:57.146667pt;}
.x42{left:60.040000pt;}
.x40{left:61.640000pt;}
.x6{left:65.754667pt;}
.x3b{left:66.760000pt;}
.x3c{left:67.720000pt;}
.x35{left:69.600000pt;}
.x9{left:70.592000pt;}
.x17{left:71.520000pt;}
.x5{left:77.914667pt;}
.x14{left:83.072000pt;}
.x19{left:84.352000pt;}
.x4{left:96.032000pt;}
.xb{left:101.951988pt;}
.xc{left:108.351988pt;}
.x36{left:138.106655pt;}
.xd{left:140.986655pt;}
.x2e{left:150.106655pt;}
.x2f{left:152.666667pt;}
.x10{left:164.666655pt;}
.x7{left:168.986667pt;}
.x1{left:213.306655pt;}
.x11{left:218.466655pt;}
.x30{left:266.306667pt;}
.x16{left:269.346667pt;}
.x18{left:275.906667pt;}
.xe{left:302.466655pt;}
.x37{left:324.706667pt;}
.x3{left:325.666655pt;}
.x31{left:338.306667pt;}
.x2{left:357.026655pt;}
.x44{left:390.013322pt;}
.x1d{left:410.653322pt;}
.x33{left:422.333333pt;}
.x12{left:434.813322pt;}
.x13{left:436.253322pt;}
.x20{left:439.933333pt;}
.x39{left:502.013333pt;}
.x34{left:530.693333pt;}
.x21{left:547.653333pt;}
.x1b{left:551.336000pt;}
.x23{left:625.573333pt;}
.x1f{left:652.133322pt;}
.x1e{left:710.399988pt;}
.x1c{left:722.399988pt;}
}




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