
    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_9cd37966d05563dc0f6b6a23.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_522b224e07b138585a0ca931.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ce283e70ab9226e9ec1a35b3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.970703;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_d2e9efd9d03aed044cf52929.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970703;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_a5b98569bd82b29f67e44cbe.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_1d33a5df9fe55c66626bbf98.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.207031;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_2f4bf867d22961f63d5be5cd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.207031;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_1470ef6f9d1a76394c9b7aa4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.024902;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_01a276a7ec7cf4a457d08331.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.024902;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_e52ff0919af6b9be1e7e229a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.774902;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_d2c0448d7b3a3b0474afdf6f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_af6ed04d98cc21863ff3d3e5.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3a8fc00e505aefdf3b0f3414.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4260ef41dcac1d4b617849e4.woff2')format("woff");}.fff{font-family:fff;line-height:1.093262;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_54be42a53580d2f1ca92ee96.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c5966cd5ce06491f5864c77a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.688477;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_5ece7ffb7a5cb91e90df13be.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.401855;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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.850586;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_77df31a4a9e64014ee52f702.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.108000;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_5529112a492b28d8925f9a5f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.898000;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:ff16;src:url('chunks/assets/font_bb5fce322e00c90c1a72fb5c.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.239258;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:ff17;src:url('chunks/assets/font_88961c8a57a9d9df35ea4c4f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.895000;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;}
.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);}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,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);}
.v1{vertical-align:-47.520000px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.010641px;}
.ls1{letter-spacing:0.020880px;}
.ls1a{letter-spacing:0.021238px;}
.ls1e{letter-spacing:0.021282px;}
.ls5{letter-spacing:0.026496px;}
.lsd{letter-spacing:0.034560px;}
.lsa{letter-spacing:0.088560px;}
.ls8{letter-spacing:0.095760px;}
.lsf{letter-spacing:0.096000px;}
.ls10{letter-spacing:0.178800px;}
.lsb{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.189257px;}
.ls1d{letter-spacing:0.189300px;}
.ls4{letter-spacing:0.215760px;}
.ls11{letter-spacing:0.244200px;}
.ls9{letter-spacing:0.265680px;}
.lse{letter-spacing:0.265800px;}
.ls19{letter-spacing:0.378514px;}
.ls17{letter-spacing:0.378600px;}
.ls1c{letter-spacing:0.378602px;}
.ls6{letter-spacing:0.445680px;}
.ls3{letter-spacing:0.488880px;}
.ls2{letter-spacing:0.503280px;}
.ls12{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.741660px;}
.lsc{letter-spacing:0.815760px;}
.ls18{letter-spacing:1.630199px;}
.ls1b{letter-spacing:2.350619px;}
.ls7{letter-spacing:497.245680px;}
.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;}
}
.ws9{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.999993px;}
.wsa{word-spacing:-17.712000px;}
.ws7{word-spacing:-15.915711px;}
.ws8{word-spacing:-15.343320px;}
.wsf{word-spacing:-15.318508px;}
.ws5{word-spacing:-15.277920px;}
.ws3{word-spacing:-15.144192px;}
.ws4{word-spacing:-15.133680px;}
.ws2{word-spacing:-15.099120px;}
.wsd{word-spacing:-14.939994px;}
.wsc{word-spacing:-14.219994px;}
.ws6{word-spacing:-14.176512px;}
.ws1{word-spacing:-14.134320px;}
.wse{word-spacing:-12.059995px;}
.ws10{word-spacing:-9.719996px;}
.ws0{word-spacing:0.000000px;}
._11{margin-left:-4.634347px;}
._2{margin-left:-3.051312px;}
._1{margin-left:-1.302480px;}
._0{width:1.229481px;}
._4{width:3.124224px;}
._3{width:4.181760px;}
._5{width:5.208615px;}
._6{width:6.987303px;}
._c{width:7.996176px;}
._a{width:9.216000px;}
._b{width:11.154519px;}
._1b{width:12.162663px;}
._10{width:13.464071px;}
._e{width:14.575068px;}
._f{width:15.891926px;}
._16{width:16.925157px;}
._23{width:18.276660px;}
._12{width:19.796284px;}
._13{width:20.985724px;}
._17{width:22.130153px;}
._14{width:23.263759px;}
._15{width:25.079294px;}
._18{width:26.445320px;}
._1a{width:28.031787px;}
._d{width:29.094480px;}
._8{width:30.384000px;}
._22{width:31.404443px;}
._9{width:32.449037px;}
._1c{width:33.601307px;}
._1d{width:34.678407px;}
._1e{width:35.918523px;}
._1f{width:36.975516px;}
._24{width:39.090768px;}
._21{width:92.674811px;}
._20{width:141.735199px;}
._7{width:161.796000px;}
._19{width:200.226392px;}
.fc9{color:rgb(0,86,150);}
.fc7{color:rgb(0,32,96);}
.fc6{color:rgb(128,0,0);}
.fc5{color:rgb(0,0,153);}
.fc4{color:rgb(0,0,128);}
.fca{color:rgb(0,0,255);}
.fc3{color:rgb(165,0,33);}
.fc8{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(192,0,0);}
.fc0{color:rgb(0,102,204);}
.fs13{font-size:38.879984px;}
.fs14{font-size:48.239981px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:48.384000px;}
.fsb{font-size:50.848916px;}
.fs12{font-size:56.879977px;}
.fs10{font-size:59.759976px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:59.904000px;}
.fsc{font-size:66.240000px;}
.fse{font-size:69.822393px;}
.fsf{font-size:71.999971px;}
.fsd{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs7{font-size:77.904000px;}
.fs4{font-size:81.965417px;}
.fs11{font-size:84.239966px;}
.fs5{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yba{bottom:3.239697px;}
.ya0{bottom:7.380000px;}
.y79{bottom:7.410000px;}
.yb2{bottom:14.040000px;}
.y82{bottom:14.400000px;}
.y7f{bottom:14.610000px;}
.ya3{bottom:14.760000px;}
.y78{bottom:31.170000px;}
.y9f{bottom:31.320000px;}
.y6d{bottom:34.020000px;}
.yb1{bottom:37.980000px;}
.ya2{bottom:38.520000px;}
.y7e{bottom:38.550000px;}
.y6c{bottom:46.080000px;}
.yef{bottom:46.380281px;}
.yc0{bottom:47.100281px;}
.y9e{bottom:55.116000px;}
.y81{bottom:55.980000px;}
.y83{bottom:56.160000px;}
.y6b{bottom:58.140000px;}
.yb0{bottom:61.740000px;}
.y77{bottom:61.950000px;}
.y7d{bottom:62.310000px;}
.yee{bottom:63.660275px;}
.y11b{bottom:67.080273px;}
.ybf{bottom:67.800273px;}
.y6a{bottom:70.020000px;}
.y69{bottom:82.080000px;}
.y11a{bottom:84.360266px;}
.yaf{bottom:85.500000px;}
.y76{bottom:85.710000px;}
.y7c{bottom:86.070000px;}
.ybe{bottom:87.780265px;}
.y84{bottom:93.960000px;}
.y68{bottom:94.140000px;}
.ybd{bottom:105.060258px;}
.y67{bottom:106.020000px;}
.yae{bottom:109.305000px;}
.y75{bottom:109.470000px;}
.y9d{bottom:109.650000px;}
.y7b{bottom:109.830000px;}
.ya1{bottom:110.010000px;}
.yb3{bottom:110.025000px;}
.y66{bottom:118.080000px;}
.ybc{bottom:122.340251px;}
.y65{bottom:130.140000px;}
.y13c{bottom:131.519947px;}
.y129{bottom:131.520247px;}
.yad{bottom:133.245000px;}
.y74{bottom:133.410000px;}
.y7a{bottom:133.770000px;}
.y128{bottom:136.740245px;}
.ybb{bottom:139.620244px;}
.y64{bottom:142.056000px;}
.y119{bottom:143.039943px;}
.y13b{bottom:148.799940px;}
.y127{bottom:148.800240px;}
.y141{bottom:149.520240px;}
.yb9{bottom:153.660240px;}
.y126{bottom:154.019938px;}
.y63{bottom:154.110000px;}
.yb8{bottom:156.899937px;}
.yac{bottom:157.005000px;}
.y9c{bottom:157.530000px;}
.y125{bottom:165.899934px;}
.y62{bottom:166.170000px;}
.y147{bottom:166.799933px;}
.y118{bottom:166.979933px;}
.y124{bottom:171.119932px;}
.yb7{bottom:174.899930px;}
.y61{bottom:178.050000px;}
.yab{bottom:180.765000px;}
.y9b{bottom:181.290000px;}
.y13a{bottom:183.179927px;}
.y123{bottom:183.899926px;}
.y14e{bottom:188.399925px;}
.y60{bottom:190.110000px;}
.y117{bottom:190.739924px;}
.yb6{bottom:195.599922px;}
.y139{bottom:200.459920px;}
.y5f{bottom:202.170000px;}
.y16c{bottom:203.339919px;}
.yaa{bottom:204.525000px;}
.y9a{bottom:205.050000px;}
.y155{bottom:205.679918px;}
.y5e{bottom:214.050000px;}
.y116{bottom:214.499914px;}
.yeb{bottom:215.399914px;}
.y138{bottom:217.739913px;}
.y154{bottom:218.459913px;}
.y137{bottom:222.959911px;}
.y16b{bottom:224.039910px;}
.y5d{bottom:226.110000px;}
.ya9{bottom:228.465000px;}
.y99{bottom:228.990000px;}
.yea{bottom:232.679907px;}
.y136{bottom:235.019906px;}
.y14a{bottom:235.739906px;}
.y5c{bottom:238.170000px;}
.y115{bottom:238.259905px;}
.y152{bottom:240.239904px;}
.y16a{bottom:247.619901px;}
.ye9{bottom:249.959900px;}
.y5b{bottom:250.050000px;}
.ya8{bottom:252.225000px;}
.y135{bottom:252.299899px;}
.y98{bottom:252.750000px;}
.y151{bottom:253.019899px;}
.y5a{bottom:262.110000px;}
.y114{bottom:262.199895px;}
.ye8{bottom:267.239893px;}
.y149{bottom:269.039892px;}
.y134{bottom:269.399892px;}
.y14d{bottom:270.299892px;}
.y169{bottom:271.379891px;}
.ye7{bottom:272.459891px;}
.y59{bottom:274.170000px;}
.ya7{bottom:275.985000px;}
.y97{bottom:276.510000px;}
.ye6{bottom:284.519886px;}
.y113{bottom:285.959886px;}
.y58{bottom:286.050000px;}
.y133{bottom:286.679885px;}
.y168{bottom:295.319882px;}
.y57{bottom:298.110000px;}
.ya6{bottom:299.745000px;}
.y96{bottom:300.315000px;}
.ye5{bottom:301.619879px;}
.y132{bottom:303.959878px;}
.y145{bottom:309.179876px;}
.y112{bottom:309.719876px;}
.y56{bottom:310.170000px;}
.y167{bottom:319.079872px;}
.ye4{bottom:320.159872px;}
.y131{bottom:321.239872px;}
.y144{bottom:321.959871px;}
.y55{bottom:322.050000px;}
.ya5{bottom:323.685000px;}
.y95{bottom:324.255000px;}
.y111{bottom:333.479867px;}
.y54{bottom:334.110000px;}
.ye3{bottom:337.259865px;}
.y130{bottom:338.519865px;}
.y150{bottom:340.319864px;}
.y166{bottom:342.839863px;}
.y12f{bottom:343.739863px;}
.y53{bottom:346.170000px;}
.y94{bottom:348.015000px;}
.ye2{bottom:354.539858px;}
.y12e{bottom:355.619858px;}
.y110{bottom:357.419857px;}
.y52{bottom:358.050000px;}
.y12d{bottom:360.839856px;}
.y165{bottom:366.599853px;}
.y51{bottom:370.110000px;}
.y93{bottom:371.775000px;}
.ye1{bottom:371.819851px;}
.ya{bottom:373.170000px;}
.y12c{bottom:373.619851px;}
.y10f{bottom:381.179848px;}
.y50{bottom:382.170000px;}
.ye0{bottom:389.099844px;}
.y164{bottom:390.539844px;}
.y4f{bottom:394.095000px;}
.y92{bottom:395.535000px;}
.y9{bottom:397.155000px;}
.y10e{bottom:404.579838px;}
.y122{bottom:404.939838px;}
.y4e{bottom:406.155000px;}
.ydf{bottom:406.199838px;}
.y163{bottom:414.299834px;}
.y8{bottom:416.595000px;}
.y4d{bottom:418.215000px;}
.y91{bottom:419.475000px;}
.yde{bottom:425.459830px;}
.y10d{bottom:428.339829px;}
.y121{bottom:428.699829px;}
.y4c{bottom:430.095000px;}
.y12b{bottom:435.539826px;}
.y7{bottom:436.575000px;}
.y162{bottom:438.059825px;}
.y4b{bottom:442.155000px;}
.y90{bottom:443.235000px;}
.ydd{bottom:451.559819px;}
.y10c{bottom:452.279819px;}
.y120{bottom:452.639819px;}
.y4a{bottom:454.215000px;}
.y6{bottom:457.095000px;}
.y161{bottom:461.819815px;}
.y49{bottom:466.095000px;}
.y8f{bottom:466.995000px;}
.ydc{bottom:475.319810px;}
.y10b{bottom:476.039810px;}
.y11f{bottom:476.399809px;}
.y48{bottom:478.155000px;}
.y5{bottom:478.695000px;}
.y14f{bottom:483.239807px;}
.y160{bottom:485.759806px;}
.y47{bottom:490.215000px;}
.y8e{bottom:490.755000px;}
.ydb{bottom:499.259800px;}
.y10a{bottom:500.159800px;}
.y46{bottom:502.095000px;}
.y146{bottom:506.999797px;}
.y4{bottom:508.215000px;}
.y15f{bottom:509.519796px;}
.y45{bottom:514.155000px;}
.y8d{bottom:514.695000px;}
.yda{bottom:523.019791px;}
.y109{bottom:523.919790px;}
.y44{bottom:526.215000px;}
.y15e{bottom:533.279787px;}
.y3{bottom:535.215000px;}
.y43{bottom:538.095000px;}
.y8c{bottom:538.455000px;}
.yd9{bottom:546.779781px;}
.y108{bottom:547.859781px;}
.y42{bottom:550.155000px;}
.y15d{bottom:557.039777px;}
.y2{bottom:559.875000px;}
.y41{bottom:562.215000px;}
.y8b{bottom:562.245000px;}
.yd8{bottom:570.539772px;}
.y107{bottom:571.619771px;}
.y40{bottom:574.095000px;}
.y11e{bottom:578.459769px;}
.y15c{bottom:580.979768px;}
.y8a{bottom:586.005000px;}
.y3f{bottom:586.155000px;}
.yd6{bottom:594.479762px;}
.y106{bottom:595.379762px;}
.y3e{bottom:598.215000px;}
.yd7{bottom:599.699760px;}
.y153{bottom:602.219759px;}
.y15b{bottom:604.739758px;}
.y89{bottom:609.945000px;}
.y3d{bottom:610.095000px;}
.yd5{bottom:618.239753px;}
.y105{bottom:619.139752px;}
.y3c{bottom:622.155000px;}
.y11d{bottom:625.979750px;}
.y15a{bottom:628.499749px;}
.y88{bottom:633.705000px;}
.y3b{bottom:634.215000px;}
.yd4{bottom:641.999743px;}
.y14c{bottom:642.539743px;}
.y104{bottom:642.899743px;}
.y3a{bottom:646.125000px;}
.y159{bottom:652.259739px;}
.y87{bottom:657.465000px;}
.y39{bottom:658.185000px;}
.yd3{bottom:665.759734px;}
.y140{bottom:666.479733px;}
.y103{bottom:666.839733px;}
.y38{bottom:670.245000px;}
.y158{bottom:673.139731px;}
.y86{bottom:681.225000px;}
.y37{bottom:682.125000px;}
.yd2{bottom:689.699724px;}
.y13f{bottom:690.239724px;}
.y102{bottom:690.599724px;}
.y157{bottom:693.839722px;}
.y36{bottom:694.185000px;}
.y85{bottom:704.985000px;}
.y35{bottom:706.245000px;}
.yd1{bottom:713.459715px;}
.y101{bottom:714.359714px;}
.y156{bottom:714.539714px;}
.y34{bottom:718.125000px;}
.y33{bottom:730.185000px;}
.yd0{bottom:736.859705px;}
.y100{bottom:738.119705px;}
.y32{bottom:742.245000px;}
.y31{bottom:754.125000px;}
.ycf{bottom:760.619696px;}
.yff{bottom:762.059695px;}
.y30{bottom:766.185000px;}
.yb4{bottom:777.705000px;}
.yce{bottom:784.919686px;}
.yfe{bottom:785.819686px;}
.y2f{bottom:790.125000px;}
.y11c{bottom:792.659683px;}
.ya4{bottom:793.185000px;}
.y2e{bottom:802.185000px;}
.ycd{bottom:808.679677px;}
.yfd{bottom:809.579676px;}
.y2d{bottom:814.245000px;}
.y80{bottom:815.325000px;}
.y2c{bottom:826.125000px;}
.ycc{bottom:832.439667px;}
.yfc{bottom:833.339667px;}
.y2b{bottom:838.185000px;}
.y2a{bottom:850.245000px;}
.ycb{bottom:856.199658px;}
.yfb{bottom:857.279657px;}
.y29{bottom:862.125000px;}
.y14b{bottom:864.119654px;}
.y28{bottom:874.185000px;}
.yca{bottom:879.959648px;}
.yfa{bottom:881.039648px;}
.y27{bottom:886.245000px;}
.y148{bottom:887.879645px;}
.y73{bottom:887.880000px;}
.y26{bottom:898.170000px;}
.yc9{bottom:903.899638px;}
.yf9{bottom:904.799638px;}
.y25{bottom:910.230000px;}
.y24{bottom:922.290000px;}
.yc8{bottom:927.659629px;}
.yf8{bottom:928.559629px;}
.y23{bottom:934.170000px;}
.y22{bottom:946.230000px;}
.yc7{bottom:951.419619px;}
.yf7{bottom:952.499619px;}
.y21{bottom:958.290000px;}
.y143{bottom:959.339616px;}
.y20{bottom:970.170000px;}
.yc6{bottom:975.539610px;}
.yf6{bottom:976.259609px;}
.y1f{bottom:982.230000px;}
.y12a{bottom:983.099607px;}
.y1e{bottom:994.290000px;}
.yf5{bottom:1000.019600px;}
.yc5{bottom:1000.559600px;}
.y1d{bottom:1006.170000px;}
.y1c{bottom:1018.230000px;}
.yf4{bottom:1023.779590px;}
.yc4{bottom:1024.679590px;}
.y1b{bottom:1030.290000px;}
.y142{bottom:1030.619588px;}
.y1a{bottom:1042.170000px;}
.y72{bottom:1045.050000px;}
.yf3{bottom:1047.719581px;}
.yc3{bottom:1049.699580px;}
.y19{bottom:1054.230000px;}
.y18{bottom:1066.290000px;}
.y71{bottom:1068.810000px;}
.yf2{bottom:1071.479571px;}
.yc2{bottom:1074.539570px;}
.y17{bottom:1078.170000px;}
.y13d{bottom:1078.319569px;}
.y16{bottom:1090.230000px;}
.y70{bottom:1092.570000px;}
.yf1{bottom:1095.239562px;}
.y13e{bottom:1102.079559px;}
.yc1{bottom:1102.259559px;}
.y15{bottom:1102.290000px;}
.y14{bottom:1114.170000px;}
.y6f{bottom:1116.510000px;}
.yf0{bottom:1118.999552px;}
.yb5{bottom:1121.699551px;}
.y13{bottom:1126.230000px;}
.y6e{bottom:1133.250000px;}
.y12{bottom:1138.290000px;}
.y11{bottom:1150.200000px;}
.y1{bottom:1159.020000px;}
.y10{bottom:1162.260000px;}
.yf{bottom:1174.320000px;}
.yed{bottom:1185.419526px;}
.ye{bottom:1186.200000px;}
.yd{bottom:1198.260000px;}
.yec{bottom:1202.699519px;}
.yc{bottom:1210.320000px;}
.yb{bottom:1222.200000px;}
.h1d{height:16.740000px;}
.h28{height:33.092627px;}
.h23{height:34.603186px;}
.hc{height:39.477656px;}
.hd{height:39.595500px;}
.h2{height:40.569750px;}
.h26{height:40.995344px;}
.h1e{height:41.353903px;}
.h3{height:41.493516px;}
.hf{height:41.612687px;}
.h25{height:42.933583px;}
.h18{height:47.286943px;}
.hb{height:48.263555px;}
.he{height:48.407625px;}
.h27{height:49.391980px;}
.h22{height:49.823980px;}
.h21{height:50.623180px;}
.h1c{height:53.186379px;}
.h24{height:55.353845px;}
.h1a{height:55.825312px;}
.h1f{height:58.294057px;}
.h8{height:59.421094px;}
.h9{height:59.531133px;}
.h6{height:62.634706px;}
.h17{height:63.175781px;}
.h1b{height:64.079974px;}
.h7{height:64.372852px;}
.ha{height:64.853086px;}
.h10{height:65.884219px;}
.h20{height:66.691380px;}
.h14{height:70.628906px;}
.h13{height:70.664062px;}
.h15{height:72.540000px;}
.h11{height:72.562500px;}
.h4{height:82.529297px;}
.h5{height:91.354219px;}
.h12{height:150.135000px;}
.h19{height:340.050000px;}
.h16{height:721.365000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:3.960000px;}
.w3{width:69.330000px;}
.w5{width:73.065000px;}
.w4{width:575.010000px;}
.w2{width:701.730000px;}
.w6{width:892.500000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4d{left:8.091000px;}
.x13{left:59.940000px;}
.x4f{left:61.230000px;}
.x2d{left:80.100000px;}
.x22{left:82.116000px;}
.x17{left:87.516000px;}
.x1{left:90.756000px;}
.x4a{left:93.636000px;}
.x1d{left:112.716000px;}
.x18{left:122.616000px;}
.x53{left:127.619949px;}
.x5a{left:132.479947px;}
.x58{left:137.699945px;}
.x51{left:142.005000px;}
.x28{left:147.636000px;}
.x56{left:148.859940px;}
.x3e{left:150.510000px;}
.x3c{left:152.670000px;}
.x3b{left:155.190000px;}
.x25{left:158.070000px;}
.x30{left:160.230000px;}
.x1f{left:161.490000px;}
.x41{left:163.290000px;}
.x7b{left:167.399933px;}
.x21{left:169.590000px;}
.x48{left:170.670000px;}
.x2c{left:172.650000px;}
.x1e{left:174.810000px;}
.x15{left:178.590000px;}
.xe{left:180.930000px;}
.x16{left:191.550000px;}
.x2e{left:195.150000px;}
.x3d{left:196.770000px;}
.x38{left:198.030000px;}
.x27{left:200.370000px;}
.x1c{left:202.530000px;}
.x40{left:204.150000px;}
.x37{left:207.030000px;}
.xc{left:210.630000px;}
.x26{left:212.970000px;}
.x35{left:216.030000px;}
.x7{left:217.830000px;}
.x11{left:219.090000px;}
.x2a{left:220.530000px;}
.x2b{left:223.230000px;}
.x1b{left:225.390000px;}
.x34{left:228.990000px;}
.x29{left:230.790000px;}
.x31{left:232.050000px;}
.x23{left:235.110000px;}
.x3a{left:236.550000px;}
.x24{left:240.870000px;}
.x42{left:242.490000px;}
.xd{left:250.230000px;}
.x39{left:251.670000px;}
.x20{left:253.110000px;}
.x36{left:255.090000px;}
.x10{left:264.675000px;}
.x14{left:266.655000px;}
.x32{left:270.975000px;}
.x33{left:273.495000px;}
.x3{left:275.295000px;}
.x47{left:288.435000px;}
.x2f{left:292.755000px;}
.x19{left:293.835000px;}
.x12{left:298.695000px;}
.x61{left:303.659879px;}
.x4{left:306.075000px;}
.x62{left:309.779876px;}
.x59{left:311.399875px;}
.x43{left:323.355000px;}
.x75{left:326.699869px;}
.x5{left:330.375000px;}
.x67{left:336.959865px;}
.x44{left:338.295000px;}
.x45{left:341.895000px;}
.x68{left:343.079863px;}
.x3f{left:361.155000px;}
.xf{left:366.015000px;}
.x1a{left:368.715000px;}
.x55{left:377.639243px;}
.x4b{left:379.695000px;}
.x46{left:381.135000px;}
.x6d{left:383.579847px;}
.x57{left:387.900529px;}
.xb{left:396.075000px;}
.x6{left:401.655000px;}
.x9{left:405.795000px;}
.x4c{left:410.115000px;}
.x77{left:413.459835px;}
.x76{left:421.739831px;}
.x78{left:425.699830px;}
.xa{left:439.485000px;}
.x8{left:441.465000px;}
.x2{left:445.785000px;}
.x5d{left:467.459813px;}
.x5e{left:473.579811px;}
.x49{left:503.925000px;}
.x52{left:514.259794px;}
.x63{left:521.819791px;}
.x64{left:526.139790px;}
.x69{left:532.259787px;}
.x7c{left:575.459770px;}
.x5f{left:582.119767px;}
.x60{left:588.239765px;}
.x6e{left:600.299760px;}
.x73{left:606.059758px;}
.x74{left:618.299753px;}
.x6f{left:633.419747px;}
.x70{left:645.659742px;}
.x65{left:667.079733px;}
.x50{left:668.670000px;}
.x66{left:673.199731px;}
.x79{left:682.559727px;}
.x7a{left:694.799722px;}
.x71{left:721.619711px;}
.x72{left:733.859706px;}
.x6c{left:736.559705px;}
.x5b{left:742.859703px;}
.x6a{left:748.799700px;}
.x6b{left:761.039696px;}
.x5c{left:765.359694px;}
.x4e{left:795.390000px;}
.x54{left:888.480000px;}
@media print{
.v1{vertical-align:-42.240000pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.009459pt;}
.ls1{letter-spacing:0.018560pt;}
.ls1a{letter-spacing:0.018878pt;}
.ls1e{letter-spacing:0.018917pt;}
.ls5{letter-spacing:0.023552pt;}
.lsd{letter-spacing:0.030720pt;}
.lsa{letter-spacing:0.078720pt;}
.ls8{letter-spacing:0.085120pt;}
.lsf{letter-spacing:0.085333pt;}
.ls10{letter-spacing:0.158933pt;}
.lsb{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.168228pt;}
.ls1d{letter-spacing:0.168267pt;}
.ls4{letter-spacing:0.191787pt;}
.ls11{letter-spacing:0.217067pt;}
.ls9{letter-spacing:0.236160pt;}
.lse{letter-spacing:0.236267pt;}
.ls19{letter-spacing:0.336457pt;}
.ls17{letter-spacing:0.336533pt;}
.ls1c{letter-spacing:0.336535pt;}
.ls6{letter-spacing:0.396160pt;}
.ls3{letter-spacing:0.434560pt;}
.ls2{letter-spacing:0.447360pt;}
.ls12{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.659253pt;}
.lsc{letter-spacing:0.725120pt;}
.ls18{letter-spacing:1.449066pt;}
.ls1b{letter-spacing:2.089439pt;}
.ls7{letter-spacing:441.996160pt;}
.ws9{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.999994pt;}
.wsa{word-spacing:-15.744000pt;}
.ws7{word-spacing:-14.147298pt;}
.ws8{word-spacing:-13.638507pt;}
.wsf{word-spacing:-13.616451pt;}
.ws5{word-spacing:-13.580373pt;}
.ws3{word-spacing:-13.461504pt;}
.ws4{word-spacing:-13.452160pt;}
.ws2{word-spacing:-13.421440pt;}
.wsd{word-spacing:-13.279995pt;}
.wsc{word-spacing:-12.639995pt;}
.ws6{word-spacing:-12.601344pt;}
.ws1{word-spacing:-12.563840pt;}
.wse{word-spacing:-10.719996pt;}
.ws10{word-spacing:-8.639997pt;}
.ws0{word-spacing:0.000000pt;}
._11{margin-left:-4.119420pt;}
._2{margin-left:-2.712277pt;}
._1{margin-left:-1.157760pt;}
._0{width:1.092872pt;}
._4{width:2.777088pt;}
._3{width:3.717120pt;}
._5{width:4.629880pt;}
._6{width:6.210936pt;}
._c{width:7.107712pt;}
._a{width:8.192000pt;}
._b{width:9.915128pt;}
._1b{width:10.811256pt;}
._10{width:11.968063pt;}
._e{width:12.955616pt;}
._f{width:14.126157pt;}
._16{width:15.044584pt;}
._23{width:16.245920pt;}
._12{width:17.596697pt;}
._13{width:18.653977pt;}
._17{width:19.671247pt;}
._14{width:20.678897pt;}
._15{width:22.292706pt;}
._18{width:23.506951pt;}
._1a{width:24.917144pt;}
._d{width:25.861760pt;}
._8{width:27.008000pt;}
._22{width:27.915060pt;}
._9{width:28.843589pt;}
._1c{width:29.867828pt;}
._1d{width:30.825250pt;}
._1e{width:31.927576pt;}
._1f{width:32.867125pt;}
._24{width:34.747350pt;}
._21{width:82.377609pt;}
._20{width:125.986843pt;}
._7{width:143.818667pt;}
._19{width:177.979015pt;}
.fs13{font-size:34.559986pt;}
.fs14{font-size:42.879983pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:43.008000pt;}
.fsb{font-size:45.199037pt;}
.fs12{font-size:50.559980pt;}
.fs10{font-size:53.119979pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:53.248000pt;}
.fsc{font-size:58.880000pt;}
.fse{font-size:62.064349pt;}
.fsf{font-size:63.999974pt;}
.fsd{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs7{font-size:69.248000pt;}
.fs4{font-size:72.858149pt;}
.fs11{font-size:74.879970pt;}
.fs5{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:2.879731pt;}
.ya0{bottom:6.560000pt;}
.y79{bottom:6.586667pt;}
.yb2{bottom:12.480000pt;}
.y82{bottom:12.800000pt;}
.y7f{bottom:12.986667pt;}
.ya3{bottom:13.120000pt;}
.y78{bottom:27.706667pt;}
.y9f{bottom:27.840000pt;}
.y6d{bottom:30.240000pt;}
.yb1{bottom:33.760000pt;}
.ya2{bottom:34.240000pt;}
.y7e{bottom:34.266667pt;}
.y6c{bottom:40.960000pt;}
.yef{bottom:41.226917pt;}
.yc0{bottom:41.866917pt;}
.y9e{bottom:48.992000pt;}
.y81{bottom:49.760000pt;}
.y83{bottom:49.920000pt;}
.y6b{bottom:51.680000pt;}
.yb0{bottom:54.880000pt;}
.y77{bottom:55.066667pt;}
.y7d{bottom:55.386667pt;}
.yee{bottom:56.586911pt;}
.y11b{bottom:59.626909pt;}
.ybf{bottom:60.266909pt;}
.y6a{bottom:62.240000pt;}
.y69{bottom:72.960000pt;}
.y11a{bottom:74.986903pt;}
.yaf{bottom:76.000000pt;}
.y76{bottom:76.186667pt;}
.y7c{bottom:76.506667pt;}
.ybe{bottom:78.026902pt;}
.y84{bottom:83.520000pt;}
.y68{bottom:83.680000pt;}
.ybd{bottom:93.386896pt;}
.y67{bottom:94.240000pt;}
.yae{bottom:97.160000pt;}
.y75{bottom:97.306667pt;}
.y9d{bottom:97.466667pt;}
.y7b{bottom:97.626667pt;}
.ya1{bottom:97.786667pt;}
.yb3{bottom:97.800000pt;}
.y66{bottom:104.960000pt;}
.ybc{bottom:108.746890pt;}
.y65{bottom:115.680000pt;}
.y13c{bottom:116.906620pt;}
.y129{bottom:116.906887pt;}
.yad{bottom:118.440000pt;}
.y74{bottom:118.586667pt;}
.y7a{bottom:118.906667pt;}
.y128{bottom:121.546885pt;}
.ybb{bottom:124.106884pt;}
.y64{bottom:126.272000pt;}
.y119{bottom:127.146616pt;}
.y13b{bottom:132.266614pt;}
.y127{bottom:132.266880pt;}
.y141{bottom:132.906880pt;}
.yb9{bottom:136.586880pt;}
.y126{bottom:136.906612pt;}
.y63{bottom:136.986667pt;}
.yb8{bottom:139.466611pt;}
.yac{bottom:139.560000pt;}
.y9c{bottom:140.026667pt;}
.y125{bottom:147.466608pt;}
.y62{bottom:147.706667pt;}
.y147{bottom:148.266607pt;}
.y118{bottom:148.426607pt;}
.y124{bottom:152.106606pt;}
.yb7{bottom:155.466604pt;}
.y61{bottom:158.266667pt;}
.yab{bottom:160.680000pt;}
.y9b{bottom:161.146667pt;}
.y13a{bottom:162.826602pt;}
.y123{bottom:163.466601pt;}
.y14e{bottom:167.466600pt;}
.y60{bottom:168.986667pt;}
.y117{bottom:169.546599pt;}
.yb6{bottom:173.866597pt;}
.y139{bottom:178.186595pt;}
.y5f{bottom:179.706667pt;}
.y16c{bottom:180.746594pt;}
.yaa{bottom:181.800000pt;}
.y9a{bottom:182.266667pt;}
.y155{bottom:182.826594pt;}
.y5e{bottom:190.266667pt;}
.y116{bottom:190.666590pt;}
.yeb{bottom:191.466590pt;}
.y138{bottom:193.546589pt;}
.y154{bottom:194.186589pt;}
.y137{bottom:198.186587pt;}
.y16b{bottom:199.146587pt;}
.y5d{bottom:200.986667pt;}
.ya9{bottom:203.080000pt;}
.y99{bottom:203.546667pt;}
.yea{bottom:206.826584pt;}
.y136{bottom:208.906583pt;}
.y14a{bottom:209.546583pt;}
.y5c{bottom:211.706667pt;}
.y115{bottom:211.786582pt;}
.y152{bottom:213.546581pt;}
.y16a{bottom:220.106579pt;}
.ye9{bottom:222.186578pt;}
.y5b{bottom:222.266667pt;}
.ya8{bottom:224.200000pt;}
.y135{bottom:224.266577pt;}
.y98{bottom:224.666667pt;}
.y151{bottom:224.906577pt;}
.y5a{bottom:232.986667pt;}
.y114{bottom:233.066573pt;}
.ye8{bottom:237.546572pt;}
.y149{bottom:239.146571pt;}
.y134{bottom:239.466571pt;}
.y14d{bottom:240.266571pt;}
.y169{bottom:241.226570pt;}
.ye7{bottom:242.186570pt;}
.y59{bottom:243.706667pt;}
.ya7{bottom:245.320000pt;}
.y97{bottom:245.786667pt;}
.ye6{bottom:252.906566pt;}
.y113{bottom:254.186565pt;}
.y58{bottom:254.266667pt;}
.y133{bottom:254.826565pt;}
.y168{bottom:262.506562pt;}
.y57{bottom:264.986667pt;}
.ya6{bottom:266.440000pt;}
.y96{bottom:266.946667pt;}
.ye5{bottom:268.106559pt;}
.y132{bottom:270.186559pt;}
.y145{bottom:274.826557pt;}
.y112{bottom:275.306557pt;}
.y56{bottom:275.706667pt;}
.y167{bottom:283.626553pt;}
.ye4{bottom:284.586553pt;}
.y131{bottom:285.546552pt;}
.y144{bottom:286.186552pt;}
.y55{bottom:286.266667pt;}
.ya5{bottom:287.720000pt;}
.y95{bottom:288.226667pt;}
.y111{bottom:296.426548pt;}
.y54{bottom:296.986667pt;}
.ye3{bottom:299.786547pt;}
.y130{bottom:300.906546pt;}
.y150{bottom:302.506546pt;}
.y166{bottom:304.746545pt;}
.y12f{bottom:305.546544pt;}
.y53{bottom:307.706667pt;}
.y94{bottom:309.346667pt;}
.ye2{bottom:315.146541pt;}
.y12e{bottom:316.106540pt;}
.y110{bottom:317.706540pt;}
.y52{bottom:318.266667pt;}
.y12d{bottom:320.746538pt;}
.y165{bottom:325.866536pt;}
.y51{bottom:328.986667pt;}
.y93{bottom:330.466667pt;}
.ye1{bottom:330.506534pt;}
.ya{bottom:331.706667pt;}
.y12c{bottom:332.106534pt;}
.y10f{bottom:338.826531pt;}
.y50{bottom:339.706667pt;}
.ye0{bottom:345.866528pt;}
.y164{bottom:347.146528pt;}
.y4f{bottom:350.306667pt;}
.y92{bottom:351.586667pt;}
.y9{bottom:353.026667pt;}
.y10e{bottom:359.626523pt;}
.y122{bottom:359.946523pt;}
.y4e{bottom:361.026667pt;}
.ydf{bottom:361.066522pt;}
.y163{bottom:368.266519pt;}
.y8{bottom:370.306667pt;}
.y4d{bottom:371.746667pt;}
.y91{bottom:372.866667pt;}
.yde{bottom:378.186515pt;}
.y10d{bottom:380.746514pt;}
.y121{bottom:381.066514pt;}
.y4c{bottom:382.306667pt;}
.y12b{bottom:387.146512pt;}
.y7{bottom:388.066667pt;}
.y162{bottom:389.386511pt;}
.y4b{bottom:393.026667pt;}
.y90{bottom:393.986667pt;}
.ydd{bottom:401.386506pt;}
.y10c{bottom:402.026506pt;}
.y120{bottom:402.346506pt;}
.y4a{bottom:403.746667pt;}
.y6{bottom:406.306667pt;}
.y161{bottom:410.506502pt;}
.y49{bottom:414.306667pt;}
.y8f{bottom:415.106667pt;}
.ydc{bottom:422.506498pt;}
.y10b{bottom:423.146497pt;}
.y11f{bottom:423.466497pt;}
.y48{bottom:425.026667pt;}
.y5{bottom:425.506667pt;}
.y14f{bottom:429.546495pt;}
.y160{bottom:431.786494pt;}
.y47{bottom:435.746667pt;}
.y8e{bottom:436.226667pt;}
.ydb{bottom:443.786489pt;}
.y10a{bottom:444.586489pt;}
.y46{bottom:446.306667pt;}
.y146{bottom:450.666486pt;}
.y4{bottom:451.746667pt;}
.y15f{bottom:452.906486pt;}
.y45{bottom:457.026667pt;}
.y8d{bottom:457.506667pt;}
.yda{bottom:464.906481pt;}
.y109{bottom:465.706480pt;}
.y44{bottom:467.746667pt;}
.y15e{bottom:474.026477pt;}
.y3{bottom:475.746667pt;}
.y43{bottom:478.306667pt;}
.y8c{bottom:478.626667pt;}
.yd9{bottom:486.026472pt;}
.y108{bottom:486.986472pt;}
.y42{bottom:489.026667pt;}
.y15d{bottom:495.146469pt;}
.y2{bottom:497.666667pt;}
.y41{bottom:499.746667pt;}
.y8b{bottom:499.773333pt;}
.yd8{bottom:507.146464pt;}
.y107{bottom:508.106463pt;}
.y40{bottom:510.306667pt;}
.y11e{bottom:514.186461pt;}
.y15c{bottom:516.426460pt;}
.y8a{bottom:520.893333pt;}
.y3f{bottom:521.026667pt;}
.yd6{bottom:528.426455pt;}
.y106{bottom:529.226455pt;}
.y3e{bottom:531.746667pt;}
.yd7{bottom:533.066453pt;}
.y153{bottom:535.306453pt;}
.y15b{bottom:537.546452pt;}
.y89{bottom:542.173333pt;}
.y3d{bottom:542.306667pt;}
.yd5{bottom:549.546447pt;}
.y105{bottom:550.346447pt;}
.y3c{bottom:553.026667pt;}
.y11d{bottom:556.426444pt;}
.y15a{bottom:558.666443pt;}
.y88{bottom:563.293333pt;}
.y3b{bottom:563.746667pt;}
.yd4{bottom:570.666438pt;}
.y14c{bottom:571.146438pt;}
.y104{bottom:571.466438pt;}
.y3a{bottom:574.333333pt;}
.y159{bottom:579.786435pt;}
.y87{bottom:584.413333pt;}
.y39{bottom:585.053333pt;}
.yd3{bottom:591.786430pt;}
.y140{bottom:592.426430pt;}
.y103{bottom:592.746430pt;}
.y38{bottom:595.773333pt;}
.y158{bottom:598.346427pt;}
.y86{bottom:605.533333pt;}
.y37{bottom:606.333333pt;}
.yd2{bottom:613.066421pt;}
.y13f{bottom:613.546421pt;}
.y102{bottom:613.866421pt;}
.y157{bottom:616.746420pt;}
.y36{bottom:617.053333pt;}
.y85{bottom:626.653333pt;}
.y35{bottom:627.773333pt;}
.yd1{bottom:634.186413pt;}
.y101{bottom:634.986413pt;}
.y156{bottom:635.146413pt;}
.y34{bottom:638.333333pt;}
.y33{bottom:649.053333pt;}
.yd0{bottom:654.986405pt;}
.y100{bottom:656.106404pt;}
.y32{bottom:659.773333pt;}
.y31{bottom:670.333333pt;}
.ycf{bottom:676.106396pt;}
.yff{bottom:677.386396pt;}
.y30{bottom:681.053333pt;}
.yb4{bottom:691.293333pt;}
.yce{bottom:697.706388pt;}
.yfe{bottom:698.506387pt;}
.y2f{bottom:702.333333pt;}
.y11c{bottom:704.586385pt;}
.ya4{bottom:705.053333pt;}
.y2e{bottom:713.053333pt;}
.ycd{bottom:718.826379pt;}
.yfd{bottom:719.626379pt;}
.y2d{bottom:723.773333pt;}
.y80{bottom:724.733333pt;}
.y2c{bottom:734.333333pt;}
.ycc{bottom:739.946371pt;}
.yfc{bottom:740.746370pt;}
.y2b{bottom:745.053333pt;}
.y2a{bottom:755.773333pt;}
.ycb{bottom:761.066362pt;}
.yfb{bottom:762.026362pt;}
.y29{bottom:766.333333pt;}
.y14b{bottom:768.106359pt;}
.y28{bottom:777.053333pt;}
.yca{bottom:782.186354pt;}
.yfa{bottom:783.146353pt;}
.y27{bottom:787.773333pt;}
.y148{bottom:789.226351pt;}
.y73{bottom:789.226667pt;}
.y26{bottom:798.373333pt;}
.yc9{bottom:803.466345pt;}
.yf9{bottom:804.266345pt;}
.y25{bottom:809.093333pt;}
.y24{bottom:819.813333pt;}
.yc8{bottom:824.586337pt;}
.yf8{bottom:825.386337pt;}
.y23{bottom:830.373333pt;}
.y22{bottom:841.093333pt;}
.yc7{bottom:845.706328pt;}
.yf7{bottom:846.666328pt;}
.y21{bottom:851.813333pt;}
.y143{bottom:852.746326pt;}
.y20{bottom:862.373333pt;}
.yc6{bottom:867.146320pt;}
.yf6{bottom:867.786320pt;}
.y1f{bottom:873.093333pt;}
.y12a{bottom:873.866317pt;}
.y1e{bottom:883.813333pt;}
.yf5{bottom:888.906311pt;}
.yc5{bottom:889.386311pt;}
.y1d{bottom:894.373333pt;}
.y1c{bottom:905.093333pt;}
.yf4{bottom:910.026303pt;}
.yc4{bottom:910.826302pt;}
.y1b{bottom:915.813333pt;}
.y142{bottom:916.106300pt;}
.y1a{bottom:926.373333pt;}
.y72{bottom:928.933333pt;}
.yf3{bottom:931.306294pt;}
.yc3{bottom:933.066293pt;}
.y19{bottom:937.093333pt;}
.y18{bottom:947.813333pt;}
.y71{bottom:950.053333pt;}
.yf2{bottom:952.426286pt;}
.yc2{bottom:955.146285pt;}
.y17{bottom:958.373333pt;}
.y13d{bottom:958.506283pt;}
.y16{bottom:969.093333pt;}
.y70{bottom:971.173333pt;}
.yf1{bottom:973.546277pt;}
.y13e{bottom:979.626275pt;}
.yc1{bottom:979.786275pt;}
.y15{bottom:979.813333pt;}
.y14{bottom:990.373333pt;}
.y6f{bottom:992.453333pt;}
.yf0{bottom:994.666269pt;}
.yb5{bottom:997.066268pt;}
.y13{bottom:1001.093333pt;}
.y6e{bottom:1007.333333pt;}
.y12{bottom:1011.813333pt;}
.y11{bottom:1022.400000pt;}
.y1{bottom:1030.240000pt;}
.y10{bottom:1033.120000pt;}
.yf{bottom:1043.840000pt;}
.yed{bottom:1053.706245pt;}
.ye{bottom:1054.400000pt;}
.yd{bottom:1065.120000pt;}
.yec{bottom:1069.066239pt;}
.yc{bottom:1075.840000pt;}
.yb{bottom:1086.400000pt;}
.h1d{height:14.880000pt;}
.h28{height:29.415668pt;}
.h23{height:30.758388pt;}
.hc{height:35.091250pt;}
.hd{height:35.196000pt;}
.h2{height:36.062000pt;}
.h26{height:36.440305pt;}
.h1e{height:36.759025pt;}
.h3{height:36.883125pt;}
.hf{height:36.989055pt;}
.h25{height:38.163185pt;}
.h18{height:42.032838pt;}
.hb{height:42.900937pt;}
.he{height:43.029000pt;}
.h27{height:43.903982pt;}
.h22{height:44.287982pt;}
.h21{height:44.998382pt;}
.h1c{height:47.276781pt;}
.h24{height:49.203418pt;}
.h1a{height:49.622500pt;}
.h1f{height:51.816939pt;}
.h8{height:52.818750pt;}
.h9{height:52.916562pt;}
.h6{height:55.675294pt;}
.h17{height:56.156250pt;}
.h1b{height:56.959977pt;}
.h7{height:57.220312pt;}
.ha{height:57.647187pt;}
.h10{height:58.563750pt;}
.h20{height:59.281226pt;}
.h14{height:62.781250pt;}
.h13{height:62.812500pt;}
.h15{height:64.480000pt;}
.h11{height:64.500000pt;}
.h4{height:73.359375pt;}
.h5{height:81.203750pt;}
.h12{height:133.453333pt;}
.h19{height:302.266667pt;}
.h16{height:641.213333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:3.520000pt;}
.w3{width:61.626667pt;}
.w5{width:64.946667pt;}
.w4{width:511.120000pt;}
.w2{width:623.760000pt;}
.w6{width:793.333333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4d{left:7.192000pt;}
.x13{left:53.280000pt;}
.x4f{left:54.426667pt;}
.x2d{left:71.200000pt;}
.x22{left:72.992000pt;}
.x17{left:77.792000pt;}
.x1{left:80.672000pt;}
.x4a{left:83.232000pt;}
.x1d{left:100.192000pt;}
.x18{left:108.992000pt;}
.x53{left:113.439955pt;}
.x5a{left:117.759953pt;}
.x58{left:122.399951pt;}
.x51{left:126.226667pt;}
.x28{left:131.232000pt;}
.x56{left:132.319947pt;}
.x3e{left:133.786667pt;}
.x3c{left:135.706667pt;}
.x3b{left:137.946667pt;}
.x25{left:140.506667pt;}
.x30{left:142.426667pt;}
.x1f{left:143.546667pt;}
.x41{left:145.146667pt;}
.x7b{left:148.799940pt;}
.x21{left:150.746667pt;}
.x48{left:151.706667pt;}
.x2c{left:153.466667pt;}
.x1e{left:155.386667pt;}
.x15{left:158.746667pt;}
.xe{left:160.826667pt;}
.x16{left:170.266667pt;}
.x2e{left:173.466667pt;}
.x3d{left:174.906667pt;}
.x38{left:176.026667pt;}
.x27{left:178.106667pt;}
.x1c{left:180.026667pt;}
.x40{left:181.466667pt;}
.x37{left:184.026667pt;}
.xc{left:187.226667pt;}
.x26{left:189.306667pt;}
.x35{left:192.026667pt;}
.x7{left:193.626667pt;}
.x11{left:194.746667pt;}
.x2a{left:196.026667pt;}
.x2b{left:198.426667pt;}
.x1b{left:200.346667pt;}
.x34{left:203.546667pt;}
.x29{left:205.146667pt;}
.x31{left:206.266667pt;}
.x23{left:208.986667pt;}
.x3a{left:210.266667pt;}
.x24{left:214.106667pt;}
.x42{left:215.546667pt;}
.xd{left:222.426667pt;}
.x39{left:223.706667pt;}
.x20{left:224.986667pt;}
.x36{left:226.746667pt;}
.x10{left:235.266667pt;}
.x14{left:237.026667pt;}
.x32{left:240.866667pt;}
.x33{left:243.106667pt;}
.x3{left:244.706667pt;}
.x47{left:256.386667pt;}
.x2f{left:260.226667pt;}
.x19{left:261.186667pt;}
.x12{left:265.506667pt;}
.x61{left:269.919892pt;}
.x4{left:272.066667pt;}
.x62{left:275.359890pt;}
.x59{left:276.799889pt;}
.x43{left:287.426667pt;}
.x75{left:290.399884pt;}
.x5{left:293.666667pt;}
.x67{left:299.519880pt;}
.x44{left:300.706667pt;}
.x45{left:303.906667pt;}
.x68{left:304.959878pt;}
.x3f{left:321.026667pt;}
.xf{left:325.346667pt;}
.x1a{left:327.746667pt;}
.x55{left:335.679327pt;}
.x4b{left:337.506667pt;}
.x46{left:338.786667pt;}
.x6d{left:340.959864pt;}
.x57{left:344.800470pt;}
.xb{left:352.066667pt;}
.x6{left:357.026667pt;}
.x9{left:360.706667pt;}
.x4c{left:364.546667pt;}
.x77{left:367.519853pt;}
.x76{left:374.879850pt;}
.x78{left:378.399849pt;}
.xa{left:390.653333pt;}
.x8{left:392.413333pt;}
.x2{left:396.253333pt;}
.x5d{left:415.519834pt;}
.x5e{left:420.959832pt;}
.x49{left:447.933333pt;}
.x52{left:457.119817pt;}
.x63{left:463.839814pt;}
.x64{left:467.679813pt;}
.x69{left:473.119811pt;}
.x7c{left:511.519795pt;}
.x5f{left:517.439793pt;}
.x60{left:522.879791pt;}
.x6e{left:533.599787pt;}
.x73{left:538.719785pt;}
.x74{left:549.599780pt;}
.x6f{left:563.039775pt;}
.x70{left:573.919770pt;}
.x65{left:592.959763pt;}
.x50{left:594.373333pt;}
.x66{left:598.399761pt;}
.x79{left:606.719757pt;}
.x7a{left:617.599753pt;}
.x71{left:641.439743pt;}
.x72{left:652.319739pt;}
.x6c{left:654.719738pt;}
.x5b{left:660.319736pt;}
.x6a{left:665.599734pt;}
.x6b{left:676.479729pt;}
.x5c{left:680.319728pt;}
.x4e{left:707.013333pt;}
.x54{left:789.760000pt;}
}




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