
    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_1acf0b3a0ff9fe8ddaf45c9a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_2b859f80446ca6a380bfe49c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_7187d174e0d7fbc82923773e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.967285;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_eb4d61747260aab06eb073df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_21b5e1cc28842dd1d2883a65.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005859;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_3c45139ab96ed98bafa981f4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fa24cb7e33d25b5dc20e146c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_51fc3516353b1ecd92077081.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.115234;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_c1ea6550dfa69f99824417ca.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.107422;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_60c062775d9af9512e563ddc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_98fdca8cad66731dcfad8561.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.983398;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_10287abe4cef304706ac469b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.211914;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_6794cb6660362663b1b9804c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172852;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_c150505e6c2f63d99ac406a8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.985840;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_8e515eddc49ef9d008634d26.woff2')format("woff");}.fff{font-family:fff;line-height:1.025879;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;}
.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);}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls34{letter-spacing:-4.176000px;}
.ls8{letter-spacing:-2.736000px;}
.ls1e{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-1.296000px;}
.ls21{letter-spacing:-1.266000px;}
.ls15{letter-spacing:-1.152000px;}
.lsb{letter-spacing:-0.864000px;}
.ls5{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls39{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.432000px;}
.ls2b{letter-spacing:-0.337800px;}
.ls20{letter-spacing:-0.272400px;}
.ls3d{letter-spacing:-0.240600px;}
.ls35{letter-spacing:-0.226800px;}
.ls1{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.181200px;}
.ls1c{letter-spacing:-0.175800px;}
.ls14{letter-spacing:-0.144000px;}
.ls48{letter-spacing:-0.106800px;}
.ls24{letter-spacing:-0.072000px;}
.ls3c{letter-spacing:-0.064800px;}
.ls2e{letter-spacing:-0.058320px;}
.ls47{letter-spacing:-0.053280px;}
.ls18{letter-spacing:-0.027360px;}
.ls0{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.018000px;}
.lse{letter-spacing:0.023040px;}
.ls2a{letter-spacing:0.025200px;}
.ls44{letter-spacing:0.047520px;}
.ls19{letter-spacing:0.060600px;}
.ls38{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.149760px;}
.lsa{letter-spacing:0.150000px;}
.ls16{letter-spacing:0.174000px;}
.ls3b{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.186600px;}
.ls12{letter-spacing:0.216000px;}
.ls45{letter-spacing:0.229200px;}
.ls26{letter-spacing:0.243600px;}
.ls46{letter-spacing:0.262200px;}
.ls27{letter-spacing:0.269280px;}
.ls3{letter-spacing:0.288000px;}
.ls36{letter-spacing:0.288600px;}
.ls1b{letter-spacing:0.305280px;}
.ls17{letter-spacing:0.306000px;}
.ls49{letter-spacing:0.433440px;}
.ls43{letter-spacing:0.479400px;}
.ls33{letter-spacing:0.504000px;}
.ls3e{letter-spacing:0.780000px;}
.ls4e{letter-spacing:0.864000px;}
.ls22{letter-spacing:0.869760px;}
.ls4d{letter-spacing:1.026000px;}
.ls2d{letter-spacing:1.589760px;}
.ls2c{letter-spacing:2.334000px;}
.lsd{letter-spacing:3.029760px;}
.ls37{letter-spacing:3.054000px;}
.ls1d{letter-spacing:3.744000px;}
.ls13{letter-spacing:4.469760px;}
.ls2f{letter-spacing:6.624000px;}
.ls42{letter-spacing:12.384000px;}
.ls10{letter-spacing:13.829760px;}
.ls25{letter-spacing:16.740000px;}
.ls32{letter-spacing:17.424000px;}
.lsc{letter-spacing:18.149760px;}
.ls28{letter-spacing:18.894240px;}
.ls29{letter-spacing:19.589760px;}
.ls30{letter-spacing:20.309760px;}
.ls41{letter-spacing:21.024000px;}
.ls23{letter-spacing:23.904000px;}
.ls31{letter-spacing:27.509760px;}
.ls9{letter-spacing:28.224000px;}
.ls4b{letter-spacing:70.506720px;}
.ls4a{letter-spacing:70.650720px;}
.ls3f{letter-spacing:195.960000px;}
.ls2{letter-spacing:199.704000px;}
.ls40{letter-spacing:201.005760px;}
.ls4c{letter-spacing:612.126720px;}
.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;}
}
.ws1a{word-spacing:-21.083040px;}
.ws1e{word-spacing:-20.880000px;}
.ws2{word-spacing:-20.304000px;}
.wsb{word-spacing:-20.232000px;}
.ws5{word-spacing:-20.160000px;}
.ws6{word-spacing:-20.016000px;}
.wsc{word-spacing:-19.944000px;}
.ws9{word-spacing:-19.872000px;}
.ws4{word-spacing:-19.800000px;}
.ws3{word-spacing:-19.584000px;}
.ws10{word-spacing:-19.296000px;}
.ws1c{word-spacing:-16.613280px;}
.ws1b{word-spacing:-16.506480px;}
.ws14{word-spacing:-15.228000px;}
.ws16{word-spacing:-15.030000px;}
.ws0{word-spacing:-14.754240px;}
.ws1d{word-spacing:-14.531760px;}
.ws15{word-spacing:-14.508000px;}
.ws19{word-spacing:-13.985160px;}
.ws7{word-spacing:-13.811760px;}
.ws13{word-spacing:-13.794360px;}
.wsd{word-spacing:-13.749360px;}
.ws8{word-spacing:-13.566360px;}
.wse{word-spacing:-13.530960px;}
.wsa{word-spacing:-13.505760px;}
.ws11{word-spacing:-13.447440px;}
.ws17{word-spacing:-13.440960px;}
.ws12{word-spacing:-13.278960px;}
.ws18{word-spacing:-13.265160px;}
.wsf{word-spacing:-13.167960px;}
.ws1{word-spacing:0.000000px;}
._24{margin-left:-16.416000px;}
._25{margin-left:-6.239520px;}
._18{margin-left:-4.796640px;}
._15{margin-left:-3.385920px;}
._0{margin-left:-1.875840px;}
._3{width:1.080960px;}
._d{width:2.175840px;}
._f{width:3.240000px;}
._9{width:4.320000px;}
._8{width:5.832000px;}
._7{width:7.153920px;}
._2{width:8.346240px;}
._4{width:9.382080px;}
._a{width:10.440000px;}
._5{width:12.121920px;}
._6{width:13.157760px;}
._12{width:14.382720px;}
._17{width:16.128000px;}
._c{width:17.568000px;}
._b{width:18.864000px;}
._2e{width:20.016000px;}
._16{width:21.098880px;}
._1c{width:22.169280px;}
._1d{width:23.184000px;}
._1a{width:24.264000px;}
._1b{width:25.347840px;}
._1e{width:26.352000px;}
._11{width:27.432000px;}
._10{width:28.656000px;}
._19{width:30.456000px;}
._21{width:31.899840px;}
._1f{width:33.192000px;}
._20{width:34.776000px;}
._27{width:36.072000px;}
._26{width:37.080000px;}
._29{width:38.868000px;}
._23{width:39.960000px;}
._2b{width:41.327040px;}
._2f{width:42.480000px;}
._2d{width:43.923600px;}
._2c{width:45.537120px;}
._32{width:47.064000px;}
._4e{width:49.250400px;}
._47{width:50.437440px;}
._39{width:52.265760px;}
._38{width:54.150240px;}
._30{width:55.944000px;}
._34{width:57.130080px;}
._31{width:58.239840px;}
._33{width:59.448000px;}
._14{width:61.056000px;}
._13{width:62.496000px;}
._3d{width:64.008000px;}
._22{width:65.016000px;}
._3f{width:66.144000px;}
._3e{width:67.549920px;}
._46{width:70.506720px;}
._4b{width:72.666720px;}
._49{width:73.803600px;}
._37{width:75.744000px;}
._35{width:77.040000px;}
._36{width:78.265920px;}
._3a{width:79.338720px;}
._28{width:87.984000px;}
._4a{width:96.631920px;}
._3c{width:98.210880px;}
._3b{width:99.252000px;}
._42{width:102.667680px;}
._48{width:127.120320px;}
._4f{width:133.307040px;}
._50{width:134.352000px;}
._2a{width:151.105920px;}
._e{width:195.960000px;}
._1{width:201.005760px;}
._41{width:213.457440px;}
._51{width:216.864000px;}
._45{width:236.880000px;}
._40{width:248.507040px;}
._44{width:309.258720px;}
._43{width:353.734560px;}
._4d{width:576.900000px;}
._4c{width:599.579040px;}
.fc6{color:rgb(31,73,125);}
.fc7{color:rgb(0,0,255);}
.fc5{color:rgb(75,172,198);}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y20e{bottom:8.640000px;}
.y15a{bottom:10.620000px;}
.y162{bottom:10.665000px;}
.y15c{bottom:10.800000px;}
.y159{bottom:11.160000px;}
.y1ff{bottom:11.700000px;}
.y230{bottom:11.880000px;}
.y20d{bottom:17.640000px;}
.y1a5{bottom:21.105000px;}
.y1e2{bottom:23.940000px;}
.y1cf{bottom:24.120000px;}
.y1d6{bottom:27.360000px;}
.y17c{bottom:29.700000px;}
.y15f{bottom:34.020000px;}
.y158{bottom:35.820000px;}
.y22f{bottom:37.614000px;}
.y1fe{bottom:37.620000px;}
.y1e3{bottom:48.060000px;}
.y1ce{bottom:51.705000px;}
.y2{bottom:57.456000px;}
.y1e1{bottom:58.500000px;}
.y1a6{bottom:59.805000px;}
.y157{bottom:60.480000px;}
.y22e{bottom:63.534000px;}
.y1fd{bottom:63.540000px;}
.y1c1{bottom:66.825000px;}
.y19f{bottom:75.105000px;}
.y1a2{bottom:76.545000px;}
.y1de{bottom:76.860000px;}
.y1b{bottom:76.896000px;}
.y1cd{bottom:79.065000px;}
.y156{bottom:84.960000px;}
.y1df{bottom:88.200000px;}
.y22d{bottom:89.454000px;}
.y1fc{bottom:89.460000px;}
.y1c0{bottom:94.365000px;}
.y1cc{bottom:106.425000px;}
.yab{bottom:110.196000px;}
.y182{bottom:111.096000px;}
.y258{bottom:115.056000px;}
.y1fb{bottom:115.200000px;}
.y20f{bottom:115.236000px;}
.y22c{bottom:115.374000px;}
.yaa{bottom:115.416000px;}
.y12b{bottom:117.036000px;}
.y1a{bottom:117.576000px;}
.y56{bottom:120.816000px;}
.y20c{bottom:120.960000px;}
.y1bf{bottom:121.725000px;}
.y142{bottom:122.076000px;}
.y89{bottom:123.336000px;}
.yfc{bottom:124.056000px;}
.yd8{bottom:128.376000px;}
.ya9{bottom:128.916000px;}
.yf5{bottom:129.096000px;}
.y18a{bottom:131.256000px;}
.y10c{bottom:133.596000px;}
.y1cb{bottom:133.605000px;}
.y1a4{bottom:133.785000px;}
.y14d{bottom:133.956000px;}
.y1d9{bottom:134.496000px;}
.y39{bottom:140.076000px;}
.y1e0{bottom:140.220000px;}
.y24d{bottom:140.256000px;}
.y22b{bottom:141.114000px;}
.y14a{bottom:141.156000px;}
.y1fa{bottom:141.165000px;}
.y71{bottom:145.296000px;}
.y257{bottom:146.016000px;}
.yd7{bottom:146.736000px;}
.y144{bottom:147.276000px;}
.y20a{bottom:147.996000px;}
.yc2{bottom:148.176000px;}
.y1d5{bottom:149.085000px;}
.y19{bottom:150.870000px;}
.y119{bottom:151.950000px;}
.y116{bottom:153.030000px;}
.y181{bottom:154.110000px;}
.yfb{bottom:155.190000px;}
.yf4{bottom:160.050000px;}
.y1be{bottom:160.785000px;}
.y19e{bottom:161.145000px;}
.y1a3{bottom:161.325000px;}
.y189{bottom:162.210000px;}
.y55{bottom:163.830000px;}
.yd6{bottom:165.090000px;}
.y118{bottom:165.630000px;}
.y1e4{bottom:165.810000px;}
.y1dd{bottom:165.960000px;}
.y88{bottom:166.350000px;}
.y22a{bottom:167.079000px;}
.y1f9{bottom:167.085000px;}
.y18b{bottom:167.250000px;}
.y23e{bottom:169.779000px;}
.yd5{bottom:170.310000px;}
.y38{bottom:171.210000px;}
.y12a{bottom:172.110000px;}
.y1ca{bottom:172.845000px;}
.y1a1{bottom:176.445000px;}
.y256{bottom:177.150000px;}
.y1d8{bottom:178.950000px;}
.yc1{bottom:179.130000px;}
.y108{bottom:183.270000px;}
.yd4{bottom:183.810000px;}
.y18{bottom:183.990000px;}
.y115{bottom:184.170000px;}
.y180{bottom:185.250000px;}
.yfa{bottom:186.150000px;}
.y70{bottom:188.310000px;}
.y1bd{bottom:188.325000px;}
.y107{bottom:188.490000px;}
.y19d{bottom:188.685000px;}
.yf3{bottom:191.190000px;}
.y229{bottom:192.999000px;}
.y1f8{bottom:193.005000px;}
.y188{bottom:193.170000px;}
.ya8{bottom:196.050000px;}
.y196{bottom:198.210000px;}
.y1c9{bottom:200.385000px;}
.y129{bottom:201.630000px;}
.y106{bottom:202.170000px;}
.y11e{bottom:203.250000px;}
.y1d4{bottom:203.805000px;}
.y1dc{bottom:203.940000px;}
.y37{bottom:204.870000px;}
.y54{bottom:206.850000px;}
.y255{bottom:208.110000px;}
.y87{bottom:209.370000px;}
.y11b{bottom:210.270000px;}
.y114{bottom:215.130000px;}
.y1bc{bottom:215.685000px;}
.y1a0{bottom:215.865000px;}
.y19c{bottom:216.045000px;}
.y17f{bottom:216.210000px;}
.y17{bottom:217.110000px;}
.yf9{bottom:217.290000px;}
.y1f7{bottom:218.745000px;}
.y228{bottom:218.919000px;}
.y128{bottom:219.990000px;}
.y12d{bottom:220.530000px;}
.y1d7{bottom:221.970000px;}
.yc0{bottom:222.150000px;}
.y177{bottom:224.670000px;}
.y127{bottom:225.210000px;}
.y24c{bottom:226.470000px;}
.ya7{bottom:227.190000px;}
.y1c8{bottom:227.745000px;}
.y14c{bottom:229.170000px;}
.y1d3{bottom:230.985000px;}
.y6f{bottom:231.330000px;}
.y135{bottom:232.590000px;}
.y10b{bottom:234.210000px;}
.y187{bottom:236.370000px;}
.y13d{bottom:238.350000px;}
.y36{bottom:238.710000px;}
.y126{bottom:238.890000px;}
.y254{bottom:239.250000px;}
.y1a7{bottom:239.610000px;}
.ye9{bottom:241.230000px;}
.y227{bottom:244.659000px;}
.y1f6{bottom:244.665000px;}
.y113{bottom:246.270000px;}
.y17e{bottom:247.350000px;}
.y53{bottom:250.050000px;}
.y16{bottom:250.230000px;}
.y86{bottom:252.570000px;}
.ybf{bottom:253.290000px;}
.y1bb{bottom:254.925000px;}
.y19b{bottom:255.105000px;}
.yd3{bottom:255.270000px;}
.y176{bottom:255.810000px;}
.y13c{bottom:256.530000px;}
.ya6{bottom:258.150000px;}
.y1d2{bottom:258.345000px;}
.y11c{bottom:259.230000px;}
.yf8{bottom:260.310000px;}
.y148{bottom:261.750000px;}
.y134{bottom:263.550000px;}
.y23d{bottom:264.999000px;}
.yf2{bottom:265.170000px;}
.y105{bottom:267.330000px;}
.y200{bottom:267.705000px;}
.y24b{bottom:269.490000px;}
.y253{bottom:270.210000px;}
.y1b2{bottom:270.225000px;}
.y226{bottom:270.579000px;}
.y1f5{bottom:270.585000px;}
.y14e{bottom:271.110000px;}
.y35{bottom:272.370000px;}
.y6e{bottom:274.350000px;}
.y13b{bottom:274.890000px;}
.y147{bottom:275.430000px;}
.y112{bottom:277.230000px;}
.y1ba{bottom:282.465000px;}
.y15{bottom:283.395000px;}
.ybe{bottom:284.295000px;}
.y175{bottom:286.815000px;}
.y23c{bottom:288.939000px;}
.ya5{bottom:289.335000px;}
.y149{bottom:290.235000px;}
.y17d{bottom:290.415000px;}
.y195{bottom:291.315000px;}
.y52{bottom:293.115000px;}
.y13a{bottom:293.295000px;}
.y133{bottom:294.735000px;}
.y85{bottom:295.635000px;}
.yf1{bottom:296.355000px;}
.y225{bottom:296.499000px;}
.y1f4{bottom:296.505000px;}
.y1d1{bottom:297.585000px;}
.y1b1{bottom:297.765000px;}
.yd2{bottom:298.515000px;}
.y252{bottom:301.215000px;}
.yf7{bottom:303.375000px;}
.y34{bottom:306.255000px;}
.y17b{bottom:308.055000px;}
.y111{bottom:308.415000px;}
.y1b9{bottom:309.825000px;}
.y186{bottom:310.395000px;}
.y139{bottom:312.195000px;}
.y24a{bottom:312.555000px;}
.ybd{bottom:315.435000px;}
.y14{bottom:316.515000px;}
.y6d{bottom:317.415000px;}
.y174{bottom:317.955000px;}
.ya4{bottom:320.295000px;}
.y1f3{bottom:322.245000px;}
.y224{bottom:322.419000px;}
.y194{bottom:322.455000px;}
.y1b0{bottom:325.155000px;}
.y132{bottom:325.695000px;}
.y84{bottom:326.595000px;}
.yf0{bottom:327.315000px;}
.yd1{bottom:329.475000px;}
.y251{bottom:332.355000px;}
.yf6{bottom:334.515000px;}
.y51{bottom:336.135000px;}
.y1b8{bottom:337.215000px;}
.y110{bottom:339.375000px;}
.y33{bottom:339.915000px;}
.y198{bottom:341.535000px;}
.ybc{bottom:346.395000px;}
.y223{bottom:348.159000px;}
.y1f2{bottom:348.165000px;}
.y173{bottom:348.915000px;}
.y13{bottom:349.815000px;}
.y209{bottom:349.965000px;}
.ya3{bottom:351.435000px;}
.y18e{bottom:352.335000px;}
.y185{bottom:353.415000px;}
.y17a{bottom:355.395000px;}
.y249{bottom:355.575000px;}
.y131{bottom:356.835000px;}
.y83{bottom:357.735000px;}
.ye2{bottom:358.455000px;}
.y6c{bottom:360.615000px;}
.y250{bottom:363.315000px;}
.y1af{bottom:364.215000px;}
.y11a{bottom:364.395000px;}
.y125{bottom:365.475000px;}
.yef{bottom:370.515000px;}
.y32{bottom:373.575000px;}
.y222{bottom:374.079000px;}
.y1f1{bottom:374.085000px;}
.y208{bottom:375.885000px;}
.y1c7{bottom:376.275000px;}
.y11d{bottom:376.455000px;}
.ybb{bottom:377.535000px;}
.y50{bottom:379.155000px;}
.y179{bottom:379.515000px;}
.y172{bottom:380.055000px;}
.ya2{bottom:382.395000px;}
.y12{bottom:382.935000px;}
.y184{bottom:384.555000px;}
.y130{bottom:387.795000px;}
.y143{bottom:388.335000px;}
.ye1{bottom:389.415000px;}
.y23b{bottom:391.359000px;}
.yd0{bottom:391.575000px;}
.y1ae{bottom:391.755000px;}
.y24f{bottom:394.455000px;}
.y124{bottom:396.615000px;}
.y248{bottom:398.595000px;}
.y1f0{bottom:399.855000px;}
.y221{bottom:399.999000px;}
.y82{bottom:400.755000px;}
.yee{bottom:401.475000px;}
.y207{bottom:401.835000px;}
.y178{bottom:403.455000px;}
.y6b{bottom:403.635000px;}
.y1c6{bottom:403.815000px;}
.y31{bottom:407.415000px;}
.ye8{bottom:408.495000px;}
.ya1{bottom:413.535000px;}
.y11{bottom:416.055000px;}
.y1b7{bottom:419.115000px;}
.yba{bottom:420.555000px;}
.y4f{bottom:422.175000px;}
.y171{bottom:423.075000px;}
.y24e{bottom:425.415000px;}
.y1ef{bottom:425.775000px;}
.y220{bottom:425.919000px;}
.y123{bottom:427.575000px;}
.y206{bottom:427.755000px;}
.y1ad{bottom:430.995000px;}
.y1c5{bottom:431.175000px;}
.yed{bottom:432.615000px;}
.ycf{bottom:434.595000px;}
.ye7{bottom:439.635000px;}
.y30{bottom:441.075000px;}
.y247{bottom:441.615000px;}
.y81{bottom:443.775000px;}
.ya0{bottom:444.495000px;}
.y6a{bottom:446.655000px;}
.y10{bottom:449.175000px;}
.yb9{bottom:451.515000px;}
.y21f{bottom:451.689000px;}
.y1ee{bottom:451.695000px;}
.y205{bottom:453.495000px;}
.y170{bottom:454.035000px;}
.y154{bottom:456.555000px;}
.y12c{bottom:457.455000px;}
.y1b6{bottom:458.355000px;}
.y1c4{bottom:458.535000px;}
.y141{bottom:458.715000px;}
.y10f{bottom:463.575000px;}
.y4e{bottom:465.195000px;}
.y104{bottom:465.735000px;}
.yf{bottom:470.235000px;}
.y1ac{bottom:470.415000px;}
.ye6{bottom:470.595000px;}
.y23a{bottom:474.189000px;}
.y2f{bottom:474.915000px;}
.y9f{bottom:475.635000px;}
.y21e{bottom:477.609000px;}
.yce{bottom:477.615000px;}
.y204{bottom:479.415000px;}
.y145{bottom:481.575000px;}
.yb8{bottom:482.655000px;}
.y246{bottom:484.815000px;}
.y1b5{bottom:485.895000px;}
.y80{bottom:486.795000px;}
.y153{bottom:487.515000px;}
.y69{bottom:489.675000px;}
.ye{bottom:491.475000px;}
.y10e{bottom:494.715000px;}
.y16f{bottom:497.055000px;}
.y1ab{bottom:497.775000px;}
.ye5{bottom:501.735000px;}
.y1ed{bottom:503.355000px;}
.y21d{bottom:503.529000px;}
.y203{bottom:505.335000px;}
.y9e{bottom:506.595000px;}
.y240{bottom:507.675000px;}
.y4d{bottom:508.395000px;}
.y2e{bottom:508.575000px;}
.ycd{bottom:508.755000px;}
.y1b4{bottom:513.255000px;}
.yb7{bottom:513.615000px;}
.y7f{bottom:517.935000px;}
.y152{bottom:518.655000px;}
.y140{bottom:520.815000px;}
.yd{bottom:524.595000px;}
.y1d0{bottom:524.955000px;}
.y1aa{bottom:525.135000px;}
.y10d{bottom:525.675000px;}
.y245{bottom:527.835000px;}
.y16e{bottom:528.195000px;}
.y1ec{bottom:529.275000px;}
.y21c{bottom:529.449000px;}
.y202{bottom:531.255000px;}
.y68{bottom:532.695000px;}
.y9d{bottom:537.735000px;}
.y103{bottom:539.715000px;}
.y1c3{bottom:540.615000px;}
.y2d{bottom:542.235000px;}
.yb6{bottom:544.755000px;}
.yc{bottom:545.835000px;}
.y151{bottom:549.615000px;}
.y4c{bottom:551.415000px;}
.ycc{bottom:551.775000px;}
.y1b3{bottom:552.315000px;}
.y1a9{bottom:552.495000px;}
.y21b{bottom:555.189000px;}
.y1eb{bottom:555.195000px;}
.ye0{bottom:556.815000px;}
.y16d{bottom:559.155000px;}
.y7e{bottom:560.955000px;}
.ye4{bottom:563.835000px;}
.yb{bottom:566.925000px;}
.y9c{bottom:568.725000px;}
.y201{bottom:569.055000px;}
.y102{bottom:570.885000px;}
.y67{bottom:575.745000px;}
.y2c{bottom:576.105000px;}
.y1c2{bottom:579.675000px;}
.y1a8{bottom:579.855000px;}
.y137{bottom:580.785000px;}
.y21a{bottom:581.109000px;}
.y1ea{bottom:581.115000px;}
.y239{bottom:581.289000px;}
.y4b{bottom:582.405000px;}
.ycb{bottom:582.765000px;}
.yb5{bottom:587.805000px;}
.y122{bottom:594.825000px;}
.y9b{bottom:599.865000px;}
.ya{bottom:600.045000px;}
.y16c{bottom:602.385000px;}
.y7d{bottom:604.005000px;}
.y197{bottom:605.805000px;}
.y1e9{bottom:606.855000px;}
.y66{bottom:606.885000px;}
.y219{bottom:607.029000px;}
.y238{bottom:607.209000px;}
.y2b{bottom:609.765000px;}
.y136{bottom:611.745000px;}
.y4a{bottom:613.545000px;}
.yca{bottom:613.905000px;}
.y101{bottom:618.405000px;}
.yb4{bottom:618.765000px;}
.y190{bottom:624.705000px;}
.y121{bottom:625.965000px;}
.yec{bottom:630.825000px;}
.y218{bottom:632.769000px;}
.y1e8{bottom:632.775000px;}
.y237{bottom:633.129000px;}
.y9{bottom:633.165000px;}
.y7c{bottom:634.965000px;}
.y65{bottom:637.845000px;}
.y16a{bottom:641.985000px;}
.y9a{bottom:642.885000px;}
.y49{bottom:644.505000px;}
.yc9{bottom:644.865000px;}
.y16b{bottom:646.485000px;}
.yb3{bottom:649.905000px;}
.y2a{bottom:652.785000px;}
.y169{bottom:655.305000px;}
.y18c{bottom:655.845000px;}
.y14b{bottom:656.925000px;}
.y217{bottom:658.689000px;}
.y1e7{bottom:658.695000px;}
.y236{bottom:659.229000px;}
.yeb{bottom:661.965000px;}
.y8{bottom:666.465000px;}
.y64{bottom:668.985000px;}
.y99{bottom:673.845000px;}
.y191{bottom:674.925000px;}
.y48{bottom:675.645000px;}
.yc8{bottom:676.005000px;}
.y7b{bottom:678.165000px;}
.y168{bottom:679.245000px;}
.yb2{bottom:680.865000px;}
.y1e6{bottom:684.660000px;}
.y216{bottom:684.789000px;}
.y235{bottom:684.969000px;}
.y7{bottom:687.525000px;}
.y183{bottom:688.065000px;}
.yea{bottom:692.925000px;}
.y29{bottom:695.985000px;}
.y63{bottom:699.945000px;}
.y167{bottom:703.365000px;}
.y98{bottom:704.985000px;}
.yc7{bottom:706.965000px;}
.y1e5{bottom:710.400000px;}
.y215{bottom:710.709000px;}
.y234{bottom:711.069000px;}
.ydf{bottom:712.005000px;}
.y241{bottom:717.945000px;}
.y47{bottom:718.665000px;}
.y193{bottom:719.025000px;}
.y6{bottom:720.645000px;}
.y7a{bottom:721.185000px;}
.yb1{bottom:724.065000px;}
.y28{bottom:726.945000px;}
.y166{bottom:727.305000px;}
.y62{bottom:731.085000px;}
.y97{bottom:735.945000px;}
.y214{bottom:736.854000px;}
.y233{bottom:737.034000px;}
.yc6{bottom:738.105000px;}
.yde{bottom:742.965000px;}
.y13f{bottom:748.905000px;}
.y5{bottom:749.265000px;}
.y46{bottom:749.625000px;}
.yb0{bottom:755.025000px;}
.y27{bottom:757.905000px;}
.y18f{bottom:760.965000px;}
.y120{bottom:762.045000px;}
.y213{bottom:762.954000px;}
.y232{bottom:763.134000px;}
.y79{bottom:764.205000px;}
.y96{bottom:767.085000px;}
.y100{bottom:769.065000px;}
.y61{bottom:774.105000px;}
.y165{bottom:774.645000px;}
.y45{bottom:780.765000px;}
.yc5{bottom:781.125000px;}
.yaf{bottom:786.165000px;}
.y212{bottom:788.874000px;}
.y231{bottom:789.054000px;}
.y12f{bottom:792.105000px;}
.y150{bottom:793.185000px;}
.y78{bottom:795.165000px;}
.y95{bottom:798.045000px;}
.y164{bottom:798.765000px;}
.yff{bottom:800.205000px;}
.y26{bottom:801.105000px;}
.y60{bottom:805.065000px;}
.y44{bottom:811.725000px;}
.y244{bottom:812.265000px;}
.y211{bottom:814.794000px;}
.yae{bottom:817.125000px;}
.y163{bottom:822.705000px;}
.yc4{bottom:824.145000px;}
.y94{bottom:829.185000px;}
.y25{bottom:832.065000px;}
.y19a{bottom:835.305000px;}
.y5f{bottom:836.205000px;}
.y77{bottom:838.365000px;}
.y210{bottom:840.714000px;}
.y192{bottom:842.145000px;}
.yfe{bottom:843.225000px;}
.y161{bottom:846.825000px;}
.yad{bottom:848.310000px;}
.y43{bottom:854.790000px;}
.y14f{bottom:855.330000px;}
.y93{bottom:860.190000px;}
.y5e{bottom:867.210000px;}
.y160{bottom:870.810000px;}
.y23f{bottom:873.150000px;}
.y24{bottom:875.130000px;}
.yac{bottom:879.270000px;}
.y76{bottom:881.430000px;}
.y10a{bottom:885.210000px;}
.y42{bottom:885.930000px;}
.yfd{bottom:886.290000px;}
.y1db{bottom:890.970000px;}
.y92{bottom:891.330000px;}
.y15e{bottom:894.930000px;}
.ydd{bottom:898.350000px;}
.y23{bottom:906.270000px;}
.y5d{bottom:910.410000px;}
.y11f{bottom:914.910000px;}
.y41{bottom:916.890000px;}
.y243{bottom:917.430000px;}
.y91{bottom:922.290000px;}
.y75{bottom:924.450000px;}
.y138{bottom:928.230000px;}
.ydc{bottom:929.310000px;}
.y22{bottom:937.230000px;}
.y5c{bottom:941.370000px;}
.y15d{bottom:942.270000px;}
.y40{bottom:948.030000px;}
.y8f{bottom:953.430000px;}
.y90{bottom:959.370000px;}
.ydb{bottom:960.450000px;}
.y15b{bottom:966.210000px;}
.y74{bottom:967.470000px;}
.y21{bottom:968.370000px;}
.y20b{bottom:970.710000px;}
.y5b{bottom:972.330000px;}
.y12e{bottom:978.270000px;}
.y3f{bottom:978.990000px;}
.y8e{bottom:984.390000px;}
.ye3{bottom:988.890000px;}
.y117{bottom:990.330000px;}
.yda{bottom:991.410000px;}
.y20{bottom:999.330000px;}
.y5a{bottom:1003.470000px;}
.y3e{bottom:1010.130000px;}
.y73{bottom:1010.490000px;}
.y155{bottom:1014.270000px;}
.y8d{bottom:1015.530000px;}
.y242{bottom:1021.470000px;}
.y13e{bottom:1022.550000px;}
.y1f{bottom:1034.250000px;}
.y59{bottom:1034.430000px;}
.yd9{bottom:1040.370000px;}
.y3d{bottom:1041.090000px;}
.y8c{bottom:1046.490000px;}
.y18d{bottom:1052.430000px;}
.y72{bottom:1053.510000px;}
.y58{bottom:1065.570000px;}
.y1e{bottom:1069.350000px;}
.y3c{bottom:1072.230000px;}
.y8b{bottom:1077.630000px;}
.y109{bottom:1083.570000px;}
.y57{bottom:1096.530000px;}
.y1d{bottom:1104.450000px;}
.y3b{bottom:1105.890000px;}
.y4{bottom:1107.690000px;}
.y8a{bottom:1108.590000px;}
.yc3{bottom:1113.090000px;}
.y146{bottom:1114.530000px;}
.y199{bottom:1136.880000px;}
.y1da{bottom:1138.320000px;}
.y1c{bottom:1139.580000px;}
.y3a{bottom:1139.760000px;}
.y3{bottom:1141.020000px;}
.y1{bottom:1194.120000px;}
.h13{height:23.220000px;}
.h16{height:23.256000px;}
.h14{height:23.400000px;}
.hb{height:37.546875px;}
.h9{height:38.671172px;}
.h15{height:46.620000px;}
.he{height:48.088125px;}
.h19{height:48.905156px;}
.h8{height:50.312812px;}
.hf{height:51.333750px;}
.h20{height:53.603086px;}
.h12{height:54.026367px;}
.h4{height:54.628594px;}
.h5{height:55.825312px;}
.hd{height:56.320312px;}
.ha{height:59.439023px;}
.h1b{height:59.789180px;}
.h1c{height:59.965312px;}
.h1e{height:62.327813px;}
.hc{height:64.582031px;}
.h17{height:65.179688px;}
.h2{height:65.884219px;}
.h3{height:67.824844px;}
.h10{height:71.613281px;}
.h6{height:73.722656px;}
.h7{height:75.093750px;}
.h11{height:98.460000px;}
.h21{height:135.000000px;}
.h1d{height:217.980000px;}
.h18{height:270.390000px;}
.h1a{height:594.975000px;}
.h1f{height:724.425000px;}
.h22{height:854.745000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:63.036000px;}
.w4{width:72.720000px;}
.w6{width:74.376000px;}
.we{width:84.420000px;}
.w9{width:105.120000px;}
.wd{width:105.516000px;}
.wf{width:105.660000px;}
.w13{width:137.520000px;}
.w8{width:144.000000px;}
.w7{width:153.030000px;}
.w14{width:158.790000px;}
.wc{width:169.410000px;}
.w12{width:180.030000px;}
.w16{width:184.710000px;}
.w17{width:185.970000px;}
.wa{width:190.650000px;}
.w11{width:200.910000px;}
.w18{width:201.270000px;}
.wb{width:211.890000px;}
.w5{width:243.390000px;}
.w15{width:243.975000px;}
.w1a{width:392.685000px;}
.w19{width:435.315000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x45{left:7.740000px;}
.x79{left:12.060000px;}
.x76{left:13.140000px;}
.x47{left:17.460000px;}
.x4c{left:22.680000px;}
.x7e{left:32.220000px;}
.x6d{left:34.740000px;}
.x4e{left:35.820000px;}
.x7a{left:38.340000px;}
.x4b{left:40.320000px;}
.x55{left:44.505000px;}
.x73{left:46.476000px;}
.x4d{left:48.240000px;}
.x6b{left:53.460000px;}
.x52{left:55.305000px;}
.x7c{left:61.776000px;}
.x54{left:69.150000px;}
.x48{left:73.260000px;}
.x78{left:90.000000px;}
.x74{left:100.620000px;}
.x6f{left:105.840000px;}
.x83{left:108.930000px;}
.x70{left:110.340000px;}
.x72{left:121.890000px;}
.x7b{left:124.020000px;}
.x1{left:127.655987px;}
.x77{left:129.420000px;}
.x12{left:132.515987px;}
.x6c{left:135.390000px;}
.x23{left:137.375987px;}
.xf{left:154.649987px;}
.x51{left:172.649987px;}
.x3{left:181.649987px;}
.x7f{left:185.430000px;}
.x65{left:191.729973px;}
.x46{left:201.450000px;}
.x3a{left:202.709973px;}
.x3d{left:204.689973px;}
.x19{left:210.449973px;}
.x87{left:211.709973px;}
.x1a{left:215.489987px;}
.x3e{left:218.009987px;}
.x66{left:220.709973px;}
.x39{left:223.949987px;}
.x88{left:225.029987px;}
.x60{left:228.989987px;}
.x69{left:232.049987px;}
.x24{left:234.749973px;}
.x2a{left:239.789973px;}
.x82{left:246.855000px;}
.x25{left:248.069987px;}
.x2b{left:253.109987px;}
.x43{left:254.729973px;}
.x80{left:263.775000px;}
.x44{left:268.049987px;}
.x8b{left:271.829973px;}
.x10{left:273.449973px;}
.x11{left:280.154987px;}
.x8c{left:285.194987px;}
.x7d{left:289.694987px;}
.x30{left:291.854973px;}
.x6e{left:298.155000px;}
.x26{left:305.534973px;}
.x27{left:315.614987px;}
.x84{left:320.475000px;}
.x3b{left:321.914973px;}
.x2e{left:325.694973px;}
.x36{left:328.754973px;}
.x58{left:330.015000px;}
.x3c{left:335.234987px;}
.x13{left:337.574973px;}
.x2f{left:339.014987px;}
.x56{left:340.635000px;}
.x14{left:342.614987px;}
.xc{left:343.694987px;}
.x8{left:348.014987px;}
.x31{left:350.894973px;}
.x63{left:353.954973px;}
.x7{left:362.054987px;}
.x32{left:364.214987px;}
.x41{left:365.834973px;}
.x64{left:367.274987px;}
.x6a{left:371.054987px;}
.x5{left:376.814987px;}
.x42{left:379.154987px;}
.xe{left:391.034987px;}
.x4{left:392.654987px;}
.x61{left:393.914973px;}
.xd{left:396.974987px;}
.x6{left:401.114987px;}
.x62{left:407.234987px;}
.x53{left:425.775000px;}
.x18{left:437.294987px;}
.x9{left:441.974987px;}
.x85{left:443.954973px;}
.x49{left:445.575000px;}
.x17{left:446.654987px;}
.x86{left:457.274987px;}
.x81{left:468.255000px;}
.x28{left:482.864973px;}
.x29{left:496.184987px;}
.x75{left:500.145000px;}
.x59{left:510.765000px;}
.x33{left:514.004973px;}
.x21{left:515.984973px;}
.x5d{left:518.864973px;}
.x4a{left:520.665000px;}
.x15{left:525.884973px;}
.x34{left:527.324987px;}
.x22{left:529.304987px;}
.x16{left:532.544987px;}
.x37{left:607.064973px;}
.x3f{left:609.044973px;}
.x38{left:620.384987px;}
.x40{left:622.364987px;}
.x1c{left:625.064973px;}
.x1b{left:631.904973px;}
.x1d{left:634.064973px;}
.xb{left:639.104987px;}
.x1e{left:640.724987px;}
.x1f{left:647.024973px;}
.x5a{left:649.005000px;}
.x20{left:653.684987px;}
.x50{left:662.009973px;}
.x71{left:670.290000px;}
.x2c{left:672.089973px;}
.x4f{left:674.430000px;}
.x5e{left:683.069973px;}
.x2d{left:685.409987px;}
.x5b{left:687.209973px;}
.x5f{left:696.389987px;}
.x5c{left:700.529987px;}
.x57{left:702.150000px;}
.x67{left:730.229973px;}
.x89{left:734.009973px;}
.x68{left:743.549987px;}
.x8a{left:747.329987px;}
.x35{left:752.189973px;}
.xa{left:765.509987px;}
.x2{left:768.929987px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls34{letter-spacing:-3.712000pt;}
.ls8{letter-spacing:-2.432000pt;}
.ls1e{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-1.152000pt;}
.ls21{letter-spacing:-1.125333pt;}
.ls15{letter-spacing:-1.024000pt;}
.lsb{letter-spacing:-0.768000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls39{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls2b{letter-spacing:-0.300267pt;}
.ls20{letter-spacing:-0.242133pt;}
.ls3d{letter-spacing:-0.213867pt;}
.ls35{letter-spacing:-0.201600pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.161067pt;}
.ls1c{letter-spacing:-0.156267pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls48{letter-spacing:-0.094933pt;}
.ls24{letter-spacing:-0.064000pt;}
.ls3c{letter-spacing:-0.057600pt;}
.ls2e{letter-spacing:-0.051840pt;}
.ls47{letter-spacing:-0.047360pt;}
.ls18{letter-spacing:-0.024320pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.020480pt;}
.ls2a{letter-spacing:0.022400pt;}
.ls44{letter-spacing:0.042240pt;}
.ls19{letter-spacing:0.053867pt;}
.ls38{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.133120pt;}
.lsa{letter-spacing:0.133333pt;}
.ls16{letter-spacing:0.154667pt;}
.ls3b{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.165867pt;}
.ls12{letter-spacing:0.192000pt;}
.ls45{letter-spacing:0.203733pt;}
.ls26{letter-spacing:0.216533pt;}
.ls46{letter-spacing:0.233067pt;}
.ls27{letter-spacing:0.239360pt;}
.ls3{letter-spacing:0.256000pt;}
.ls36{letter-spacing:0.256533pt;}
.ls1b{letter-spacing:0.271360pt;}
.ls17{letter-spacing:0.272000pt;}
.ls49{letter-spacing:0.385280pt;}
.ls43{letter-spacing:0.426133pt;}
.ls33{letter-spacing:0.448000pt;}
.ls3e{letter-spacing:0.693333pt;}
.ls4e{letter-spacing:0.768000pt;}
.ls22{letter-spacing:0.773120pt;}
.ls4d{letter-spacing:0.912000pt;}
.ls2d{letter-spacing:1.413120pt;}
.ls2c{letter-spacing:2.074667pt;}
.lsd{letter-spacing:2.693120pt;}
.ls37{letter-spacing:2.714667pt;}
.ls1d{letter-spacing:3.328000pt;}
.ls13{letter-spacing:3.973120pt;}
.ls2f{letter-spacing:5.888000pt;}
.ls42{letter-spacing:11.008000pt;}
.ls10{letter-spacing:12.293120pt;}
.ls25{letter-spacing:14.880000pt;}
.ls32{letter-spacing:15.488000pt;}
.lsc{letter-spacing:16.133120pt;}
.ls28{letter-spacing:16.794880pt;}
.ls29{letter-spacing:17.413120pt;}
.ls30{letter-spacing:18.053120pt;}
.ls41{letter-spacing:18.688000pt;}
.ls23{letter-spacing:21.248000pt;}
.ls31{letter-spacing:24.453120pt;}
.ls9{letter-spacing:25.088000pt;}
.ls4b{letter-spacing:62.672640pt;}
.ls4a{letter-spacing:62.800640pt;}
.ls3f{letter-spacing:174.186667pt;}
.ls2{letter-spacing:177.514667pt;}
.ls40{letter-spacing:178.671787pt;}
.ls4c{letter-spacing:544.112640pt;}
.ws1a{word-spacing:-18.740480pt;}
.ws1e{word-spacing:-18.560000pt;}
.ws2{word-spacing:-18.048000pt;}
.wsb{word-spacing:-17.984000pt;}
.ws5{word-spacing:-17.920000pt;}
.ws6{word-spacing:-17.792000pt;}
.wsc{word-spacing:-17.728000pt;}
.ws9{word-spacing:-17.664000pt;}
.ws4{word-spacing:-17.600000pt;}
.ws3{word-spacing:-17.408000pt;}
.ws10{word-spacing:-17.152000pt;}
.ws1c{word-spacing:-14.767360pt;}
.ws1b{word-spacing:-14.672427pt;}
.ws14{word-spacing:-13.536000pt;}
.ws16{word-spacing:-13.360000pt;}
.ws0{word-spacing:-13.114880pt;}
.ws1d{word-spacing:-12.917120pt;}
.ws15{word-spacing:-12.896000pt;}
.ws19{word-spacing:-12.431253pt;}
.ws7{word-spacing:-12.277120pt;}
.ws13{word-spacing:-12.261653pt;}
.wsd{word-spacing:-12.221653pt;}
.ws8{word-spacing:-12.058987pt;}
.wse{word-spacing:-12.027520pt;}
.wsa{word-spacing:-12.005120pt;}
.ws11{word-spacing:-11.953280pt;}
.ws17{word-spacing:-11.947520pt;}
.ws12{word-spacing:-11.803520pt;}
.ws18{word-spacing:-11.791253pt;}
.wsf{word-spacing:-11.704853pt;}
.ws1{word-spacing:0.000000pt;}
._24{margin-left:-14.592000pt;}
._25{margin-left:-5.546240pt;}
._18{margin-left:-4.263680pt;}
._15{margin-left:-3.009707pt;}
._0{margin-left:-1.667413pt;}
._3{width:0.960853pt;}
._d{width:1.934080pt;}
._f{width:2.880000pt;}
._9{width:3.840000pt;}
._8{width:5.184000pt;}
._7{width:6.359040pt;}
._2{width:7.418880pt;}
._4{width:8.339627pt;}
._a{width:9.280000pt;}
._5{width:10.775040pt;}
._6{width:11.695787pt;}
._12{width:12.784640pt;}
._17{width:14.336000pt;}
._c{width:15.616000pt;}
._b{width:16.768000pt;}
._2e{width:17.792000pt;}
._16{width:18.754560pt;}
._1c{width:19.706027pt;}
._1d{width:20.608000pt;}
._1a{width:21.568000pt;}
._1b{width:22.531413pt;}
._1e{width:23.424000pt;}
._11{width:24.384000pt;}
._10{width:25.472000pt;}
._19{width:27.072000pt;}
._21{width:28.355413pt;}
._1f{width:29.504000pt;}
._20{width:30.912000pt;}
._27{width:32.064000pt;}
._26{width:32.960000pt;}
._29{width:34.549333pt;}
._23{width:35.520000pt;}
._2b{width:36.735147pt;}
._2f{width:37.760000pt;}
._2d{width:39.043200pt;}
._2c{width:40.477440pt;}
._32{width:41.834667pt;}
._4e{width:43.778133pt;}
._47{width:44.833280pt;}
._39{width:46.458453pt;}
._38{width:48.133547pt;}
._30{width:49.728000pt;}
._34{width:50.782293pt;}
._31{width:51.768747pt;}
._33{width:52.842667pt;}
._14{width:54.272000pt;}
._13{width:55.552000pt;}
._3d{width:56.896000pt;}
._22{width:57.792000pt;}
._3f{width:58.794667pt;}
._3e{width:60.044373pt;}
._46{width:62.672640pt;}
._4b{width:64.592640pt;}
._49{width:65.603200pt;}
._37{width:67.328000pt;}
._35{width:68.480000pt;}
._36{width:69.569707pt;}
._3a{width:70.523307pt;}
._28{width:78.208000pt;}
._4a{width:85.895040pt;}
._3c{width:87.298560pt;}
._3b{width:88.224000pt;}
._42{width:91.260160pt;}
._48{width:112.995840pt;}
._4f{width:118.495147pt;}
._50{width:119.424000pt;}
._2a{width:134.316373pt;}
._e{width:174.186667pt;}
._1{width:178.671787pt;}
._41{width:189.739947pt;}
._51{width:192.768000pt;}
._45{width:210.560000pt;}
._40{width:220.895147pt;}
._44{width:274.896640pt;}
._43{width:314.430720pt;}
._4d{width:512.800000pt;}
._4c{width:532.959147pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y20e{bottom:7.680000pt;}
.y15a{bottom:9.440000pt;}
.y162{bottom:9.480000pt;}
.y15c{bottom:9.600000pt;}
.y159{bottom:9.920000pt;}
.y1ff{bottom:10.400000pt;}
.y230{bottom:10.560000pt;}
.y20d{bottom:15.680000pt;}
.y1a5{bottom:18.760000pt;}
.y1e2{bottom:21.280000pt;}
.y1cf{bottom:21.440000pt;}
.y1d6{bottom:24.320000pt;}
.y17c{bottom:26.400000pt;}
.y15f{bottom:30.240000pt;}
.y158{bottom:31.840000pt;}
.y22f{bottom:33.434667pt;}
.y1fe{bottom:33.440000pt;}
.y1e3{bottom:42.720000pt;}
.y1ce{bottom:45.960000pt;}
.y2{bottom:51.072000pt;}
.y1e1{bottom:52.000000pt;}
.y1a6{bottom:53.160000pt;}
.y157{bottom:53.760000pt;}
.y22e{bottom:56.474667pt;}
.y1fd{bottom:56.480000pt;}
.y1c1{bottom:59.400000pt;}
.y19f{bottom:66.760000pt;}
.y1a2{bottom:68.040000pt;}
.y1de{bottom:68.320000pt;}
.y1b{bottom:68.352000pt;}
.y1cd{bottom:70.280000pt;}
.y156{bottom:75.520000pt;}
.y1df{bottom:78.400000pt;}
.y22d{bottom:79.514667pt;}
.y1fc{bottom:79.520000pt;}
.y1c0{bottom:83.880000pt;}
.y1cc{bottom:94.600000pt;}
.yab{bottom:97.952000pt;}
.y182{bottom:98.752000pt;}
.y258{bottom:102.272000pt;}
.y1fb{bottom:102.400000pt;}
.y20f{bottom:102.432000pt;}
.y22c{bottom:102.554667pt;}
.yaa{bottom:102.592000pt;}
.y12b{bottom:104.032000pt;}
.y1a{bottom:104.512000pt;}
.y56{bottom:107.392000pt;}
.y20c{bottom:107.520000pt;}
.y1bf{bottom:108.200000pt;}
.y142{bottom:108.512000pt;}
.y89{bottom:109.632000pt;}
.yfc{bottom:110.272000pt;}
.yd8{bottom:114.112000pt;}
.ya9{bottom:114.592000pt;}
.yf5{bottom:114.752000pt;}
.y18a{bottom:116.672000pt;}
.y10c{bottom:118.752000pt;}
.y1cb{bottom:118.760000pt;}
.y1a4{bottom:118.920000pt;}
.y14d{bottom:119.072000pt;}
.y1d9{bottom:119.552000pt;}
.y39{bottom:124.512000pt;}
.y1e0{bottom:124.640000pt;}
.y24d{bottom:124.672000pt;}
.y22b{bottom:125.434667pt;}
.y14a{bottom:125.472000pt;}
.y1fa{bottom:125.480000pt;}
.y71{bottom:129.152000pt;}
.y257{bottom:129.792000pt;}
.yd7{bottom:130.432000pt;}
.y144{bottom:130.912000pt;}
.y20a{bottom:131.552000pt;}
.yc2{bottom:131.712000pt;}
.y1d5{bottom:132.520000pt;}
.y19{bottom:134.106667pt;}
.y119{bottom:135.066667pt;}
.y116{bottom:136.026667pt;}
.y181{bottom:136.986667pt;}
.yfb{bottom:137.946667pt;}
.yf4{bottom:142.266667pt;}
.y1be{bottom:142.920000pt;}
.y19e{bottom:143.240000pt;}
.y1a3{bottom:143.400000pt;}
.y189{bottom:144.186667pt;}
.y55{bottom:145.626667pt;}
.yd6{bottom:146.746667pt;}
.y118{bottom:147.226667pt;}
.y1e4{bottom:147.386667pt;}
.y1dd{bottom:147.520000pt;}
.y88{bottom:147.866667pt;}
.y22a{bottom:148.514667pt;}
.y1f9{bottom:148.520000pt;}
.y18b{bottom:148.666667pt;}
.y23e{bottom:150.914667pt;}
.yd5{bottom:151.386667pt;}
.y38{bottom:152.186667pt;}
.y12a{bottom:152.986667pt;}
.y1ca{bottom:153.640000pt;}
.y1a1{bottom:156.840000pt;}
.y256{bottom:157.466667pt;}
.y1d8{bottom:159.066667pt;}
.yc1{bottom:159.226667pt;}
.y108{bottom:162.906667pt;}
.yd4{bottom:163.386667pt;}
.y18{bottom:163.546667pt;}
.y115{bottom:163.706667pt;}
.y180{bottom:164.666667pt;}
.yfa{bottom:165.466667pt;}
.y70{bottom:167.386667pt;}
.y1bd{bottom:167.400000pt;}
.y107{bottom:167.546667pt;}
.y19d{bottom:167.720000pt;}
.yf3{bottom:169.946667pt;}
.y229{bottom:171.554667pt;}
.y1f8{bottom:171.560000pt;}
.y188{bottom:171.706667pt;}
.ya8{bottom:174.266667pt;}
.y196{bottom:176.186667pt;}
.y1c9{bottom:178.120000pt;}
.y129{bottom:179.226667pt;}
.y106{bottom:179.706667pt;}
.y11e{bottom:180.666667pt;}
.y1d4{bottom:181.160000pt;}
.y1dc{bottom:181.280000pt;}
.y37{bottom:182.106667pt;}
.y54{bottom:183.866667pt;}
.y255{bottom:184.986667pt;}
.y87{bottom:186.106667pt;}
.y11b{bottom:186.906667pt;}
.y114{bottom:191.226667pt;}
.y1bc{bottom:191.720000pt;}
.y1a0{bottom:191.880000pt;}
.y19c{bottom:192.040000pt;}
.y17f{bottom:192.186667pt;}
.y17{bottom:192.986667pt;}
.yf9{bottom:193.146667pt;}
.y1f7{bottom:194.440000pt;}
.y228{bottom:194.594667pt;}
.y128{bottom:195.546667pt;}
.y12d{bottom:196.026667pt;}
.y1d7{bottom:197.306667pt;}
.yc0{bottom:197.466667pt;}
.y177{bottom:199.706667pt;}
.y127{bottom:200.186667pt;}
.y24c{bottom:201.306667pt;}
.ya7{bottom:201.946667pt;}
.y1c8{bottom:202.440000pt;}
.y14c{bottom:203.706667pt;}
.y1d3{bottom:205.320000pt;}
.y6f{bottom:205.626667pt;}
.y135{bottom:206.746667pt;}
.y10b{bottom:208.186667pt;}
.y187{bottom:210.106667pt;}
.y13d{bottom:211.866667pt;}
.y36{bottom:212.186667pt;}
.y126{bottom:212.346667pt;}
.y254{bottom:212.666667pt;}
.y1a7{bottom:212.986667pt;}
.ye9{bottom:214.426667pt;}
.y227{bottom:217.474667pt;}
.y1f6{bottom:217.480000pt;}
.y113{bottom:218.906667pt;}
.y17e{bottom:219.866667pt;}
.y53{bottom:222.266667pt;}
.y16{bottom:222.426667pt;}
.y86{bottom:224.506667pt;}
.ybf{bottom:225.146667pt;}
.y1bb{bottom:226.600000pt;}
.y19b{bottom:226.760000pt;}
.yd3{bottom:226.906667pt;}
.y176{bottom:227.386667pt;}
.y13c{bottom:228.026667pt;}
.ya6{bottom:229.466667pt;}
.y1d2{bottom:229.640000pt;}
.y11c{bottom:230.426667pt;}
.yf8{bottom:231.386667pt;}
.y148{bottom:232.666667pt;}
.y134{bottom:234.266667pt;}
.y23d{bottom:235.554667pt;}
.yf2{bottom:235.706667pt;}
.y105{bottom:237.626667pt;}
.y200{bottom:237.960000pt;}
.y24b{bottom:239.546667pt;}
.y253{bottom:240.186667pt;}
.y1b2{bottom:240.200000pt;}
.y226{bottom:240.514667pt;}
.y1f5{bottom:240.520000pt;}
.y14e{bottom:240.986667pt;}
.y35{bottom:242.106667pt;}
.y6e{bottom:243.866667pt;}
.y13b{bottom:244.346667pt;}
.y147{bottom:244.826667pt;}
.y112{bottom:246.426667pt;}
.y1ba{bottom:251.080000pt;}
.y15{bottom:251.906667pt;}
.ybe{bottom:252.706667pt;}
.y175{bottom:254.946667pt;}
.y23c{bottom:256.834667pt;}
.ya5{bottom:257.186667pt;}
.y149{bottom:257.986667pt;}
.y17d{bottom:258.146667pt;}
.y195{bottom:258.946667pt;}
.y52{bottom:260.546667pt;}
.y13a{bottom:260.706667pt;}
.y133{bottom:261.986667pt;}
.y85{bottom:262.786667pt;}
.yf1{bottom:263.426667pt;}
.y225{bottom:263.554667pt;}
.y1f4{bottom:263.560000pt;}
.y1d1{bottom:264.520000pt;}
.y1b1{bottom:264.680000pt;}
.yd2{bottom:265.346667pt;}
.y252{bottom:267.746667pt;}
.yf7{bottom:269.666667pt;}
.y34{bottom:272.226667pt;}
.y17b{bottom:273.826667pt;}
.y111{bottom:274.146667pt;}
.y1b9{bottom:275.400000pt;}
.y186{bottom:275.906667pt;}
.y139{bottom:277.506667pt;}
.y24a{bottom:277.826667pt;}
.ybd{bottom:280.386667pt;}
.y14{bottom:281.346667pt;}
.y6d{bottom:282.146667pt;}
.y174{bottom:282.626667pt;}
.ya4{bottom:284.706667pt;}
.y1f3{bottom:286.440000pt;}
.y224{bottom:286.594667pt;}
.y194{bottom:286.626667pt;}
.y1b0{bottom:289.026667pt;}
.y132{bottom:289.506667pt;}
.y84{bottom:290.306667pt;}
.yf0{bottom:290.946667pt;}
.yd1{bottom:292.866667pt;}
.y251{bottom:295.426667pt;}
.yf6{bottom:297.346667pt;}
.y51{bottom:298.786667pt;}
.y1b8{bottom:299.746667pt;}
.y110{bottom:301.666667pt;}
.y33{bottom:302.146667pt;}
.y198{bottom:303.586667pt;}
.ybc{bottom:307.906667pt;}
.y223{bottom:309.474667pt;}
.y1f2{bottom:309.480000pt;}
.y173{bottom:310.146667pt;}
.y13{bottom:310.946667pt;}
.y209{bottom:311.080000pt;}
.ya3{bottom:312.386667pt;}
.y18e{bottom:313.186667pt;}
.y185{bottom:314.146667pt;}
.y17a{bottom:315.906667pt;}
.y249{bottom:316.066667pt;}
.y131{bottom:317.186667pt;}
.y83{bottom:317.986667pt;}
.ye2{bottom:318.626667pt;}
.y6c{bottom:320.546667pt;}
.y250{bottom:322.946667pt;}
.y1af{bottom:323.746667pt;}
.y11a{bottom:323.906667pt;}
.y125{bottom:324.866667pt;}
.yef{bottom:329.346667pt;}
.y32{bottom:332.066667pt;}
.y222{bottom:332.514667pt;}
.y1f1{bottom:332.520000pt;}
.y208{bottom:334.120000pt;}
.y1c7{bottom:334.466667pt;}
.y11d{bottom:334.626667pt;}
.ybb{bottom:335.586667pt;}
.y50{bottom:337.026667pt;}
.y179{bottom:337.346667pt;}
.y172{bottom:337.826667pt;}
.ya2{bottom:339.906667pt;}
.y12{bottom:340.386667pt;}
.y184{bottom:341.826667pt;}
.y130{bottom:344.706667pt;}
.y143{bottom:345.186667pt;}
.ye1{bottom:346.146667pt;}
.y23b{bottom:347.874667pt;}
.yd0{bottom:348.066667pt;}
.y1ae{bottom:348.226667pt;}
.y24f{bottom:350.626667pt;}
.y124{bottom:352.546667pt;}
.y248{bottom:354.306667pt;}
.y1f0{bottom:355.426667pt;}
.y221{bottom:355.554667pt;}
.y82{bottom:356.226667pt;}
.yee{bottom:356.866667pt;}
.y207{bottom:357.186667pt;}
.y178{bottom:358.626667pt;}
.y6b{bottom:358.786667pt;}
.y1c6{bottom:358.946667pt;}
.y31{bottom:362.146667pt;}
.ye8{bottom:363.106667pt;}
.ya1{bottom:367.586667pt;}
.y11{bottom:369.826667pt;}
.y1b7{bottom:372.546667pt;}
.yba{bottom:373.826667pt;}
.y4f{bottom:375.266667pt;}
.y171{bottom:376.066667pt;}
.y24e{bottom:378.146667pt;}
.y1ef{bottom:378.466667pt;}
.y220{bottom:378.594667pt;}
.y123{bottom:380.066667pt;}
.y206{bottom:380.226667pt;}
.y1ad{bottom:383.106667pt;}
.y1c5{bottom:383.266667pt;}
.yed{bottom:384.546667pt;}
.ycf{bottom:386.306667pt;}
.ye7{bottom:390.786667pt;}
.y30{bottom:392.066667pt;}
.y247{bottom:392.546667pt;}
.y81{bottom:394.466667pt;}
.ya0{bottom:395.106667pt;}
.y6a{bottom:397.026667pt;}
.y10{bottom:399.266667pt;}
.yb9{bottom:401.346667pt;}
.y21f{bottom:401.501333pt;}
.y1ee{bottom:401.506667pt;}
.y205{bottom:403.106667pt;}
.y170{bottom:403.586667pt;}
.y154{bottom:405.826667pt;}
.y12c{bottom:406.626667pt;}
.y1b6{bottom:407.426667pt;}
.y1c4{bottom:407.586667pt;}
.y141{bottom:407.746667pt;}
.y10f{bottom:412.066667pt;}
.y4e{bottom:413.506667pt;}
.y104{bottom:413.986667pt;}
.yf{bottom:417.986667pt;}
.y1ac{bottom:418.146667pt;}
.ye6{bottom:418.306667pt;}
.y23a{bottom:421.501333pt;}
.y2f{bottom:422.146667pt;}
.y9f{bottom:422.786667pt;}
.y21e{bottom:424.541333pt;}
.yce{bottom:424.546667pt;}
.y204{bottom:426.146667pt;}
.y145{bottom:428.066667pt;}
.yb8{bottom:429.026667pt;}
.y246{bottom:430.946667pt;}
.y1b5{bottom:431.906667pt;}
.y80{bottom:432.706667pt;}
.y153{bottom:433.346667pt;}
.y69{bottom:435.266667pt;}
.ye{bottom:436.866667pt;}
.y10e{bottom:439.746667pt;}
.y16f{bottom:441.826667pt;}
.y1ab{bottom:442.466667pt;}
.ye5{bottom:445.986667pt;}
.y1ed{bottom:447.426667pt;}
.y21d{bottom:447.581333pt;}
.y203{bottom:449.186667pt;}
.y9e{bottom:450.306667pt;}
.y240{bottom:451.266667pt;}
.y4d{bottom:451.906667pt;}
.y2e{bottom:452.066667pt;}
.ycd{bottom:452.226667pt;}
.y1b4{bottom:456.226667pt;}
.yb7{bottom:456.546667pt;}
.y7f{bottom:460.386667pt;}
.y152{bottom:461.026667pt;}
.y140{bottom:462.946667pt;}
.yd{bottom:466.306667pt;}
.y1d0{bottom:466.626667pt;}
.y1aa{bottom:466.786667pt;}
.y10d{bottom:467.266667pt;}
.y245{bottom:469.186667pt;}
.y16e{bottom:469.506667pt;}
.y1ec{bottom:470.466667pt;}
.y21c{bottom:470.621333pt;}
.y202{bottom:472.226667pt;}
.y68{bottom:473.506667pt;}
.y9d{bottom:477.986667pt;}
.y103{bottom:479.746667pt;}
.y1c3{bottom:480.546667pt;}
.y2d{bottom:481.986667pt;}
.yb6{bottom:484.226667pt;}
.yc{bottom:485.186667pt;}
.y151{bottom:488.546667pt;}
.y4c{bottom:490.146667pt;}
.ycc{bottom:490.466667pt;}
.y1b3{bottom:490.946667pt;}
.y1a9{bottom:491.106667pt;}
.y21b{bottom:493.501333pt;}
.y1eb{bottom:493.506667pt;}
.ye0{bottom:494.946667pt;}
.y16d{bottom:497.026667pt;}
.y7e{bottom:498.626667pt;}
.ye4{bottom:501.186667pt;}
.yb{bottom:503.933333pt;}
.y9c{bottom:505.533333pt;}
.y201{bottom:505.826667pt;}
.y102{bottom:507.453333pt;}
.y67{bottom:511.773333pt;}
.y2c{bottom:512.093333pt;}
.y1c2{bottom:515.266667pt;}
.y1a8{bottom:515.426667pt;}
.y137{bottom:516.253333pt;}
.y21a{bottom:516.541333pt;}
.y1ea{bottom:516.546667pt;}
.y239{bottom:516.701333pt;}
.y4b{bottom:517.693333pt;}
.ycb{bottom:518.013333pt;}
.yb5{bottom:522.493333pt;}
.y122{bottom:528.733333pt;}
.y9b{bottom:533.213333pt;}
.ya{bottom:533.373333pt;}
.y16c{bottom:535.453333pt;}
.y7d{bottom:536.893333pt;}
.y197{bottom:538.493333pt;}
.y1e9{bottom:539.426667pt;}
.y66{bottom:539.453333pt;}
.y219{bottom:539.581333pt;}
.y238{bottom:539.741333pt;}
.y2b{bottom:542.013333pt;}
.y136{bottom:543.773333pt;}
.y4a{bottom:545.373333pt;}
.yca{bottom:545.693333pt;}
.y101{bottom:549.693333pt;}
.yb4{bottom:550.013333pt;}
.y190{bottom:555.293333pt;}
.y121{bottom:556.413333pt;}
.yec{bottom:560.733333pt;}
.y218{bottom:562.461333pt;}
.y1e8{bottom:562.466667pt;}
.y237{bottom:562.781333pt;}
.y9{bottom:562.813333pt;}
.y7c{bottom:564.413333pt;}
.y65{bottom:566.973333pt;}
.y16a{bottom:570.653333pt;}
.y9a{bottom:571.453333pt;}
.y49{bottom:572.893333pt;}
.yc9{bottom:573.213333pt;}
.y16b{bottom:574.653333pt;}
.yb3{bottom:577.693333pt;}
.y2a{bottom:580.253333pt;}
.y169{bottom:582.493333pt;}
.y18c{bottom:582.973333pt;}
.y14b{bottom:583.933333pt;}
.y217{bottom:585.501333pt;}
.y1e7{bottom:585.506667pt;}
.y236{bottom:585.981333pt;}
.yeb{bottom:588.413333pt;}
.y8{bottom:592.413333pt;}
.y64{bottom:594.653333pt;}
.y99{bottom:598.973333pt;}
.y191{bottom:599.933333pt;}
.y48{bottom:600.573333pt;}
.yc8{bottom:600.893333pt;}
.y7b{bottom:602.813333pt;}
.y168{bottom:603.773333pt;}
.yb2{bottom:605.213333pt;}
.y1e6{bottom:608.586667pt;}
.y216{bottom:608.701333pt;}
.y235{bottom:608.861333pt;}
.y7{bottom:611.133333pt;}
.y183{bottom:611.613333pt;}
.yea{bottom:615.933333pt;}
.y29{bottom:618.653333pt;}
.y63{bottom:622.173333pt;}
.y167{bottom:625.213333pt;}
.y98{bottom:626.653333pt;}
.yc7{bottom:628.413333pt;}
.y1e5{bottom:631.466667pt;}
.y215{bottom:631.741333pt;}
.y234{bottom:632.061333pt;}
.ydf{bottom:632.893333pt;}
.y241{bottom:638.173333pt;}
.y47{bottom:638.813333pt;}
.y193{bottom:639.133333pt;}
.y6{bottom:640.573333pt;}
.y7a{bottom:641.053333pt;}
.yb1{bottom:643.613333pt;}
.y28{bottom:646.173333pt;}
.y166{bottom:646.493333pt;}
.y62{bottom:649.853333pt;}
.y97{bottom:654.173333pt;}
.y214{bottom:654.981333pt;}
.y233{bottom:655.141333pt;}
.yc6{bottom:656.093333pt;}
.yde{bottom:660.413333pt;}
.y13f{bottom:665.693333pt;}
.y5{bottom:666.013333pt;}
.y46{bottom:666.333333pt;}
.yb0{bottom:671.133333pt;}
.y27{bottom:673.693333pt;}
.y18f{bottom:676.413333pt;}
.y120{bottom:677.373333pt;}
.y213{bottom:678.181333pt;}
.y232{bottom:678.341333pt;}
.y79{bottom:679.293333pt;}
.y96{bottom:681.853333pt;}
.y100{bottom:683.613333pt;}
.y61{bottom:688.093333pt;}
.y165{bottom:688.573333pt;}
.y45{bottom:694.013333pt;}
.yc5{bottom:694.333333pt;}
.yaf{bottom:698.813333pt;}
.y212{bottom:701.221333pt;}
.y231{bottom:701.381333pt;}
.y12f{bottom:704.093333pt;}
.y150{bottom:705.053333pt;}
.y78{bottom:706.813333pt;}
.y95{bottom:709.373333pt;}
.y164{bottom:710.013333pt;}
.yff{bottom:711.293333pt;}
.y26{bottom:712.093333pt;}
.y60{bottom:715.613333pt;}
.y44{bottom:721.533333pt;}
.y244{bottom:722.013333pt;}
.y211{bottom:724.261333pt;}
.yae{bottom:726.333333pt;}
.y163{bottom:731.293333pt;}
.yc4{bottom:732.573333pt;}
.y94{bottom:737.053333pt;}
.y25{bottom:739.613333pt;}
.y19a{bottom:742.493333pt;}
.y5f{bottom:743.293333pt;}
.y77{bottom:745.213333pt;}
.y210{bottom:747.301333pt;}
.y192{bottom:748.573333pt;}
.yfe{bottom:749.533333pt;}
.y161{bottom:752.733333pt;}
.yad{bottom:754.053333pt;}
.y43{bottom:759.813333pt;}
.y14f{bottom:760.293333pt;}
.y93{bottom:764.613333pt;}
.y5e{bottom:770.853333pt;}
.y160{bottom:774.053333pt;}
.y23f{bottom:776.133333pt;}
.y24{bottom:777.893333pt;}
.yac{bottom:781.573333pt;}
.y76{bottom:783.493333pt;}
.y10a{bottom:786.853333pt;}
.y42{bottom:787.493333pt;}
.yfd{bottom:787.813333pt;}
.y1db{bottom:791.973333pt;}
.y92{bottom:792.293333pt;}
.y15e{bottom:795.493333pt;}
.ydd{bottom:798.533333pt;}
.y23{bottom:805.573333pt;}
.y5d{bottom:809.253333pt;}
.y11f{bottom:813.253333pt;}
.y41{bottom:815.013333pt;}
.y243{bottom:815.493333pt;}
.y91{bottom:819.813333pt;}
.y75{bottom:821.733333pt;}
.y138{bottom:825.093333pt;}
.ydc{bottom:826.053333pt;}
.y22{bottom:833.093333pt;}
.y5c{bottom:836.773333pt;}
.y15d{bottom:837.573333pt;}
.y40{bottom:842.693333pt;}
.y8f{bottom:847.493333pt;}
.y90{bottom:852.773333pt;}
.ydb{bottom:853.733333pt;}
.y15b{bottom:858.853333pt;}
.y74{bottom:859.973333pt;}
.y21{bottom:860.773333pt;}
.y20b{bottom:862.853333pt;}
.y5b{bottom:864.293333pt;}
.y12e{bottom:869.573333pt;}
.y3f{bottom:870.213333pt;}
.y8e{bottom:875.013333pt;}
.ye3{bottom:879.013333pt;}
.y117{bottom:880.293333pt;}
.yda{bottom:881.253333pt;}
.y20{bottom:888.293333pt;}
.y5a{bottom:891.973333pt;}
.y3e{bottom:897.893333pt;}
.y73{bottom:898.213333pt;}
.y155{bottom:901.573333pt;}
.y8d{bottom:902.693333pt;}
.y242{bottom:907.973333pt;}
.y13e{bottom:908.933333pt;}
.y1f{bottom:919.333333pt;}
.y59{bottom:919.493333pt;}
.yd9{bottom:924.773333pt;}
.y3d{bottom:925.413333pt;}
.y8c{bottom:930.213333pt;}
.y18d{bottom:935.493333pt;}
.y72{bottom:936.453333pt;}
.y58{bottom:947.173333pt;}
.y1e{bottom:950.533333pt;}
.y3c{bottom:953.093333pt;}
.y8b{bottom:957.893333pt;}
.y109{bottom:963.173333pt;}
.y57{bottom:974.693333pt;}
.y1d{bottom:981.733333pt;}
.y3b{bottom:983.013333pt;}
.y4{bottom:984.613333pt;}
.y8a{bottom:985.413333pt;}
.yc3{bottom:989.413333pt;}
.y146{bottom:990.693333pt;}
.y199{bottom:1010.560000pt;}
.y1da{bottom:1011.840000pt;}
.y1c{bottom:1012.960000pt;}
.y3a{bottom:1013.120000pt;}
.y3{bottom:1014.240000pt;}
.y1{bottom:1061.440000pt;}
.h13{height:20.640000pt;}
.h16{height:20.672000pt;}
.h14{height:20.800000pt;}
.hb{height:33.375000pt;}
.h9{height:34.374375pt;}
.h15{height:41.440000pt;}
.he{height:42.745000pt;}
.h19{height:43.471250pt;}
.h8{height:44.722500pt;}
.hf{height:45.630000pt;}
.h20{height:47.647188pt;}
.h12{height:48.023438pt;}
.h4{height:48.558750pt;}
.h5{height:49.622500pt;}
.hd{height:50.062500pt;}
.ha{height:52.834688pt;}
.h1b{height:53.145938pt;}
.h1c{height:53.302500pt;}
.h1e{height:55.402500pt;}
.hc{height:57.406250pt;}
.h17{height:57.937500pt;}
.h2{height:58.563750pt;}
.h3{height:60.288750pt;}
.h10{height:63.656250pt;}
.h6{height:65.531250pt;}
.h7{height:66.750000pt;}
.h11{height:87.520000pt;}
.h21{height:120.000000pt;}
.h1d{height:193.760000pt;}
.h18{height:240.346667pt;}
.h1a{height:528.866667pt;}
.h1f{height:643.933333pt;}
.h22{height:759.773333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:56.032000pt;}
.w4{width:64.640000pt;}
.w6{width:66.112000pt;}
.we{width:75.040000pt;}
.w9{width:93.440000pt;}
.wd{width:93.792000pt;}
.wf{width:93.920000pt;}
.w13{width:122.240000pt;}
.w8{width:128.000000pt;}
.w7{width:136.026667pt;}
.w14{width:141.146667pt;}
.wc{width:150.586667pt;}
.w12{width:160.026667pt;}
.w16{width:164.186667pt;}
.w17{width:165.306667pt;}
.wa{width:169.466667pt;}
.w11{width:178.586667pt;}
.w18{width:178.906667pt;}
.wb{width:188.346667pt;}
.w5{width:216.346667pt;}
.w15{width:216.866667pt;}
.w1a{width:349.053333pt;}
.w19{width:386.946667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x45{left:6.880000pt;}
.x79{left:10.720000pt;}
.x76{left:11.680000pt;}
.x47{left:15.520000pt;}
.x4c{left:20.160000pt;}
.x7e{left:28.640000pt;}
.x6d{left:30.880000pt;}
.x4e{left:31.840000pt;}
.x7a{left:34.080000pt;}
.x4b{left:35.840000pt;}
.x55{left:39.560000pt;}
.x73{left:41.312000pt;}
.x4d{left:42.880000pt;}
.x6b{left:47.520000pt;}
.x52{left:49.160000pt;}
.x7c{left:54.912000pt;}
.x54{left:61.466667pt;}
.x48{left:65.120000pt;}
.x78{left:80.000000pt;}
.x74{left:89.440000pt;}
.x6f{left:94.080000pt;}
.x83{left:96.826667pt;}
.x70{left:98.080000pt;}
.x72{left:108.346667pt;}
.x7b{left:110.240000pt;}
.x1{left:113.471988pt;}
.x77{left:115.040000pt;}
.x12{left:117.791988pt;}
.x6c{left:120.346667pt;}
.x23{left:122.111988pt;}
.xf{left:137.466655pt;}
.x51{left:153.466655pt;}
.x3{left:161.466655pt;}
.x7f{left:164.826667pt;}
.x65{left:170.426643pt;}
.x46{left:179.066667pt;}
.x3a{left:180.186643pt;}
.x3d{left:181.946643pt;}
.x19{left:187.066643pt;}
.x87{left:188.186643pt;}
.x1a{left:191.546655pt;}
.x3e{left:193.786655pt;}
.x66{left:196.186643pt;}
.x39{left:199.066655pt;}
.x88{left:200.026655pt;}
.x60{left:203.546655pt;}
.x69{left:206.266655pt;}
.x24{left:208.666643pt;}
.x2a{left:213.146643pt;}
.x82{left:219.426667pt;}
.x25{left:220.506655pt;}
.x2b{left:224.986655pt;}
.x43{left:226.426643pt;}
.x80{left:234.466667pt;}
.x44{left:238.266655pt;}
.x8b{left:241.626643pt;}
.x10{left:243.066643pt;}
.x11{left:249.026655pt;}
.x8c{left:253.506655pt;}
.x7d{left:257.506655pt;}
.x30{left:259.426643pt;}
.x6e{left:265.026667pt;}
.x26{left:271.586643pt;}
.x27{left:280.546655pt;}
.x84{left:284.866667pt;}
.x3b{left:286.146643pt;}
.x2e{left:289.506643pt;}
.x36{left:292.226643pt;}
.x58{left:293.346667pt;}
.x3c{left:297.986655pt;}
.x13{left:300.066643pt;}
.x2f{left:301.346655pt;}
.x56{left:302.786667pt;}
.x14{left:304.546655pt;}
.xc{left:305.506655pt;}
.x8{left:309.346655pt;}
.x31{left:311.906643pt;}
.x63{left:314.626643pt;}
.x7{left:321.826655pt;}
.x32{left:323.746655pt;}
.x41{left:325.186643pt;}
.x64{left:326.466655pt;}
.x6a{left:329.826655pt;}
.x5{left:334.946655pt;}
.x42{left:337.026655pt;}
.xe{left:347.586655pt;}
.x4{left:349.026655pt;}
.x61{left:350.146643pt;}
.xd{left:352.866655pt;}
.x6{left:356.546655pt;}
.x62{left:361.986655pt;}
.x53{left:378.466667pt;}
.x18{left:388.706655pt;}
.x9{left:392.866655pt;}
.x85{left:394.626643pt;}
.x49{left:396.066667pt;}
.x17{left:397.026655pt;}
.x86{left:406.466655pt;}
.x81{left:416.226667pt;}
.x28{left:429.213310pt;}
.x29{left:441.053322pt;}
.x75{left:444.573333pt;}
.x59{left:454.013333pt;}
.x33{left:456.893310pt;}
.x21{left:458.653310pt;}
.x5d{left:461.213310pt;}
.x4a{left:462.813333pt;}
.x15{left:467.453310pt;}
.x34{left:468.733322pt;}
.x22{left:470.493322pt;}
.x16{left:473.373322pt;}
.x37{left:539.613310pt;}
.x3f{left:541.373310pt;}
.x38{left:551.453322pt;}
.x40{left:553.213322pt;}
.x1c{left:555.613310pt;}
.x1b{left:561.693310pt;}
.x1d{left:563.613310pt;}
.xb{left:568.093322pt;}
.x1e{left:569.533322pt;}
.x1f{left:575.133310pt;}
.x5a{left:576.893333pt;}
.x20{left:581.053322pt;}
.x50{left:588.453310pt;}
.x71{left:595.813333pt;}
.x2c{left:597.413310pt;}
.x4f{left:599.493333pt;}
.x5e{left:607.173310pt;}
.x2d{left:609.253322pt;}
.x5b{left:610.853310pt;}
.x5f{left:619.013322pt;}
.x5c{left:622.693322pt;}
.x57{left:624.133333pt;}
.x67{left:649.093310pt;}
.x89{left:652.453310pt;}
.x68{left:660.933322pt;}
.x8a{left:664.293322pt;}
.x35{left:668.613310pt;}
.xa{left:680.453322pt;}
.x2{left:683.493322pt;}
}




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