
    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_f5c4862303bc17c6257cafc6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.761230;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_b0a93e6b433c4353b07d745b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104000;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_8a826d8fb758141025a714da.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.832000;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_8d87605602eaf4b247fd9481.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.127000;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_ee95063e2f0c408ae5fbb30a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984048;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_6caeab958476b63e671aa465.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.127000;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_26741e7d57525b69bc8dfdc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.880000;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_b0a93e6b433c4353b07d745b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104000;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_dc1a3561a8069d811a80b315.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.142000;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_26741e7d57525b69bc8dfdc6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.880000;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_b0a93e6b433c4353b07d745b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104000;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_90a9caeef7ab6850484bdf9b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;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_fd03fac4567da3a316ac5daa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_d351c4fda132d8f9759eb4ec.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.766113;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_ac108d56755b9495133eb38f.woff2')format("woff");}.fff{font-family:fff;line-height:0.693848;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_e0ca5bd836d2a8b314f96c1a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.700000;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_dd481f005726f42178d5cf5c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_0f5422bcd381e302e7663bea.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:7.269600px;}
.v2{vertical-align:32.399400px;}
.ls7{letter-spacing:-2.310000px;}
.ls8{letter-spacing:-2.244000px;}
.ls11{letter-spacing:-0.419415px;}
.lsb{letter-spacing:-0.363909px;}
.ls13{letter-spacing:-0.346473px;}
.ls2{letter-spacing:-0.330000px;}
.lsc{letter-spacing:-0.319120px;}
.ls9{letter-spacing:-0.239140px;}
.lsa{letter-spacing:-0.155961px;}
.lse{letter-spacing:-0.136766px;}
.ls10{letter-spacing:-0.054706px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.041030px;}
.lsd{letter-spacing:0.095736px;}
.ls4{letter-spacing:0.105600px;}
.ls6{letter-spacing:0.198000px;}
.ls12{letter-spacing:0.451327px;}
.ls5{letter-spacing:0.858000px;}
.ls3{letter-spacing:1.008000px;}
.ls1{letter-spacing:1.440000px;}
.ls14{letter-spacing:3.762000px;}
.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;}
}
.wsa{word-spacing:-51.623091px;}
.ws10{word-spacing:-46.039927px;}
.wsb{word-spacing:-45.684336px;}
.wsd{word-spacing:-45.629630px;}
.wse{word-spacing:-45.533894px;}
.wsc{word-spacing:-45.451834px;}
.ws11{word-spacing:-45.242127px;}
.wsf{word-spacing:-45.169185px;}
.ws9{word-spacing:-25.754360px;}
.ws4{word-spacing:-18.288000px;}
.ws8{word-spacing:-16.500000px;}
.ws5{word-spacing:-15.840000px;}
.ws0{word-spacing:-13.500000px;}
.ws1{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:545.946000px;}
.ws7{word-spacing:630.510000px;}
.ws3{word-spacing:1055.548800px;}
._18{margin-left:-11.773800px;}
._19{margin-left:-8.887800px;}
._17{margin-left:-7.809600px;}
._6{margin-left:-6.750000px;}
._2{margin-left:-5.400000px;}
._5{margin-left:-4.325400px;}
._9{margin-left:-3.300000px;}
._0{margin-left:-2.165400px;}
._1{margin-left:-1.085400px;}
._3{width:1.440000px;}
._4{width:2.741400px;}
._8{width:4.019400px;}
._7{width:5.454000px;}
._a{width:6.702000px;}
._b{width:8.448000px;}
._16{width:10.164000px;}
._e{width:18.546000px;}
._f{width:51.546000px;}
._11{width:59.599602px;}
._12{width:95.693202px;}
._13{width:168.939402px;}
._c{width:300.311400px;}
._d{width:383.036400px;}
._10{width:535.633800px;}
._15{width:1002.886002px;}
._14{width:1075.797402px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:45.588600px;}
.fs3{font-size:48.000000px;}
.fs7{font-size:48.844800px;}
.fs6{font-size:51.987000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:55.700400px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:144.000000px;}
.y90{bottom:-20.592600px;}
.ya9{bottom:-10.977450px;}
.y8f{bottom:-7.280250px;}
.y0{bottom:0.000000px;}
.ya8{bottom:0.696450px;}
.y1{bottom:68.300550px;}
.y4{bottom:69.454500px;}
.y52{bottom:70.117950px;}
.y70{bottom:115.933950px;}
.yc6{bottom:120.888300px;}
.y9c{bottom:126.570300px;}
.y51{bottom:130.043100px;}
.ye5{bottom:134.050350px;}
.yc5{bottom:140.688300px;}
.y9b{bottom:146.370450px;}
.y8e{bottom:147.747900px;}
.y6f{bottom:148.489800px;}
.y50{bottom:149.843100px;}
.ye4{bottom:153.850350px;}
.yc4{bottom:160.488300px;}
.y6e{bottom:168.289800px;}
.y4f{bottom:169.643100px;}
.y8d{bottom:170.610000px;}
.ye3{bottom:173.650200px;}
.yc3{bottom:180.288300px;}
.y26{bottom:185.524200px;}
.y6d{bottom:192.341850px;}
.ye2{bottom:193.450350px;}
.yc2{bottom:200.088300px;}
.y25{bottom:205.324200px;}
.y4e{bottom:206.451000px;}
.ye1{bottom:213.250350px;}
.y99{bottom:214.447950px;}
.y92{bottom:214.450650px;}
.y96{bottom:214.705650px;}
.y9a{bottom:214.708350px;}
.y6c{bottom:216.393750px;}
.yc1{bottom:219.888300px;}
.y98{bottom:220.807200px;}
.y94{bottom:222.520500px;}
.y24{bottom:225.124200px;}
.ye0{bottom:233.050350px;}
.y6b{bottom:236.193750px;}
.yc0{bottom:239.688300px;}
.y23{bottom:244.924200px;}
.y93{bottom:246.648600px;}
.y97{bottom:247.240500px;}
.ydf{bottom:252.850350px;}
.y4d{bottom:257.814750px;}
.ybf{bottom:259.488300px;}
.y6a{bottom:260.245800px;}
.y22{bottom:264.724200px;}
.yde{bottom:272.650200px;}
.y4c{bottom:277.614750px;}
.ybe{bottom:279.288300px;}
.y69{bottom:284.297700px;}
.y21{bottom:284.524200px;}
.y91{bottom:290.520600px;}
.y95{bottom:290.778300px;}
.ydd{bottom:292.450350px;}
.y4b{bottom:297.414750px;}
.ybd{bottom:299.088300px;}
.y68{bottom:304.097700px;}
.y20{bottom:304.324200px;}
.ydc{bottom:312.250350px;}
.y4a{bottom:317.214750px;}
.ybc{bottom:318.888300px;}
.y67{bottom:323.897700px;}
.y1f{bottom:324.124200px;}
.y8c{bottom:329.038950px;}
.ydb{bottom:332.050350px;}
.y49{bottom:337.014750px;}
.ybb{bottom:338.688300px;}
.yda{bottom:351.850350px;}
.y66{bottom:356.453700px;}
.y48{bottom:356.814750px;}
.yba{bottom:358.488300px;}
.y8b{bottom:363.505950px;}
.y1e{bottom:363.724200px;}
.yd9{bottom:371.650350px;}
.y47{bottom:376.614750px;}
.yb9{bottom:378.288300px;}
.y8a{bottom:383.305950px;}
.y1d{bottom:383.524200px;}
.yd8{bottom:391.450350px;}
.y46{bottom:396.414750px;}
.y65{bottom:397.513500px;}
.yb8{bottom:398.088300px;}
.y89{bottom:403.105950px;}
.yd7{bottom:411.250350px;}
.y45{bottom:416.214750px;}
.yb7{bottom:417.888300px;}
.y88{bottom:422.905950px;}
.y1c{bottom:423.124200px;}
.yd6{bottom:431.050350px;}
.y44{bottom:436.014750px;}
.y1b{bottom:442.924200px;}
.yd5{bottom:450.850350px;}
.y87{bottom:451.209900px;}
.yb6{bottom:454.696200px;}
.y43{bottom:455.814750px;}
.y1a{bottom:462.724200px;}
.yd4{bottom:470.650350px;}
.y86{bottom:471.009900px;}
.y42{bottom:475.614750px;}
.y19{bottom:482.524200px;}
.yd3{bottom:490.450350px;}
.y85{bottom:490.809900px;}
.y41{bottom:495.414750px;}
.y18{bottom:502.324200px;}
.yb5{bottom:506.059950px;}
.yd2{bottom:510.250350px;}
.y84{bottom:510.609900px;}
.y40{bottom:515.214750px;}
.y17{bottom:522.124200px;}
.yb4{bottom:525.859950px;}
.yd1{bottom:530.050350px;}
.y83{bottom:530.409900px;}
.y3f{bottom:535.014750px;}
.y16{bottom:541.924200px;}
.yd0{bottom:549.850350px;}
.ya7{bottom:550.099500px;}
.y3e{bottom:554.814750px;}
.y82{bottom:558.713850px;}
.yb1{bottom:561.439350px;}
.y15{bottom:561.724200px;}
.ycf{bottom:569.650350px;}
.y3d{bottom:574.614750px;}
.yb0{bottom:575.275350px;}
.yaa{bottom:589.339500px;}
.yce{bottom:589.450350px;}
.y81{bottom:591.269700px;}
.y3c{bottom:607.170750px;}
.ycd{bottom:609.250350px;}
.y80{bottom:611.069850px;}
.yab{bottom:616.533150px;}
.y14{bottom:621.124200px;}
.y3b{bottom:626.970750px;}
.ycc{bottom:629.050350px;}
.yb3{bottom:631.968000px;}
.y13{bottom:637.324200px;}
.yac{bottom:643.726650px;}
.y3a{bottom:646.770750px;}
.y7f{bottom:647.877600px;}
.y64{bottom:648.850350px;}
.y12{bottom:653.524200px;}
.yb2{bottom:654.675000px;}
.y39{bottom:666.570750px;}
.y63{bottom:668.650350px;}
.y11{bottom:669.724200px;}
.yad{bottom:670.920300px;}
.ycb{bottom:685.658250px;}
.y62{bottom:688.450350px;}
.y10{bottom:690.176100px;}
.yae{bottom:698.113950px;}
.y38{bottom:699.126600px;}
.y7e{bottom:699.241350px;}
.yf{bottom:706.376100px;}
.y61{bottom:708.250350px;}
.y37{bottom:718.926600px;}
.ye{bottom:722.576250px;}
.yaf{bottom:725.307450px;}
.y60{bottom:728.050350px;}
.yca{bottom:737.022000px;}
.y36{bottom:738.726600px;}
.yd{bottom:738.776250px;}
.y7d{bottom:740.488800px;}
.yc{bottom:754.976100px;}
.y7c{bottom:756.688800px;}
.yc9{bottom:756.822000px;}
.y35{bottom:758.526600px;}
.y78{bottom:764.788950px;}
.y5f{bottom:764.858250px;}
.y7b{bottom:772.888800px;}
.ya6{bottom:775.162200px;}
.yb{bottom:775.428150px;}
.yc8{bottom:776.622000px;}
.y34{bottom:778.326600px;}
.y77{bottom:780.988800px;}
.y7a{bottom:789.088950px;}
.ya{bottom:791.628150px;}
.ya5{bottom:794.962050px;}
.yc7{bottom:796.422000px;}
.y33{bottom:798.126600px;}
.y79{bottom:805.288950px;}
.y9{bottom:807.828150px;}
.ya4{bottom:814.762050px;}
.y5e{bottom:816.221850px;}
.y32{bottom:817.926600px;}
.y8{bottom:824.028150px;}
.y76{bottom:827.076150px;}
.ya3{bottom:834.562200px;}
.y5d{bottom:836.022000px;}
.y31{bottom:837.726600px;}
.y74{bottom:843.276150px;}
.ya2{bottom:854.362200px;}
.y5c{bottom:855.822000px;}
.y30{bottom:857.526600px;}
.y75{bottom:859.476150px;}
.y7{bottom:864.280200px;}
.ya1{bottom:874.162200px;}
.y5b{bottom:875.622000px;}
.y2f{bottom:877.326600px;}
.y73{bottom:885.251700px;}
.y5a{bottom:895.422000px;}
.y2e{bottom:897.126600px;}
.ya0{bottom:906.718050px;}
.y6{bottom:907.480200px;}
.y59{bottom:915.221850px;}
.y72{bottom:915.466800px;}
.y2d{bottom:916.926600px;}
.y9f{bottom:926.518050px;}
.y58{bottom:935.022000px;}
.y71{bottom:935.266800px;}
.y2c{bottom:936.726600px;}
.y9e{bottom:946.318050px;}
.y5{bottom:950.680050px;}
.y57{bottom:954.822000px;}
.y2b{bottom:956.526600px;}
.y9d{bottom:966.118050px;}
.y56{bottom:974.622000px;}
.y2a{bottom:976.326600px;}
.y55{bottom:994.422000px;}
.y29{bottom:996.126600px;}
.y54{bottom:1014.221850px;}
.y28{bottom:1032.934500px;}
.y53{bottom:1034.022000px;}
.y3{bottom:1080.760200px;}
.y27{bottom:1089.627750px;}
.y2{bottom:1096.960200px;}
.h11{height:0.000000px;}
.h15{height:31.208602px;}
.h14{height:32.555250px;}
.h13{height:34.191360px;}
.h10{height:35.588757px;}
.he{height:37.124534px;}
.h6{height:38.612571px;}
.hd{height:38.990280px;}
.hf{height:39.167940px;}
.h8{height:41.952000px;}
.h5{height:46.332000px;}
.h3{height:47.196000px;}
.h2{height:49.500000px;}
.h7{height:56.628000px;}
.ha{height:57.618000px;}
.h16{height:61.776000px;}
.h9{height:62.856000px;}
.hb{height:78.731400px;}
.h4{height:117.216000px;}
.hc{height:142.440000px;}
.h12{height:193.906500px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w3{width:0.000000px;}
.w4{width:190.275000px;}
.w2{width:190.276500px;}
.w5{width:407.040000px;}
.w0{width:829.134000px;}
.w1{width:829.500000px;}
.x1d{left:-286.910700px;}
.x1e{left:-268.585200px;}
.x14{left:-40.527900px;}
.x15{left:-22.202400px;}
.x27{left:-20.403450px;}
.x0{left:0.000000px;}
.x2{left:93.543300px;}
.x5{left:114.843300px;}
.x7{left:123.307050px;}
.x11{left:131.811000px;}
.xe{left:153.981600px;}
.x9{left:182.834550px;}
.x24{left:204.094500px;}
.xd{left:206.468550px;}
.x25{left:211.047000px;}
.x2e{left:212.598450px;}
.x13{left:214.833000px;}
.x2a{left:219.207000px;}
.x29{left:225.053700px;}
.x1f{left:228.207450px;}
.x28{left:230.638350px;}
.x8{left:231.997200px;}
.x6{left:248.526750px;}
.xa{left:259.370100px;}
.x17{left:265.405050px;}
.xc{left:269.039400px;}
.x12{left:281.932350px;}
.x16{left:318.262800px;}
.x20{left:331.796250px;}
.x2c{left:344.780850px;}
.x2b{left:346.137000px;}
.x18{left:368.987700px;}
.xb{left:388.950900px;}
.x26{left:407.269350px;}
.x2d{left:412.001250px;}
.xf{left:414.227250px;}
.x1c{left:424.024500px;}
.x10{left:431.235150px;}
.x22{left:482.626950px;}
.x1a{left:519.809400px;}
.x21{left:536.771400px;}
.x19{left:573.962850px;}
.x23{left:586.876950px;}
.x4{left:587.982750px;}
.x1b{left:624.068250px;}
.x3{left:688.894650px;}
.x1{left:712.919100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:6.461867pt;}
.v2{vertical-align:28.799467pt;}
.ls7{letter-spacing:-2.053333pt;}
.ls8{letter-spacing:-1.994667pt;}
.ls11{letter-spacing:-0.372813pt;}
.lsb{letter-spacing:-0.323475pt;}
.ls13{letter-spacing:-0.307976pt;}
.ls2{letter-spacing:-0.293333pt;}
.lsc{letter-spacing:-0.283662pt;}
.ls9{letter-spacing:-0.212569pt;}
.lsa{letter-spacing:-0.138632pt;}
.lse{letter-spacing:-0.121570pt;}
.ls10{letter-spacing:-0.048628pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.036471pt;}
.lsd{letter-spacing:0.085099pt;}
.ls4{letter-spacing:0.093867pt;}
.ls6{letter-spacing:0.176000pt;}
.ls12{letter-spacing:0.401180pt;}
.ls5{letter-spacing:0.762667pt;}
.ls3{letter-spacing:0.896000pt;}
.ls1{letter-spacing:1.280000pt;}
.ls14{letter-spacing:3.344000pt;}
.wsa{word-spacing:-45.887192pt;}
.ws10{word-spacing:-40.924380pt;}
.wsb{word-spacing:-40.608299pt;}
.wsd{word-spacing:-40.559671pt;}
.wse{word-spacing:-40.474572pt;}
.wsc{word-spacing:-40.401630pt;}
.ws11{word-spacing:-40.215224pt;}
.wsf{word-spacing:-40.150387pt;}
.ws9{word-spacing:-22.892764pt;}
.ws4{word-spacing:-16.256000pt;}
.ws8{word-spacing:-14.666667pt;}
.ws5{word-spacing:-14.080000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:485.285333pt;}
.ws7{word-spacing:560.453333pt;}
.ws3{word-spacing:938.265600pt;}
._18{margin-left:-10.465600pt;}
._19{margin-left:-7.900267pt;}
._17{margin-left:-6.941867pt;}
._6{margin-left:-6.000000pt;}
._2{margin-left:-4.800000pt;}
._5{margin-left:-3.844800pt;}
._9{margin-left:-2.933333pt;}
._0{margin-left:-1.924800pt;}
._1{margin-left:-0.964800pt;}
._3{width:1.280000pt;}
._4{width:2.436800pt;}
._8{width:3.572800pt;}
._7{width:4.848000pt;}
._a{width:5.957333pt;}
._b{width:7.509333pt;}
._16{width:9.034667pt;}
._e{width:16.485333pt;}
._f{width:45.818667pt;}
._11{width:52.977424pt;}
._12{width:85.060624pt;}
._13{width:150.168357pt;}
._c{width:266.943467pt;}
._d{width:340.476800pt;}
._10{width:476.118933pt;}
._15{width:891.454224pt;}
._14{width:956.264357pt;}
.fs8{font-size:40.523200pt;}
.fs3{font-size:42.666667pt;}
.fs7{font-size:43.417600pt;}
.fs6{font-size:46.210667pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:49.511467pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:128.000000pt;}
.y90{bottom:-18.304533pt;}
.ya9{bottom:-9.757733pt;}
.y8f{bottom:-6.471333pt;}
.y0{bottom:0.000000pt;}
.ya8{bottom:0.619067pt;}
.y1{bottom:60.711600pt;}
.y4{bottom:61.737333pt;}
.y52{bottom:62.327067pt;}
.y70{bottom:103.052400pt;}
.yc6{bottom:107.456267pt;}
.y9c{bottom:112.506933pt;}
.y51{bottom:115.593867pt;}
.ye5{bottom:119.155867pt;}
.yc5{bottom:125.056267pt;}
.y9b{bottom:130.107067pt;}
.y8e{bottom:131.331467pt;}
.y6f{bottom:131.990933pt;}
.y50{bottom:133.193867pt;}
.ye4{bottom:136.755867pt;}
.yc4{bottom:142.656267pt;}
.y6e{bottom:149.590933pt;}
.y4f{bottom:150.793867pt;}
.y8d{bottom:151.653333pt;}
.ye3{bottom:154.355733pt;}
.yc3{bottom:160.256267pt;}
.y26{bottom:164.910400pt;}
.y6d{bottom:170.970533pt;}
.ye2{bottom:171.955867pt;}
.yc2{bottom:177.856267pt;}
.y25{bottom:182.510400pt;}
.y4e{bottom:183.512000pt;}
.ye1{bottom:189.555867pt;}
.y99{bottom:190.620400pt;}
.y92{bottom:190.622800pt;}
.y96{bottom:190.849467pt;}
.y9a{bottom:190.851867pt;}
.y6c{bottom:192.350000pt;}
.yc1{bottom:195.456267pt;}
.y98{bottom:196.273067pt;}
.y94{bottom:197.796000pt;}
.y24{bottom:200.110400pt;}
.ye0{bottom:207.155867pt;}
.y6b{bottom:209.950000pt;}
.yc0{bottom:213.056267pt;}
.y23{bottom:217.710400pt;}
.y93{bottom:219.243200pt;}
.y97{bottom:219.769333pt;}
.ydf{bottom:224.755867pt;}
.y4d{bottom:229.168667pt;}
.ybf{bottom:230.656267pt;}
.y6a{bottom:231.329600pt;}
.y22{bottom:235.310400pt;}
.yde{bottom:242.355733pt;}
.y4c{bottom:246.768667pt;}
.ybe{bottom:248.256267pt;}
.y69{bottom:252.709067pt;}
.y21{bottom:252.910400pt;}
.y91{bottom:258.240533pt;}
.y95{bottom:258.469600pt;}
.ydd{bottom:259.955867pt;}
.y4b{bottom:264.368667pt;}
.ybd{bottom:265.856267pt;}
.y68{bottom:270.309067pt;}
.y20{bottom:270.510400pt;}
.ydc{bottom:277.555867pt;}
.y4a{bottom:281.968667pt;}
.ybc{bottom:283.456267pt;}
.y67{bottom:287.909067pt;}
.y1f{bottom:288.110400pt;}
.y8c{bottom:292.479067pt;}
.ydb{bottom:295.155867pt;}
.y49{bottom:299.568667pt;}
.ybb{bottom:301.056267pt;}
.yda{bottom:312.755867pt;}
.y66{bottom:316.847733pt;}
.y48{bottom:317.168667pt;}
.yba{bottom:318.656267pt;}
.y8b{bottom:323.116400pt;}
.y1e{bottom:323.310400pt;}
.yd9{bottom:330.355867pt;}
.y47{bottom:334.768667pt;}
.yb9{bottom:336.256267pt;}
.y8a{bottom:340.716400pt;}
.y1d{bottom:340.910400pt;}
.yd8{bottom:347.955867pt;}
.y46{bottom:352.368667pt;}
.y65{bottom:353.345333pt;}
.yb8{bottom:353.856267pt;}
.y89{bottom:358.316400pt;}
.yd7{bottom:365.555867pt;}
.y45{bottom:369.968667pt;}
.yb7{bottom:371.456267pt;}
.y88{bottom:375.916400pt;}
.y1c{bottom:376.110400pt;}
.yd6{bottom:383.155867pt;}
.y44{bottom:387.568667pt;}
.y1b{bottom:393.710400pt;}
.yd5{bottom:400.755867pt;}
.y87{bottom:401.075467pt;}
.yb6{bottom:404.174400pt;}
.y43{bottom:405.168667pt;}
.y1a{bottom:411.310400pt;}
.yd4{bottom:418.355867pt;}
.y86{bottom:418.675467pt;}
.y42{bottom:422.768667pt;}
.y19{bottom:428.910400pt;}
.yd3{bottom:435.955867pt;}
.y85{bottom:436.275467pt;}
.y41{bottom:440.368667pt;}
.y18{bottom:446.510400pt;}
.yb5{bottom:449.831067pt;}
.yd2{bottom:453.555867pt;}
.y84{bottom:453.875467pt;}
.y40{bottom:457.968667pt;}
.y17{bottom:464.110400pt;}
.yb4{bottom:467.431067pt;}
.yd1{bottom:471.155867pt;}
.y83{bottom:471.475467pt;}
.y3f{bottom:475.568667pt;}
.y16{bottom:481.710400pt;}
.yd0{bottom:488.755867pt;}
.ya7{bottom:488.977333pt;}
.y3e{bottom:493.168667pt;}
.y82{bottom:496.634533pt;}
.yb1{bottom:499.057200pt;}
.y15{bottom:499.310400pt;}
.ycf{bottom:506.355867pt;}
.y3d{bottom:510.768667pt;}
.yb0{bottom:511.355867pt;}
.yaa{bottom:523.857333pt;}
.yce{bottom:523.955867pt;}
.y81{bottom:525.573067pt;}
.y3c{bottom:539.707333pt;}
.ycd{bottom:541.555867pt;}
.y80{bottom:543.173200pt;}
.yab{bottom:548.029467pt;}
.y14{bottom:552.110400pt;}
.y3b{bottom:557.307333pt;}
.ycc{bottom:559.155867pt;}
.yb3{bottom:561.749333pt;}
.y13{bottom:566.510400pt;}
.yac{bottom:572.201467pt;}
.y3a{bottom:574.907333pt;}
.y7f{bottom:575.891200pt;}
.y64{bottom:576.755867pt;}
.y12{bottom:580.910400pt;}
.yb2{bottom:581.933333pt;}
.y39{bottom:592.507333pt;}
.y63{bottom:594.355867pt;}
.y11{bottom:595.310400pt;}
.yad{bottom:596.373600pt;}
.ycb{bottom:609.474000pt;}
.y62{bottom:611.955867pt;}
.y10{bottom:613.489867pt;}
.yae{bottom:620.545733pt;}
.y38{bottom:621.445867pt;}
.y7e{bottom:621.547867pt;}
.yf{bottom:627.889867pt;}
.y61{bottom:629.555867pt;}
.y37{bottom:639.045867pt;}
.ye{bottom:642.290000pt;}
.yaf{bottom:644.717733pt;}
.y60{bottom:647.155867pt;}
.yca{bottom:655.130667pt;}
.y36{bottom:656.645867pt;}
.yd{bottom:656.690000pt;}
.y7d{bottom:658.212267pt;}
.yc{bottom:671.089867pt;}
.y7c{bottom:672.612267pt;}
.yc9{bottom:672.730667pt;}
.y35{bottom:674.245867pt;}
.y78{bottom:679.812400pt;}
.y5f{bottom:679.874000pt;}
.y7b{bottom:687.012267pt;}
.ya6{bottom:689.033067pt;}
.yb{bottom:689.269467pt;}
.yc8{bottom:690.330667pt;}
.y34{bottom:691.845867pt;}
.y77{bottom:694.212267pt;}
.y7a{bottom:701.412400pt;}
.ya{bottom:703.669467pt;}
.ya5{bottom:706.632933pt;}
.yc7{bottom:707.930667pt;}
.y33{bottom:709.445867pt;}
.y79{bottom:715.812400pt;}
.y9{bottom:718.069467pt;}
.ya4{bottom:724.232933pt;}
.y5e{bottom:725.530533pt;}
.y32{bottom:727.045867pt;}
.y8{bottom:732.469467pt;}
.y76{bottom:735.178800pt;}
.ya3{bottom:741.833067pt;}
.y5d{bottom:743.130667pt;}
.y31{bottom:744.645867pt;}
.y74{bottom:749.578800pt;}
.ya2{bottom:759.433067pt;}
.y5c{bottom:760.730667pt;}
.y30{bottom:762.245867pt;}
.y75{bottom:763.978800pt;}
.y7{bottom:768.249067pt;}
.ya1{bottom:777.033067pt;}
.y5b{bottom:778.330667pt;}
.y2f{bottom:779.845867pt;}
.y73{bottom:786.890400pt;}
.y5a{bottom:795.930667pt;}
.y2e{bottom:797.445867pt;}
.ya0{bottom:805.971600pt;}
.y6{bottom:806.649067pt;}
.y59{bottom:813.530533pt;}
.y72{bottom:813.748267pt;}
.y2d{bottom:815.045867pt;}
.y9f{bottom:823.571600pt;}
.y58{bottom:831.130667pt;}
.y71{bottom:831.348267pt;}
.y2c{bottom:832.645867pt;}
.y9e{bottom:841.171600pt;}
.y5{bottom:845.048933pt;}
.y57{bottom:848.730667pt;}
.y2b{bottom:850.245867pt;}
.y9d{bottom:858.771600pt;}
.y56{bottom:866.330667pt;}
.y2a{bottom:867.845867pt;}
.y55{bottom:883.930667pt;}
.y29{bottom:885.445867pt;}
.y54{bottom:901.530533pt;}
.y28{bottom:918.164000pt;}
.y53{bottom:919.130667pt;}
.y3{bottom:960.675733pt;}
.y27{bottom:968.558000pt;}
.y2{bottom:975.075733pt;}
.h11{height:0.000000pt;}
.h15{height:27.740980pt;}
.h14{height:28.938000pt;}
.h13{height:30.392320pt;}
.h10{height:31.634451pt;}
.he{height:32.999586pt;}
.h6{height:34.322286pt;}
.hd{height:34.658027pt;}
.hf{height:34.815947pt;}
.h8{height:37.290667pt;}
.h5{height:41.184000pt;}
.h3{height:41.952000pt;}
.h2{height:44.000000pt;}
.h7{height:50.336000pt;}
.ha{height:51.216000pt;}
.h16{height:54.912000pt;}
.h9{height:55.872000pt;}
.hb{height:69.983467pt;}
.h4{height:104.192000pt;}
.hc{height:126.613333pt;}
.h12{height:172.361333pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w3{width:0.000000pt;}
.w4{width:169.133333pt;}
.w2{width:169.134667pt;}
.w5{width:361.813333pt;}
.w0{width:737.008000pt;}
.w1{width:737.333333pt;}
.x1d{left:-255.031733pt;}
.x1e{left:-238.742400pt;}
.x14{left:-36.024800pt;}
.x15{left:-19.735467pt;}
.x27{left:-18.136400pt;}
.x0{left:0.000000pt;}
.x2{left:83.149600pt;}
.x5{left:102.082933pt;}
.x7{left:109.606267pt;}
.x11{left:117.165333pt;}
.xe{left:136.872533pt;}
.x9{left:162.519600pt;}
.x24{left:181.417333pt;}
.xd{left:183.527600pt;}
.x25{left:187.597333pt;}
.x2e{left:188.976400pt;}
.x13{left:190.962667pt;}
.x2a{left:194.850667pt;}
.x29{left:200.047733pt;}
.x1f{left:202.851067pt;}
.x28{left:205.011867pt;}
.x8{left:206.219733pt;}
.x6{left:220.912667pt;}
.xa{left:230.551200pt;}
.x17{left:235.915600pt;}
.xc{left:239.146133pt;}
.x12{left:250.606533pt;}
.x16{left:282.900267pt;}
.x20{left:294.930000pt;}
.x2c{left:306.471867pt;}
.x2b{left:307.677333pt;}
.x18{left:327.989067pt;}
.xb{left:345.734133pt;}
.x26{left:362.017200pt;}
.x2d{left:366.223333pt;}
.xf{left:368.202000pt;}
.x1c{left:376.910667pt;}
.x10{left:383.320133pt;}
.x22{left:429.001733pt;}
.x1a{left:462.052800pt;}
.x21{left:477.130133pt;}
.x19{left:510.189200pt;}
.x23{left:521.668400pt;}
.x4{left:522.651333pt;}
.x1b{left:554.727333pt;}
.x3{left:612.350800pt;}
.x1{left:633.705867pt;}
}




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