
    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_721e7fc8a232df9265f7f91c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0e66fe2761ffd69155ccbaac.woff')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_0e66fe2761ffd69155ccbaac.woff')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_cf473fff2ecc712fed924262.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff6{font-family:ff6;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b0b15e2014e9299aee880581.woff')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_501f295bb511b01714f1960a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_675d0a3e096fff68a207f2fb.woff')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_b010e47a581509ad388b8702.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.737793;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_f6b452bdc3fd0b168ecfe482.woff')format("woff");}.ffc{font-family:ffc;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_28d09231b400cf7b7c697676.woff')format("woff");}.ffd{font-family:ffd;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_165fb94c4df93711d2726227.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_33ab1995e46319ad83b23f52.woff')format("woff");}.ff10{font-family:ff10;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_aae55052005d286c8e668fa6.woff')format("woff");}.ff11{font-family:ff11;line-height:1.060547;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-83.520000px;}
.v5{vertical-align:-66.960000px;}
.v2{vertical-align:-18.180000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-1.440000px;}
.ls20{letter-spacing:-0.900000px;}
.lse{letter-spacing:-0.810000px;}
.ls22{letter-spacing:-0.666000px;}
.lsa{letter-spacing:-0.540000px;}
.ls26{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.259800px;}
.lsd{letter-spacing:-0.223800px;}
.ls19{letter-spacing:-0.181200px;}
.ls1f{letter-spacing:-0.089400px;}
.ls12{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls14{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.089280px;}
.ls3{letter-spacing:0.144720px;}
.ls24{letter-spacing:0.153600px;}
.ls16{letter-spacing:0.156240px;}
.ls4{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.181200px;}
.ls11{letter-spacing:0.259800px;}
.ls23{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.315600px;}
.ls7{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.666000px;}
.ls1e{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.978000px;}
.ls1c{letter-spacing:1.080000px;}
.ls18{letter-spacing:1.703520px;}
.ls15{letter-spacing:1.794240px;}
.ls17{letter-spacing:2.212560px;}
.ls6{letter-spacing:2.340000px;}
.ls1d{letter-spacing:36.000000px;}
.ls2{letter-spacing:47.700000px;}
.ls0{letter-spacing:71.280000px;}
.ls1{letter-spacing:72.000000px;}
.ls1b{letter-spacing:111.960000px;}
.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;}
}
.ws12{word-spacing:-48.240000px;}
.ws10{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws1a{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.199800px;}
.ws1b{word-spacing:-15.093600px;}
.wsf{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.680200px;}
.ws1c{word-spacing:-14.479800px;}
.ws19{word-spacing:-14.274000px;}
.ws9{word-spacing:-13.500000px;}
.ws7{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.241200px;}
.ws11{word-spacing:-12.060000px;}
.ws13{word-spacing:-11.878800px;}
.ws15{word-spacing:-11.836200px;}
.ws3{word-spacing:-11.700000px;}
.ws5{word-spacing:-11.340000px;}
.ws16{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.980000px;}
.ws8{word-spacing:-10.950480px;}
.wsb{word-spacing:-10.440000px;}
.ws17{word-spacing:-10.350600px;}
.ws18{word-spacing:-9.540000px;}
.wsa{word-spacing:-9.000000px;}
.ws2{word-spacing:-7.560000px;}
.wsc{word-spacing:0.000000px;}
.ws1{word-spacing:60.840000px;}
._7{margin-left:-59.580000px;}
._12{margin-left:-3.406320px;}
._4{margin-left:-2.337840px;}
._2{margin-left:-1.324800px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._13{width:3.683040px;}
._b{width:4.721040px;}
._a{width:5.916240px;}
._c{width:7.206480px;}
._11{width:8.844480px;}
._10{width:9.920160px;}
._d{width:11.772720px;}
._18{width:13.363200px;}
._19{width:14.820960px;}
._14{width:16.848000px;}
._15{width:17.874000px;}
._1f{width:19.609200px;}
._1d{width:21.513600px;}
._f{width:22.947840px;}
._e{width:24.202800px;}
._20{width:25.517520px;}
._21{width:26.804160px;}
._1c{width:28.027440px;}
._9{width:29.581200px;}
._17{width:31.403520px;}
._1b{width:32.690880px;}
._2d{width:34.003440px;}
._24{width:35.676720px;}
._27{width:36.931680px;}
._2b{width:38.190240px;}
._33{width:39.620880px;}
._30{width:40.756320px;}
._2c{width:42.489360px;}
._2f{width:44.912160px;}
._29{width:46.314000px;}
._23{width:47.568960px;}
._22{width:49.302000px;}
._26{width:50.349600px;}
._35{width:51.395040px;}
._3e{width:52.630560px;}
._3d{width:53.664480px;}
._28{width:55.517040px;}
._37{width:56.712240px;}
._3b{width:57.882960px;}
._25{width:58.923360px;}
._31{width:59.999040px;}
._1e{width:61.025760px;}
._36{width:62.796960px;}
._5{width:65.496000px;}
._40{width:69.685200px;}
._3{width:71.441760px;}
._16{width:72.996480px;}
._2e{width:74.939040px;}
._3c{width:84.442080px;}
._41{width:88.504560px;}
._34{width:95.855040px;}
._32{width:109.864800px;}
._3f{width:116.444160px;}
._38{width:136.643040px;}
._2a{width:163.413840px;}
._3a{width:172.797840px;}
._6{width:199.620000px;}
._1a{width:282.270000px;}
._39{width:705.586320px;}
._8{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs11{font-size:6.000000px;}
.fsc{font-size:23.760000px;}
.fs8{font-size:30.240000px;}
.fsf{font-size:33.120000px;}
.fsd{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs0{font-size:41.760000px;}
.fs7{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fse{font-size:62.991941px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs10{font-size:108.000000px;}
.y45{bottom:-247.710000px;}
.y44{bottom:-213.870000px;}
.y43{bottom:-180.165000px;}
.y7f{bottom:-170.325000px;}
.y42{bottom:-146.505000px;}
.y7e{bottom:-136.635000px;}
.y41{bottom:-112.665000px;}
.y7d{bottom:-102.795000px;}
.y40{bottom:-79.005000px;}
.y7c{bottom:-69.135000px;}
.y3f{bottom:-45.165000px;}
.y7b{bottom:-35.475000px;}
.y48{bottom:-27.180000px;}
.y81{bottom:-17.922750px;}
.y64{bottom:-12.075000px;}
.y3e{bottom:-11.505000px;}
.y7a{bottom:-1.635000px;}
.y0{bottom:0.000000px;}
.y25f{bottom:1.837500px;}
.y180{bottom:2.700000px;}
.y16a{bottom:2.715000px;}
.y17a{bottom:2.865000px;}
.y15b{bottom:2.880000px;}
.y160{bottom:2.895000px;}
.y199{bottom:3.405000px;}
.y2{bottom:3.960000px;}
.y143{bottom:4.665000px;}
.y114{bottom:4.695000px;}
.y17c{bottom:4.845000px;}
.y122{bottom:4.860000px;}
.y47{bottom:5.040000px;}
.y6d{bottom:5.580000px;}
.y63{bottom:5.745000px;}
.y166{bottom:5.760000px;}
.y18e{bottom:6.465000px;}
.y191{bottom:6.645000px;}
.y174{bottom:6.660000px;}
.y189{bottom:6.840000px;}
.y3d{bottom:6.855000px;}
.y171{bottom:7.380000px;}
.y147{bottom:8.265000px;}
.y175{bottom:8.640000px;}
.y164{bottom:8.820000px;}
.y170{bottom:9.540000px;}
.y172{bottom:9.720000px;}
.y14a{bottom:10.065000px;}
.y11d{bottom:10.080000px;}
.y194{bottom:10.245000px;}
.y10d{bottom:10.260000px;}
.y119{bottom:10.620000px;}
.y146{bottom:11.505000px;}
.y116{bottom:11.715000px;}
.y17d{bottom:11.865000px;}
.y15c{bottom:11.880000px;}
.y162{bottom:12.060000px;}
.y144{bottom:12.585000px;}
.y5{bottom:12.600000px;}
.y149{bottom:15.105000px;}
.y192{bottom:15.825000px;}
.y18a{bottom:15.840000px;}
.y118{bottom:16.380000px;}
.y168{bottom:16.560000px;}
.y15e{bottom:16.740000px;}
.y6b{bottom:18.015000px;}
.y17b{bottom:18.705000px;}
.y113{bottom:18.720000px;}
.y165{bottom:18.900000px;}
.y197{bottom:19.245000px;}
.y111{bottom:19.275000px;}
.y195{bottom:19.425000px;}
.y18d{bottom:20.370000px;}
.y142{bottom:20.505000px;}
.y3c{bottom:20.715000px;}
.y62{bottom:21.225000px;}
.y124{bottom:21.420000px;}
.y123{bottom:21.600000px;}
.y6{bottom:21.960000px;}
.y18b{bottom:22.680000px;}
.y18f{bottom:22.710000px;}
.y3{bottom:23.220000px;}
.y11e{bottom:23.580000px;}
.y4{bottom:24.660000px;}
.y115{bottom:25.560000px;}
.y16b{bottom:25.740000px;}
.y161{bottom:25.920000px;}
.y79{bottom:29.325000px;}
.y6a{bottom:31.335000px;}
.y112{bottom:32.580000px;}
.y10b{bottom:33.120000px;}
.y110{bottom:33.495000px;}
.y61{bottom:33.645000px;}
.y3b{bottom:34.785000px;}
.y120{bottom:37.800000px;}
.y11b{bottom:41.940000px;}
.y78{bottom:42.285000px;}
.y69{bottom:44.295000px;}
.y83{bottom:46.980000px;}
.y10e{bottom:47.340000px;}
.y3a{bottom:47.565000px;}
.y60{bottom:51.465000px;}
.y77{bottom:55.425000px;}
.y1{bottom:57.420000px;}
.y68{bottom:57.435000px;}
.y80{bottom:63.780000px;}
.y76{bottom:68.385000px;}
.y5f{bottom:69.285000px;}
.y67{bottom:70.395000px;}
.y75{bottom:81.345000px;}
.y5e{bottom:87.105000px;}
.y66{bottom:87.315000px;}
.y74{bottom:94.530000px;}
.y159{bottom:99.720000px;}
.y5d{bottom:102.405000px;}
.y1d0{bottom:102.780000px;}
.yb4{bottom:103.680000px;}
.y73{bottom:107.490000px;}
.y108{bottom:109.440000px;}
.ye9{bottom:109.620000px;}
.y25e{bottom:109.800000px;}
.y19e{bottom:110.160000px;}
.y1f9{bottom:111.060000px;}
.yd2{bottom:112.140000px;}
.y5c{bottom:115.005000px;}
.y158{bottom:120.420000px;}
.y38{bottom:120.600000px;}
.y72{bottom:120.630000px;}
.y1cf{bottom:122.580000px;}
.yb3{bottom:123.480000px;}
.yd1{bottom:126.900000px;}
.y25d{bottom:127.080000px;}
.ye6{bottom:129.420000px;}
.y228{bottom:129.780000px;}
.y19d{bottom:130.860000px;}
.y5b{bottom:132.825000px;}
.y71{bottom:133.590000px;}
.y37{bottom:140.400000px;}
.y157{bottom:140.760000px;}
.y107{bottom:141.300000px;}
.y1ce{bottom:142.380000px;}
.yb2{bottom:143.280000px;}
.y25c{bottom:144.360000px;}
.y70{bottom:146.550000px;}
.y227{bottom:147.060000px;}
.ye5{bottom:149.220000px;}
.y1f8{bottom:150.660000px;}
.y5a{bottom:150.690000px;}
.yf5{bottom:151.200000px;}
.y6f{bottom:158.970000px;}
.y36{bottom:160.200000px;}
.y14e{bottom:160.920000px;}
.y106{bottom:161.100000px;}
.y25b{bottom:161.640000px;}
.y1cd{bottom:162.390000px;}
.yb1{bottom:163.110000px;}
.y226{bottom:164.370000px;}
.y59{bottom:168.510000px;}
.y19c{bottom:168.690000px;}
.ye4{bottom:169.050000px;}
.yf4{bottom:171.030000px;}
.y1f7{bottom:171.390000px;}
.y14d{bottom:173.910000px;}
.y25a{bottom:178.950000px;}
.y35{bottom:180.030000px;}
.y105{bottom:180.930000px;}
.y19b{bottom:181.650000px;}
.y1cc{bottom:182.190000px;}
.yb0{bottom:183.090000px;}
.y58{bottom:186.330000px;}
.y14c{bottom:187.050000px;}
.ye3{bottom:189.030000px;}
.yf3{bottom:191.010000px;}
.y19a{bottom:194.790000px;}
.y259{bottom:196.050000px;}
.y225{bottom:198.750000px;}
.y14b{bottom:198.765000px;}
.y34{bottom:200.010000px;}
.y104{bottom:200.730000px;}
.y57{bottom:201.630000px;}
.y1cb{bottom:201.990000px;}
.yaf{bottom:202.890000px;}
.y198{bottom:206.505000px;}
.y156{bottom:207.930000px;}
.ye2{bottom:208.830000px;}
.yf2{bottom:210.810000px;}
.y1f6{bottom:212.250000px;}
.y258{bottom:213.330000px;}
.y56{bottom:214.230000px;}
.y224{bottom:216.030000px;}
.y103{bottom:220.530000px;}
.y33{bottom:220.710000px;}
.y1ca{bottom:221.790000px;}
.yae{bottom:222.690000px;}
.y148{bottom:225.765000px;}
.y155{bottom:227.550000px;}
.ye1{bottom:228.630000px;}
.yf1{bottom:230.610000px;}
.y55{bottom:232.050000px;}
.y1f5{bottom:232.230000px;}
.y223{bottom:233.310000px;}
.y32{bottom:237.990000px;}
.y102{bottom:240.330000px;}
.y196{bottom:240.345000px;}
.y1c9{bottom:241.590000px;}
.yad{bottom:242.490000px;}
.y154{bottom:247.530000px;}
.y31{bottom:247.710000px;}
.y257{bottom:247.890000px;}
.ye0{bottom:248.430000px;}
.y49{bottom:248.445000px;}
.y54{bottom:249.870000px;}
.yf0{bottom:250.410000px;}
.y222{bottom:250.590000px;}
.y1f4{bottom:252.030000px;}
.y145{bottom:252.765000px;}
.y101{bottom:260.310000px;}
.y1c8{bottom:261.570000px;}
.yac{bottom:262.290000px;}
.y256{bottom:265.170000px;}
.y153{bottom:267.330000px;}
.y53{bottom:267.690000px;}
.y221{bottom:267.870000px;}
.ydf{bottom:268.230000px;}
.yef{bottom:270.210000px;}
.y1f3{bottom:271.830000px;}
.y30{bottom:274.170000px;}
.y141{bottom:277.785000px;}
.y100{bottom:280.110000px;}
.y1c7{bottom:281.370000px;}
.yab{bottom:282.270000px;}
.y255{bottom:282.450000px;}
.y220{bottom:284.970000px;}
.y52{bottom:285.510000px;}
.y152{bottom:287.130000px;}
.y193{bottom:287.505000px;}
.yde{bottom:288.210000px;}
.yee{bottom:290.190000px;}
.y1f2{bottom:291.630000px;}
.y2f{bottom:298.110000px;}
.y254{bottom:299.550000px;}
.yff{bottom:299.910000px;}
.y1c6{bottom:301.170000px;}
.yaa{bottom:302.070000px;}
.y21f{bottom:302.250000px;}
.y51{bottom:303.330000px;}
.y6e{bottom:304.605000px;}
.y151{bottom:306.930000px;}
.ydd{bottom:308.010000px;}
.yed{bottom:309.990000px;}
.y1f1{bottom:311.430000px;}
.y140{bottom:316.290000px;}
.y253{bottom:316.830000px;}
.y21e{bottom:319.530000px;}
.yfe{bottom:319.710000px;}
.y1c5{bottom:320.970000px;}
.y50{bottom:321.330000px;}
.y2e{bottom:321.870000px;}
.y150{bottom:326.730000px;}
.ydc{bottom:327.810000px;}
.yec{bottom:329.790000px;}
.y1f0{bottom:331.410000px;}
.y252{bottom:334.110000px;}
.y190{bottom:334.845000px;}
.y21d{bottom:336.810000px;}
.y4f{bottom:339.150000px;}
.yfd{bottom:339.510000px;}
.y1c4{bottom:340.770000px;}
.ya9{bottom:341.670000px;}
.y2d{bottom:342.750000px;}
.y14f{bottom:346.710000px;}
.y13f{bottom:346.890000px;}
.ydb{bottom:347.610000px;}
.yeb{bottom:350.490000px;}
.y251{bottom:351.390000px;}
.y1ef{bottom:352.110000px;}
.y21c{bottom:354.090000px;}
.y4e{bottom:354.450000px;}
.yfc{bottom:359.310000px;}
.y1c3{bottom:360.750000px;}
.ya8{bottom:361.470000px;}
.y2c{bottom:362.550000px;}
.y13e{bottom:366.510000px;}
.y4d{bottom:366.870000px;}
.yda{bottom:367.410000px;}
.y250{bottom:368.670000px;}
.yea{bottom:369.750000px;}
.y21b{bottom:371.370000px;}
.y18c{bottom:375.345000px;}
.y1ee{bottom:375.870000px;}
.y2b{bottom:376.230000px;}
.yfb{bottom:379.290000px;}
.y1c2{bottom:380.550000px;}
.ya7{bottom:381.450000px;}
.y4c{bottom:384.720000px;}
.y2a{bottom:385.050000px;}
.y24f{bottom:385.770000px;}
.y13d{bottom:386.310000px;}
.yd9{bottom:387.390000px;}
.y21a{bottom:388.470000px;}
.yfa{bottom:399.135000px;}
.y1c1{bottom:400.395000px;}
.ya6{bottom:401.295000px;}
.y4b{bottom:402.540000px;}
.y24e{bottom:403.095000px;}
.y219{bottom:405.795000px;}
.y13c{bottom:406.155000px;}
.yd8{bottom:407.235000px;}
.y29{bottom:408.315000px;}
.y1ed{bottom:416.775000px;}
.yf9{bottom:418.935000px;}
.y1c0{bottom:420.195000px;}
.y24d{bottom:420.375000px;}
.y4a{bottom:420.540000px;}
.ya5{bottom:421.095000px;}
.y218{bottom:423.075000px;}
.y13b{bottom:425.955000px;}
.yd7{bottom:427.035000px;}
.y188{bottom:430.815000px;}
.y28{bottom:431.535000px;}
.y1ec{bottom:436.575000px;}
.y24c{bottom:437.655000px;}
.yf8{bottom:438.735000px;}
.y1bf{bottom:439.995000px;}
.y217{bottom:440.355000px;}
.ya4{bottom:440.895000px;}
.y13a{bottom:445.935000px;}
.yd6{bottom:446.835000px;}
.y27{bottom:454.935000px;}
.y1eb{bottom:456.555000px;}
.y216{bottom:457.635000px;}
.yf7{bottom:458.535000px;}
.y1be{bottom:459.975000px;}
.ya3{bottom:460.695000px;}
.y139{bottom:465.735000px;}
.yd5{bottom:466.635000px;}
.y24b{bottom:472.215000px;}
.y215{bottom:474.915000px;}
.y1ea{bottom:476.355000px;}
.yf6{bottom:479.415000px;}
.y1bd{bottom:479.775000px;}
.ya2{bottom:480.675000px;}
.y65{bottom:484.080000px;}
.y138{bottom:485.535000px;}
.yd0{bottom:486.615000px;}
.y24a{bottom:489.315000px;}
.y214{bottom:492.015000px;}
.y187{bottom:493.995000px;}
.y1e9{bottom:496.155000px;}
.yb9{bottom:497.415000px;}
.y1bc{bottom:499.575000px;}
.ya1{bottom:500.475000px;}
.y137{bottom:505.335000px;}
.ycf{bottom:506.415000px;}
.y249{bottom:506.595000px;}
.y213{bottom:509.295000px;}
.y26{bottom:509.655000px;}
.y1e8{bottom:515.955000px;}
.yb8{bottom:517.215000px;}
.y1bb{bottom:519.375000px;}
.ya0{bottom:520.275000px;}
.y248{bottom:523.875000px;}
.y136{bottom:525.135000px;}
.y25{bottom:525.315000px;}
.yce{bottom:526.215000px;}
.y212{bottom:526.575000px;}
.y186{bottom:530.715000px;}
.y1e7{bottom:535.755000px;}
.yb7{bottom:537.015000px;}
.y1ba{bottom:539.175000px;}
.y9f{bottom:540.075000px;}
.y24{bottom:540.795000px;}
.y247{bottom:541.155000px;}
.y185{bottom:542.775000px;}
.y211{bottom:543.855000px;}
.y135{bottom:545.115000px;}
.ycd{bottom:546.015000px;}
.y184{bottom:555.015000px;}
.y1e6{bottom:555.735000px;}
.y23{bottom:556.275000px;}
.yb6{bottom:557.895000px;}
.y246{bottom:558.435000px;}
.y1b9{bottom:559.155000px;}
.y9e{bottom:559.875000px;}
.y210{bottom:561.135000px;}
.y134{bottom:564.915000px;}
.ycc{bottom:565.815000px;}
.y183{bottom:566.715000px;}
.y22{bottom:571.755000px;}
.y1e5{bottom:575.535000px;}
.y245{bottom:575.715000px;}
.y20f{bottom:578.235000px;}
.yb5{bottom:578.775000px;}
.y1b8{bottom:578.955000px;}
.y9d{bottom:579.855000px;}
.y21{bottom:582.915000px;}
.y133{bottom:584.715000px;}
.ycb{bottom:585.795000px;}
.y39{bottom:591.540000px;}
.y244{bottom:592.815000px;}
.y1e4{bottom:595.335000px;}
.y20e{bottom:595.875000px;}
.y20{bottom:596.595000px;}
.y1b7{bottom:598.755000px;}
.y182{bottom:599.295000px;}
.y9c{bottom:599.655000px;}
.y132{bottom:604.515000px;}
.yca{bottom:605.595000px;}
.y1f{bottom:609.555000px;}
.y243{bottom:610.095000px;}
.y1e3{bottom:615.135000px;}
.y1b6{bottom:618.555000px;}
.y9b{bottom:619.455000px;}
.y1e{bottom:622.545000px;}
.y131{bottom:624.345000px;}
.yc9{bottom:625.425000px;}
.y242{bottom:627.405000px;}
.y181{bottom:631.905000px;}
.y20d{bottom:634.245000px;}
.y1e2{bottom:634.965000px;}
.y1d{bottom:635.325000px;}
.y1b5{bottom:638.385000px;}
.y9a{bottom:639.285000px;}
.y130{bottom:644.325000px;}
.y241{bottom:644.685000px;}
.yc8{bottom:645.225000px;}
.y1c{bottom:649.185000px;}
.y20c{bottom:651.525000px;}
.y1e1{bottom:654.945000px;}
.y1b4{bottom:658.365000px;}
.y99{bottom:659.085000px;}
.y1b{bottom:661.965000px;}
.y12f{bottom:664.125000px;}
.y17f{bottom:664.485000px;}
.yc7{bottom:665.025000px;}
.y20b{bottom:668.805000px;}
.y1e0{bottom:674.745000px;}
.y1b3{bottom:678.165000px;}
.y98{bottom:679.065000px;}
.y240{bottom:679.245000px;}
.y12e{bottom:683.925000px;}
.yc6{bottom:685.005000px;}
.y1a{bottom:688.785000px;}
.y20a{bottom:689.325000px;}
.y1df{bottom:695.445000px;}
.y23f{bottom:696.345000px;}
.y17e{bottom:696.885000px;}
.y1b2{bottom:697.965000px;}
.y97{bottom:698.865000px;}
.y19{bottom:699.945000px;}
.y12d{bottom:703.725000px;}
.yc5{bottom:704.805000px;}
.y23e{bottom:713.625000px;}
.y1b1{bottom:717.765000px;}
.y96{bottom:718.665000px;}
.y12c{bottom:723.525000px;}
.y18{bottom:724.245000px;}
.yc4{bottom:724.605000px;}
.y209{bottom:730.185000px;}
.y23d{bottom:730.905000px;}
.y1de{bottom:736.305000px;}
.y1b0{bottom:737.565000px;}
.y95{bottom:738.465000px;}
.y12b{bottom:743.505000px;}
.yc3{bottom:744.405000px;}
.y179{bottom:744.780000px;}
.ye8{bottom:745.305000px;}
.y23c{bottom:748.185000px;}
.y17{bottom:749.085000px;}
.y208{bottom:750.165000px;}
.y1dd{bottom:756.105000px;}
.y1af{bottom:757.545000px;}
.y94{bottom:758.265000px;}
.y12a{bottom:763.305000px;}
.yc2{bottom:764.205000px;}
.y16{bottom:764.925000px;}
.ye7{bottom:765.105000px;}
.y23b{bottom:765.465000px;}
.y207{bottom:770.865000px;}
.y1dc{bottom:776.085000px;}
.y1ae{bottom:777.345000px;}
.y93{bottom:778.245000px;}
.y15{bottom:780.765000px;}
.y23a{bottom:782.565000px;}
.y129{bottom:783.105000px;}
.yc1{bottom:784.185000px;}
.y1db{bottom:795.885000px;}
.y14{bottom:796.785000px;}
.y1ad{bottom:797.145000px;}
.y92{bottom:798.045000px;}
.y239{bottom:799.845000px;}
.y128{bottom:802.905000px;}
.yc0{bottom:803.985000px;}
.y178{bottom:804.165000px;}
.y13{bottom:807.225000px;}
.y206{bottom:811.725000px;}
.y1da{bottom:815.685000px;}
.y1ac{bottom:816.945000px;}
.y238{bottom:817.125000px;}
.y91{bottom:817.845000px;}
.y127{bottom:822.705000px;}
.ybf{bottom:823.785000px;}
.y12{bottom:826.665000px;}
.y205{bottom:831.525000px;}
.y177{bottom:832.605000px;}
.y237{bottom:834.405000px;}
.y1d9{bottom:835.485000px;}
.y1ab{bottom:836.745000px;}
.y90{bottom:837.645000px;}
.y11{bottom:841.605000px;}
.ybe{bottom:843.585000px;}
.yd4{bottom:844.485000px;}
.y176{bottom:845.565000px;}
.y204{bottom:851.325000px;}
.y236{bottom:851.685000px;}
.y126{bottom:852.990000px;}
.y1d8{bottom:855.330000px;}
.y10{bottom:856.590000px;}
.y1aa{bottom:856.770000px;}
.y8f{bottom:857.490000px;}
.ybd{bottom:863.430000px;}
.yd3{bottom:864.330000px;}
.y11f{bottom:864.690000px;}
.yf{bottom:867.930000px;}
.y235{bottom:869.010000px;}
.y203{bottom:871.350000px;}
.y1d7{bottom:875.310000px;}
.y1a9{bottom:876.570000px;}
.y8e{bottom:877.470000px;}
.y173{bottom:877.650000px;}
.y125{bottom:881.250000px;}
.ybc{bottom:883.410000px;}
.ye{bottom:885.570000px;}
.y234{bottom:886.110000px;}
.y202{bottom:891.150000px;}
.y1d6{bottom:895.110000px;}
.y1a8{bottom:896.370000px;}
.y8d{bottom:897.270000px;}
.y121{bottom:897.810000px;}
.y16e{bottom:899.235000px;}
.y16d{bottom:899.250000px;}
.y233{bottom:903.390000px;}
.ybb{bottom:904.110000px;}
.yd{bottom:910.050000px;}
.y201{bottom:910.950000px;}
.y11a{bottom:914.550000px;}
.y1d5{bottom:914.910000px;}
.y1a7{bottom:916.170000px;}
.y8c{bottom:917.070000px;}
.y16f{bottom:917.970000px;}
.y232{bottom:920.670000px;}
.yba{bottom:923.910000px;}
.y200{bottom:930.750000px;}
.yc{bottom:931.650000px;}
.y1d4{bottom:934.710000px;}
.y1a6{bottom:935.970000px;}
.y8b{bottom:936.870000px;}
.y231{bottom:937.950000px;}
.y11c{bottom:941.550000px;}
.y169{bottom:945.675000px;}
.y167{bottom:945.690000px;}
.y1ff{bottom:950.550000px;}
.yb{bottom:953.430000px;}
.y1d3{bottom:954.510000px;}
.y230{bottom:955.230000px;}
.y1a5{bottom:955.950000px;}
.y8a{bottom:956.670000px;}
.y16c{bottom:965.670000px;}
.y117{bottom:968.550000px;}
.y1fe{bottom:970.530000px;}
.y22f{bottom:972.510000px;}
.y1d2{bottom:974.490000px;}
.y1a4{bottom:975.750000px;}
.y89{bottom:976.650000px;}
.ya{bottom:980.970000px;}
.y22e{bottom:989.610000px;}
.y1fd{bottom:990.330000px;}
.y15f{bottom:991.935000px;}
.y15d{bottom:991.950000px;}
.y1d1{bottom:995.190000px;}
.y1a3{bottom:995.550000px;}
.y88{bottom:996.450000px;}
.y10f{bottom:996.795000px;}
.y10a{bottom:996.810000px;}
.y22d{bottom:1006.890000px;}
.y9{bottom:1008.690000px;}
.y1fc{bottom:1011.030000px;}
.y163{bottom:1012.110000px;}
.y1a2{bottom:1015.350000px;}
.y87{bottom:1016.250000px;}
.y22c{bottom:1024.170000px;}
.y1a1{bottom:1035.150000px;}
.y86{bottom:1036.050000px;}
.y8{bottom:1036.230000px;}
.y15a{bottom:1039.830000px;}
.y22b{bottom:1041.450000px;}
.y10c{bottom:1042.530000px;}
.y1fb{bottom:1051.890000px;}
.y1a0{bottom:1055.130000px;}
.y85{bottom:1055.850000px;}
.y22a{bottom:1058.730000px;}
.y7{bottom:1063.230000px;}
.y1fa{bottom:1072.590000px;}
.y19f{bottom:1072.770000px;}
.y84{bottom:1075.650000px;}
.y229{bottom:1075.830000px;}
.y109{bottom:1077.090000px;}
.y6c{bottom:1096.200000px;}
.y82{bottom:1123.200000px;}
.y46{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h18{height:5.805000px;}
.h57{height:6.257812px;}
.h2{height:13.500000px;}
.h39{height:15.825000px;}
.h1c{height:16.920000px;}
.h4b{height:17.985000px;}
.h46{height:19.245000px;}
.h4e{height:19.425000px;}
.h4d{height:20.865000px;}
.h25{height:22.140000px;}
.h3d{height:22.665000px;}
.h15{height:23.319141px;}
.h2d{height:24.421536px;}
.h45{height:25.545000px;}
.h37{height:26.085000px;}
.h3e{height:26.265000px;}
.h30{height:26.805000px;}
.h4a{height:26.985000px;}
.h35{height:27.525000px;}
.h2b{height:29.664141px;}
.hc{height:29.678906px;}
.hf{height:30.963516px;}
.h21{height:31.081955px;}
.h3c{height:31.665000px;}
.h50{height:31.680000px;}
.h41{height:31.845000px;}
.h51{height:31.890000px;}
.h56{height:32.925000px;}
.h4{height:34.200000px;}
.h23{height:36.281250px;}
.h13{height:39.503370px;}
.h54{height:39.585000px;}
.h52{height:39.765000px;}
.h5{height:40.985156px;}
.h4c{height:41.025000px;}
.h24{height:42.086250px;}
.h2e{height:42.806602px;}
.h3f{height:42.922699px;}
.h33{height:43.551000px;}
.h34{height:43.560000px;}
.h29{height:43.737568px;}
.h11{height:44.518359px;}
.hb{height:45.116367px;}
.h49{height:45.525000px;}
.h47{height:45.531000px;}
.h48{height:45.540000px;}
.h44{height:45.705000px;}
.h42{height:45.711000px;}
.h1a{height:45.714375px;}
.h43{height:45.720000px;}
.h55{height:46.425000px;}
.h12{height:46.622932px;}
.hd{height:47.344922px;}
.h1d{height:48.616875px;}
.h38{height:48.945000px;}
.h14{height:52.998047px;}
.h36{height:53.085000px;}
.h53{height:53.121000px;}
.h1e{height:54.421875px;}
.h10{height:55.291992px;}
.h20{height:55.503491px;}
.h3b{height:56.214844px;}
.h19{height:57.825000px;}
.h28{height:58.621992px;}
.h3{height:58.651172px;}
.h2c{height:60.226875px;}
.h3a{height:61.423863px;}
.ha{height:65.010937px;}
.h1b{height:65.884219px;}
.he{height:67.824844px;}
.h2a{height:70.628906px;}
.h2f{height:72.525000px;}
.h31{height:72.531000px;}
.h32{height:72.540000px;}
.h9{height:72.562500px;}
.h40{height:74.004654px;}
.h16{height:74.953125px;}
.h27{height:75.093750px;}
.h17{height:84.898125px;}
.h7{height:87.695156px;}
.h22{height:95.400000px;}
.h8{height:96.508125px;}
.h4f{height:112.429688px;}
.h26{height:169.950000px;}
.h1f{height:432.795000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w2d{width:47.361000px;}
.w2e{width:51.645000px;}
.w2b{width:54.036000px;}
.w23{width:60.660000px;}
.w25{width:67.485000px;}
.w22{width:67.500000px;}
.w26{width:67.521000px;}
.w30{width:74.730000px;}
.w24{width:81.036000px;}
.w3{width:82.071000px;}
.w15{width:87.291000px;}
.w27{width:87.825000px;}
.w18{width:87.861000px;}
.w1e{width:88.401000px;}
.w20{width:88.410000px;}
.w2f{width:89.625000px;}
.w1d{width:89.805000px;}
.w1f{width:89.985000px;}
.wf{width:93.270000px;}
.w2c{width:94.485000px;}
.w16{width:94.521000px;}
.w1b{width:94.680000px;}
.w1c{width:97.596000px;}
.w17{width:100.791000px;}
.w28{width:101.190000px;}
.w2a{width:114.660000px;}
.w14{width:121.485000px;}
.wd{width:121.491000px;}
.we{width:121.500000px;}
.w1a{width:139.342500px;}
.w13{width:145.641000px;}
.w12{width:145.642500px;}
.w19{width:148.896000px;}
.w5{width:154.470000px;}
.w21{width:158.601000px;}
.w29{width:162.021000px;}
.w10{width:178.410000px;}
.w11{width:178.425000px;}
.wa{width:180.390000px;}
.wb{width:181.821000px;}
.w8{width:182.550000px;}
.wc{width:324.075000px;}
.w7{width:532.920000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w9{width:743.175000px;}
.w6{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x61{left:4.252500px;}
.x2{left:8.091000px;}
.x19{left:10.791000px;}
.x5d{left:11.910000px;}
.x5f{left:12.945000px;}
.x2a{left:14.400000px;}
.x4a{left:16.380000px;}
.x3b{left:18.540000px;}
.x54{left:20.160000px;}
.x1f{left:21.255000px;}
.x35{left:23.790000px;}
.x44{left:25.020000px;}
.x4c{left:27.000000px;}
.x4b{left:28.440000px;}
.x39{left:29.505000px;}
.x3c{left:31.485000px;}
.x3f{left:33.285000px;}
.x37{left:34.905000px;}
.x32{left:35.985000px;}
.x2e{left:37.110000px;}
.x3a{left:38.325000px;}
.x55{left:39.990000px;}
.x38{left:41.385000px;}
.x34{left:42.465000px;}
.x5e{left:43.740000px;}
.x60{left:45.165000px;}
.x56{left:48.630000px;}
.x2c{left:54.195000px;}
.x33{left:55.965000px;}
.x2b{left:58.695000px;}
.x2f{left:60.480000px;}
.x40{left:63.900000px;}
.x30{left:72.360000px;}
.x3{left:73.965000px;}
.x1c{left:80.505000px;}
.x1a{left:81.765000px;}
.x4d{left:86.796000px;}
.x18{left:93.105000px;}
.x1e{left:95.265000px;}
.x12{left:102.096000px;}
.x1{left:108.045000px;}
.xb{left:115.056000px;}
.x23{left:119.196000px;}
.x41{left:121.536000px;}
.x4e{left:122.805000px;}
.x42{left:124.605000px;}
.x7{left:128.916000px;}
.x15{left:132.696000px;}
.x6{left:136.296000px;}
.x8{left:138.636000px;}
.x28{left:144.930000px;}
.x13{left:146.556000px;}
.x21{left:165.090000px;}
.x11{left:181.110000px;}
.xf{left:187.410000px;}
.x4{left:190.125000px;}
.x36{left:195.345000px;}
.x3d{left:208.845000px;}
.xe{left:216.030000px;}
.x14{left:225.210000px;}
.xc{left:235.650000px;}
.x43{left:263.955000px;}
.x10{left:276.915000px;}
.x24{left:278.175000px;}
.x22{left:281.415000px;}
.x57{left:286.995000px;}
.x27{left:289.875000px;}
.x3e{left:296.715000px;}
.x1b{left:303.195000px;}
.x1d{left:310.350000px;}
.x26{left:338.115000px;}
.x9{left:344.595000px;}
.x4f{left:348.915000px;}
.x45{left:358.635000px;}
.x58{left:401.655000px;}
.x50{left:409.575000px;}
.xa{left:443.085000px;}
.x5{left:446.505000px;}
.x46{left:456.240000px;}
.xd{left:459.105000px;}
.x31{left:468.300000px;}
.x16{left:489.165000px;}
.x17{left:490.785000px;}
.x47{left:546.060000px;}
.x59{left:550.200000px;}
.x51{left:558.120000px;}
.x5a{left:597.570000px;}
.x29{left:613.950000px;}
.x20{left:620.253000px;}
.x52{left:625.650000px;}
.x48{left:634.470000px;}
.x5b{left:649.230000px;}
.x25{left:693.690000px;}
.x53{left:713.490000px;}
.x49{left:724.470000px;}
.x2d{left:735.450000px;}
.x5c{left:738.870000px;}
@media print{
.v4{vertical-align:-74.240000pt;}
.v5{vertical-align:-59.520000pt;}
.v2{vertical-align:-16.160000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-1.280000pt;}
.ls20{letter-spacing:-0.800000pt;}
.lse{letter-spacing:-0.720000pt;}
.ls22{letter-spacing:-0.592000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls26{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.230933pt;}
.lsd{letter-spacing:-0.198933pt;}
.ls19{letter-spacing:-0.161067pt;}
.ls1f{letter-spacing:-0.079467pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls14{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.079360pt;}
.ls3{letter-spacing:0.128640pt;}
.ls24{letter-spacing:0.136533pt;}
.ls16{letter-spacing:0.138880pt;}
.ls4{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.161067pt;}
.ls11{letter-spacing:0.230933pt;}
.ls23{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.280533pt;}
.ls7{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.592000pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.869333pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls18{letter-spacing:1.514240pt;}
.ls15{letter-spacing:1.594880pt;}
.ls17{letter-spacing:1.966720pt;}
.ls6{letter-spacing:2.080000pt;}
.ls1d{letter-spacing:32.000000pt;}
.ls2{letter-spacing:42.400000pt;}
.ls0{letter-spacing:63.360000pt;}
.ls1{letter-spacing:64.000000pt;}
.ls1b{letter-spacing:99.520000pt;}
.ws12{word-spacing:-42.880000pt;}
.ws10{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.510933pt;}
.ws1b{word-spacing:-13.416533pt;}
.wsf{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.049067pt;}
.ws1c{word-spacing:-12.870933pt;}
.ws19{word-spacing:-12.688000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.881067pt;}
.ws11{word-spacing:-10.720000pt;}
.ws13{word-spacing:-10.558933pt;}
.ws15{word-spacing:-10.521067pt;}
.ws3{word-spacing:-10.400000pt;}
.ws5{word-spacing:-10.080000pt;}
.ws16{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.760000pt;}
.ws8{word-spacing:-9.733760pt;}
.wsb{word-spacing:-9.280000pt;}
.ws17{word-spacing:-9.200533pt;}
.ws18{word-spacing:-8.480000pt;}
.wsa{word-spacing:-8.000000pt;}
.ws2{word-spacing:-6.720000pt;}
.wsc{word-spacing:0.000000pt;}
.ws1{word-spacing:54.080000pt;}
._7{margin-left:-52.960000pt;}
._12{margin-left:-3.027840pt;}
._4{margin-left:-2.078080pt;}
._2{margin-left:-1.177600pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._13{width:3.273813pt;}
._b{width:4.196480pt;}
._a{width:5.258880pt;}
._c{width:6.405760pt;}
._11{width:7.861760pt;}
._10{width:8.817920pt;}
._d{width:10.464640pt;}
._18{width:11.878400pt;}
._19{width:13.174187pt;}
._14{width:14.976000pt;}
._15{width:15.888000pt;}
._1f{width:17.430400pt;}
._1d{width:19.123200pt;}
._f{width:20.398080pt;}
._e{width:21.513600pt;}
._20{width:22.682240pt;}
._21{width:23.825920pt;}
._1c{width:24.913280pt;}
._9{width:26.294400pt;}
._17{width:27.914240pt;}
._1b{width:29.058560pt;}
._2d{width:30.225280pt;}
._24{width:31.712640pt;}
._27{width:32.828160pt;}
._2b{width:33.946880pt;}
._33{width:35.218560pt;}
._30{width:36.227840pt;}
._2c{width:37.768320pt;}
._2f{width:39.921920pt;}
._29{width:41.168000pt;}
._23{width:42.283520pt;}
._22{width:43.824000pt;}
._26{width:44.755200pt;}
._35{width:45.684480pt;}
._3e{width:46.782720pt;}
._3d{width:47.701760pt;}
._28{width:49.348480pt;}
._37{width:50.410880pt;}
._3b{width:51.451520pt;}
._25{width:52.376320pt;}
._31{width:53.332480pt;}
._1e{width:54.245120pt;}
._36{width:55.819520pt;}
._5{width:58.218667pt;}
._40{width:61.942400pt;}
._3{width:63.503787pt;}
._16{width:64.885760pt;}
._2e{width:66.612480pt;}
._3c{width:75.059627pt;}
._41{width:78.670720pt;}
._34{width:85.204480pt;}
._32{width:97.657600pt;}
._3f{width:103.505920pt;}
._38{width:121.460480pt;}
._2a{width:145.256747pt;}
._3a{width:153.598080pt;}
._6{width:177.440000pt;}
._1a{width:250.906667pt;}
._39{width:627.187840pt;}
._8{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fs11{font-size:5.333333pt;}
.fsc{font-size:21.120000pt;}
.fs8{font-size:26.880000pt;}
.fsf{font-size:29.440000pt;}
.fsd{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs0{font-size:37.120000pt;}
.fs7{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fse{font-size:55.992837pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs10{font-size:96.000000pt;}
.y45{bottom:-220.186667pt;}
.y44{bottom:-190.106667pt;}
.y43{bottom:-160.146667pt;}
.y7f{bottom:-151.400000pt;}
.y42{bottom:-130.226667pt;}
.y7e{bottom:-121.453333pt;}
.y41{bottom:-100.146667pt;}
.y7d{bottom:-91.373333pt;}
.y40{bottom:-70.226667pt;}
.y7c{bottom:-61.453333pt;}
.y3f{bottom:-40.146667pt;}
.y7b{bottom:-31.533333pt;}
.y48{bottom:-24.160000pt;}
.y81{bottom:-15.931333pt;}
.y64{bottom:-10.733333pt;}
.y3e{bottom:-10.226667pt;}
.y7a{bottom:-1.453333pt;}
.y0{bottom:0.000000pt;}
.y25f{bottom:1.633333pt;}
.y180{bottom:2.400000pt;}
.y16a{bottom:2.413333pt;}
.y17a{bottom:2.546667pt;}
.y15b{bottom:2.560000pt;}
.y160{bottom:2.573333pt;}
.y199{bottom:3.026667pt;}
.y2{bottom:3.520000pt;}
.y143{bottom:4.146667pt;}
.y114{bottom:4.173333pt;}
.y17c{bottom:4.306667pt;}
.y122{bottom:4.320000pt;}
.y47{bottom:4.480000pt;}
.y6d{bottom:4.960000pt;}
.y63{bottom:5.106667pt;}
.y166{bottom:5.120000pt;}
.y18e{bottom:5.746667pt;}
.y191{bottom:5.906667pt;}
.y174{bottom:5.920000pt;}
.y189{bottom:6.080000pt;}
.y3d{bottom:6.093333pt;}
.y171{bottom:6.560000pt;}
.y147{bottom:7.346667pt;}
.y175{bottom:7.680000pt;}
.y164{bottom:7.840000pt;}
.y170{bottom:8.480000pt;}
.y172{bottom:8.640000pt;}
.y14a{bottom:8.946667pt;}
.y11d{bottom:8.960000pt;}
.y194{bottom:9.106667pt;}
.y10d{bottom:9.120000pt;}
.y119{bottom:9.440000pt;}
.y146{bottom:10.226667pt;}
.y116{bottom:10.413333pt;}
.y17d{bottom:10.546667pt;}
.y15c{bottom:10.560000pt;}
.y162{bottom:10.720000pt;}
.y144{bottom:11.186667pt;}
.y5{bottom:11.200000pt;}
.y149{bottom:13.426667pt;}
.y192{bottom:14.066667pt;}
.y18a{bottom:14.080000pt;}
.y118{bottom:14.560000pt;}
.y168{bottom:14.720000pt;}
.y15e{bottom:14.880000pt;}
.y6b{bottom:16.013333pt;}
.y17b{bottom:16.626667pt;}
.y113{bottom:16.640000pt;}
.y165{bottom:16.800000pt;}
.y197{bottom:17.106667pt;}
.y111{bottom:17.133333pt;}
.y195{bottom:17.266667pt;}
.y18d{bottom:18.106667pt;}
.y142{bottom:18.226667pt;}
.y3c{bottom:18.413333pt;}
.y62{bottom:18.866667pt;}
.y124{bottom:19.040000pt;}
.y123{bottom:19.200000pt;}
.y6{bottom:19.520000pt;}
.y18b{bottom:20.160000pt;}
.y18f{bottom:20.186667pt;}
.y3{bottom:20.640000pt;}
.y11e{bottom:20.960000pt;}
.y4{bottom:21.920000pt;}
.y115{bottom:22.720000pt;}
.y16b{bottom:22.880000pt;}
.y161{bottom:23.040000pt;}
.y79{bottom:26.066667pt;}
.y6a{bottom:27.853333pt;}
.y112{bottom:28.960000pt;}
.y10b{bottom:29.440000pt;}
.y110{bottom:29.773333pt;}
.y61{bottom:29.906667pt;}
.y3b{bottom:30.920000pt;}
.y120{bottom:33.600000pt;}
.y11b{bottom:37.280000pt;}
.y78{bottom:37.586667pt;}
.y69{bottom:39.373333pt;}
.y83{bottom:41.760000pt;}
.y10e{bottom:42.080000pt;}
.y3a{bottom:42.280000pt;}
.y60{bottom:45.746667pt;}
.y77{bottom:49.266667pt;}
.y1{bottom:51.040000pt;}
.y68{bottom:51.053333pt;}
.y80{bottom:56.693333pt;}
.y76{bottom:60.786667pt;}
.y5f{bottom:61.586667pt;}
.y67{bottom:62.573333pt;}
.y75{bottom:72.306667pt;}
.y5e{bottom:77.426667pt;}
.y66{bottom:77.613333pt;}
.y74{bottom:84.026667pt;}
.y159{bottom:88.640000pt;}
.y5d{bottom:91.026667pt;}
.y1d0{bottom:91.360000pt;}
.yb4{bottom:92.160000pt;}
.y73{bottom:95.546667pt;}
.y108{bottom:97.280000pt;}
.ye9{bottom:97.440000pt;}
.y25e{bottom:97.600000pt;}
.y19e{bottom:97.920000pt;}
.y1f9{bottom:98.720000pt;}
.yd2{bottom:99.680000pt;}
.y5c{bottom:102.226667pt;}
.y158{bottom:107.040000pt;}
.y38{bottom:107.200000pt;}
.y72{bottom:107.226667pt;}
.y1cf{bottom:108.960000pt;}
.yb3{bottom:109.760000pt;}
.yd1{bottom:112.800000pt;}
.y25d{bottom:112.960000pt;}
.ye6{bottom:115.040000pt;}
.y228{bottom:115.360000pt;}
.y19d{bottom:116.320000pt;}
.y5b{bottom:118.066667pt;}
.y71{bottom:118.746667pt;}
.y37{bottom:124.800000pt;}
.y157{bottom:125.120000pt;}
.y107{bottom:125.600000pt;}
.y1ce{bottom:126.560000pt;}
.yb2{bottom:127.360000pt;}
.y25c{bottom:128.320000pt;}
.y70{bottom:130.266667pt;}
.y227{bottom:130.720000pt;}
.ye5{bottom:132.640000pt;}
.y1f8{bottom:133.920000pt;}
.y5a{bottom:133.946667pt;}
.yf5{bottom:134.400000pt;}
.y6f{bottom:141.306667pt;}
.y36{bottom:142.400000pt;}
.y14e{bottom:143.040000pt;}
.y106{bottom:143.200000pt;}
.y25b{bottom:143.680000pt;}
.y1cd{bottom:144.346667pt;}
.yb1{bottom:144.986667pt;}
.y226{bottom:146.106667pt;}
.y59{bottom:149.786667pt;}
.y19c{bottom:149.946667pt;}
.ye4{bottom:150.266667pt;}
.yf4{bottom:152.026667pt;}
.y1f7{bottom:152.346667pt;}
.y14d{bottom:154.586667pt;}
.y25a{bottom:159.066667pt;}
.y35{bottom:160.026667pt;}
.y105{bottom:160.826667pt;}
.y19b{bottom:161.466667pt;}
.y1cc{bottom:161.946667pt;}
.yb0{bottom:162.746667pt;}
.y58{bottom:165.626667pt;}
.y14c{bottom:166.266667pt;}
.ye3{bottom:168.026667pt;}
.yf3{bottom:169.786667pt;}
.y19a{bottom:173.146667pt;}
.y259{bottom:174.266667pt;}
.y225{bottom:176.666667pt;}
.y14b{bottom:176.680000pt;}
.y34{bottom:177.786667pt;}
.y104{bottom:178.426667pt;}
.y57{bottom:179.226667pt;}
.y1cb{bottom:179.546667pt;}
.yaf{bottom:180.346667pt;}
.y198{bottom:183.560000pt;}
.y156{bottom:184.826667pt;}
.ye2{bottom:185.626667pt;}
.yf2{bottom:187.386667pt;}
.y1f6{bottom:188.666667pt;}
.y258{bottom:189.626667pt;}
.y56{bottom:190.426667pt;}
.y224{bottom:192.026667pt;}
.y103{bottom:196.026667pt;}
.y33{bottom:196.186667pt;}
.y1ca{bottom:197.146667pt;}
.yae{bottom:197.946667pt;}
.y148{bottom:200.680000pt;}
.y155{bottom:202.266667pt;}
.ye1{bottom:203.226667pt;}
.yf1{bottom:204.986667pt;}
.y55{bottom:206.266667pt;}
.y1f5{bottom:206.426667pt;}
.y223{bottom:207.386667pt;}
.y32{bottom:211.546667pt;}
.y102{bottom:213.626667pt;}
.y196{bottom:213.640000pt;}
.y1c9{bottom:214.746667pt;}
.yad{bottom:215.546667pt;}
.y154{bottom:220.026667pt;}
.y31{bottom:220.186667pt;}
.y257{bottom:220.346667pt;}
.ye0{bottom:220.826667pt;}
.y49{bottom:220.840000pt;}
.y54{bottom:222.106667pt;}
.yf0{bottom:222.586667pt;}
.y222{bottom:222.746667pt;}
.y1f4{bottom:224.026667pt;}
.y145{bottom:224.680000pt;}
.y101{bottom:231.386667pt;}
.y1c8{bottom:232.506667pt;}
.yac{bottom:233.146667pt;}
.y256{bottom:235.706667pt;}
.y153{bottom:237.626667pt;}
.y53{bottom:237.946667pt;}
.y221{bottom:238.106667pt;}
.ydf{bottom:238.426667pt;}
.yef{bottom:240.186667pt;}
.y1f3{bottom:241.626667pt;}
.y30{bottom:243.706667pt;}
.y141{bottom:246.920000pt;}
.y100{bottom:248.986667pt;}
.y1c7{bottom:250.106667pt;}
.yab{bottom:250.906667pt;}
.y255{bottom:251.066667pt;}
.y220{bottom:253.306667pt;}
.y52{bottom:253.786667pt;}
.y152{bottom:255.226667pt;}
.y193{bottom:255.560000pt;}
.yde{bottom:256.186667pt;}
.yee{bottom:257.946667pt;}
.y1f2{bottom:259.226667pt;}
.y2f{bottom:264.986667pt;}
.y254{bottom:266.266667pt;}
.yff{bottom:266.586667pt;}
.y1c6{bottom:267.706667pt;}
.yaa{bottom:268.506667pt;}
.y21f{bottom:268.666667pt;}
.y51{bottom:269.626667pt;}
.y6e{bottom:270.760000pt;}
.y151{bottom:272.826667pt;}
.ydd{bottom:273.786667pt;}
.yed{bottom:275.546667pt;}
.y1f1{bottom:276.826667pt;}
.y140{bottom:281.146667pt;}
.y253{bottom:281.626667pt;}
.y21e{bottom:284.026667pt;}
.yfe{bottom:284.186667pt;}
.y1c5{bottom:285.306667pt;}
.y50{bottom:285.626667pt;}
.y2e{bottom:286.106667pt;}
.y150{bottom:290.426667pt;}
.ydc{bottom:291.386667pt;}
.yec{bottom:293.146667pt;}
.y1f0{bottom:294.586667pt;}
.y252{bottom:296.986667pt;}
.y190{bottom:297.640000pt;}
.y21d{bottom:299.386667pt;}
.y4f{bottom:301.466667pt;}
.yfd{bottom:301.786667pt;}
.y1c4{bottom:302.906667pt;}
.ya9{bottom:303.706667pt;}
.y2d{bottom:304.666667pt;}
.y14f{bottom:308.186667pt;}
.y13f{bottom:308.346667pt;}
.ydb{bottom:308.986667pt;}
.yeb{bottom:311.546667pt;}
.y251{bottom:312.346667pt;}
.y1ef{bottom:312.986667pt;}
.y21c{bottom:314.746667pt;}
.y4e{bottom:315.066667pt;}
.yfc{bottom:319.386667pt;}
.y1c3{bottom:320.666667pt;}
.ya8{bottom:321.306667pt;}
.y2c{bottom:322.266667pt;}
.y13e{bottom:325.786667pt;}
.y4d{bottom:326.106667pt;}
.yda{bottom:326.586667pt;}
.y250{bottom:327.706667pt;}
.yea{bottom:328.666667pt;}
.y21b{bottom:330.106667pt;}
.y18c{bottom:333.640000pt;}
.y1ee{bottom:334.106667pt;}
.y2b{bottom:334.426667pt;}
.yfb{bottom:337.146667pt;}
.y1c2{bottom:338.266667pt;}
.ya7{bottom:339.066667pt;}
.y4c{bottom:341.973333pt;}
.y2a{bottom:342.266667pt;}
.y24f{bottom:342.906667pt;}
.y13d{bottom:343.386667pt;}
.yd9{bottom:344.346667pt;}
.y21a{bottom:345.306667pt;}
.yfa{bottom:354.786667pt;}
.y1c1{bottom:355.906667pt;}
.ya6{bottom:356.706667pt;}
.y4b{bottom:357.813333pt;}
.y24e{bottom:358.306667pt;}
.y219{bottom:360.706667pt;}
.y13c{bottom:361.026667pt;}
.yd8{bottom:361.986667pt;}
.y29{bottom:362.946667pt;}
.y1ed{bottom:370.466667pt;}
.yf9{bottom:372.386667pt;}
.y1c0{bottom:373.506667pt;}
.y24d{bottom:373.666667pt;}
.y4a{bottom:373.813333pt;}
.ya5{bottom:374.306667pt;}
.y218{bottom:376.066667pt;}
.y13b{bottom:378.626667pt;}
.yd7{bottom:379.586667pt;}
.y188{bottom:382.946667pt;}
.y28{bottom:383.586667pt;}
.y1ec{bottom:388.066667pt;}
.y24c{bottom:389.026667pt;}
.yf8{bottom:389.986667pt;}
.y1bf{bottom:391.106667pt;}
.y217{bottom:391.426667pt;}
.ya4{bottom:391.906667pt;}
.y13a{bottom:396.386667pt;}
.yd6{bottom:397.186667pt;}
.y27{bottom:404.386667pt;}
.y1eb{bottom:405.826667pt;}
.y216{bottom:406.786667pt;}
.yf7{bottom:407.586667pt;}
.y1be{bottom:408.866667pt;}
.ya3{bottom:409.506667pt;}
.y139{bottom:413.986667pt;}
.yd5{bottom:414.786667pt;}
.y24b{bottom:419.746667pt;}
.y215{bottom:422.146667pt;}
.y1ea{bottom:423.426667pt;}
.yf6{bottom:426.146667pt;}
.y1bd{bottom:426.466667pt;}
.ya2{bottom:427.266667pt;}
.y65{bottom:430.293333pt;}
.y138{bottom:431.586667pt;}
.yd0{bottom:432.546667pt;}
.y24a{bottom:434.946667pt;}
.y214{bottom:437.346667pt;}
.y187{bottom:439.106667pt;}
.y1e9{bottom:441.026667pt;}
.yb9{bottom:442.146667pt;}
.y1bc{bottom:444.066667pt;}
.ya1{bottom:444.866667pt;}
.y137{bottom:449.186667pt;}
.ycf{bottom:450.146667pt;}
.y249{bottom:450.306667pt;}
.y213{bottom:452.706667pt;}
.y26{bottom:453.026667pt;}
.y1e8{bottom:458.626667pt;}
.yb8{bottom:459.746667pt;}
.y1bb{bottom:461.666667pt;}
.ya0{bottom:462.466667pt;}
.y248{bottom:465.666667pt;}
.y136{bottom:466.786667pt;}
.y25{bottom:466.946667pt;}
.yce{bottom:467.746667pt;}
.y212{bottom:468.066667pt;}
.y186{bottom:471.746667pt;}
.y1e7{bottom:476.226667pt;}
.yb7{bottom:477.346667pt;}
.y1ba{bottom:479.266667pt;}
.y9f{bottom:480.066667pt;}
.y24{bottom:480.706667pt;}
.y247{bottom:481.026667pt;}
.y185{bottom:482.466667pt;}
.y211{bottom:483.426667pt;}
.y135{bottom:484.546667pt;}
.ycd{bottom:485.346667pt;}
.y184{bottom:493.346667pt;}
.y1e6{bottom:493.986667pt;}
.y23{bottom:494.466667pt;}
.yb6{bottom:495.906667pt;}
.y246{bottom:496.386667pt;}
.y1b9{bottom:497.026667pt;}
.y9e{bottom:497.666667pt;}
.y210{bottom:498.786667pt;}
.y134{bottom:502.146667pt;}
.ycc{bottom:502.946667pt;}
.y183{bottom:503.746667pt;}
.y22{bottom:508.226667pt;}
.y1e5{bottom:511.586667pt;}
.y245{bottom:511.746667pt;}
.y20f{bottom:513.986667pt;}
.yb5{bottom:514.466667pt;}
.y1b8{bottom:514.626667pt;}
.y9d{bottom:515.426667pt;}
.y21{bottom:518.146667pt;}
.y133{bottom:519.746667pt;}
.ycb{bottom:520.706667pt;}
.y39{bottom:525.813333pt;}
.y244{bottom:526.946667pt;}
.y1e4{bottom:529.186667pt;}
.y20e{bottom:529.666667pt;}
.y20{bottom:530.306667pt;}
.y1b7{bottom:532.226667pt;}
.y182{bottom:532.706667pt;}
.y9c{bottom:533.026667pt;}
.y132{bottom:537.346667pt;}
.yca{bottom:538.306667pt;}
.y1f{bottom:541.826667pt;}
.y243{bottom:542.306667pt;}
.y1e3{bottom:546.786667pt;}
.y1b6{bottom:549.826667pt;}
.y9b{bottom:550.626667pt;}
.y1e{bottom:553.373333pt;}
.y131{bottom:554.973333pt;}
.yc9{bottom:555.933333pt;}
.y242{bottom:557.693333pt;}
.y181{bottom:561.693333pt;}
.y20d{bottom:563.773333pt;}
.y1e2{bottom:564.413333pt;}
.y1d{bottom:564.733333pt;}
.y1b5{bottom:567.453333pt;}
.y9a{bottom:568.253333pt;}
.y130{bottom:572.733333pt;}
.y241{bottom:573.053333pt;}
.yc8{bottom:573.533333pt;}
.y1c{bottom:577.053333pt;}
.y20c{bottom:579.133333pt;}
.y1e1{bottom:582.173333pt;}
.y1b4{bottom:585.213333pt;}
.y99{bottom:585.853333pt;}
.y1b{bottom:588.413333pt;}
.y12f{bottom:590.333333pt;}
.y17f{bottom:590.653333pt;}
.yc7{bottom:591.133333pt;}
.y20b{bottom:594.493333pt;}
.y1e0{bottom:599.773333pt;}
.y1b3{bottom:602.813333pt;}
.y98{bottom:603.613333pt;}
.y240{bottom:603.773333pt;}
.y12e{bottom:607.933333pt;}
.yc6{bottom:608.893333pt;}
.y1a{bottom:612.253333pt;}
.y20a{bottom:612.733333pt;}
.y1df{bottom:618.173333pt;}
.y23f{bottom:618.973333pt;}
.y17e{bottom:619.453333pt;}
.y1b2{bottom:620.413333pt;}
.y97{bottom:621.213333pt;}
.y19{bottom:622.173333pt;}
.y12d{bottom:625.533333pt;}
.yc5{bottom:626.493333pt;}
.y23e{bottom:634.333333pt;}
.y1b1{bottom:638.013333pt;}
.y96{bottom:638.813333pt;}
.y12c{bottom:643.133333pt;}
.y18{bottom:643.773333pt;}
.yc4{bottom:644.093333pt;}
.y209{bottom:649.053333pt;}
.y23d{bottom:649.693333pt;}
.y1de{bottom:654.493333pt;}
.y1b0{bottom:655.613333pt;}
.y95{bottom:656.413333pt;}
.y12b{bottom:660.893333pt;}
.yc3{bottom:661.693333pt;}
.y179{bottom:662.026667pt;}
.ye8{bottom:662.493333pt;}
.y23c{bottom:665.053333pt;}
.y17{bottom:665.853333pt;}
.y208{bottom:666.813333pt;}
.y1dd{bottom:672.093333pt;}
.y1af{bottom:673.373333pt;}
.y94{bottom:674.013333pt;}
.y12a{bottom:678.493333pt;}
.yc2{bottom:679.293333pt;}
.y16{bottom:679.933333pt;}
.ye7{bottom:680.093333pt;}
.y23b{bottom:680.413333pt;}
.y207{bottom:685.213333pt;}
.y1dc{bottom:689.853333pt;}
.y1ae{bottom:690.973333pt;}
.y93{bottom:691.773333pt;}
.y15{bottom:694.013333pt;}
.y23a{bottom:695.613333pt;}
.y129{bottom:696.093333pt;}
.yc1{bottom:697.053333pt;}
.y1db{bottom:707.453333pt;}
.y14{bottom:708.253333pt;}
.y1ad{bottom:708.573333pt;}
.y92{bottom:709.373333pt;}
.y239{bottom:710.973333pt;}
.y128{bottom:713.693333pt;}
.yc0{bottom:714.653333pt;}
.y178{bottom:714.813333pt;}
.y13{bottom:717.533333pt;}
.y206{bottom:721.533333pt;}
.y1da{bottom:725.053333pt;}
.y1ac{bottom:726.173333pt;}
.y238{bottom:726.333333pt;}
.y91{bottom:726.973333pt;}
.y127{bottom:731.293333pt;}
.ybf{bottom:732.253333pt;}
.y12{bottom:734.813333pt;}
.y205{bottom:739.133333pt;}
.y177{bottom:740.093333pt;}
.y237{bottom:741.693333pt;}
.y1d9{bottom:742.653333pt;}
.y1ab{bottom:743.773333pt;}
.y90{bottom:744.573333pt;}
.y11{bottom:748.093333pt;}
.ybe{bottom:749.853333pt;}
.yd4{bottom:750.653333pt;}
.y176{bottom:751.613333pt;}
.y204{bottom:756.733333pt;}
.y236{bottom:757.053333pt;}
.y126{bottom:758.213333pt;}
.y1d8{bottom:760.293333pt;}
.y10{bottom:761.413333pt;}
.y1aa{bottom:761.573333pt;}
.y8f{bottom:762.213333pt;}
.ybd{bottom:767.493333pt;}
.yd3{bottom:768.293333pt;}
.y11f{bottom:768.613333pt;}
.yf{bottom:771.493333pt;}
.y235{bottom:772.453333pt;}
.y203{bottom:774.533333pt;}
.y1d7{bottom:778.053333pt;}
.y1a9{bottom:779.173333pt;}
.y8e{bottom:779.973333pt;}
.y173{bottom:780.133333pt;}
.y125{bottom:783.333333pt;}
.ybc{bottom:785.253333pt;}
.ye{bottom:787.173333pt;}
.y234{bottom:787.653333pt;}
.y202{bottom:792.133333pt;}
.y1d6{bottom:795.653333pt;}
.y1a8{bottom:796.773333pt;}
.y8d{bottom:797.573333pt;}
.y121{bottom:798.053333pt;}
.y16e{bottom:799.320000pt;}
.y16d{bottom:799.333333pt;}
.y233{bottom:803.013333pt;}
.ybb{bottom:803.653333pt;}
.yd{bottom:808.933333pt;}
.y201{bottom:809.733333pt;}
.y11a{bottom:812.933333pt;}
.y1d5{bottom:813.253333pt;}
.y1a7{bottom:814.373333pt;}
.y8c{bottom:815.173333pt;}
.y16f{bottom:815.973333pt;}
.y232{bottom:818.373333pt;}
.yba{bottom:821.253333pt;}
.y200{bottom:827.333333pt;}
.yc{bottom:828.133333pt;}
.y1d4{bottom:830.853333pt;}
.y1a6{bottom:831.973333pt;}
.y8b{bottom:832.773333pt;}
.y231{bottom:833.733333pt;}
.y11c{bottom:836.933333pt;}
.y169{bottom:840.600000pt;}
.y167{bottom:840.613333pt;}
.y1ff{bottom:844.933333pt;}
.yb{bottom:847.493333pt;}
.y1d3{bottom:848.453333pt;}
.y230{bottom:849.093333pt;}
.y1a5{bottom:849.733333pt;}
.y8a{bottom:850.373333pt;}
.y16c{bottom:858.373333pt;}
.y117{bottom:860.933333pt;}
.y1fe{bottom:862.693333pt;}
.y22f{bottom:864.453333pt;}
.y1d2{bottom:866.213333pt;}
.y1a4{bottom:867.333333pt;}
.y89{bottom:868.133333pt;}
.ya{bottom:871.973333pt;}
.y22e{bottom:879.653333pt;}
.y1fd{bottom:880.293333pt;}
.y15f{bottom:881.720000pt;}
.y15d{bottom:881.733333pt;}
.y1d1{bottom:884.613333pt;}
.y1a3{bottom:884.933333pt;}
.y88{bottom:885.733333pt;}
.y10f{bottom:886.040000pt;}
.y10a{bottom:886.053333pt;}
.y22d{bottom:895.013333pt;}
.y9{bottom:896.613333pt;}
.y1fc{bottom:898.693333pt;}
.y163{bottom:899.653333pt;}
.y1a2{bottom:902.533333pt;}
.y87{bottom:903.333333pt;}
.y22c{bottom:910.373333pt;}
.y1a1{bottom:920.133333pt;}
.y86{bottom:920.933333pt;}
.y8{bottom:921.093333pt;}
.y15a{bottom:924.293333pt;}
.y22b{bottom:925.733333pt;}
.y10c{bottom:926.693333pt;}
.y1fb{bottom:935.013333pt;}
.y1a0{bottom:937.893333pt;}
.y85{bottom:938.533333pt;}
.y22a{bottom:941.093333pt;}
.y7{bottom:945.093333pt;}
.y1fa{bottom:953.413333pt;}
.y19f{bottom:953.573333pt;}
.y84{bottom:956.133333pt;}
.y229{bottom:956.293333pt;}
.y109{bottom:957.413333pt;}
.y6c{bottom:974.400000pt;}
.y82{bottom:998.400000pt;}
.y46{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h18{height:5.160000pt;}
.h57{height:5.562500pt;}
.h2{height:12.000000pt;}
.h39{height:14.066667pt;}
.h1c{height:15.040000pt;}
.h4b{height:15.986667pt;}
.h46{height:17.106667pt;}
.h4e{height:17.266667pt;}
.h4d{height:18.546667pt;}
.h25{height:19.680000pt;}
.h3d{height:20.146667pt;}
.h15{height:20.728125pt;}
.h2d{height:21.708032pt;}
.h45{height:22.706667pt;}
.h37{height:23.186667pt;}
.h3e{height:23.346667pt;}
.h30{height:23.826667pt;}
.h4a{height:23.986667pt;}
.h35{height:24.466667pt;}
.h2b{height:26.368125pt;}
.hc{height:26.381250pt;}
.hf{height:27.523125pt;}
.h21{height:27.628404pt;}
.h3c{height:28.146667pt;}
.h50{height:28.160000pt;}
.h41{height:28.306667pt;}
.h51{height:28.346667pt;}
.h56{height:29.266667pt;}
.h4{height:30.400000pt;}
.h23{height:32.250000pt;}
.h13{height:35.114107pt;}
.h54{height:35.186667pt;}
.h52{height:35.346667pt;}
.h5{height:36.431250pt;}
.h4c{height:36.466667pt;}
.h24{height:37.410000pt;}
.h2e{height:38.050313pt;}
.h3f{height:38.153511pt;}
.h33{height:38.712000pt;}
.h34{height:38.720000pt;}
.h29{height:38.877839pt;}
.h11{height:39.571875pt;}
.hb{height:40.103437pt;}
.h49{height:40.466667pt;}
.h47{height:40.472000pt;}
.h48{height:40.480000pt;}
.h44{height:40.626667pt;}
.h42{height:40.632000pt;}
.h1a{height:40.635000pt;}
.h43{height:40.640000pt;}
.h55{height:41.266667pt;}
.h12{height:41.442606pt;}
.hd{height:42.084375pt;}
.h1d{height:43.215000pt;}
.h38{height:43.506667pt;}
.h14{height:47.109375pt;}
.h36{height:47.186667pt;}
.h53{height:47.218667pt;}
.h1e{height:48.375000pt;}
.h10{height:49.148438pt;}
.h20{height:49.336436pt;}
.h3b{height:49.968750pt;}
.h19{height:51.400000pt;}
.h28{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2c{height:53.535000pt;}
.h3a{height:54.598989pt;}
.ha{height:57.787500pt;}
.h1b{height:58.563750pt;}
.he{height:60.288750pt;}
.h2a{height:62.781250pt;}
.h2f{height:64.466667pt;}
.h31{height:64.472000pt;}
.h32{height:64.480000pt;}
.h9{height:64.500000pt;}
.h40{height:65.781915pt;}
.h16{height:66.625000pt;}
.h27{height:66.750000pt;}
.h17{height:75.465000pt;}
.h7{height:77.951250pt;}
.h22{height:84.800000pt;}
.h8{height:85.785000pt;}
.h4f{height:99.937500pt;}
.h26{height:151.066667pt;}
.h1f{height:384.706667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w2d{width:42.098667pt;}
.w2e{width:45.906667pt;}
.w2b{width:48.032000pt;}
.w23{width:53.920000pt;}
.w25{width:59.986667pt;}
.w22{width:60.000000pt;}
.w26{width:60.018667pt;}
.w30{width:66.426667pt;}
.w24{width:72.032000pt;}
.w3{width:72.952000pt;}
.w15{width:77.592000pt;}
.w27{width:78.066667pt;}
.w18{width:78.098667pt;}
.w1e{width:78.578667pt;}
.w20{width:78.586667pt;}
.w2f{width:79.666667pt;}
.w1d{width:79.826667pt;}
.w1f{width:79.986667pt;}
.wf{width:82.906667pt;}
.w2c{width:83.986667pt;}
.w16{width:84.018667pt;}
.w1b{width:84.160000pt;}
.w1c{width:86.752000pt;}
.w17{width:89.592000pt;}
.w28{width:89.946667pt;}
.w2a{width:101.920000pt;}
.w14{width:107.986667pt;}
.wd{width:107.992000pt;}
.we{width:108.000000pt;}
.w1a{width:123.860000pt;}
.w13{width:129.458667pt;}
.w12{width:129.460000pt;}
.w19{width:132.352000pt;}
.w5{width:137.306667pt;}
.w21{width:140.978667pt;}
.w29{width:144.018667pt;}
.w10{width:158.586667pt;}
.w11{width:158.600000pt;}
.wa{width:160.346667pt;}
.wb{width:161.618667pt;}
.w8{width:162.266667pt;}
.wc{width:288.066667pt;}
.w7{width:473.706667pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w9{width:660.600000pt;}
.w6{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x61{left:3.780000pt;}
.x2{left:7.192000pt;}
.x19{left:9.592000pt;}
.x5d{left:10.586667pt;}
.x5f{left:11.506667pt;}
.x2a{left:12.800000pt;}
.x4a{left:14.560000pt;}
.x3b{left:16.480000pt;}
.x54{left:17.920000pt;}
.x1f{left:18.893333pt;}
.x35{left:21.146667pt;}
.x44{left:22.240000pt;}
.x4c{left:24.000000pt;}
.x4b{left:25.280000pt;}
.x39{left:26.226667pt;}
.x3c{left:27.986667pt;}
.x3f{left:29.586667pt;}
.x37{left:31.026667pt;}
.x32{left:31.986667pt;}
.x2e{left:32.986667pt;}
.x3a{left:34.066667pt;}
.x55{left:35.546667pt;}
.x38{left:36.786667pt;}
.x34{left:37.746667pt;}
.x5e{left:38.880000pt;}
.x60{left:40.146667pt;}
.x56{left:43.226667pt;}
.x2c{left:48.173333pt;}
.x33{left:49.746667pt;}
.x2b{left:52.173333pt;}
.x2f{left:53.760000pt;}
.x40{left:56.800000pt;}
.x30{left:64.320000pt;}
.x3{left:65.746667pt;}
.x1c{left:71.560000pt;}
.x1a{left:72.680000pt;}
.x4d{left:77.152000pt;}
.x18{left:82.760000pt;}
.x1e{left:84.680000pt;}
.x12{left:90.752000pt;}
.x1{left:96.040000pt;}
.xb{left:102.272000pt;}
.x23{left:105.952000pt;}
.x41{left:108.032000pt;}
.x4e{left:109.160000pt;}
.x42{left:110.760000pt;}
.x7{left:114.592000pt;}
.x15{left:117.952000pt;}
.x6{left:121.152000pt;}
.x8{left:123.232000pt;}
.x28{left:128.826667pt;}
.x13{left:130.272000pt;}
.x21{left:146.746667pt;}
.x11{left:160.986667pt;}
.xf{left:166.586667pt;}
.x4{left:169.000000pt;}
.x36{left:173.640000pt;}
.x3d{left:185.640000pt;}
.xe{left:192.026667pt;}
.x14{left:200.186667pt;}
.xc{left:209.466667pt;}
.x43{left:234.626667pt;}
.x10{left:246.146667pt;}
.x24{left:247.266667pt;}
.x22{left:250.146667pt;}
.x57{left:255.106667pt;}
.x27{left:257.666667pt;}
.x3e{left:263.746667pt;}
.x1b{left:269.506667pt;}
.x1d{left:275.866667pt;}
.x26{left:300.546667pt;}
.x9{left:306.306667pt;}
.x4f{left:310.146667pt;}
.x45{left:318.786667pt;}
.x58{left:357.026667pt;}
.x50{left:364.066667pt;}
.xa{left:393.853333pt;}
.x5{left:396.893333pt;}
.x46{left:405.546667pt;}
.xd{left:408.093333pt;}
.x31{left:416.266667pt;}
.x16{left:434.813333pt;}
.x17{left:436.253333pt;}
.x47{left:485.386667pt;}
.x59{left:489.066667pt;}
.x51{left:496.106667pt;}
.x5a{left:531.173333pt;}
.x29{left:545.733333pt;}
.x20{left:551.336000pt;}
.x52{left:556.133333pt;}
.x48{left:563.973333pt;}
.x5b{left:577.093333pt;}
.x25{left:616.613333pt;}
.x53{left:634.213333pt;}
.x49{left:643.973333pt;}
.x2d{left:653.733333pt;}
.x5c{left:656.773333pt;}
}




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