
    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_be7a0b112139ab84818bf87d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_15a15bc09de6d2eebbedabda.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_517cf1df274dc8b4bde8cda9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936523;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_bf29130fdc3f332779b4196d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972656;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_a1c840d7b8864452b1156501.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936523;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_28f19b9af632d1bb7749dff4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cba49cc2285962ef443fe986.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_cd29a4725eea323ea2209d2c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.080566;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_4e8175a97dd54280cc410ac7.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7459df894c32ef5d967a7f47.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.049805;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_22f2f088c8442eeaaba395a7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.972656;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_afba8998c091a8eeb131bed5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.128906;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_6a61808df4d722d21900e408.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_404c969039e3bba6b0dda55c.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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_1f83532f108fece8f815be23.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.955078;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_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;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);}
.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);}
.v1{vertical-align:-79.920000px;}
.v0{vertical-align:0.000000px;}
.ls5a{letter-spacing:-1.134000px;}
.ls28{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-0.666000px;}
.ls42{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.450600px;}
.ls5d{letter-spacing:-0.413400px;}
.lse{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.303600px;}
.ls37{letter-spacing:-0.291600px;}
.ls64{letter-spacing:-0.269400px;}
.ls61{letter-spacing:-0.256800px;}
.ls2a{letter-spacing:-0.201600px;}
.ls62{letter-spacing:-0.188400px;}
.ls31{letter-spacing:-0.177600px;}
.ls44{letter-spacing:-0.129600px;}
.ls29{letter-spacing:-0.089400px;}
.lsf{letter-spacing:-0.053280px;}
.lsc{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.018000px;}
.ls5f{letter-spacing:0.033840px;}
.ls3{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.131040px;}
.lsb{letter-spacing:0.180000px;}
.ls53{letter-spacing:0.206400px;}
.ls63{letter-spacing:0.256800px;}
.ls24{letter-spacing:0.259800px;}
.ls2b{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.276480px;}
.ls4{letter-spacing:0.298800px;}
.ls5e{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.316800px;}
.ls6{letter-spacing:0.360000px;}
.ls43{letter-spacing:0.428400px;}
.ls27{letter-spacing:0.513600px;}
.ls60{letter-spacing:0.548400px;}
.ls1f{letter-spacing:0.593400px;}
.ls5c{letter-spacing:0.666000px;}
.ls5b{letter-spacing:0.828000px;}
.ls34{letter-spacing:0.900000px;}
.ls1d{letter-spacing:0.924000px;}
.ls49{letter-spacing:1.080000px;}
.ls1e{letter-spacing:1.620000px;}
.ls33{letter-spacing:1.800000px;}
.ls22{letter-spacing:2.340000px;}
.ls35{letter-spacing:3.060000px;}
.ls50{letter-spacing:3.780000px;}
.ls16{letter-spacing:4.500000px;}
.ls15{letter-spacing:5.220000px;}
.ls54{letter-spacing:5.940000px;}
.ls4f{letter-spacing:6.660000px;}
.ls1a{letter-spacing:7.380000px;}
.ls19{letter-spacing:8.100000px;}
.ls3b{letter-spacing:8.280000px;}
.ls1b{letter-spacing:8.706720px;}
.ls2c{letter-spacing:8.820000px;}
.ls14{letter-spacing:9.540000px;}
.ls45{letter-spacing:9.720000px;}
.ls18{letter-spacing:10.440000px;}
.ls4e{letter-spacing:10.980000px;}
.ls4c{letter-spacing:11.700000px;}
.ls4b{letter-spacing:12.420000px;}
.ls21{letter-spacing:13.140000px;}
.ls20{letter-spacing:13.860000px;}
.ls2d{letter-spacing:14.580000px;}
.ls4a{letter-spacing:15.066720px;}
.ls1c{letter-spacing:15.300000px;}
.ls2f{letter-spacing:15.948000px;}
.ls3f{letter-spacing:16.020000px;}
.ls3a{letter-spacing:17.460000px;}
.ls25{letter-spacing:18.180000px;}
.ls40{letter-spacing:18.300000px;}
.ls47{letter-spacing:18.360000px;}
.ls26{letter-spacing:18.900000px;}
.ls8{letter-spacing:19.620000px;}
.ls55{letter-spacing:21.780000px;}
.ls38{letter-spacing:22.500000px;}
.ls7{letter-spacing:23.940000px;}
.ls39{letter-spacing:24.660000px;}
.ls23{letter-spacing:26.820000px;}
.ls36{letter-spacing:27.540000px;}
.ls48{letter-spacing:28.260000px;}
.ls59{letter-spacing:28.980000px;}
.ls3e{letter-spacing:29.160000px;}
.ls3c{letter-spacing:31.860000px;}
.ls9{letter-spacing:33.300000px;}
.ls41{letter-spacing:34.014240px;}
.ls57{letter-spacing:34.920000px;}
.lsa{letter-spacing:35.460000px;}
.ls4d{letter-spacing:36.900000px;}
.ls51{letter-spacing:37.080000px;}
.ls56{letter-spacing:39.060000px;}
.ls52{letter-spacing:39.960000px;}
.ls30{letter-spacing:40.500000px;}
.ls46{letter-spacing:44.562720px;}
.ls2e{letter-spacing:44.820000px;}
.ls58{letter-spacing:46.440000px;}
.ls3d{letter-spacing:49.860000px;}
.ls17{letter-spacing:84.420000px;}
.ls5{letter-spacing:104.580000px;}
.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;}
}
.wsd{word-spacing:-72.000000px;}
.ws10{word-spacing:-59.760000px;}
.ws18{word-spacing:-54.000000px;}
.ws3{word-spacing:-16.280640px;}
.ws1e{word-spacing:-16.020000px;}
.wsf{word-spacing:-15.864000px;}
.ws22{word-spacing:-15.768000px;}
.ws23{word-spacing:-15.606000px;}
.ws12{word-spacing:-15.453600px;}
.ws1c{word-spacing:-15.368400px;}
.ws8{word-spacing:-15.300000px;}
.ws1f{word-spacing:-15.238800px;}
.ws11{word-spacing:-15.199800px;}
.ws20{word-spacing:-15.146400px;}
.ws5{word-spacing:-15.120000px;}
.wsb{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.993280px;}
.wsc{word-spacing:-14.940000px;}
.ws1b{word-spacing:-14.886720px;}
.ws1d{word-spacing:-14.810400px;}
.ws17{word-spacing:-14.762400px;}
.ws1a{word-spacing:-14.648400px;}
.ws6{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.400000px;}
.ws7{word-spacing:-14.274000px;}
.ws13{word-spacing:-13.860000px;}
.ws21{word-spacing:-13.806000px;}
.ws19{word-spacing:-13.500000px;}
.ws24{word-spacing:-13.328400px;}
.ws28{word-spacing:-13.140000px;}
.ws25{word-spacing:-12.780000px;}
.ws29{word-spacing:-12.591600px;}
.ws26{word-spacing:-12.523200px;}
.ws27{word-spacing:-12.420000px;}
.wsa{word-spacing:-12.060000px;}
.ws2a{word-spacing:-11.790600px;}
.ws0{word-spacing:-11.625840px;}
.ws14{word-spacing:-10.440000px;}
.ws15{word-spacing:-10.238400px;}
.ws2{word-spacing:-10.064160px;}
.ws1{word-spacing:-9.760560px;}
.ws16{word-spacing:-9.000000px;}
.wse{word-spacing:0.000000px;}
._31{margin-left:-455.512080px;}
._18{margin-left:-4.011120px;}
._e{margin-left:-2.745360px;}
._1{margin-left:-1.153440px;}
._0{width:1.041360px;}
._2{width:2.113440px;}
._4{width:3.115200px;}
._7{width:4.968720px;}
._8{width:6.073920px;}
._b{width:7.477200px;}
._20{width:8.874000px;}
._10{width:10.029600px;}
._19{width:11.697600px;}
._13{width:13.217760px;}
._33{width:15.266640px;}
._12{width:16.498080px;}
._2b{width:17.629200px;}
._21{width:18.704880px;}
._d{width:20.160000px;}
._2e{width:21.182880px;}
._14{width:22.365360px;}
._6{width:23.444640px;}
._3{width:24.843600px;}
._1d{width:26.157120px;}
._c{width:27.738000px;}
._2a{width:28.760160px;}
._34{width:29.838960px;}
._2c{width:30.895920px;}
._15{width:32.191680px;}
._f{width:33.329520px;}
._1e{width:35.289840px;}
._1a{width:36.684000px;}
._5{width:38.016000px;}
._1b{width:39.083040px;}
._1c{width:40.278240px;}
._27{width:41.325840px;}
._9{width:43.174800px;}
._a{width:44.468640px;}
._1f{width:46.134720px;}
._25{width:47.509200px;}
._16{width:49.566480px;}
._23{width:50.710800px;}
._2f{width:52.529040px;}
._26{width:54.262080px;}
._30{width:56.491680px;}
._24{width:57.512160px;}
._11{width:58.537200px;}
._38{width:59.649360px;}
._35{width:60.656400px;}
._32{width:62.090640px;}
._3a{width:64.242000px;}
._17{width:68.100960px;}
._29{width:69.355920px;}
._39{width:71.865840px;}
._3b{width:76.074480px;}
._37{width:78.285600px;}
._2d{width:82.264080px;}
._22{width:83.305440px;}
._28{width:84.671520px;}
._36{width:91.373040px;}
.fc3{color:transparent;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,0);}
.fsa{font-size:5.760000px;}
.fs6{font-size:18.000000px;}
.fs4{font-size:36.000000px;}
.fs1{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs8{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs9{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y74{bottom:1.980000px;}
.y222{bottom:2.700000px;}
.y169{bottom:2.880000px;}
.y197{bottom:3.060000px;}
.y70{bottom:4.140000px;}
.y3{bottom:4.320000px;}
.y2{bottom:5.940000px;}
.y7{bottom:6.300000px;}
.y72{bottom:7.200000px;}
.y176{bottom:10.620000px;}
.y19e{bottom:10.650000px;}
.y196{bottom:10.800000px;}
.y22c{bottom:11.880000px;}
.y73{bottom:12.240000px;}
.y130{bottom:13.470000px;}
.y1dc{bottom:16.275000px;}
.y221{bottom:17.460000px;}
.y17d{bottom:18.360000px;}
.y19f{bottom:18.390000px;}
.y170{bottom:18.405000px;}
.y194{bottom:18.540000px;}
.y143{bottom:23.115000px;}
.y181{bottom:26.100000px;}
.y175{bottom:26.145000px;}
.y152{bottom:29.775000px;}
.y220{bottom:32.040000px;}
.y8{bottom:32.940000px;}
.y191{bottom:33.840000px;}
.y17c{bottom:34.920000px;}
.y16f{bottom:34.965000px;}
.y180{bottom:42.660000px;}
.y174{bottom:42.705000px;}
.y14e{bottom:43.995000px;}
.y21f{bottom:46.620000px;}
.y226{bottom:46.800000px;}
.y13b{bottom:48.030000px;}
.y6{bottom:48.600000px;}
.y17b{bottom:50.400000px;}
.y16e{bottom:50.445000px;}
.y15d{bottom:58.035000px;}
.y173{bottom:58.185000px;}
.y17f{bottom:59.220000px;}
.y145{bottom:59.250000px;}
.y13a{bottom:60.270000px;}
.y1db{bottom:63.870000px;}
.y16d{bottom:65.925000px;}
.y17a{bottom:66.960000px;}
.y13c{bottom:66.990000px;}
.y168{bottom:70.455000px;}
.y144{bottom:71.490000px;}
.y149{bottom:72.075000px;}
.y155{bottom:72.255000px;}
.y5{bottom:72.900000px;}
.y17e{bottom:74.700000px;}
.y172{bottom:74.745000px;}
.y179{bottom:82.440000px;}
.y16c{bottom:82.485000px;}
.y159{bottom:86.475000px;}
.y22e{bottom:86.940000px;}
.y22d{bottom:88.920000px;}
.y171{bottom:90.225000px;}
.y22b{bottom:90.360000px;}
.y20c{bottom:92.880000px;}
.y11a{bottom:94.320000px;}
.y18c{bottom:95.580000px;}
.yba{bottom:97.020000px;}
.y142{bottom:97.380000px;}
.y6e{bottom:97.740000px;}
.y16b{bottom:97.965000px;}
.y1bb{bottom:100.440000px;}
.y4d{bottom:100.980000px;}
.y1d5{bottom:102.060000px;}
.yac{bottom:102.420000px;}
.y146{bottom:104.145000px;}
.yf5{bottom:106.920000px;}
.y20b{bottom:110.160000px;}
.y119{bottom:111.420000px;}
.y1da{bottom:111.450000px;}
.y18b{bottom:112.860000px;}
.yb9{bottom:114.300000px;}
.y4c{bottom:114.840000px;}
.y6d{bottom:115.020000px;}
.y127{bottom:115.530000px;}
.y13e{bottom:116.640000px;}
.y1ba{bottom:117.720000px;}
.y1cf{bottom:118.260000px;}
.y125{bottom:119.160000px;}
.y1d4{bottom:119.340000px;}
.yab{bottom:119.700000px;}
.y21c{bottom:120.420000px;}
.yf4{bottom:124.200000px;}
.y22a{bottom:125.460000px;}
.y20a{bottom:127.440000px;}
.y4b{bottom:128.520000px;}
.y118{bottom:128.700000px;}
.y13d{bottom:128.880000px;}
.y147{bottom:129.030000px;}
.y18a{bottom:129.960000px;}
.yb8{bottom:131.580000px;}
.y6c{bottom:132.120000px;}
.y1b9{bottom:134.820000px;}
.y1ce{bottom:135.540000px;}
.y124{bottom:136.440000px;}
.y1d3{bottom:136.620000px;}
.yaa{bottom:136.980000px;}
.y21b{bottom:137.700000px;}
.y229{bottom:139.860000px;}
.y139{bottom:141.270000px;}
.yf3{bottom:141.480000px;}
.y4a{bottom:142.380000px;}
.y209{bottom:144.540000px;}
.y128{bottom:144.720000px;}
.y117{bottom:145.980000px;}
.y189{bottom:147.240000px;}
.yb7{bottom:148.860000px;}
.y6b{bottom:149.400000px;}
.y1b8{bottom:152.100000px;}
.y1cd{bottom:152.640000px;}
.y123{bottom:153.720000px;}
.y1d2{bottom:153.900000px;}
.ya9{bottom:154.260000px;}
.y21a{bottom:154.980000px;}
.y136{bottom:155.595000px;}
.y12f{bottom:155.805000px;}
.y49{bottom:156.240000px;}
.y228{bottom:157.140000px;}
.y164{bottom:157.395000px;}
.yf2{bottom:158.760000px;}
.y1d9{bottom:159.045000px;}
.y208{bottom:161.820000px;}
.y116{bottom:163.260000px;}
.y188{bottom:164.520000px;}
.y6a{bottom:166.680000px;}
.yb6{bottom:167.220000px;}
.y122{bottom:167.760000px;}
.y137{bottom:168.660000px;}
.y1b7{bottom:169.380000px;}
.y48{bottom:169.920000px;}
.y1d1{bottom:171.000000px;}
.ya8{bottom:171.540000px;}
.y219{bottom:172.260000px;}
.y129{bottom:173.880000px;}
.y227{bottom:174.420000px;}
.yf1{bottom:176.040000px;}
.y207{bottom:179.100000px;}
.y135{bottom:179.385000px;}
.y115{bottom:180.540000px;}
.y187{bottom:181.800000px;}
.y47{bottom:183.810000px;}
.y69{bottom:183.990000px;}
.yb5{bottom:184.530000px;}
.y1b6{bottom:186.690000px;}
.y1cc{bottom:187.230000px;}
.y1d0{bottom:188.310000px;}
.y225{bottom:188.490000px;}
.ya7{bottom:188.670000px;}
.y218{bottom:189.570000px;}
.yf0{bottom:193.170000px;}
.y206{bottom:196.410000px;}
.y46{bottom:197.670000px;}
.y186{bottom:199.110000px;}
.y68{bottom:201.270000px;}
.yb4{bottom:201.630000px;}
.y140{bottom:202.470000px;}
.y12a{bottom:203.070000px;}
.y134{bottom:203.190000px;}
.y1b5{bottom:203.970000px;}
.y1cb{bottom:205.590000px;}
.ya6{bottom:205.950000px;}
.y1d8{bottom:206.610000px;}
.y217{bottom:206.670000px;}
.yef{bottom:210.450000px;}
.y45{bottom:211.350000px;}
.y205{bottom:213.690000px;}
.y13f{bottom:214.530000px;}
.y114{bottom:214.950000px;}
.y185{bottom:216.390000px;}
.y67{bottom:218.370000px;}
.yb3{bottom:219.990000px;}
.y1b4{bottom:221.250000px;}
.y141{bottom:222.270000px;}
.y1ca{bottom:222.870000px;}
.ya5{bottom:223.230000px;}
.y216{bottom:223.950000px;}
.y44{bottom:225.210000px;}
.y138{bottom:226.770000px;}
.y133{bottom:226.980000px;}
.yee{bottom:227.730000px;}
.y204{bottom:230.970000px;}
.y113{bottom:232.230000px;}
.y12b{bottom:232.275000px;}
.y184{bottom:233.490000px;}
.y66{bottom:235.650000px;}
.yb2{bottom:238.350000px;}
.y43{bottom:239.070000px;}
.y1c9{bottom:240.150000px;}
.ya4{bottom:240.510000px;}
.y215{bottom:241.230000px;}
.yed{bottom:245.010000px;}
.y224{bottom:247.170000px;}
.y203{bottom:248.070000px;}
.y112{bottom:249.510000px;}
.y132{bottom:250.770000px;}
.y42{bottom:252.750000px;}
.y65{bottom:252.930000px;}
.y1d7{bottom:254.190000px;}
.yb1{bottom:255.630000px;}
.y1c8{bottom:257.430000px;}
.ya3{bottom:257.790000px;}
.y214{bottom:258.510000px;}
.y12c{bottom:261.435000px;}
.y223{bottom:261.750000px;}
.yec{bottom:262.290000px;}
.y202{bottom:265.350000px;}
.y41{bottom:266.610000px;}
.y111{bottom:266.790000px;}
.y183{bottom:268.050000px;}
.y64{bottom:270.210000px;}
.y1b3{bottom:272.910000px;}
.yb0{bottom:273.990000px;}
.y1c7{bottom:274.530000px;}
.y131{bottom:274.575000px;}
.ya2{bottom:275.070000px;}
.y213{bottom:275.790000px;}
.y21e{bottom:276.510000px;}
.yeb{bottom:279.570000px;}
.y40{bottom:280.470000px;}
.y201{bottom:282.630000px;}
.y110{bottom:284.070000px;}
.y182{bottom:285.330000px;}
.y63{bottom:287.490000px;}
.y1b2{bottom:290.190000px;}
.y12d{bottom:290.625000px;}
.yaf{bottom:291.090000px;}
.y1c6{bottom:291.810000px;}
.ya1{bottom:292.170000px;}
.y212{bottom:293.070000px;}
.y3f{bottom:294.150000px;}
.yea{bottom:296.670000px;}
.y200{bottom:299.910000px;}
.y178{bottom:300.090000px;}
.y10f{bottom:301.170000px;}
.y62{bottom:304.770000px;}
.y1b1{bottom:307.470000px;}
.y3e{bottom:308.010000px;}
.y1c5{bottom:309.090000px;}
.ya0{bottom:309.450000px;}
.y211{bottom:310.170000px;}
.ye9{bottom:313.950000px;}
.y1ff{bottom:317.190000px;}
.y10e{bottom:318.450000px;}
.y12e{bottom:319.830000px;}
.y3d{bottom:321.870000px;}
.y1b0{bottom:324.750000px;}
.y1c4{bottom:326.370000px;}
.y9f{bottom:326.730000px;}
.y210{bottom:327.450000px;}
.ye8{bottom:331.230000px;}
.y1fe{bottom:334.470000px;}
.y21d{bottom:335.010000px;}
.y3c{bottom:335.550000px;}
.y10d{bottom:335.730000px;}
.y61{bottom:339.150000px;}
.y1af{bottom:341.850000px;}
.y1c3{bottom:343.650000px;}
.y9e{bottom:344.010000px;}
.y20f{bottom:344.730000px;}
.ye7{bottom:348.510000px;}
.y3b{bottom:349.410000px;}
.y1fd{bottom:351.570000px;}
.y10c{bottom:353.010000px;}
.y60{bottom:356.430000px;}
.y1ae{bottom:359.130000px;}
.y1c2{bottom:360.930000px;}
.y9d{bottom:361.290000px;}
.y20e{bottom:362.010000px;}
.y3a{bottom:363.270000px;}
.ye6{bottom:365.790000px;}
.y1fc{bottom:368.850000px;}
.y10b{bottom:370.290000px;}
.y5f{bottom:373.710000px;}
.y1ad{bottom:376.410000px;}
.y39{bottom:376.950000px;}
.y1c1{bottom:378.030000px;}
.y9c{bottom:378.570000px;}
.ye5{bottom:383.070000px;}
.y1fb{bottom:386.130000px;}
.y10a{bottom:387.570000px;}
.y38{bottom:390.810000px;}
.y5e{bottom:390.990000px;}
.y1ac{bottom:393.690000px;}
.y1c0{bottom:395.310000px;}
.y9b{bottom:395.670000px;}
.y177{bottom:396.930000px;}
.ye4{bottom:400.170000px;}
.y1fa{bottom:403.410000px;}
.y37{bottom:404.670000px;}
.y5d{bottom:408.270000px;}
.y20d{bottom:409.170000px;}
.y1ab{bottom:410.970000px;}
.y1bf{bottom:412.590000px;}
.y9a{bottom:412.950000px;}
.y16a{bottom:413.130000px;}
.y121{bottom:414.030000px;}
.ye3{bottom:417.450000px;}
.y36{bottom:418.350000px;}
.y1f9{bottom:420.690000px;}
.y109{bottom:421.950000px;}
.y5c{bottom:425.415000px;}
.y1aa{bottom:428.295000px;}
.y1be{bottom:429.915000px;}
.y99{bottom:430.275000px;}
.y120{bottom:431.355000px;}
.y35{bottom:432.255000px;}
.ye2{bottom:434.775000px;}
.y1f8{bottom:437.835000px;}
.y108{bottom:439.275000px;}
.y5b{bottom:442.695000px;}
.y1a9{bottom:445.395000px;}
.y34{bottom:446.115000px;}
.y1bd{bottom:447.195000px;}
.y98{bottom:447.555000px;}
.y11f{bottom:448.635000px;}
.ye1{bottom:452.055000px;}
.y163{bottom:453.600000px;}
.y1f7{bottom:455.115000px;}
.y107{bottom:456.555000px;}
.y33{bottom:459.795000px;}
.y5a{bottom:459.975000px;}
.y1a8{bottom:462.675000px;}
.y97{bottom:464.835000px;}
.y11e{bottom:465.735000px;}
.ye0{bottom:469.335000px;}
.y1bc{bottom:469.695000px;}
.y1d6{bottom:469.800000px;}
.y32{bottom:473.655000px;}
.y106{bottom:473.835000px;}
.y59{bottom:477.255000px;}
.y1a7{bottom:479.955000px;}
.y96{bottom:481.935000px;}
.y11d{bottom:483.015000px;}
.ydf{bottom:486.435000px;}
.y31{bottom:487.515000px;}
.y105{bottom:490.935000px;}
.y58{bottom:494.535000px;}
.y1a6{bottom:497.235000px;}
.y95{bottom:499.215000px;}
.y11c{bottom:500.295000px;}
.y30{bottom:501.195000px;}
.y1f6{bottom:502.275000px;}
.yde{bottom:503.715000px;}
.y104{bottom:508.215000px;}
.y57{bottom:511.635000px;}
.y11b{bottom:514.335000px;}
.y126{bottom:514.440000px;}
.y1a5{bottom:514.515000px;}
.y2f{bottom:515.055000px;}
.y94{bottom:516.495000px;}
.ydd{bottom:520.995000px;}
.y158{bottom:524.520000px;}
.y103{bottom:525.495000px;}
.y2e{bottom:528.915000px;}
.y1a4{bottom:531.615000px;}
.y93{bottom:533.775000px;}
.ydc{bottom:538.275000px;}
.y154{bottom:538.740000px;}
.y148{bottom:538.920000px;}
.y167{bottom:540.540000px;}
.y2d{bottom:542.595000px;}
.y102{bottom:542.775000px;}
.y56{bottom:546.195000px;}
.y166{bottom:548.715000px;}
.y1a3{bottom:548.895000px;}
.y1f5{bottom:549.615000px;}
.y92{bottom:551.055000px;}
.y15c{bottom:553.860000px;}
.ydb{bottom:555.555000px;}
.y2c{bottom:556.455000px;}
.y15b{bottom:559.155000px;}
.y165{bottom:559.335000px;}
.y101{bottom:560.055000px;}
.y55{bottom:563.475000px;}
.y1a2{bottom:563.655000px;}
.y14d{bottom:564.660000px;}
.y1f4{bottom:566.895000px;}
.y161{bottom:567.000000px;}
.y91{bottom:568.335000px;}
.y157{bottom:569.415000px;}
.y15a{bottom:569.595000px;}
.y2b{bottom:570.315000px;}
.yda{bottom:572.835000px;}
.y100{bottom:577.335000px;}
.y14c{bottom:579.855000px;}
.y156{bottom:580.035000px;}
.y54{bottom:580.755000px;}
.y160{bottom:580.935000px;}
.y151{bottom:581.220000px;}
.y2a{bottom:583.995000px;}
.y1f3{bottom:584.175000px;}
.y90{bottom:585.435000px;}
.y150{bottom:587.775000px;}
.yd9{bottom:589.935000px;}
.y162{bottom:590.115000px;}
.y14b{bottom:590.295000px;}
.y15f{bottom:591.195000px;}
.yff{bottom:594.435000px;}
.y1a1{bottom:595.515000px;}
.y29{bottom:597.855000px;}
.y53{bottom:598.035000px;}
.y14f{bottom:598.395000px;}
.y153{bottom:600.555000px;}
.y14a{bottom:600.735000px;}
.y1f2{bottom:601.455000px;}
.y15e{bottom:601.635000px;}
.y8f{bottom:602.715000px;}
.yd8{bottom:607.215000px;}
.y28{bottom:611.715000px;}
.y52{bottom:615.135000px;}
.y1f1{bottom:618.735000px;}
.y8e{bottom:619.995000px;}
.yd7{bottom:624.495000px;}
.y27{bottom:625.395000px;}
.y1a0{bottom:627.375000px;}
.yfe{bottom:628.995000px;}
.y51{bottom:632.415000px;}
.y1f0{bottom:635.835000px;}
.y8d{bottom:637.275000px;}
.y26{bottom:639.255000px;}
.yd6{bottom:641.775000px;}
.yfd{bottom:646.275000px;}
.y50{bottom:649.695000px;}
.y25{bottom:653.115000px;}
.y8c{bottom:654.555000px;}
.yd5{bottom:659.055000px;}
.y19d{bottom:660.135000px;}
.yfc{bottom:663.555000px;}
.y24{bottom:666.825000px;}
.y4f{bottom:667.005000px;}
.y1ef{bottom:670.425000px;}
.y8b{bottom:671.865000px;}
.yd4{bottom:676.365000px;}
.yfb{bottom:680.865000px;}
.y23{bottom:683.025000px;}
.y4e{bottom:684.285000px;}
.y1ee{bottom:687.705000px;}
.y8a{bottom:688.965000px;}
.y6f{bottom:690.765000px;}
.y19c{bottom:692.025000px;}
.yd3{bottom:693.465000px;}
.yfa{bottom:697.965000px;}
.y22{bottom:701.565000px;}
.y1ed{bottom:704.985000px;}
.y89{bottom:706.245000px;}
.yd2{bottom:710.745000px;}
.yf9{bottom:715.245000px;}
.y21{bottom:718.665000px;}
.y1ec{bottom:722.265000px;}
.y88{bottom:723.525000px;}
.y19b{bottom:723.705000px;}
.yd1{bottom:728.025000px;}
.yf8{bottom:732.525000px;}
.y20{bottom:735.945000px;}
.y1eb{bottom:739.365000px;}
.y87{bottom:740.805000px;}
.yd0{bottom:745.305000px;}
.yf7{bottom:749.805000px;}
.y1f{bottom:753.225000px;}
.y19a{bottom:755.565000px;}
.y1ea{bottom:756.645000px;}
.y86{bottom:758.085000px;}
.ycf{bottom:762.585000px;}
.yf6{bottom:767.085000px;}
.y1e{bottom:769.785000px;}
.y1e9{bottom:773.925000px;}
.y85{bottom:775.365000px;}
.yae{bottom:779.685000px;}
.yce{bottom:779.865000px;}
.y1d{bottom:784.365000px;}
.y199{bottom:787.245000px;}
.y1e8{bottom:791.205000px;}
.y84{bottom:792.465000px;}
.yad{bottom:796.965000px;}
.y1c{bottom:801.465000px;}
.y1e7{bottom:808.485000px;}
.y83{bottom:809.745000px;}
.ycd{bottom:814.245000px;}
.y1b{bottom:818.745000px;}
.y198{bottom:819.105000px;}
.y1e6{bottom:825.765000px;}
.y82{bottom:827.025000px;}
.ycc{bottom:831.525000px;}
.y1a{bottom:836.025000px;}
.y1e5{bottom:842.865000px;}
.y81{bottom:844.305000px;}
.ycb{bottom:848.805000px;}
.y195{bottom:851.865000px;}
.y19{bottom:853.305000px;}
.y1e4{bottom:860.145000px;}
.y80{bottom:861.585000px;}
.yca{bottom:866.085000px;}
.y18{bottom:870.585000px;}
.y1e3{bottom:877.425000px;}
.y7f{bottom:878.685000px;}
.yc9{bottom:883.185000px;}
.y193{bottom:883.725000px;}
.y17{bottom:887.685000px;}
.y1e2{bottom:894.705000px;}
.y7e{bottom:895.965000px;}
.yc8{bottom:900.465000px;}
.y16{bottom:904.965000px;}
.y1e1{bottom:912.030000px;}
.y7d{bottom:913.290000px;}
.y192{bottom:915.630000px;}
.yc7{bottom:917.790000px;}
.y15{bottom:922.290000px;}
.y1e0{bottom:929.130000px;}
.y7c{bottom:935.070000px;}
.y14{bottom:939.570000px;}
.y1df{bottom:945.690000px;}
.yc6{bottom:952.350000px;}
.y13{bottom:956.850000px;}
.y1de{bottom:960.270000px;}
.y190{bottom:962.970000px;}
.yc5{bottom:969.630000px;}
.y12{bottom:974.130000px;}
.y1dd{bottom:976.830000px;}
.yc4{bottom:986.730000px;}
.y7b{bottom:991.230000px;}
.y11{bottom:991.950000px;}
.yc3{bottom:1004.010000px;}
.y7a{bottom:1008.510000px;}
.y18f{bottom:1010.310000px;}
.y10{bottom:1012.650000px;}
.yc2{bottom:1021.290000px;}
.y79{bottom:1025.790000px;}
.y18e{bottom:1026.510000px;}
.yf{bottom:1033.350000px;}
.yc1{bottom:1038.570000px;}
.y78{bottom:1043.070000px;}
.ye{bottom:1054.050000px;}
.yc0{bottom:1055.850000px;}
.y77{bottom:1060.350000px;}
.ybf{bottom:1073.130000px;}
.y18d{bottom:1077.450000px;}
.y76{bottom:1077.630000px;}
.ybe{bottom:1090.230000px;}
.yd{bottom:1094.730000px;}
.ybd{bottom:1107.510000px;}
.yc{bottom:1112.010000px;}
.ybc{bottom:1124.790000px;}
.yb{bottom:1129.290000px;}
.ybb{bottom:1142.070000px;}
.ya{bottom:1146.570000px;}
.y9{bottom:1163.880000px;}
.y4{bottom:1184.940000px;}
.y75{bottom:1187.820000px;}
.y71{bottom:1199.880000px;}
.y1{bottom:1200.060000px;}
.h40{height:5.729063px;}
.h3d{height:14.580000px;}
.h38{height:14.760000px;}
.h2b{height:15.480000px;}
.h7{height:17.903320px;}
.h2{height:20.340000px;}
.h19{height:20.520000px;}
.h8{height:21.420000px;}
.h1a{height:27.210938px;}
.h23{height:30.023438px;}
.h34{height:30.960000px;}
.h35{height:30.996000px;}
.h33{height:31.140000px;}
.h32{height:31.176000px;}
.h30{height:32.040000px;}
.h3f{height:32.580000px;}
.h1b{height:32.835938px;}
.h21{height:34.827188px;}
.h24{height:35.332031px;}
.h5{height:38.089687px;}
.h26{height:38.160000px;}
.h12{height:39.760312px;}
.h13{height:40.231406px;}
.h20{height:40.985156px;}
.h3b{height:42.134062px;}
.h3{height:44.000156px;}
.h2e{height:45.035156px;}
.h31{height:46.440000px;}
.h10{height:47.321367px;}
.h14{height:47.344922px;}
.h37{height:48.616875px;}
.h16{height:49.838906px;}
.h9{height:50.068125px;}
.h39{height:50.146523px;}
.h15{height:50.171484px;}
.h3c{height:50.845430px;}
.h1c{height:51.677227px;}
.h25{height:52.380000px;}
.h4{height:52.998047px;}
.h2d{height:55.503491px;}
.h3a{height:58.500000px;}
.hf{height:58.621992px;}
.hb{height:58.651172px;}
.h3e{height:58.680000px;}
.h6{height:59.439023px;}
.hc{height:60.226875px;}
.h1d{height:61.423863px;}
.he{height:62.261719px;}
.h11{height:64.978594px;}
.ha{height:65.884219px;}
.h28{height:66.420000px;}
.hd{height:72.562500px;}
.h17{height:73.260000px;}
.h2a{height:79.020000px;}
.h22{height:80.640000px;}
.h27{height:94.860000px;}
.h2f{height:95.940000px;}
.h2c{height:111.636000px;}
.h29{height:165.780000px;}
.h1f{height:242.280000px;}
.h36{height:276.840000px;}
.h18{height:282.656250px;}
.h1e{height:335.700000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:21.060000px;}
.w13{width:61.380000px;}
.w11{width:64.620000px;}
.w10{width:64.800000px;}
.w7{width:70.956000px;}
.wf{width:78.480000px;}
.w12{width:80.820000px;}
.w1a{width:84.960000px;}
.w4{width:223.230000px;}
.w3{width:228.450000px;}
.w2{width:228.630000px;}
.w8{width:229.530000px;}
.w17{width:253.830000px;}
.we{width:323.100000px;}
.w14{width:338.970000px;}
.w15{width:339.195000px;}
.w18{width:424.335000px;}
.wa{width:434.055000px;}
.w1b{width:595.545000px;}
.w16{width:678.885000px;}
.wd{width:679.680000px;}
.wb{width:680.325000px;}
.w19{width:682.485000px;}
.wc{width:684.645000px;}
.w6{width:690.945000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x73{left:1.980000px;}
.x2{left:8.100000px;}
.x1a{left:9.180000px;}
.x18{left:11.340000px;}
.x28{left:13.464000px;}
.x44{left:14.835000px;}
.x4b{left:16.095000px;}
.x27{left:18.144000px;}
.x3f{left:20.010000px;}
.x3a{left:21.060000px;}
.x26{left:24.156000px;}
.x55{left:28.005000px;}
.x63{left:36.000000px;}
.x72{left:55.074000px;}
.x25{left:60.150000px;}
.x32{left:65.550000px;}
.x4{left:70.740000px;}
.x33{left:72.750000px;}
.x31{left:77.610000px;}
.x1c{left:79.380000px;}
.x39{left:82.185000px;}
.x38{left:83.625000px;}
.x37{left:88.920000px;}
.x6{left:95.796000px;}
.x30{left:100.155000px;}
.x19{left:104.256000px;}
.x1{left:106.416000px;}
.xb{left:109.835987px;}
.xa{left:114.875987px;}
.x3c{left:119.265000px;}
.x2b{left:122.400000px;}
.x5f{left:124.374000px;}
.x14{left:127.655987px;}
.x60{left:134.094000px;}
.x3b{left:135.645000px;}
.x34{left:143.460000px;}
.x23{left:146.735987px;}
.x61{left:148.355987px;}
.x3d{left:151.740000px;}
.x70{left:159.869987px;}
.x20{left:163.469987px;}
.x65{left:170.130000px;}
.x8{left:178.049987px;}
.x2f{left:180.900000px;}
.x74{left:199.470000px;}
.x2d{left:201.525000px;}
.x36{left:203.835000px;}
.x35{left:205.995000px;}
.x69{left:213.149987px;}
.x3e{left:218.160000px;}
.x40{left:233.849987px;}
.x66{left:236.379000px;}
.x2e{left:238.530000px;}
.x2c{left:261.030000px;}
.x41{left:269.100000px;}
.x24{left:274.889987px;}
.x29{left:280.770000px;}
.x21{left:282.269987px;}
.x42{left:283.709987px;}
.x67{left:299.739000px;}
.x1d{left:306.030000px;}
.x43{left:323.820000px;}
.x1e{left:326.919000px;}
.x71{left:329.439000px;}
.x1f{left:330.519000px;}
.x7{left:333.579000px;}
.x3{left:335.055000px;}
.x45{left:338.474987px;}
.x46{left:343.874987px;}
.x6b{left:350.609987px;}
.x1b{left:354.855000px;}
.x6e{left:357.119987px;}
.x64{left:361.695000px;}
.x6d{left:378.719987px;}
.x6a{left:382.139987px;}
.x47{left:383.580000px;}
.x6c{left:385.379987px;}
.x62{left:388.334987px;}
.x49{left:400.754987px;}
.xc{left:402.554987px;}
.x48{left:404.354987px;}
.x6f{left:418.574987px;}
.x4a{left:434.880000px;}
.x9{left:446.474987px;}
.xd{left:448.814987px;}
.x4c{left:452.954987px;}
.x4d{left:455.834987px;}
.x16{left:459.254987px;}
.x17{left:480.524987px;}
.x4e{left:487.800000px;}
.x50{left:503.384987px;}
.x4f{left:506.444987px;}
.x12{left:507.524987px;}
.x51{left:508.784987px;}
.x15{left:517.604987px;}
.x52{left:542.520000px;}
.x53{left:553.784987px;}
.x5{left:563.505000px;}
.xf{left:588.344987px;}
.x54{left:590.400000px;}
.xe{left:596.984987px;}
.x57{left:601.844987px;}
.x5a{left:603.644987px;}
.x56{left:608.684987px;}
.x59{left:612.644987px;}
.x58{left:614.444987px;}
.x5b{left:616.964987px;}
.x11{left:629.564987px;}
.x2a{left:643.215000px;}
.x68{left:651.344987px;}
.x5c{left:657.000000px;}
.x13{left:661.244987px;}
.x5d{left:670.064987px;}
.x5e{left:674.069987px;}
.x22{left:770.549987px;}
.x10{left:786.749987px;}
@media print{
.v1{vertical-align:-71.040000pt;}
.v0{vertical-align:0.000000pt;}
.ls5a{letter-spacing:-1.008000pt;}
.ls28{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.592000pt;}
.ls42{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.400533pt;}
.ls5d{letter-spacing:-0.367467pt;}
.lse{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.269867pt;}
.ls37{letter-spacing:-0.259200pt;}
.ls64{letter-spacing:-0.239467pt;}
.ls61{letter-spacing:-0.228267pt;}
.ls2a{letter-spacing:-0.179200pt;}
.ls62{letter-spacing:-0.167467pt;}
.ls31{letter-spacing:-0.157867pt;}
.ls44{letter-spacing:-0.115200pt;}
.ls29{letter-spacing:-0.079467pt;}
.lsf{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.016000pt;}
.ls5f{letter-spacing:0.030080pt;}
.ls3{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.116480pt;}
.lsb{letter-spacing:0.160000pt;}
.ls53{letter-spacing:0.183467pt;}
.ls63{letter-spacing:0.228267pt;}
.ls24{letter-spacing:0.230933pt;}
.ls2b{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.245760pt;}
.ls4{letter-spacing:0.265600pt;}
.ls5e{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.281600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls43{letter-spacing:0.380800pt;}
.ls27{letter-spacing:0.456533pt;}
.ls60{letter-spacing:0.487467pt;}
.ls1f{letter-spacing:0.527467pt;}
.ls5c{letter-spacing:0.592000pt;}
.ls5b{letter-spacing:0.736000pt;}
.ls34{letter-spacing:0.800000pt;}
.ls1d{letter-spacing:0.821333pt;}
.ls49{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:1.440000pt;}
.ls33{letter-spacing:1.600000pt;}
.ls22{letter-spacing:2.080000pt;}
.ls35{letter-spacing:2.720000pt;}
.ls50{letter-spacing:3.360000pt;}
.ls16{letter-spacing:4.000000pt;}
.ls15{letter-spacing:4.640000pt;}
.ls54{letter-spacing:5.280000pt;}
.ls4f{letter-spacing:5.920000pt;}
.ls1a{letter-spacing:6.560000pt;}
.ls19{letter-spacing:7.200000pt;}
.ls3b{letter-spacing:7.360000pt;}
.ls1b{letter-spacing:7.739307pt;}
.ls2c{letter-spacing:7.840000pt;}
.ls14{letter-spacing:8.480000pt;}
.ls45{letter-spacing:8.640000pt;}
.ls18{letter-spacing:9.280000pt;}
.ls4e{letter-spacing:9.760000pt;}
.ls4c{letter-spacing:10.400000pt;}
.ls4b{letter-spacing:11.040000pt;}
.ls21{letter-spacing:11.680000pt;}
.ls20{letter-spacing:12.320000pt;}
.ls2d{letter-spacing:12.960000pt;}
.ls4a{letter-spacing:13.392640pt;}
.ls1c{letter-spacing:13.600000pt;}
.ls2f{letter-spacing:14.176000pt;}
.ls3f{letter-spacing:14.240000pt;}
.ls3a{letter-spacing:15.520000pt;}
.ls25{letter-spacing:16.160000pt;}
.ls40{letter-spacing:16.266667pt;}
.ls47{letter-spacing:16.320000pt;}
.ls26{letter-spacing:16.800000pt;}
.ls8{letter-spacing:17.440000pt;}
.ls55{letter-spacing:19.360000pt;}
.ls38{letter-spacing:20.000000pt;}
.ls7{letter-spacing:21.280000pt;}
.ls39{letter-spacing:21.920000pt;}
.ls23{letter-spacing:23.840000pt;}
.ls36{letter-spacing:24.480000pt;}
.ls48{letter-spacing:25.120000pt;}
.ls59{letter-spacing:25.760000pt;}
.ls3e{letter-spacing:25.920000pt;}
.ls3c{letter-spacing:28.320000pt;}
.ls9{letter-spacing:29.600000pt;}
.ls41{letter-spacing:30.234880pt;}
.ls57{letter-spacing:31.040000pt;}
.lsa{letter-spacing:31.520000pt;}
.ls4d{letter-spacing:32.800000pt;}
.ls51{letter-spacing:32.960000pt;}
.ls56{letter-spacing:34.720000pt;}
.ls52{letter-spacing:35.520000pt;}
.ls30{letter-spacing:36.000000pt;}
.ls46{letter-spacing:39.611307pt;}
.ls2e{letter-spacing:39.840000pt;}
.ls58{letter-spacing:41.280000pt;}
.ls3d{letter-spacing:44.320000pt;}
.ls17{letter-spacing:75.040000pt;}
.ls5{letter-spacing:92.960000pt;}
.wsd{word-spacing:-64.000000pt;}
.ws10{word-spacing:-53.120000pt;}
.ws18{word-spacing:-48.000000pt;}
.ws3{word-spacing:-14.471680pt;}
.ws1e{word-spacing:-14.240000pt;}
.wsf{word-spacing:-14.101333pt;}
.ws22{word-spacing:-14.016000pt;}
.ws23{word-spacing:-13.872000pt;}
.ws12{word-spacing:-13.736533pt;}
.ws1c{word-spacing:-13.660800pt;}
.ws8{word-spacing:-13.600000pt;}
.ws1f{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.510933pt;}
.ws20{word-spacing:-13.463467pt;}
.ws5{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.327360pt;}
.wsc{word-spacing:-13.280000pt;}
.ws1b{word-spacing:-13.232640pt;}
.ws1d{word-spacing:-13.164800pt;}
.ws17{word-spacing:-13.122133pt;}
.ws1a{word-spacing:-13.020800pt;}
.ws6{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.800000pt;}
.ws7{word-spacing:-12.688000pt;}
.ws13{word-spacing:-12.320000pt;}
.ws21{word-spacing:-12.272000pt;}
.ws19{word-spacing:-12.000000pt;}
.ws24{word-spacing:-11.847467pt;}
.ws28{word-spacing:-11.680000pt;}
.ws25{word-spacing:-11.360000pt;}
.ws29{word-spacing:-11.192533pt;}
.ws26{word-spacing:-11.131733pt;}
.ws27{word-spacing:-11.040000pt;}
.wsa{word-spacing:-10.720000pt;}
.ws2a{word-spacing:-10.480533pt;}
.ws0{word-spacing:-10.334080pt;}
.ws14{word-spacing:-9.280000pt;}
.ws15{word-spacing:-9.100800pt;}
.ws2{word-spacing:-8.945920pt;}
.ws1{word-spacing:-8.676053pt;}
.ws16{word-spacing:-8.000000pt;}
.wse{word-spacing:0.000000pt;}
._31{margin-left:-404.899627pt;}
._18{margin-left:-3.565440pt;}
._e{margin-left:-2.440320pt;}
._1{margin-left:-1.025280pt;}
._0{width:0.925653pt;}
._2{width:1.878613pt;}
._4{width:2.769067pt;}
._7{width:4.416640pt;}
._8{width:5.399040pt;}
._b{width:6.646400pt;}
._20{width:7.888000pt;}
._10{width:8.915200pt;}
._19{width:10.397867pt;}
._13{width:11.749120pt;}
._33{width:13.570347pt;}
._12{width:14.664960pt;}
._2b{width:15.670400pt;}
._21{width:16.626560pt;}
._d{width:17.920000pt;}
._2e{width:18.829227pt;}
._14{width:19.880320pt;}
._6{width:20.839680pt;}
._3{width:22.083200pt;}
._1d{width:23.250773pt;}
._c{width:24.656000pt;}
._2a{width:25.564587pt;}
._34{width:26.523520pt;}
._2c{width:27.463040pt;}
._15{width:28.614827pt;}
._f{width:29.626240pt;}
._1e{width:31.368747pt;}
._1a{width:32.608000pt;}
._5{width:33.792000pt;}
._1b{width:34.740480pt;}
._1c{width:35.802880pt;}
._27{width:36.734080pt;}
._9{width:38.377600pt;}
._a{width:39.527680pt;}
._1f{width:41.008640pt;}
._25{width:42.230400pt;}
._16{width:44.059093pt;}
._23{width:45.076267pt;}
._2f{width:46.692480pt;}
._26{width:48.232960pt;}
._30{width:50.214827pt;}
._24{width:51.121920pt;}
._11{width:52.033067pt;}
._38{width:53.021653pt;}
._35{width:53.916800pt;}
._32{width:55.191680pt;}
._3a{width:57.104000pt;}
._17{width:60.534187pt;}
._29{width:61.649707pt;}
._39{width:63.880747pt;}
._3b{width:67.621760pt;}
._37{width:69.587200pt;}
._2d{width:73.123627pt;}
._22{width:74.049280pt;}
._28{width:75.263573pt;}
._36{width:81.220480pt;}
.fsa{font-size:5.120000pt;}
.fs6{font-size:16.000000pt;}
.fs4{font-size:32.000000pt;}
.fs1{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs8{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs9{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:1.760000pt;}
.y222{bottom:2.400000pt;}
.y169{bottom:2.560000pt;}
.y197{bottom:2.720000pt;}
.y70{bottom:3.680000pt;}
.y3{bottom:3.840000pt;}
.y2{bottom:5.280000pt;}
.y7{bottom:5.600000pt;}
.y72{bottom:6.400000pt;}
.y176{bottom:9.440000pt;}
.y19e{bottom:9.466667pt;}
.y196{bottom:9.600000pt;}
.y22c{bottom:10.560000pt;}
.y73{bottom:10.880000pt;}
.y130{bottom:11.973333pt;}
.y1dc{bottom:14.466667pt;}
.y221{bottom:15.520000pt;}
.y17d{bottom:16.320000pt;}
.y19f{bottom:16.346667pt;}
.y170{bottom:16.360000pt;}
.y194{bottom:16.480000pt;}
.y143{bottom:20.546667pt;}
.y181{bottom:23.200000pt;}
.y175{bottom:23.240000pt;}
.y152{bottom:26.466667pt;}
.y220{bottom:28.480000pt;}
.y8{bottom:29.280000pt;}
.y191{bottom:30.080000pt;}
.y17c{bottom:31.040000pt;}
.y16f{bottom:31.080000pt;}
.y180{bottom:37.920000pt;}
.y174{bottom:37.960000pt;}
.y14e{bottom:39.106667pt;}
.y21f{bottom:41.440000pt;}
.y226{bottom:41.600000pt;}
.y13b{bottom:42.693333pt;}
.y6{bottom:43.200000pt;}
.y17b{bottom:44.800000pt;}
.y16e{bottom:44.840000pt;}
.y15d{bottom:51.586667pt;}
.y173{bottom:51.720000pt;}
.y17f{bottom:52.640000pt;}
.y145{bottom:52.666667pt;}
.y13a{bottom:53.573333pt;}
.y1db{bottom:56.773333pt;}
.y16d{bottom:58.600000pt;}
.y17a{bottom:59.520000pt;}
.y13c{bottom:59.546667pt;}
.y168{bottom:62.626667pt;}
.y144{bottom:63.546667pt;}
.y149{bottom:64.066667pt;}
.y155{bottom:64.226667pt;}
.y5{bottom:64.800000pt;}
.y17e{bottom:66.400000pt;}
.y172{bottom:66.440000pt;}
.y179{bottom:73.280000pt;}
.y16c{bottom:73.320000pt;}
.y159{bottom:76.866667pt;}
.y22e{bottom:77.280000pt;}
.y22d{bottom:79.040000pt;}
.y171{bottom:80.200000pt;}
.y22b{bottom:80.320000pt;}
.y20c{bottom:82.560000pt;}
.y11a{bottom:83.840000pt;}
.y18c{bottom:84.960000pt;}
.yba{bottom:86.240000pt;}
.y142{bottom:86.560000pt;}
.y6e{bottom:86.880000pt;}
.y16b{bottom:87.080000pt;}
.y1bb{bottom:89.280000pt;}
.y4d{bottom:89.760000pt;}
.y1d5{bottom:90.720000pt;}
.yac{bottom:91.040000pt;}
.y146{bottom:92.573333pt;}
.yf5{bottom:95.040000pt;}
.y20b{bottom:97.920000pt;}
.y119{bottom:99.040000pt;}
.y1da{bottom:99.066667pt;}
.y18b{bottom:100.320000pt;}
.yb9{bottom:101.600000pt;}
.y4c{bottom:102.080000pt;}
.y6d{bottom:102.240000pt;}
.y127{bottom:102.693333pt;}
.y13e{bottom:103.680000pt;}
.y1ba{bottom:104.640000pt;}
.y1cf{bottom:105.120000pt;}
.y125{bottom:105.920000pt;}
.y1d4{bottom:106.080000pt;}
.yab{bottom:106.400000pt;}
.y21c{bottom:107.040000pt;}
.yf4{bottom:110.400000pt;}
.y22a{bottom:111.520000pt;}
.y20a{bottom:113.280000pt;}
.y4b{bottom:114.240000pt;}
.y118{bottom:114.400000pt;}
.y13d{bottom:114.560000pt;}
.y147{bottom:114.693333pt;}
.y18a{bottom:115.520000pt;}
.yb8{bottom:116.960000pt;}
.y6c{bottom:117.440000pt;}
.y1b9{bottom:119.840000pt;}
.y1ce{bottom:120.480000pt;}
.y124{bottom:121.280000pt;}
.y1d3{bottom:121.440000pt;}
.yaa{bottom:121.760000pt;}
.y21b{bottom:122.400000pt;}
.y229{bottom:124.320000pt;}
.y139{bottom:125.573333pt;}
.yf3{bottom:125.760000pt;}
.y4a{bottom:126.560000pt;}
.y209{bottom:128.480000pt;}
.y128{bottom:128.640000pt;}
.y117{bottom:129.760000pt;}
.y189{bottom:130.880000pt;}
.yb7{bottom:132.320000pt;}
.y6b{bottom:132.800000pt;}
.y1b8{bottom:135.200000pt;}
.y1cd{bottom:135.680000pt;}
.y123{bottom:136.640000pt;}
.y1d2{bottom:136.800000pt;}
.ya9{bottom:137.120000pt;}
.y21a{bottom:137.760000pt;}
.y136{bottom:138.306667pt;}
.y12f{bottom:138.493333pt;}
.y49{bottom:138.880000pt;}
.y228{bottom:139.680000pt;}
.y164{bottom:139.906667pt;}
.yf2{bottom:141.120000pt;}
.y1d9{bottom:141.373333pt;}
.y208{bottom:143.840000pt;}
.y116{bottom:145.120000pt;}
.y188{bottom:146.240000pt;}
.y6a{bottom:148.160000pt;}
.yb6{bottom:148.640000pt;}
.y122{bottom:149.120000pt;}
.y137{bottom:149.920000pt;}
.y1b7{bottom:150.560000pt;}
.y48{bottom:151.040000pt;}
.y1d1{bottom:152.000000pt;}
.ya8{bottom:152.480000pt;}
.y219{bottom:153.120000pt;}
.y129{bottom:154.560000pt;}
.y227{bottom:155.040000pt;}
.yf1{bottom:156.480000pt;}
.y207{bottom:159.200000pt;}
.y135{bottom:159.453333pt;}
.y115{bottom:160.480000pt;}
.y187{bottom:161.600000pt;}
.y47{bottom:163.386667pt;}
.y69{bottom:163.546667pt;}
.yb5{bottom:164.026667pt;}
.y1b6{bottom:165.946667pt;}
.y1cc{bottom:166.426667pt;}
.y1d0{bottom:167.386667pt;}
.y225{bottom:167.546667pt;}
.ya7{bottom:167.706667pt;}
.y218{bottom:168.506667pt;}
.yf0{bottom:171.706667pt;}
.y206{bottom:174.586667pt;}
.y46{bottom:175.706667pt;}
.y186{bottom:176.986667pt;}
.y68{bottom:178.906667pt;}
.yb4{bottom:179.226667pt;}
.y140{bottom:179.973333pt;}
.y12a{bottom:180.506667pt;}
.y134{bottom:180.613333pt;}
.y1b5{bottom:181.306667pt;}
.y1cb{bottom:182.746667pt;}
.ya6{bottom:183.066667pt;}
.y1d8{bottom:183.653333pt;}
.y217{bottom:183.706667pt;}
.yef{bottom:187.066667pt;}
.y45{bottom:187.866667pt;}
.y205{bottom:189.946667pt;}
.y13f{bottom:190.693333pt;}
.y114{bottom:191.066667pt;}
.y185{bottom:192.346667pt;}
.y67{bottom:194.106667pt;}
.yb3{bottom:195.546667pt;}
.y1b4{bottom:196.666667pt;}
.y141{bottom:197.573333pt;}
.y1ca{bottom:198.106667pt;}
.ya5{bottom:198.426667pt;}
.y216{bottom:199.066667pt;}
.y44{bottom:200.186667pt;}
.y138{bottom:201.573333pt;}
.y133{bottom:201.760000pt;}
.yee{bottom:202.426667pt;}
.y204{bottom:205.306667pt;}
.y113{bottom:206.426667pt;}
.y12b{bottom:206.466667pt;}
.y184{bottom:207.546667pt;}
.y66{bottom:209.466667pt;}
.yb2{bottom:211.866667pt;}
.y43{bottom:212.506667pt;}
.y1c9{bottom:213.466667pt;}
.ya4{bottom:213.786667pt;}
.y215{bottom:214.426667pt;}
.yed{bottom:217.786667pt;}
.y224{bottom:219.706667pt;}
.y203{bottom:220.506667pt;}
.y112{bottom:221.786667pt;}
.y132{bottom:222.906667pt;}
.y42{bottom:224.666667pt;}
.y65{bottom:224.826667pt;}
.y1d7{bottom:225.946667pt;}
.yb1{bottom:227.226667pt;}
.y1c8{bottom:228.826667pt;}
.ya3{bottom:229.146667pt;}
.y214{bottom:229.786667pt;}
.y12c{bottom:232.386667pt;}
.y223{bottom:232.666667pt;}
.yec{bottom:233.146667pt;}
.y202{bottom:235.866667pt;}
.y41{bottom:236.986667pt;}
.y111{bottom:237.146667pt;}
.y183{bottom:238.266667pt;}
.y64{bottom:240.186667pt;}
.y1b3{bottom:242.586667pt;}
.yb0{bottom:243.546667pt;}
.y1c7{bottom:244.026667pt;}
.y131{bottom:244.066667pt;}
.ya2{bottom:244.506667pt;}
.y213{bottom:245.146667pt;}
.y21e{bottom:245.786667pt;}
.yeb{bottom:248.506667pt;}
.y40{bottom:249.306667pt;}
.y201{bottom:251.226667pt;}
.y110{bottom:252.506667pt;}
.y182{bottom:253.626667pt;}
.y63{bottom:255.546667pt;}
.y1b2{bottom:257.946667pt;}
.y12d{bottom:258.333333pt;}
.yaf{bottom:258.746667pt;}
.y1c6{bottom:259.386667pt;}
.ya1{bottom:259.706667pt;}
.y212{bottom:260.506667pt;}
.y3f{bottom:261.466667pt;}
.yea{bottom:263.706667pt;}
.y200{bottom:266.586667pt;}
.y178{bottom:266.746667pt;}
.y10f{bottom:267.706667pt;}
.y62{bottom:270.906667pt;}
.y1b1{bottom:273.306667pt;}
.y3e{bottom:273.786667pt;}
.y1c5{bottom:274.746667pt;}
.ya0{bottom:275.066667pt;}
.y211{bottom:275.706667pt;}
.ye9{bottom:279.066667pt;}
.y1ff{bottom:281.946667pt;}
.y10e{bottom:283.066667pt;}
.y12e{bottom:284.293333pt;}
.y3d{bottom:286.106667pt;}
.y1b0{bottom:288.666667pt;}
.y1c4{bottom:290.106667pt;}
.y9f{bottom:290.426667pt;}
.y210{bottom:291.066667pt;}
.ye8{bottom:294.426667pt;}
.y1fe{bottom:297.306667pt;}
.y21d{bottom:297.786667pt;}
.y3c{bottom:298.266667pt;}
.y10d{bottom:298.426667pt;}
.y61{bottom:301.466667pt;}
.y1af{bottom:303.866667pt;}
.y1c3{bottom:305.466667pt;}
.y9e{bottom:305.786667pt;}
.y20f{bottom:306.426667pt;}
.ye7{bottom:309.786667pt;}
.y3b{bottom:310.586667pt;}
.y1fd{bottom:312.506667pt;}
.y10c{bottom:313.786667pt;}
.y60{bottom:316.826667pt;}
.y1ae{bottom:319.226667pt;}
.y1c2{bottom:320.826667pt;}
.y9d{bottom:321.146667pt;}
.y20e{bottom:321.786667pt;}
.y3a{bottom:322.906667pt;}
.ye6{bottom:325.146667pt;}
.y1fc{bottom:327.866667pt;}
.y10b{bottom:329.146667pt;}
.y5f{bottom:332.186667pt;}
.y1ad{bottom:334.586667pt;}
.y39{bottom:335.066667pt;}
.y1c1{bottom:336.026667pt;}
.y9c{bottom:336.506667pt;}
.ye5{bottom:340.506667pt;}
.y1fb{bottom:343.226667pt;}
.y10a{bottom:344.506667pt;}
.y38{bottom:347.386667pt;}
.y5e{bottom:347.546667pt;}
.y1ac{bottom:349.946667pt;}
.y1c0{bottom:351.386667pt;}
.y9b{bottom:351.706667pt;}
.y177{bottom:352.826667pt;}
.ye4{bottom:355.706667pt;}
.y1fa{bottom:358.586667pt;}
.y37{bottom:359.706667pt;}
.y5d{bottom:362.906667pt;}
.y20d{bottom:363.706667pt;}
.y1ab{bottom:365.306667pt;}
.y1bf{bottom:366.746667pt;}
.y9a{bottom:367.066667pt;}
.y16a{bottom:367.226667pt;}
.y121{bottom:368.026667pt;}
.ye3{bottom:371.066667pt;}
.y36{bottom:371.866667pt;}
.y1f9{bottom:373.946667pt;}
.y109{bottom:375.066667pt;}
.y5c{bottom:378.146667pt;}
.y1aa{bottom:380.706667pt;}
.y1be{bottom:382.146667pt;}
.y99{bottom:382.466667pt;}
.y120{bottom:383.426667pt;}
.y35{bottom:384.226667pt;}
.ye2{bottom:386.466667pt;}
.y1f8{bottom:389.186667pt;}
.y108{bottom:390.466667pt;}
.y5b{bottom:393.506667pt;}
.y1a9{bottom:395.906667pt;}
.y34{bottom:396.546667pt;}
.y1bd{bottom:397.506667pt;}
.y98{bottom:397.826667pt;}
.y11f{bottom:398.786667pt;}
.ye1{bottom:401.826667pt;}
.y163{bottom:403.200000pt;}
.y1f7{bottom:404.546667pt;}
.y107{bottom:405.826667pt;}
.y33{bottom:408.706667pt;}
.y5a{bottom:408.866667pt;}
.y1a8{bottom:411.266667pt;}
.y97{bottom:413.186667pt;}
.y11e{bottom:413.986667pt;}
.ye0{bottom:417.186667pt;}
.y1bc{bottom:417.506667pt;}
.y1d6{bottom:417.600000pt;}
.y32{bottom:421.026667pt;}
.y106{bottom:421.186667pt;}
.y59{bottom:424.226667pt;}
.y1a7{bottom:426.626667pt;}
.y96{bottom:428.386667pt;}
.y11d{bottom:429.346667pt;}
.ydf{bottom:432.386667pt;}
.y31{bottom:433.346667pt;}
.y105{bottom:436.386667pt;}
.y58{bottom:439.586667pt;}
.y1a6{bottom:441.986667pt;}
.y95{bottom:443.746667pt;}
.y11c{bottom:444.706667pt;}
.y30{bottom:445.506667pt;}
.y1f6{bottom:446.466667pt;}
.yde{bottom:447.746667pt;}
.y104{bottom:451.746667pt;}
.y57{bottom:454.786667pt;}
.y11b{bottom:457.186667pt;}
.y126{bottom:457.280000pt;}
.y1a5{bottom:457.346667pt;}
.y2f{bottom:457.826667pt;}
.y94{bottom:459.106667pt;}
.ydd{bottom:463.106667pt;}
.y158{bottom:466.240000pt;}
.y103{bottom:467.106667pt;}
.y2e{bottom:470.146667pt;}
.y1a4{bottom:472.546667pt;}
.y93{bottom:474.466667pt;}
.ydc{bottom:478.466667pt;}
.y154{bottom:478.880000pt;}
.y148{bottom:479.040000pt;}
.y167{bottom:480.480000pt;}
.y2d{bottom:482.306667pt;}
.y102{bottom:482.466667pt;}
.y56{bottom:485.506667pt;}
.y166{bottom:487.746667pt;}
.y1a3{bottom:487.906667pt;}
.y1f5{bottom:488.546667pt;}
.y92{bottom:489.826667pt;}
.y15c{bottom:492.320000pt;}
.ydb{bottom:493.826667pt;}
.y2c{bottom:494.626667pt;}
.y15b{bottom:497.026667pt;}
.y165{bottom:497.186667pt;}
.y101{bottom:497.826667pt;}
.y55{bottom:500.866667pt;}
.y1a2{bottom:501.026667pt;}
.y14d{bottom:501.920000pt;}
.y1f4{bottom:503.906667pt;}
.y161{bottom:504.000000pt;}
.y91{bottom:505.186667pt;}
.y157{bottom:506.146667pt;}
.y15a{bottom:506.306667pt;}
.y2b{bottom:506.946667pt;}
.yda{bottom:509.186667pt;}
.y100{bottom:513.186667pt;}
.y14c{bottom:515.426667pt;}
.y156{bottom:515.586667pt;}
.y54{bottom:516.226667pt;}
.y160{bottom:516.386667pt;}
.y151{bottom:516.640000pt;}
.y2a{bottom:519.106667pt;}
.y1f3{bottom:519.266667pt;}
.y90{bottom:520.386667pt;}
.y150{bottom:522.466667pt;}
.yd9{bottom:524.386667pt;}
.y162{bottom:524.546667pt;}
.y14b{bottom:524.706667pt;}
.y15f{bottom:525.506667pt;}
.yff{bottom:528.386667pt;}
.y1a1{bottom:529.346667pt;}
.y29{bottom:531.426667pt;}
.y53{bottom:531.586667pt;}
.y14f{bottom:531.906667pt;}
.y153{bottom:533.826667pt;}
.y14a{bottom:533.986667pt;}
.y1f2{bottom:534.626667pt;}
.y15e{bottom:534.786667pt;}
.y8f{bottom:535.746667pt;}
.yd8{bottom:539.746667pt;}
.y28{bottom:543.746667pt;}
.y52{bottom:546.786667pt;}
.y1f1{bottom:549.986667pt;}
.y8e{bottom:551.106667pt;}
.yd7{bottom:555.106667pt;}
.y27{bottom:555.906667pt;}
.y1a0{bottom:557.666667pt;}
.yfe{bottom:559.106667pt;}
.y51{bottom:562.146667pt;}
.y1f0{bottom:565.186667pt;}
.y8d{bottom:566.466667pt;}
.y26{bottom:568.226667pt;}
.yd6{bottom:570.466667pt;}
.yfd{bottom:574.466667pt;}
.y50{bottom:577.506667pt;}
.y25{bottom:580.546667pt;}
.y8c{bottom:581.826667pt;}
.yd5{bottom:585.826667pt;}
.y19d{bottom:586.786667pt;}
.yfc{bottom:589.826667pt;}
.y24{bottom:592.733333pt;}
.y4f{bottom:592.893333pt;}
.y1ef{bottom:595.933333pt;}
.y8b{bottom:597.213333pt;}
.yd4{bottom:601.213333pt;}
.yfb{bottom:605.213333pt;}
.y23{bottom:607.133333pt;}
.y4e{bottom:608.253333pt;}
.y1ee{bottom:611.293333pt;}
.y8a{bottom:612.413333pt;}
.y6f{bottom:614.013333pt;}
.y19c{bottom:615.133333pt;}
.yd3{bottom:616.413333pt;}
.yfa{bottom:620.413333pt;}
.y22{bottom:623.613333pt;}
.y1ed{bottom:626.653333pt;}
.y89{bottom:627.773333pt;}
.yd2{bottom:631.773333pt;}
.yf9{bottom:635.773333pt;}
.y21{bottom:638.813333pt;}
.y1ec{bottom:642.013333pt;}
.y88{bottom:643.133333pt;}
.y19b{bottom:643.293333pt;}
.yd1{bottom:647.133333pt;}
.yf8{bottom:651.133333pt;}
.y20{bottom:654.173333pt;}
.y1eb{bottom:657.213333pt;}
.y87{bottom:658.493333pt;}
.yd0{bottom:662.493333pt;}
.yf7{bottom:666.493333pt;}
.y1f{bottom:669.533333pt;}
.y19a{bottom:671.613333pt;}
.y1ea{bottom:672.573333pt;}
.y86{bottom:673.853333pt;}
.ycf{bottom:677.853333pt;}
.yf6{bottom:681.853333pt;}
.y1e{bottom:684.253333pt;}
.y1e9{bottom:687.933333pt;}
.y85{bottom:689.213333pt;}
.yae{bottom:693.053333pt;}
.yce{bottom:693.213333pt;}
.y1d{bottom:697.213333pt;}
.y199{bottom:699.773333pt;}
.y1e8{bottom:703.293333pt;}
.y84{bottom:704.413333pt;}
.yad{bottom:708.413333pt;}
.y1c{bottom:712.413333pt;}
.y1e7{bottom:718.653333pt;}
.y83{bottom:719.773333pt;}
.ycd{bottom:723.773333pt;}
.y1b{bottom:727.773333pt;}
.y198{bottom:728.093333pt;}
.y1e6{bottom:734.013333pt;}
.y82{bottom:735.133333pt;}
.ycc{bottom:739.133333pt;}
.y1a{bottom:743.133333pt;}
.y1e5{bottom:749.213333pt;}
.y81{bottom:750.493333pt;}
.ycb{bottom:754.493333pt;}
.y195{bottom:757.213333pt;}
.y19{bottom:758.493333pt;}
.y1e4{bottom:764.573333pt;}
.y80{bottom:765.853333pt;}
.yca{bottom:769.853333pt;}
.y18{bottom:773.853333pt;}
.y1e3{bottom:779.933333pt;}
.y7f{bottom:781.053333pt;}
.yc9{bottom:785.053333pt;}
.y193{bottom:785.533333pt;}
.y17{bottom:789.053333pt;}
.y1e2{bottom:795.293333pt;}
.y7e{bottom:796.413333pt;}
.yc8{bottom:800.413333pt;}
.y16{bottom:804.413333pt;}
.y1e1{bottom:810.693333pt;}
.y7d{bottom:811.813333pt;}
.y192{bottom:813.893333pt;}
.yc7{bottom:815.813333pt;}
.y15{bottom:819.813333pt;}
.y1e0{bottom:825.893333pt;}
.y7c{bottom:831.173333pt;}
.y14{bottom:835.173333pt;}
.y1df{bottom:840.613333pt;}
.yc6{bottom:846.533333pt;}
.y13{bottom:850.533333pt;}
.y1de{bottom:853.573333pt;}
.y190{bottom:855.973333pt;}
.yc5{bottom:861.893333pt;}
.y12{bottom:865.893333pt;}
.y1dd{bottom:868.293333pt;}
.yc4{bottom:877.093333pt;}
.y7b{bottom:881.093333pt;}
.y11{bottom:881.733333pt;}
.yc3{bottom:892.453333pt;}
.y7a{bottom:896.453333pt;}
.y18f{bottom:898.053333pt;}
.y10{bottom:900.133333pt;}
.yc2{bottom:907.813333pt;}
.y79{bottom:911.813333pt;}
.y18e{bottom:912.453333pt;}
.yf{bottom:918.533333pt;}
.yc1{bottom:923.173333pt;}
.y78{bottom:927.173333pt;}
.ye{bottom:936.933333pt;}
.yc0{bottom:938.533333pt;}
.y77{bottom:942.533333pt;}
.ybf{bottom:953.893333pt;}
.y18d{bottom:957.733333pt;}
.y76{bottom:957.893333pt;}
.ybe{bottom:969.093333pt;}
.yd{bottom:973.093333pt;}
.ybd{bottom:984.453333pt;}
.yc{bottom:988.453333pt;}
.ybc{bottom:999.813333pt;}
.yb{bottom:1003.813333pt;}
.ybb{bottom:1015.173333pt;}
.ya{bottom:1019.173333pt;}
.y9{bottom:1034.560000pt;}
.y4{bottom:1053.280000pt;}
.y75{bottom:1055.840000pt;}
.y71{bottom:1066.560000pt;}
.y1{bottom:1066.720000pt;}
.h40{height:5.092500pt;}
.h3d{height:12.960000pt;}
.h38{height:13.120000pt;}
.h2b{height:13.760000pt;}
.h7{height:15.914062pt;}
.h2{height:18.080000pt;}
.h19{height:18.240000pt;}
.h8{height:19.040000pt;}
.h1a{height:24.187500pt;}
.h23{height:26.687500pt;}
.h34{height:27.520000pt;}
.h35{height:27.552000pt;}
.h33{height:27.680000pt;}
.h32{height:27.712000pt;}
.h30{height:28.480000pt;}
.h3f{height:28.960000pt;}
.h1b{height:29.187500pt;}
.h21{height:30.957500pt;}
.h24{height:31.406250pt;}
.h5{height:33.857500pt;}
.h26{height:33.920000pt;}
.h12{height:35.342500pt;}
.h13{height:35.761250pt;}
.h20{height:36.431250pt;}
.h3b{height:37.452500pt;}
.h3{height:39.111250pt;}
.h2e{height:40.031250pt;}
.h31{height:41.280000pt;}
.h10{height:42.063437pt;}
.h14{height:42.084375pt;}
.h37{height:43.215000pt;}
.h16{height:44.301250pt;}
.h9{height:44.505000pt;}
.h39{height:44.574687pt;}
.h15{height:44.596875pt;}
.h3c{height:45.195937pt;}
.h1c{height:45.935313pt;}
.h25{height:46.560000pt;}
.h4{height:47.109375pt;}
.h2d{height:49.336436pt;}
.h3a{height:52.000000pt;}
.hf{height:52.108438pt;}
.hb{height:52.134375pt;}
.h3e{height:52.160000pt;}
.h6{height:52.834688pt;}
.hc{height:53.535000pt;}
.h1d{height:54.598989pt;}
.he{height:55.343750pt;}
.h11{height:57.758750pt;}
.ha{height:58.563750pt;}
.h28{height:59.040000pt;}
.hd{height:64.500000pt;}
.h17{height:65.120000pt;}
.h2a{height:70.240000pt;}
.h22{height:71.680000pt;}
.h27{height:84.320000pt;}
.h2f{height:85.280000pt;}
.h2c{height:99.232000pt;}
.h29{height:147.360000pt;}
.h1f{height:215.360000pt;}
.h36{height:246.080000pt;}
.h18{height:251.250000pt;}
.h1e{height:298.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:18.720000pt;}
.w13{width:54.560000pt;}
.w11{width:57.440000pt;}
.w10{width:57.600000pt;}
.w7{width:63.072000pt;}
.wf{width:69.760000pt;}
.w12{width:71.840000pt;}
.w1a{width:75.520000pt;}
.w4{width:198.426667pt;}
.w3{width:203.066667pt;}
.w2{width:203.226667pt;}
.w8{width:204.026667pt;}
.w17{width:225.626667pt;}
.we{width:287.200000pt;}
.w14{width:301.306667pt;}
.w15{width:301.506667pt;}
.w18{width:377.186667pt;}
.wa{width:385.826667pt;}
.w1b{width:529.373333pt;}
.w16{width:603.453333pt;}
.wd{width:604.160000pt;}
.wb{width:604.733333pt;}
.w19{width:606.653333pt;}
.wc{width:608.573333pt;}
.w6{width:614.173333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x73{left:1.760000pt;}
.x2{left:7.200000pt;}
.x1a{left:8.160000pt;}
.x18{left:10.080000pt;}
.x28{left:11.968000pt;}
.x44{left:13.186667pt;}
.x4b{left:14.306667pt;}
.x27{left:16.128000pt;}
.x3f{left:17.786667pt;}
.x3a{left:18.720000pt;}
.x26{left:21.472000pt;}
.x55{left:24.893333pt;}
.x63{left:32.000000pt;}
.x72{left:48.954667pt;}
.x25{left:53.466667pt;}
.x32{left:58.266667pt;}
.x4{left:62.880000pt;}
.x33{left:64.666667pt;}
.x31{left:68.986667pt;}
.x1c{left:70.560000pt;}
.x39{left:73.053333pt;}
.x38{left:74.333333pt;}
.x37{left:79.040000pt;}
.x6{left:85.152000pt;}
.x30{left:89.026667pt;}
.x19{left:92.672000pt;}
.x1{left:94.592000pt;}
.xb{left:97.631988pt;}
.xa{left:102.111988pt;}
.x3c{left:106.013333pt;}
.x2b{left:108.800000pt;}
.x5f{left:110.554667pt;}
.x14{left:113.471988pt;}
.x60{left:119.194667pt;}
.x3b{left:120.573333pt;}
.x34{left:127.520000pt;}
.x23{left:130.431988pt;}
.x61{left:131.871988pt;}
.x3d{left:134.880000pt;}
.x70{left:142.106655pt;}
.x20{left:145.306655pt;}
.x65{left:151.226667pt;}
.x8{left:158.266655pt;}
.x2f{left:160.800000pt;}
.x74{left:177.306667pt;}
.x2d{left:179.133333pt;}
.x36{left:181.186667pt;}
.x35{left:183.106667pt;}
.x69{left:189.466655pt;}
.x3e{left:193.920000pt;}
.x40{left:207.866655pt;}
.x66{left:210.114667pt;}
.x2e{left:212.026667pt;}
.x2c{left:232.026667pt;}
.x41{left:239.200000pt;}
.x24{left:244.346655pt;}
.x29{left:249.573333pt;}
.x21{left:250.906655pt;}
.x42{left:252.186655pt;}
.x67{left:266.434667pt;}
.x1d{left:272.026667pt;}
.x43{left:287.840000pt;}
.x1e{left:290.594667pt;}
.x71{left:292.834667pt;}
.x1f{left:293.794667pt;}
.x7{left:296.514667pt;}
.x3{left:297.826667pt;}
.x45{left:300.866655pt;}
.x46{left:305.666655pt;}
.x6b{left:311.653322pt;}
.x1b{left:315.426667pt;}
.x6e{left:317.439988pt;}
.x64{left:321.506667pt;}
.x6d{left:336.639988pt;}
.x6a{left:339.679988pt;}
.x47{left:340.960000pt;}
.x6c{left:342.559988pt;}
.x62{left:345.186655pt;}
.x49{left:356.226655pt;}
.xc{left:357.826655pt;}
.x48{left:359.426655pt;}
.x6f{left:372.066655pt;}
.x4a{left:386.560000pt;}
.x9{left:396.866655pt;}
.xd{left:398.946655pt;}
.x4c{left:402.626655pt;}
.x4d{left:405.186655pt;}
.x16{left:408.226655pt;}
.x17{left:427.133322pt;}
.x4e{left:433.600000pt;}
.x50{left:447.453322pt;}
.x4f{left:450.173322pt;}
.x12{left:451.133322pt;}
.x51{left:452.253322pt;}
.x15{left:460.093322pt;}
.x52{left:482.240000pt;}
.x53{left:492.253322pt;}
.x5{left:500.893333pt;}
.xf{left:522.973322pt;}
.x54{left:524.800000pt;}
.xe{left:530.653322pt;}
.x57{left:534.973322pt;}
.x5a{left:536.573322pt;}
.x56{left:541.053322pt;}
.x59{left:544.573322pt;}
.x58{left:546.173322pt;}
.x5b{left:548.413322pt;}
.x11{left:559.613322pt;}
.x2a{left:571.746667pt;}
.x68{left:578.973322pt;}
.x5c{left:584.000000pt;}
.x13{left:587.773322pt;}
.x5d{left:595.613322pt;}
.x5e{left:599.173322pt;}
.x22{left:684.933322pt;}
.x10{left:699.333322pt;}
}




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