
    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_a15863f31ba12a908b6f4d95.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_138b153f8c6211e7653701cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.725000;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_aa3728712d5ad6e2e0482c98.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_d17ab1ef6d0450d1f66f15c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;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_f72aeafc8fc569e58b2cd437.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910000;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_a6585f623c677a9225dcb5ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.915000;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_f234f9c3fc3acb4d4ce18df1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_7a5f014bf8b2e648e13f856a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.894000;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_0b2c9971d280aca1ca45cf98.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fe9da7e3fbd379af1453436f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fa846d8111fac38c28003f46.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_1a1eebb0343a69efac7868b6.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1604a95c1345449e65bdb003.woff2')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_c7bccdafe7f11debec00a823.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_1af0a836bcf8e9ebd182a5c2.woff2')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_df22c2abdabc69d2915a54ae.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_5166263012f747294af27f41.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_1a1eebb0343a69efac7868b6.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_f40eb42c2bf5e9eebdcbdc5e.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_47068365f53cc70a023b616a.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_0cd8ad0d3bd8bb933d56e51f.woff2')format("woff");}.ff15{font-family:ff15;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-9.180000px;}
.v2{vertical-align:-6.540000px;}
.v3{vertical-align:-5.040000px;}
.v5{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.860000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.003810px;}
.ls0{letter-spacing:29.887800px;}
.ls1{letter-spacing:31.377810px;}
.ls2{letter-spacing:31.383810px;}
.ls5{letter-spacing:62.763810px;}
.ls9{letter-spacing:104.148000px;}
.ls6{letter-spacing:130.020000px;}
.ls8{letter-spacing:168.900000px;}
.ls7{letter-spacing:315.828000px;}
.lsa{letter-spacing:338.268000px;}
.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;}
}
.ws58{word-spacing:-185.580000px;}
.ws44{word-spacing:-146.700000px;}
.wsc{word-spacing:-31.382190px;}
.ws4{word-spacing:-26.329124px;}
.ws2{word-spacing:-24.101616px;}
.ws6{word-spacing:-21.195709px;}
.ws3f{word-spacing:-18.348000px;}
.wsb{word-spacing:-16.737168px;}
.ws40{word-spacing:-15.012000px;}
.ws7{word-spacing:-10.805942px;}
.ws9{word-spacing:-10.805359px;}
.ws8{word-spacing:-10.753333px;}
.ws11{word-spacing:-0.059776px;}
.ws32{word-spacing:-0.004950px;}
.ws2a{word-spacing:-0.004380px;}
.ws14{word-spacing:-0.003900px;}
.ws41{word-spacing:-0.003330px;}
.ws13{word-spacing:-0.002760px;}
.ws29{word-spacing:-0.002280px;}
.ws2e{word-spacing:-0.001710px;}
.ws3d{word-spacing:-0.001140px;}
.ws3c{word-spacing:-0.000660px;}
.wsf{word-spacing:-0.000570px;}
.ws19{word-spacing:-0.000090px;}
.wsd{word-spacing:0.000000px;}
.ws26{word-spacing:0.000480px;}
.ws10{word-spacing:0.001050px;}
.ws30{word-spacing:0.002100px;}
.ws1a{word-spacing:0.002670px;}
.wse{word-spacing:0.003240px;}
.ws27{word-spacing:0.004860px;}
.ws15{word-spacing:0.005430px;}
.ws24{word-spacing:0.005910px;}
.ws2c{word-spacing:0.006480px;}
.ws2b{word-spacing:0.055876px;}
.ws42{word-spacing:0.061876px;}
.ws0{word-spacing:2.272433px;}
.ws1{word-spacing:3.299635px;}
.ws3{word-spacing:6.156887px;}
.ws2f{word-spacing:6.814464px;}
.wsa{word-spacing:8.177334px;}
.ws31{word-spacing:14.585246px;}
.ws18{word-spacing:14.645022px;}
.ws12{word-spacing:14.645502px;}
.ws28{word-spacing:14.646072px;}
.ws23{word-spacing:14.647122px;}
.ws5{word-spacing:19.086641px;}
.ws2d{word-spacing:31.382190px;}
.ws1d{word-spacing:35.280000px;}
.ws54{word-spacing:36.240000px;}
.ws45{word-spacing:39.000000px;}
.ws4e{word-spacing:39.180000px;}
.ws56{word-spacing:40.440000px;}
.ws5a{word-spacing:40.980000px;}
.ws16{word-spacing:46.028262px;}
.ws1f{word-spacing:46.140000px;}
.ws4b{word-spacing:46.500000px;}
.ws4c{word-spacing:47.640000px;}
.ws59{word-spacing:48.180000px;}
.ws53{word-spacing:48.960000px;}
.ws5c{word-spacing:50.580000px;}
.ws39{word-spacing:53.400000px;}
.ws61{word-spacing:53.940000px;}
.ws21{word-spacing:55.380000px;}
.ws17{word-spacing:62.764380px;}
.ws36{word-spacing:62.940000px;}
.ws5f{word-spacing:63.540000px;}
.ws34{word-spacing:64.260000px;}
.ws48{word-spacing:64.440000px;}
.ws4d{word-spacing:66.600000px;}
.ws1c{word-spacing:68.340000px;}
.ws49{word-spacing:69.120000px;}
.ws5b{word-spacing:72.120000px;}
.ws5e{word-spacing:74.160000px;}
.ws51{word-spacing:74.820000px;}
.ws55{word-spacing:75.420000px;}
.ws4a{word-spacing:75.600000px;}
.ws47{word-spacing:79.920000px;}
.ws20{word-spacing:81.840000px;}
.ws33{word-spacing:82.440000px;}
.ws37{word-spacing:91.200000px;}
.ws43{word-spacing:94.146570px;}
.ws60{word-spacing:97.620000px;}
.ws5d{word-spacing:98.040000px;}
.ws1e{word-spacing:100.440000px;}
.ws3a{word-spacing:110.340000px;}
.ws35{word-spacing:116.760000px;}
.ws50{word-spacing:137.940000px;}
.ws38{word-spacing:158.100000px;}
.ws22{word-spacing:212.400000px;}
.ws3b{word-spacing:219.677430px;}
.ws1b{word-spacing:376.589430px;}
.ws3e{word-spacing:403.956000px;}
.ws57{word-spacing:414.696000px;}
.ws4f{word-spacing:421.836000px;}
.ws46{word-spacing:530.400000px;}
.ws52{word-spacing:545.940000px;}
.ws25{word-spacing:596.261430px;}
._31{margin-left:-168.900000px;}
._27{margin-left:-130.080000px;}
._6{margin-left:-29.887800px;}
._b{margin-left:-14.859496px;}
._7{margin-left:-10.042301px;}
._9{margin-left:-8.643416px;}
._1{margin-left:-5.810227px;}
._18{margin-left:-3.600000px;}
._2{margin-left:-2.582316px;}
._13{margin-left:-1.500000px;}
._3{width:2.582316px;}
._12{width:31.382190px;}
._a{width:35.938577px;}
._0{width:41.523545px;}
._d{width:62.764380px;}
._8{width:65.883186px;}
._2a{width:73.380000px;}
._2e{width:74.640000px;}
._16{width:80.400000px;}
._28{width:82.620000px;}
._21{width:87.600000px;}
._11{width:94.146570px;}
._20{width:97.140000px;}
._1d{width:98.400000px;}
._32{width:100.020000px;}
._29{width:103.320000px;}
._17{width:107.220000px;}
._1c{width:115.800000px;}
._c{width:125.528760px;}
._14{width:134.640000px;}
._1e{width:150.960000px;}
._15{width:152.160000px;}
._10{width:156.851174px;}
._1f{width:168.480000px;}
._2d{width:171.300000px;}
._e{width:188.296290px;}
._19{width:219.675810px;}
._1a{width:251.060670px;}
._f{width:282.442290px;}
._22{width:313.822290px;}
._24{width:345.204480px;}
._23{width:376.586670px;}
._1b{width:407.971620px;}
._25{width:440.418000px;}
._26{width:441.456000px;}
._2f{width:451.158000px;}
._30{width:452.196000px;}
._2b{width:458.298000px;}
._2c{width:459.396000px;}
._5{width:1179.237421px;}
._4{width:1459.943639px;}
.fc5{color:rgb(0,0,207);}
.fc4{color:rgb(207,92,0);}
.fc3{color:rgb(143,89,3);}
.fc2{color:rgb(79,153,5);}
.fc1{color:rgb(33,74,135);}
.fc6{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:42.000000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:59.775600px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:72.000000px;}
.fs9{font-size:78.000000px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y12d{bottom:11.850000px;}
.y77{bottom:23.310000px;}
.y12c{bottom:30.780000px;}
.y7f{bottom:54.300000px;}
.y85{bottom:57.510000px;}
.y7d{bottom:59.160000px;}
.y1d{bottom:63.168000px;}
.y1b0{bottom:64.005000px;}
.y8a{bottom:72.615000px;}
.yef{bottom:83.115000px;}
.y239{bottom:84.330000px;}
.y89{bottom:84.510000px;}
.y185{bottom:85.110000px;}
.y2a8{bottom:85.185000px;}
.y1e9{bottom:86.220000px;}
.y28c{bottom:87.615000px;}
.yf2{bottom:88.290000px;}
.y1ea{bottom:89.355000px;}
.y23b{bottom:89.415000px;}
.y2ab{bottom:90.210000px;}
.y81{bottom:91.815000px;}
.y290{bottom:92.460000px;}
.y7a{bottom:93.210000px;}
.y7e{bottom:93.255000px;}
.y23c{bottom:93.675000px;}
.y1e6{bottom:95.280000px;}
.y78{bottom:97.545000px;}
.y181{bottom:98.115000px;}
.y83{bottom:98.220000px;}
.y7c{bottom:99.135000px;}
.ye2{bottom:108.078000px;}
.y1b9{bottom:108.367500px;}
.y4f{bottom:108.403500px;}
.y289{bottom:110.506500px;}
.y16f{bottom:110.551500px;}
.yba{bottom:112.995000px;}
.y1d5{bottom:113.002500px;}
.y2ac{bottom:113.385000px;}
.y22b{bottom:115.551000px;}
.y148{bottom:115.711500px;}
.y1c{bottom:115.800000px;}
.y9c{bottom:115.890000px;}
.y200{bottom:116.721000px;}
.y23d{bottom:117.124500px;}
.y1aa{bottom:121.509000px;}
.ye1{bottom:126.012000px;}
.y1b8{bottom:126.300000px;}
.y4e{bottom:126.336000px;}
.y288{bottom:128.439000px;}
.y16e{bottom:128.484000px;}
.yb9{bottom:130.927500px;}
.y1d4{bottom:130.935000px;}
.y22a{bottom:133.483500px;}
.y1b{bottom:133.734000px;}
.y1ff{bottom:134.653500px;}
.y102{bottom:135.057000px;}
.y128{bottom:136.140000px;}
.y17d{bottom:136.881000px;}
.y1e7{bottom:138.510000px;}
.y1a9{bottom:139.441500px;}
.y1e5{bottom:140.070000px;}
.ye0{bottom:143.944500px;}
.y29b{bottom:144.232500px;}
.y4d{bottom:144.268500px;}
.y261{bottom:144.660000px;}
.y1e8{bottom:145.500000px;}
.y287{bottom:146.373000px;}
.y16d{bottom:146.418000px;}
.yb8{bottom:148.860000px;}
.y1d3{bottom:148.867500px;}
.y229{bottom:151.416000px;}
.y147{bottom:151.576500px;}
.y1a{bottom:151.666500px;}
.y9b{bottom:151.756500px;}
.y23a{bottom:152.280000px;}
.y1fe{bottom:152.586000px;}
.y28d{bottom:152.625000px;}
.y28b{bottom:153.150000px;}
.yf0{bottom:153.900000px;}
.y183{bottom:153.945000px;}
.yee{bottom:154.335000px;}
.y186{bottom:154.365000px;}
.y28f{bottom:154.710000px;}
.y182{bottom:155.700000px;}
.y180{bottom:156.000000px;}
.y88{bottom:157.335000px;}
.y1a8{bottom:157.375500px;}
.y28e{bottom:157.740000px;}
.y1b1{bottom:158.415000px;}
.yf1{bottom:158.910000px;}
.y2a9{bottom:158.985000px;}
.y82{bottom:159.045000px;}
.y7b{bottom:159.105000px;}
.y87{bottom:159.315000px;}
.y184{bottom:160.695000px;}
.y2aa{bottom:161.070000px;}
.ydf{bottom:161.877000px;}
.y4c{bottom:162.202500px;}
.y297{bottom:164.010000px;}
.y86{bottom:164.085000px;}
.y286{bottom:164.305500px;}
.y16c{bottom:164.350500px;}
.y1d2{bottom:166.801500px;}
.y228{bottom:169.348500px;}
.y146{bottom:169.509000px;}
.y19{bottom:169.599000px;}
.y101{bottom:172.671000px;}
.y1b7{bottom:172.686000px;}
.y295{bottom:175.308000px;}
.y80{bottom:177.570000px;}
.yde{bottom:179.809500px;}
.y4b{bottom:180.135000px;}
.y285{bottom:182.238000px;}
.y16b{bottom:182.283000px;}
.y1eb{bottom:182.670000px;}
.y1d1{bottom:184.734000px;}
.y9a{bottom:185.902500px;}
.y227{bottom:187.281000px;}
.y145{bottom:187.441500px;}
.y1fd{bottom:188.452500px;}
.y100{bottom:190.603500px;}
.y1b6{bottom:190.618500px;}
.y1a7{bottom:193.240500px;}
.y133{bottom:193.995000px;}
.yb7{bottom:196.411500px;}
.ydd{bottom:197.742000px;}
.y4a{bottom:198.067500px;}
.y8b{bottom:199.170000px;}
.y284{bottom:200.170500px;}
.y16a{bottom:200.215500px;}
.y1d0{bottom:202.666500px;}
.y99{bottom:203.835000px;}
.y226{bottom:205.215000px;}
.y1fc{bottom:206.385000px;}
.y18{bottom:208.206000px;}
.yff{bottom:208.536000px;}
.y29a{bottom:208.551000px;}
.y1a6{bottom:211.173000px;}
.ydc{bottom:215.674500px;}
.y49{bottom:216.000000px;}
.y12e{bottom:217.020000px;}
.y283{bottom:218.103000px;}
.y169{bottom:218.148000px;}
.y132{bottom:219.915000px;}
.y1cf{bottom:220.599000px;}
.y98{bottom:221.769000px;}
.y225{bottom:223.147500px;}
.y144{bottom:223.308000px;}
.y1fb{bottom:224.317500px;}
.y127{bottom:225.280500px;}
.y17{bottom:226.138500px;}
.yfe{bottom:226.470000px;}
.y1b5{bottom:226.485000px;}
.y1a5{bottom:229.105500px;}
.y129{bottom:231.060000px;}
.yb6{bottom:232.276500px;}
.ydb{bottom:233.608500px;}
.y48{bottom:233.932500px;}
.y282{bottom:236.035500px;}
.y168{bottom:236.080500px;}
.y2ad{bottom:237.285000px;}
.y1ce{bottom:238.531500px;}
.y97{bottom:239.701500px;}
.y224{bottom:241.080000px;}
.y143{bottom:241.240500px;}
.y1fa{bottom:242.250000px;}
.y126{bottom:243.213000px;}
.y16{bottom:244.071000px;}
.yfd{bottom:244.402500px;}
.y299{bottom:244.417500px;}
.y131{bottom:245.835000px;}
.y1a4{bottom:247.038000px;}
.yb5{bottom:250.209000px;}
.y262{bottom:250.545000px;}
.yda{bottom:251.541000px;}
.y47{bottom:251.865000px;}
.y260{bottom:252.508500px;}
.y1b2{bottom:252.840000px;}
.y281{bottom:253.969500px;}
.y167{bottom:254.014500px;}
.y1cd{bottom:256.464000px;}
.y96{bottom:257.634000px;}
.y1e3{bottom:258.664500px;}
.y223{bottom:259.012500px;}
.y142{bottom:259.173000px;}
.y1f9{bottom:260.182500px;}
.y1af{bottom:261.109500px;}
.y125{bottom:261.145500px;}
.y15{bottom:262.005000px;}
.y1a3{bottom:264.972000px;}
.yb4{bottom:268.143000px;}
.yd9{bottom:269.473500px;}
.y46{bottom:269.799000px;}
.y25f{bottom:270.441000px;}
.y130{bottom:271.755000px;}
.y280{bottom:271.902000px;}
.y166{bottom:271.947000px;}
.y1cc{bottom:274.398000px;}
.y1ec{bottom:275.985000px;}
.y1e2{bottom:276.598500px;}
.y222{bottom:276.945000px;}
.y141{bottom:277.105500px;}
.y296{bottom:279.042000px;}
.y124{bottom:279.078000px;}
.y14{bottom:279.937500px;}
.y1a2{bottom:282.904500px;}
.yb3{bottom:286.075500px;}
.yd8{bottom:287.406000px;}
.y45{bottom:287.731500px;}
.y25e{bottom:288.373500px;}
.y27f{bottom:289.834500px;}
.y165{bottom:289.879500px;}
.y1cb{bottom:292.330500px;}
.yfc{bottom:292.806000px;}
.y2a6{bottom:294.531000px;}
.y221{bottom:294.877500px;}
.y140{bottom:295.038000px;}
.y1f8{bottom:296.049000px;}
.y123{bottom:297.012000px;}
.y13{bottom:297.870000px;}
.y12f{bottom:299.595000px;}
.y1a1{bottom:300.837000px;}
.y74{bottom:302.160000px;}
.y95{bottom:303.207000px;}
.yd7{bottom:305.338500px;}
.y44{bottom:305.664000px;}
.y25d{bottom:306.306000px;}
.y27e{bottom:307.767000px;}
.y164{bottom:307.812000px;}
.y2a4{bottom:310.263000px;}
.y1e1{bottom:312.463500px;}
.y220{bottom:312.811500px;}
.y13f{bottom:312.972000px;}
.y122{bottom:314.944500px;}
.y298{bottom:316.305000px;}
.y1a0{bottom:318.769500px;}
.y2a7{bottom:321.375000px;}
.yb2{bottom:321.940500px;}
.yd6{bottom:323.271000px;}
.y43{bottom:323.596500px;}
.y25c{bottom:324.238500px;}
.y27d{bottom:325.699500px;}
.y163{bottom:325.744500px;}
.y12a{bottom:325.965000px;}
.y84{bottom:326.895000px;}
.y2a3{bottom:328.195500px;}
.yed{bottom:328.575000px;}
.yfb{bottom:328.671000px;}
.y17e{bottom:328.905000px;}
.y1e4{bottom:329.145000px;}
.y72{bottom:330.396000px;}
.y75{bottom:330.435000px;}
.y21f{bottom:330.744000px;}
.y1f7{bottom:331.914000px;}
.y121{bottom:332.877000px;}
.y28a{bottom:336.060000px;}
.y19f{bottom:336.702000px;}
.y1ca{bottom:338.746500px;}
.y94{bottom:339.072000px;}
.yd5{bottom:341.205000px;}
.y42{bottom:341.529000px;}
.y238{bottom:341.625000px;}
.y25b{bottom:342.172500px;}
.y27c{bottom:343.632000px;}
.y162{bottom:343.677000px;}
.y12{bottom:345.232500px;}
.y1b3{bottom:347.265000px;}
.y71{bottom:348.328500px;}
.y21e{bottom:348.676500px;}
.y13e{bottom:348.837000px;}
.y1f6{bottom:349.846500px;}
.y19e{bottom:354.634500px;}
.y263{bottom:356.430000px;}
.yd4{bottom:359.137500px;}
.y41{bottom:359.461500px;}
.y25a{bottom:360.105000px;}
.y2ae{bottom:361.185000px;}
.y27b{bottom:361.566000px;}
.y161{bottom:361.611000px;}
.yfa{bottom:366.285000px;}
.y21d{bottom:366.609000px;}
.y13d{bottom:366.769500px;}
.y120{bottom:368.742000px;}
.y1ed{bottom:369.300000px;}
.y294{bottom:372.568500px;}
.y93{bottom:373.219500px;}
.y1c9{bottom:374.611500px;}
.yd3{bottom:377.070000px;}
.y40{bottom:377.395500px;}
.y27a{bottom:379.498500px;}
.y160{bottom:379.543500px;}
.y17f{bottom:379.881000px;}
.y11{bottom:381.097500px;}
.yb1{bottom:381.496500px;}
.y70{bottom:384.195000px;}
.yf9{bottom:384.217500px;}
.y21c{bottom:384.541500px;}
.y1e0{bottom:385.942500px;}
.y1f5{bottom:387.460500px;}
.y19d{bottom:390.501000px;}
.y92{bottom:391.152000px;}
.yd2{bottom:395.002500px;}
.y3f{bottom:395.328000px;}
.y259{bottom:395.970000px;}
.y279{bottom:397.431000px;}
.y15f{bottom:397.476000px;}
.y13c{bottom:398.742000px;}
.yec{bottom:402.127500px;}
.yf8{bottom:402.150000px;}
.y21b{bottom:402.474000px;}
.y1df{bottom:403.875000px;}
.y1f4{bottom:405.393000px;}
.y11f{bottom:406.356000px;}
.y293{bottom:408.433500px;}
.y91{bottom:409.084500px;}
.y1c8{bottom:410.476500px;}
.yd1{bottom:412.935000px;}
.y3e{bottom:413.260500px;}
.y278{bottom:415.363500px;}
.y15e{bottom:415.408500px;}
.y13b{bottom:416.676000px;}
.y10{bottom:416.964000px;}
.y6f{bottom:420.060000px;}
.yf7{bottom:420.084000px;}
.y21a{bottom:420.408000px;}
.y79{bottom:420.570000px;}
.y12b{bottom:420.870000px;}
.y1de{bottom:421.807500px;}
.y1f3{bottom:423.327000px;}
.y11e{bottom:424.288500px;}
.y90{bottom:427.017000px;}
.y19c{bottom:428.190000px;}
.y1c7{bottom:428.409000px;}
.y3d{bottom:431.193000px;}
.y277{bottom:433.296000px;}
.y15d{bottom:433.341000px;}
.y258{bottom:433.584000px;}
.y13a{bottom:434.608500px;}
.yeb{bottom:437.992500px;}
.yf6{bottom:438.016500px;}
.y219{bottom:438.340500px;}
.y1dd{bottom:439.741500px;}
.yb0{bottom:439.905000px;}
.y1f2{bottom:441.259500px;}
.y1b4{bottom:441.690000px;}
.y11d{bottom:442.221000px;}
.y8f{bottom:444.949500px;}
.y19b{bottom:446.122500px;}
.y2a2{bottom:446.343000px;}
.y3c{bottom:449.125500px;}
.y276{bottom:451.228500px;}
.y15c{bottom:451.273500px;}
.y257{bottom:451.516500px;}
.y139{bottom:452.541000px;}
.y218{bottom:456.273000px;}
.y6e{bottom:457.674000px;}
.yaf{bottom:457.837500px;}
.y1f1{bottom:459.192000px;}
.yd0{bottom:459.351000px;}
.y11c{bottom:460.155000px;}
.y134{bottom:463.785000px;}
.y19a{bottom:464.055000px;}
.y1c6{bottom:464.275500px;}
.y3b{bottom:467.058000px;}
.y275{bottom:469.162500px;}
.y15b{bottom:469.207500px;}
.y256{bottom:469.449000px;}
.y138{bottom:470.473500px;}
.yea{bottom:473.857500px;}
.y217{bottom:474.205500px;}
.y6d{bottom:475.606500px;}
.yae{bottom:475.771500px;}
.yf{bottom:476.394000px;}
.ycf{bottom:477.283500px;}
.y11b{bottom:478.087500px;}
.y199{bottom:481.987500px;}
.y3a{bottom:484.992000px;}
.y274{bottom:487.095000px;}
.y15a{bottom:487.140000px;}
.y255{bottom:487.383000px;}
.yf5{bottom:487.570500px;}
.y8e{bottom:490.344000px;}
.y216{bottom:492.138000px;}
.y6c{bottom:493.539000px;}
.yad{bottom:493.704000px;}
.y11a{bottom:496.020000px;}
.y198{bottom:499.920000px;}
.y2a1{bottom:500.140500px;}
.y39{bottom:502.924500px;}
.y273{bottom:505.027500px;}
.y159{bottom:505.072500px;}
.y254{bottom:505.315500px;}
.y1f0{bottom:505.578000px;}
.y1dc{bottom:507.318000px;}
.y215{bottom:510.070500px;}
.y137{bottom:510.090000px;}
.y6b{bottom:511.471500px;}
.yac{bottom:511.636500px;}
.yce{bottom:513.150000px;}
.y119{bottom:513.952500px;}
.y1c5{bottom:517.603500px;}
.y292{bottom:517.852500px;}
.y38{bottom:520.857000px;}
.y272{bottom:522.960000px;}
.y158{bottom:523.005000px;}
.y253{bottom:523.248000px;}
.yf4{bottom:523.435500px;}
.y1ef{bottom:523.510500px;}
.y1db{bottom:525.250500px;}
.y8d{bottom:526.209000px;}
.y214{bottom:528.004500px;}
.y136{bottom:528.024000px;}
.ye9{bottom:529.404000px;}
.y6a{bottom:529.405500px;}
.ycd{bottom:531.082500px;}
.ye{bottom:534.744000px;}
.y37{bottom:538.789500px;}
.y271{bottom:540.892500px;}
.y157{bottom:540.937500px;}
.y252{bottom:541.180500px;}
.y1da{bottom:543.183000px;}
.y213{bottom:545.937000px;}
.y197{bottom:546.336000px;}
.ye8{bottom:547.338000px;}
.y2a0{bottom:553.468500px;}
.y36{bottom:556.722000px;}
.y270{bottom:558.825000px;}
.y156{bottom:558.870000px;}
.yf3{bottom:559.302000px;}
.y1ee{bottom:559.375500px;}
.y2a5{bottom:561.115500px;}
.yab{bottom:561.190500px;}
.yd{bottom:561.610500px;}
.y8c{bottom:562.075500px;}
.y237{bottom:563.521500px;}
.y118{bottom:563.686500px;}
.y212{bottom:563.869500px;}
.y135{bottom:563.889000px;}
.y196{bottom:564.268500px;}
.ye7{bottom:565.270500px;}
.y1c4{bottom:565.434000px;}
.ycc{bottom:566.947500px;}
.y35{bottom:574.654500px;}
.y26f{bottom:576.759000px;}
.y155{bottom:576.804000px;}
.y69{bottom:579.048000px;}
.y236{bottom:581.454000px;}
.y117{bottom:581.619000px;}
.y211{bottom:581.802000px;}
.y291{bottom:582.202500px;}
.ye6{bottom:583.203000px;}
.y1c3{bottom:583.368000px;}
.yc{bottom:588.478500px;}
.y251{bottom:590.914500px;}
.y34{bottom:592.588500px;}
.y73{bottom:594.001500px;}
.y26e{bottom:594.691500px;}
.y154{bottom:594.736500px;}
.y68{bottom:596.982000px;}
.yaa{bottom:597.055500px;}
.y116{bottom:599.551500px;}
.y210{bottom:599.734500px;}
.y195{bottom:600.135000px;}
.y1c2{bottom:601.300500px;}
.y250{bottom:608.847000px;}
.y33{bottom:610.521000px;}
.y26d{bottom:612.624000px;}
.y153{bottom:612.669000px;}
.y67{bottom:614.914500px;}
.ya9{bottom:614.989500px;}
.yb{bottom:615.346500px;}
.y1d9{bottom:616.737000px;}
.y235{bottom:617.320500px;}
.y1c1{bottom:619.233000px;}
.ycb{bottom:620.275500px;}
.y24f{bottom:626.779500px;}
.y32{bottom:628.453500px;}
.y26c{bottom:630.556500px;}
.y152{bottom:630.601500px;}
.ye5{bottom:632.847000px;}
.ya8{bottom:632.922000px;}
.y1d8{bottom:634.669500px;}
.y194{bottom:636.000000px;}
.y1c0{bottom:637.165500px;}
.ya{bottom:642.214500px;}
.y20f{bottom:646.150500px;}
.y31{bottom:646.386000px;}
.y26b{bottom:648.489000px;}
.y151{bottom:648.534000px;}
.y66{bottom:650.779500px;}
.ya7{bottom:650.854500px;}
.y1d7{bottom:652.603500px;}
.y17c{bottom:653.185500px;}
.y115{bottom:653.350500px;}
.y1bf{bottom:655.098000px;}
.yca{bottom:656.835000px;}
.y20e{bottom:664.083000px;}
.y30{bottom:664.318500px;}
.y26a{bottom:666.421500px;}
.y150{bottom:666.466500px;}
.ye4{bottom:668.712000px;}
.ya6{bottom:668.787000px;}
.y9{bottom:669.081000px;}
.y1d6{bottom:670.536000px;}
.y17b{bottom:671.118000px;}
.y114{bottom:671.283000px;}
.y1be{bottom:673.030500px;}
.y193{bottom:673.614000px;}
.y24e{bottom:680.578500px;}
.y2f{bottom:682.251000px;}
.y269{bottom:684.355500px;}
.y14f{bottom:684.400500px;}
.ya5{bottom:686.719500px;}
.y65{bottom:688.468500px;}
.y113{bottom:689.215500px;}
.y234{bottom:690.799500px;}
.y29f{bottom:690.964500px;}
.y192{bottom:691.546500px;}
.y8{bottom:695.949000px;}
.y24d{bottom:698.511000px;}
.y20d{bottom:699.949500px;}
.y2e{bottom:700.185000px;}
.ye3{bottom:704.578500px;}
.ya4{bottom:704.652000px;}
.y64{bottom:706.401000px;}
.y17a{bottom:706.984500px;}
.y112{bottom:707.148000px;}
.yc9{bottom:707.656500px;}
.y233{bottom:708.732000px;}
.y29e{bottom:708.897000px;}
.y191{bottom:709.479000px;}
.y24c{bottom:716.443500px;}
.y20c{bottom:717.882000px;}
.y2d{bottom:718.117500px;}
.ya3{bottom:722.586000px;}
.y7{bottom:722.817000px;}
.y63{bottom:724.333500px;}
.y111{bottom:725.080500px;}
.yc8{bottom:725.589000px;}
.y232{bottom:726.664500px;}
.y190{bottom:727.411500px;}
.y268{bottom:730.771500px;}
.y14e{bottom:730.815000px;}
.y24b{bottom:734.376000px;}
.y2c{bottom:736.050000px;}
.ya2{bottom:740.518500px;}
.y62{bottom:742.266000px;}
.y179{bottom:742.849500px;}
.y110{bottom:743.013000px;}
.yc7{bottom:743.521500px;}
.y231{bottom:744.598500px;}
.y18f{bottom:745.345500px;}
.y6{bottom:749.685000px;}
.y24a{bottom:752.308500px;}
.y20b{bottom:753.747000px;}
.y2b{bottom:753.982500px;}
.ya1{bottom:758.451000px;}
.y61{bottom:760.200000px;}
.y10f{bottom:760.947000px;}
.yc6{bottom:761.454000px;}
.y230{bottom:762.531000px;}
.y267{bottom:766.636500px;}
.y14d{bottom:766.681500px;}
.y249{bottom:770.241000px;}
.y2a{bottom:771.915000px;}
.ya0{bottom:776.383500px;}
.y60{bottom:778.132500px;}
.y10e{bottom:778.879500px;}
.yc5{bottom:779.388000px;}
.y178{bottom:780.463500px;}
.y248{bottom:788.175000px;}
.y29{bottom:789.847500px;}
.y5{bottom:791.496000px;}
.y18e{bottom:793.749000px;}
.y9f{bottom:794.316000px;}
.y5f{bottom:796.065000px;}
.y10d{bottom:796.812000px;}
.yc4{bottom:797.320500px;}
.y177{bottom:798.396000px;}
.y266{bottom:802.501500px;}
.y14c{bottom:802.546500px;}
.y247{bottom:806.107500px;}
.y20a{bottom:807.075000px;}
.y22f{bottom:812.175000px;}
.y9e{bottom:812.248500px;}
.y5e{bottom:813.997500px;}
.y10c{bottom:814.744500px;}
.yc3{bottom:815.253000px;}
.y176{bottom:816.328500px;}
.y265{bottom:820.434000px;}
.y14b{bottom:820.479000px;}
.y246{bottom:824.040000px;}
.y18d{bottom:829.614000px;}
.y22e{bottom:830.107500px;}
.y1ae{bottom:830.182500px;}
.y5d{bottom:831.930000px;}
.yc2{bottom:833.185500px;}
.y4{bottom:833.307000px;}
.y175{bottom:834.261000px;}
.y28{bottom:836.263500px;}
.y76{bottom:837.001500px;}
.y245{bottom:841.972500px;}
.y209{bottom:843.634500px;}
.y22d{bottom:848.040000px;}
.y9d{bottom:848.115000px;}
.y5c{bottom:849.862500px;}
.y10b{bottom:850.609500px;}
.yc1{bottom:851.118000px;}
.y174{bottom:852.195000px;}
.y27{bottom:854.197500px;}
.y264{bottom:856.300500px;}
.y14a{bottom:856.345500px;}
.y1ad{bottom:866.047500px;}
.y18c{bottom:867.228000px;}
.y5b{bottom:867.796500px;}
.yc0{bottom:869.050500px;}
.y244{bottom:877.837500px;}
.y22c{bottom:883.905000px;}
.y1ac{bottom:883.980000px;}
.y18b{bottom:885.160500px;}
.y5a{bottom:885.729000px;}
.ybf{bottom:886.984500px;}
.y10a{bottom:888.298500px;}
.y26{bottom:890.062500px;}
.y208{bottom:894.456000px;}
.y173{bottom:901.837500px;}
.y1bd{bottom:901.912500px;}
.y18a{bottom:903.093000px;}
.y59{bottom:903.661500px;}
.ybe{bottom:904.917000px;}
.y109{bottom:906.231000px;}
.y3{bottom:906.444000px;}
.y25{bottom:907.995000px;}
.y149{bottom:909.627000px;}
.y207{bottom:912.388500px;}
.y243{bottom:915.526500px;}
.y172{bottom:919.771500px;}
.y1ab{bottom:919.845000px;}
.y189{bottom:921.025500px;}
.y58{bottom:921.594000px;}
.ybd{bottom:922.849500px;}
.y108{bottom:924.165000px;}
.y206{bottom:930.321000px;}
.y242{bottom:933.459000px;}
.y171{bottom:937.704000px;}
.y1bc{bottom:937.779000px;}
.y188{bottom:938.959500px;}
.y57{bottom:939.526500px;}
.ybc{bottom:940.782000px;}
.y107{bottom:942.097500px;}
.y205{bottom:948.253500px;}
.y2{bottom:950.019000px;}
.y241{bottom:951.393000px;}
.y24{bottom:951.571500px;}
.y29d{bottom:955.711500px;}
.y56{bottom:957.459000px;}
.y106{bottom:960.030000px;}
.y204{bottom:966.187500px;}
.y240{bottom:969.325500px;}
.y23{bottom:969.504000px;}
.y170{bottom:973.569000px;}
.y1bb{bottom:973.644000px;}
.y55{bottom:975.393000px;}
.y203{bottom:984.120000px;}
.y23f{bottom:987.258000px;}
.y22{bottom:987.436500px;}
.y187{bottom:988.513500px;}
.ybb{bottom:990.426000px;}
.y1ba{bottom:991.576500px;}
.y54{bottom:993.325500px;}
.y202{bottom:1002.052500px;}
.y1{bottom:1002.291000px;}
.y21{bottom:1005.370500px;}
.y105{bottom:1006.446000px;}
.y29c{bottom:1009.509000px;}
.y53{bottom:1011.258000px;}
.y20{bottom:1023.303000px;}
.y104{bottom:1024.378500px;}
.y52{bottom:1029.190500px;}
.y23e{bottom:1033.674000px;}
.y1f{bottom:1041.235500px;}
.y51{bottom:1047.123000px;}
.y201{bottom:1051.606500px;}
.y1e{bottom:1059.168000px;}
.y103{bottom:1060.243500px;}
.y50{bottom:1065.055500px;}
.h7{height:39.810550px;}
.h6{height:41.484266px;}
.hd{height:41.490266px;}
.h5{height:42.141798px;}
.hc{height:43.804688px;}
.h4{height:44.831700px;}
.h12{height:45.664687px;}
.h13{height:45.784687px;}
.h2{height:50.498765px;}
.he{height:53.798400px;}
.hf{height:56.320312px;}
.h9{height:62.578125px;}
.h3{height:64.557900px;}
.h10{height:68.835938px;}
.h1{height:72.201388px;}
.hb{height:75.093750px;}
.h11{height:81.351562px;}
.ha{height:243.000000px;}
.h8{height:486.000000px;}
.h0{height:1188.000000px;}
.w2{width:351.000000px;}
.w1{width:702.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:16.140000px;}
.x2b{left:20.070000px;}
.x28{left:27.810000px;}
.x36{left:35.310000px;}
.x3e{left:42.705000px;}
.x40{left:50.220000px;}
.x9{left:51.990000px;}
.x2e{left:61.470000px;}
.x1f{left:70.110000px;}
.x30{left:74.490000px;}
.x21{left:83.955000px;}
.x12{left:86.865000px;}
.x8{left:88.095000px;}
.xf{left:92.115000px;}
.x42{left:99.210000px;}
.x37{left:102.465000px;}
.x18{left:105.015000px;}
.x13{left:106.995000px;}
.x4{left:108.000000px;}
.x3c{left:111.960000px;}
.x26{left:114.630000px;}
.x3b{left:115.845000px;}
.xc{left:117.405000px;}
.x38{left:119.565000px;}
.x10{left:122.565000px;}
.x1d{left:123.691500px;}
.x29{left:128.055000px;}
.x5{left:130.416000px;}
.x11{left:132.150000px;}
.x1e{left:139.383000px;}
.x1c{left:142.395000px;}
.x32{left:146.955000px;}
.xa{left:151.095000px;}
.x27{left:162.919500px;}
.x6{left:164.787000px;}
.x35{left:170.145000px;}
.x39{left:204.360000px;}
.x31{left:229.275000px;}
.x20{left:240.030000px;}
.x43{left:256.440000px;}
.x33{left:257.790000px;}
.x25{left:260.550000px;}
.x22{left:264.660000px;}
.x41{left:270.495000px;}
.x1{left:278.346000px;}
.x3d{left:280.350000px;}
.x3f{left:284.100000px;}
.xd{left:288.315000px;}
.x2a{left:289.740000px;}
.xe{left:294.150000px;}
.x2f{left:351.213000px;}
.x2{left:363.346500px;}
.x15{left:402.990000px;}
.x19{left:416.310000px;}
.x3{left:418.005000px;}
.x23{left:421.110000px;}
.x34{left:425.490000px;}
.x1b{left:435.345000px;}
.x14{left:439.095000px;}
.x24{left:451.035000px;}
.x3a{left:453.465000px;}
.x7{left:455.263500px;}
.x16{left:459.000000px;}
.x1a{left:466.470000px;}
.x17{left:482.640000px;}
.x2c{left:615.870000px;}
.x2d{left:650.010000px;}
@media print{
.v1{vertical-align:-8.160000pt;}
.v2{vertical-align:-5.813333pt;}
.v3{vertical-align:-4.480000pt;}
.v5{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.653333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.003387pt;}
.ls0{letter-spacing:26.566933pt;}
.ls1{letter-spacing:27.891387pt;}
.ls2{letter-spacing:27.896720pt;}
.ls5{letter-spacing:55.790053pt;}
.ls9{letter-spacing:92.576000pt;}
.ls6{letter-spacing:115.573333pt;}
.ls8{letter-spacing:150.133333pt;}
.ls7{letter-spacing:280.736000pt;}
.lsa{letter-spacing:300.682667pt;}
.ws58{word-spacing:-164.960000pt;}
.ws44{word-spacing:-130.400000pt;}
.wsc{word-spacing:-27.895280pt;}
.ws4{word-spacing:-23.403666pt;}
.ws2{word-spacing:-21.423659pt;}
.ws6{word-spacing:-18.840630pt;}
.ws3f{word-spacing:-16.309333pt;}
.wsb{word-spacing:-14.877483pt;}
.ws40{word-spacing:-13.344000pt;}
.ws7{word-spacing:-9.605282pt;}
.ws9{word-spacing:-9.604764pt;}
.ws8{word-spacing:-9.558518pt;}
.ws11{word-spacing:-0.053134pt;}
.ws32{word-spacing:-0.004400pt;}
.ws2a{word-spacing:-0.003893pt;}
.ws14{word-spacing:-0.003467pt;}
.ws41{word-spacing:-0.002960pt;}
.ws13{word-spacing:-0.002453pt;}
.ws29{word-spacing:-0.002027pt;}
.ws2e{word-spacing:-0.001520pt;}
.ws3d{word-spacing:-0.001013pt;}
.ws3c{word-spacing:-0.000587pt;}
.wsf{word-spacing:-0.000507pt;}
.ws19{word-spacing:-0.000080pt;}
.wsd{word-spacing:0.000000pt;}
.ws26{word-spacing:0.000427pt;}
.ws10{word-spacing:0.000933pt;}
.ws30{word-spacing:0.001867pt;}
.ws1a{word-spacing:0.002373pt;}
.wse{word-spacing:0.002880pt;}
.ws27{word-spacing:0.004320pt;}
.ws15{word-spacing:0.004827pt;}
.ws24{word-spacing:0.005253pt;}
.ws2c{word-spacing:0.005760pt;}
.ws2b{word-spacing:0.049667pt;}
.ws42{word-spacing:0.055001pt;}
.ws0{word-spacing:2.019940pt;}
.ws1{word-spacing:2.933009pt;}
.ws3{word-spacing:5.472788pt;}
.ws2f{word-spacing:6.057301pt;}
.wsa{word-spacing:7.268741pt;}
.ws31{word-spacing:12.964663pt;}
.ws18{word-spacing:13.017797pt;}
.ws12{word-spacing:13.018224pt;}
.ws28{word-spacing:13.018731pt;}
.ws23{word-spacing:13.019664pt;}
.ws5{word-spacing:16.965903pt;}
.ws2d{word-spacing:27.895280pt;}
.ws1d{word-spacing:31.360000pt;}
.ws54{word-spacing:32.213333pt;}
.ws45{word-spacing:34.666667pt;}
.ws4e{word-spacing:34.826667pt;}
.ws56{word-spacing:35.946667pt;}
.ws5a{word-spacing:36.426667pt;}
.ws16{word-spacing:40.914011pt;}
.ws1f{word-spacing:41.013333pt;}
.ws4b{word-spacing:41.333333pt;}
.ws4c{word-spacing:42.346667pt;}
.ws59{word-spacing:42.826667pt;}
.ws53{word-spacing:43.520000pt;}
.ws5c{word-spacing:44.960000pt;}
.ws39{word-spacing:47.466667pt;}
.ws61{word-spacing:47.946667pt;}
.ws21{word-spacing:49.226667pt;}
.ws17{word-spacing:55.790560pt;}
.ws36{word-spacing:55.946667pt;}
.ws5f{word-spacing:56.480000pt;}
.ws34{word-spacing:57.120000pt;}
.ws48{word-spacing:57.280000pt;}
.ws4d{word-spacing:59.200000pt;}
.ws1c{word-spacing:60.746667pt;}
.ws49{word-spacing:61.440000pt;}
.ws5b{word-spacing:64.106667pt;}
.ws5e{word-spacing:65.920000pt;}
.ws51{word-spacing:66.506667pt;}
.ws55{word-spacing:67.040000pt;}
.ws4a{word-spacing:67.200000pt;}
.ws47{word-spacing:71.040000pt;}
.ws20{word-spacing:72.746667pt;}
.ws33{word-spacing:73.280000pt;}
.ws37{word-spacing:81.066667pt;}
.ws43{word-spacing:83.685840pt;}
.ws60{word-spacing:86.773333pt;}
.ws5d{word-spacing:87.146667pt;}
.ws1e{word-spacing:89.280000pt;}
.ws3a{word-spacing:98.080000pt;}
.ws35{word-spacing:103.786667pt;}
.ws50{word-spacing:122.613333pt;}
.ws38{word-spacing:140.533333pt;}
.ws22{word-spacing:188.800000pt;}
.ws3b{word-spacing:195.268827pt;}
.ws1b{word-spacing:334.746160pt;}
.ws3e{word-spacing:359.072000pt;}
.ws57{word-spacing:368.618667pt;}
.ws4f{word-spacing:374.965333pt;}
.ws46{word-spacing:471.466667pt;}
.ws52{word-spacing:485.280000pt;}
.ws25{word-spacing:530.010160pt;}
._31{margin-left:-150.133333pt;}
._27{margin-left:-115.626667pt;}
._6{margin-left:-26.566933pt;}
._b{margin-left:-13.208441pt;}
._7{margin-left:-8.926490pt;}
._9{margin-left:-7.683037pt;}
._1{margin-left:-5.164646pt;}
._18{margin-left:-3.200000pt;}
._2{margin-left:-2.295392pt;}
._13{margin-left:-1.333333pt;}
._3{width:2.295392pt;}
._12{width:27.895280pt;}
._a{width:31.945402pt;}
._0{width:36.909818pt;}
._d{width:55.790560pt;}
._8{width:58.562832pt;}
._2a{width:65.226667pt;}
._2e{width:66.346667pt;}
._16{width:71.466667pt;}
._28{width:73.440000pt;}
._21{width:77.866667pt;}
._11{width:83.685840pt;}
._20{width:86.346667pt;}
._1d{width:87.466667pt;}
._32{width:88.906667pt;}
._29{width:91.840000pt;}
._17{width:95.306667pt;}
._1c{width:102.933333pt;}
._c{width:111.581120pt;}
._14{width:119.680000pt;}
._1e{width:134.186667pt;}
._15{width:135.253333pt;}
._10{width:139.423266pt;}
._1f{width:149.760000pt;}
._2d{width:152.266667pt;}
._e{width:167.374480pt;}
._19{width:195.267387pt;}
._1a{width:223.165040pt;}
._f{width:251.059813pt;}
._22{width:278.953147pt;}
._24{width:306.848427pt;}
._23{width:334.743707pt;}
._1b{width:362.641440pt;}
._25{width:391.482667pt;}
._26{width:392.405333pt;}
._2f{width:401.029333pt;}
._30{width:401.952000pt;}
._2b{width:407.376000pt;}
._2c{width:408.352000pt;}
._5{width:1048.211041pt;}
._4{width:1297.727679pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.133867pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:64.000000pt;}
.fs9{font-size:69.333333pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y12d{bottom:10.533333pt;}
.y77{bottom:20.720000pt;}
.y12c{bottom:27.360000pt;}
.y7f{bottom:48.266667pt;}
.y85{bottom:51.120000pt;}
.y7d{bottom:52.586667pt;}
.y1d{bottom:56.149333pt;}
.y1b0{bottom:56.893333pt;}
.y8a{bottom:64.546667pt;}
.yef{bottom:73.880000pt;}
.y239{bottom:74.960000pt;}
.y89{bottom:75.120000pt;}
.y185{bottom:75.653333pt;}
.y2a8{bottom:75.720000pt;}
.y1e9{bottom:76.640000pt;}
.y28c{bottom:77.880000pt;}
.yf2{bottom:78.480000pt;}
.y1ea{bottom:79.426667pt;}
.y23b{bottom:79.480000pt;}
.y2ab{bottom:80.186667pt;}
.y81{bottom:81.613333pt;}
.y290{bottom:82.186667pt;}
.y7a{bottom:82.853333pt;}
.y7e{bottom:82.893333pt;}
.y23c{bottom:83.266667pt;}
.y1e6{bottom:84.693333pt;}
.y78{bottom:86.706667pt;}
.y181{bottom:87.213333pt;}
.y83{bottom:87.306667pt;}
.y7c{bottom:88.120000pt;}
.ye2{bottom:96.069333pt;}
.y1b9{bottom:96.326667pt;}
.y4f{bottom:96.358667pt;}
.y289{bottom:98.228000pt;}
.y16f{bottom:98.268000pt;}
.yba{bottom:100.440000pt;}
.y1d5{bottom:100.446667pt;}
.y2ac{bottom:100.786667pt;}
.y22b{bottom:102.712000pt;}
.y148{bottom:102.854667pt;}
.y1c{bottom:102.933333pt;}
.y9c{bottom:103.013333pt;}
.y200{bottom:103.752000pt;}
.y23d{bottom:104.110667pt;}
.y1aa{bottom:108.008000pt;}
.ye1{bottom:112.010667pt;}
.y1b8{bottom:112.266667pt;}
.y4e{bottom:112.298667pt;}
.y288{bottom:114.168000pt;}
.y16e{bottom:114.208000pt;}
.yb9{bottom:116.380000pt;}
.y1d4{bottom:116.386667pt;}
.y22a{bottom:118.652000pt;}
.y1b{bottom:118.874667pt;}
.y1ff{bottom:119.692000pt;}
.y102{bottom:120.050667pt;}
.y128{bottom:121.013333pt;}
.y17d{bottom:121.672000pt;}
.y1e7{bottom:123.120000pt;}
.y1a9{bottom:123.948000pt;}
.y1e5{bottom:124.506667pt;}
.ye0{bottom:127.950667pt;}
.y29b{bottom:128.206667pt;}
.y4d{bottom:128.238667pt;}
.y261{bottom:128.586667pt;}
.y1e8{bottom:129.333333pt;}
.y287{bottom:130.109333pt;}
.y16d{bottom:130.149333pt;}
.yb8{bottom:132.320000pt;}
.y1d3{bottom:132.326667pt;}
.y229{bottom:134.592000pt;}
.y147{bottom:134.734667pt;}
.y1a{bottom:134.814667pt;}
.y9b{bottom:134.894667pt;}
.y23a{bottom:135.360000pt;}
.y1fe{bottom:135.632000pt;}
.y28d{bottom:135.666667pt;}
.y28b{bottom:136.133333pt;}
.yf0{bottom:136.800000pt;}
.y183{bottom:136.840000pt;}
.yee{bottom:137.186667pt;}
.y186{bottom:137.213333pt;}
.y28f{bottom:137.520000pt;}
.y182{bottom:138.400000pt;}
.y180{bottom:138.666667pt;}
.y88{bottom:139.853333pt;}
.y1a8{bottom:139.889333pt;}
.y28e{bottom:140.213333pt;}
.y1b1{bottom:140.813333pt;}
.yf1{bottom:141.253333pt;}
.y2a9{bottom:141.320000pt;}
.y82{bottom:141.373333pt;}
.y7b{bottom:141.426667pt;}
.y87{bottom:141.613333pt;}
.y184{bottom:142.840000pt;}
.y2aa{bottom:143.173333pt;}
.ydf{bottom:143.890667pt;}
.y4c{bottom:144.180000pt;}
.y297{bottom:145.786667pt;}
.y86{bottom:145.853333pt;}
.y286{bottom:146.049333pt;}
.y16c{bottom:146.089333pt;}
.y1d2{bottom:148.268000pt;}
.y228{bottom:150.532000pt;}
.y146{bottom:150.674667pt;}
.y19{bottom:150.754667pt;}
.y101{bottom:153.485333pt;}
.y1b7{bottom:153.498667pt;}
.y295{bottom:155.829333pt;}
.y80{bottom:157.840000pt;}
.yde{bottom:159.830667pt;}
.y4b{bottom:160.120000pt;}
.y285{bottom:161.989333pt;}
.y16b{bottom:162.029333pt;}
.y1eb{bottom:162.373333pt;}
.y1d1{bottom:164.208000pt;}
.y9a{bottom:165.246667pt;}
.y227{bottom:166.472000pt;}
.y145{bottom:166.614667pt;}
.y1fd{bottom:167.513333pt;}
.y100{bottom:169.425333pt;}
.y1b6{bottom:169.438667pt;}
.y1a7{bottom:171.769333pt;}
.y133{bottom:172.440000pt;}
.yb7{bottom:174.588000pt;}
.ydd{bottom:175.770667pt;}
.y4a{bottom:176.060000pt;}
.y8b{bottom:177.040000pt;}
.y284{bottom:177.929333pt;}
.y16a{bottom:177.969333pt;}
.y1d0{bottom:180.148000pt;}
.y99{bottom:181.186667pt;}
.y226{bottom:182.413333pt;}
.y1fc{bottom:183.453333pt;}
.y18{bottom:185.072000pt;}
.yff{bottom:185.365333pt;}
.y29a{bottom:185.378667pt;}
.y1a6{bottom:187.709333pt;}
.ydc{bottom:191.710667pt;}
.y49{bottom:192.000000pt;}
.y12e{bottom:192.906667pt;}
.y283{bottom:193.869333pt;}
.y169{bottom:193.909333pt;}
.y132{bottom:195.480000pt;}
.y1cf{bottom:196.088000pt;}
.y98{bottom:197.128000pt;}
.y225{bottom:198.353333pt;}
.y144{bottom:198.496000pt;}
.y1fb{bottom:199.393333pt;}
.y127{bottom:200.249333pt;}
.y17{bottom:201.012000pt;}
.yfe{bottom:201.306667pt;}
.y1b5{bottom:201.320000pt;}
.y1a5{bottom:203.649333pt;}
.y129{bottom:205.386667pt;}
.yb6{bottom:206.468000pt;}
.ydb{bottom:207.652000pt;}
.y48{bottom:207.940000pt;}
.y282{bottom:209.809333pt;}
.y168{bottom:209.849333pt;}
.y2ad{bottom:210.920000pt;}
.y1ce{bottom:212.028000pt;}
.y97{bottom:213.068000pt;}
.y224{bottom:214.293333pt;}
.y143{bottom:214.436000pt;}
.y1fa{bottom:215.333333pt;}
.y126{bottom:216.189333pt;}
.y16{bottom:216.952000pt;}
.yfd{bottom:217.246667pt;}
.y299{bottom:217.260000pt;}
.y131{bottom:218.520000pt;}
.y1a4{bottom:219.589333pt;}
.yb5{bottom:222.408000pt;}
.y262{bottom:222.706667pt;}
.yda{bottom:223.592000pt;}
.y47{bottom:223.880000pt;}
.y260{bottom:224.452000pt;}
.y1b2{bottom:224.746667pt;}
.y281{bottom:225.750667pt;}
.y167{bottom:225.790667pt;}
.y1cd{bottom:227.968000pt;}
.y96{bottom:229.008000pt;}
.y1e3{bottom:229.924000pt;}
.y223{bottom:230.233333pt;}
.y142{bottom:230.376000pt;}
.y1f9{bottom:231.273333pt;}
.y1af{bottom:232.097333pt;}
.y125{bottom:232.129333pt;}
.y15{bottom:232.893333pt;}
.y1a3{bottom:235.530667pt;}
.yb4{bottom:238.349333pt;}
.yd9{bottom:239.532000pt;}
.y46{bottom:239.821333pt;}
.y25f{bottom:240.392000pt;}
.y130{bottom:241.560000pt;}
.y280{bottom:241.690667pt;}
.y166{bottom:241.730667pt;}
.y1cc{bottom:243.909333pt;}
.y1ec{bottom:245.320000pt;}
.y1e2{bottom:245.865333pt;}
.y222{bottom:246.173333pt;}
.y141{bottom:246.316000pt;}
.y296{bottom:248.037333pt;}
.y124{bottom:248.069333pt;}
.y14{bottom:248.833333pt;}
.y1a2{bottom:251.470667pt;}
.yb3{bottom:254.289333pt;}
.yd8{bottom:255.472000pt;}
.y45{bottom:255.761333pt;}
.y25e{bottom:256.332000pt;}
.y27f{bottom:257.630667pt;}
.y165{bottom:257.670667pt;}
.y1cb{bottom:259.849333pt;}
.yfc{bottom:260.272000pt;}
.y2a6{bottom:261.805333pt;}
.y221{bottom:262.113333pt;}
.y140{bottom:262.256000pt;}
.y1f8{bottom:263.154667pt;}
.y123{bottom:264.010667pt;}
.y13{bottom:264.773333pt;}
.y12f{bottom:266.306667pt;}
.y1a1{bottom:267.410667pt;}
.y74{bottom:268.586667pt;}
.y95{bottom:269.517333pt;}
.yd7{bottom:271.412000pt;}
.y44{bottom:271.701333pt;}
.y25d{bottom:272.272000pt;}
.y27e{bottom:273.570667pt;}
.y164{bottom:273.610667pt;}
.y2a4{bottom:275.789333pt;}
.y1e1{bottom:277.745333pt;}
.y220{bottom:278.054667pt;}
.y13f{bottom:278.197333pt;}
.y122{bottom:279.950667pt;}
.y298{bottom:281.160000pt;}
.y1a0{bottom:283.350667pt;}
.y2a7{bottom:285.666667pt;}
.yb2{bottom:286.169333pt;}
.yd6{bottom:287.352000pt;}
.y43{bottom:287.641333pt;}
.y25c{bottom:288.212000pt;}
.y27d{bottom:289.510667pt;}
.y163{bottom:289.550667pt;}
.y12a{bottom:289.746667pt;}
.y84{bottom:290.573333pt;}
.y2a3{bottom:291.729333pt;}
.yed{bottom:292.066667pt;}
.yfb{bottom:292.152000pt;}
.y17e{bottom:292.360000pt;}
.y1e4{bottom:292.573333pt;}
.y72{bottom:293.685333pt;}
.y75{bottom:293.720000pt;}
.y21f{bottom:293.994667pt;}
.y1f7{bottom:295.034667pt;}
.y121{bottom:295.890667pt;}
.y28a{bottom:298.720000pt;}
.y19f{bottom:299.290667pt;}
.y1ca{bottom:301.108000pt;}
.y94{bottom:301.397333pt;}
.yd5{bottom:303.293333pt;}
.y42{bottom:303.581333pt;}
.y238{bottom:303.666667pt;}
.y25b{bottom:304.153333pt;}
.y27c{bottom:305.450667pt;}
.y162{bottom:305.490667pt;}
.y12{bottom:306.873333pt;}
.y1b3{bottom:308.680000pt;}
.y71{bottom:309.625333pt;}
.y21e{bottom:309.934667pt;}
.y13e{bottom:310.077333pt;}
.y1f6{bottom:310.974667pt;}
.y19e{bottom:315.230667pt;}
.y263{bottom:316.826667pt;}
.yd4{bottom:319.233333pt;}
.y41{bottom:319.521333pt;}
.y25a{bottom:320.093333pt;}
.y2ae{bottom:321.053333pt;}
.y27b{bottom:321.392000pt;}
.y161{bottom:321.432000pt;}
.yfa{bottom:325.586667pt;}
.y21d{bottom:325.874667pt;}
.y13d{bottom:326.017333pt;}
.y120{bottom:327.770667pt;}
.y1ed{bottom:328.266667pt;}
.y294{bottom:331.172000pt;}
.y93{bottom:331.750667pt;}
.y1c9{bottom:332.988000pt;}
.yd3{bottom:335.173333pt;}
.y40{bottom:335.462667pt;}
.y27a{bottom:337.332000pt;}
.y160{bottom:337.372000pt;}
.y17f{bottom:337.672000pt;}
.y11{bottom:338.753333pt;}
.yb1{bottom:339.108000pt;}
.y70{bottom:341.506667pt;}
.yf9{bottom:341.526667pt;}
.y21c{bottom:341.814667pt;}
.y1e0{bottom:343.060000pt;}
.y1f5{bottom:344.409333pt;}
.y19d{bottom:347.112000pt;}
.y92{bottom:347.690667pt;}
.yd2{bottom:351.113333pt;}
.y3f{bottom:351.402667pt;}
.y259{bottom:351.973333pt;}
.y279{bottom:353.272000pt;}
.y15f{bottom:353.312000pt;}
.y13c{bottom:354.437333pt;}
.yec{bottom:357.446667pt;}
.yf8{bottom:357.466667pt;}
.y21b{bottom:357.754667pt;}
.y1df{bottom:359.000000pt;}
.y1f4{bottom:360.349333pt;}
.y11f{bottom:361.205333pt;}
.y293{bottom:363.052000pt;}
.y91{bottom:363.630667pt;}
.y1c8{bottom:364.868000pt;}
.yd1{bottom:367.053333pt;}
.y3e{bottom:367.342667pt;}
.y278{bottom:369.212000pt;}
.y15e{bottom:369.252000pt;}
.y13b{bottom:370.378667pt;}
.y10{bottom:370.634667pt;}
.y6f{bottom:373.386667pt;}
.yf7{bottom:373.408000pt;}
.y21a{bottom:373.696000pt;}
.y79{bottom:373.840000pt;}
.y12b{bottom:374.106667pt;}
.y1de{bottom:374.940000pt;}
.y1f3{bottom:376.290667pt;}
.y11e{bottom:377.145333pt;}
.y90{bottom:379.570667pt;}
.y19c{bottom:380.613333pt;}
.y1c7{bottom:380.808000pt;}
.y3d{bottom:383.282667pt;}
.y277{bottom:385.152000pt;}
.y15d{bottom:385.192000pt;}
.y258{bottom:385.408000pt;}
.y13a{bottom:386.318667pt;}
.yeb{bottom:389.326667pt;}
.yf6{bottom:389.348000pt;}
.y219{bottom:389.636000pt;}
.y1dd{bottom:390.881333pt;}
.yb0{bottom:391.026667pt;}
.y1f2{bottom:392.230667pt;}
.y1b4{bottom:392.613333pt;}
.y11d{bottom:393.085333pt;}
.y8f{bottom:395.510667pt;}
.y19b{bottom:396.553333pt;}
.y2a2{bottom:396.749333pt;}
.y3c{bottom:399.222667pt;}
.y276{bottom:401.092000pt;}
.y15c{bottom:401.132000pt;}
.y257{bottom:401.348000pt;}
.y139{bottom:402.258667pt;}
.y218{bottom:405.576000pt;}
.y6e{bottom:406.821333pt;}
.yaf{bottom:406.966667pt;}
.y1f1{bottom:408.170667pt;}
.yd0{bottom:408.312000pt;}
.y11c{bottom:409.026667pt;}
.y134{bottom:412.253333pt;}
.y19a{bottom:412.493333pt;}
.y1c6{bottom:412.689333pt;}
.y3b{bottom:415.162667pt;}
.y275{bottom:417.033333pt;}
.y15b{bottom:417.073333pt;}
.y256{bottom:417.288000pt;}
.y138{bottom:418.198667pt;}
.yea{bottom:421.206667pt;}
.y217{bottom:421.516000pt;}
.y6d{bottom:422.761333pt;}
.yae{bottom:422.908000pt;}
.yf{bottom:423.461333pt;}
.ycf{bottom:424.252000pt;}
.y11b{bottom:424.966667pt;}
.y199{bottom:428.433333pt;}
.y3a{bottom:431.104000pt;}
.y274{bottom:432.973333pt;}
.y15a{bottom:433.013333pt;}
.y255{bottom:433.229333pt;}
.yf5{bottom:433.396000pt;}
.y8e{bottom:435.861333pt;}
.y216{bottom:437.456000pt;}
.y6c{bottom:438.701333pt;}
.yad{bottom:438.848000pt;}
.y11a{bottom:440.906667pt;}
.y198{bottom:444.373333pt;}
.y2a1{bottom:444.569333pt;}
.y39{bottom:447.044000pt;}
.y273{bottom:448.913333pt;}
.y159{bottom:448.953333pt;}
.y254{bottom:449.169333pt;}
.y1f0{bottom:449.402667pt;}
.y1dc{bottom:450.949333pt;}
.y215{bottom:453.396000pt;}
.y137{bottom:453.413333pt;}
.y6b{bottom:454.641333pt;}
.yac{bottom:454.788000pt;}
.yce{bottom:456.133333pt;}
.y119{bottom:456.846667pt;}
.y1c5{bottom:460.092000pt;}
.y292{bottom:460.313333pt;}
.y38{bottom:462.984000pt;}
.y272{bottom:464.853333pt;}
.y158{bottom:464.893333pt;}
.y253{bottom:465.109333pt;}
.yf4{bottom:465.276000pt;}
.y1ef{bottom:465.342667pt;}
.y1db{bottom:466.889333pt;}
.y8d{bottom:467.741333pt;}
.y214{bottom:469.337333pt;}
.y136{bottom:469.354667pt;}
.ye9{bottom:470.581333pt;}
.y6a{bottom:470.582667pt;}
.ycd{bottom:472.073333pt;}
.ye{bottom:475.328000pt;}
.y37{bottom:478.924000pt;}
.y271{bottom:480.793333pt;}
.y157{bottom:480.833333pt;}
.y252{bottom:481.049333pt;}
.y1da{bottom:482.829333pt;}
.y213{bottom:485.277333pt;}
.y197{bottom:485.632000pt;}
.ye8{bottom:486.522667pt;}
.y2a0{bottom:491.972000pt;}
.y36{bottom:494.864000pt;}
.y270{bottom:496.733333pt;}
.y156{bottom:496.773333pt;}
.yf3{bottom:497.157333pt;}
.y1ee{bottom:497.222667pt;}
.y2a5{bottom:498.769333pt;}
.yab{bottom:498.836000pt;}
.yd{bottom:499.209333pt;}
.y8c{bottom:499.622667pt;}
.y237{bottom:500.908000pt;}
.y118{bottom:501.054667pt;}
.y212{bottom:501.217333pt;}
.y135{bottom:501.234667pt;}
.y196{bottom:501.572000pt;}
.ye7{bottom:502.462667pt;}
.y1c4{bottom:502.608000pt;}
.ycc{bottom:503.953333pt;}
.y35{bottom:510.804000pt;}
.y26f{bottom:512.674667pt;}
.y155{bottom:512.714667pt;}
.y69{bottom:514.709333pt;}
.y236{bottom:516.848000pt;}
.y117{bottom:516.994667pt;}
.y211{bottom:517.157333pt;}
.y291{bottom:517.513333pt;}
.ye6{bottom:518.402667pt;}
.y1c3{bottom:518.549333pt;}
.yc{bottom:523.092000pt;}
.y251{bottom:525.257333pt;}
.y34{bottom:526.745333pt;}
.y73{bottom:528.001333pt;}
.y26e{bottom:528.614667pt;}
.y154{bottom:528.654667pt;}
.y68{bottom:530.650667pt;}
.yaa{bottom:530.716000pt;}
.y116{bottom:532.934667pt;}
.y210{bottom:533.097333pt;}
.y195{bottom:533.453333pt;}
.y1c2{bottom:534.489333pt;}
.y250{bottom:541.197333pt;}
.y33{bottom:542.685333pt;}
.y26d{bottom:544.554667pt;}
.y153{bottom:544.594667pt;}
.y67{bottom:546.590667pt;}
.ya9{bottom:546.657333pt;}
.yb{bottom:546.974667pt;}
.y1d9{bottom:548.210667pt;}
.y235{bottom:548.729333pt;}
.y1c1{bottom:550.429333pt;}
.ycb{bottom:551.356000pt;}
.y24f{bottom:557.137333pt;}
.y32{bottom:558.625333pt;}
.y26c{bottom:560.494667pt;}
.y152{bottom:560.534667pt;}
.ye5{bottom:562.530667pt;}
.ya8{bottom:562.597333pt;}
.y1d8{bottom:564.150667pt;}
.y194{bottom:565.333333pt;}
.y1c0{bottom:566.369333pt;}
.ya{bottom:570.857333pt;}
.y20f{bottom:574.356000pt;}
.y31{bottom:574.565333pt;}
.y26b{bottom:576.434667pt;}
.y151{bottom:576.474667pt;}
.y66{bottom:578.470667pt;}
.ya7{bottom:578.537333pt;}
.y1d7{bottom:580.092000pt;}
.y17c{bottom:580.609333pt;}
.y115{bottom:580.756000pt;}
.y1bf{bottom:582.309333pt;}
.yca{bottom:583.853333pt;}
.y20e{bottom:590.296000pt;}
.y30{bottom:590.505333pt;}
.y26a{bottom:592.374667pt;}
.y150{bottom:592.414667pt;}
.ye4{bottom:594.410667pt;}
.ya6{bottom:594.477333pt;}
.y9{bottom:594.738667pt;}
.y1d6{bottom:596.032000pt;}
.y17b{bottom:596.549333pt;}
.y114{bottom:596.696000pt;}
.y1be{bottom:598.249333pt;}
.y193{bottom:598.768000pt;}
.y24e{bottom:604.958667pt;}
.y2f{bottom:606.445333pt;}
.y269{bottom:608.316000pt;}
.y14f{bottom:608.356000pt;}
.ya5{bottom:610.417333pt;}
.y65{bottom:611.972000pt;}
.y113{bottom:612.636000pt;}
.y234{bottom:614.044000pt;}
.y29f{bottom:614.190667pt;}
.y192{bottom:614.708000pt;}
.y8{bottom:618.621333pt;}
.y24d{bottom:620.898667pt;}
.y20d{bottom:622.177333pt;}
.y2e{bottom:622.386667pt;}
.ye3{bottom:626.292000pt;}
.ya4{bottom:626.357333pt;}
.y64{bottom:627.912000pt;}
.y17a{bottom:628.430667pt;}
.y112{bottom:628.576000pt;}
.yc9{bottom:629.028000pt;}
.y233{bottom:629.984000pt;}
.y29e{bottom:630.130667pt;}
.y191{bottom:630.648000pt;}
.y24c{bottom:636.838667pt;}
.y20c{bottom:638.117333pt;}
.y2d{bottom:638.326667pt;}
.ya3{bottom:642.298667pt;}
.y7{bottom:642.504000pt;}
.y63{bottom:643.852000pt;}
.y111{bottom:644.516000pt;}
.yc8{bottom:644.968000pt;}
.y232{bottom:645.924000pt;}
.y190{bottom:646.588000pt;}
.y268{bottom:649.574667pt;}
.y14e{bottom:649.613333pt;}
.y24b{bottom:652.778667pt;}
.y2c{bottom:654.266667pt;}
.ya2{bottom:658.238667pt;}
.y62{bottom:659.792000pt;}
.y179{bottom:660.310667pt;}
.y110{bottom:660.456000pt;}
.yc7{bottom:660.908000pt;}
.y231{bottom:661.865333pt;}
.y18f{bottom:662.529333pt;}
.y6{bottom:666.386667pt;}
.y24a{bottom:668.718667pt;}
.y20b{bottom:669.997333pt;}
.y2b{bottom:670.206667pt;}
.ya1{bottom:674.178667pt;}
.y61{bottom:675.733333pt;}
.y10f{bottom:676.397333pt;}
.yc6{bottom:676.848000pt;}
.y230{bottom:677.805333pt;}
.y267{bottom:681.454667pt;}
.y14d{bottom:681.494667pt;}
.y249{bottom:684.658667pt;}
.y2a{bottom:686.146667pt;}
.ya0{bottom:690.118667pt;}
.y60{bottom:691.673333pt;}
.y10e{bottom:692.337333pt;}
.yc5{bottom:692.789333pt;}
.y178{bottom:693.745333pt;}
.y248{bottom:700.600000pt;}
.y29{bottom:702.086667pt;}
.y5{bottom:703.552000pt;}
.y18e{bottom:705.554667pt;}
.y9f{bottom:706.058667pt;}
.y5f{bottom:707.613333pt;}
.y10d{bottom:708.277333pt;}
.yc4{bottom:708.729333pt;}
.y177{bottom:709.685333pt;}
.y266{bottom:713.334667pt;}
.y14c{bottom:713.374667pt;}
.y247{bottom:716.540000pt;}
.y20a{bottom:717.400000pt;}
.y22f{bottom:721.933333pt;}
.y9e{bottom:721.998667pt;}
.y5e{bottom:723.553333pt;}
.y10c{bottom:724.217333pt;}
.yc3{bottom:724.669333pt;}
.y176{bottom:725.625333pt;}
.y265{bottom:729.274667pt;}
.y14b{bottom:729.314667pt;}
.y246{bottom:732.480000pt;}
.y18d{bottom:737.434667pt;}
.y22e{bottom:737.873333pt;}
.y1ae{bottom:737.940000pt;}
.y5d{bottom:739.493333pt;}
.yc2{bottom:740.609333pt;}
.y4{bottom:740.717333pt;}
.y175{bottom:741.565333pt;}
.y28{bottom:743.345333pt;}
.y76{bottom:744.001333pt;}
.y245{bottom:748.420000pt;}
.y209{bottom:749.897333pt;}
.y22d{bottom:753.813333pt;}
.y9d{bottom:753.880000pt;}
.y5c{bottom:755.433333pt;}
.y10b{bottom:756.097333pt;}
.yc1{bottom:756.549333pt;}
.y174{bottom:757.506667pt;}
.y27{bottom:759.286667pt;}
.y264{bottom:761.156000pt;}
.y14a{bottom:761.196000pt;}
.y1ad{bottom:769.820000pt;}
.y18c{bottom:770.869333pt;}
.y5b{bottom:771.374667pt;}
.yc0{bottom:772.489333pt;}
.y244{bottom:780.300000pt;}
.y22c{bottom:785.693333pt;}
.y1ac{bottom:785.760000pt;}
.y18b{bottom:786.809333pt;}
.y5a{bottom:787.314667pt;}
.ybf{bottom:788.430667pt;}
.y10a{bottom:789.598667pt;}
.y26{bottom:791.166667pt;}
.y208{bottom:795.072000pt;}
.y173{bottom:801.633333pt;}
.y1bd{bottom:801.700000pt;}
.y18a{bottom:802.749333pt;}
.y59{bottom:803.254667pt;}
.ybe{bottom:804.370667pt;}
.y109{bottom:805.538667pt;}
.y3{bottom:805.728000pt;}
.y25{bottom:807.106667pt;}
.y149{bottom:808.557333pt;}
.y207{bottom:811.012000pt;}
.y243{bottom:813.801333pt;}
.y172{bottom:817.574667pt;}
.y1ab{bottom:817.640000pt;}
.y189{bottom:818.689333pt;}
.y58{bottom:819.194667pt;}
.ybd{bottom:820.310667pt;}
.y108{bottom:821.480000pt;}
.y206{bottom:826.952000pt;}
.y242{bottom:829.741333pt;}
.y171{bottom:833.514667pt;}
.y1bc{bottom:833.581333pt;}
.y188{bottom:834.630667pt;}
.y57{bottom:835.134667pt;}
.ybc{bottom:836.250667pt;}
.y107{bottom:837.420000pt;}
.y205{bottom:842.892000pt;}
.y2{bottom:844.461333pt;}
.y241{bottom:845.682667pt;}
.y24{bottom:845.841333pt;}
.y29d{bottom:849.521333pt;}
.y56{bottom:851.074667pt;}
.y106{bottom:853.360000pt;}
.y204{bottom:858.833333pt;}
.y240{bottom:861.622667pt;}
.y23{bottom:861.781333pt;}
.y170{bottom:865.394667pt;}
.y1bb{bottom:865.461333pt;}
.y55{bottom:867.016000pt;}
.y203{bottom:874.773333pt;}
.y23f{bottom:877.562667pt;}
.y22{bottom:877.721333pt;}
.y187{bottom:878.678667pt;}
.ybb{bottom:880.378667pt;}
.y1ba{bottom:881.401333pt;}
.y54{bottom:882.956000pt;}
.y202{bottom:890.713333pt;}
.y1{bottom:890.925333pt;}
.y21{bottom:893.662667pt;}
.y105{bottom:894.618667pt;}
.y29c{bottom:897.341333pt;}
.y53{bottom:898.896000pt;}
.y20{bottom:909.602667pt;}
.y104{bottom:910.558667pt;}
.y52{bottom:914.836000pt;}
.y23e{bottom:918.821333pt;}
.y1f{bottom:925.542667pt;}
.y51{bottom:930.776000pt;}
.y201{bottom:934.761333pt;}
.y1e{bottom:941.482667pt;}
.y103{bottom:942.438667pt;}
.y50{bottom:946.716000pt;}
.h7{height:35.387155pt;}
.h6{height:36.874903pt;}
.hd{height:36.880237pt;}
.h5{height:37.459376pt;}
.hc{height:38.937500pt;}
.h4{height:39.850400pt;}
.h12{height:40.590833pt;}
.h13{height:40.697500pt;}
.h2{height:44.887791pt;}
.he{height:47.820800pt;}
.hf{height:50.062500pt;}
.h9{height:55.625000pt;}
.h3{height:57.384800pt;}
.h10{height:61.187500pt;}
.h1{height:64.179011pt;}
.hb{height:66.750000pt;}
.h11{height:72.312500pt;}
.ha{height:216.000000pt;}
.h8{height:432.000000pt;}
.h0{height:1056.000000pt;}
.w2{width:312.000000pt;}
.w1{width:624.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:14.346667pt;}
.x2b{left:17.840000pt;}
.x28{left:24.720000pt;}
.x36{left:31.386667pt;}
.x3e{left:37.960000pt;}
.x40{left:44.640000pt;}
.x9{left:46.213333pt;}
.x2e{left:54.640000pt;}
.x1f{left:62.320000pt;}
.x30{left:66.213333pt;}
.x21{left:74.626667pt;}
.x12{left:77.213333pt;}
.x8{left:78.306667pt;}
.xf{left:81.880000pt;}
.x42{left:88.186667pt;}
.x37{left:91.080000pt;}
.x18{left:93.346667pt;}
.x13{left:95.106667pt;}
.x4{left:96.000000pt;}
.x3c{left:99.520000pt;}
.x26{left:101.893333pt;}
.x3b{left:102.973333pt;}
.xc{left:104.360000pt;}
.x38{left:106.280000pt;}
.x10{left:108.946667pt;}
.x1d{left:109.948000pt;}
.x29{left:113.826667pt;}
.x5{left:115.925333pt;}
.x11{left:117.466667pt;}
.x1e{left:123.896000pt;}
.x1c{left:126.573333pt;}
.x32{left:130.626667pt;}
.xa{left:134.306667pt;}
.x27{left:144.817333pt;}
.x6{left:146.477333pt;}
.x35{left:151.240000pt;}
.x39{left:181.653333pt;}
.x31{left:203.800000pt;}
.x20{left:213.360000pt;}
.x43{left:227.946667pt;}
.x33{left:229.146667pt;}
.x25{left:231.600000pt;}
.x22{left:235.253333pt;}
.x41{left:240.440000pt;}
.x1{left:247.418667pt;}
.x3d{left:249.200000pt;}
.x3f{left:252.533333pt;}
.xd{left:256.280000pt;}
.x2a{left:257.546667pt;}
.xe{left:261.466667pt;}
.x2f{left:312.189333pt;}
.x2{left:322.974667pt;}
.x15{left:358.213333pt;}
.x19{left:370.053333pt;}
.x3{left:371.560000pt;}
.x23{left:374.320000pt;}
.x34{left:378.213333pt;}
.x1b{left:386.973333pt;}
.x14{left:390.306667pt;}
.x24{left:400.920000pt;}
.x3a{left:403.080000pt;}
.x7{left:404.678667pt;}
.x16{left:408.000000pt;}
.x1a{left:414.640000pt;}
.x17{left:429.013333pt;}
.x2c{left:547.440000pt;}
.x2d{left:577.786667pt;}
}




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