
    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_a045e15fdf54c424ca7bf4ca.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_01b27004cbcae226efa832ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.148000;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_78c7b43e4c9f22e7a661e513.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.148000;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_77ff89f620d84c0908b68670.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.985000;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_72e566daafdf5ffe7dae50f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.988000;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_6c08315b53f6092b2dffb3bd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.689000;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_b64a74816244e08c9f682088.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.988000;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_11e2e9f2582a4aecea821231.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.987000;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_baf957d696b99b6454b86e52.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.990513;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_b3dbb9788772ef81c403fbf5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.879395;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_adba3897284f0a010e0711af.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.882324;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_a656b9e617bb1c4ae886e37d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.919000;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_d373692a2eb1a61bfe24d474.woff2')format("woff");}.fff{font-family:fff;line-height:0.695000;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_7fa8d51989b0992f88a48396.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-36.810000px;}
.v8{vertical-align:-21.000000px;}
.v4{vertical-align:-18.810000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.800000px;}
.v2{vertical-align:12.000000px;}
.v5{vertical-align:18.810000px;}
.v6{vertical-align:21.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-3.840000px;}
.ls2c{letter-spacing:-2.280000px;}
.ls11{letter-spacing:-2.160000px;}
.lsa{letter-spacing:-1.710000px;}
.lsb{letter-spacing:-1.140000px;}
.ls13{letter-spacing:-0.960000px;}
.lsc{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.570000px;}
.ls21{letter-spacing:-0.513000px;}
.lse{letter-spacing:-0.480000px;}
.ls7{letter-spacing:-0.456000px;}
.ls2b{letter-spacing:-0.450000px;}
.ls10{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.384000px;}
.ls28{letter-spacing:-0.378000px;}
.ls9{letter-spacing:-0.342000px;}
.ls4{letter-spacing:-0.336000px;}
.ls2d{letter-spacing:-0.312000px;}
.ls25{letter-spacing:-0.084000px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.000120px;}
.ls1d{letter-spacing:0.000180px;}
.ls19{letter-spacing:0.000300px;}
.ls16{letter-spacing:0.000600px;}
.ls14{letter-spacing:0.126000px;}
.ls8{letter-spacing:0.285000px;}
.ls1a{letter-spacing:0.568800px;}
.ls18{letter-spacing:0.569400px;}
.ls27{letter-spacing:0.826500px;}
.ls2{letter-spacing:0.840000px;}
.ls6{letter-spacing:0.960000px;}
.ls1b{letter-spacing:1.138800px;}
.ls17{letter-spacing:1.139400px;}
.ls1e{letter-spacing:1.524600px;}
.ls22{letter-spacing:1.539000px;}
.lsd{letter-spacing:2.344200px;}
.ls1{letter-spacing:2.640000px;}
.ls26{letter-spacing:29.412000px;}
.ls20{letter-spacing:29.469000px;}
.ls15{letter-spacing:34.314000px;}
.ls24{letter-spacing:35.238000px;}
.ls23{letter-spacing:59.451000px;}
.ls2e{letter-spacing:89.998800px;}
.ls5{letter-spacing:89.999400px;}
.ls2a{letter-spacing:172.560000px;}
.ls1f{letter-spacing:179.113800px;}
.ls29{letter-spacing:200.970000px;}
.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;}
}
.wsd7{word-spacing:-201.012000px;}
.ws2{word-spacing:-32.340000px;}
.wsd3{word-spacing:-31.201800px;}
.wsd1{word-spacing:-26.513400px;}
.ws11b{word-spacing:-20.250000px;}
.wse0{word-spacing:-19.800000px;}
.wscf{word-spacing:-14.364000px;}
.wsee{word-spacing:-12.882000px;}
.ws5{word-spacing:-12.825000px;}
.ws5c{word-spacing:-12.483000px;}
.ws3f{word-spacing:-12.369000px;}
.wsce{word-spacing:-12.312000px;}
.ws4{word-spacing:-12.255000px;}
.wsa4{word-spacing:-11.115000px;}
.ws3{word-spacing:-10.800000px;}
.wsa5{word-spacing:-10.080000px;}
.wsc4{word-spacing:-9.840000px;}
.wsdf{word-spacing:-9.450000px;}
.ws1{word-spacing:-9.396000px;}
.wsd5{word-spacing:-9.072000px;}
.wsd4{word-spacing:-8.265000px;}
.wscd{word-spacing:-7.438500px;}
.ws6c{word-spacing:-7.353000px;}
.ws9f{word-spacing:-6.213000px;}
.ws10e{word-spacing:-5.928000px;}
.ws62{word-spacing:-5.415000px;}
.ws9d{word-spacing:-5.187000px;}
.wsdd{word-spacing:-4.332000px;}
.ws79{word-spacing:-4.275000px;}
.ws46{word-spacing:-4.161000px;}
.ws9a{word-spacing:-4.104000px;}
.wsf3{word-spacing:-3.933000px;}
.wsed{word-spacing:-3.876000px;}
.ws99{word-spacing:-3.819000px;}
.ws11d{word-spacing:-3.648000px;}
.ws12{word-spacing:-3.534000px;}
.ws11f{word-spacing:-3.477000px;}
.ws27{word-spacing:-3.420000px;}
.ws1d{word-spacing:-3.249000px;}
.ws6f{word-spacing:-3.135000px;}
.ws1a{word-spacing:-2.964000px;}
.ws75{word-spacing:-2.907000px;}
.wse{word-spacing:-2.793000px;}
.ws15{word-spacing:-2.736000px;}
.ws24{word-spacing:-2.679000px;}
.ws10a{word-spacing:-2.565000px;}
.ws11e{word-spacing:-2.508000px;}
.ws86{word-spacing:-2.394000px;}
.ws2a{word-spacing:-2.280000px;}
.ws3d{word-spacing:-2.223000px;}
.ws3a{word-spacing:-2.166000px;}
.ws48{word-spacing:-2.109000px;}
.ws105{word-spacing:-2.052000px;}
.wsa1{word-spacing:-1.995000px;}
.ws44{word-spacing:-1.938000px;}
.ws5b{word-spacing:-1.881000px;}
.wsfa{word-spacing:-1.872000px;}
.ws60{word-spacing:-1.767000px;}
.ws111{word-spacing:-1.710000px;}
.ws22{word-spacing:-1.653000px;}
.ws45{word-spacing:-1.596000px;}
.ws76{word-spacing:-1.539000px;}
.ws50{word-spacing:-1.482000px;}
.ws6{word-spacing:-1.440000px;}
.ws92{word-spacing:-1.368000px;}
.wsad{word-spacing:-1.254000px;}
.ws2d{word-spacing:-1.197000px;}
.wsd8{word-spacing:-1.140000px;}
.ws121{word-spacing:-1.083000px;}
.ws71{word-spacing:-1.026000px;}
.wsc9{word-spacing:-0.960000px;}
.ws11{word-spacing:-0.855000px;}
.wsa9{word-spacing:-0.816000px;}
.wsc8{word-spacing:-0.798000px;}
.wsf4{word-spacing:-0.741000px;}
.wsa8{word-spacing:-0.684000px;}
.ws10c{word-spacing:-0.570000px;}
.wsa0{word-spacing:-0.513000px;}
.ws16{word-spacing:-0.480000px;}
.ws49{word-spacing:-0.456000px;}
.wsca{word-spacing:-0.432000px;}
.ws6a{word-spacing:-0.399000px;}
.ws7{word-spacing:-0.342000px;}
.ws104{word-spacing:-0.240000px;}
.wsda{word-spacing:-0.171000px;}
.wsaf{word-spacing:-0.144000px;}
.ws4a{word-spacing:-0.114000px;}
.ws2f{word-spacing:-0.057000px;}
.ws0{word-spacing:0.000000px;}
.ws11a{word-spacing:0.057000px;}
.ws67{word-spacing:0.171000px;}
.wsd{word-spacing:0.285000px;}
.ws10{word-spacing:0.342000px;}
.ws5d{word-spacing:0.399000px;}
.ws1e{word-spacing:0.456000px;}
.ws103{word-spacing:0.480000px;}
.ws35{word-spacing:0.513000px;}
.wsab{word-spacing:0.570000px;}
.ws109{word-spacing:0.627000px;}
.ws72{word-spacing:0.684000px;}
.ws78{word-spacing:0.741000px;}
.ws3e{word-spacing:0.798000px;}
.ws29{word-spacing:0.855000px;}
.ws2b{word-spacing:0.912000px;}
.ws25{word-spacing:0.969000px;}
.wsae{word-spacing:1.083000px;}
.wsac{word-spacing:1.140000px;}
.ws90{word-spacing:1.197000px;}
.ws5e{word-spacing:1.254000px;}
.wsf2{word-spacing:1.311000px;}
.ws110{word-spacing:1.368000px;}
.ws87{word-spacing:1.425000px;}
.ws1b{word-spacing:1.482000px;}
.ws94{word-spacing:1.539000px;}
.wsf9{word-spacing:1.596000px;}
.wsbe{word-spacing:1.653000px;}
.ws23{word-spacing:1.710000px;}
.ws31{word-spacing:1.767000px;}
.ws77{word-spacing:1.824000px;}
.wsa6{word-spacing:1.938000px;}
.ws117{word-spacing:2.052000px;}
.ws93{word-spacing:2.166000px;}
.ws58{word-spacing:2.223000px;}
.ws5f{word-spacing:2.280000px;}
.ws7c{word-spacing:2.337000px;}
.wsb{word-spacing:2.394000px;}
.ws65{word-spacing:2.451000px;}
.wsf7{word-spacing:2.508000px;}
.ws21{word-spacing:2.565000px;}
.ws70{word-spacing:2.622000px;}
.ws36{word-spacing:2.679000px;}
.ws51{word-spacing:2.736000px;}
.ws10d{word-spacing:2.753100px;}
.wse8{word-spacing:2.793000px;}
.ws6b{word-spacing:2.850000px;}
.wsa7{word-spacing:2.907000px;}
.ws98{word-spacing:2.964000px;}
.ws14{word-spacing:3.021000px;}
.ws59{word-spacing:3.078000px;}
.ws118{word-spacing:3.135000px;}
.ws18{word-spacing:3.249000px;}
.ws56{word-spacing:3.306000px;}
.ws74{word-spacing:3.363000px;}
.ws13{word-spacing:3.420000px;}
.wsdc{word-spacing:3.477000px;}
.ws89{word-spacing:3.534000px;}
.ws32{word-spacing:3.591000px;}
.ws28{word-spacing:3.648000px;}
.ws2c{word-spacing:3.762000px;}
.wsbd{word-spacing:3.819000px;}
.wsaa{word-spacing:3.876000px;}
.ws119{word-spacing:3.933000px;}
.wseb{word-spacing:3.990000px;}
.ws97{word-spacing:4.047000px;}
.ws55{word-spacing:4.104000px;}
.ws9c{word-spacing:4.128000px;}
.ws96{word-spacing:4.161000px;}
.ws2e{word-spacing:4.218000px;}
.wsa3{word-spacing:4.275000px;}
.ws4c{word-spacing:4.389000px;}
.wsdb{word-spacing:4.446000px;}
.ws108{word-spacing:4.503000px;}
.ws33{word-spacing:4.560000px;}
.ws38{word-spacing:4.674000px;}
.wsa2{word-spacing:4.788000px;}
.ws11c{word-spacing:4.902000px;}
.ws30{word-spacing:4.959000px;}
.ws54{word-spacing:5.016000px;}
.ws20{word-spacing:5.073000px;}
.ws26{word-spacing:5.130000px;}
.ws1f{word-spacing:5.187000px;}
.wsc7{word-spacing:5.301000px;}
.wsec{word-spacing:5.358000px;}
.ws8f{word-spacing:5.415000px;}
.ws41{word-spacing:5.472000px;}
.ws39{word-spacing:5.529000px;}
.ws114{word-spacing:5.586000px;}
.ws7f{word-spacing:5.700000px;}
.ws4b{word-spacing:5.871000px;}
.ws8e{word-spacing:5.928000px;}
.ws80{word-spacing:5.985000px;}
.ws83{word-spacing:6.042000px;}
.ws68{word-spacing:6.099000px;}
.ws8c{word-spacing:6.156000px;}
.ws6d{word-spacing:6.213000px;}
.ws106{word-spacing:6.270000px;}
.ws10b{word-spacing:6.327000px;}
.ws53{word-spacing:6.384000px;}
.ws6e{word-spacing:6.498000px;}
.ws7a{word-spacing:6.555000px;}
.ws63{word-spacing:6.612000px;}
.ws37{word-spacing:6.726000px;}
.wsa{word-spacing:6.783000px;}
.ws8a{word-spacing:6.840000px;}
.ws120{word-spacing:6.897000px;}
.wsbb{word-spacing:6.954000px;}
.wse7{word-spacing:7.068000px;}
.ws82{word-spacing:7.125000px;}
.ws88{word-spacing:7.182000px;}
.ws9b{word-spacing:7.296000px;}
.ws4e{word-spacing:7.353000px;}
.ws17{word-spacing:7.467000px;}
.wsf5{word-spacing:7.638000px;}
.ws4f{word-spacing:7.752000px;}
.wsf6{word-spacing:7.980000px;}
.wsd9{word-spacing:8.379000px;}
.ws34{word-spacing:8.607000px;}
.ws84{word-spacing:8.721000px;}
.ws10f{word-spacing:8.778000px;}
.ws73{word-spacing:8.835000px;}
.ws9e{word-spacing:9.120000px;}
.wse6{word-spacing:9.177000px;}
.ws3c{word-spacing:9.291000px;}
.wsc5{word-spacing:9.405000px;}
.ws19{word-spacing:9.462000px;}
.ws64{word-spacing:9.747000px;}
.ws1c{word-spacing:9.804000px;}
.ws43{word-spacing:9.861000px;}
.ws52{word-spacing:10.032000px;}
.wsbc{word-spacing:10.089000px;}
.ws4d{word-spacing:10.146000px;}
.wsf{word-spacing:10.203000px;}
.wse9{word-spacing:10.374000px;}
.wsba{word-spacing:10.431000px;}
.wsde{word-spacing:10.488000px;}
.wsf8{word-spacing:10.545000px;}
.wsc6{word-spacing:10.602000px;}
.ws40{word-spacing:11.115000px;}
.ws122{word-spacing:11.229000px;}
.ws95{word-spacing:11.343000px;}
.ws107{word-spacing:11.457000px;}
.ws8d{word-spacing:11.799000px;}
.ws8{word-spacing:11.970000px;}
.wsc{word-spacing:12.255000px;}
.ws113{word-spacing:12.312000px;}
.ws3b{word-spacing:12.597000px;}
.ws115{word-spacing:12.711000px;}
.ws5a{word-spacing:12.939000px;}
.ws7d{word-spacing:13.053000px;}
.ws66{word-spacing:13.281000px;}
.wsea{word-spacing:13.338000px;}
.ws7b{word-spacing:13.509000px;}
.ws69{word-spacing:13.566000px;}
.ws57{word-spacing:13.737000px;}
.ws8b{word-spacing:13.851000px;}
.ws61{word-spacing:13.965000px;}
.ws9{word-spacing:14.364000px;}
.wsd0{word-spacing:14.557800px;}
.ws42{word-spacing:15.105000px;}
.ws47{word-spacing:15.219000px;}
.ws91{word-spacing:15.504000px;}
.ws7e{word-spacing:15.732000px;}
.ws81{word-spacing:15.903000px;}
.ws116{word-spacing:16.245000px;}
.wscb{word-spacing:18.081000px;}
.ws112{word-spacing:18.183000px;}
.ws85{word-spacing:18.582000px;}
.wsd6{word-spacing:20.337600px;}
.wsd2{word-spacing:27.274800px;}
.wsf0{word-spacing:46.687200px;}
.wscc{word-spacing:98.518800px;}
.wse4{word-spacing:109.837800px;}
.wsff{word-spacing:113.577600px;}
.wsf1{word-spacing:121.639800px;}
.wse5{word-spacing:138.445200px;}
.ws100{word-spacing:142.185600px;}
.wse3{word-spacing:143.621400px;}
.wse1{word-spacing:156.394200px;}
.wsfb{word-spacing:159.144000px;}
.wsfe{word-spacing:174.897600px;}
.wsfc{word-spacing:176.985600px;}
.ws102{word-spacing:180.201600px;}
.wsfd{word-spacing:189.154200px;}
.ws101{word-spacing:209.433600px;}
.wse2{word-spacing:239.079600px;}
.wsef{word-spacing:414.908700px;}
.wsc0{word-spacing:469.790400px;}
.wsc3{word-spacing:475.262400px;}
.wsc2{word-spacing:524.462400px;}
.wsc1{word-spacing:537.134400px;}
.wsbf{word-spacing:541.406400px;}
.wsb9{word-spacing:646.052400px;}
.wsb1{word-spacing:673.411800px;}
.wsb2{word-spacing:700.771800px;}
.wsb0{word-spacing:1022.694600px;}
.wsb8{word-spacing:1082.132400px;}
.wsb3{word-spacing:1126.244400px;}
.wsb7{word-spacing:1150.387800px;}
.wsb6{word-spacing:1157.107800px;}
.wsb5{word-spacing:1166.563800px;}
.wsb4{word-spacing:1171.603800px;}
._2f{margin-left:-109.200000px;}
._a{margin-left:-27.701400px;}
._6b{margin-left:-19.983000px;}
._d{margin-left:-14.496600px;}
._6e{margin-left:-11.005200px;}
._7{margin-left:-9.412800px;}
._6{margin-left:-7.938600px;}
._6d{margin-left:-6.720000px;}
._5{margin-left:-5.519400px;}
._2{margin-left:-4.099200px;}
._1{margin-left:-2.539800px;}
._0{margin-left:-1.440000px;}
._4{width:1.173000px;}
._3{width:2.539800px;}
._2e{width:3.600000px;}
._20{width:4.830000px;}
._2b{width:7.939800px;}
._2d{width:21.318000px;}
._21{width:28.060800px;}
._23{width:38.605800px;}
._22{width:41.056800px;}
._10{width:44.102400px;}
._f{width:48.238800px;}
._e{width:51.659400px;}
._44{width:60.515400px;}
._46{width:62.452200px;}
._45{width:63.654600px;}
._26{width:72.336600px;}
._43{width:73.599000px;}
._4d{width:85.441800px;}
._24{width:87.004800px;}
._9{width:89.970600px;}
._42{width:92.015400px;}
._25{width:93.571200px;}
._2a{width:95.327400px;}
._27{width:99.015000px;}
._55{width:100.626000px;}
._53{width:102.460800px;}
._54{width:103.627800px;}
._30{width:107.892000px;}
._5f{width:109.306800px;}
._60{width:116.865600px;}
._52{width:120.432600px;}
._5a{width:123.436200px;}
._69{width:125.817000px;}
._56{width:129.504000px;}
._58{width:131.293800px;}
._65{width:132.747000px;}
._61{width:134.112600px;}
._4c{width:137.518800px;}
._4a{width:138.865200px;}
._62{width:140.740800px;}
._2c{width:142.084200px;}
._49{width:143.293800px;}
._6a{width:147.528000px;}
._38{width:149.245200px;}
._63{width:153.744000px;}
._31{width:157.218600px;}
._57{width:159.472200px;}
._68{width:161.785800px;}
._4b{width:162.942000px;}
._37{width:164.166600px;}
._28{width:165.391800px;}
._5b{width:168.360000px;}
._3d{width:169.950600px;}
._64{width:170.976000px;}
._36{width:172.658400px;}
._48{width:174.192000px;}
._50{width:176.107800px;}
._1f{width:177.387000px;}
._4e{width:179.424000px;}
._66{width:180.661800px;}
._35{width:182.535600px;}
._5c{width:184.624800px;}
._51{width:187.254000px;}
._59{width:192.313200px;}
._4f{width:193.351800px;}
._1d{width:195.624000px;}
._5e{width:196.903200px;}
._39{width:198.559200px;}
._5d{width:204.841800px;}
._32{width:205.941600px;}
._47{width:209.079000px;}
._67{width:211.551600px;}
._34{width:226.624800px;}
._3b{width:256.733400px;}
._29{width:264.037200px;}
._33{width:302.241600px;}
._3a{width:317.793600px;}
._3e{width:432.277800px;}
._3c{width:477.786000px;}
._41{width:497.256600px;}
._1c{width:525.369600px;}
._40{width:570.894900px;}
._12{width:655.128000px;}
._8{width:800.208000px;}
._6c{width:802.704000px;}
._3f{width:803.808000px;}
._c{width:805.392000px;}
._1e{width:806.976000px;}
._11{width:807.984000px;}
._b{width:812.448000px;}
._13{width:1128.308400px;}
._1a{width:1152.499800px;}
._19{width:1154.995800px;}
._1b{width:1156.003800px;}
._18{width:1158.259800px;}
._15{width:1161.187800px;}
._14{width:1163.203800px;}
._16{width:1166.851800px;}
._17{width:1169.059800px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:33.060000px;}
.fsa{font-size:36.000000px;}
.fsd{font-size:39.000000px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fsb{font-size:108.000000px;}
.fs7{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.ye9{bottom:2.249550px;}
.ye5{bottom:3.750600px;}
.yf1{bottom:6.749100px;}
.ye8{bottom:7.499550px;}
.yf5{bottom:10.499850px;}
.ye3{bottom:17.391300px;}
.ye6{bottom:22.500600px;}
.y6{bottom:35.925007px;}
.y42{bottom:57.084600px;}
.y5{bottom:66.525004px;}
.y41{bottom:70.584600px;}
.ycd{bottom:80.423100px;}
.yf0{bottom:90.174000px;}
.yee{bottom:96.924600px;}
.y4{bottom:97.125005px;}
.y129{bottom:99.921150px;}
.y11f{bottom:99.921300px;}
.y78{bottom:99.923100px;}
.ya9{bottom:99.923250px;}
.yef{bottom:102.173100px;}
.y11c{bottom:102.923100px;}
.y127{bottom:105.921150px;}
.yed{bottom:108.548100px;}
.y17a{bottom:110.207850px;}
.y48{bottom:114.923250px;}
.y11e{bottom:116.421300px;}
.y77{bottom:119.423100px;}
.ya8{bottom:119.423250px;}
.y11b{bottom:120.923100px;}
.yba{bottom:121.547250px;}
.y179{bottom:126.707850px;}
.y13e{bottom:127.673100px;}
.yb3{bottom:129.173100px;}
.y47{bottom:131.423250px;}
.yb9{bottom:138.047250px;}
.y76{bottom:138.923100px;}
.ya7{bottom:138.923250px;}
.y23{bottom:139.264499px;}
.y178{bottom:143.207850px;}
.ycc{bottom:144.107550px;}
.y13d{bottom:144.173100px;}
.y46{bottom:147.923250px;}
.yb2{bottom:148.673100px;}
.y75{bottom:158.423100px;}
.ya6{bottom:158.423250px;}
.y11a{bottom:158.837400px;}
.y177{bottom:159.707850px;}
.y13c{bottom:160.673100px;}
.y45{bottom:164.423250px;}
.ycb{bottom:165.155550px;}
.yb1{bottom:168.173100px;}
.y176{bottom:176.207850px;}
.y13b{bottom:177.173100px;}
.y74{bottom:177.923100px;}
.ya5{bottom:177.923250px;}
.y119{bottom:179.885250px;}
.y44{bottom:180.923250px;}
.yca{bottom:186.203550px;}
.yb0{bottom:187.673100px;}
.y175{bottom:192.707850px;}
.y13a{bottom:193.673100px;}
.y1a{bottom:196.933500px;}
.y73{bottom:197.423100px;}
.y43{bottom:197.423250px;}
.y118{bottom:200.933250px;}
.yaf{bottom:207.173100px;}
.yc9{bottom:207.251550px;}
.y174{bottom:209.207850px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y139{bottom:210.173100px;}
.y72{bottom:216.923100px;}
.ya4{bottom:216.923250px;}
.y128{bottom:221.025600px;}
.y117{bottom:221.981250px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y173{bottom:225.707850px;}
.yae{bottom:226.673100px;}
.yc8{bottom:228.299550px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y71{bottom:236.423100px;}
.ya3{bottom:236.423250px;}
.y172{bottom:242.207850px;}
.y116{bottom:243.029250px;}
.y138{bottom:243.173100px;}
.yad{bottom:246.173100px;}
.yc7{bottom:249.347550px;}
.y70{bottom:255.923100px;}
.ya2{bottom:255.923250px;}
.y171{bottom:258.707850px;}
.y137{bottom:259.673100px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y115{bottom:264.077250px;}
.yac{bottom:265.673100px;}
.yc6{bottom:270.395400px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y170{bottom:275.207850px;}
.y6f{bottom:275.423100px;}
.ya1{bottom:275.423250px;}
.y136{bottom:276.173100px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y3f{bottom:285.173100px;}
.y114{bottom:285.875250px;}
.yc5{bottom:291.443400px;}
.y16f{bottom:291.707850px;}
.y135{bottom:292.673100px;}
.y6e{bottom:294.923100px;}
.ya0{bottom:294.923250px;}
.yec{bottom:300.173100px;}
.y3e{bottom:304.673100px;}
.y16e{bottom:308.207850px;}
.y134{bottom:309.173100px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.yc4{bottom:312.491400px;}
.y6d{bottom:314.423100px;}
.y9f{bottom:314.423250px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y3d{bottom:324.173100px;}
.y16d{bottom:324.707850px;}
.y133{bottom:325.673100px;}
.yc3{bottom:333.539400px;}
.y6c{bottom:333.923100px;}
.y9e{bottom:333.923250px;}
.y16c{bottom:341.207850px;}
.y132{bottom:342.173100px;}
.y3c{bottom:343.673100px;}
.y11{bottom:348.133500px;}
.y6b{bottom:353.423100px;}
.y9d{bottom:353.423250px;}
.yc2{bottom:354.587400px;}
.y16b{bottom:357.707850px;}
.y131{bottom:358.673100px;}
.y3b{bottom:363.173100px;}
.y113{bottom:363.173250px;}
.y6a{bottom:372.923100px;}
.y9c{bottom:372.923250px;}
.y16a{bottom:374.207850px;}
.y130{bottom:375.173100px;}
.yc1{bottom:375.635400px;}
.ye0{bottom:376.241400px;}
.yab{bottom:381.923100px;}
.y3a{bottom:382.673100px;}
.y112{bottom:382.673250px;}
.y10{bottom:386.785499px;}
.y169{bottom:390.707850px;}
.y12f{bottom:391.673100px;}
.y69{bottom:392.423100px;}
.y9b{bottom:392.423250px;}
.ydf{bottom:392.741400px;}
.yc0{bottom:396.683250px;}
.yaa{bottom:398.423100px;}
.yb8{bottom:402.173100px;}
.y111{bottom:402.173250px;}
.y168{bottom:407.207850px;}
.yf{bottom:408.044999px;}
.y12e{bottom:408.173100px;}
.yde{bottom:409.241400px;}
.y68{bottom:411.923100px;}
.y9a{bottom:411.923250px;}
.ybf{bottom:417.731250px;}
.y39{bottom:421.673100px;}
.y110{bottom:421.673250px;}
.y167{bottom:423.707850px;}
.y12d{bottom:424.673100px;}
.ydd{bottom:425.741400px;}
.y67{bottom:431.423100px;}
.y99{bottom:431.423250px;}
.ybe{bottom:438.779250px;}
.y166{bottom:440.207850px;}
.yb7{bottom:441.173100px;}
.y10f{bottom:441.173250px;}
.ydc{bottom:442.241400px;}
.y66{bottom:450.923100px;}
.y98{bottom:450.923250px;}
.y165{bottom:456.707850px;}
.ydb{bottom:458.741400px;}
.ybd{bottom:459.827250px;}
.yb6{bottom:460.673100px;}
.y10e{bottom:460.673250px;}
.y65{bottom:470.423100px;}
.y97{bottom:470.423250px;}
.y164{bottom:473.207850px;}
.yda{bottom:479.789400px;}
.yeb{bottom:480.173100px;}
.y10d{bottom:480.173250px;}
.ybc{bottom:480.875250px;}
.ye{bottom:484.864502px;}
.y163{bottom:489.707850px;}
.y64{bottom:489.923100px;}
.y96{bottom:489.923250px;}
.y38{bottom:499.673100px;}
.y10c{bottom:499.673250px;}
.yd9{bottom:500.837400px;}
.yd{bottom:502.864502px;}
.y162{bottom:506.207850px;}
.y63{bottom:509.423100px;}
.y95{bottom:509.423250px;}
.yd8{bottom:517.337400px;}
.y37{bottom:519.173100px;}
.y10b{bottom:519.173250px;}
.yc{bottom:520.864502px;}
.y161{bottom:522.707850px;}
.y62{bottom:528.923100px;}
.y94{bottom:528.923250px;}
.yd7{bottom:533.837400px;}
.yea{bottom:538.673100px;}
.y10a{bottom:538.673250px;}
.yb{bottom:538.864499px;}
.y160{bottom:539.207850px;}
.y61{bottom:548.423100px;}
.y93{bottom:548.423250px;}
.ye7{bottom:549.799500px;}
.yd6{bottom:550.337400px;}
.y15f{bottom:555.707850px;}
.ya{bottom:556.864499px;}
.y36{bottom:558.173100px;}
.y109{bottom:558.173250px;}
.yd5{bottom:566.837400px;}
.y60{bottom:567.923100px;}
.y92{bottom:567.923250px;}
.y15e{bottom:572.207850px;}
.y35{bottom:577.673100px;}
.y108{bottom:577.673250px;}
.y5f{bottom:587.423100px;}
.y91{bottom:587.423250px;}
.yd4{bottom:587.885400px;}
.y15d{bottom:588.707850px;}
.y34{bottom:597.173100px;}
.y107{bottom:597.173250px;}
.ybb{bottom:600.173100px;}
.y15c{bottom:605.207850px;}
.y5e{bottom:606.923100px;}
.yd3{bottom:608.933250px;}
.y90{bottom:612.923250px;}
.y33{bottom:616.673100px;}
.y106{bottom:616.673250px;}
.y15b{bottom:621.707850px;}
.yd2{bottom:625.433250px;}
.y5d{bottom:626.423100px;}
.y79{bottom:632.423100px;}
.y32{bottom:636.173100px;}
.y105{bottom:636.173250px;}
.y15a{bottom:638.207850px;}
.y9{bottom:645.510000px;}
.y5c{bottom:645.923100px;}
.y8f{bottom:645.923250px;}
.yd1{bottom:646.481250px;}
.y159{bottom:654.707850px;}
.y31{bottom:655.673100px;}
.y104{bottom:655.673250px;}
.y5b{bottom:665.423100px;}
.y8e{bottom:665.423250px;}
.y8{bottom:666.771000px;}
.yd0{bottom:667.529250px;}
.y158{bottom:671.207850px;}
.y30{bottom:675.173100px;}
.y103{bottom:675.173250px;}
.y5a{bottom:684.923100px;}
.y8d{bottom:684.923250px;}
.y157{bottom:687.707850px;}
.ycf{bottom:688.577250px;}
.y2f{bottom:694.673100px;}
.y102{bottom:694.673250px;}
.y156{bottom:704.207850px;}
.y59{bottom:704.423100px;}
.y8c{bottom:704.423250px;}
.yce{bottom:709.625250px;}
.y2e{bottom:714.173100px;}
.y101{bottom:714.173250px;}
.y155{bottom:720.707850px;}
.ye2{bottom:723.922500px;}
.y58{bottom:723.923100px;}
.y8b{bottom:723.923250px;}
.y7{bottom:726.298500px;}
.y12a{bottom:726.923100px;}
.y2d{bottom:733.673100px;}
.y100{bottom:733.673250px;}
.y154{bottom:737.207850px;}
.ye4{bottom:741.173100px;}
.y57{bottom:743.423100px;}
.y8a{bottom:743.423250px;}
.ye1{bottom:746.423100px;}
.y3{bottom:752.599495px;}
.y11d{bottom:753.173100px;}
.yff{bottom:753.173250px;}
.y153{bottom:753.707850px;}
.y56{bottom:762.923100px;}
.y89{bottom:762.923250px;}
.y152{bottom:770.207850px;}
.yfe{bottom:772.673250px;}
.y2c{bottom:782.423100px;}
.y88{bottom:782.423250px;}
.y151{bottom:786.707850px;}
.yfd{bottom:792.173250px;}
.y2b{bottom:801.923100px;}
.y87{bottom:801.923250px;}
.y150{bottom:803.207850px;}
.y126{bottom:806.445750px;}
.y12c{bottom:811.673100px;}
.yfc{bottom:811.673250px;}
.y14f{bottom:819.707850px;}
.y55{bottom:821.423100px;}
.y86{bottom:821.423250px;}
.y125{bottom:824.445750px;}
.yfb{bottom:831.173250px;}
.y14e{bottom:836.207850px;}
.y54{bottom:840.923100px;}
.y85{bottom:840.923250px;}
.y124{bottom:849.195750px;}
.yfa{bottom:850.673250px;}
.y14d{bottom:852.707850px;}
.y2a{bottom:857.423100px;}
.y53{bottom:860.423100px;}
.y84{bottom:860.423250px;}
.y123{bottom:868.547250px;}
.y14c{bottom:869.207850px;}
.yf9{bottom:870.173250px;}
.y2{bottom:879.369000px;}
.y52{bottom:879.923100px;}
.y83{bottom:879.923250px;}
.y14b{bottom:885.707850px;}
.y122{bottom:888.273750px;}
.yb5{bottom:888.923100px;}
.yf8{bottom:889.673250px;}
.y29{bottom:896.423100px;}
.y51{bottom:899.423100px;}
.y82{bottom:899.423250px;}
.y14a{bottom:902.207850px;}
.yb4{bottom:905.423100px;}
.yf7{bottom:909.173250px;}
.y121{bottom:909.321750px;}
.y149{bottom:918.707850px;}
.y50{bottom:918.923100px;}
.y81{bottom:918.923250px;}
.y148{bottom:935.207850px;}
.y28{bottom:935.423100px;}
.y4f{bottom:938.423100px;}
.y80{bottom:938.423250px;}
.y120{bottom:941.423250px;}
.yf6{bottom:948.173250px;}
.y147{bottom:951.707850px;}
.y4e{bottom:957.923100px;}
.y7f{bottom:957.923250px;}
.y1{bottom:966.726000px;}
.y12b{bottom:967.673100px;}
.y146{bottom:968.207850px;}
.y27{bottom:974.423100px;}
.y4d{bottom:977.423100px;}
.y7e{bottom:977.423250px;}
.y145{bottom:984.707850px;}
.y4c{bottom:996.923100px;}
.y7d{bottom:996.923250px;}
.y144{bottom:1001.207850px;}
.y26{bottom:1013.423100px;}
.y4b{bottom:1016.423100px;}
.y7c{bottom:1016.423250px;}
.y143{bottom:1017.707850px;}
.y142{bottom:1034.207850px;}
.y25{bottom:1035.923100px;}
.y7b{bottom:1035.923250px;}
.yf4{bottom:1044.793500px;}
.yf3{bottom:1050.044850px;}
.y141{bottom:1050.707850px;}
.y4a{bottom:1055.423100px;}
.y7a{bottom:1055.423250px;}
.yf2{bottom:1061.668350px;}
.y140{bottom:1067.207850px;}
.y49{bottom:1074.923100px;}
.y40{bottom:1074.923250px;}
.y13f{bottom:1083.707850px;}
.y24{bottom:1130.598450px;}
.h1d{height:21.000000px;}
.h1b{height:27.993164px;}
.h24{height:29.679000px;}
.h21{height:30.000000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h1f{height:32.550000px;}
.h20{height:34.498500px;}
.h25{height:36.465000px;}
.h17{height:36.528000px;}
.hf{height:37.200000px;}
.h1c{height:37.990723px;}
.h19{height:39.000000px;}
.h13{height:39.270000px;}
.h18{height:43.639935px;}
.h26{height:44.061000px;}
.h10{height:44.175000px;}
.h22{height:44.431500px;}
.hc{height:44.880000px;}
.h7{height:45.960000px;}
.h23{height:46.854199px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h15{height:48.825000px;}
.h16{height:48.975000px;}
.h12{height:54.792000px;}
.h2{height:55.152000px;}
.h14{height:56.880000px;}
.h1e{height:65.175000px;}
.hd{height:67.320000px;}
.h11{height:68.490000px;}
.h5{height:78.132000px;}
.h1a{height:82.686194px;}
.he{height:100.452000px;}
.h4{height:119.055004px;}
.hb{height:1190.250000px;}
.ha{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w7{width:39.334500px;}
.w4{width:76.498500px;}
.w6{width:96.000000px;}
.w5{width:195.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:9.468000px;}
.x16{left:16.546200px;}
.x11{left:24.374250px;}
.x12{left:31.499250px;}
.x17{left:40.405500px;}
.x9{left:76.535400px;}
.xe{left:82.535400px;}
.x1{left:102.045000px;}
.x13{left:104.198700px;}
.x2{left:106.297500px;}
.x8{left:113.952750px;}
.x10{left:115.922250px;}
.xb{left:122.518950px;}
.x14{left:129.710400px;}
.x1a{left:138.937950px;}
.x1b{left:157.219200px;}
.x1f{left:160.106550px;}
.x5{left:165.472500px;}
.xd{left:166.677150px;}
.x19{left:168.333150px;}
.x6{left:172.564500px;}
.x1c{left:175.584000px;}
.x1d{left:177.463500px;}
.xa{left:191.338650px;}
.x4{left:203.484001px;}
.x1e{left:205.162200px;}
.x20{left:208.672650px;}
.xc{left:212.386200px;}
.x7{left:214.735500px;}
.x21{left:230.470650px;}
.x22{left:246.970650px;}
.x23{left:268.018650px;}
.x24{left:284.518650px;}
.x25{left:305.566650px;}
.x26{left:322.066650px;}
.x15{left:341.529000px;}
.x27{left:343.114500px;}
.x28{left:359.614500px;}
.x29{left:376.114500px;}
.x2a{left:397.162500px;}
.x2b{left:413.662500px;}
.x2c{left:430.162500px;}
.x2d{left:451.210500px;}
.x3{left:454.959000px;}
.x2e{left:467.710500px;}
.x2f{left:488.758500px;}
.x30{left:505.258500px;}
.x31{left:521.758500px;}
.x32{left:542.806500px;}
.x33{left:559.306500px;}
.x34{left:575.806500px;}
.x35{left:596.854500px;}
.x36{left:613.354500px;}
.x37{left:634.402350px;}
.x38{left:660.652350px;}
.x39{left:678.652350px;}
.x3a{left:696.652350px;}
.xf{left:700.204800px;}
@media print{
.v7{vertical-align:-32.720000pt;}
.v8{vertical-align:-18.666667pt;}
.v4{vertical-align:-16.720000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.266667pt;}
.v2{vertical-align:10.666667pt;}
.v5{vertical-align:16.720000pt;}
.v6{vertical-align:18.666667pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-3.413333pt;}
.ls2c{letter-spacing:-2.026667pt;}
.ls11{letter-spacing:-1.920000pt;}
.lsa{letter-spacing:-1.520000pt;}
.lsb{letter-spacing:-1.013333pt;}
.ls13{letter-spacing:-0.853333pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.506667pt;}
.ls21{letter-spacing:-0.456000pt;}
.lse{letter-spacing:-0.426667pt;}
.ls7{letter-spacing:-0.405333pt;}
.ls2b{letter-spacing:-0.400000pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.341333pt;}
.ls28{letter-spacing:-0.336000pt;}
.ls9{letter-spacing:-0.304000pt;}
.ls4{letter-spacing:-0.298667pt;}
.ls2d{letter-spacing:-0.277333pt;}
.ls25{letter-spacing:-0.074667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000107pt;}
.ls1d{letter-spacing:0.000160pt;}
.ls19{letter-spacing:0.000267pt;}
.ls16{letter-spacing:0.000533pt;}
.ls14{letter-spacing:0.112000pt;}
.ls8{letter-spacing:0.253333pt;}
.ls1a{letter-spacing:0.505600pt;}
.ls18{letter-spacing:0.506133pt;}
.ls27{letter-spacing:0.734667pt;}
.ls2{letter-spacing:0.746667pt;}
.ls6{letter-spacing:0.853333pt;}
.ls1b{letter-spacing:1.012267pt;}
.ls17{letter-spacing:1.012800pt;}
.ls1e{letter-spacing:1.355200pt;}
.ls22{letter-spacing:1.368000pt;}
.lsd{letter-spacing:2.083733pt;}
.ls1{letter-spacing:2.346667pt;}
.ls26{letter-spacing:26.144000pt;}
.ls20{letter-spacing:26.194667pt;}
.ls15{letter-spacing:30.501333pt;}
.ls24{letter-spacing:31.322667pt;}
.ls23{letter-spacing:52.845333pt;}
.ls2e{letter-spacing:79.998933pt;}
.ls5{letter-spacing:79.999467pt;}
.ls2a{letter-spacing:153.386667pt;}
.ls1f{letter-spacing:159.212267pt;}
.ls29{letter-spacing:178.640000pt;}
.wsd7{word-spacing:-178.677333pt;}
.ws2{word-spacing:-28.746667pt;}
.wsd3{word-spacing:-27.734933pt;}
.wsd1{word-spacing:-23.567467pt;}
.ws11b{word-spacing:-18.000000pt;}
.wse0{word-spacing:-17.600000pt;}
.wscf{word-spacing:-12.768000pt;}
.wsee{word-spacing:-11.450667pt;}
.ws5{word-spacing:-11.400000pt;}
.ws5c{word-spacing:-11.096000pt;}
.ws3f{word-spacing:-10.994667pt;}
.wsce{word-spacing:-10.944000pt;}
.ws4{word-spacing:-10.893333pt;}
.wsa4{word-spacing:-9.880000pt;}
.ws3{word-spacing:-9.600000pt;}
.wsa5{word-spacing:-8.960000pt;}
.wsc4{word-spacing:-8.746667pt;}
.wsdf{word-spacing:-8.400000pt;}
.ws1{word-spacing:-8.352000pt;}
.wsd5{word-spacing:-8.064000pt;}
.wsd4{word-spacing:-7.346667pt;}
.wscd{word-spacing:-6.612000pt;}
.ws6c{word-spacing:-6.536000pt;}
.ws9f{word-spacing:-5.522667pt;}
.ws10e{word-spacing:-5.269333pt;}
.ws62{word-spacing:-4.813333pt;}
.ws9d{word-spacing:-4.610667pt;}
.wsdd{word-spacing:-3.850667pt;}
.ws79{word-spacing:-3.800000pt;}
.ws46{word-spacing:-3.698667pt;}
.ws9a{word-spacing:-3.648000pt;}
.wsf3{word-spacing:-3.496000pt;}
.wsed{word-spacing:-3.445333pt;}
.ws99{word-spacing:-3.394667pt;}
.ws11d{word-spacing:-3.242667pt;}
.ws12{word-spacing:-3.141333pt;}
.ws11f{word-spacing:-3.090667pt;}
.ws27{word-spacing:-3.040000pt;}
.ws1d{word-spacing:-2.888000pt;}
.ws6f{word-spacing:-2.786667pt;}
.ws1a{word-spacing:-2.634667pt;}
.ws75{word-spacing:-2.584000pt;}
.wse{word-spacing:-2.482667pt;}
.ws15{word-spacing:-2.432000pt;}
.ws24{word-spacing:-2.381333pt;}
.ws10a{word-spacing:-2.280000pt;}
.ws11e{word-spacing:-2.229333pt;}
.ws86{word-spacing:-2.128000pt;}
.ws2a{word-spacing:-2.026667pt;}
.ws3d{word-spacing:-1.976000pt;}
.ws3a{word-spacing:-1.925333pt;}
.ws48{word-spacing:-1.874667pt;}
.ws105{word-spacing:-1.824000pt;}
.wsa1{word-spacing:-1.773333pt;}
.ws44{word-spacing:-1.722667pt;}
.ws5b{word-spacing:-1.672000pt;}
.wsfa{word-spacing:-1.664000pt;}
.ws60{word-spacing:-1.570667pt;}
.ws111{word-spacing:-1.520000pt;}
.ws22{word-spacing:-1.469333pt;}
.ws45{word-spacing:-1.418667pt;}
.ws76{word-spacing:-1.368000pt;}
.ws50{word-spacing:-1.317333pt;}
.ws6{word-spacing:-1.280000pt;}
.ws92{word-spacing:-1.216000pt;}
.wsad{word-spacing:-1.114667pt;}
.ws2d{word-spacing:-1.064000pt;}
.wsd8{word-spacing:-1.013333pt;}
.ws121{word-spacing:-0.962667pt;}
.ws71{word-spacing:-0.912000pt;}
.wsc9{word-spacing:-0.853333pt;}
.ws11{word-spacing:-0.760000pt;}
.wsa9{word-spacing:-0.725333pt;}
.wsc8{word-spacing:-0.709333pt;}
.wsf4{word-spacing:-0.658667pt;}
.wsa8{word-spacing:-0.608000pt;}
.ws10c{word-spacing:-0.506667pt;}
.wsa0{word-spacing:-0.456000pt;}
.ws16{word-spacing:-0.426667pt;}
.ws49{word-spacing:-0.405333pt;}
.wsca{word-spacing:-0.384000pt;}
.ws6a{word-spacing:-0.354667pt;}
.ws7{word-spacing:-0.304000pt;}
.ws104{word-spacing:-0.213333pt;}
.wsda{word-spacing:-0.152000pt;}
.wsaf{word-spacing:-0.128000pt;}
.ws4a{word-spacing:-0.101333pt;}
.ws2f{word-spacing:-0.050667pt;}
.ws0{word-spacing:0.000000pt;}
.ws11a{word-spacing:0.050667pt;}
.ws67{word-spacing:0.152000pt;}
.wsd{word-spacing:0.253333pt;}
.ws10{word-spacing:0.304000pt;}
.ws5d{word-spacing:0.354667pt;}
.ws1e{word-spacing:0.405333pt;}
.ws103{word-spacing:0.426667pt;}
.ws35{word-spacing:0.456000pt;}
.wsab{word-spacing:0.506667pt;}
.ws109{word-spacing:0.557333pt;}
.ws72{word-spacing:0.608000pt;}
.ws78{word-spacing:0.658667pt;}
.ws3e{word-spacing:0.709333pt;}
.ws29{word-spacing:0.760000pt;}
.ws2b{word-spacing:0.810667pt;}
.ws25{word-spacing:0.861333pt;}
.wsae{word-spacing:0.962667pt;}
.wsac{word-spacing:1.013333pt;}
.ws90{word-spacing:1.064000pt;}
.ws5e{word-spacing:1.114667pt;}
.wsf2{word-spacing:1.165333pt;}
.ws110{word-spacing:1.216000pt;}
.ws87{word-spacing:1.266667pt;}
.ws1b{word-spacing:1.317333pt;}
.ws94{word-spacing:1.368000pt;}
.wsf9{word-spacing:1.418667pt;}
.wsbe{word-spacing:1.469333pt;}
.ws23{word-spacing:1.520000pt;}
.ws31{word-spacing:1.570667pt;}
.ws77{word-spacing:1.621333pt;}
.wsa6{word-spacing:1.722667pt;}
.ws117{word-spacing:1.824000pt;}
.ws93{word-spacing:1.925333pt;}
.ws58{word-spacing:1.976000pt;}
.ws5f{word-spacing:2.026667pt;}
.ws7c{word-spacing:2.077333pt;}
.wsb{word-spacing:2.128000pt;}
.ws65{word-spacing:2.178667pt;}
.wsf7{word-spacing:2.229333pt;}
.ws21{word-spacing:2.280000pt;}
.ws70{word-spacing:2.330667pt;}
.ws36{word-spacing:2.381333pt;}
.ws51{word-spacing:2.432000pt;}
.ws10d{word-spacing:2.447200pt;}
.wse8{word-spacing:2.482667pt;}
.ws6b{word-spacing:2.533333pt;}
.wsa7{word-spacing:2.584000pt;}
.ws98{word-spacing:2.634667pt;}
.ws14{word-spacing:2.685333pt;}
.ws59{word-spacing:2.736000pt;}
.ws118{word-spacing:2.786667pt;}
.ws18{word-spacing:2.888000pt;}
.ws56{word-spacing:2.938667pt;}
.ws74{word-spacing:2.989333pt;}
.ws13{word-spacing:3.040000pt;}
.wsdc{word-spacing:3.090667pt;}
.ws89{word-spacing:3.141333pt;}
.ws32{word-spacing:3.192000pt;}
.ws28{word-spacing:3.242667pt;}
.ws2c{word-spacing:3.344000pt;}
.wsbd{word-spacing:3.394667pt;}
.wsaa{word-spacing:3.445333pt;}
.ws119{word-spacing:3.496000pt;}
.wseb{word-spacing:3.546667pt;}
.ws97{word-spacing:3.597333pt;}
.ws55{word-spacing:3.648000pt;}
.ws9c{word-spacing:3.669333pt;}
.ws96{word-spacing:3.698667pt;}
.ws2e{word-spacing:3.749333pt;}
.wsa3{word-spacing:3.800000pt;}
.ws4c{word-spacing:3.901333pt;}
.wsdb{word-spacing:3.952000pt;}
.ws108{word-spacing:4.002667pt;}
.ws33{word-spacing:4.053333pt;}
.ws38{word-spacing:4.154667pt;}
.wsa2{word-spacing:4.256000pt;}
.ws11c{word-spacing:4.357333pt;}
.ws30{word-spacing:4.408000pt;}
.ws54{word-spacing:4.458667pt;}
.ws20{word-spacing:4.509333pt;}
.ws26{word-spacing:4.560000pt;}
.ws1f{word-spacing:4.610667pt;}
.wsc7{word-spacing:4.712000pt;}
.wsec{word-spacing:4.762667pt;}
.ws8f{word-spacing:4.813333pt;}
.ws41{word-spacing:4.864000pt;}
.ws39{word-spacing:4.914667pt;}
.ws114{word-spacing:4.965333pt;}
.ws7f{word-spacing:5.066667pt;}
.ws4b{word-spacing:5.218667pt;}
.ws8e{word-spacing:5.269333pt;}
.ws80{word-spacing:5.320000pt;}
.ws83{word-spacing:5.370667pt;}
.ws68{word-spacing:5.421333pt;}
.ws8c{word-spacing:5.472000pt;}
.ws6d{word-spacing:5.522667pt;}
.ws106{word-spacing:5.573333pt;}
.ws10b{word-spacing:5.624000pt;}
.ws53{word-spacing:5.674667pt;}
.ws6e{word-spacing:5.776000pt;}
.ws7a{word-spacing:5.826667pt;}
.ws63{word-spacing:5.877333pt;}
.ws37{word-spacing:5.978667pt;}
.wsa{word-spacing:6.029333pt;}
.ws8a{word-spacing:6.080000pt;}
.ws120{word-spacing:6.130667pt;}
.wsbb{word-spacing:6.181333pt;}
.wse7{word-spacing:6.282667pt;}
.ws82{word-spacing:6.333333pt;}
.ws88{word-spacing:6.384000pt;}
.ws9b{word-spacing:6.485333pt;}
.ws4e{word-spacing:6.536000pt;}
.ws17{word-spacing:6.637333pt;}
.wsf5{word-spacing:6.789333pt;}
.ws4f{word-spacing:6.890667pt;}
.wsf6{word-spacing:7.093333pt;}
.wsd9{word-spacing:7.448000pt;}
.ws34{word-spacing:7.650667pt;}
.ws84{word-spacing:7.752000pt;}
.ws10f{word-spacing:7.802667pt;}
.ws73{word-spacing:7.853333pt;}
.ws9e{word-spacing:8.106667pt;}
.wse6{word-spacing:8.157333pt;}
.ws3c{word-spacing:8.258667pt;}
.wsc5{word-spacing:8.360000pt;}
.ws19{word-spacing:8.410667pt;}
.ws64{word-spacing:8.664000pt;}
.ws1c{word-spacing:8.714667pt;}
.ws43{word-spacing:8.765333pt;}
.ws52{word-spacing:8.917333pt;}
.wsbc{word-spacing:8.968000pt;}
.ws4d{word-spacing:9.018667pt;}
.wsf{word-spacing:9.069333pt;}
.wse9{word-spacing:9.221333pt;}
.wsba{word-spacing:9.272000pt;}
.wsde{word-spacing:9.322667pt;}
.wsf8{word-spacing:9.373333pt;}
.wsc6{word-spacing:9.424000pt;}
.ws40{word-spacing:9.880000pt;}
.ws122{word-spacing:9.981333pt;}
.ws95{word-spacing:10.082667pt;}
.ws107{word-spacing:10.184000pt;}
.ws8d{word-spacing:10.488000pt;}
.ws8{word-spacing:10.640000pt;}
.wsc{word-spacing:10.893333pt;}
.ws113{word-spacing:10.944000pt;}
.ws3b{word-spacing:11.197333pt;}
.ws115{word-spacing:11.298667pt;}
.ws5a{word-spacing:11.501333pt;}
.ws7d{word-spacing:11.602667pt;}
.ws66{word-spacing:11.805333pt;}
.wsea{word-spacing:11.856000pt;}
.ws7b{word-spacing:12.008000pt;}
.ws69{word-spacing:12.058667pt;}
.ws57{word-spacing:12.210667pt;}
.ws8b{word-spacing:12.312000pt;}
.ws61{word-spacing:12.413333pt;}
.ws9{word-spacing:12.768000pt;}
.wsd0{word-spacing:12.940267pt;}
.ws42{word-spacing:13.426667pt;}
.ws47{word-spacing:13.528000pt;}
.ws91{word-spacing:13.781333pt;}
.ws7e{word-spacing:13.984000pt;}
.ws81{word-spacing:14.136000pt;}
.ws116{word-spacing:14.440000pt;}
.wscb{word-spacing:16.072000pt;}
.ws112{word-spacing:16.162667pt;}
.ws85{word-spacing:16.517333pt;}
.wsd6{word-spacing:18.077867pt;}
.wsd2{word-spacing:24.244267pt;}
.wsf0{word-spacing:41.499733pt;}
.wscc{word-spacing:87.572267pt;}
.wse4{word-spacing:97.633600pt;}
.wsff{word-spacing:100.957867pt;}
.wsf1{word-spacing:108.124267pt;}
.wse5{word-spacing:123.062400pt;}
.ws100{word-spacing:126.387200pt;}
.wse3{word-spacing:127.663467pt;}
.wse1{word-spacing:139.017067pt;}
.wsfb{word-spacing:141.461333pt;}
.wsfe{word-spacing:155.464533pt;}
.wsfc{word-spacing:157.320533pt;}
.ws102{word-spacing:160.179200pt;}
.wsfd{word-spacing:168.137067pt;}
.ws101{word-spacing:186.163200pt;}
.wse2{word-spacing:212.515200pt;}
.wsef{word-spacing:368.807733pt;}
.wsc0{word-spacing:417.591467pt;}
.wsc3{word-spacing:422.455467pt;}
.wsc2{word-spacing:466.188800pt;}
.wsc1{word-spacing:477.452800pt;}
.wsbf{word-spacing:481.250133pt;}
.wsb9{word-spacing:574.268800pt;}
.wsb1{word-spacing:598.588267pt;}
.wsb2{word-spacing:622.908267pt;}
.wsb0{word-spacing:909.061867pt;}
.wsb8{word-spacing:961.895467pt;}
.wsb3{word-spacing:1001.106133pt;}
.wsb7{word-spacing:1022.566933pt;}
.wsb6{word-spacing:1028.540267pt;}
.wsb5{word-spacing:1036.945600pt;}
.wsb4{word-spacing:1041.425600pt;}
._2f{margin-left:-97.066667pt;}
._a{margin-left:-24.623467pt;}
._6b{margin-left:-17.762667pt;}
._d{margin-left:-12.885867pt;}
._6e{margin-left:-9.782400pt;}
._7{margin-left:-8.366933pt;}
._6{margin-left:-7.056533pt;}
._6d{margin-left:-5.973333pt;}
._5{margin-left:-4.906133pt;}
._2{margin-left:-3.643733pt;}
._1{margin-left:-2.257600pt;}
._0{margin-left:-1.280000pt;}
._4{width:1.042667pt;}
._3{width:2.257600pt;}
._2e{width:3.200000pt;}
._20{width:4.293333pt;}
._2b{width:7.057600pt;}
._2d{width:18.949333pt;}
._21{width:24.942933pt;}
._23{width:34.316267pt;}
._22{width:36.494933pt;}
._10{width:39.202133pt;}
._f{width:42.878933pt;}
._e{width:45.919467pt;}
._44{width:53.791467pt;}
._46{width:55.513067pt;}
._45{width:56.581867pt;}
._26{width:64.299200pt;}
._43{width:65.421333pt;}
._4d{width:75.948267pt;}
._24{width:77.337600pt;}
._9{width:79.973867pt;}
._42{width:81.791467pt;}
._25{width:83.174400pt;}
._2a{width:84.735467pt;}
._27{width:88.013333pt;}
._55{width:89.445333pt;}
._53{width:91.076267pt;}
._54{width:92.113600pt;}
._30{width:95.904000pt;}
._5f{width:97.161600pt;}
._60{width:103.880533pt;}
._52{width:107.051200pt;}
._5a{width:109.721067pt;}
._69{width:111.837333pt;}
._56{width:115.114667pt;}
._58{width:116.705600pt;}
._65{width:117.997333pt;}
._61{width:119.211200pt;}
._4c{width:122.238933pt;}
._4a{width:123.435733pt;}
._62{width:125.102933pt;}
._2c{width:126.297067pt;}
._49{width:127.372267pt;}
._6a{width:131.136000pt;}
._38{width:132.662400pt;}
._63{width:136.661333pt;}
._31{width:139.749867pt;}
._57{width:141.753067pt;}
._68{width:143.809600pt;}
._4b{width:144.837333pt;}
._37{width:145.925867pt;}
._28{width:147.014933pt;}
._5b{width:149.653333pt;}
._3d{width:151.067200pt;}
._64{width:151.978667pt;}
._36{width:153.474133pt;}
._48{width:154.837333pt;}
._50{width:156.540267pt;}
._1f{width:157.677333pt;}
._4e{width:159.488000pt;}
._66{width:160.588267pt;}
._35{width:162.253867pt;}
._5c{width:164.110933pt;}
._51{width:166.448000pt;}
._59{width:170.945067pt;}
._4f{width:171.868267pt;}
._1d{width:173.888000pt;}
._5e{width:175.025067pt;}
._39{width:176.497067pt;}
._5d{width:182.081600pt;}
._32{width:183.059200pt;}
._47{width:185.848000pt;}
._67{width:188.045867pt;}
._34{width:201.444267pt;}
._3b{width:228.207467pt;}
._29{width:234.699733pt;}
._33{width:268.659200pt;}
._3a{width:282.483200pt;}
._3e{width:384.246933pt;}
._3c{width:424.698667pt;}
._41{width:442.005867pt;}
._1c{width:466.995200pt;}
._40{width:507.462133pt;}
._12{width:582.336000pt;}
._8{width:711.296000pt;}
._6c{width:713.514667pt;}
._3f{width:714.496000pt;}
._c{width:715.904000pt;}
._1e{width:717.312000pt;}
._11{width:718.208000pt;}
._b{width:722.176000pt;}
._13{width:1002.940800pt;}
._1a{width:1024.444267pt;}
._19{width:1026.662933pt;}
._1b{width:1027.558933pt;}
._18{width:1029.564267pt;}
._15{width:1032.166933pt;}
._14{width:1033.958933pt;}
._16{width:1037.201600pt;}
._17{width:1039.164267pt;}
.fsc{font-size:29.386667pt;}
.fsa{font-size:32.000000pt;}
.fsd{font-size:34.666667pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fsb{font-size:96.000000pt;}
.fs7{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:1.999600pt;}
.ye5{bottom:3.333867pt;}
.yf1{bottom:5.999200pt;}
.ye8{bottom:6.666267pt;}
.yf5{bottom:9.333200pt;}
.ye3{bottom:15.458933pt;}
.ye6{bottom:20.000533pt;}
.y6{bottom:31.933340pt;}
.y42{bottom:50.741867pt;}
.y5{bottom:59.133337pt;}
.y41{bottom:62.741867pt;}
.ycd{bottom:71.487200pt;}
.yf0{bottom:80.154667pt;}
.yee{bottom:86.155200pt;}
.y4{bottom:86.333337pt;}
.y129{bottom:88.818800pt;}
.y11f{bottom:88.818933pt;}
.y78{bottom:88.820533pt;}
.ya9{bottom:88.820667pt;}
.yef{bottom:90.820533pt;}
.y11c{bottom:91.487200pt;}
.y127{bottom:94.152133pt;}
.yed{bottom:96.487200pt;}
.y17a{bottom:97.962533pt;}
.y48{bottom:102.154000pt;}
.y11e{bottom:103.485600pt;}
.y77{bottom:106.153867pt;}
.ya8{bottom:106.154000pt;}
.y11b{bottom:107.487200pt;}
.yba{bottom:108.042000pt;}
.y179{bottom:112.629200pt;}
.y13e{bottom:113.487200pt;}
.yb3{bottom:114.820533pt;}
.y47{bottom:116.820667pt;}
.yb9{bottom:122.708667pt;}
.y76{bottom:123.487200pt;}
.ya7{bottom:123.487333pt;}
.y23{bottom:123.790666pt;}
.y178{bottom:127.295867pt;}
.ycc{bottom:128.095600pt;}
.y13d{bottom:128.153867pt;}
.y46{bottom:131.487333pt;}
.yb2{bottom:132.153867pt;}
.y75{bottom:140.820533pt;}
.ya6{bottom:140.820667pt;}
.y11a{bottom:141.188800pt;}
.y177{bottom:141.962533pt;}
.y13c{bottom:142.820533pt;}
.y45{bottom:146.154000pt;}
.ycb{bottom:146.804933pt;}
.yb1{bottom:149.487200pt;}
.y176{bottom:156.629200pt;}
.y13b{bottom:157.487200pt;}
.y74{bottom:158.153867pt;}
.ya5{bottom:158.154000pt;}
.y119{bottom:159.898000pt;}
.y44{bottom:160.820667pt;}
.yca{bottom:165.514267pt;}
.yb0{bottom:166.820533pt;}
.y175{bottom:171.295867pt;}
.y13a{bottom:172.153867pt;}
.y1a{bottom:175.052000pt;}
.y73{bottom:175.487200pt;}
.y43{bottom:175.487333pt;}
.y118{bottom:178.607333pt;}
.yaf{bottom:184.153867pt;}
.yc9{bottom:184.223600pt;}
.y174{bottom:185.962533pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y139{bottom:186.820533pt;}
.y72{bottom:192.820533pt;}
.ya4{bottom:192.820667pt;}
.y128{bottom:196.467200pt;}
.y117{bottom:197.316667pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y173{bottom:200.629200pt;}
.yae{bottom:201.487200pt;}
.yc8{bottom:202.932933pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y71{bottom:210.153867pt;}
.ya3{bottom:210.154000pt;}
.y172{bottom:215.295867pt;}
.y116{bottom:216.026000pt;}
.y138{bottom:216.153867pt;}
.yad{bottom:218.820533pt;}
.yc7{bottom:221.642267pt;}
.y70{bottom:227.487200pt;}
.ya2{bottom:227.487333pt;}
.y171{bottom:229.962533pt;}
.y137{bottom:230.820533pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y115{bottom:234.735333pt;}
.yac{bottom:236.153867pt;}
.yc6{bottom:240.351467pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y170{bottom:244.629200pt;}
.y6f{bottom:244.820533pt;}
.ya1{bottom:244.820667pt;}
.y136{bottom:245.487200pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y3f{bottom:253.487200pt;}
.y114{bottom:254.111333pt;}
.yc5{bottom:259.060800pt;}
.y16f{bottom:259.295867pt;}
.y135{bottom:260.153867pt;}
.y6e{bottom:262.153867pt;}
.ya0{bottom:262.154000pt;}
.yec{bottom:266.820533pt;}
.y3e{bottom:270.820533pt;}
.y16e{bottom:273.962533pt;}
.y134{bottom:274.820533pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.yc4{bottom:277.770133pt;}
.y6d{bottom:279.487200pt;}
.y9f{bottom:279.487333pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y3d{bottom:288.153867pt;}
.y16d{bottom:288.629200pt;}
.y133{bottom:289.487200pt;}
.yc3{bottom:296.479467pt;}
.y6c{bottom:296.820533pt;}
.y9e{bottom:296.820667pt;}
.y16c{bottom:303.295867pt;}
.y132{bottom:304.153867pt;}
.y3c{bottom:305.487200pt;}
.y11{bottom:309.452000pt;}
.y6b{bottom:314.153867pt;}
.y9d{bottom:314.154000pt;}
.yc2{bottom:315.188800pt;}
.y16b{bottom:317.962533pt;}
.y131{bottom:318.820533pt;}
.y3b{bottom:322.820533pt;}
.y113{bottom:322.820667pt;}
.y6a{bottom:331.487200pt;}
.y9c{bottom:331.487333pt;}
.y16a{bottom:332.629200pt;}
.y130{bottom:333.487200pt;}
.yc1{bottom:333.898133pt;}
.ye0{bottom:334.436800pt;}
.yab{bottom:339.487200pt;}
.y3a{bottom:340.153867pt;}
.y112{bottom:340.154000pt;}
.y10{bottom:343.809333pt;}
.y169{bottom:347.295867pt;}
.y12f{bottom:348.153867pt;}
.y69{bottom:348.820533pt;}
.y9b{bottom:348.820667pt;}
.ydf{bottom:349.103467pt;}
.yc0{bottom:352.607333pt;}
.yaa{bottom:354.153867pt;}
.yb8{bottom:357.487200pt;}
.y111{bottom:357.487333pt;}
.y168{bottom:361.962533pt;}
.yf{bottom:362.706666pt;}
.y12e{bottom:362.820533pt;}
.yde{bottom:363.770133pt;}
.y68{bottom:366.153867pt;}
.y9a{bottom:366.154000pt;}
.ybf{bottom:371.316667pt;}
.y39{bottom:374.820533pt;}
.y110{bottom:374.820667pt;}
.y167{bottom:376.629200pt;}
.y12d{bottom:377.487200pt;}
.ydd{bottom:378.436800pt;}
.y67{bottom:383.487200pt;}
.y99{bottom:383.487333pt;}
.ybe{bottom:390.026000pt;}
.y166{bottom:391.295867pt;}
.yb7{bottom:392.153867pt;}
.y10f{bottom:392.154000pt;}
.ydc{bottom:393.103467pt;}
.y66{bottom:400.820533pt;}
.y98{bottom:400.820667pt;}
.y165{bottom:405.962533pt;}
.ydb{bottom:407.770133pt;}
.ybd{bottom:408.735333pt;}
.yb6{bottom:409.487200pt;}
.y10e{bottom:409.487333pt;}
.y65{bottom:418.153867pt;}
.y97{bottom:418.154000pt;}
.y164{bottom:420.629200pt;}
.yda{bottom:426.479467pt;}
.yeb{bottom:426.820533pt;}
.y10d{bottom:426.820667pt;}
.ybc{bottom:427.444667pt;}
.ye{bottom:430.990669pt;}
.y163{bottom:435.295867pt;}
.y64{bottom:435.487200pt;}
.y96{bottom:435.487333pt;}
.y38{bottom:444.153867pt;}
.y10c{bottom:444.154000pt;}
.yd9{bottom:445.188800pt;}
.yd{bottom:446.990669pt;}
.y162{bottom:449.962533pt;}
.y63{bottom:452.820533pt;}
.y95{bottom:452.820667pt;}
.yd8{bottom:459.855467pt;}
.y37{bottom:461.487200pt;}
.y10b{bottom:461.487333pt;}
.yc{bottom:462.990669pt;}
.y161{bottom:464.629200pt;}
.y62{bottom:470.153867pt;}
.y94{bottom:470.154000pt;}
.yd7{bottom:474.522133pt;}
.yea{bottom:478.820533pt;}
.y10a{bottom:478.820667pt;}
.yb{bottom:478.990666pt;}
.y160{bottom:479.295867pt;}
.y61{bottom:487.487200pt;}
.y93{bottom:487.487333pt;}
.ye7{bottom:488.710667pt;}
.yd6{bottom:489.188800pt;}
.y15f{bottom:493.962533pt;}
.ya{bottom:494.990666pt;}
.y36{bottom:496.153867pt;}
.y109{bottom:496.154000pt;}
.yd5{bottom:503.855467pt;}
.y60{bottom:504.820533pt;}
.y92{bottom:504.820667pt;}
.y15e{bottom:508.629200pt;}
.y35{bottom:513.487200pt;}
.y108{bottom:513.487333pt;}
.y5f{bottom:522.153867pt;}
.y91{bottom:522.154000pt;}
.yd4{bottom:522.564800pt;}
.y15d{bottom:523.295867pt;}
.y34{bottom:530.820533pt;}
.y107{bottom:530.820667pt;}
.ybb{bottom:533.487200pt;}
.y15c{bottom:537.962533pt;}
.y5e{bottom:539.487200pt;}
.yd3{bottom:541.274000pt;}
.y90{bottom:544.820667pt;}
.y33{bottom:548.153867pt;}
.y106{bottom:548.154000pt;}
.y15b{bottom:552.629200pt;}
.yd2{bottom:555.940667pt;}
.y5d{bottom:556.820533pt;}
.y79{bottom:562.153867pt;}
.y32{bottom:565.487200pt;}
.y105{bottom:565.487333pt;}
.y15a{bottom:567.295867pt;}
.y9{bottom:573.786667pt;}
.y5c{bottom:574.153867pt;}
.y8f{bottom:574.154000pt;}
.yd1{bottom:574.650000pt;}
.y159{bottom:581.962533pt;}
.y31{bottom:582.820533pt;}
.y104{bottom:582.820667pt;}
.y5b{bottom:591.487200pt;}
.y8e{bottom:591.487333pt;}
.y8{bottom:592.685334pt;}
.yd0{bottom:593.359333pt;}
.y158{bottom:596.629200pt;}
.y30{bottom:600.153867pt;}
.y103{bottom:600.154000pt;}
.y5a{bottom:608.820533pt;}
.y8d{bottom:608.820667pt;}
.y157{bottom:611.295867pt;}
.ycf{bottom:612.068667pt;}
.y2f{bottom:617.487200pt;}
.y102{bottom:617.487333pt;}
.y156{bottom:625.962533pt;}
.y59{bottom:626.153867pt;}
.y8c{bottom:626.154000pt;}
.yce{bottom:630.778000pt;}
.y2e{bottom:634.820533pt;}
.y101{bottom:634.820667pt;}
.y155{bottom:640.629200pt;}
.ye2{bottom:643.486667pt;}
.y58{bottom:643.487200pt;}
.y8b{bottom:643.487333pt;}
.y7{bottom:645.598667pt;}
.y12a{bottom:646.153867pt;}
.y2d{bottom:652.153867pt;}
.y100{bottom:652.154000pt;}
.y154{bottom:655.295867pt;}
.ye4{bottom:658.820533pt;}
.y57{bottom:660.820533pt;}
.y8a{bottom:660.820667pt;}
.ye1{bottom:663.487200pt;}
.y3{bottom:668.977329pt;}
.y11d{bottom:669.487200pt;}
.yff{bottom:669.487333pt;}
.y153{bottom:669.962533pt;}
.y56{bottom:678.153867pt;}
.y89{bottom:678.154000pt;}
.y152{bottom:684.629200pt;}
.yfe{bottom:686.820667pt;}
.y2c{bottom:695.487200pt;}
.y88{bottom:695.487333pt;}
.y151{bottom:699.295867pt;}
.yfd{bottom:704.154000pt;}
.y2b{bottom:712.820533pt;}
.y87{bottom:712.820667pt;}
.y150{bottom:713.962533pt;}
.y126{bottom:716.840667pt;}
.y12c{bottom:721.487200pt;}
.yfc{bottom:721.487333pt;}
.y14f{bottom:728.629200pt;}
.y55{bottom:730.153867pt;}
.y86{bottom:730.154000pt;}
.y125{bottom:732.840667pt;}
.yfb{bottom:738.820667pt;}
.y14e{bottom:743.295867pt;}
.y54{bottom:747.487200pt;}
.y85{bottom:747.487333pt;}
.y124{bottom:754.840667pt;}
.yfa{bottom:756.154000pt;}
.y14d{bottom:757.962533pt;}
.y2a{bottom:762.153867pt;}
.y53{bottom:764.820533pt;}
.y84{bottom:764.820667pt;}
.y123{bottom:772.042000pt;}
.y14c{bottom:772.629200pt;}
.yf9{bottom:773.487333pt;}
.y2{bottom:781.661334pt;}
.y52{bottom:782.153867pt;}
.y83{bottom:782.154000pt;}
.y14b{bottom:787.295867pt;}
.y122{bottom:789.576667pt;}
.yb5{bottom:790.153867pt;}
.yf8{bottom:790.820667pt;}
.y29{bottom:796.820533pt;}
.y51{bottom:799.487200pt;}
.y82{bottom:799.487333pt;}
.y14a{bottom:801.962533pt;}
.yb4{bottom:804.820533pt;}
.yf7{bottom:808.154000pt;}
.y121{bottom:808.286000pt;}
.y149{bottom:816.629200pt;}
.y50{bottom:816.820533pt;}
.y81{bottom:816.820667pt;}
.y148{bottom:831.295867pt;}
.y28{bottom:831.487200pt;}
.y4f{bottom:834.153867pt;}
.y80{bottom:834.154000pt;}
.y120{bottom:836.820667pt;}
.yf6{bottom:842.820667pt;}
.y147{bottom:845.962533pt;}
.y4e{bottom:851.487200pt;}
.y7f{bottom:851.487333pt;}
.y1{bottom:859.312000pt;}
.y12b{bottom:860.153867pt;}
.y146{bottom:860.629200pt;}
.y27{bottom:866.153867pt;}
.y4d{bottom:868.820533pt;}
.y7e{bottom:868.820667pt;}
.y145{bottom:875.295867pt;}
.y4c{bottom:886.153867pt;}
.y7d{bottom:886.154000pt;}
.y144{bottom:889.962533pt;}
.y26{bottom:900.820533pt;}
.y4b{bottom:903.487200pt;}
.y7c{bottom:903.487333pt;}
.y143{bottom:904.629200pt;}
.y142{bottom:919.295867pt;}
.y25{bottom:920.820533pt;}
.y7b{bottom:920.820667pt;}
.yf4{bottom:928.705333pt;}
.yf3{bottom:933.373200pt;}
.y141{bottom:933.962533pt;}
.y4a{bottom:938.153867pt;}
.y7a{bottom:938.154000pt;}
.yf2{bottom:943.705200pt;}
.y140{bottom:948.629200pt;}
.y49{bottom:955.487200pt;}
.y40{bottom:955.487333pt;}
.y13f{bottom:963.295867pt;}
.y24{bottom:1004.976400pt;}
.h1d{height:18.666667pt;}
.h1b{height:24.882812pt;}
.h24{height:26.381333pt;}
.h21{height:26.666667pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h1f{height:28.933333pt;}
.h20{height:30.665333pt;}
.h25{height:32.413333pt;}
.h17{height:32.469333pt;}
.hf{height:33.066667pt;}
.h1c{height:33.769531pt;}
.h19{height:34.666667pt;}
.h13{height:34.906667pt;}
.h18{height:38.791054pt;}
.h26{height:39.165333pt;}
.h10{height:39.266667pt;}
.h22{height:39.494667pt;}
.hc{height:39.893333pt;}
.h7{height:40.853333pt;}
.h23{height:41.648177pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h15{height:43.400000pt;}
.h16{height:43.533333pt;}
.h12{height:48.704000pt;}
.h2{height:49.024000pt;}
.h14{height:50.560000pt;}
.h1e{height:57.933333pt;}
.hd{height:59.840000pt;}
.h11{height:60.880000pt;}
.h5{height:69.450667pt;}
.h1a{height:73.498839pt;}
.he{height:89.290667pt;}
.h4{height:105.826671pt;}
.hb{height:1058.000000pt;}
.ha{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w7{width:34.964000pt;}
.w4{width:67.998667pt;}
.w6{width:85.333333pt;}
.w5{width:173.333333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:8.416000pt;}
.x16{left:14.707733pt;}
.x11{left:21.666000pt;}
.x12{left:27.999333pt;}
.x17{left:35.916000pt;}
.x9{left:68.031467pt;}
.xe{left:73.364800pt;}
.x1{left:90.706667pt;}
.x13{left:92.621067pt;}
.x2{left:94.486667pt;}
.x8{left:101.291333pt;}
.x10{left:103.042000pt;}
.xb{left:108.905733pt;}
.x14{left:115.298133pt;}
.x1a{left:123.500400pt;}
.x1b{left:139.750400pt;}
.x1f{left:142.316933pt;}
.x5{left:147.086667pt;}
.xd{left:148.157467pt;}
.x19{left:149.629467pt;}
.x6{left:153.390667pt;}
.x1c{left:156.074667pt;}
.x1d{left:157.745333pt;}
.xa{left:170.078800pt;}
.x4{left:180.874667pt;}
.x1e{left:182.366400pt;}
.x20{left:185.486800pt;}
.xc{left:188.787733pt;}
.x7{left:190.876000pt;}
.x21{left:204.862800pt;}
.x22{left:219.529467pt;}
.x23{left:238.238800pt;}
.x24{left:252.905467pt;}
.x25{left:271.614800pt;}
.x26{left:286.281467pt;}
.x15{left:303.581333pt;}
.x27{left:304.990667pt;}
.x28{left:319.657333pt;}
.x29{left:334.324000pt;}
.x2a{left:353.033333pt;}
.x2b{left:367.700000pt;}
.x2c{left:382.366667pt;}
.x2d{left:401.076000pt;}
.x3{left:404.408000pt;}
.x2e{left:415.742667pt;}
.x2f{left:434.452000pt;}
.x30{left:449.118667pt;}
.x31{left:463.785333pt;}
.x32{left:482.494667pt;}
.x33{left:497.161333pt;}
.x34{left:511.828000pt;}
.x35{left:530.537333pt;}
.x36{left:545.204000pt;}
.x37{left:563.913200pt;}
.x38{left:587.246533pt;}
.x39{left:603.246533pt;}
.x3a{left:619.246533pt;}
.xf{left:622.404267pt;}
}




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