
    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_65d1a9ec711ef4c7e40ff3d9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_1aca93e8e4a346b5af05b974.woff')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_f0464ca7009bf41c6688e8bb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_4eaf820337597abd5ff94ce0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.923000;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_2c3f36dcdc0d18506b627919.woff')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_fed918be46ac6bf570807c72.woff')format("woff");}.ff6{font-family:ff6;line-height:0.923000;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_1ea04e18c12bb27f449d6ef2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.711000;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_4a166e446cdd7cacc03ab382.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3c2071ca2960e9408dedd151.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_68c35c8392c15627a0c7fe53.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3f18ff86ebc84dbf94aa1b4f.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_73cdf70d6d12f57784f00af4.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a8ee7911b0fb597dcd5b1ff8.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_73cdf70d6d12f57784f00af4.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_215f6a842017ae97a4654f5b.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_73cdf70d6d12f57784f00af4.woff')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_73d5f863d81834bf38a901a1.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_73cdf70d6d12f57784f00af4.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_94eb868bdee55da131e766fd.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_73cdf70d6d12f57784f00af4.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_e20645ac9a94163acae9ac52.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_305d061cd24959bf9fafa8d1.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_bedb5ac9b04ae429e037dedd.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_fefac96c4ae81a3bf626568a.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_24f3c6422c557224c9788078.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_93e37ae8ed9ccee42347dccc.woff')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_7b7b5001a695ae3f355831b5.woff')format("woff");}.ff1b{font-family:ff1b;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;}
.m1{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);}
.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);}
.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);}
.v12{vertical-align:-64.080000px;}
.va{vertical-align:-57.377295px;}
.v9{vertical-align:-51.077043px;}
.v2{vertical-align:-49.231969px;}
.v4{vertical-align:-46.126845px;}
.vb{vertical-align:-43.651746px;}
.v8{vertical-align:-38.071523px;}
.v3{vertical-align:-19.080763px;}
.vc{vertical-align:-16.020641px;}
.vf{vertical-align:-13.920000px;}
.ve{vertical-align:-6.300252px;}
.v1{vertical-align:-4.095000px;}
.v14{vertical-align:-1.200000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:6.165247px;}
.v11{vertical-align:10.980000px;}
.v7{vertical-align:13.590544px;}
.v13{vertical-align:28.620000px;}
.vd{vertical-align:32.221289px;}
.v10{vertical-align:36.540000px;}
.v5{vertical-align:38.701548px;}
.v17{vertical-align:49.440000px;}
.v16{vertical-align:59.100000px;}
.v15{vertical-align:60.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003810px;}
.ls2{letter-spacing:140.148000px;}
.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;}
}
.ws5f{word-spacing:-160.164000px;}
.ws9{word-spacing:-29.887800px;}
.ws60{word-spacing:-20.016000px;}
.ws2d{word-spacing:-16.263000px;}
.ws5{word-spacing:-15.900310px;}
.ws56{word-spacing:-12.194222px;}
.ws23{word-spacing:-11.656242px;}
.ws2f{word-spacing:-10.842000px;}
.ws5d{word-spacing:-10.759608px;}
.ws24{word-spacing:-10.460730px;}
.ws34{word-spacing:-10.008400px;}
.ws2{word-spacing:-9.982525px;}
.wsf{word-spacing:-9.922750px;}
.ws58{word-spacing:-9.803198px;}
.ws52{word-spacing:-7.651277px;}
.ws53{word-spacing:-7.292623px;}
.ws5c{word-spacing:-6.993745px;}
.ws21{word-spacing:-6.694867px;}
.ws4{word-spacing:-6.156887px;}
.ws22{word-spacing:-6.037336px;}
.ws25{word-spacing:-5.567055px;}
.ws27{word-spacing:-5.533719px;}
.ws8{word-spacing:-5.439580px;}
.ws57{word-spacing:-4.064741px;}
.ws5b{word-spacing:-3.466985px;}
.ws20{word-spacing:-3.287658px;}
.ws51{word-spacing:-2.630126px;}
.ws54{word-spacing:-2.391024px;}
.ws3{word-spacing:-2.032370px;}
.ws29{word-spacing:-0.059776px;}
.ws10{word-spacing:0.000000px;}
.ws28{word-spacing:19.866704px;}
.ws2a{word-spacing:22.834279px;}
.ws1{word-spacing:23.312640px;}
.ws7{word-spacing:26.827469px;}
.ws0{word-spacing:31.091012px;}
.ws6{word-spacing:31.322414px;}
.wsa{word-spacing:41.842920px;}
.ws62{word-spacing:42.530126px;}
.ws26{word-spacing:45.500631px;}
.ws55{word-spacing:62.704604px;}
.ws5a{word-spacing:73.380000px;}
.ws31{word-spacing:76.742250px;}
.ws4f{word-spacing:88.941558px;}
.ws2c{word-spacing:96.349500px;}
.ws3f{word-spacing:97.815912px;}
.wsc{word-spacing:98.450413px;}
.wse{word-spacing:99.765476px;}
.ws2b{word-spacing:102.784500px;}
.ws38{word-spacing:108.310332px;}
.ws32{word-spacing:111.811472px;}
.ws43{word-spacing:114.700588px;}
.ws3d{word-spacing:118.813752px;}
.ws30{word-spacing:120.276000px;}
.ws33{word-spacing:121.702868px;}
.ws40{word-spacing:125.267010px;}
.ws3b{word-spacing:126.176047px;}
.wsb{word-spacing:128.338213px;}
.wsd{word-spacing:129.653276px;}
.ws44{word-spacing:131.477259px;}
.ws1c{word-spacing:131.506320px;}
.ws4b{word-spacing:133.601344px;}
.ws37{word-spacing:133.943358px;}
.ws36{word-spacing:135.131405px;}
.ws4c{word-spacing:135.266410px;}
.ws61{word-spacing:140.719036px;}
.ws63{word-spacing:143.772000px;}
.ws47{word-spacing:150.423017px;}
.ws3c{word-spacing:150.594024px;}
.ws4a{word-spacing:151.638065px;}
.ws42{word-spacing:155.697228px;}
.ws3e{word-spacing:158.622345px;}
.ws4e{word-spacing:158.658346px;}
.ws2e{word-spacing:161.937750px;}
.ws35{word-spacing:163.032521px;}
.ws46{word-spacing:169.413776px;}
.ws1e{word-spacing:174.484976px;}
.ws49{word-spacing:181.663266px;}
.ws59{word-spacing:183.720000px;}
.ws1f{word-spacing:188.592018px;}
.ws50{word-spacing:199.294971px;}
.ws1b{word-spacing:222.006578px;}
.ws1d{word-spacing:241.732526px;}
.ws12{word-spacing:251.715052px;}
.ws45{word-spacing:252.883115px;}
.ws15{word-spacing:267.495810px;}
.ws17{word-spacing:315.674944px;}
.ws18{word-spacing:316.452026px;}
.ws11{word-spacing:317.288885px;}
.ws39{word-spacing:323.571942px;}
.ws3a{word-spacing:340.663626px;}
.ws41{word-spacing:341.761670px;}
.ws19{word-spacing:349.687260px;}
.ws16{word-spacing:355.485493px;}
.ws13{word-spacing:357.159210px;}
.ws1a{word-spacing:373.776827px;}
.ws14{word-spacing:385.373293px;}
.ws5e{word-spacing:451.584000px;}
.ws48{word-spacing:510.194407px;}
.ws4d{word-spacing:739.928596px;}
._59{margin-left:-140.088000px;}
._5a{margin-left:-8.640000px;}
._c{margin-left:-6.742733px;}
._1{margin-left:-5.371205px;}
._7{margin-left:-3.949489px;}
._0{margin-left:-2.685602px;}
._3{margin-left:-1.187882px;}
._4{width:1.613941px;}
._2{width:2.685602px;}
._3f{width:7.074283px;}
._5{width:15.892680px;}
._33{width:20.960707px;}
._6{width:26.174083px;}
._52{width:27.607728px;}
._47{width:29.840083px;}
._44{width:31.900612px;}
._45{width:34.662218px;}
._a{width:37.116348px;}
._b{width:38.901986px;}
._d{width:41.326133px;}
._53{width:43.688334px;}
._46{width:49.255094px;}
._35{width:58.841250px;}
._23{width:62.168459px;}
._1c{width:67.448573px;}
._56{width:70.284118px;}
._17{width:73.468171px;}
._16{width:76.061383px;}
._1e{width:83.559948px;}
._14{width:84.948572px;}
._27{width:86.803857px;}
._15{width:93.472595px;}
._28{width:95.135596px;}
._10{width:96.987767px;}
._19{width:99.958680px;}
._f{width:102.083847px;}
._13{width:106.433751px;}
._18{width:114.491112px;}
._2c{width:116.215170px;}
._34{width:119.437500px;}
._5c{width:121.740000px;}
._1b{width:124.214820px;}
._3a{width:126.358522px;}
._8{width:128.338213px;}
._9{width:129.713052px;}
._12{width:135.046081px;}
._5b{width:138.875415px;}
._55{width:140.184000px;}
._36{width:142.241689px;}
._3e{width:144.635785px;}
._3c{width:147.605904px;}
._37{width:152.781111px;}
._1a{width:155.139292px;}
._3d{width:158.091323px;}
._38{width:162.501500px;}
._39{width:164.229482px;}
._54{width:165.360000px;}
._3b{width:171.042841px;}
._42{width:180.736229px;}
._22{width:181.917171px;}
._1d{width:184.032693px;}
._51{width:188.293140px;}
._40{width:189.916596px;}
._31{width:204.032541px;}
._11{width:205.471027px;}
._41{width:218.537576px;}
._43{width:219.752790px;}
._2e{width:231.991156px;}
._4c{width:251.057520px;}
._24{width:253.012621px;}
._2f{width:264.658848px;}
._e{width:272.643990px;}
._26{width:280.889674px;}
._25{width:282.463423px;}
._1f{width:285.886995px;}
._2d{width:287.185003px;}
._21{width:290.148543px;}
._29{width:294.500928px;}
._32{width:304.408285px;}
._2a{width:312.003399px;}
._2b{width:313.670182px;}
._30{width:320.614000px;}
._20{width:324.967636px;}
._50{width:345.204090px;}
._4f{width:376.586280px;}
._49{width:439.350660px;}
._4a{width:470.732850px;}
._57{width:492.600000px;}
._4d{width:502.115040px;}
._58{width:513.648000px;}
._4e{width:533.497230px;}
._4b{width:564.879420px;}
._48{width:690.408180px;}
.fc3{color:rgb(0,205,0);}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:33.335657px;}
.fs6{font-size:36.001440px;}
.fs5{font-size:39.000000px;}
.fs9{font-size:48.000000px;}
.fs4{font-size:58.500000px;}
.fs2{font-size:59.775600px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:71.731200px;}
.fs8{font-size:72.000000px;}
.fsc{font-size:72.003600px;}
.fsa{font-size:84.000000px;}
.fsb{font-size:84.004200px;}
.fs0{font-size:103.292400px;}
.y20a{bottom:-6.885000px;}
.y1f9{bottom:-0.135000px;}
.y0{bottom:0.000000px;}
.y1df{bottom:1.155000px;}
.y1fc{bottom:2.730000px;}
.yc2{bottom:3.595312px;}
.y120{bottom:5.130205px;}
.y179{bottom:5.152706px;}
.y109{bottom:5.197708px;}
.y204{bottom:5.775000px;}
.y182{bottom:6.007740px;}
.y1f2{bottom:7.455000px;}
.y1e4{bottom:8.400000px;}
.y1a4{bottom:9.337874px;}
.yc4{bottom:11.322188px;}
.yc3{bottom:11.517187px;}
.y1a3{bottom:11.677967px;}
.y207{bottom:11.925000px;}
.y1ed{bottom:12.540000px;}
.y20d{bottom:12.630000px;}
.ycc{bottom:12.662812px;}
.y20f{bottom:12.750000px;}
.y17d{bottom:13.073023px;}
.y1a2{bottom:13.253030px;}
.y101{bottom:13.905556px;}
.y174{bottom:14.254320px;}
.y1a5{bottom:14.378075px;}
.y1f6{bottom:15.000000px;}
.y21c{bottom:15.270000px;}
.y1f4{bottom:15.330000px;}
.y20b{bottom:15.570000px;}
.y16d{bottom:15.851884px;}
.y1ea{bottom:17.565000px;}
.y19c{bottom:18.383235px;}
.y197{bottom:20.250810px;}
.yc9{bottom:21.401250px;}
.y1fa{bottom:21.405000px;}
.y1a6{bottom:22.433397px;}
.ybd{bottom:22.815000px;}
.y1d9{bottom:23.310000px;}
.y202{bottom:23.460000px;}
.y1ef{bottom:23.610000px;}
.y190{bottom:23.648446px;}
.y195{bottom:26.022291px;}
.y1fd{bottom:27.840000px;}
.y218{bottom:28.080000px;}
.y21f{bottom:28.081404px;}
.y205{bottom:28.185000px;}
.y208{bottom:29.880000px;}
.y1dd{bottom:29.925000px;}
.yc0{bottom:30.980625px;}
.y19b{bottom:33.008820px;}
.y1ff{bottom:33.810000px;}
.y10e{bottom:34.302622px;}
.y12f{bottom:35.281411px;}
.y19f{bottom:35.360164px;}
.y180{bottom:36.440208px;}
.y1e7{bottom:36.495000px;}
.y18a{bottom:37.632755px;}
.y21b{bottom:37.800000px;}
.yce{bottom:38.061563px;}
.y17f{bottom:43.314233px;}
.y191{bottom:43.899256px;}
.y16f{bottom:43.921757px;}
.y18b{bottom:44.878045px;}
.y186{bottom:47.398146px;}
.y188{bottom:48.748200px;}
.y1f0{bottom:49.140000px;}
.y19a{bottom:52.607104px;}
.y183{bottom:52.955868px;}
.y199{bottom:53.439638px;}
.y19d{bottom:53.675897px;}
.y194{bottom:53.923407px;}
.y18c{bottom:54.080913px;}
.y1ec{bottom:54.180000px;}
.y11f{bottom:54.452178px;}
.y1f7{bottom:55.335000px;}
.y18e{bottom:56.578513px;}
.y1e8{bottom:56.700000px;}
.y18f{bottom:57.298542px;}
.y196{bottom:57.354794px;}
.y1f1{bottom:57.735000px;}
.ybb{bottom:57.915000px;}
.y201{bottom:57.975000px;}
.y1eb{bottom:58.245000px;}
.y1e5{bottom:58.635000px;}
.y1e0{bottom:59.160000px;}
.y20c{bottom:59.550000px;}
.yd0{bottom:59.694375px;}
.y20e{bottom:61.230000px;}
.y1dc{bottom:61.275000px;}
.y1f3{bottom:61.845000px;}
.y1ee{bottom:62.145000px;}
.y1e6{bottom:62.760000px;}
.y200{bottom:63.015000px;}
.y23{bottom:63.168000px;}
.y1de{bottom:63.345000px;}
.y206{bottom:63.795000px;}
.y1e9{bottom:63.885000px;}
.y1e3{bottom:63.945000px;}
.y1fe{bottom:63.990000px;}
.y1f5{bottom:64.170000px;}
.y1fb{bottom:64.380000px;}
.y203{bottom:64.500000px;}
.y1f8{bottom:64.680000px;}
.y209{bottom:64.815000px;}
.y17e{bottom:66.062642px;}
.y127{bottom:67.997720px;}
.y170{bottom:68.233979px;}
.y16c{bottom:70.450318px;}
.y215{bottom:71.280000px;}
.y221{bottom:71.283564px;}
.y173{bottom:71.732869px;}
.y135{bottom:72.295392px;}
.y185{bottom:72.452898px;}
.yca{bottom:73.137187px;}
.y17c{bottom:76.581813px;}
.yc6{bottom:77.049375px;}
.y189{bottom:77.864364px;}
.y1e1{bottom:83.895000px;}
.y130{bottom:84.243370px;}
.y178{bottom:89.576083px;}
.y16b{bottom:89.891096px;}
.y107{bottom:94.593784px;}
.y1da{bottom:95.460000px;}
.y172{bottom:95.775081px;}
.y111{bottom:97.788911px;}
.yc1{bottom:98.779688px;}
.y187{bottom:101.006540px;}
.y104{bottom:102.232839px;}
.y181{bottom:102.300342px;}
.ybc{bottom:103.142812px;}
.y223{bottom:106.260000px;}
.yfd{bottom:107.962500px;}
.y87{bottom:108.000000px;}
.y113{bottom:110.861934px;}
.yd3{bottom:111.491250px;}
.y222{bottom:113.795690px;}
.y132{bottom:114.574583px;}
.yeb{bottom:116.787000px;}
.y108{bottom:116.847174px;}
.y11d{bottom:117.207188px;}
.y115{bottom:118.748500px;}
.yb9{bottom:119.923500px;}
.y21d{bottom:121.717500px;}
.yd1{bottom:122.764688px;}
.y129{bottom:123.124925px;}
.y10b{bottom:124.654986px;}
.y86{bottom:125.932500px;}
.y16a{bottom:126.297552px;}
.ycf{bottom:126.664688px;}
.y11e{bottom:126.882575px;}
.y192{bottom:128.480139px;}
.y12b{bottom:131.911526px;}
.ycd{bottom:132.892500px;}
.y10f{bottom:133.081573px;}
.yea{bottom:134.719500px;}
.yb8{bottom:137.856000px;}
.yc5{bottom:139.827188px;}
.yc7{bottom:143.020313px;}
.y85{bottom:143.865000px;}
.y216{bottom:147.690000px;}
.y22{bottom:148.288500px;}
.y102{bottom:152.319843px;}
.ye9{bottom:152.652000px;}
.y12a{bottom:153.163626px;}
.y125{bottom:155.616224px;}
.yb7{bottom:155.788500px;}
.yd2{bottom:155.890313px;}
.y123{bottom:156.370005px;}
.y16e{bottom:157.922567px;}
.y168{bottom:158.777601px;}
.ybe{bottom:159.851250px;}
.y105{bottom:161.455208px;}
.y84{bottom:161.797500px;}
.y176{bottom:161.837723px;}
.y128{bottom:162.085233px;}
.y131{bottom:162.493431px;}
.y12c{bottom:165.044102px;}
.y116{bottom:166.124145px;}
.y21{bottom:166.221000px;}
.y198{bottom:168.407986px;}
.y177{bottom:170.084303px;}
.ye8{bottom:170.584500px;}
.y10a{bottom:172.593153px;}
.ycb{bottom:173.160000px;}
.yb6{bottom:173.721000px;}
.y106{bottom:176.249550px;}
.yc8{bottom:179.095313px;}
.y83{bottom:179.730000px;}
.y133{bottom:180.097204px;}
.y112{bottom:182.077283px;}
.y20{bottom:184.153500px;}
.y220{bottom:184.299215px;}
.y122{bottom:184.867394px;}
.y165{bottom:185.665500px;}
.y117{bottom:186.903726px;}
.y10c{bottom:187.983769px;}
.y167{bottom:188.231279px;}
.ye7{bottom:188.517000px;}
.y1d8{bottom:189.030000px;}
.y114{bottom:189.941347px;}
.y184{bottom:190.616374px;}
.yb5{bottom:191.655000px;}
.y12d{bottom:196.297852px;}
.y82{bottom:197.664000px;}
.y134{bottom:199.852994px;}
.y1f{bottom:202.086000px;}
.y126{bottom:203.554392px;}
.y164{bottom:203.598000px;}
.ye6{bottom:206.451000px;}
.y219{bottom:208.830000px;}
.yb4{bottom:209.587500px;}
.y1d7{bottom:210.540000px;}
.y124{bottom:211.384705px;}
.y171{bottom:211.665966px;}
.y10d{bottom:212.025981px;}
.y169{bottom:212.723509px;}
.y193{bottom:214.051062px;}
.y121{bottom:214.118564px;}
.y175{bottom:214.613584px;}
.y110{bottom:215.018600px;}
.y81{bottom:215.596500px;}
.y1e{bottom:220.020000px;}
.y163{bottom:221.532000px;}
.ye5{bottom:224.383500px;}
.yb3{bottom:227.520000px;}
.y80{bottom:233.529000px;}
.y162{bottom:239.464500px;}
.ye4{bottom:242.316000px;}
.y1d{bottom:245.424000px;}
.yb2{bottom:245.452500px;}
.y7f{bottom:251.461500px;}
.y161{bottom:257.397000px;}
.ye3{bottom:260.248500px;}
.y1c{bottom:263.356500px;}
.yb1{bottom:263.385000px;}
.y7e{bottom:269.394000px;}
.y160{bottom:275.329500px;}
.ye2{bottom:278.181000px;}
.y1b{bottom:281.289000px;}
.yb0{bottom:281.317500px;}
.y7d{bottom:287.326500px;}
.y15f{bottom:293.262000px;}
.ye1{bottom:296.113500px;}
.y1a{bottom:299.223000px;}
.yaf{bottom:299.251500px;}
.y1d4{bottom:302.160000px;}
.y7c{bottom:305.260500px;}
.y15e{bottom:311.196000px;}
.ye0{bottom:314.047500px;}
.y19{bottom:317.155500px;}
.yae{bottom:317.184000px;}
.y7b{bottom:323.193000px;}
.y1d5{bottom:326.895000px;}
.y15d{bottom:329.128500px;}
.ydf{bottom:331.980000px;}
.y55{bottom:332.239658px;}
.yad{bottom:335.116500px;}
.y7a{bottom:341.125500px;}
.y18{bottom:342.559500px;}
.y54{bottom:342.574026px;}
.y1cb{bottom:346.194000px;}
.y15c{bottom:347.061000px;}
.yde{bottom:349.912500px;}
.y53{bottom:352.907558px;}
.yac{bottom:353.049000px;}
.y79{bottom:359.058000px;}
.y119{bottom:359.294371px;}
.y17{bottom:360.492000px;}
.y52{bottom:363.241926px;}
.y15b{bottom:364.993500px;}
.ydd{bottom:367.845000px;}
.yab{bottom:370.981500px;}
.y51{bottom:373.576294px;}
.y78{bottom:376.990500px;}
.y1a7{bottom:377.688857px;}
.y16{bottom:378.426000px;}
.y21e{bottom:380.194009px;}
.y1a1{bottom:380.591473px;}
.y15a{bottom:382.926000px;}
.y50{bottom:383.909826px;}
.ydc{bottom:385.777500px;}
.y1ca{bottom:387.127500px;}
.yaa{bottom:388.914000px;}
.y4f{bottom:394.244194px;}
.y77{bottom:394.923000px;}
.y12e{bottom:396.308352px;}
.y15{bottom:396.358500px;}
.y159{bottom:400.858500px;}
.y17b{bottom:401.776070px;}
.ydb{bottom:403.710000px;}
.y4e{bottom:404.578562px;}
.y1c9{bottom:405.060000px;}
.ya9{bottom:406.848000px;}
.y11a{bottom:408.256330px;}
.y76{bottom:412.857000px;}
.y14{bottom:414.291000px;}
.y4d{bottom:414.912093px;}
.y3f{bottom:415.768500px;}
.y158{bottom:418.792500px;}
.yda{bottom:421.644000px;}
.y18d{bottom:422.780661px;}
.y1c8{bottom:422.992500px;}
.ya8{bottom:424.780500px;}
.y4c{bottom:425.246461px;}
.y75{bottom:430.789500px;}
.y11b{bottom:431.975460px;}
.y217{bottom:434.175000px;}
.y4b{bottom:435.580829px;}
.y157{bottom:436.725000px;}
.yd9{bottom:439.576500px;}
.y13{bottom:439.695000px;}
.y1c7{bottom:440.926500px;}
.y3e{bottom:442.668000px;}
.ya7{bottom:442.713000px;}
.y4a{bottom:445.914361px;}
.y74{bottom:448.722000px;}
.y156{bottom:454.657500px;}
.y49{bottom:456.248729px;}
.yd8{bottom:457.509000px;}
.y12{bottom:457.629000px;}
.y1c6{bottom:458.859000px;}
.y3d{bottom:460.600500px;}
.ya6{bottom:460.645500px;}
.y56{bottom:462.736500px;}
.y48{bottom:466.583097px;}
.y73{bottom:466.654500px;}
.y155{bottom:472.590000px;}
.yd7{bottom:475.441500px;}
.y11{bottom:475.561500px;}
.y1c5{bottom:476.791500px;}
.y47{bottom:476.916629px;}
.ya5{bottom:478.578000px;}
.y72{bottom:484.587000px;}
.y214{bottom:486.405000px;}
.y11c{bottom:486.506391px;}
.y46{bottom:487.250997px;}
.y154{bottom:490.522500px;}
.yd6{bottom:493.374000px;}
.y10{bottom:493.494000px;}
.y1c4{bottom:494.724000px;}
.ya4{bottom:496.510500px;}
.y3c{bottom:497.151000px;}
.y45{bottom:497.585365px;}
.y71{bottom:502.521000px;}
.y213{bottom:504.337500px;}
.y44{bottom:507.918896px;}
.y153{bottom:508.455000px;}
.yd5{bottom:511.306500px;}
.yf{bottom:511.426500px;}
.y1c3{bottom:512.656500px;}
.ya3{bottom:514.444500px;}
.y43{bottom:518.253264px;}
.y70{bottom:520.453500px;}
.y152{bottom:526.389000px;}
.y42{bottom:528.587633px;}
.y1c2{bottom:530.589000px;}
.y212{bottom:531.237000px;}
.ya2{bottom:532.377000px;}
.ye{bottom:536.862000px;}
.y6f{bottom:538.386000px;}
.y41{bottom:538.921164px;}
.y151{bottom:544.321500px;}
.y1d2{bottom:545.005500px;}
.yd4{bottom:547.857000px;}
.y3b{bottom:547.950000px;}
.y1c1{bottom:548.523000px;}
.y211{bottom:549.169500px;}
.ya1{bottom:550.309500px;}
.y6e{bottom:556.318500px;}
.y150{bottom:562.254000px;}
.y1d1{bottom:562.939500px;}
.y40{bottom:563.854500px;}
.y3a{bottom:565.882500px;}
.y1c0{bottom:566.455500px;}
.y210{bottom:567.102000px;}
.ya0{bottom:568.242000px;}
.yd{bottom:574.219500px;}
.y6d{bottom:574.251000px;}
.y14f{bottom:580.186500px;}
.y1d0{bottom:580.872000px;}
.y1bf{bottom:584.388000px;}
.y9f{bottom:586.174500px;}
.yc{bottom:592.153500px;}
.y6c{bottom:592.183500px;}
.y39{bottom:592.782000px;}
.y1d3{bottom:594.001500px;}
.yba{bottom:595.668000px;}
.y14e{bottom:598.119000px;}
.y1be{bottom:602.320500px;}
.y9e{bottom:604.108500px;}
.y6b{bottom:610.117500px;}
.y14d{bottom:616.051500px;}
.y38{bottom:619.681500px;}
.y1bd{bottom:620.253000px;}
.y9d{bottom:622.041000px;}
.y1cf{bottom:622.714500px;}
.y6a{bottom:628.050000px;}
.yb{bottom:628.702500px;}
.y14c{bottom:633.985500px;}
.yfc{bottom:634.669500px;}
.y37{bottom:637.614000px;}
.y1bc{bottom:638.185500px;}
.y9c{bottom:639.973500px;}
.y1ce{bottom:640.647000px;}
.y69{bottom:645.982500px;}
.y14b{bottom:651.918000px;}
.yfb{bottom:652.602000px;}
.y36{bottom:655.546500px;}
.y1bb{bottom:656.119500px;}
.y9b{bottom:657.906000px;}
.y1cd{bottom:658.579500px;}
.y68{bottom:663.915000px;}
.y14a{bottom:669.850500px;}
.yfa{bottom:670.536000px;}
.y35{bottom:673.479000px;}
.y1ba{bottom:674.052000px;}
.y9a{bottom:675.838500px;}
.y1cc{bottom:676.513500px;}
.y67{bottom:681.847500px;}
.yfe{bottom:683.307331px;}
.ybf{bottom:685.173000px;}
.y1e2{bottom:685.441500px;}
.y149{bottom:687.783000px;}
.yf9{bottom:688.468500px;}
.y1b9{bottom:691.984500px;}
.y99{bottom:693.771000px;}
.ya{bottom:694.446000px;}
.y166{bottom:698.270430px;}
.y66{bottom:699.780000px;}
.yff{bottom:702.466848px;}
.y21a{bottom:704.161500px;}
.y148{bottom:705.715500px;}
.yf8{bottom:706.401000px;}
.y118{bottom:706.415756px;}
.y1b8{bottom:709.917000px;}
.y98{bottom:711.705000px;}
.y65{bottom:717.714000px;}
.y17a{bottom:722.976418px;}
.y147{bottom:723.649500px;}
.yf7{bottom:724.333500px;}
.y19e{bottom:725.789030px;}
.y34{bottom:727.459500px;}
.y1b7{bottom:727.849500px;}
.y97{bottom:729.637500px;}
.y64{bottom:735.646500px;}
.y9{bottom:736.288500px;}
.y146{bottom:741.582000px;}
.yf6{bottom:742.266000px;}
.y33{bottom:745.392000px;}
.y1b6{bottom:745.783500px;}
.y1a0{bottom:746.793621px;}
.y96{bottom:747.570000px;}
.y63{bottom:753.579000px;}
.y8{bottom:754.221000px;}
.y100{bottom:755.988420px;}
.y145{bottom:759.514500px;}
.yf5{bottom:760.198500px;}
.y32{bottom:763.326000px;}
.y1b5{bottom:763.716000px;}
.y95{bottom:765.502500px;}
.y62{bottom:771.511500px;}
.y7{bottom:772.155000px;}
.y144{bottom:777.447000px;}
.yf4{bottom:778.132500px;}
.y31{bottom:781.258500px;}
.y1b4{bottom:781.648500px;}
.y94{bottom:783.435000px;}
.y61{bottom:789.444000px;}
.y6{bottom:790.087500px;}
.y143{bottom:795.379500px;}
.yf3{bottom:796.065000px;}
.y30{bottom:799.191000px;}
.y1b3{bottom:799.581000px;}
.y93{bottom:801.367500px;}
.y103{bottom:810.519351px;}
.y142{bottom:813.312000px;}
.yf2{bottom:813.997500px;}
.y5{bottom:816.987000px;}
.y1b2{bottom:817.513500px;}
.y92{bottom:819.301500px;}
.y2f{bottom:824.595000px;}
.y60{bottom:825.993000px;}
.y141{bottom:831.246000px;}
.yf1{bottom:831.930000px;}
.y1b1{bottom:835.446000px;}
.y1d6{bottom:837.001500px;}
.y91{bottom:837.234000px;}
.y2e{bottom:842.529000px;}
.y4{bottom:843.885000px;}
.y140{bottom:849.178500px;}
.yf0{bottom:849.862500px;}
.y1b0{bottom:853.380000px;}
.y90{bottom:855.166500px;}
.y2d{bottom:860.461500px;}
.y13f{bottom:867.111000px;}
.yef{bottom:867.795000px;}
.y1af{bottom:871.312500px;}
.y5f{bottom:873.798000px;}
.y2c{bottom:878.394000px;}
.y13e{bottom:885.043500px;}
.yee{bottom:885.729000px;}
.y8f{bottom:891.717000px;}
.y2b{bottom:896.326500px;}
.y13d{bottom:902.976000px;}
.yed{bottom:903.661500px;}
.y3{bottom:908.145000px;}
.y1ae{bottom:912.246000px;}
.y5e{bottom:915.628500px;}
.y13c{bottom:920.908500px;}
.yec{bottom:921.594000px;}
.y2a{bottom:921.732000px;}
.y1db{bottom:928.441500px;}
.y1ad{bottom:930.178500px;}
.y5d{bottom:933.562500px;}
.y13b{bottom:938.842500px;}
.y8e{bottom:939.526500px;}
.y29{bottom:939.664500px;}
.y1ac{bottom:948.111000px;}
.y2{bottom:949.987500px;}
.y5c{bottom:951.495000px;}
.y13a{bottom:956.775000px;}
.y8d{bottom:957.459000px;}
.y28{bottom:957.597000px;}
.y1ab{bottom:966.043500px;}
.y5b{bottom:969.427500px;}
.y139{bottom:974.707500px;}
.y8c{bottom:975.391500px;}
.y27{bottom:975.529500px;}
.y5a{bottom:987.360000px;}
.y138{bottom:992.640000px;}
.y1aa{bottom:992.791500px;}
.y8b{bottom:993.325500px;}
.y26{bottom:993.462000px;}
.y1{bottom:1002.291000px;}
.y59{bottom:1005.292500px;}
.y137{bottom:1010.572500px;}
.y1a9{bottom:1010.724000px;}
.y8a{bottom:1011.258000px;}
.y25{bottom:1018.897500px;}
.y58{bottom:1023.225000px;}
.y136{bottom:1028.505000px;}
.y1a8{bottom:1028.658000px;}
.y89{bottom:1029.190500px;}
.y88{bottom:1047.123000px;}
.y24{bottom:1054.761000px;}
.y57{bottom:1065.055500px;}
.h7{height:25.001742px;}
.he{height:37.548377px;}
.hc{height:40.675781px;}
.h4{height:41.484266px;}
.h8{height:41.842920px;}
.h12{height:43.713623px;}
.h3{height:44.831700px;}
.h2{height:49.781453px;}
.h1a{height:50.062500px;}
.h5{height:50.211840px;}
.h13{height:51.138920px;}
.h14{height:53.749025px;}
.h1f{height:60.442500px;}
.ha{height:61.013672px;}
.h1c{height:61.042500px;}
.h16{height:62.578125px;}
.h1{height:73.027727px;}
.h18{height:75.093750px;}
.h25{height:75.097505px;}
.h11{height:76.249925px;}
.h19{height:78.060000px;}
.h1b{height:86.602500px;}
.h21{height:87.609375px;}
.h24{height:87.613755px;}
.h20{height:99.502500px;}
.h1e{height:109.162500px;}
.h1d{height:110.662500px;}
.hb{height:189.540000px;}
.h10{height:225.639025px;}
.h17{height:243.000000px;}
.h22{height:287.280000px;}
.hf{height:324.012960px;}
.h9{height:351.000000px;}
.h23{height:432.021600px;}
.h15{height:486.000000px;}
.h6{height:918.000000px;}
.hd{height:972.038880px;}
.h0{height:1188.000000px;}
.w8{width:239.850000px;}
.w4{width:242.190000px;}
.w7{width:257.725309px;}
.w6{width:324.012960px;}
.w3{width:351.000000px;}
.wa{width:432.021600px;}
.w9{width:568.080000px;}
.w5{width:648.025920px;}
.w2{width:702.000000px;}
.w0{width:918.000000px;}
.w1{width:1188.000000px;}
.x68{left:-10.320000px;}
.x1a{left:-7.434375px;}
.x31{left:-5.602724px;}
.x5d{left:-4.331423px;}
.x49{left:-3.071373px;}
.x56{left:-1.046292px;}
.x0{left:0.000000px;}
.x62{left:1.440058px;}
.x5a{left:3.116375px;}
.x18{left:7.885313px;}
.x2a{left:9.619135px;}
.x63{left:11.756720px;}
.x11{left:15.795000px;}
.x4b{left:17.213189px;}
.x4c{left:19.193268px;}
.x14{left:21.949688px;}
.x64{left:23.637195px;}
.x2c{left:25.527271px;}
.x22{left:26.849063px;}
.x3a{left:29.329923px;}
.x28{left:31.006240px;}
.x21{left:32.784375px;}
.x57{left:37.711508px;}
.x4f{left:39.725339px;}
.x48{left:41.705418px;}
.x39{left:42.875465px;}
.x3e{left:44.990550px;}
.xf{left:50.895000px;}
.x67{left:51.990000px;}
.xd{left:63.168000px;}
.x55{left:66.816423px;}
.x58{left:67.986469px;}
.x60{left:71.271601px;}
.x61{left:72.891666px;}
.x42{left:75.333013px;}
.x27{left:76.379305px;}
.x4a{left:77.853114px;}
.xe{left:79.779375px;}
.x6e{left:82.080000px;}
.x23{left:85.787813px;}
.x2d{left:87.247240px;}
.x37{left:88.968559px;}
.x35{left:94.638785px;}
.x32{left:96.731369px;}
.x38{left:100.106504px;}
.x1f{left:101.948438px;}
.x43{left:105.652976px;}
.x4{left:108.000000px;}
.x34{left:110.603174px;}
.x13{left:112.454063px;}
.xc{left:115.777963px;}
.x1d{left:117.865313px;}
.x1b{left:120.205312px;}
.x20{left:121.338750px;}
.x4d{left:123.957458px;}
.x40{left:127.782611px;}
.x50{left:130.898986px;}
.x54{left:132.946568px;}
.x15{left:134.818125px;}
.x6d{left:136.920000px;}
.x30{left:138.931807px;}
.x2e{left:142.745710px;}
.x19{left:144.824063px;}
.x6c{left:145.920000px;}
.x2b{left:151.843004px;}
.x16{left:156.560625px;}
.x29{left:157.663806px;}
.x45{left:165.775381px;}
.x10{left:168.626250px;}
.x17{left:174.330000px;}
.x1c{left:176.889375px;}
.x3f{left:177.970869px;}
.x12{left:179.955000px;}
.x69{left:181.500000px;}
.x5c{left:185.441167px;}
.x1e{left:189.917813px;}
.x36{left:194.396526px;}
.x71{left:196.560000px;}
.xb{left:198.757401px;}
.x44{left:200.888035px;}
.x41{left:202.249340px;}
.x46{left:203.261880px;}
.x4e{left:204.611934px;}
.x65{left:207.773311px;}
.x33{left:213.758550px;}
.x5b{left:224.153966px;}
.x2f{left:230.915486px;}
.x59{left:232.051782px;}
.x52{left:233.491839px;}
.x5f{left:235.910686px;}
.x6f{left:243.930000px;}
.x72{left:260.625000px;}
.x1{left:281.712000px;}
.x7{left:325.386000px;}
.x5{left:336.313500px;}
.x70{left:348.600000px;}
.x3c{left:355.019200px;}
.x51{left:365.020850px;}
.x47{left:372.986169px;}
.x9{left:380.523000px;}
.x5e{left:391.909426px;}
.x3b{left:397.163386px;}
.x25{left:401.895000px;}
.x6a{left:402.990000px;}
.x2{left:414.741000px;}
.x3{left:418.029000px;}
.x66{left:419.101763px;}
.x3d{left:432.012960px;}
.xa{left:445.369500px;}
.x24{left:446.428125px;}
.x53{left:451.528500px;}
.x6{left:455.263500px;}
.x26{left:459.000000px;}
.x8{left:503.853000px;}
.x6b{left:532.500000px;}
@media print{
.v12{vertical-align:-56.960000pt;}
.va{vertical-align:-51.002040pt;}
.v9{vertical-align:-45.401816pt;}
.v2{vertical-align:-43.761750pt;}
.v4{vertical-align:-41.001640pt;}
.vb{vertical-align:-38.801552pt;}
.v8{vertical-align:-33.841354pt;}
.v3{vertical-align:-16.960678pt;}
.vc{vertical-align:-14.240570pt;}
.vf{vertical-align:-12.373333pt;}
.ve{vertical-align:-5.600224pt;}
.v1{vertical-align:-3.640000pt;}
.v14{vertical-align:-1.066667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.480219pt;}
.v11{vertical-align:9.760000pt;}
.v7{vertical-align:12.080483pt;}
.v13{vertical-align:25.440000pt;}
.vd{vertical-align:28.641146pt;}
.v10{vertical-align:32.480000pt;}
.v5{vertical-align:34.401376pt;}
.v17{vertical-align:43.946667pt;}
.v16{vertical-align:52.533333pt;}
.v15{vertical-align:53.866667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003387pt;}
.ls2{letter-spacing:124.576000pt;}
.ws5f{word-spacing:-142.368000pt;}
.ws9{word-spacing:-26.566933pt;}
.ws60{word-spacing:-17.792000pt;}
.ws2d{word-spacing:-14.456000pt;}
.ws5{word-spacing:-14.133609pt;}
.ws56{word-spacing:-10.839309pt;}
.ws23{word-spacing:-10.361104pt;}
.ws2f{word-spacing:-9.637333pt;}
.ws5d{word-spacing:-9.564096pt;}
.ws24{word-spacing:-9.298427pt;}
.ws34{word-spacing:-8.896356pt;}
.ws2{word-spacing:-8.873356pt;}
.wsf{word-spacing:-8.820222pt;}
.ws58{word-spacing:-8.713954pt;}
.ws52{word-spacing:-6.801135pt;}
.ws53{word-spacing:-6.482332pt;}
.ws5c{word-spacing:-6.216662pt;}
.ws21{word-spacing:-5.950993pt;}
.ws4{word-spacing:-5.472788pt;}
.ws22{word-spacing:-5.366521pt;}
.ws25{word-spacing:-4.948493pt;}
.ws27{word-spacing:-4.918861pt;}
.ws8{word-spacing:-4.835182pt;}
.ws57{word-spacing:-3.613103pt;}
.ws5b{word-spacing:-3.081764pt;}
.ws20{word-spacing:-2.922363pt;}
.ws51{word-spacing:-2.337890pt;}
.ws54{word-spacing:-2.125355pt;}
.ws3{word-spacing:-1.806551pt;}
.ws29{word-spacing:-0.053134pt;}
.ws10{word-spacing:0.000000pt;}
.ws28{word-spacing:17.659293pt;}
.ws2a{word-spacing:20.297137pt;}
.ws1{word-spacing:20.722347pt;}
.ws7{word-spacing:23.846639pt;}
.ws0{word-spacing:27.636455pt;}
.ws6{word-spacing:27.842146pt;}
.wsa{word-spacing:37.193707pt;}
.ws62{word-spacing:37.804557pt;}
.ws26{word-spacing:40.445005pt;}
.ws55{word-spacing:55.737426pt;}
.ws5a{word-spacing:65.226667pt;}
.ws31{word-spacing:68.215333pt;}
.ws4f{word-spacing:79.059162pt;}
.ws2c{word-spacing:85.644000pt;}
.ws3f{word-spacing:86.947478pt;}
.wsc{word-spacing:87.511478pt;}
.wse{word-spacing:88.680423pt;}
.ws2b{word-spacing:91.364000pt;}
.ws38{word-spacing:96.275851pt;}
.ws32{word-spacing:99.387975pt;}
.ws43{word-spacing:101.956078pt;}
.ws3d{word-spacing:105.612224pt;}
.ws30{word-spacing:106.912000pt;}
.ws33{word-spacing:108.180327pt;}
.ws40{word-spacing:111.348454pt;}
.ws3b{word-spacing:112.156486pt;}
.wsb{word-spacing:114.078412pt;}
.wsd{word-spacing:115.247357pt;}
.ws44{word-spacing:116.868675pt;}
.ws1c{word-spacing:116.894507pt;}
.ws4b{word-spacing:118.756750pt;}
.ws37{word-spacing:119.060762pt;}
.ws36{word-spacing:120.116804pt;}
.ws4c{word-spacing:120.236809pt;}
.ws61{word-spacing:125.083587pt;}
.ws63{word-spacing:127.797333pt;}
.ws47{word-spacing:133.709348pt;}
.ws3c{word-spacing:133.861354pt;}
.ws4a{word-spacing:134.789391pt;}
.ws42{word-spacing:138.397536pt;}
.ws3e{word-spacing:140.997640pt;}
.ws4e{word-spacing:141.029641pt;}
.ws2e{word-spacing:143.944667pt;}
.ws35{word-spacing:144.917796pt;}
.ws46{word-spacing:150.590023pt;}
.ws1e{word-spacing:155.097757pt;}
.ws49{word-spacing:161.478459pt;}
.ws59{word-spacing:163.306667pt;}
.ws1f{word-spacing:167.637349pt;}
.ws50{word-spacing:177.151086pt;}
.ws1b{word-spacing:197.339181pt;}
.ws1d{word-spacing:214.873357pt;}
.ws12{word-spacing:223.746713pt;}
.ws45{word-spacing:224.784991pt;}
.ws15{word-spacing:237.774053pt;}
.ws17{word-spacing:280.599950pt;}
.ws18{word-spacing:281.290690pt;}
.ws11{word-spacing:282.034564pt;}
.ws39{word-spacing:287.619504pt;}
.ws3a{word-spacing:302.812112pt;}
.ws41{word-spacing:303.788151pt;}
.ws19{word-spacing:310.833120pt;}
.ws16{word-spacing:315.987105pt;}
.ws13{word-spacing:317.474853pt;}
.ws1a{word-spacing:332.246068pt;}
.ws14{word-spacing:342.554038pt;}
.ws5e{word-spacing:401.408000pt;}
.ws48{word-spacing:453.506140pt;}
.ws4d{word-spacing:657.714308pt;}
._59{margin-left:-124.522667pt;}
._5a{margin-left:-7.680000pt;}
._c{margin-left:-5.993540pt;}
._1{margin-left:-4.774404pt;}
._7{margin-left:-3.510657pt;}
._0{margin-left:-2.387202pt;}
._3{margin-left:-1.055895pt;}
._4{width:1.434614pt;}
._2{width:2.387202pt;}
._3f{width:6.288252pt;}
._5{width:14.126827pt;}
._33{width:18.631740pt;}
._6{width:23.265852pt;}
._52{width:24.540203pt;}
._47{width:26.524518pt;}
._44{width:28.356099pt;}
._45{width:30.810861pt;}
._a{width:32.992309pt;}
._b{width:34.579543pt;}
._d{width:36.734341pt;}
._53{width:38.834075pt;}
._46{width:43.782306pt;}
._35{width:52.303333pt;}
._23{width:55.260852pt;}
._1c{width:59.954287pt;}
._56{width:62.474771pt;}
._17{width:65.305041pt;}
._16{width:67.610118pt;}
._1e{width:74.275510pt;}
._14{width:75.509841pt;}
._27{width:77.158984pt;}
._15{width:83.086751pt;}
._28{width:84.564975pt;}
._10{width:86.211349pt;}
._19{width:88.852160pt;}
._f{width:90.741198pt;}
._13{width:94.607779pt;}
._18{width:101.769877pt;}
._2c{width:103.302373pt;}
._34{width:106.166667pt;}
._5c{width:108.213333pt;}
._1b{width:110.413174pt;}
._3a{width:112.318686pt;}
._8{width:114.078412pt;}
._9{width:115.300491pt;}
._12{width:120.040961pt;}
._5b{width:123.444813pt;}
._55{width:124.608000pt;}
._36{width:126.437057pt;}
._3e{width:128.565142pt;}
._3c{width:131.205248pt;}
._37{width:135.805432pt;}
._1a{width:137.901593pt;}
._3d{width:140.525621pt;}
._38{width:144.445778pt;}
._39{width:145.981762pt;}
._54{width:146.986667pt;}
._3b{width:152.038081pt;}
._42{width:160.654426pt;}
._22{width:161.704152pt;}
._1d{width:163.584616pt;}
._51{width:167.371680pt;}
._40{width:168.814752pt;}
._31{width:181.362259pt;}
._11{width:182.640913pt;}
._41{width:194.255623pt;}
._43{width:195.335813pt;}
._2e{width:206.214361pt;}
._4c{width:223.162240pt;}
._24{width:224.900108pt;}
._2f{width:235.252310pt;}
._e{width:242.350213pt;}
._26{width:249.679710pt;}
._25{width:251.078598pt;}
._1f{width:254.121773pt;}
._2d{width:255.275558pt;}
._21{width:257.909816pt;}
._29{width:261.778603pt;}
._32{width:270.585143pt;}
._2a{width:277.336355pt;}
._2b{width:278.817940pt;}
._30{width:284.990222pt;}
._20{width:288.860121pt;}
._50{width:306.848080pt;}
._4f{width:334.743360pt;}
._49{width:390.533920pt;}
._4a{width:418.429200pt;}
._57{width:437.866667pt;}
._4d{width:446.324480pt;}
._58{width:456.576000pt;}
._4e{width:474.219760pt;}
._4b{width:502.115040pt;}
._48{width:613.696160pt;}
.fs3{font-size:29.631695pt;}
.fs6{font-size:32.001280pt;}
.fs5{font-size:34.666667pt;}
.fs9{font-size:42.666667pt;}
.fs4{font-size:52.000000pt;}
.fs2{font-size:53.133867pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:63.761067pt;}
.fs8{font-size:64.000000pt;}
.fsc{font-size:64.003200pt;}
.fsa{font-size:74.666667pt;}
.fsb{font-size:74.670400pt;}
.fs0{font-size:91.815467pt;}
.y20a{bottom:-6.120000pt;}
.y1f9{bottom:-0.120000pt;}
.y0{bottom:0.000000pt;}
.y1df{bottom:1.026667pt;}
.y1fc{bottom:2.426667pt;}
.yc2{bottom:3.195833pt;}
.y120{bottom:4.560182pt;}
.y179{bottom:4.580183pt;}
.y109{bottom:4.620185pt;}
.y204{bottom:5.133333pt;}
.y182{bottom:5.340214pt;}
.y1f2{bottom:6.626667pt;}
.y1e4{bottom:7.466667pt;}
.y1a4{bottom:8.300332pt;}
.yc4{bottom:10.064167pt;}
.yc3{bottom:10.237500pt;}
.y1a3{bottom:10.380415pt;}
.y207{bottom:10.600000pt;}
.y1ed{bottom:11.146667pt;}
.y20d{bottom:11.226667pt;}
.ycc{bottom:11.255833pt;}
.y20f{bottom:11.333333pt;}
.y17d{bottom:11.620465pt;}
.y1a2{bottom:11.780471pt;}
.y101{bottom:12.360494pt;}
.y174{bottom:12.670507pt;}
.y1a5{bottom:12.780511pt;}
.y1f6{bottom:13.333333pt;}
.y21c{bottom:13.573333pt;}
.y1f4{bottom:13.626667pt;}
.y20b{bottom:13.840000pt;}
.y16d{bottom:14.090564pt;}
.y1ea{bottom:15.613333pt;}
.y19c{bottom:16.340654pt;}
.y197{bottom:18.000720pt;}
.yc9{bottom:19.023333pt;}
.y1fa{bottom:19.026667pt;}
.y1a6{bottom:19.940798pt;}
.ybd{bottom:20.280000pt;}
.y1d9{bottom:20.720000pt;}
.y202{bottom:20.853333pt;}
.y1ef{bottom:20.986667pt;}
.y190{bottom:21.020841pt;}
.y195{bottom:23.130925pt;}
.y1fd{bottom:24.746667pt;}
.y218{bottom:24.960000pt;}
.y21f{bottom:24.961248pt;}
.y205{bottom:25.053333pt;}
.y208{bottom:26.560000pt;}
.y1dd{bottom:26.600000pt;}
.yc0{bottom:27.538333pt;}
.y19b{bottom:29.341174pt;}
.y1ff{bottom:30.053333pt;}
.y10e{bottom:30.491220pt;}
.y12f{bottom:31.361254pt;}
.y19f{bottom:31.431257pt;}
.y180{bottom:32.391296pt;}
.y1e7{bottom:32.440000pt;}
.y18a{bottom:33.451338pt;}
.y21b{bottom:33.600000pt;}
.yce{bottom:33.832500pt;}
.y17f{bottom:38.501540pt;}
.y191{bottom:39.021561pt;}
.y16f{bottom:39.041562pt;}
.y18b{bottom:39.891596pt;}
.y186{bottom:42.131685pt;}
.y188{bottom:43.331733pt;}
.y1f0{bottom:43.680000pt;}
.y19a{bottom:46.761870pt;}
.y183{bottom:47.071883pt;}
.y199{bottom:47.501900pt;}
.y19d{bottom:47.711908pt;}
.y194{bottom:47.931917pt;}
.y18c{bottom:48.071923pt;}
.y1ec{bottom:48.160000pt;}
.y11f{bottom:48.401936pt;}
.y1f7{bottom:49.186667pt;}
.y18e{bottom:50.292012pt;}
.y1e8{bottom:50.400000pt;}
.y18f{bottom:50.932037pt;}
.y196{bottom:50.982039pt;}
.y1f1{bottom:51.320000pt;}
.ybb{bottom:51.480000pt;}
.y201{bottom:51.533333pt;}
.y1eb{bottom:51.773333pt;}
.y1e5{bottom:52.120000pt;}
.y1e0{bottom:52.586667pt;}
.y20c{bottom:52.933333pt;}
.yd0{bottom:53.061667pt;}
.y20e{bottom:54.426667pt;}
.y1dc{bottom:54.466667pt;}
.y1f3{bottom:54.973333pt;}
.y1ee{bottom:55.240000pt;}
.y1e6{bottom:55.786667pt;}
.y200{bottom:56.013333pt;}
.y23{bottom:56.149333pt;}
.y1de{bottom:56.306667pt;}
.y206{bottom:56.706667pt;}
.y1e9{bottom:56.786667pt;}
.y1e3{bottom:56.840000pt;}
.y1fe{bottom:56.880000pt;}
.y1f5{bottom:57.040000pt;}
.y1fb{bottom:57.226667pt;}
.y203{bottom:57.333333pt;}
.y1f8{bottom:57.493333pt;}
.y209{bottom:57.613333pt;}
.y17e{bottom:58.722349pt;}
.y127{bottom:60.442418pt;}
.y170{bottom:60.652426pt;}
.y16c{bottom:62.622505pt;}
.y215{bottom:63.360000pt;}
.y221{bottom:63.363168pt;}
.y173{bottom:63.762550pt;}
.y135{bottom:64.262570pt;}
.y185{bottom:64.402576pt;}
.yca{bottom:65.010833pt;}
.y17c{bottom:68.072723pt;}
.yc6{bottom:68.488333pt;}
.y189{bottom:69.212768pt;}
.y1e1{bottom:74.573333pt;}
.y130{bottom:74.882995pt;}
.y178{bottom:79.623185pt;}
.y16b{bottom:79.903196pt;}
.y107{bottom:84.083363pt;}
.y1da{bottom:84.853333pt;}
.y172{bottom:85.133405pt;}
.y111{bottom:86.923477pt;}
.yc1{bottom:87.804167pt;}
.y187{bottom:89.783591pt;}
.y104{bottom:90.873635pt;}
.y181{bottom:90.933637pt;}
.ybc{bottom:91.682500pt;}
.y223{bottom:94.453333pt;}
.yfd{bottom:95.966667pt;}
.y87{bottom:96.000000pt;}
.y113{bottom:98.543942pt;}
.yd3{bottom:99.103333pt;}
.y222{bottom:101.151724pt;}
.y132{bottom:101.844074pt;}
.yeb{bottom:103.810667pt;}
.y108{bottom:103.864154pt;}
.y11d{bottom:104.184167pt;}
.y115{bottom:105.554222pt;}
.yb9{bottom:106.598667pt;}
.y21d{bottom:108.193333pt;}
.yd1{bottom:109.124167pt;}
.y129{bottom:109.444378pt;}
.y10b{bottom:110.804432pt;}
.y86{bottom:111.940000pt;}
.y16a{bottom:112.264490pt;}
.ycf{bottom:112.590833pt;}
.y11e{bottom:112.784511pt;}
.y192{bottom:114.204568pt;}
.y12b{bottom:117.254690pt;}
.ycd{bottom:118.126667pt;}
.y10f{bottom:118.294732pt;}
.yea{bottom:119.750667pt;}
.yb8{bottom:122.538667pt;}
.yc5{bottom:124.290833pt;}
.yc7{bottom:127.129167pt;}
.y85{bottom:127.880000pt;}
.y216{bottom:131.280000pt;}
.y22{bottom:131.812000pt;}
.y102{bottom:135.395416pt;}
.ye9{bottom:135.690667pt;}
.y12a{bottom:136.145446pt;}
.y125{bottom:138.325533pt;}
.yb7{bottom:138.478667pt;}
.yd2{bottom:138.569167pt;}
.y123{bottom:138.995560pt;}
.y16e{bottom:140.375615pt;}
.y168{bottom:141.135645pt;}
.ybe{bottom:142.090000pt;}
.y105{bottom:143.515740pt;}
.y84{bottom:143.820000pt;}
.y176{bottom:143.855754pt;}
.y128{bottom:144.075763pt;}
.y131{bottom:144.438605pt;}
.y12c{bottom:146.705868pt;}
.y116{bottom:147.665906pt;}
.y21{bottom:147.752000pt;}
.y198{bottom:149.695988pt;}
.y177{bottom:151.186047pt;}
.ye8{bottom:151.630667pt;}
.y10a{bottom:153.416136pt;}
.ycb{bottom:153.920000pt;}
.yb6{bottom:154.418667pt;}
.y106{bottom:156.666266pt;}
.yc8{bottom:159.195833pt;}
.y83{bottom:159.760000pt;}
.y133{bottom:160.086403pt;}
.y112{bottom:161.846474pt;}
.y20{bottom:163.692000pt;}
.y220{bottom:163.821524pt;}
.y122{bottom:164.326573pt;}
.y165{bottom:165.036000pt;}
.y117{bottom:166.136645pt;}
.y10c{bottom:167.096684pt;}
.y167{bottom:167.316692pt;}
.ye7{bottom:167.570667pt;}
.y1d8{bottom:168.026667pt;}
.y114{bottom:168.836753pt;}
.y184{bottom:169.436777pt;}
.yb5{bottom:170.360000pt;}
.y12d{bottom:174.486979pt;}
.y82{bottom:175.701333pt;}
.y134{bottom:177.647106pt;}
.y1f{bottom:179.632000pt;}
.y126{bottom:180.937237pt;}
.y164{bottom:180.976000pt;}
.ye6{bottom:183.512000pt;}
.y219{bottom:185.626667pt;}
.yb4{bottom:186.300000pt;}
.y1d7{bottom:187.146667pt;}
.y124{bottom:187.897516pt;}
.y171{bottom:188.147526pt;}
.y10d{bottom:188.467538pt;}
.y169{bottom:189.087563pt;}
.y193{bottom:190.267610pt;}
.y121{bottom:190.327613pt;}
.y175{bottom:190.767630pt;}
.y110{bottom:191.127645pt;}
.y81{bottom:191.641333pt;}
.y1e{bottom:195.573333pt;}
.y163{bottom:196.917333pt;}
.ye5{bottom:199.452000pt;}
.yb3{bottom:202.240000pt;}
.y80{bottom:207.581333pt;}
.y162{bottom:212.857333pt;}
.ye4{bottom:215.392000pt;}
.y1d{bottom:218.154667pt;}
.yb2{bottom:218.180000pt;}
.y7f{bottom:223.521333pt;}
.y161{bottom:228.797333pt;}
.ye3{bottom:231.332000pt;}
.y1c{bottom:234.094667pt;}
.yb1{bottom:234.120000pt;}
.y7e{bottom:239.461333pt;}
.y160{bottom:244.737333pt;}
.ye2{bottom:247.272000pt;}
.y1b{bottom:250.034667pt;}
.yb0{bottom:250.060000pt;}
.y7d{bottom:255.401333pt;}
.y15f{bottom:260.677333pt;}
.ye1{bottom:263.212000pt;}
.y1a{bottom:265.976000pt;}
.yaf{bottom:266.001333pt;}
.y1d4{bottom:268.586667pt;}
.y7c{bottom:271.342667pt;}
.y15e{bottom:276.618667pt;}
.ye0{bottom:279.153333pt;}
.y19{bottom:281.916000pt;}
.yae{bottom:281.941333pt;}
.y7b{bottom:287.282667pt;}
.y1d5{bottom:290.573333pt;}
.y15d{bottom:292.558667pt;}
.ydf{bottom:295.093333pt;}
.y55{bottom:295.324141pt;}
.yad{bottom:297.881333pt;}
.y7a{bottom:303.222667pt;}
.y18{bottom:304.497333pt;}
.y54{bottom:304.510246pt;}
.y1cb{bottom:307.728000pt;}
.y15c{bottom:308.498667pt;}
.yde{bottom:311.033333pt;}
.y53{bottom:313.695607pt;}
.yac{bottom:313.821333pt;}
.y79{bottom:319.162667pt;}
.y119{bottom:319.372774pt;}
.y17{bottom:320.437333pt;}
.y52{bottom:322.881712pt;}
.y15b{bottom:324.438667pt;}
.ydd{bottom:326.973333pt;}
.yab{bottom:329.761333pt;}
.y51{bottom:332.067817pt;}
.y78{bottom:335.102667pt;}
.y1a7{bottom:335.723428pt;}
.y16{bottom:336.378667pt;}
.y21e{bottom:337.950230pt;}
.y1a1{bottom:338.303532pt;}
.y15a{bottom:340.378667pt;}
.y50{bottom:341.253178pt;}
.ydc{bottom:342.913333pt;}
.y1ca{bottom:344.113333pt;}
.yaa{bottom:345.701333pt;}
.y4f{bottom:350.439283pt;}
.y77{bottom:351.042667pt;}
.y12e{bottom:352.274090pt;}
.y15{bottom:352.318667pt;}
.y159{bottom:356.318667pt;}
.y17b{bottom:357.134285pt;}
.ydb{bottom:358.853333pt;}
.y4e{bottom:359.625388pt;}
.y1c9{bottom:360.053333pt;}
.ya9{bottom:361.642667pt;}
.y11a{bottom:362.894515pt;}
.y76{bottom:366.984000pt;}
.y14{bottom:368.258667pt;}
.y4d{bottom:368.810750pt;}
.y3f{bottom:369.572000pt;}
.y158{bottom:372.260000pt;}
.yda{bottom:374.794667pt;}
.y18d{bottom:375.805032pt;}
.y1c8{bottom:375.993333pt;}
.ya8{bottom:377.582667pt;}
.y4c{bottom:377.996855pt;}
.y75{bottom:382.924000pt;}
.y11b{bottom:383.978187pt;}
.y217{bottom:385.933333pt;}
.y4b{bottom:387.182959pt;}
.y157{bottom:388.200000pt;}
.yd9{bottom:390.734667pt;}
.y13{bottom:390.840000pt;}
.y1c7{bottom:391.934667pt;}
.y3e{bottom:393.482667pt;}
.ya7{bottom:393.522667pt;}
.y4a{bottom:396.368321pt;}
.y74{bottom:398.864000pt;}
.y156{bottom:404.140000pt;}
.y49{bottom:405.554426pt;}
.yd8{bottom:406.674667pt;}
.y12{bottom:406.781333pt;}
.y1c6{bottom:407.874667pt;}
.y3d{bottom:409.422667pt;}
.ya6{bottom:409.462667pt;}
.y56{bottom:411.321333pt;}
.y48{bottom:414.740531pt;}
.y73{bottom:414.804000pt;}
.y155{bottom:420.080000pt;}
.yd7{bottom:422.614667pt;}
.y11{bottom:422.721333pt;}
.y1c5{bottom:423.814667pt;}
.y47{bottom:423.925892pt;}
.ya5{bottom:425.402667pt;}
.y72{bottom:430.744000pt;}
.y214{bottom:432.360000pt;}
.y11c{bottom:432.450125pt;}
.y46{bottom:433.111997pt;}
.y154{bottom:436.020000pt;}
.yd6{bottom:438.554667pt;}
.y10{bottom:438.661333pt;}
.y1c4{bottom:439.754667pt;}
.ya4{bottom:441.342667pt;}
.y3c{bottom:441.912000pt;}
.y45{bottom:442.298102pt;}
.y71{bottom:446.685333pt;}
.y213{bottom:448.300000pt;}
.y44{bottom:451.483463pt;}
.y153{bottom:451.960000pt;}
.yd5{bottom:454.494667pt;}
.yf{bottom:454.601333pt;}
.y1c3{bottom:455.694667pt;}
.ya3{bottom:457.284000pt;}
.y43{bottom:460.669568pt;}
.y70{bottom:462.625333pt;}
.y152{bottom:467.901333pt;}
.y42{bottom:469.855673pt;}
.y1c2{bottom:471.634667pt;}
.y212{bottom:472.210667pt;}
.ya2{bottom:473.224000pt;}
.ye{bottom:477.210667pt;}
.y6f{bottom:478.565333pt;}
.y41{bottom:479.041035pt;}
.y151{bottom:483.841333pt;}
.y1d2{bottom:484.449333pt;}
.yd4{bottom:486.984000pt;}
.y3b{bottom:487.066667pt;}
.y1c1{bottom:487.576000pt;}
.y211{bottom:488.150667pt;}
.ya1{bottom:489.164000pt;}
.y6e{bottom:494.505333pt;}
.y150{bottom:499.781333pt;}
.y1d1{bottom:500.390667pt;}
.y40{bottom:501.204000pt;}
.y3a{bottom:503.006667pt;}
.y1c0{bottom:503.516000pt;}
.y210{bottom:504.090667pt;}
.ya0{bottom:505.104000pt;}
.yd{bottom:510.417333pt;}
.y6d{bottom:510.445333pt;}
.y14f{bottom:515.721333pt;}
.y1d0{bottom:516.330667pt;}
.y1bf{bottom:519.456000pt;}
.y9f{bottom:521.044000pt;}
.yc{bottom:526.358667pt;}
.y6c{bottom:526.385333pt;}
.y39{bottom:526.917333pt;}
.y1d3{bottom:528.001333pt;}
.yba{bottom:529.482667pt;}
.y14e{bottom:531.661333pt;}
.y1be{bottom:535.396000pt;}
.y9e{bottom:536.985333pt;}
.y6b{bottom:542.326667pt;}
.y14d{bottom:547.601333pt;}
.y38{bottom:550.828000pt;}
.y1bd{bottom:551.336000pt;}
.y9d{bottom:552.925333pt;}
.y1cf{bottom:553.524000pt;}
.y6a{bottom:558.266667pt;}
.yb{bottom:558.846667pt;}
.y14c{bottom:563.542667pt;}
.yfc{bottom:564.150667pt;}
.y37{bottom:566.768000pt;}
.y1bc{bottom:567.276000pt;}
.y9c{bottom:568.865333pt;}
.y1ce{bottom:569.464000pt;}
.y69{bottom:574.206667pt;}
.y14b{bottom:579.482667pt;}
.yfb{bottom:580.090667pt;}
.y36{bottom:582.708000pt;}
.y1bb{bottom:583.217333pt;}
.y9b{bottom:584.805333pt;}
.y1cd{bottom:585.404000pt;}
.y68{bottom:590.146667pt;}
.y14a{bottom:595.422667pt;}
.yfa{bottom:596.032000pt;}
.y35{bottom:598.648000pt;}
.y1ba{bottom:599.157333pt;}
.y9a{bottom:600.745333pt;}
.y1cc{bottom:601.345333pt;}
.y67{bottom:606.086667pt;}
.yfe{bottom:607.384294pt;}
.ybf{bottom:609.042667pt;}
.y1e2{bottom:609.281333pt;}
.y149{bottom:611.362667pt;}
.yf9{bottom:611.972000pt;}
.y1b9{bottom:615.097333pt;}
.y99{bottom:616.685333pt;}
.ya{bottom:617.285333pt;}
.y166{bottom:620.684826pt;}
.y66{bottom:622.026667pt;}
.yff{bottom:624.414976pt;}
.y21a{bottom:625.921333pt;}
.y148{bottom:627.302667pt;}
.yf8{bottom:627.912000pt;}
.y118{bottom:627.925116pt;}
.y1b8{bottom:631.037333pt;}
.y98{bottom:632.626667pt;}
.y65{bottom:637.968000pt;}
.y17a{bottom:642.645705pt;}
.y147{bottom:643.244000pt;}
.yf7{bottom:643.852000pt;}
.y19e{bottom:645.145805pt;}
.y34{bottom:646.630667pt;}
.y1b7{bottom:646.977333pt;}
.y97{bottom:648.566667pt;}
.y64{bottom:653.908000pt;}
.y9{bottom:654.478667pt;}
.y146{bottom:659.184000pt;}
.yf6{bottom:659.792000pt;}
.y33{bottom:662.570667pt;}
.y1b6{bottom:662.918667pt;}
.y1a0{bottom:663.816552pt;}
.y96{bottom:664.506667pt;}
.y63{bottom:669.848000pt;}
.y8{bottom:670.418667pt;}
.y100{bottom:671.989707pt;}
.y145{bottom:675.124000pt;}
.yf5{bottom:675.732000pt;}
.y32{bottom:678.512000pt;}
.y1b5{bottom:678.858667pt;}
.y95{bottom:680.446667pt;}
.y62{bottom:685.788000pt;}
.y7{bottom:686.360000pt;}
.y144{bottom:691.064000pt;}
.yf4{bottom:691.673333pt;}
.y31{bottom:694.452000pt;}
.y1b4{bottom:694.798667pt;}
.y94{bottom:696.386667pt;}
.y61{bottom:701.728000pt;}
.y6{bottom:702.300000pt;}
.y143{bottom:707.004000pt;}
.yf3{bottom:707.613333pt;}
.y30{bottom:710.392000pt;}
.y1b3{bottom:710.738667pt;}
.y93{bottom:712.326667pt;}
.y103{bottom:720.461645pt;}
.y142{bottom:722.944000pt;}
.yf2{bottom:723.553333pt;}
.y5{bottom:726.210667pt;}
.y1b2{bottom:726.678667pt;}
.y92{bottom:728.268000pt;}
.y2f{bottom:732.973333pt;}
.y60{bottom:734.216000pt;}
.y141{bottom:738.885333pt;}
.yf1{bottom:739.493333pt;}
.y1b1{bottom:742.618667pt;}
.y1d6{bottom:744.001333pt;}
.y91{bottom:744.208000pt;}
.y2e{bottom:748.914667pt;}
.y4{bottom:750.120000pt;}
.y140{bottom:754.825333pt;}
.yf0{bottom:755.433333pt;}
.y1b0{bottom:758.560000pt;}
.y90{bottom:760.148000pt;}
.y2d{bottom:764.854667pt;}
.y13f{bottom:770.765333pt;}
.yef{bottom:771.373333pt;}
.y1af{bottom:774.500000pt;}
.y5f{bottom:776.709333pt;}
.y2c{bottom:780.794667pt;}
.y13e{bottom:786.705333pt;}
.yee{bottom:787.314667pt;}
.y8f{bottom:792.637333pt;}
.y2b{bottom:796.734667pt;}
.y13d{bottom:802.645333pt;}
.yed{bottom:803.254667pt;}
.y3{bottom:807.240000pt;}
.y1ae{bottom:810.885333pt;}
.y5e{bottom:813.892000pt;}
.y13c{bottom:818.585333pt;}
.yec{bottom:819.194667pt;}
.y2a{bottom:819.317333pt;}
.y1db{bottom:825.281333pt;}
.y1ad{bottom:826.825333pt;}
.y5d{bottom:829.833333pt;}
.y13b{bottom:834.526667pt;}
.y8e{bottom:835.134667pt;}
.y29{bottom:835.257333pt;}
.y1ac{bottom:842.765333pt;}
.y2{bottom:844.433333pt;}
.y5c{bottom:845.773333pt;}
.y13a{bottom:850.466667pt;}
.y8d{bottom:851.074667pt;}
.y28{bottom:851.197333pt;}
.y1ab{bottom:858.705333pt;}
.y5b{bottom:861.713333pt;}
.y139{bottom:866.406667pt;}
.y8c{bottom:867.014667pt;}
.y27{bottom:867.137333pt;}
.y5a{bottom:877.653333pt;}
.y138{bottom:882.346667pt;}
.y1aa{bottom:882.481333pt;}
.y8b{bottom:882.956000pt;}
.y26{bottom:883.077333pt;}
.y1{bottom:890.925333pt;}
.y59{bottom:893.593333pt;}
.y137{bottom:898.286667pt;}
.y1a9{bottom:898.421333pt;}
.y8a{bottom:898.896000pt;}
.y25{bottom:905.686667pt;}
.y58{bottom:909.533333pt;}
.y136{bottom:914.226667pt;}
.y1a8{bottom:914.362667pt;}
.y89{bottom:914.836000pt;}
.y88{bottom:930.776000pt;}
.y24{bottom:937.565333pt;}
.y57{bottom:946.716000pt;}
.h7{height:22.223771pt;}
.he{height:33.376335pt;}
.hc{height:36.156250pt;}
.h4{height:36.874903pt;}
.h8{height:37.193707pt;}
.h12{height:38.856554pt;}
.h3{height:39.850400pt;}
.h2{height:44.250180pt;}
.h1a{height:44.500000pt;}
.h5{height:44.632747pt;}
.h13{height:45.456818pt;}
.h14{height:47.776911pt;}
.h1f{height:53.726667pt;}
.ha{height:54.234375pt;}
.h1c{height:54.260000pt;}
.h16{height:55.625000pt;}
.h1{height:64.913535pt;}
.h18{height:66.750000pt;}
.h25{height:66.753338pt;}
.h11{height:67.777711pt;}
.h19{height:69.386667pt;}
.h1b{height:76.980000pt;}
.h21{height:77.875000pt;}
.h24{height:77.878894pt;}
.h20{height:88.446667pt;}
.h1e{height:97.033333pt;}
.h1d{height:98.366667pt;}
.hb{height:168.480000pt;}
.h10{height:200.568022pt;}
.h17{height:216.000000pt;}
.h22{height:255.360000pt;}
.hf{height:288.011520pt;}
.h9{height:312.000000pt;}
.h23{height:384.019200pt;}
.h15{height:432.000000pt;}
.h6{height:816.000000pt;}
.hd{height:864.034560pt;}
.h0{height:1056.000000pt;}
.w8{width:213.200000pt;}
.w4{width:215.280000pt;}
.w7{width:229.089163pt;}
.w6{width:288.011520pt;}
.w3{width:312.000000pt;}
.wa{width:384.019200pt;}
.w9{width:504.960000pt;}
.w5{width:576.023040pt;}
.w2{width:624.000000pt;}
.w0{width:816.000000pt;}
.w1{width:1056.000000pt;}
.x68{left:-9.173333pt;}
.x1a{left:-6.608333pt;}
.x31{left:-4.980199pt;}
.x5d{left:-3.850154pt;}
.x49{left:-2.730109pt;}
.x56{left:-0.930037pt;}
.x0{left:0.000000pt;}
.x62{left:1.280051pt;}
.x5a{left:2.770111pt;}
.x18{left:7.009167pt;}
.x2a{left:8.550342pt;}
.x63{left:10.450418pt;}
.x11{left:14.040000pt;}
.x4b{left:15.300612pt;}
.x4c{left:17.060682pt;}
.x14{left:19.510833pt;}
.x64{left:21.010840pt;}
.x2c{left:22.690908pt;}
.x22{left:23.865833pt;}
.x3a{left:26.071043pt;}
.x28{left:27.561102pt;}
.x21{left:29.141667pt;}
.x57{left:33.521341pt;}
.x4f{left:35.311412pt;}
.x48{left:37.071483pt;}
.x39{left:38.111524pt;}
.x3e{left:39.991600pt;}
.xf{left:45.240000pt;}
.x67{left:46.213333pt;}
.xd{left:56.149333pt;}
.x55{left:59.392376pt;}
.x58{left:60.432417pt;}
.x60{left:63.352534pt;}
.x61{left:64.792592pt;}
.x42{left:66.962678pt;}
.x27{left:67.892716pt;}
.x4a{left:69.202768pt;}
.xe{left:70.915000pt;}
.x6e{left:72.960000pt;}
.x23{left:76.255833pt;}
.x2d{left:77.553102pt;}
.x37{left:79.083163pt;}
.x35{left:84.123365pt;}
.x32{left:85.983439pt;}
.x38{left:88.983559pt;}
.x1f{left:90.620833pt;}
.x43{left:93.913756pt;}
.x4{left:96.000000pt;}
.x34{left:98.313932pt;}
.x13{left:99.959167pt;}
.xc{left:102.913745pt;}
.x1d{left:104.769167pt;}
.x1b{left:106.849167pt;}
.x20{left:107.856667pt;}
.x4d{left:110.184407pt;}
.x40{left:113.584543pt;}
.x50{left:116.354654pt;}
.x54{left:118.174727pt;}
.x15{left:119.838333pt;}
.x6d{left:121.706667pt;}
.x30{left:123.494940pt;}
.x2e{left:126.885075pt;}
.x19{left:128.732500pt;}
.x6c{left:129.706667pt;}
.x2b{left:134.971559pt;}
.x16{left:139.165000pt;}
.x29{left:140.145606pt;}
.x45{left:147.355894pt;}
.x10{left:149.890000pt;}
.x17{left:154.960000pt;}
.x1c{left:157.235000pt;}
.x3f{left:158.196328pt;}
.x12{left:159.960000pt;}
.x69{left:161.333333pt;}
.x5c{left:164.836593pt;}
.x1e{left:168.815833pt;}
.x36{left:172.796912pt;}
.x71{left:174.720000pt;}
.xb{left:176.673245pt;}
.x44{left:178.567142pt;}
.x41{left:179.777191pt;}
.x46{left:180.677227pt;}
.x4e{left:181.877275pt;}
.x65{left:184.687387pt;}
.x33{left:190.007600pt;}
.x5b{left:199.247970pt;}
.x2f{left:205.258210pt;}
.x59{left:206.268250pt;}
.x52{left:207.548302pt;}
.x5f{left:209.698388pt;}
.x6f{left:216.826667pt;}
.x72{left:231.666667pt;}
.x1{left:250.410667pt;}
.x7{left:289.232000pt;}
.x5{left:298.945333pt;}
.x70{left:309.866667pt;}
.x3c{left:315.572622pt;}
.x51{left:324.462978pt;}
.x47{left:331.543261pt;}
.x9{left:338.242667pt;}
.x5e{left:348.363934pt;}
.x3b{left:353.034121pt;}
.x25{left:357.240000pt;}
.x6a{left:358.213333pt;}
.x2{left:368.658667pt;}
.x3{left:371.581333pt;}
.x66{left:372.534901pt;}
.x3d{left:384.011520pt;}
.xa{left:395.884000pt;}
.x24{left:396.825000pt;}
.x53{left:401.358667pt;}
.x6{left:404.678667pt;}
.x26{left:408.000000pt;}
.x8{left:447.869333pt;}
.x6b{left:473.333333pt;}
}




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