
    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_1a148e1848665b31112493c1.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_a728ca0b4c22867ec1c6d850.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1372d904cbb6752c5a6fe267.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5a87ff1e7d953221a65976cb.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2672cede3d9e3974be3bc979.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ff09b5b2375a7e650c5a096d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7be9458622090b4124589f61.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_94e834609969d200ecb96f3c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_c8636030d6745ae4734aec00.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_db5f27c3a88abb5f3dadeab2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.711914;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_63c005c3b04fee9b640d3fa4.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c3e8ec4420996d1ba3dc972d.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3654a8cc14dfd0cab02362dd.woff')format("woff");}.fff{font-family:fff;line-height:1.112305;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_78639785e1bf163498384115.woff')format("woff");}.ff10{font-family:ff10;line-height:0.999512;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:-68.400000px;}
.v5{vertical-align:-63.360000px;}
.v3{vertical-align:-23.760000px;}
.v2{vertical-align:-18.180000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-29.640000px;}
.ls1f{letter-spacing:-18.540000px;}
.ls2e{letter-spacing:-17.820000px;}
.ls21{letter-spacing:-17.100000px;}
.ls1e{letter-spacing:-15.660000px;}
.ls24{letter-spacing:-14.220000px;}
.ls25{letter-spacing:-13.500000px;}
.ls2f{letter-spacing:-12.780000px;}
.ls28{letter-spacing:-12.060000px;}
.ls32{letter-spacing:-11.340000px;}
.lsb{letter-spacing:-9.720000px;}
.ls30{letter-spacing:-9.180000px;}
.ls1b{letter-spacing:-8.460000px;}
.ls20{letter-spacing:-7.740000px;}
.ls2d{letter-spacing:-4.860000px;}
.ls26{letter-spacing:-3.420000px;}
.ls1a{letter-spacing:-1.980000px;}
.ls22{letter-spacing:-1.260000px;}
.ls10{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.269400px;}
.ls8{letter-spacing:-0.223800px;}
.ls11{letter-spacing:-0.206400px;}
.ls14{letter-spacing:-0.181200px;}
.lsa{letter-spacing:-0.178800px;}
.lsd{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.108000px;}
.ls33{letter-spacing:0.136080px;}
.ls3{letter-spacing:0.144720px;}
.ls19{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.315600px;}
.ls4{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.383040px;}
.ls2b{letter-spacing:1.620000px;}
.ls23{letter-spacing:3.060000px;}
.ls29{letter-spacing:5.220000px;}
.ls2a{letter-spacing:6.660000px;}
.ls1d{letter-spacing:7.380000px;}
.ls27{letter-spacing:10.980000px;}
.ls2c{letter-spacing:11.700000px;}
.ls17{letter-spacing:16.560000px;}
.ls1c{letter-spacing:19.620000px;}
.ls31{letter-spacing:23.220000px;}
.ls2{letter-spacing:48.420000px;}
.ls0{letter-spacing:71.280000px;}
.ls1{letter-spacing:71.460000px;}
.ls15{letter-spacing:339.276000px;}
.ls16{letter-spacing:363.036000px;}
.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;}
}
.wsc{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.560000px;}
.ws11{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.238800px;}
.ws7{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.733600px;}
.ws12{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.500000px;}
.wsf{word-spacing:-12.420000px;}
.wse{word-spacing:-12.060000px;}
.wsd{word-spacing:-11.790600px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.261200px;}
.ws3{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.ws6{word-spacing:0.000000px;}
.ws0{word-spacing:61.560000px;}
._5{margin-left:-60.300000px;}
._52{margin-left:-23.220000px;}
._3c{margin-left:-19.620000px;}
._47{margin-left:-10.980000px;}
._3e{margin-left:-7.380000px;}
._4a{margin-left:-5.220000px;}
._15{margin-left:-3.510000px;}
._d{margin-left:-2.438880px;}
._2{margin-left:-1.391040px;}
._0{width:1.002240px;}
._16{width:2.472720px;}
._1{width:3.521280px;}
._10{width:4.615200px;}
._24{width:5.751360px;}
._14{width:6.912000px;}
._13{width:8.154000px;}
._b{width:9.575280px;}
._c{width:10.936080px;}
._a{width:12.209760px;}
._9{width:13.280400px;}
._37{width:14.472000px;}
._26{width:16.128000px;}
._17{width:17.334000px;}
._1b{width:18.419760px;}
._11{width:20.019600px;}
._1f{width:21.427200px;}
._1e{width:22.602960px;}
._22{width:23.844240px;}
._8{width:25.411680px;}
._7{width:26.533440px;}
._1d{width:27.549360px;}
._12{width:29.328360px;}
._28{width:31.015440px;}
._32{width:32.325120px;}
._29{width:33.465600px;}
._34{width:34.853760px;}
._2d{width:36.453600px;}
._5c{width:37.689840px;}
._30{width:38.784240px;}
._2e{width:40.052880px;}
._27{width:41.307840px;}
._1a{width:42.758640px;}
._19{width:43.863840px;}
._25{width:45.537120px;}
._f{width:46.971360px;}
._e{width:48.226320px;}
._2a{width:49.793760px;}
._48{width:51.885360px;}
._2c{width:55.756080px;}
._21{width:57.263760px;}
._20{width:58.445280px;}
._35{width:60.205680px;}
._33{width:63.538560px;}
._3{width:65.496000px;}
._38{width:66.526560px;}
._5d{width:68.438880px;}
._3b{width:69.680160px;}
._40{width:70.875360px;}
._3f{width:72.369360px;}
._41{width:73.545840px;}
._2f{width:78.046560px;}
._4f{width:79.182000px;}
._23{width:80.974800px;}
._44{width:83.126160px;}
._60{width:86.700960px;}
._4d{width:89.998560px;}
._1c{width:93.106080px;}
._4c{width:94.839120px;}
._54{width:95.868720px;}
._46{width:102.129840px;}
._45{width:103.564080px;}
._5b{width:120.788640px;}
._2b{width:162.137520px;}
._55{width:176.903280px;}
._4{width:199.620000px;}
._4e{width:201.211920px;}
._62{width:216.032400px;}
._3a{width:218.137680px;}
._51{width:220.394880px;}
._50{width:221.410800px;}
._36{width:228.177360px;}
._59{width:253.860480px;}
._3d{width:267.021360px;}
._18{width:285.870000px;}
._58{width:305.672400px;}
._5e{width:344.874960px;}
._53{width:351.043920px;}
._31{width:389.409840px;}
._56{width:410.684400px;}
._57{width:411.686640px;}
._49{width:412.716240px;}
._42{width:569.227680px;}
._5f{width:629.153280px;}
._39{width:658.807920px;}
._4b{width:662.559120px;}
._5a{width:706.064400px;}
._43{width:745.220880px;}
._61{width:751.794480px;}
._6{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;}
.fs10{font-size:6.000000px;}
.fsc{font-size:18.000000px;}
.fsb{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fsa{font-size:37.946952px;}
.fs0{font-size:41.760000px;}
.fs9{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fsf{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fse{font-size:120.240000px;}
.y6e{bottom:-251.670000px;}
.y6d{bottom:-218.010000px;}
.y6c{bottom:-184.170000px;}
.y7e{bottom:-181.485000px;}
.y6b{bottom:-150.510000px;}
.y7d{bottom:-147.645000px;}
.y6a{bottom:-116.670000px;}
.y7c{bottom:-113.985000px;}
.y69{bottom:-83.010000px;}
.y7b{bottom:-80.145000px;}
.y68{bottom:-49.320000px;}
.y7a{bottom:-46.485000px;}
.y3b{bottom:-23.940000px;}
.y80{bottom:-17.922750px;}
.y67{bottom:-15.480000px;}
.y79{bottom:-12.780000px;}
.y0{bottom:0.000000px;}
.y59{bottom:0.900000px;}
.y32e{bottom:1.837500px;}
.y66{bottom:2.520000px;}
.y2{bottom:3.780000px;}
.y1b3{bottom:4.500000px;}
.y1cd{bottom:4.545000px;}
.y1b7{bottom:4.680000px;}
.y62{bottom:5.400000px;}
.y3a{bottom:5.580000px;}
.y294{bottom:5.940000px;}
.y2d6{bottom:5.970000px;}
.y321{bottom:6.300000px;}
.y328{bottom:6.480000px;}
.y29b{bottom:6.660000px;}
.y2a6{bottom:6.840000px;}
.y13c{bottom:7.020000px;}
.y141{bottom:7.200000px;}
.y2ba{bottom:7.380000px;}
.y31e{bottom:7.560000px;}
.y28f{bottom:7.740000px;}
.y1af{bottom:7.920000px;}
.y324{bottom:8.100000px;}
.y13a{bottom:8.460000px;}
.y26b{bottom:8.490000px;}
.y2bf{bottom:8.640000px;}
.y2ce{bottom:8.820000px;}
.y290{bottom:9.000000px;}
.y31a{bottom:9.180000px;}
.y2a5{bottom:9.360000px;}
.y2c0{bottom:9.720000px;}
.y2ac{bottom:9.900000px;}
.y2c8{bottom:10.125000px;}
.y2c6{bottom:10.260000px;}
.y319{bottom:10.440000px;}
.y281{bottom:10.470000px;}
.y295{bottom:10.620000px;}
.y13e{bottom:10.800000px;}
.y264{bottom:11.520000px;}
.y252{bottom:11.880000px;}
.y26c{bottom:11.910000px;}
.y7{bottom:12.240000px;}
.y266{bottom:12.420000px;}
.y30b{bottom:12.465000px;}
.y258{bottom:12.600000px;}
.y1b1{bottom:12.780000px;}
.y2d4{bottom:12.960000px;}
.y4{bottom:13.320000px;}
.y3{bottom:13.680000px;}
.y2a7{bottom:13.860000px;}
.y299{bottom:14.040000px;}
.y58{bottom:14.400000px;}
.y2b8{bottom:14.760000px;}
.y65{bottom:15.480000px;}
.y285{bottom:15.840000px;}
.y2cc{bottom:16.200000px;}
.y177{bottom:16.380000px;}
.y17b{bottom:16.425000px;}
.y184{bottom:16.560000px;}
.y29f{bottom:16.920000px;}
.y326{bottom:17.460000px;}
.y2c1{bottom:17.640000px;}
.y2a0{bottom:18.000000px;}
.y78{bottom:18.180000px;}
.y27f{bottom:18.360000px;}
.y323{bottom:18.540000px;}
.y2a3{bottom:18.720000px;}
.y292{bottom:19.080000px;}
.y286{bottom:19.260000px;}
.y28d{bottom:19.440000px;}
.y2bc{bottom:19.620000px;}
.y2f7{bottom:20.340000px;}
.y259{bottom:20.520000px;}
.y57{bottom:23.040000px;}
.y6{bottom:25.020000px;}
.y173{bottom:26.280000px;}
.y253{bottom:28.080000px;}
.y60{bottom:28.260000px;}
.y1c0{bottom:28.440000px;}
.y64{bottom:28.620000px;}
.y1b5{bottom:29.520000px;}
.y1bb{bottom:29.550000px;}
.y175{bottom:30.600000px;}
.y77{bottom:31.320000px;}
.y254{bottom:34.200000px;}
.y5{bottom:37.980000px;}
.y5f{bottom:40.320000px;}
.y56{bottom:40.860000px;}
.y76{bottom:44.280000px;}
.yda{bottom:45.900000px;}
.y2f4{bottom:46.980000px;}
.y255{bottom:47.160000px;}
.y5e{bottom:52.380000px;}
.y55{bottom:54.360000px;}
.y75{bottom:57.420000px;}
.y179{bottom:59.040000px;}
.y82{bottom:59.940000px;}
.y1{bottom:61.380000px;}
.y1c5{bottom:61.785000px;}
.yd9{bottom:62.280000px;}
.y54{bottom:63.000000px;}
.y7f{bottom:63.780000px;}
.y5d{bottom:64.440000px;}
.y74{bottom:70.380000px;}
.y5c{bottom:76.530000px;}
.yd8{bottom:80.460000px;}
.y53{bottom:80.820000px;}
.y73{bottom:83.340000px;}
.y2b6{bottom:89.850000px;}
.y2aa{bottom:92.370000px;}
.y269{bottom:93.420000px;}
.y302{bottom:93.465000px;}
.y5b{bottom:93.810000px;}
.y72{bottom:96.480000px;}
.y2ca{bottom:96.840000px;}
.y52{bottom:98.685000px;}
.y117{bottom:99.360000px;}
.y2f1{bottom:100.260000px;}
.y2be{bottom:100.620000px;}
.yb4{bottom:103.320000px;}
.ye1{bottom:104.040000px;}
.y22a{bottom:104.940000px;}
.y14e{bottom:106.740000px;}
.y30d{bottom:107.640000px;}
.y2fb{bottom:108.900000px;}
.yd7{bottom:109.080000px;}
.y71{bottom:109.440000px;}
.y1f8{bottom:109.980000px;}
.y168{bottom:110.160000px;}
.y153{bottom:110.700000px;}
.ye5{bottom:112.320000px;}
.y1dd{bottom:112.500000px;}
.y197{bottom:112.860000px;}
.y31c{bottom:113.040000px;}
.y250{bottom:113.760000px;}
.y313{bottom:114.690000px;}
.y186{bottom:115.785000px;}
.y2f0{bottom:116.100000px;}
.y51{bottom:116.685000px;}
.y27b{bottom:116.850000px;}
.y297{bottom:117.360000px;}
.y25e{bottom:117.900000px;}
.y25b{bottom:118.080000px;}
.y260{bottom:118.800000px;}
.y306{bottom:118.845000px;}
.y116{bottom:119.160000px;}
.y38{bottom:119.340000px;}
.y1a0{bottom:120.780000px;}
.ye0{bottom:121.140000px;}
.y274{bottom:121.350000px;}
.y70{bottom:121.680000px;}
.y2b5{bottom:121.710000px;}
.yb3{bottom:123.120000px;}
.y1dc{bottom:124.560000px;}
.y311{bottom:124.590000px;}
.y278{bottom:124.770000px;}
.y229{bottom:124.920000px;}
.ye4{bottom:125.100000px;}
.y273{bottom:125.460000px;}
.y37{bottom:126.540000px;}
.yd6{bottom:128.880000px;}
.y2d0{bottom:129.450000px;}
.y1f7{bottom:129.780000px;}
.y167{bottom:129.960000px;}
.y152{bottom:130.500000px;}
.y283{bottom:130.905000px;}
.y2af{bottom:131.250000px;}
.y20b{bottom:131.940000px;}
.y2ef{bottom:132.120000px;}
.y196{bottom:132.660000px;}
.y27a{bottom:132.690000px;}
.y24f{bottom:133.560000px;}
.y50{bottom:134.505000px;}
.y2b4{bottom:135.570000px;}
.y29d{bottom:135.720000px;}
.y1db{bottom:136.620000px;}
.y28b{bottom:137.385000px;}
.y115{bottom:138.960000px;}
.y19f{bottom:140.580000px;}
.ydf{bottom:141.120000px;}
.y318{bottom:142.200000px;}
.yb2{bottom:142.920000px;}
.y228{bottom:144.720000px;}
.ye3{bottom:145.080000px;}
.y288{bottom:145.305000px;}
.y2a9{bottom:145.440000px;}
.y320{bottom:145.830000px;}
.y14d{bottom:146.340000px;}
.y36{bottom:146.520000px;}
.y2ee{bottom:147.960000px;}
.y312{bottom:148.530000px;}
.y1da{bottom:148.680000px;}
.yd5{bottom:148.860000px;}
.y2b3{bottom:149.430000px;}
.y1f6{bottom:149.580000px;}
.y166{bottom:149.760000px;}
.y151{bottom:150.300000px;}
.y25f{bottom:150.660000px;}
.y305{bottom:150.705000px;}
.y20a{bottom:151.740000px;}
.y4f{bottom:152.325000px;}
.y195{bottom:152.460000px;}
.y28a{bottom:153.225000px;}
.y24e{bottom:153.540000px;}
.y310{bottom:156.450000px;}
.y277{bottom:156.630000px;}
.y114{bottom:158.760000px;}
.y280{bottom:160.020000px;}
.y19e{bottom:160.380000px;}
.y2cf{bottom:161.310000px;}
.yde{bottom:162.180000px;}
.yb1{bottom:162.720000px;}
.y2ae{bottom:163.110000px;}
.y2ed{bottom:163.800000px;}
.y227{bottom:164.520000px;}
.y279{bottom:164.550000px;}
.ye2{bottom:164.880000px;}
.y1d9{bottom:165.240000px;}
.y14c{bottom:166.140000px;}
.y35{bottom:166.320000px;}
.y29c{bottom:167.580000px;}
.yd4{bottom:168.660000px;}
.y1f5{bottom:169.380000px;}
.y165{bottom:169.560000px;}
.y4e{bottom:170.145000px;}
.y150{bottom:170.310000px;}
.y209{bottom:171.570000px;}
.y194{bottom:172.470000px;}
.y24d{bottom:173.370000px;}
.y2b2{bottom:176.970000px;}
.y287{bottom:177.165000px;}
.y31f{bottom:177.690000px;}
.y113{bottom:178.770000px;}
.y2ec{bottom:179.670000px;}
.y19d{bottom:180.390000px;}
.y1d8{bottom:181.830000px;}
.yb0{bottom:182.730000px;}
.y226{bottom:184.350000px;}
.y289{bottom:185.085000px;}
.y34{bottom:186.150000px;}
.y14b{bottom:187.410000px;}
.y4d{bottom:187.965000px;}
.yd3{bottom:188.490000px;}
.y316{bottom:188.670000px;}
.y1f4{bottom:189.210000px;}
.y164{bottom:189.390000px;}
.y2bd{bottom:189.570000px;}
.y14f{bottom:190.110000px;}
.y2b1{bottom:190.830000px;}
.y208{bottom:191.370000px;}
.y193{bottom:192.270000px;}
.y24c{bottom:193.170000px;}
.y2eb{bottom:195.510000px;}
.y112{bottom:198.570000px;}
.y19c{bottom:200.190000px;}
.yaf{bottom:202.530000px;}
.y225{bottom:204.150000px;}
.y2b0{bottom:204.510000px;}
.y4c{bottom:205.785000px;}
.y33{bottom:205.950000px;}
.y27d{bottom:206.490000px;}
.y14a{bottom:207.570000px;}
.yd2{bottom:208.290000px;}
.y1f3{bottom:209.190000px;}
.ydd{bottom:209.370000px;}
.y16f{bottom:210.630000px;}
.y207{bottom:211.170000px;}
.y2ea{bottom:211.350000px;}
.y192{bottom:212.070000px;}
.y24b{bottom:212.970000px;}
.y1d7{bottom:215.130000px;}
.y111{bottom:218.370000px;}
.y4b{bottom:219.285000px;}
.y19b{bottom:219.990000px;}
.yae{bottom:222.330000px;}
.y317{bottom:223.230000px;}
.y224{bottom:224.130000px;}
.y32{bottom:225.750000px;}
.y2e9{bottom:227.370000px;}
.ydc{bottom:227.730000px;}
.yd1{bottom:228.090000px;}
.y4a{bottom:228.105000px;}
.y1f2{bottom:228.990000px;}
.y163{bottom:229.170000px;}
.y149{bottom:230.430000px;}
.y206{bottom:231.150000px;}
.y1d6{bottom:231.690000px;}
.y191{bottom:231.870000px;}
.y24a{bottom:232.770000px;}
.y16e{bottom:234.390000px;}
.y110{bottom:238.170000px;}
.y2c3{bottom:239.085000px;}
.y19a{bottom:239.790000px;}
.y27e{bottom:241.050000px;}
.yad{bottom:242.130000px;}
.y148{bottom:242.490000px;}
.y2e8{bottom:243.210000px;}
.ydb{bottom:244.830000px;}
.y223{bottom:245.190000px;}
.y31{bottom:245.730000px;}
.y49{bottom:245.925000px;}
.yd0{bottom:248.070000px;}
.y1d5{bottom:248.430000px;}
.y1f1{bottom:248.790000px;}
.y162{bottom:248.970000px;}
.y205{bottom:250.950000px;}
.y249{bottom:252.750000px;}
.y190{bottom:252.930000px;}
.y147{bottom:254.550000px;}
.y16d{bottom:256.890000px;}
.y314{bottom:257.790000px;}
.y10f{bottom:257.970000px;}
.y2e7{bottom:259.050000px;}
.y199{bottom:259.590000px;}
.yac{bottom:261.930000px;}
.y2bb{bottom:263.730000px;}
.y48{bottom:263.745000px;}
.y1d4{bottom:264.990000px;}
.y146{bottom:266.610000px;}
.y30{bottom:266.790000px;}
.ycf{bottom:267.870000px;}
.y1f0{bottom:268.590000px;}
.y161{bottom:268.770000px;}
.y204{bottom:270.750000px;}
.y248{bottom:273.810000px;}
.y2e6{bottom:274.890000px;}
.y27c{bottom:275.790000px;}
.y16c{bottom:276.690000px;}
.y18f{bottom:276.870000px;}
.y10e{bottom:277.950000px;}
.y145{bottom:278.670000px;}
.y198{bottom:279.570000px;}
.y1d3{bottom:281.550000px;}
.y47{bottom:281.565000px;}
.yab{bottom:281.910000px;}
.y222{bottom:285.690000px;}
.y2f{bottom:286.950000px;}
.yce{bottom:287.670000px;}
.y1ef{bottom:288.390000px;}
.y160{bottom:288.570000px;}
.y203{bottom:290.550000px;}
.y2e5{bottom:290.730000px;}
.y315{bottom:292.530000px;}
.y16b{bottom:296.490000px;}
.y2e{bottom:297.030000px;}
.y10d{bottom:297.750000px;}
.y46{bottom:299.385000px;}
.y1d2{bottom:299.730000px;}
.y144{bottom:300.270000px;}
.y2b7{bottom:300.450000px;}
.yaa{bottom:301.710000px;}
.y3c{bottom:304.230000px;}
.y221{bottom:305.490000px;}
.y18e{bottom:306.390000px;}
.y2e4{bottom:306.570000px;}
.ycd{bottom:307.470000px;}
.y2d{bottom:308.370000px;}
.y15f{bottom:308.550000px;}
.y202{bottom:310.350000px;}
.y247{bottom:314.310000px;}
.y185{bottom:315.570000px;}
.y16a{bottom:316.470000px;}
.y45{bottom:317.205000px;}
.y10c{bottom:317.550000px;}
.ya9{bottom:321.510000px;}
.y143{bottom:322.050000px;}
.y2e3{bottom:322.410000px;}
.y220{bottom:325.290000px;}
.y1d1{bottom:326.190000px;}
.y30e{bottom:327.090000px;}
.ycc{bottom:327.270000px;}
.y1ee{bottom:328.170000px;}
.y15e{bottom:329.610000px;}
.y201{bottom:330.330000px;}
.y2c{bottom:332.130000px;}
.y246{bottom:334.110000px;}
.y2b9{bottom:335.010000px;}
.y44{bottom:335.235000px;}
.y169{bottom:336.270000px;}
.y10b{bottom:337.350000px;}
.y2e2{bottom:338.430000px;}
.ya8{bottom:341.310000px;}
.y142{bottom:343.650000px;}
.y18d{bottom:344.010000px;}
.y275{bottom:344.910000px;}
.y21f{bottom:345.270000px;}
.ycb{bottom:347.250000px;}
.y1ed{bottom:347.970000px;}
.y200{bottom:350.130000px;}
.y43{bottom:353.055000px;}
.y15d{bottom:353.370000px;}
.y2e1{bottom:354.270000px;}
.y245{bottom:355.170000px;}
.y2b{bottom:356.070000px;}
.y10a{bottom:357.150000px;}
.y1d0{bottom:357.690000px;}
.ya7{bottom:361.110000px;}
.y30f{bottom:361.650000px;}
.y21e{bottom:365.070000px;}
.y140{bottom:365.250000px;}
.y42{bottom:366.555000px;}
.yca{bottom:367.050000px;}
.y1ec{bottom:367.770000px;}
.y1ff{bottom:369.930000px;}
.y2e0{bottom:370.110000px;}
.y18c{bottom:372.270000px;}
.y1cf{bottom:374.070000px;}
.y41{bottom:375.195000px;}
.y2ab{bottom:375.330000px;}
.y109{bottom:376.950000px;}
.y276{bottom:379.470000px;}
.y2a{bottom:379.830000px;}
.ya6{bottom:381.090000px;}
.y21d{bottom:384.870000px;}
.y2df{bottom:385.950000px;}
.y1ce{bottom:386.130000px;}
.yc9{bottom:386.850000px;}
.y13f{bottom:387.030000px;}
.y1eb{bottom:387.570000px;}
.y1fe{bottom:389.730000px;}
.y40{bottom:393.015000px;}
.y244{bottom:395.850000px;}
.y301{bottom:396.390000px;}
.y108{bottom:396.930000px;}
.y1c4{bottom:398.010000px;}
.y15c{bottom:400.575000px;}
.y18b{bottom:400.755000px;}
.ya5{bottom:400.935000px;}
.y2de{bottom:401.835000px;}
.y29{bottom:403.635000px;}
.y21c{bottom:404.715000px;}
.yc8{bottom:406.695000px;}
.y1ea{bottom:407.595000px;}
.y13d{bottom:408.675000px;}
.y1fd{bottom:409.575000px;}
.y2ad{bottom:409.935000px;}
.y3f{bottom:410.835000px;}
.y6f{bottom:411.555000px;}
.y268{bottom:414.255000px;}
.y1cc{bottom:414.615000px;}
.y243{bottom:415.695000px;}
.y15b{bottom:416.235000px;}
.y107{bottom:416.775000px;}
.y2dd{bottom:417.675000px;}
.ya4{bottom:420.735000px;}
.y28{bottom:424.335000px;}
.y21b{bottom:424.515000px;}
.yc7{bottom:426.495000px;}
.y1e9{bottom:427.395000px;}
.y3e{bottom:428.655000px;}
.y18a{bottom:429.015000px;}
.y1fc{bottom:429.555000px;}
.y30c{bottom:430.995000px;}
.y1cb{bottom:431.355000px;}
.y32d{bottom:432.615000px;}
.y2dc{bottom:433.695000px;}
.y242{bottom:435.495000px;}
.y106{bottom:436.575000px;}
.y13b{bottom:437.655000px;}
.ya3{bottom:440.535000px;}
.y27{bottom:443.955000px;}
.y21a{bottom:444.495000px;}
.yc6{bottom:446.475000px;}
.y3d{bottom:446.655000px;}
.y1e8{bottom:447.195000px;}
.y296{bottom:447.375000px;}
.y1ca{bottom:447.915000px;}
.y32c{bottom:448.275000px;}
.y272{bottom:448.815000px;}
.y1fb{bottom:449.355000px;}
.y2db{bottom:449.535000px;}
.y241{bottom:455.295000px;}
.y105{bottom:456.375000px;}
.y189{bottom:457.455000px;}
.y26{bottom:457.995000px;}
.ya2{bottom:460.335000px;}
.y139{bottom:460.875000px;}
.y32b{bottom:462.135000px;}
.y219{bottom:464.295000px;}
.y1c9{bottom:464.475000px;}
.y2da{bottom:465.375000px;}
.y309{bottom:465.555000px;}
.yc5{bottom:466.275000px;}
.y25{bottom:466.455000px;}
.y1e7{bottom:466.995000px;}
.y1fa{bottom:469.155000px;}
.y32a{bottom:475.995000px;}
.y104{bottom:476.175000px;}
.y240{bottom:476.355000px;}
.ya1{bottom:480.315000px;}
.y2d9{bottom:480.855000px;}
.y1c8{bottom:481.215000px;}
.y2a8{bottom:481.935000px;}
.y270{bottom:483.375000px;}
.y218{bottom:484.095000px;}
.y188{bottom:485.715000px;}
.yc4{bottom:486.075000px;}
.y31b{bottom:487.875000px;}
.y1e6{bottom:488.055000px;}
.y24{bottom:489.675000px;}
.y138{bottom:492.195000px;}
.y1f9{bottom:494.715000px;}
.y103{bottom:496.155000px;}
.y1c7{bottom:497.775000px;}
.ya0{bottom:500.115000px;}
.y30a{bottom:500.295000px;}
.y217{bottom:503.895000px;}
.yc3{bottom:505.875000px;}
.y2d8{bottom:508.575000px;}
.y23{bottom:513.075000px;}
.y187{bottom:514.155000px;}
.y1c6{bottom:514.335000px;}
.y102{bottom:515.955000px;}
.y23f{bottom:517.035000px;}
.y271{bottom:518.115000px;}
.y2a2{bottom:519.375000px;}
.y9f{bottom:519.915000px;}
.y2c9{bottom:520.635000px;}
.y216{bottom:523.695000px;}
.yc2{bottom:525.675000px;}
.y1e5{bottom:527.115000px;}
.y329{bottom:528.555000px;}
.y128{bottom:530.355000px;}
.y1bf{bottom:531.075000px;}
.y137{bottom:533.595000px;}
.y307{bottom:534.855000px;}
.y101{bottom:535.755000px;}
.y22{bottom:536.295000px;}
.y23e{bottom:536.835000px;}
.y9e{bottom:539.715000px;}
.y1e4{bottom:540.975000px;}
.y181{bottom:542.415000px;}
.y215{bottom:543.675000px;}
.yc1{bottom:546.915000px;}
.y1c3{bottom:547.635000px;}
.y127{bottom:550.335000px;}
.y26e{bottom:552.675000px;}
.y136{bottom:553.395000px;}
.y1e3{bottom:554.835000px;}
.y2d7{bottom:555.195000px;}
.y100{bottom:555.555000px;}
.y23d{bottom:556.635000px;}
.y5a{bottom:558.615000px;}
.y2a4{bottom:558.795000px;}
.y9d{bottom:559.515000px;}
.y214{bottom:563.475000px;}
.y1c2{bottom:564.195000px;}
.yc0{bottom:566.535000px;}
.y1e2{bottom:568.695000px;}
.y325{bottom:569.055000px;}
.y308{bottom:569.415000px;}
.y126{bottom:570.135000px;}
.y183{bottom:570.855000px;}
.y135{bottom:573.375000px;}
.yff{bottom:575.355000px;}
.y23c{bottom:576.435000px;}
.ybf{bottom:579.315000px;}
.y9c{bottom:579.495000px;}
.y1c1{bottom:580.935000px;}
.y213{bottom:583.275000px;}
.y1e1{bottom:583.635000px;}
.y26f{bottom:587.235000px;}
.y2d3{bottom:589.755000px;}
.y21{bottom:591.555000px;}
.y134{bottom:593.175000px;}
.yfe{bottom:595.335000px;}
.y23b{bottom:596.235000px;}
.y1ba{bottom:597.495000px;}
.ybe{bottom:599.115000px;}
.y9b{bottom:599.295000px;}
.y1e0{bottom:601.455000px;}
.y125{bottom:601.995000px;}
.y29e{bottom:602.895000px;}
.y212{bottom:603.075000px;}
.y303{bottom:604.155000px;}
.y20{bottom:607.035000px;}
.y327{bottom:609.555000px;}
.y133{bottom:612.975000px;}
.y1be{bottom:614.055000px;}
.yfd{bottom:615.135000px;}
.y23a{bottom:616.215000px;}
.ybd{bottom:618.915000px;}
.y9a{bottom:619.095000px;}
.y26a{bottom:621.975000px;}
.y1f{bottom:622.515000px;}
.y211{bottom:622.875000px;}
.y2d5{bottom:624.495000px;}
.y182{bottom:627.585000px;}
.y1bd{bottom:630.825000px;}
.y132{bottom:632.805000px;}
.y124{bottom:633.885000px;}
.yfc{bottom:634.965000px;}
.y1df{bottom:635.145000px;}
.y239{bottom:636.045000px;}
.y2a1{bottom:637.665000px;}
.y1e{bottom:638.025000px;}
.y304{bottom:638.745000px;}
.y99{bottom:638.925000px;}
.y210{bottom:642.885000px;}
.y1bc{bottom:647.385000px;}
.y322{bottom:650.265000px;}
.y131{bottom:652.605000px;}
.y1d{bottom:653.685000px;}
.yfb{bottom:654.765000px;}
.y17d{bottom:655.845000px;}
.y26d{bottom:656.565000px;}
.y238{bottom:657.105000px;}
.y98{bottom:658.725000px;}
.y2d1{bottom:662.145000px;}
.y20f{bottom:662.685000px;}
.y1b4{bottom:663.945000px;}
.y1c{bottom:664.305000px;}
.y123{bottom:665.565000px;}
.y130{bottom:672.585000px;}
.y2f8{bottom:673.305000px;}
.yfa{bottom:674.565000px;}
.y63{bottom:676.545000px;}
.y1b{bottom:677.985000px;}
.ybc{bottom:678.525000px;}
.y97{bottom:678.705000px;}
.y1b9{bottom:680.685000px;}
.y20e{bottom:682.485000px;}
.y180{bottom:684.285000px;}
.y298{bottom:684.645000px;}
.y1a{bottom:690.765000px;}
.y25a{bottom:691.125000px;}
.y12f{bottom:692.385000px;}
.y237{bottom:693.465000px;}
.yf9{bottom:694.545000px;}
.y2d2{bottom:696.705000px;}
.y1b8{bottom:697.245000px;}
.y122{bottom:697.425000px;}
.ybb{bottom:698.325000px;}
.y96{bottom:698.505000px;}
.y20d{bottom:702.285000px;}
.y19{bottom:703.005000px;}
.y300{bottom:708.045000px;}
.y12e{bottom:712.185000px;}
.y17f{bottom:712.545000px;}
.y1b6{bottom:713.805000px;}
.yf8{bottom:714.345000px;}
.y236{bottom:714.705000px;}
.y18{bottom:715.965000px;}
.yba{bottom:718.125000px;}
.y95{bottom:718.305000px;}
.y29a{bottom:719.205000px;}
.y20c{bottom:723.345000px;}
.y267{bottom:725.865000px;}
.y121{bottom:729.285000px;}
.y17{bottom:730.005000px;}
.y1b0{bottom:730.545000px;}
.y12d{bottom:731.985000px;}
.yf7{bottom:734.145000px;}
.y31d{bottom:734.865000px;}
.y235{bottom:735.585000px;}
.y94{bottom:738.105000px;}
.y2cb{bottom:740.805000px;}
.y17e{bottom:740.985000px;}
.y2fe{bottom:742.605000px;}
.y16{bottom:742.965000px;}
.y1b2{bottom:747.105000px;}
.y234{bottom:748.545000px;}
.y12c{bottom:751.785000px;}
.yf6{bottom:753.945000px;}
.y93{bottom:757.905000px;}
.y282{bottom:758.085000px;}
.y263{bottom:760.425000px;}
.y120{bottom:761.145000px;}
.y1ae{bottom:765.285000px;}
.y233{bottom:765.825000px;}
.y178{bottom:769.245000px;}
.y15{bottom:769.605000px;}
.y12b{bottom:771.765000px;}
.yf5{bottom:773.745000px;}
.y2cd{bottom:775.545000px;}
.y2ff{bottom:777.165000px;}
.yb9{bottom:777.705000px;}
.y92{bottom:777.885000px;}
.y14{bottom:780.765000px;}
.y232{bottom:786.885000px;}
.y12a{bottom:792.645000px;}
.y11f{bottom:793.005000px;}
.yf4{bottom:793.725000px;}
.y265{bottom:794.985000px;}
.yb8{bottom:797.505000px;}
.y91{bottom:797.685000px;}
.y13{bottom:800.025000px;}
.y231{bottom:807.765000px;}
.y1ad{bottom:810.285000px;}
.y2fc{bottom:811.905000px;}
.yf3{bottom:813.525000px;}
.yb7{bottom:817.305000px;}
.y90{bottom:817.485000px;}
.y12{bottom:818.385000px;}
.y2c2{bottom:818.745000px;}
.y230{bottom:820.725000px;}
.y11e{bottom:824.865000px;}
.y17c{bottom:825.945000px;}
.y1ab{bottom:827.385000px;}
.y261{bottom:829.725000px;}
.y11{bottom:832.065000px;}
.yf2{bottom:833.325000px;}
.y291{bottom:835.305000px;}
.y8f{bottom:837.285000px;}
.y22f{bottom:838.005000px;}
.yb6{bottom:838.545000px;}
.y10{bottom:845.925000px;}
.y2fd{bottom:846.465000px;}
.y1aa{bottom:847.185000px;}
.yf1{bottom:853.125000px;}
.y2c7{bottom:853.305000px;}
.y17a{bottom:854.385000px;}
.y22e{bottom:855.105000px;}
.y11d{bottom:856.770000px;}
.y8e{bottom:857.130000px;}
.yf{bottom:859.830000px;}
.yb5{bottom:862.350000px;}
.y262{bottom:864.330000px;}
.y1a9{bottom:867.030000px;}
.ye{bottom:872.790000px;}
.yf0{bottom:872.970000px;}
.y22d{bottom:876.390000px;}
.y11c{bottom:876.570000px;}
.y8d{bottom:877.110000px;}
.y2f9{bottom:881.070000px;}
.y293{bottom:882.330000px;}
.y174{bottom:882.690000px;}
.y1a8{bottom:887.010000px;}
.yef{bottom:892.950000px;}
.yd{bottom:894.750000px;}
.y8c{bottom:896.910000px;}
.y25c{bottom:898.890000px;}
.y22c{bottom:900.150000px;}
.y1a7{bottom:906.810000px;}
.y11b{bottom:908.430000px;}
.y176{bottom:911.130000px;}
.yee{bottom:912.750000px;}
.y2fa{bottom:915.810000px;}
.y8b{bottom:916.710000px;}
.y15a{bottom:918.690000px;}
.yc{bottom:919.230000px;}
.y28c{bottom:919.590000px;}
.y22b{bottom:921.030000px;}
.y1a6{bottom:926.610000px;}
.yed{bottom:932.550000px;}
.y25d{bottom:933.630000px;}
.y8a{bottom:936.510000px;}
.y159{bottom:938.490000px;}
.y11a{bottom:940.290000px;}
.y172{bottom:940.830000px;}
.y1a5{bottom:946.410000px;}
.y2f3{bottom:950.370000px;}
.yec{bottom:952.350000px;}
.y89{bottom:956.310000px;}
.y158{bottom:958.290000px;}
.y28e{bottom:962.970000px;}
.yb{bottom:963.510000px;}
.y1a4{bottom:966.210000px;}
.y251{bottom:968.190000px;}
.y119{bottom:971.970000px;}
.yeb{bottom:972.150000px;}
.y2c4{bottom:972.330000px;}
.y88{bottom:976.290000px;}
.y157{bottom:978.270000px;}
.y2f6{bottom:984.930000px;}
.y1a3{bottom:986.190000px;}
.ya{bottom:991.050000px;}
.yea{bottom:992.130000px;}
.y171{bottom:993.210000px;}
.y87{bottom:996.090000px;}
.y156{bottom:999.330000px;}
.y257{bottom:1002.750000px;}
.y1ac{bottom:1003.110000px;}
.y118{bottom:1003.830000px;}
.y284{bottom:1004.010000px;}
.y1a2{bottom:1005.990000px;}
.y2c5{bottom:1007.070000px;}
.ye9{bottom:1011.930000px;}
.y129{bottom:1013.190000px;}
.y86{bottom:1015.890000px;}
.y9{bottom:1018.590000px;}
.y170{bottom:1020.210000px;}
.y1a1{bottom:1025.790000px;}
.y155{bottom:1029.030000px;}
.ye8{bottom:1031.730000px;}
.y2f5{bottom:1035.510000px;}
.y85{bottom:1035.690000px;}
.y154{bottom:1042.710000px;}
.ye7{bottom:1051.530000px;}
.y256{bottom:1053.330000px;}
.y84{bottom:1055.490000px;}
.y8{bottom:1065.750000px;}
.ye6{bottom:1072.590000px;}
.y83{bottom:1075.290000px;}
.y1de{bottom:1075.470000px;}
.y2f2{bottom:1076.730000px;}
.y61{bottom:1096.200000px;}
.y81{bottom:1122.660000px;}
.y39{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h8c{height:6.257812px;}
.h2{height:13.500000px;}
.h39{height:15.840000px;}
.h40{height:15.876000px;}
.h3b{height:16.020000px;}
.h3d{height:16.056000px;}
.h16{height:16.740000px;}
.h14{height:18.140625px;}
.h27{height:20.880000px;}
.h29{height:20.916000px;}
.h2a{height:21.060000px;}
.h41{height:21.420000px;}
.h1c{height:22.140000px;}
.h37{height:22.680000px;}
.h13{height:23.319141px;}
.h26{height:23.760000px;}
.h2f{height:27.540000px;}
.h31{height:27.576000px;}
.h33{height:27.720000px;}
.h35{height:27.756000px;}
.h28{height:28.260000px;}
.h23{height:29.664141px;}
.ha{height:29.678906px;}
.hd{height:30.963516px;}
.h38{height:32.400000px;}
.h48{height:33.840000px;}
.h46{height:33.876000px;}
.h4c{height:34.020000px;}
.h52{height:34.056000px;}
.h2b{height:35.314453px;}
.h6f{height:35.820000px;}
.h15{height:36.281250px;}
.h5c{height:36.540000px;}
.h69{height:36.720000px;}
.h7f{height:36.936000px;}
.h77{height:37.980000px;}
.h62{height:38.160000px;}
.h67{height:38.700000px;}
.h71{height:38.880000px;}
.h11{height:39.503370px;}
.h6d{height:39.600000px;}
.h86{height:39.780000px;}
.h8b{height:39.960000px;}
.h89{height:39.996000px;}
.h59{height:40.320000px;}
.h5{height:40.985156px;}
.h20{height:41.535703px;}
.h5f{height:41.760000px;}
.h1b{height:42.086250px;}
.h7c{height:42.480000px;}
.h5a{height:42.660000px;}
.h66{height:43.380000px;}
.h72{height:43.416000px;}
.h73{height:44.100000px;}
.hf{height:44.518359px;}
.h79{height:44.856000px;}
.h76{height:45.540000px;}
.h54{height:45.756000px;}
.h64{height:46.260000px;}
.h5d{height:46.296000px;}
.h10{height:46.622932px;}
.h2c{height:46.868906px;}
.h2d{height:47.160000px;}
.hb{height:47.344922px;}
.h4{height:47.700000px;}
.h57{height:48.600000px;}
.h4b{height:48.616867px;}
.h17{height:48.616875px;}
.h81{height:49.680000px;}
.h47{height:49.860000px;}
.h1d{height:52.020000px;}
.h12{height:52.998047px;}
.h25{height:53.573906px;}
.h18{height:54.421875px;}
.he{height:55.291992px;}
.h2e{height:55.980000px;}
.h36{height:58.621992px;}
.h3{height:58.651172px;}
.h24{height:60.226875px;}
.h44{height:62.211094px;}
.h9{height:65.010937px;}
.h3e{height:65.700000px;}
.h3c{height:65.736000px;}
.h3a{height:65.880000px;}
.h1e{height:65.884219px;}
.h4f{height:68.400000px;}
.h4d{height:68.436000px;}
.h4a{height:68.580000px;}
.h51{height:68.616000px;}
.h6e{height:70.380000px;}
.h22{height:70.628906px;}
.h43{height:70.664062px;}
.h68{height:71.280000px;}
.h6b{height:71.316000px;}
.h7e{height:71.676000px;}
.hc{height:72.562500px;}
.h61{height:72.720000px;}
.h7{height:74.004654px;}
.h6c{height:74.160000px;}
.h21{height:75.093750px;}
.h5e{height:76.320000px;}
.h7b{height:77.220000px;}
.h7d{height:77.940000px;}
.h78{height:79.416000px;}
.h75{height:80.280000px;}
.h53{height:80.316000px;}
.h8a{height:80.460000px;}
.h88{height:80.496000px;}
.h63{height:81.036000px;}
.h65{height:82.800000px;}
.h70{height:83.016000px;}
.h85{height:83.160000px;}
.h56{height:83.196000px;}
.h5b{height:83.556000px;}
.h58{height:83.700000px;}
.h87{height:83.880000px;}
.h8{height:96.508125px;}
.h1a{height:101.916000px;}
.h32{height:112.680000px;}
.h30{height:112.716000px;}
.h42{height:118.008984px;}
.h80{height:118.980000px;}
.h45{height:119.016000px;}
.h3f{height:132.336000px;}
.h1f{height:133.020000px;}
.h34{height:226.110000px;}
.h74{height:268.455000px;}
.h4e{height:276.150000px;}
.h82{height:276.195000px;}
.h49{height:276.330000px;}
.h83{height:287.850000px;}
.h50{height:288.075000px;}
.h7a{height:297.390000px;}
.h6a{height:301.215000px;}
.h60{height:309.990000px;}
.h55{height:329.115000px;}
.h84{height:330.150000px;}
.h19{height:459.255000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w32{width:20.160000px;}
.w2d{width:24.300000px;}
.w28{width:28.260000px;}
.w11{width:32.040000px;}
.w2b{width:33.336000px;}
.w12{width:48.060000px;}
.w1d{width:58.860000px;}
.w10{width:61.596000px;}
.w22{width:63.180000px;}
.w2e{width:63.396000px;}
.w31{width:67.140000px;}
.w17{width:70.776000px;}
.w1a{width:70.956000px;}
.w2c{width:75.600000px;}
.w33{width:75.996000px;}
.w29{width:76.896000px;}
.w2a{width:77.040000px;}
.w1b{width:78.480000px;}
.w18{width:78.660000px;}
.w13{width:78.876000px;}
.w3{width:82.080000px;}
.w27{width:87.696000px;}
.w1f{width:95.940000px;}
.w30{width:96.156000px;}
.w20{width:96.840000px;}
.w2f{width:100.476000px;}
.w24{width:105.156000px;}
.w25{width:105.300000px;}
.w1e{width:108.576000px;}
.w26{width:108.936000px;}
.w21{width:122.796000px;}
.w16{width:130.500000px;}
.w14{width:137.520000px;}
.we{width:141.696000px;}
.wa{width:154.440000px;}
.wb{width:180.390000px;}
.w8{width:180.930000px;}
.wf{width:216.390000px;}
.wc{width:245.910000px;}
.w19{width:247.395000px;}
.w1c{width:267.555000px;}
.w15{width:281.235000px;}
.wd{width:358.095000px;}
.w23{width:407.085000px;}
.w7{width:532.905000px;}
.w4{width:639.870000px;}
.w2{width:721.950000px;}
.w9{width:743.040000px;}
.w6{width:776.160000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6b{left:4.252500px;}
.x2{left:8.100000px;}
.x2d{left:9.720000px;}
.x13{left:10.836000px;}
.x33{left:13.140000px;}
.x35{left:14.220000px;}
.x2b{left:15.660000px;}
.x32{left:17.280000px;}
.x2a{left:18.900000px;}
.x6a{left:20.160000px;}
.x18{left:21.255000px;}
.x52{left:22.500000px;}
.x2f{left:24.300000px;}
.x27{left:26.310000px;}
.x40{left:28.620000px;}
.x49{left:29.700000px;}
.x44{left:31.680000px;}
.x3c{left:32.760000px;}
.x5c{left:34.065000px;}
.x5f{left:35.130000px;}
.x31{left:36.540000px;}
.x48{left:37.800000px;}
.x45{left:42.480000px;}
.x46{left:43.560000px;}
.x43{left:45.720000px;}
.x41{left:47.520000px;}
.x47{left:49.500000px;}
.x42{left:51.120000px;}
.x3f{left:52.920000px;}
.x29{left:54.000000px;}
.x34{left:55.260000px;}
.x55{left:60.654000px;}
.x56{left:65.565000px;}
.x63{left:70.194000px;}
.x3{left:73.974000px;}
.x12{left:81.540000px;}
.x64{left:86.574000px;}
.x17{left:93.096000px;}
.x15{left:94.536000px;}
.x67{left:98.145000px;}
.x65{left:102.774000px;}
.x9{left:105.335987px;}
.x1{left:108.036000px;}
.x3a{left:118.125000px;}
.x66{left:119.154000px;}
.x38{left:121.535987px;}
.x25{left:122.985000px;}
.x22{left:131.255987px;}
.x6{left:133.415987px;}
.x1b{left:135.035987px;}
.x1d{left:139.535987px;}
.x7{left:144.755987px;}
.x23{left:162.029987px;}
.x59{left:165.630000px;}
.x24{left:166.710000px;}
.x36{left:168.869987px;}
.xe{left:172.829987px;}
.xc{left:174.089987px;}
.x39{left:182.369987px;}
.xd{left:187.229987px;}
.x4{left:190.110000px;}
.x4e{left:202.529987px;}
.x4a{left:205.050000px;}
.x1a{left:207.389987px;}
.x21{left:209.369987px;}
.xf{left:248.969987px;}
.x53{left:270.074987px;}
.x14{left:302.295000px;}
.x16{left:310.395000px;}
.x57{left:327.675000px;}
.x8{left:330.554987px;}
.xa{left:372.314987px;}
.x58{left:390.855000px;}
.x26{left:412.635000px;}
.x20{left:415.514987px;}
.x5e{left:419.115000px;}
.x5{left:446.504987px;}
.x4b{left:452.445000px;}
.xb{left:455.684987px;}
.x3b{left:469.365000px;}
.x4f{left:470.805000px;}
.x2c{left:474.225000px;}
.x10{left:489.164987px;}
.x11{left:490.784987px;}
.x5a{left:496.005000px;}
.x2e{left:506.265000px;}
.x60{left:524.265000px;}
.x50{left:529.665000px;}
.x28{left:554.325000px;}
.x4c{left:582.945000px;}
.x1e{left:597.884987px;}
.x3d{left:599.865000px;}
.x5b{left:601.305000px;}
.x19{left:620.253000px;}
.x30{left:633.210000px;}
.x61{left:634.650000px;}
.x51{left:638.250000px;}
.x1f{left:640.769987px;}
.x4d{left:653.910000px;}
.x3e{left:670.650000px;}
.x68{left:701.790000px;}
.x5d{left:710.250000px;}
.x69{left:721.950000px;}
.x62{left:734.550000px;}
.x1c{left:799.199987px;}
.x37{left:825.839987px;}
.x54{left:830.339987px;}
@media print{
.v4{vertical-align:-60.800000pt;}
.v5{vertical-align:-56.320000pt;}
.v3{vertical-align:-21.120000pt;}
.v2{vertical-align:-16.160000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-26.346667pt;}
.ls1f{letter-spacing:-16.480000pt;}
.ls2e{letter-spacing:-15.840000pt;}
.ls21{letter-spacing:-15.200000pt;}
.ls1e{letter-spacing:-13.920000pt;}
.ls24{letter-spacing:-12.640000pt;}
.ls25{letter-spacing:-12.000000pt;}
.ls2f{letter-spacing:-11.360000pt;}
.ls28{letter-spacing:-10.720000pt;}
.ls32{letter-spacing:-10.080000pt;}
.lsb{letter-spacing:-8.640000pt;}
.ls30{letter-spacing:-8.160000pt;}
.ls1b{letter-spacing:-7.520000pt;}
.ls20{letter-spacing:-6.880000pt;}
.ls2d{letter-spacing:-4.320000pt;}
.ls26{letter-spacing:-3.040000pt;}
.ls1a{letter-spacing:-1.760000pt;}
.ls22{letter-spacing:-1.120000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.239467pt;}
.ls8{letter-spacing:-0.198933pt;}
.ls11{letter-spacing:-0.183467pt;}
.ls14{letter-spacing:-0.161067pt;}
.lsa{letter-spacing:-0.158933pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.096000pt;}
.ls33{letter-spacing:0.120960pt;}
.ls3{letter-spacing:0.128640pt;}
.ls19{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.280533pt;}
.ls4{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.340480pt;}
.ls2b{letter-spacing:1.440000pt;}
.ls23{letter-spacing:2.720000pt;}
.ls29{letter-spacing:4.640000pt;}
.ls2a{letter-spacing:5.920000pt;}
.ls1d{letter-spacing:6.560000pt;}
.ls27{letter-spacing:9.760000pt;}
.ls2c{letter-spacing:10.400000pt;}
.ls17{letter-spacing:14.720000pt;}
.ls1c{letter-spacing:17.440000pt;}
.ls31{letter-spacing:20.640000pt;}
.ls2{letter-spacing:43.040000pt;}
.ls0{letter-spacing:63.360000pt;}
.ls1{letter-spacing:63.520000pt;}
.ls15{letter-spacing:301.578667pt;}
.ls16{letter-spacing:322.698667pt;}
.wsc{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.720000pt;}
.ws11{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.096533pt;}
.ws12{word-spacing:-12.640000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.040000pt;}
.wse{word-spacing:-10.720000pt;}
.wsd{word-spacing:-10.480533pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.121067pt;}
.ws3{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.ws6{word-spacing:0.000000pt;}
.ws0{word-spacing:54.720000pt;}
._5{margin-left:-53.600000pt;}
._52{margin-left:-20.640000pt;}
._3c{margin-left:-17.440000pt;}
._47{margin-left:-9.760000pt;}
._3e{margin-left:-6.560000pt;}
._4a{margin-left:-4.640000pt;}
._15{margin-left:-3.120000pt;}
._d{margin-left:-2.167893pt;}
._2{margin-left:-1.236480pt;}
._0{width:0.890880pt;}
._16{width:2.197973pt;}
._1{width:3.130027pt;}
._10{width:4.102400pt;}
._24{width:5.112320pt;}
._14{width:6.144000pt;}
._13{width:7.248000pt;}
._b{width:8.511360pt;}
._c{width:9.720960pt;}
._a{width:10.853120pt;}
._9{width:11.804800pt;}
._37{width:12.864000pt;}
._26{width:14.336000pt;}
._17{width:15.408000pt;}
._1b{width:16.373120pt;}
._11{width:17.795200pt;}
._1f{width:19.046400pt;}
._1e{width:20.091520pt;}
._22{width:21.194880pt;}
._8{width:22.588160pt;}
._7{width:23.585280pt;}
._1d{width:24.488320pt;}
._12{width:26.069653pt;}
._28{width:27.569280pt;}
._32{width:28.733440pt;}
._29{width:29.747200pt;}
._34{width:30.981120pt;}
._2d{width:32.403200pt;}
._5c{width:33.502080pt;}
._30{width:34.474880pt;}
._2e{width:35.602560pt;}
._27{width:36.718080pt;}
._1a{width:38.007680pt;}
._19{width:38.990080pt;}
._25{width:40.477440pt;}
._f{width:41.752320pt;}
._e{width:42.867840pt;}
._2a{width:44.261120pt;}
._48{width:46.120320pt;}
._2c{width:49.560960pt;}
._21{width:50.901120pt;}
._20{width:51.951360pt;}
._35{width:53.516160pt;}
._33{width:56.478720pt;}
._3{width:58.218667pt;}
._38{width:59.134720pt;}
._5d{width:60.834560pt;}
._3b{width:61.937920pt;}
._40{width:63.000320pt;}
._3f{width:64.328320pt;}
._41{width:65.374080pt;}
._2f{width:69.374720pt;}
._4f{width:70.384000pt;}
._23{width:71.977600pt;}
._44{width:73.889920pt;}
._60{width:77.067520pt;}
._4d{width:79.998720pt;}
._1c{width:82.760960pt;}
._4c{width:84.301440pt;}
._54{width:85.216640pt;}
._46{width:90.782080pt;}
._45{width:92.056960pt;}
._5b{width:107.367680pt;}
._2b{width:144.122240pt;}
._55{width:157.247360pt;}
._4{width:177.440000pt;}
._4e{width:178.855040pt;}
._62{width:192.028800pt;}
._3a{width:193.900160pt;}
._51{width:195.906560pt;}
._50{width:196.809600pt;}
._36{width:202.824320pt;}
._59{width:225.653760pt;}
._3d{width:237.352320pt;}
._18{width:254.106667pt;}
._58{width:271.708800pt;}
._5e{width:306.555520pt;}
._53{width:312.039040pt;}
._31{width:346.142080pt;}
._56{width:365.052800pt;}
._57{width:365.943680pt;}
._49{width:366.858880pt;}
._42{width:505.980160pt;}
._5f{width:559.247360pt;}
._39{width:585.607040pt;}
._4b{width:588.941440pt;}
._5a{width:627.612800pt;}
._43{width:662.418560pt;}
._61{width:668.261760pt;}
._6{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fs10{font-size:5.333333pt;}
.fsc{font-size:16.000000pt;}
.fsb{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fsa{font-size:33.730624pt;}
.fs0{font-size:37.120000pt;}
.fs9{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fsf{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fse{font-size:106.880000pt;}
.y6e{bottom:-223.706667pt;}
.y6d{bottom:-193.786667pt;}
.y6c{bottom:-163.706667pt;}
.y7e{bottom:-161.320000pt;}
.y6b{bottom:-133.786667pt;}
.y7d{bottom:-131.240000pt;}
.y6a{bottom:-103.706667pt;}
.y7c{bottom:-101.320000pt;}
.y69{bottom:-73.786667pt;}
.y7b{bottom:-71.240000pt;}
.y68{bottom:-43.840000pt;}
.y7a{bottom:-41.320000pt;}
.y3b{bottom:-21.280000pt;}
.y80{bottom:-15.931333pt;}
.y67{bottom:-13.760000pt;}
.y79{bottom:-11.360000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:0.800000pt;}
.y32e{bottom:1.633333pt;}
.y66{bottom:2.240000pt;}
.y2{bottom:3.360000pt;}
.y1b3{bottom:4.000000pt;}
.y1cd{bottom:4.040000pt;}
.y1b7{bottom:4.160000pt;}
.y62{bottom:4.800000pt;}
.y3a{bottom:4.960000pt;}
.y294{bottom:5.280000pt;}
.y2d6{bottom:5.306667pt;}
.y321{bottom:5.600000pt;}
.y328{bottom:5.760000pt;}
.y29b{bottom:5.920000pt;}
.y2a6{bottom:6.080000pt;}
.y13c{bottom:6.240000pt;}
.y141{bottom:6.400000pt;}
.y2ba{bottom:6.560000pt;}
.y31e{bottom:6.720000pt;}
.y28f{bottom:6.880000pt;}
.y1af{bottom:7.040000pt;}
.y324{bottom:7.200000pt;}
.y13a{bottom:7.520000pt;}
.y26b{bottom:7.546667pt;}
.y2bf{bottom:7.680000pt;}
.y2ce{bottom:7.840000pt;}
.y290{bottom:8.000000pt;}
.y31a{bottom:8.160000pt;}
.y2a5{bottom:8.320000pt;}
.y2c0{bottom:8.640000pt;}
.y2ac{bottom:8.800000pt;}
.y2c8{bottom:9.000000pt;}
.y2c6{bottom:9.120000pt;}
.y319{bottom:9.280000pt;}
.y281{bottom:9.306667pt;}
.y295{bottom:9.440000pt;}
.y13e{bottom:9.600000pt;}
.y264{bottom:10.240000pt;}
.y252{bottom:10.560000pt;}
.y26c{bottom:10.586667pt;}
.y7{bottom:10.880000pt;}
.y266{bottom:11.040000pt;}
.y30b{bottom:11.080000pt;}
.y258{bottom:11.200000pt;}
.y1b1{bottom:11.360000pt;}
.y2d4{bottom:11.520000pt;}
.y4{bottom:11.840000pt;}
.y3{bottom:12.160000pt;}
.y2a7{bottom:12.320000pt;}
.y299{bottom:12.480000pt;}
.y58{bottom:12.800000pt;}
.y2b8{bottom:13.120000pt;}
.y65{bottom:13.760000pt;}
.y285{bottom:14.080000pt;}
.y2cc{bottom:14.400000pt;}
.y177{bottom:14.560000pt;}
.y17b{bottom:14.600000pt;}
.y184{bottom:14.720000pt;}
.y29f{bottom:15.040000pt;}
.y326{bottom:15.520000pt;}
.y2c1{bottom:15.680000pt;}
.y2a0{bottom:16.000000pt;}
.y78{bottom:16.160000pt;}
.y27f{bottom:16.320000pt;}
.y323{bottom:16.480000pt;}
.y2a3{bottom:16.640000pt;}
.y292{bottom:16.960000pt;}
.y286{bottom:17.120000pt;}
.y28d{bottom:17.280000pt;}
.y2bc{bottom:17.440000pt;}
.y2f7{bottom:18.080000pt;}
.y259{bottom:18.240000pt;}
.y57{bottom:20.480000pt;}
.y6{bottom:22.240000pt;}
.y173{bottom:23.360000pt;}
.y253{bottom:24.960000pt;}
.y60{bottom:25.120000pt;}
.y1c0{bottom:25.280000pt;}
.y64{bottom:25.440000pt;}
.y1b5{bottom:26.240000pt;}
.y1bb{bottom:26.266667pt;}
.y175{bottom:27.200000pt;}
.y77{bottom:27.840000pt;}
.y254{bottom:30.400000pt;}
.y5{bottom:33.760000pt;}
.y5f{bottom:35.840000pt;}
.y56{bottom:36.320000pt;}
.y76{bottom:39.360000pt;}
.yda{bottom:40.800000pt;}
.y2f4{bottom:41.760000pt;}
.y255{bottom:41.920000pt;}
.y5e{bottom:46.560000pt;}
.y55{bottom:48.320000pt;}
.y75{bottom:51.040000pt;}
.y179{bottom:52.480000pt;}
.y82{bottom:53.280000pt;}
.y1{bottom:54.560000pt;}
.y1c5{bottom:54.920000pt;}
.yd9{bottom:55.360000pt;}
.y54{bottom:56.000000pt;}
.y7f{bottom:56.693333pt;}
.y5d{bottom:57.280000pt;}
.y74{bottom:62.560000pt;}
.y5c{bottom:68.026667pt;}
.yd8{bottom:71.520000pt;}
.y53{bottom:71.840000pt;}
.y73{bottom:74.080000pt;}
.y2b6{bottom:79.866667pt;}
.y2aa{bottom:82.106667pt;}
.y269{bottom:83.040000pt;}
.y302{bottom:83.080000pt;}
.y5b{bottom:83.386667pt;}
.y72{bottom:85.760000pt;}
.y2ca{bottom:86.080000pt;}
.y52{bottom:87.720000pt;}
.y117{bottom:88.320000pt;}
.y2f1{bottom:89.120000pt;}
.y2be{bottom:89.440000pt;}
.yb4{bottom:91.840000pt;}
.ye1{bottom:92.480000pt;}
.y22a{bottom:93.280000pt;}
.y14e{bottom:94.880000pt;}
.y30d{bottom:95.680000pt;}
.y2fb{bottom:96.800000pt;}
.yd7{bottom:96.960000pt;}
.y71{bottom:97.280000pt;}
.y1f8{bottom:97.760000pt;}
.y168{bottom:97.920000pt;}
.y153{bottom:98.400000pt;}
.ye5{bottom:99.840000pt;}
.y1dd{bottom:100.000000pt;}
.y197{bottom:100.320000pt;}
.y31c{bottom:100.480000pt;}
.y250{bottom:101.120000pt;}
.y313{bottom:101.946667pt;}
.y186{bottom:102.920000pt;}
.y2f0{bottom:103.200000pt;}
.y51{bottom:103.720000pt;}
.y27b{bottom:103.866667pt;}
.y297{bottom:104.320000pt;}
.y25e{bottom:104.800000pt;}
.y25b{bottom:104.960000pt;}
.y260{bottom:105.600000pt;}
.y306{bottom:105.640000pt;}
.y116{bottom:105.920000pt;}
.y38{bottom:106.080000pt;}
.y1a0{bottom:107.360000pt;}
.ye0{bottom:107.680000pt;}
.y274{bottom:107.866667pt;}
.y70{bottom:108.160000pt;}
.y2b5{bottom:108.186667pt;}
.yb3{bottom:109.440000pt;}
.y1dc{bottom:110.720000pt;}
.y311{bottom:110.746667pt;}
.y278{bottom:110.906667pt;}
.y229{bottom:111.040000pt;}
.ye4{bottom:111.200000pt;}
.y273{bottom:111.520000pt;}
.y37{bottom:112.480000pt;}
.yd6{bottom:114.560000pt;}
.y2d0{bottom:115.066667pt;}
.y1f7{bottom:115.360000pt;}
.y167{bottom:115.520000pt;}
.y152{bottom:116.000000pt;}
.y283{bottom:116.360000pt;}
.y2af{bottom:116.666667pt;}
.y20b{bottom:117.280000pt;}
.y2ef{bottom:117.440000pt;}
.y196{bottom:117.920000pt;}
.y27a{bottom:117.946667pt;}
.y24f{bottom:118.720000pt;}
.y50{bottom:119.560000pt;}
.y2b4{bottom:120.506667pt;}
.y29d{bottom:120.640000pt;}
.y1db{bottom:121.440000pt;}
.y28b{bottom:122.120000pt;}
.y115{bottom:123.520000pt;}
.y19f{bottom:124.960000pt;}
.ydf{bottom:125.440000pt;}
.y318{bottom:126.400000pt;}
.yb2{bottom:127.040000pt;}
.y228{bottom:128.640000pt;}
.ye3{bottom:128.960000pt;}
.y288{bottom:129.160000pt;}
.y2a9{bottom:129.280000pt;}
.y320{bottom:129.626667pt;}
.y14d{bottom:130.080000pt;}
.y36{bottom:130.240000pt;}
.y2ee{bottom:131.520000pt;}
.y312{bottom:132.026667pt;}
.y1da{bottom:132.160000pt;}
.yd5{bottom:132.320000pt;}
.y2b3{bottom:132.826667pt;}
.y1f6{bottom:132.960000pt;}
.y166{bottom:133.120000pt;}
.y151{bottom:133.600000pt;}
.y25f{bottom:133.920000pt;}
.y305{bottom:133.960000pt;}
.y20a{bottom:134.880000pt;}
.y4f{bottom:135.400000pt;}
.y195{bottom:135.520000pt;}
.y28a{bottom:136.200000pt;}
.y24e{bottom:136.480000pt;}
.y310{bottom:139.066667pt;}
.y277{bottom:139.226667pt;}
.y114{bottom:141.120000pt;}
.y280{bottom:142.240000pt;}
.y19e{bottom:142.560000pt;}
.y2cf{bottom:143.386667pt;}
.yde{bottom:144.160000pt;}
.yb1{bottom:144.640000pt;}
.y2ae{bottom:144.986667pt;}
.y2ed{bottom:145.600000pt;}
.y227{bottom:146.240000pt;}
.y279{bottom:146.266667pt;}
.ye2{bottom:146.560000pt;}
.y1d9{bottom:146.880000pt;}
.y14c{bottom:147.680000pt;}
.y35{bottom:147.840000pt;}
.y29c{bottom:148.960000pt;}
.yd4{bottom:149.920000pt;}
.y1f5{bottom:150.560000pt;}
.y165{bottom:150.720000pt;}
.y4e{bottom:151.240000pt;}
.y150{bottom:151.386667pt;}
.y209{bottom:152.506667pt;}
.y194{bottom:153.306667pt;}
.y24d{bottom:154.106667pt;}
.y2b2{bottom:157.306667pt;}
.y287{bottom:157.480000pt;}
.y31f{bottom:157.946667pt;}
.y113{bottom:158.906667pt;}
.y2ec{bottom:159.706667pt;}
.y19d{bottom:160.346667pt;}
.y1d8{bottom:161.626667pt;}
.yb0{bottom:162.426667pt;}
.y226{bottom:163.866667pt;}
.y289{bottom:164.520000pt;}
.y34{bottom:165.466667pt;}
.y14b{bottom:166.586667pt;}
.y4d{bottom:167.080000pt;}
.yd3{bottom:167.546667pt;}
.y316{bottom:167.706667pt;}
.y1f4{bottom:168.186667pt;}
.y164{bottom:168.346667pt;}
.y2bd{bottom:168.506667pt;}
.y14f{bottom:168.986667pt;}
.y2b1{bottom:169.626667pt;}
.y208{bottom:170.106667pt;}
.y193{bottom:170.906667pt;}
.y24c{bottom:171.706667pt;}
.y2eb{bottom:173.786667pt;}
.y112{bottom:176.506667pt;}
.y19c{bottom:177.946667pt;}
.yaf{bottom:180.026667pt;}
.y225{bottom:181.466667pt;}
.y2b0{bottom:181.786667pt;}
.y4c{bottom:182.920000pt;}
.y33{bottom:183.066667pt;}
.y27d{bottom:183.546667pt;}
.y14a{bottom:184.506667pt;}
.yd2{bottom:185.146667pt;}
.y1f3{bottom:185.946667pt;}
.ydd{bottom:186.106667pt;}
.y16f{bottom:187.226667pt;}
.y207{bottom:187.706667pt;}
.y2ea{bottom:187.866667pt;}
.y192{bottom:188.506667pt;}
.y24b{bottom:189.306667pt;}
.y1d7{bottom:191.226667pt;}
.y111{bottom:194.106667pt;}
.y4b{bottom:194.920000pt;}
.y19b{bottom:195.546667pt;}
.yae{bottom:197.626667pt;}
.y317{bottom:198.426667pt;}
.y224{bottom:199.226667pt;}
.y32{bottom:200.666667pt;}
.y2e9{bottom:202.106667pt;}
.ydc{bottom:202.426667pt;}
.yd1{bottom:202.746667pt;}
.y4a{bottom:202.760000pt;}
.y1f2{bottom:203.546667pt;}
.y163{bottom:203.706667pt;}
.y149{bottom:204.826667pt;}
.y206{bottom:205.466667pt;}
.y1d6{bottom:205.946667pt;}
.y191{bottom:206.106667pt;}
.y24a{bottom:206.906667pt;}
.y16e{bottom:208.346667pt;}
.y110{bottom:211.706667pt;}
.y2c3{bottom:212.520000pt;}
.y19a{bottom:213.146667pt;}
.y27e{bottom:214.266667pt;}
.yad{bottom:215.226667pt;}
.y148{bottom:215.546667pt;}
.y2e8{bottom:216.186667pt;}
.ydb{bottom:217.626667pt;}
.y223{bottom:217.946667pt;}
.y31{bottom:218.426667pt;}
.y49{bottom:218.600000pt;}
.yd0{bottom:220.506667pt;}
.y1d5{bottom:220.826667pt;}
.y1f1{bottom:221.146667pt;}
.y162{bottom:221.306667pt;}
.y205{bottom:223.066667pt;}
.y249{bottom:224.666667pt;}
.y190{bottom:224.826667pt;}
.y147{bottom:226.266667pt;}
.y16d{bottom:228.346667pt;}
.y314{bottom:229.146667pt;}
.y10f{bottom:229.306667pt;}
.y2e7{bottom:230.266667pt;}
.y199{bottom:230.746667pt;}
.yac{bottom:232.826667pt;}
.y2bb{bottom:234.426667pt;}
.y48{bottom:234.440000pt;}
.y1d4{bottom:235.546667pt;}
.y146{bottom:236.986667pt;}
.y30{bottom:237.146667pt;}
.ycf{bottom:238.106667pt;}
.y1f0{bottom:238.746667pt;}
.y161{bottom:238.906667pt;}
.y204{bottom:240.666667pt;}
.y248{bottom:243.386667pt;}
.y2e6{bottom:244.346667pt;}
.y27c{bottom:245.146667pt;}
.y16c{bottom:245.946667pt;}
.y18f{bottom:246.106667pt;}
.y10e{bottom:247.066667pt;}
.y145{bottom:247.706667pt;}
.y198{bottom:248.506667pt;}
.y1d3{bottom:250.266667pt;}
.y47{bottom:250.280000pt;}
.yab{bottom:250.586667pt;}
.y222{bottom:253.946667pt;}
.y2f{bottom:255.066667pt;}
.yce{bottom:255.706667pt;}
.y1ef{bottom:256.346667pt;}
.y160{bottom:256.506667pt;}
.y203{bottom:258.266667pt;}
.y2e5{bottom:258.426667pt;}
.y315{bottom:260.026667pt;}
.y16b{bottom:263.546667pt;}
.y2e{bottom:264.026667pt;}
.y10d{bottom:264.666667pt;}
.y46{bottom:266.120000pt;}
.y1d2{bottom:266.426667pt;}
.y144{bottom:266.906667pt;}
.y2b7{bottom:267.066667pt;}
.yaa{bottom:268.186667pt;}
.y3c{bottom:270.426667pt;}
.y221{bottom:271.546667pt;}
.y18e{bottom:272.346667pt;}
.y2e4{bottom:272.506667pt;}
.ycd{bottom:273.306667pt;}
.y2d{bottom:274.106667pt;}
.y15f{bottom:274.266667pt;}
.y202{bottom:275.866667pt;}
.y247{bottom:279.386667pt;}
.y185{bottom:280.506667pt;}
.y16a{bottom:281.306667pt;}
.y45{bottom:281.960000pt;}
.y10c{bottom:282.266667pt;}
.ya9{bottom:285.786667pt;}
.y143{bottom:286.266667pt;}
.y2e3{bottom:286.586667pt;}
.y220{bottom:289.146667pt;}
.y1d1{bottom:289.946667pt;}
.y30e{bottom:290.746667pt;}
.ycc{bottom:290.906667pt;}
.y1ee{bottom:291.706667pt;}
.y15e{bottom:292.986667pt;}
.y201{bottom:293.626667pt;}
.y2c{bottom:295.226667pt;}
.y246{bottom:296.986667pt;}
.y2b9{bottom:297.786667pt;}
.y44{bottom:297.986667pt;}
.y169{bottom:298.906667pt;}
.y10b{bottom:299.866667pt;}
.y2e2{bottom:300.826667pt;}
.ya8{bottom:303.386667pt;}
.y142{bottom:305.466667pt;}
.y18d{bottom:305.786667pt;}
.y275{bottom:306.586667pt;}
.y21f{bottom:306.906667pt;}
.ycb{bottom:308.666667pt;}
.y1ed{bottom:309.306667pt;}
.y200{bottom:311.226667pt;}
.y43{bottom:313.826667pt;}
.y15d{bottom:314.106667pt;}
.y2e1{bottom:314.906667pt;}
.y245{bottom:315.706667pt;}
.y2b{bottom:316.506667pt;}
.y10a{bottom:317.466667pt;}
.y1d0{bottom:317.946667pt;}
.ya7{bottom:320.986667pt;}
.y30f{bottom:321.466667pt;}
.y21e{bottom:324.506667pt;}
.y140{bottom:324.666667pt;}
.y42{bottom:325.826667pt;}
.yca{bottom:326.266667pt;}
.y1ec{bottom:326.906667pt;}
.y1ff{bottom:328.826667pt;}
.y2e0{bottom:328.986667pt;}
.y18c{bottom:330.906667pt;}
.y1cf{bottom:332.506667pt;}
.y41{bottom:333.506667pt;}
.y2ab{bottom:333.626667pt;}
.y109{bottom:335.066667pt;}
.y276{bottom:337.306667pt;}
.y2a{bottom:337.626667pt;}
.ya6{bottom:338.746667pt;}
.y21d{bottom:342.106667pt;}
.y2df{bottom:343.066667pt;}
.y1ce{bottom:343.226667pt;}
.yc9{bottom:343.866667pt;}
.y13f{bottom:344.026667pt;}
.y1eb{bottom:344.506667pt;}
.y1fe{bottom:346.426667pt;}
.y40{bottom:349.346667pt;}
.y244{bottom:351.866667pt;}
.y301{bottom:352.346667pt;}
.y108{bottom:352.826667pt;}
.y1c4{bottom:353.786667pt;}
.y15c{bottom:356.066667pt;}
.y18b{bottom:356.226667pt;}
.ya5{bottom:356.386667pt;}
.y2de{bottom:357.186667pt;}
.y29{bottom:358.786667pt;}
.y21c{bottom:359.746667pt;}
.yc8{bottom:361.506667pt;}
.y1ea{bottom:362.306667pt;}
.y13d{bottom:363.266667pt;}
.y1fd{bottom:364.066667pt;}
.y2ad{bottom:364.386667pt;}
.y3f{bottom:365.186667pt;}
.y6f{bottom:365.826667pt;}
.y268{bottom:368.226667pt;}
.y1cc{bottom:368.546667pt;}
.y243{bottom:369.506667pt;}
.y15b{bottom:369.986667pt;}
.y107{bottom:370.466667pt;}
.y2dd{bottom:371.266667pt;}
.ya4{bottom:373.986667pt;}
.y28{bottom:377.186667pt;}
.y21b{bottom:377.346667pt;}
.yc7{bottom:379.106667pt;}
.y1e9{bottom:379.906667pt;}
.y3e{bottom:381.026667pt;}
.y18a{bottom:381.346667pt;}
.y1fc{bottom:381.826667pt;}
.y30c{bottom:383.106667pt;}
.y1cb{bottom:383.426667pt;}
.y32d{bottom:384.546667pt;}
.y2dc{bottom:385.506667pt;}
.y242{bottom:387.106667pt;}
.y106{bottom:388.066667pt;}
.y13b{bottom:389.026667pt;}
.ya3{bottom:391.586667pt;}
.y27{bottom:394.626667pt;}
.y21a{bottom:395.106667pt;}
.yc6{bottom:396.866667pt;}
.y3d{bottom:397.026667pt;}
.y1e8{bottom:397.506667pt;}
.y296{bottom:397.666667pt;}
.y1ca{bottom:398.146667pt;}
.y32c{bottom:398.466667pt;}
.y272{bottom:398.946667pt;}
.y1fb{bottom:399.426667pt;}
.y2db{bottom:399.586667pt;}
.y241{bottom:404.706667pt;}
.y105{bottom:405.666667pt;}
.y189{bottom:406.626667pt;}
.y26{bottom:407.106667pt;}
.ya2{bottom:409.186667pt;}
.y139{bottom:409.666667pt;}
.y32b{bottom:410.786667pt;}
.y219{bottom:412.706667pt;}
.y1c9{bottom:412.866667pt;}
.y2da{bottom:413.666667pt;}
.y309{bottom:413.826667pt;}
.yc5{bottom:414.466667pt;}
.y25{bottom:414.626667pt;}
.y1e7{bottom:415.106667pt;}
.y1fa{bottom:417.026667pt;}
.y32a{bottom:423.106667pt;}
.y104{bottom:423.266667pt;}
.y240{bottom:423.426667pt;}
.ya1{bottom:426.946667pt;}
.y2d9{bottom:427.426667pt;}
.y1c8{bottom:427.746667pt;}
.y2a8{bottom:428.386667pt;}
.y270{bottom:429.666667pt;}
.y218{bottom:430.306667pt;}
.y188{bottom:431.746667pt;}
.yc4{bottom:432.066667pt;}
.y31b{bottom:433.666667pt;}
.y1e6{bottom:433.826667pt;}
.y24{bottom:435.266667pt;}
.y138{bottom:437.506667pt;}
.y1f9{bottom:439.746667pt;}
.y103{bottom:441.026667pt;}
.y1c7{bottom:442.466667pt;}
.ya0{bottom:444.546667pt;}
.y30a{bottom:444.706667pt;}
.y217{bottom:447.906667pt;}
.yc3{bottom:449.666667pt;}
.y2d8{bottom:452.066667pt;}
.y23{bottom:456.066667pt;}
.y187{bottom:457.026667pt;}
.y1c6{bottom:457.186667pt;}
.y102{bottom:458.626667pt;}
.y23f{bottom:459.586667pt;}
.y271{bottom:460.546667pt;}
.y2a2{bottom:461.666667pt;}
.y9f{bottom:462.146667pt;}
.y2c9{bottom:462.786667pt;}
.y216{bottom:465.506667pt;}
.yc2{bottom:467.266667pt;}
.y1e5{bottom:468.546667pt;}
.y329{bottom:469.826667pt;}
.y128{bottom:471.426667pt;}
.y1bf{bottom:472.066667pt;}
.y137{bottom:474.306667pt;}
.y307{bottom:475.426667pt;}
.y101{bottom:476.226667pt;}
.y22{bottom:476.706667pt;}
.y23e{bottom:477.186667pt;}
.y9e{bottom:479.746667pt;}
.y1e4{bottom:480.866667pt;}
.y181{bottom:482.146667pt;}
.y215{bottom:483.266667pt;}
.yc1{bottom:486.146667pt;}
.y1c3{bottom:486.786667pt;}
.y127{bottom:489.186667pt;}
.y26e{bottom:491.266667pt;}
.y136{bottom:491.906667pt;}
.y1e3{bottom:493.186667pt;}
.y2d7{bottom:493.506667pt;}
.y100{bottom:493.826667pt;}
.y23d{bottom:494.786667pt;}
.y5a{bottom:496.546667pt;}
.y2a4{bottom:496.706667pt;}
.y9d{bottom:497.346667pt;}
.y214{bottom:500.866667pt;}
.y1c2{bottom:501.506667pt;}
.yc0{bottom:503.586667pt;}
.y1e2{bottom:505.506667pt;}
.y325{bottom:505.826667pt;}
.y308{bottom:506.146667pt;}
.y126{bottom:506.786667pt;}
.y183{bottom:507.426667pt;}
.y135{bottom:509.666667pt;}
.yff{bottom:511.426667pt;}
.y23c{bottom:512.386667pt;}
.ybf{bottom:514.946667pt;}
.y9c{bottom:515.106667pt;}
.y1c1{bottom:516.386667pt;}
.y213{bottom:518.466667pt;}
.y1e1{bottom:518.786667pt;}
.y26f{bottom:521.986667pt;}
.y2d3{bottom:524.226667pt;}
.y21{bottom:525.826667pt;}
.y134{bottom:527.266667pt;}
.yfe{bottom:529.186667pt;}
.y23b{bottom:529.986667pt;}
.y1ba{bottom:531.106667pt;}
.ybe{bottom:532.546667pt;}
.y9b{bottom:532.706667pt;}
.y1e0{bottom:534.626667pt;}
.y125{bottom:535.106667pt;}
.y29e{bottom:535.906667pt;}
.y212{bottom:536.066667pt;}
.y303{bottom:537.026667pt;}
.y20{bottom:539.586667pt;}
.y327{bottom:541.826667pt;}
.y133{bottom:544.866667pt;}
.y1be{bottom:545.826667pt;}
.yfd{bottom:546.786667pt;}
.y23a{bottom:547.746667pt;}
.ybd{bottom:550.146667pt;}
.y9a{bottom:550.306667pt;}
.y26a{bottom:552.866667pt;}
.y1f{bottom:553.346667pt;}
.y211{bottom:553.666667pt;}
.y2d5{bottom:555.106667pt;}
.y182{bottom:557.853333pt;}
.y1bd{bottom:560.733333pt;}
.y132{bottom:562.493333pt;}
.y124{bottom:563.453333pt;}
.yfc{bottom:564.413333pt;}
.y1df{bottom:564.573333pt;}
.y239{bottom:565.373333pt;}
.y2a1{bottom:566.813333pt;}
.y1e{bottom:567.133333pt;}
.y304{bottom:567.773333pt;}
.y99{bottom:567.933333pt;}
.y210{bottom:571.453333pt;}
.y1bc{bottom:575.453333pt;}
.y322{bottom:578.013333pt;}
.y131{bottom:580.093333pt;}
.y1d{bottom:581.053333pt;}
.yfb{bottom:582.013333pt;}
.y17d{bottom:582.973333pt;}
.y26d{bottom:583.613333pt;}
.y238{bottom:584.093333pt;}
.y98{bottom:585.533333pt;}
.y2d1{bottom:588.573333pt;}
.y20f{bottom:589.053333pt;}
.y1b4{bottom:590.173333pt;}
.y1c{bottom:590.493333pt;}
.y123{bottom:591.613333pt;}
.y130{bottom:597.853333pt;}
.y2f8{bottom:598.493333pt;}
.yfa{bottom:599.613333pt;}
.y63{bottom:601.373333pt;}
.y1b{bottom:602.653333pt;}
.ybc{bottom:603.133333pt;}
.y97{bottom:603.293333pt;}
.y1b9{bottom:605.053333pt;}
.y20e{bottom:606.653333pt;}
.y180{bottom:608.253333pt;}
.y298{bottom:608.573333pt;}
.y1a{bottom:614.013333pt;}
.y25a{bottom:614.333333pt;}
.y12f{bottom:615.453333pt;}
.y237{bottom:616.413333pt;}
.yf9{bottom:617.373333pt;}
.y2d2{bottom:619.293333pt;}
.y1b8{bottom:619.773333pt;}
.y122{bottom:619.933333pt;}
.ybb{bottom:620.733333pt;}
.y96{bottom:620.893333pt;}
.y20d{bottom:624.253333pt;}
.y19{bottom:624.893333pt;}
.y300{bottom:629.373333pt;}
.y12e{bottom:633.053333pt;}
.y17f{bottom:633.373333pt;}
.y1b6{bottom:634.493333pt;}
.yf8{bottom:634.973333pt;}
.y236{bottom:635.293333pt;}
.y18{bottom:636.413333pt;}
.yba{bottom:638.333333pt;}
.y95{bottom:638.493333pt;}
.y29a{bottom:639.293333pt;}
.y20c{bottom:642.973333pt;}
.y267{bottom:645.213333pt;}
.y121{bottom:648.253333pt;}
.y17{bottom:648.893333pt;}
.y1b0{bottom:649.373333pt;}
.y12d{bottom:650.653333pt;}
.yf7{bottom:652.573333pt;}
.y31d{bottom:653.213333pt;}
.y235{bottom:653.853333pt;}
.y94{bottom:656.093333pt;}
.y2cb{bottom:658.493333pt;}
.y17e{bottom:658.653333pt;}
.y2fe{bottom:660.093333pt;}
.y16{bottom:660.413333pt;}
.y1b2{bottom:664.093333pt;}
.y234{bottom:665.373333pt;}
.y12c{bottom:668.253333pt;}
.yf6{bottom:670.173333pt;}
.y93{bottom:673.693333pt;}
.y282{bottom:673.853333pt;}
.y263{bottom:675.933333pt;}
.y120{bottom:676.573333pt;}
.y1ae{bottom:680.253333pt;}
.y233{bottom:680.733333pt;}
.y178{bottom:683.773333pt;}
.y15{bottom:684.093333pt;}
.y12b{bottom:686.013333pt;}
.yf5{bottom:687.773333pt;}
.y2cd{bottom:689.373333pt;}
.y2ff{bottom:690.813333pt;}
.yb9{bottom:691.293333pt;}
.y92{bottom:691.453333pt;}
.y14{bottom:694.013333pt;}
.y232{bottom:699.453333pt;}
.y12a{bottom:704.573333pt;}
.y11f{bottom:704.893333pt;}
.yf4{bottom:705.533333pt;}
.y265{bottom:706.653333pt;}
.yb8{bottom:708.893333pt;}
.y91{bottom:709.053333pt;}
.y13{bottom:711.133333pt;}
.y231{bottom:718.013333pt;}
.y1ad{bottom:720.253333pt;}
.y2fc{bottom:721.693333pt;}
.yf3{bottom:723.133333pt;}
.yb7{bottom:726.493333pt;}
.y90{bottom:726.653333pt;}
.y12{bottom:727.453333pt;}
.y2c2{bottom:727.773333pt;}
.y230{bottom:729.533333pt;}
.y11e{bottom:733.213333pt;}
.y17c{bottom:734.173333pt;}
.y1ab{bottom:735.453333pt;}
.y261{bottom:737.533333pt;}
.y11{bottom:739.613333pt;}
.yf2{bottom:740.733333pt;}
.y291{bottom:742.493333pt;}
.y8f{bottom:744.253333pt;}
.y22f{bottom:744.893333pt;}
.yb6{bottom:745.373333pt;}
.y10{bottom:751.933333pt;}
.y2fd{bottom:752.413333pt;}
.y1aa{bottom:753.053333pt;}
.yf1{bottom:758.333333pt;}
.y2c7{bottom:758.493333pt;}
.y17a{bottom:759.453333pt;}
.y22e{bottom:760.093333pt;}
.y11d{bottom:761.573333pt;}
.y8e{bottom:761.893333pt;}
.yf{bottom:764.293333pt;}
.yb5{bottom:766.533333pt;}
.y262{bottom:768.293333pt;}
.y1a9{bottom:770.693333pt;}
.ye{bottom:775.813333pt;}
.yf0{bottom:775.973333pt;}
.y22d{bottom:779.013333pt;}
.y11c{bottom:779.173333pt;}
.y8d{bottom:779.653333pt;}
.y2f9{bottom:783.173333pt;}
.y293{bottom:784.293333pt;}
.y174{bottom:784.613333pt;}
.y1a8{bottom:788.453333pt;}
.yef{bottom:793.733333pt;}
.yd{bottom:795.333333pt;}
.y8c{bottom:797.253333pt;}
.y25c{bottom:799.013333pt;}
.y22c{bottom:800.133333pt;}
.y1a7{bottom:806.053333pt;}
.y11b{bottom:807.493333pt;}
.y176{bottom:809.893333pt;}
.yee{bottom:811.333333pt;}
.y2fa{bottom:814.053333pt;}
.y8b{bottom:814.853333pt;}
.y15a{bottom:816.613333pt;}
.yc{bottom:817.093333pt;}
.y28c{bottom:817.413333pt;}
.y22b{bottom:818.693333pt;}
.y1a6{bottom:823.653333pt;}
.yed{bottom:828.933333pt;}
.y25d{bottom:829.893333pt;}
.y8a{bottom:832.453333pt;}
.y159{bottom:834.213333pt;}
.y11a{bottom:835.813333pt;}
.y172{bottom:836.293333pt;}
.y1a5{bottom:841.253333pt;}
.y2f3{bottom:844.773333pt;}
.yec{bottom:846.533333pt;}
.y89{bottom:850.053333pt;}
.y158{bottom:851.813333pt;}
.y28e{bottom:855.973333pt;}
.yb{bottom:856.453333pt;}
.y1a4{bottom:858.853333pt;}
.y251{bottom:860.613333pt;}
.y119{bottom:863.973333pt;}
.yeb{bottom:864.133333pt;}
.y2c4{bottom:864.293333pt;}
.y88{bottom:867.813333pt;}
.y157{bottom:869.573333pt;}
.y2f6{bottom:875.493333pt;}
.y1a3{bottom:876.613333pt;}
.ya{bottom:880.933333pt;}
.yea{bottom:881.893333pt;}
.y171{bottom:882.853333pt;}
.y87{bottom:885.413333pt;}
.y156{bottom:888.293333pt;}
.y257{bottom:891.333333pt;}
.y1ac{bottom:891.653333pt;}
.y118{bottom:892.293333pt;}
.y284{bottom:892.453333pt;}
.y1a2{bottom:894.213333pt;}
.y2c5{bottom:895.173333pt;}
.ye9{bottom:899.493333pt;}
.y129{bottom:900.613333pt;}
.y86{bottom:903.013333pt;}
.y9{bottom:905.413333pt;}
.y170{bottom:906.853333pt;}
.y1a1{bottom:911.813333pt;}
.y155{bottom:914.693333pt;}
.ye8{bottom:917.093333pt;}
.y2f5{bottom:920.453333pt;}
.y85{bottom:920.613333pt;}
.y154{bottom:926.853333pt;}
.ye7{bottom:934.693333pt;}
.y256{bottom:936.293333pt;}
.y84{bottom:938.213333pt;}
.y8{bottom:947.333333pt;}
.ye6{bottom:953.413333pt;}
.y83{bottom:955.813333pt;}
.y1de{bottom:955.973333pt;}
.y2f2{bottom:957.093333pt;}
.y61{bottom:974.400000pt;}
.y81{bottom:997.920000pt;}
.y39{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h8c{height:5.562500pt;}
.h2{height:12.000000pt;}
.h39{height:14.080000pt;}
.h40{height:14.112000pt;}
.h3b{height:14.240000pt;}
.h3d{height:14.272000pt;}
.h16{height:14.880000pt;}
.h14{height:16.125000pt;}
.h27{height:18.560000pt;}
.h29{height:18.592000pt;}
.h2a{height:18.720000pt;}
.h41{height:19.040000pt;}
.h1c{height:19.680000pt;}
.h37{height:20.160000pt;}
.h13{height:20.728125pt;}
.h26{height:21.120000pt;}
.h2f{height:24.480000pt;}
.h31{height:24.512000pt;}
.h33{height:24.640000pt;}
.h35{height:24.672000pt;}
.h28{height:25.120000pt;}
.h23{height:26.368125pt;}
.ha{height:26.381250pt;}
.hd{height:27.523125pt;}
.h38{height:28.800000pt;}
.h48{height:30.080000pt;}
.h46{height:30.112000pt;}
.h4c{height:30.240000pt;}
.h52{height:30.272000pt;}
.h2b{height:31.390625pt;}
.h6f{height:31.840000pt;}
.h15{height:32.250000pt;}
.h5c{height:32.480000pt;}
.h69{height:32.640000pt;}
.h7f{height:32.832000pt;}
.h77{height:33.760000pt;}
.h62{height:33.920000pt;}
.h67{height:34.400000pt;}
.h71{height:34.560000pt;}
.h11{height:35.114107pt;}
.h6d{height:35.200000pt;}
.h86{height:35.360000pt;}
.h8b{height:35.520000pt;}
.h89{height:35.552000pt;}
.h59{height:35.840000pt;}
.h5{height:36.431250pt;}
.h20{height:36.920625pt;}
.h5f{height:37.120000pt;}
.h1b{height:37.410000pt;}
.h7c{height:37.760000pt;}
.h5a{height:37.920000pt;}
.h66{height:38.560000pt;}
.h72{height:38.592000pt;}
.h73{height:39.200000pt;}
.hf{height:39.571875pt;}
.h79{height:39.872000pt;}
.h76{height:40.480000pt;}
.h54{height:40.672000pt;}
.h64{height:41.120000pt;}
.h5d{height:41.152000pt;}
.h10{height:41.442606pt;}
.h2c{height:41.661250pt;}
.h2d{height:41.920000pt;}
.hb{height:42.084375pt;}
.h4{height:42.400000pt;}
.h57{height:43.200000pt;}
.h4b{height:43.214993pt;}
.h17{height:43.215000pt;}
.h81{height:44.160000pt;}
.h47{height:44.320000pt;}
.h1d{height:46.240000pt;}
.h12{height:47.109375pt;}
.h25{height:47.621250pt;}
.h18{height:48.375000pt;}
.he{height:49.148438pt;}
.h2e{height:49.760000pt;}
.h36{height:52.108438pt;}
.h3{height:52.134375pt;}
.h24{height:53.535000pt;}
.h44{height:55.298750pt;}
.h9{height:57.787500pt;}
.h3e{height:58.400000pt;}
.h3c{height:58.432000pt;}
.h3a{height:58.560000pt;}
.h1e{height:58.563750pt;}
.h4f{height:60.800000pt;}
.h4d{height:60.832000pt;}
.h4a{height:60.960000pt;}
.h51{height:60.992000pt;}
.h6e{height:62.560000pt;}
.h22{height:62.781250pt;}
.h43{height:62.812500pt;}
.h68{height:63.360000pt;}
.h6b{height:63.392000pt;}
.h7e{height:63.712000pt;}
.hc{height:64.500000pt;}
.h61{height:64.640000pt;}
.h7{height:65.781915pt;}
.h6c{height:65.920000pt;}
.h21{height:66.750000pt;}
.h5e{height:67.840000pt;}
.h7b{height:68.640000pt;}
.h7d{height:69.280000pt;}
.h78{height:70.592000pt;}
.h75{height:71.360000pt;}
.h53{height:71.392000pt;}
.h8a{height:71.520000pt;}
.h88{height:71.552000pt;}
.h63{height:72.032000pt;}
.h65{height:73.600000pt;}
.h70{height:73.792000pt;}
.h85{height:73.920000pt;}
.h56{height:73.952000pt;}
.h5b{height:74.272000pt;}
.h58{height:74.400000pt;}
.h87{height:74.560000pt;}
.h8{height:85.785000pt;}
.h1a{height:90.592000pt;}
.h32{height:100.160000pt;}
.h30{height:100.192000pt;}
.h42{height:104.896875pt;}
.h80{height:105.760000pt;}
.h45{height:105.792000pt;}
.h3f{height:117.632000pt;}
.h1f{height:118.240000pt;}
.h34{height:200.986667pt;}
.h74{height:238.626667pt;}
.h4e{height:245.466667pt;}
.h82{height:245.506667pt;}
.h49{height:245.626667pt;}
.h83{height:255.866667pt;}
.h50{height:256.066667pt;}
.h7a{height:264.346667pt;}
.h6a{height:267.746667pt;}
.h60{height:275.546667pt;}
.h55{height:292.546667pt;}
.h84{height:293.466667pt;}
.h19{height:408.226667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w32{width:17.920000pt;}
.w2d{width:21.600000pt;}
.w28{width:25.120000pt;}
.w11{width:28.480000pt;}
.w2b{width:29.632000pt;}
.w12{width:42.720000pt;}
.w1d{width:52.320000pt;}
.w10{width:54.752000pt;}
.w22{width:56.160000pt;}
.w2e{width:56.352000pt;}
.w31{width:59.680000pt;}
.w17{width:62.912000pt;}
.w1a{width:63.072000pt;}
.w2c{width:67.200000pt;}
.w33{width:67.552000pt;}
.w29{width:68.352000pt;}
.w2a{width:68.480000pt;}
.w1b{width:69.760000pt;}
.w18{width:69.920000pt;}
.w13{width:70.112000pt;}
.w3{width:72.960000pt;}
.w27{width:77.952000pt;}
.w1f{width:85.280000pt;}
.w30{width:85.472000pt;}
.w20{width:86.080000pt;}
.w2f{width:89.312000pt;}
.w24{width:93.472000pt;}
.w25{width:93.600000pt;}
.w1e{width:96.512000pt;}
.w26{width:96.832000pt;}
.w21{width:109.152000pt;}
.w16{width:116.000000pt;}
.w14{width:122.240000pt;}
.we{width:125.952000pt;}
.wa{width:137.280000pt;}
.wb{width:160.346667pt;}
.w8{width:160.826667pt;}
.wf{width:192.346667pt;}
.wc{width:218.586667pt;}
.w19{width:219.906667pt;}
.w1c{width:237.826667pt;}
.w15{width:249.986667pt;}
.wd{width:318.306667pt;}
.w23{width:361.853333pt;}
.w7{width:473.693333pt;}
.w4{width:568.773333pt;}
.w2{width:641.733333pt;}
.w9{width:660.480000pt;}
.w6{width:689.920000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6b{left:3.780000pt;}
.x2{left:7.200000pt;}
.x2d{left:8.640000pt;}
.x13{left:9.632000pt;}
.x33{left:11.680000pt;}
.x35{left:12.640000pt;}
.x2b{left:13.920000pt;}
.x32{left:15.360000pt;}
.x2a{left:16.800000pt;}
.x6a{left:17.920000pt;}
.x18{left:18.893333pt;}
.x52{left:20.000000pt;}
.x2f{left:21.600000pt;}
.x27{left:23.386667pt;}
.x40{left:25.440000pt;}
.x49{left:26.400000pt;}
.x44{left:28.160000pt;}
.x3c{left:29.120000pt;}
.x5c{left:30.280000pt;}
.x5f{left:31.226667pt;}
.x31{left:32.480000pt;}
.x48{left:33.600000pt;}
.x45{left:37.760000pt;}
.x46{left:38.720000pt;}
.x43{left:40.640000pt;}
.x41{left:42.240000pt;}
.x47{left:44.000000pt;}
.x42{left:45.440000pt;}
.x3f{left:47.040000pt;}
.x29{left:48.000000pt;}
.x34{left:49.120000pt;}
.x55{left:53.914667pt;}
.x56{left:58.280000pt;}
.x63{left:62.394667pt;}
.x3{left:65.754667pt;}
.x12{left:72.480000pt;}
.x64{left:76.954667pt;}
.x17{left:82.752000pt;}
.x15{left:84.032000pt;}
.x67{left:87.240000pt;}
.x65{left:91.354667pt;}
.x9{left:93.631988pt;}
.x1{left:96.032000pt;}
.x3a{left:105.000000pt;}
.x66{left:105.914667pt;}
.x38{left:108.031988pt;}
.x25{left:109.320000pt;}
.x22{left:116.671988pt;}
.x6{left:118.591988pt;}
.x1b{left:120.031988pt;}
.x1d{left:124.031988pt;}
.x7{left:128.671988pt;}
.x23{left:144.026655pt;}
.x59{left:147.226667pt;}
.x24{left:148.186667pt;}
.x36{left:150.106655pt;}
.xe{left:153.626655pt;}
.xc{left:154.746655pt;}
.x39{left:162.106655pt;}
.xd{left:166.426655pt;}
.x4{left:168.986667pt;}
.x4e{left:180.026655pt;}
.x4a{left:182.266667pt;}
.x1a{left:184.346655pt;}
.x21{left:186.106655pt;}
.xf{left:221.306655pt;}
.x53{left:240.066655pt;}
.x14{left:268.706667pt;}
.x16{left:275.906667pt;}
.x57{left:291.266667pt;}
.x8{left:293.826655pt;}
.xa{left:330.946655pt;}
.x58{left:347.426667pt;}
.x26{left:366.786667pt;}
.x20{left:369.346655pt;}
.x5e{left:372.546667pt;}
.x5{left:396.893322pt;}
.x4b{left:402.173333pt;}
.xb{left:405.053322pt;}
.x3b{left:417.213333pt;}
.x4f{left:418.493333pt;}
.x2c{left:421.533333pt;}
.x10{left:434.813322pt;}
.x11{left:436.253322pt;}
.x5a{left:440.893333pt;}
.x2e{left:450.013333pt;}
.x60{left:466.013333pt;}
.x50{left:470.813333pt;}
.x28{left:492.733333pt;}
.x4c{left:518.173333pt;}
.x1e{left:531.453322pt;}
.x3d{left:533.213333pt;}
.x5b{left:534.493333pt;}
.x19{left:551.336000pt;}
.x30{left:562.853333pt;}
.x61{left:564.133333pt;}
.x51{left:567.333333pt;}
.x1f{left:569.573322pt;}
.x4d{left:581.253333pt;}
.x3e{left:596.133333pt;}
.x68{left:623.813333pt;}
.x5d{left:631.333333pt;}
.x69{left:641.733333pt;}
.x62{left:652.933333pt;}
.x1c{left:710.399988pt;}
.x37{left:734.079988pt;}
.x54{left:738.079988pt;}
}




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