
    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_b39317f5fb56e6753893443f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_1c595d43a1bb480c1e79505a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f16800787b3b601dba5aa420.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_2440100cdf15e65f3f76ece2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0d73afe9e237c0dc519b13d5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_09732cc1c9604c2f927c0050.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_beb72f7cf5d658c8397d137f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_e28f3f0f1d5e68f362aa0c9e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.201172;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_88c4268b623c101b3febb91c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.708000px;}
.ls5{letter-spacing:-0.460200px;}
.ls3{letter-spacing:-0.305400px;}
.lsf{letter-spacing:-0.259800px;}
.lsa{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.091200px;}
.lsc{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012960px;}
.ls7{letter-spacing:0.017280px;}
.lse{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.135600px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.360000px;}
.ls0{letter-spacing:1.512000px;}
.ls11{letter-spacing:11.466720px;}
.ls10{letter-spacing:41.706720px;}
.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;}
}
.ws0{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.680200px;}
.wsa{word-spacing:-13.505760px;}
.ws1{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.732960px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:-9.012000px;}
.ws5{word-spacing:0.000000px;}
.wsb{word-spacing:316.992000px;}
.wsc{word-spacing:355.152000px;}
.ws9{word-spacing:360.738000px;}
._5{margin-left:-2770.855200px;}
._9{margin-left:-1575.469200px;}
._6{margin-left:-1402.466160px;}
._8{margin-left:-993.733200px;}
._d{margin-left:-688.104720px;}
._18{margin-left:-661.860000px;}
._e{margin-left:-659.954160px;}
._19{margin-left:-645.245760px;}
._a{margin-left:-571.323840px;}
._15{margin-left:-554.814240px;}
._1b{margin-left:-508.440000px;}
._1c{margin-left:-506.539200px;}
._16{margin-left:-428.114160px;}
._14{margin-left:-317.487360px;}
._f{margin-left:-215.280000px;}
._13{margin-left:-174.240000px;}
._b{margin-left:-149.040000px;}
._c{margin-left:-144.000000px;}
._10{margin-left:-132.480000px;}
._12{margin-left:-130.625280px;}
._11{margin-left:-129.600000px;}
._17{margin-left:-66.240000px;}
._1a{margin-left:-49.680000px;}
._7{margin-left:-8.213760px;}
._3{margin-left:-4.721040px;}
._21{margin-left:-3.531120px;}
._1{margin-left:-2.445840px;}
._4{margin-left:-1.158240px;}
._0{width:1.365120px;}
._2{width:2.550720px;}
._1e{width:3.617040px;}
._22{width:5.139360px;}
._23{width:6.343920px;}
._26{width:8.090400px;}
._25{width:9.382320px;}
._20{width:10.426800px;}
._1f{width:11.631120px;}
._24{width:13.449840px;}
._1d{width:22.512960px;}
._2d{width:127.329600px;}
._2a{width:342.468000px;}
._29{width:363.204000px;}
._2c{width:380.628000px;}
._28{width:387.636000px;}
._2b{width:401.364000px;}
._27{width:407.424000px;}
.fc1{color:rgb(47,84,150);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:54.144000px;}
.fs1{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya1{bottom:5.760000px;}
.ya4{bottom:5.940000px;}
.y9f{bottom:22.530000px;}
.y94{bottom:22.710000px;}
.y8b{bottom:22.785000px;}
.y9d{bottom:44.970000px;}
.y92{bottom:45.150000px;}
.y89{bottom:45.210000px;}
.y6{bottom:60.156000px;}
.y96{bottom:62.535000px;}
.y8d{bottom:62.715000px;}
.y83{bottom:62.745000px;}
.y8a{bottom:73.905000px;}
.y93{bottom:74.160000px;}
.y84{bottom:82.725000px;}
.y97{bottom:82.980000px;}
.y35{bottom:86.076000px;}
.y8e{bottom:87.990000px;}
.y68{bottom:89.136000px;}
.y9e{bottom:97.560000px;}
.yd4{bottom:101.196000px;}
.y85{bottom:102.705000px;}
.y81{bottom:103.356000px;}
.y98{bottom:103.425000px;}
.y34{bottom:106.056000px;}
.y67{bottom:108.936000px;}
.y8f{bottom:113.250000px;}
.yd3{bottom:120.996000px;}
.y86{bottom:122.655000px;}
.y80{bottom:123.156000px;}
.y99{bottom:123.870000px;}
.y33{bottom:125.856000px;}
.y66{bottom:128.736000px;}
.y90{bottom:138.525000px;}
.yd2{bottom:140.796000px;}
.y87{bottom:142.635000px;}
.y7f{bottom:142.956000px;}
.y9a{bottom:144.330000px;}
.y32{bottom:145.656000px;}
.y65{bottom:148.536000px;}
.y101{bottom:150.330000px;}
.yd1{bottom:160.770000px;}
.y88{bottom:162.570000px;}
.y7e{bottom:162.750000px;}
.y91{bottom:163.800000px;}
.y9b{bottom:164.775000px;}
.y31{bottom:165.450000px;}
.y64{bottom:168.510000px;}
.y100{bottom:170.130000px;}
.yd0{bottom:180.570000px;}
.y7d{bottom:182.550000px;}
.y9c{bottom:185.220000px;}
.y30{bottom:185.250000px;}
.y63{bottom:188.310000px;}
.yff{bottom:189.930000px;}
.y7c{bottom:202.530000px;}
.y2f{bottom:205.050000px;}
.y62{bottom:208.110000px;}
.ycf{bottom:209.370000px;}
.yfe{bottom:209.730000px;}
.y7b{bottom:222.330000px;}
.y2e{bottom:225.030000px;}
.y61{bottom:227.910000px;}
.yce{bottom:229.170000px;}
.yfd{bottom:229.530000px;}
.y7a{bottom:238.710000px;}
.y95{bottom:239.220000px;}
.y2d{bottom:244.830000px;}
.y60{bottom:247.710000px;}
.ycd{bottom:248.970000px;}
.yfc{bottom:249.510000px;}
.y2c{bottom:264.630000px;}
.y5f{bottom:267.690000px;}
.ycc{bottom:268.950000px;}
.yfb{bottom:269.310000px;}
.y2b{bottom:284.475000px;}
.y5e{bottom:287.535000px;}
.ycb{bottom:288.795000px;}
.yfa{bottom:289.155000px;}
.y2a{bottom:304.275000px;}
.y5d{bottom:307.335000px;}
.yca{bottom:308.595000px;}
.yf9{bottom:308.955000px;}
.y29{bottom:324.255000px;}
.yc9{bottom:328.395000px;}
.yf8{bottom:328.755000px;}
.y5c{bottom:336.135000px;}
.y28{bottom:344.055000px;}
.yc8{bottom:348.195000px;}
.yf7{bottom:348.735000px;}
.y5b{bottom:355.935000px;}
.y27{bottom:363.855000px;}
.yc7{bottom:367.995000px;}
.yf6{bottom:368.535000px;}
.y5a{bottom:375.915000px;}
.y26{bottom:383.655000px;}
.yc6{bottom:387.975000px;}
.yf5{bottom:388.335000px;}
.y59{bottom:395.715000px;}
.y25{bottom:403.455000px;}
.yc5{bottom:407.775000px;}
.yf4{bottom:408.135000px;}
.y24{bottom:423.435000px;}
.y58{bottom:424.515000px;}
.yc4{bottom:427.575000px;}
.yf3{bottom:427.935000px;}
.y23{bottom:443.235000px;}
.y57{bottom:444.315000px;}
.yc3{bottom:447.375000px;}
.yf2{bottom:447.915000px;}
.y79{bottom:450.615000px;}
.y22{bottom:463.035000px;}
.y56{bottom:464.115000px;}
.yf1{bottom:467.715000px;}
.y78{bottom:470.415000px;}
.yc2{bottom:476.175000px;}
.y21{bottom:482.835000px;}
.y55{bottom:484.095000px;}
.yf0{bottom:487.515000px;}
.y77{bottom:490.215000px;}
.yc1{bottom:496.155000px;}
.y20{bottom:502.635000px;}
.y54{bottom:503.895000px;}
.yef{bottom:507.315000px;}
.y76{bottom:510.015000px;}
.yc0{bottom:515.955000px;}
.y1f{bottom:522.615000px;}
.yee{bottom:527.115000px;}
.y75{bottom:529.815000px;}
.y53{bottom:532.695000px;}
.ybf{bottom:535.755000px;}
.y1e{bottom:542.415000px;}
.yed{bottom:547.095000px;}
.y74{bottom:549.795000px;}
.y52{bottom:552.495000px;}
.ybe{bottom:555.555000px;}
.y1d{bottom:562.215000px;}
.yec{bottom:566.925000px;}
.y73{bottom:569.625000px;}
.y51{bottom:572.325000px;}
.ybd{bottom:575.385000px;}
.y1c{bottom:584.385000px;}
.y72{bottom:586.185000px;}
.y8c{bottom:586.620000px;}
.yeb{bottom:586.725000px;}
.y50{bottom:592.305000px;}
.ybc{bottom:595.365000px;}
.yea{bottom:606.525000px;}
.y4f{bottom:612.105000px;}
.y1b{bottom:613.185000px;}
.ybb{bottom:615.165000px;}
.ye9{bottom:626.325000px;}
.y1a{bottom:632.985000px;}
.yba{bottom:634.965000px;}
.y4e{bottom:640.905000px;}
.ye8{bottom:646.305000px;}
.y19{bottom:652.785000px;}
.yb9{bottom:654.765000px;}
.y4d{bottom:660.705000px;}
.ye7{bottom:666.105000px;}
.y18{bottom:672.765000px;}
.y4c{bottom:680.505000px;}
.yb8{bottom:683.565000px;}
.ye6{bottom:685.905000px;}
.y17{bottom:692.565000px;}
.y4b{bottom:700.485000px;}
.yb7{bottom:703.545000px;}
.ye5{bottom:705.705000px;}
.y16{bottom:712.365000px;}
.y4a{bottom:720.285000px;}
.yb6{bottom:723.345000px;}
.ye4{bottom:725.505000px;}
.y15{bottom:732.165000px;}
.yb5{bottom:743.145000px;}
.ye3{bottom:745.485000px;}
.y49{bottom:749.085000px;}
.y14{bottom:751.965000px;}
.yb4{bottom:762.945000px;}
.ye2{bottom:765.285000px;}
.y48{bottom:768.885000px;}
.y13{bottom:771.945000px;}
.y71{bottom:776.445000px;}
.yb3{bottom:782.745000px;}
.ye1{bottom:785.085000px;}
.y47{bottom:788.685000px;}
.y12{bottom:791.745000px;}
.y70{bottom:796.425000px;}
.yb2{bottom:802.725000px;}
.ye0{bottom:804.885000px;}
.y46{bottom:808.665000px;}
.y11{bottom:811.545000px;}
.y6f{bottom:816.225000px;}
.yb1{bottom:822.525000px;}
.ydf{bottom:824.685000px;}
.y10{bottom:831.345000px;}
.y6e{bottom:836.025000px;}
.y45{bottom:837.465000px;}
.yb0{bottom:842.325000px;}
.yde{bottom:844.665000px;}
.yf{bottom:851.190000px;}
.y6d{bottom:855.870000px;}
.y44{bottom:857.310000px;}
.yaf{bottom:862.170000px;}
.ydd{bottom:864.510000px;}
.ye{bottom:873.330000px;}
.y6c{bottom:875.670000px;}
.y43{bottom:877.110000px;}
.yae{bottom:881.970000px;}
.ydc{bottom:884.310000px;}
.y6b{bottom:895.650000px;}
.yd{bottom:898.350000px;}
.yad{bottom:901.950000px;}
.ydb{bottom:904.110000px;}
.y42{bottom:905.910000px;}
.y6a{bottom:915.450000px;}
.yc{bottom:918.150000px;}
.yac{bottom:921.750000px;}
.yda{bottom:923.910000px;}
.y41{bottom:925.890000px;}
.y69{bottom:932.010000px;}
.y82{bottom:933.660000px;}
.yb{bottom:938.130000px;}
.yab{bottom:941.550000px;}
.yd9{bottom:943.890000px;}
.y40{bottom:945.690000px;}
.ya{bottom:953.250000px;}
.yaa{bottom:961.350000px;}
.yd8{bottom:963.690000px;}
.y9{bottom:974.490000px;}
.ya9{bottom:981.150000px;}
.yd7{bottom:983.490000px;}
.y3f{bottom:994.290000px;}
.y8{bottom:997.890000px;}
.ya8{bottom:1001.130000px;}
.yd6{bottom:1003.290000px;}
.y3e{bottom:1014.090000px;}
.ya7{bottom:1020.930000px;}
.yd5{bottom:1023.090000px;}
.y7{bottom:1029.750000px;}
.ya6{bottom:1035.690000px;}
.y3d{bottom:1043.070000px;}
.ya5{bottom:1055.490000px;}
.y3c{bottom:1062.870000px;}
.y5{bottom:1068.090000px;}
.ya3{bottom:1075.290000px;}
.y3b{bottom:1082.670000px;}
.ya2{bottom:1095.270000px;}
.y4{bottom:1098.870000px;}
.y3a{bottom:1102.470000px;}
.ya0{bottom:1115.790000px;}
.y39{bottom:1122.270000px;}
.y3{bottom:1129.830000px;}
.y38{bottom:1142.280000px;}
.y2{bottom:1160.640000px;}
.y37{bottom:1171.620000px;}
.y1{bottom:1192.140000px;}
.y36{bottom:1193.400000px;}
.h12{height:19.800000px;}
.h11{height:19.836000px;}
.h13{height:19.980000px;}
.h7{height:38.158594px;}
.hb{height:53.709961px;}
.hc{height:53.853187px;}
.h8{height:58.651172px;}
.h9{height:59.038594px;}
.hf{height:59.439023px;}
.h5{height:60.226875px;}
.hd{height:61.189805px;}
.h14{height:61.423863px;}
.h3{height:65.010937px;}
.h6{height:66.757500px;}
.h2{height:72.562500px;}
.h4{height:96.508125px;}
.ha{height:182.880000px;}
.he{height:184.140000px;}
.h10{height:205.560000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:49.860000px;}
.wa{width:62.460000px;}
.w8{width:95.040000px;}
.w9{width:95.076000px;}
.w7{width:95.256000px;}
.w6{width:124.380000px;}
.w4{width:688.500000px;}
.w5{width:736.200000px;}
.w3{width:750.600000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.100000px;}
.xf{left:33.156000px;}
.xd{left:41.760000px;}
.xc{left:48.600000px;}
.x1{left:54.179987px;}
.xb{left:55.440000px;}
.xa{left:70.560000px;}
.x14{left:78.300000px;}
.x1f{left:80.999987px;}
.x17{left:90.396000px;}
.x11{left:102.060000px;}
.x20{left:108.035987px;}
.x12{left:117.645000px;}
.x15{left:122.325000px;}
.xe{left:129.990000px;}
.x4{left:181.829987px;}
.x6{left:201.809987px;}
.x9{left:214.769987px;}
.x19{left:310.035000px;}
.x13{left:327.630000px;}
.x16{left:350.310000px;}
.x10{left:361.050000px;}
.x1a{left:405.075000px;}
.x7{left:446.474987px;}
.x1b{left:500.145000px;}
.x1c{left:595.185000px;}
.x1d{left:690.450000px;}
.x1e{left:752.910000px;}
.x5{left:790.889987px;}
.x2{left:804.209987px;}
.x8{left:814.649987px;}
.x3{left:822.389987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.629333pt;}
.ls5{letter-spacing:-0.409067pt;}
.ls3{letter-spacing:-0.271467pt;}
.lsf{letter-spacing:-0.230933pt;}
.lsa{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.081067pt;}
.lsc{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.011520pt;}
.ls7{letter-spacing:0.015360pt;}
.lse{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.120533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.320000pt;}
.ls0{letter-spacing:1.344000pt;}
.ls11{letter-spacing:10.192640pt;}
.ls10{letter-spacing:37.072640pt;}
.ws0{word-spacing:-14.448533pt;}
.ws4{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.185067pt;}
.wsd{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.005120pt;}
.ws1{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.651520pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:-8.010667pt;}
.ws5{word-spacing:0.000000pt;}
.wsb{word-spacing:281.770667pt;}
.wsc{word-spacing:315.690667pt;}
.ws9{word-spacing:320.656000pt;}
._5{margin-left:-2462.982400pt;}
._9{margin-left:-1400.417067pt;}
._6{margin-left:-1246.636587pt;}
._8{margin-left:-883.318400pt;}
._d{margin-left:-611.648640pt;}
._18{margin-left:-588.320000pt;}
._e{margin-left:-586.625920pt;}
._19{margin-left:-573.551787pt;}
._a{margin-left:-507.843413pt;}
._15{margin-left:-493.168213pt;}
._1b{margin-left:-451.946667pt;}
._1c{margin-left:-450.257067pt;}
._16{margin-left:-380.545920pt;}
._14{margin-left:-282.210987pt;}
._f{margin-left:-191.360000pt;}
._13{margin-left:-154.880000pt;}
._b{margin-left:-132.480000pt;}
._c{margin-left:-128.000000pt;}
._10{margin-left:-117.760000pt;}
._12{margin-left:-116.111360pt;}
._11{margin-left:-115.200000pt;}
._17{margin-left:-58.880000pt;}
._1a{margin-left:-44.160000pt;}
._7{margin-left:-7.301120pt;}
._3{margin-left:-4.196480pt;}
._21{margin-left:-3.138773pt;}
._1{margin-left:-2.174080pt;}
._4{margin-left:-1.029547pt;}
._0{width:1.213440pt;}
._2{width:2.267307pt;}
._1e{width:3.215147pt;}
._22{width:4.568320pt;}
._23{width:5.639040pt;}
._26{width:7.191467pt;}
._25{width:8.339840pt;}
._20{width:9.268267pt;}
._1f{width:10.338773pt;}
._24{width:11.955413pt;}
._1d{width:20.011520pt;}
._2d{width:113.181867pt;}
._2a{width:304.416000pt;}
._29{width:322.848000pt;}
._2c{width:338.336000pt;}
._28{width:344.565333pt;}
._2b{width:356.768000pt;}
._27{width:362.154667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:48.128000pt;}
.fs1{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:5.120000pt;}
.ya4{bottom:5.280000pt;}
.y9f{bottom:20.026667pt;}
.y94{bottom:20.186667pt;}
.y8b{bottom:20.253333pt;}
.y9d{bottom:39.973333pt;}
.y92{bottom:40.133333pt;}
.y89{bottom:40.186667pt;}
.y6{bottom:53.472000pt;}
.y96{bottom:55.586667pt;}
.y8d{bottom:55.746667pt;}
.y83{bottom:55.773333pt;}
.y8a{bottom:65.693333pt;}
.y93{bottom:65.920000pt;}
.y84{bottom:73.533333pt;}
.y97{bottom:73.760000pt;}
.y35{bottom:76.512000pt;}
.y8e{bottom:78.213333pt;}
.y68{bottom:79.232000pt;}
.y9e{bottom:86.720000pt;}
.yd4{bottom:89.952000pt;}
.y85{bottom:91.293333pt;}
.y81{bottom:91.872000pt;}
.y98{bottom:91.933333pt;}
.y34{bottom:94.272000pt;}
.y67{bottom:96.832000pt;}
.y8f{bottom:100.666667pt;}
.yd3{bottom:107.552000pt;}
.y86{bottom:109.026667pt;}
.y80{bottom:109.472000pt;}
.y99{bottom:110.106667pt;}
.y33{bottom:111.872000pt;}
.y66{bottom:114.432000pt;}
.y90{bottom:123.133333pt;}
.yd2{bottom:125.152000pt;}
.y87{bottom:126.786667pt;}
.y7f{bottom:127.072000pt;}
.y9a{bottom:128.293333pt;}
.y32{bottom:129.472000pt;}
.y65{bottom:132.032000pt;}
.y101{bottom:133.626667pt;}
.yd1{bottom:142.906667pt;}
.y88{bottom:144.506667pt;}
.y7e{bottom:144.666667pt;}
.y91{bottom:145.600000pt;}
.y9b{bottom:146.466667pt;}
.y31{bottom:147.066667pt;}
.y64{bottom:149.786667pt;}
.y100{bottom:151.226667pt;}
.yd0{bottom:160.506667pt;}
.y7d{bottom:162.266667pt;}
.y9c{bottom:164.640000pt;}
.y30{bottom:164.666667pt;}
.y63{bottom:167.386667pt;}
.yff{bottom:168.826667pt;}
.y7c{bottom:180.026667pt;}
.y2f{bottom:182.266667pt;}
.y62{bottom:184.986667pt;}
.ycf{bottom:186.106667pt;}
.yfe{bottom:186.426667pt;}
.y7b{bottom:197.626667pt;}
.y2e{bottom:200.026667pt;}
.y61{bottom:202.586667pt;}
.yce{bottom:203.706667pt;}
.yfd{bottom:204.026667pt;}
.y7a{bottom:212.186667pt;}
.y95{bottom:212.640000pt;}
.y2d{bottom:217.626667pt;}
.y60{bottom:220.186667pt;}
.ycd{bottom:221.306667pt;}
.yfc{bottom:221.786667pt;}
.y2c{bottom:235.226667pt;}
.y5f{bottom:237.946667pt;}
.ycc{bottom:239.066667pt;}
.yfb{bottom:239.386667pt;}
.y2b{bottom:252.866667pt;}
.y5e{bottom:255.586667pt;}
.ycb{bottom:256.706667pt;}
.yfa{bottom:257.026667pt;}
.y2a{bottom:270.466667pt;}
.y5d{bottom:273.186667pt;}
.yca{bottom:274.306667pt;}
.yf9{bottom:274.626667pt;}
.y29{bottom:288.226667pt;}
.yc9{bottom:291.906667pt;}
.yf8{bottom:292.226667pt;}
.y5c{bottom:298.786667pt;}
.y28{bottom:305.826667pt;}
.yc8{bottom:309.506667pt;}
.yf7{bottom:309.986667pt;}
.y5b{bottom:316.386667pt;}
.y27{bottom:323.426667pt;}
.yc7{bottom:327.106667pt;}
.yf6{bottom:327.586667pt;}
.y5a{bottom:334.146667pt;}
.y26{bottom:341.026667pt;}
.yc6{bottom:344.866667pt;}
.yf5{bottom:345.186667pt;}
.y59{bottom:351.746667pt;}
.y25{bottom:358.626667pt;}
.yc5{bottom:362.466667pt;}
.yf4{bottom:362.786667pt;}
.y24{bottom:376.386667pt;}
.y58{bottom:377.346667pt;}
.yc4{bottom:380.066667pt;}
.yf3{bottom:380.386667pt;}
.y23{bottom:393.986667pt;}
.y57{bottom:394.946667pt;}
.yc3{bottom:397.666667pt;}
.yf2{bottom:398.146667pt;}
.y79{bottom:400.546667pt;}
.y22{bottom:411.586667pt;}
.y56{bottom:412.546667pt;}
.yf1{bottom:415.746667pt;}
.y78{bottom:418.146667pt;}
.yc2{bottom:423.266667pt;}
.y21{bottom:429.186667pt;}
.y55{bottom:430.306667pt;}
.yf0{bottom:433.346667pt;}
.y77{bottom:435.746667pt;}
.yc1{bottom:441.026667pt;}
.y20{bottom:446.786667pt;}
.y54{bottom:447.906667pt;}
.yef{bottom:450.946667pt;}
.y76{bottom:453.346667pt;}
.yc0{bottom:458.626667pt;}
.y1f{bottom:464.546667pt;}
.yee{bottom:468.546667pt;}
.y75{bottom:470.946667pt;}
.y53{bottom:473.506667pt;}
.ybf{bottom:476.226667pt;}
.y1e{bottom:482.146667pt;}
.yed{bottom:486.306667pt;}
.y74{bottom:488.706667pt;}
.y52{bottom:491.106667pt;}
.ybe{bottom:493.826667pt;}
.y1d{bottom:499.746667pt;}
.yec{bottom:503.933333pt;}
.y73{bottom:506.333333pt;}
.y51{bottom:508.733333pt;}
.ybd{bottom:511.453333pt;}
.y1c{bottom:519.453333pt;}
.y72{bottom:521.053333pt;}
.y8c{bottom:521.440000pt;}
.yeb{bottom:521.533333pt;}
.y50{bottom:526.493333pt;}
.ybc{bottom:529.213333pt;}
.yea{bottom:539.133333pt;}
.y4f{bottom:544.093333pt;}
.y1b{bottom:545.053333pt;}
.ybb{bottom:546.813333pt;}
.ye9{bottom:556.733333pt;}
.y1a{bottom:562.653333pt;}
.yba{bottom:564.413333pt;}
.y4e{bottom:569.693333pt;}
.ye8{bottom:574.493333pt;}
.y19{bottom:580.253333pt;}
.yb9{bottom:582.013333pt;}
.y4d{bottom:587.293333pt;}
.ye7{bottom:592.093333pt;}
.y18{bottom:598.013333pt;}
.y4c{bottom:604.893333pt;}
.yb8{bottom:607.613333pt;}
.ye6{bottom:609.693333pt;}
.y17{bottom:615.613333pt;}
.y4b{bottom:622.653333pt;}
.yb7{bottom:625.373333pt;}
.ye5{bottom:627.293333pt;}
.y16{bottom:633.213333pt;}
.y4a{bottom:640.253333pt;}
.yb6{bottom:642.973333pt;}
.ye4{bottom:644.893333pt;}
.y15{bottom:650.813333pt;}
.yb5{bottom:660.573333pt;}
.ye3{bottom:662.653333pt;}
.y49{bottom:665.853333pt;}
.y14{bottom:668.413333pt;}
.yb4{bottom:678.173333pt;}
.ye2{bottom:680.253333pt;}
.y48{bottom:683.453333pt;}
.y13{bottom:686.173333pt;}
.y71{bottom:690.173333pt;}
.yb3{bottom:695.773333pt;}
.ye1{bottom:697.853333pt;}
.y47{bottom:701.053333pt;}
.y12{bottom:703.773333pt;}
.y70{bottom:707.933333pt;}
.yb2{bottom:713.533333pt;}
.ye0{bottom:715.453333pt;}
.y46{bottom:718.813333pt;}
.y11{bottom:721.373333pt;}
.y6f{bottom:725.533333pt;}
.yb1{bottom:731.133333pt;}
.ydf{bottom:733.053333pt;}
.y10{bottom:738.973333pt;}
.y6e{bottom:743.133333pt;}
.y45{bottom:744.413333pt;}
.yb0{bottom:748.733333pt;}
.yde{bottom:750.813333pt;}
.yf{bottom:756.613333pt;}
.y6d{bottom:760.773333pt;}
.y44{bottom:762.053333pt;}
.yaf{bottom:766.373333pt;}
.ydd{bottom:768.453333pt;}
.ye{bottom:776.293333pt;}
.y6c{bottom:778.373333pt;}
.y43{bottom:779.653333pt;}
.yae{bottom:783.973333pt;}
.ydc{bottom:786.053333pt;}
.y6b{bottom:796.133333pt;}
.yd{bottom:798.533333pt;}
.yad{bottom:801.733333pt;}
.ydb{bottom:803.653333pt;}
.y42{bottom:805.253333pt;}
.y6a{bottom:813.733333pt;}
.yc{bottom:816.133333pt;}
.yac{bottom:819.333333pt;}
.yda{bottom:821.253333pt;}
.y41{bottom:823.013333pt;}
.y69{bottom:828.453333pt;}
.y82{bottom:829.920000pt;}
.yb{bottom:833.893333pt;}
.yab{bottom:836.933333pt;}
.yd9{bottom:839.013333pt;}
.y40{bottom:840.613333pt;}
.ya{bottom:847.333333pt;}
.yaa{bottom:854.533333pt;}
.yd8{bottom:856.613333pt;}
.y9{bottom:866.213333pt;}
.ya9{bottom:872.133333pt;}
.yd7{bottom:874.213333pt;}
.y3f{bottom:883.813333pt;}
.y8{bottom:887.013333pt;}
.ya8{bottom:889.893333pt;}
.yd6{bottom:891.813333pt;}
.y3e{bottom:901.413333pt;}
.ya7{bottom:907.493333pt;}
.yd5{bottom:909.413333pt;}
.y7{bottom:915.333333pt;}
.ya6{bottom:920.613333pt;}
.y3d{bottom:927.173333pt;}
.ya5{bottom:938.213333pt;}
.y3c{bottom:944.773333pt;}
.y5{bottom:949.413333pt;}
.ya3{bottom:955.813333pt;}
.y3b{bottom:962.373333pt;}
.ya2{bottom:973.573333pt;}
.y4{bottom:976.773333pt;}
.y3a{bottom:979.973333pt;}
.ya0{bottom:991.813333pt;}
.y39{bottom:997.573333pt;}
.y3{bottom:1004.293333pt;}
.y38{bottom:1015.360000pt;}
.y2{bottom:1031.680000pt;}
.y37{bottom:1041.440000pt;}
.y1{bottom:1059.680000pt;}
.y36{bottom:1060.800000pt;}
.h12{height:17.600000pt;}
.h11{height:17.632000pt;}
.h13{height:17.760000pt;}
.h7{height:33.918750pt;}
.hb{height:47.742188pt;}
.hc{height:47.869500pt;}
.h8{height:52.134375pt;}
.h9{height:52.478750pt;}
.hf{height:52.834688pt;}
.h5{height:53.535000pt;}
.hd{height:54.390938pt;}
.h14{height:54.598989pt;}
.h3{height:57.787500pt;}
.h6{height:59.340000pt;}
.h2{height:64.500000pt;}
.h4{height:85.785000pt;}
.ha{height:162.560000pt;}
.he{height:163.680000pt;}
.h10{height:182.720000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:44.320000pt;}
.wa{width:55.520000pt;}
.w8{width:84.480000pt;}
.w9{width:84.512000pt;}
.w7{width:84.672000pt;}
.w6{width:110.560000pt;}
.w4{width:612.000000pt;}
.w5{width:654.400000pt;}
.w3{width:667.200000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.200000pt;}
.xf{left:29.472000pt;}
.xd{left:37.120000pt;}
.xc{left:43.200000pt;}
.x1{left:48.159988pt;}
.xb{left:49.280000pt;}
.xa{left:62.720000pt;}
.x14{left:69.600000pt;}
.x1f{left:71.999988pt;}
.x17{left:80.352000pt;}
.x11{left:90.720000pt;}
.x20{left:96.031988pt;}
.x12{left:104.573333pt;}
.x15{left:108.733333pt;}
.xe{left:115.546667pt;}
.x4{left:161.626655pt;}
.x6{left:179.386655pt;}
.x9{left:190.906655pt;}
.x19{left:275.586667pt;}
.x13{left:291.226667pt;}
.x16{left:311.386667pt;}
.x10{left:320.933333pt;}
.x1a{left:360.066667pt;}
.x7{left:396.866655pt;}
.x1b{left:444.573333pt;}
.x1c{left:529.053333pt;}
.x1d{left:613.733333pt;}
.x1e{left:669.253333pt;}
.x5{left:703.013322pt;}
.x2{left:714.853322pt;}
.x8{left:724.133322pt;}
.x3{left:731.013322pt;}
}




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