
    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_aec3809be1c5d124aa3d5335.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.928000;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_69ae481c9889e555441a7741.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8ba58a0d0508907b444e83f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706543;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_a1892cf3e781c979023d0d34.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_5898c12854ba570b50c4940f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_cdacd2cfab5ad41fe5e20155.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_cfee57daa16d5aff8d741d2a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_0457633d38173ef076661ec7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_e47169cc1ad728a72630c173.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900000;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_2ab58040ed311930e7370784.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.038000;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_e1c9258ef8d84304a9e8a33e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;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_effc379c3d7a3b85a1c14406.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m1{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,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);}
.v0{vertical-align:0.000000px;}
.ls26{letter-spacing:-1.596672px;}
.ls17{letter-spacing:-1.536192px;}
.ls29{letter-spacing:-1.518048px;}
.ls10{letter-spacing:-1.512000px;}
.ls2b{letter-spacing:-1.499904px;}
.ls11{letter-spacing:-1.497600px;}
.ls12{letter-spacing:-1.490400px;}
.ls2a{letter-spacing:-1.457568px;}
.ls24{letter-spacing:-1.439424px;}
.ls22{letter-spacing:-1.421280px;}
.ls28{letter-spacing:-1.378944px;}
.ls27{letter-spacing:-1.360800px;}
.ls25{letter-spacing:-1.342656px;}
.ls18{letter-spacing:-1.336608px;}
.ls23{letter-spacing:-1.318464px;}
.lsf{letter-spacing:-1.209600px;}
.lse{letter-spacing:-1.202400px;}
.lsd{letter-spacing:-1.188000px;}
.lsb{letter-spacing:-0.399168px;}
.ls14{letter-spacing:-0.221760px;}
.ls9{letter-spacing:-0.178848px;}
.ls15{letter-spacing:-0.177408px;}
.ls3{letter-spacing:-0.145728px;}
.ls8{letter-spacing:-0.132480px;}
.lsc{letter-spacing:-0.120960px;}
.ls7{letter-spacing:-0.066240px;}
.ls4{letter-spacing:-0.059616px;}
.ls5{letter-spacing:-0.052992px;}
.lsa{letter-spacing:-0.021600px;}
.ls6{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.202752px;}
.ls19{letter-spacing:1.908576px;}
.ls1c{letter-spacing:3.987360px;}
.ls20{letter-spacing:10.530720px;}
.ls1f{letter-spacing:12.803040px;}
.ls1e{letter-spacing:12.804480px;}
.ls1b{letter-spacing:13.747680px;}
.ls16{letter-spacing:16.034400px;}
.ls1a{letter-spacing:20.143008px;}
.ls2{letter-spacing:21.797280px;}
.ls21{letter-spacing:21.818736px;}
.ls1d{letter-spacing:24.377760px;}
.ls1{letter-spacing:31.731840px;}
.ls0{letter-spacing:43.116336px;}
.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:-18.414720px;}
.ws2{word-spacing:-18.282240px;}
.ws1{word-spacing:-18.235872px;}
.ws5{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.813440px;}
.ws4{word-spacing:-16.812000px;}
.ws8{word-spacing:-16.797600px;}
.ws9{word-spacing:-16.790400px;}
.ws7{word-spacing:-16.509600px;}
.ws6{word-spacing:-16.488000px;}
.wsc{word-spacing:-15.277248px;}
.wse{word-spacing:-15.120000px;}
.wsd{word-spacing:-13.680576px;}
.ws3{word-spacing:-0.050400px;}
.wsa{word-spacing:0.000000px;}
._12{margin-left:-2.087424px;}
._0{margin-left:-1.009872px;}
._1{width:1.028160px;}
._10{width:2.257344px;}
._b{width:4.248000px;}
._1b{width:5.472000px;}
._17{width:6.768000px;}
._14{width:7.848000px;}
._f{width:8.928000px;}
._1a{width:10.080000px;}
._1e{width:11.088000px;}
._13{width:12.211200px;}
._11{width:14.040000px;}
._6{width:15.048000px;}
._8{width:18.043200px;}
._4{width:19.728000px;}
._5{width:20.736000px;}
._7{width:22.464000px;}
._16{width:23.616000px;}
._24{width:24.624000px;}
._d{width:25.704000px;}
._18{width:26.928000px;}
._a{width:27.936000px;}
._15{width:29.016000px;}
._1c{width:30.960000px;}
._e{width:32.688000px;}
._9{width:33.840000px;}
._1d{width:35.136000px;}
._23{width:36.720000px;}
._c{width:38.016000px;}
._19{width:39.744000px;}
._25{width:41.629824px;}
._1f{width:42.730272px;}
._2{width:44.082864px;}
._3{width:45.159408px;}
._20{width:47.000592px;}
._21{width:51.696000px;}
._26{width:53.424000px;}
._22{width:54.936000px;}
._27{width:60.696000px;}
.fc1{color:rgb(28,30,41);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:60.480000px;}
.fs4{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:5.460000px;}
.y5{bottom:52.500000px;}
.y4{bottom:57.960000px;}
.yef{bottom:96.120000px;}
.yde{bottom:99.360000px;}
.y8a{bottom:104.760000px;}
.y34{bottom:107.640000px;}
.yc3{bottom:108.000000px;}
.yee{bottom:116.640000px;}
.ydd{bottom:120.240000px;}
.y89{bottom:125.640000px;}
.y33{bottom:128.160000px;}
.yac{bottom:128.520000px;}
.yc2{bottom:128.880000px;}
.yed{bottom:137.520000px;}
.ydc{bottom:140.760000px;}
.y88{bottom:146.160000px;}
.y32{bottom:149.040000px;}
.yc1{bottom:149.400000px;}
.y65{bottom:157.680000px;}
.yec{bottom:158.040000px;}
.ydb{bottom:161.640000px;}
.y87{bottom:167.040000px;}
.y31{bottom:169.560000px;}
.yab{bottom:169.920000px;}
.yc0{bottom:170.280000px;}
.y64{bottom:178.560000px;}
.yeb{bottom:178.920000px;}
.yda{bottom:182.160000px;}
.y86{bottom:187.560000px;}
.y30{bottom:190.440000px;}
.ybf{bottom:190.800000px;}
.y63{bottom:199.080000px;}
.yea{bottom:199.440000px;}
.yd9{bottom:203.040000px;}
.y85{bottom:208.440000px;}
.y2f{bottom:210.960000px;}
.yaa{bottom:211.320000px;}
.ybe{bottom:211.680000px;}
.y62{bottom:219.960000px;}
.ye9{bottom:220.320000px;}
.yd8{bottom:223.560000px;}
.y84{bottom:228.960000px;}
.y2e{bottom:231.840000px;}
.ybd{bottom:232.200000px;}
.y61{bottom:240.480000px;}
.ye8{bottom:240.840000px;}
.yd7{bottom:244.440000px;}
.y83{bottom:249.840000px;}
.y2d{bottom:252.360000px;}
.ya9{bottom:252.720000px;}
.ybc{bottom:253.080000px;}
.y60{bottom:261.360000px;}
.ye7{bottom:261.720000px;}
.yd6{bottom:264.960000px;}
.y82{bottom:270.360000px;}
.y2c{bottom:273.240000px;}
.ybb{bottom:273.600000px;}
.y5f{bottom:281.880000px;}
.ye6{bottom:282.240000px;}
.yd5{bottom:285.840000px;}
.y81{bottom:291.240000px;}
.y2b{bottom:293.760000px;}
.ya8{bottom:294.120000px;}
.yba{bottom:294.480000px;}
.y5e{bottom:302.760000px;}
.ye5{bottom:303.120000px;}
.yd3{bottom:306.000000px;}
.yd4{bottom:306.360000px;}
.y80{bottom:311.760000px;}
.y2a{bottom:314.640000px;}
.yb9{bottom:315.000000px;}
.y5d{bottom:323.280000px;}
.ye4{bottom:323.640000px;}
.yd2{bottom:327.240000px;}
.y7f{bottom:332.640000px;}
.y29{bottom:335.160000px;}
.ya7{bottom:335.520000px;}
.yb8{bottom:335.880000px;}
.y5c{bottom:344.160000px;}
.ye3{bottom:344.520000px;}
.yd1{bottom:347.760000px;}
.y7e{bottom:353.160000px;}
.y28{bottom:356.040000px;}
.yb7{bottom:356.400000px;}
.y5b{bottom:364.680000px;}
.ye2{bottom:365.040000px;}
.yd0{bottom:368.640000px;}
.y7d{bottom:374.040000px;}
.y27{bottom:376.560000px;}
.ya6{bottom:376.920000px;}
.yb6{bottom:377.280000px;}
.y5a{bottom:385.560000px;}
.ye1{bottom:385.920000px;}
.ycf{bottom:389.160000px;}
.y7c{bottom:394.560000px;}
.y26{bottom:397.080000px;}
.ya5{bottom:397.440000px;}
.yb5{bottom:397.800000px;}
.y59{bottom:406.080000px;}
.ycd{bottom:409.680000px;}
.yce{bottom:410.040000px;}
.y7b{bottom:415.440000px;}
.ya4{bottom:418.320000px;}
.yb4{bottom:418.680000px;}
.y58{bottom:426.960000px;}
.y25{bottom:429.480000px;}
.ycc{bottom:430.560000px;}
.y7a{bottom:435.960000px;}
.ya3{bottom:438.840000px;}
.yb3{bottom:439.200000px;}
.y57{bottom:447.480000px;}
.ycb{bottom:451.440000px;}
.y24{bottom:459.360000px;}
.ya2{bottom:459.720000px;}
.yb2{bottom:460.080000px;}
.y56{bottom:468.360000px;}
.yca{bottom:471.960000px;}
.ya1{bottom:480.240000px;}
.yb1{bottom:480.600000px;}
.y23{bottom:488.880000px;}
.y79{bottom:489.240000px;}
.yc8{bottom:492.480000px;}
.yc9{bottom:492.840000px;}
.ya0{bottom:501.120000px;}
.yb0{bottom:501.480000px;}
.y55{bottom:509.760000px;}
.y22{bottom:510.120000px;}
.yc7{bottom:513.360000px;}
.y9f{bottom:521.640000px;}
.yaf{bottom:522.000000px;}
.y21{bottom:530.640000px;}
.yc6{bottom:534.240000px;}
.y54{bottom:542.160000px;}
.yae{bottom:542.880000px;}
.y20{bottom:551.520000px;}
.y9e{bottom:554.040000px;}
.yc5{bottom:554.760000px;}
.y53{bottom:563.040000px;}
.ye0{bottom:563.400000px;}
.y1f{bottom:572.040000px;}
.y9d{bottom:574.920000px;}
.yad{bottom:575.280000px;}
.yc4{bottom:575.640000px;}
.y52{bottom:584.280000px;}
.y78{bottom:592.920000px;}
.y9c{bottom:596.160000px;}
.y1e{bottom:601.560000px;}
.y51{bottom:604.800000px;}
.y77{bottom:613.440000px;}
.y9b{bottom:617.040000px;}
.y106{bottom:621.360000px;}
.y1d{bottom:622.440000px;}
.y50{bottom:625.680000px;}
.y76{bottom:634.320000px;}
.y9a{bottom:637.560000px;}
.y105{bottom:638.640000px;}
.y1c{bottom:643.320000px;}
.y4f{bottom:646.200000px;}
.y75{bottom:654.840000px;}
.y104{bottom:655.560000px;}
.y99{bottom:658.440000px;}
.y1b{bottom:663.840000px;}
.y4e{bottom:667.080000px;}
.y103{bottom:672.840000px;}
.y74{bottom:675.720000px;}
.y98{bottom:678.960000px;}
.y1a{bottom:684.720000px;}
.y4d{bottom:687.600000px;}
.y102{bottom:690.120000px;}
.y73{bottom:696.240000px;}
.y97{bottom:699.840000px;}
.y19{bottom:705.240000px;}
.y101{bottom:707.400000px;}
.y4c{bottom:708.480000px;}
.y72{bottom:717.120000px;}
.y96{bottom:720.360000px;}
.y100{bottom:724.680000px;}
.y18{bottom:726.120000px;}
.y4b{bottom:729.000000px;}
.y95{bottom:741.240000px;}
.yff{bottom:741.960000px;}
.y17{bottom:746.640000px;}
.y71{bottom:749.520000px;}
.y4a{bottom:749.880000px;}
.yfe{bottom:759.240000px;}
.y94{bottom:761.760000px;}
.y16{bottom:767.520000px;}
.y49{bottom:770.400000px;}
.yfd{bottom:776.520000px;}
.y93{bottom:782.280000px;}
.y15{bottom:788.040000px;}
.y48{bottom:791.280000px;}
.yfc{bottom:793.800000px;}
.ydf{bottom:802.800000px;}
.y92{bottom:803.160000px;}
.y14{bottom:808.920000px;}
.yfb{bottom:811.080000px;}
.y47{bottom:811.800000px;}
.y91{bottom:823.680000px;}
.yfa{bottom:828.360000px;}
.y13{bottom:829.440000px;}
.y46{bottom:832.680000px;}
.y90{bottom:844.560000px;}
.yf9{bottom:845.280000px;}
.y12{bottom:850.320000px;}
.y45{bottom:853.200000px;}
.yf8{bottom:862.560000px;}
.y8f{bottom:865.080000px;}
.y11{bottom:870.840000px;}
.y44{bottom:874.080000px;}
.yf7{bottom:879.840000px;}
.y8e{bottom:885.960000px;}
.y10{bottom:891.720000px;}
.y43{bottom:894.600000px;}
.yf6{bottom:897.120000px;}
.y8d{bottom:906.480000px;}
.yf{bottom:912.240000px;}
.yf5{bottom:914.400000px;}
.y42{bottom:915.480000px;}
.y8c{bottom:927.360000px;}
.yf4{bottom:931.680000px;}
.ye{bottom:932.760000px;}
.y70{bottom:936.000000px;}
.y41{bottom:947.520000px;}
.y8b{bottom:947.880000px;}
.yf3{bottom:948.960000px;}
.yd{bottom:953.280000px;}
.y6f{bottom:956.880000px;}
.yf2{bottom:966.240000px;}
.y40{bottom:968.760000px;}
.y6e{bottom:977.400000px;}
.yc{bottom:979.920000px;}
.yf1{bottom:983.520000px;}
.y3f{bottom:989.280000px;}
.y6d{bottom:998.280000px;}
.yb{bottom:1000.800000px;}
.y3e{bottom:1010.160000px;}
.y6c{bottom:1018.800000px;}
.ya{bottom:1023.840000px;}
.yf0{bottom:1030.320000px;}
.y3d{bottom:1030.680000px;}
.y6b{bottom:1039.680000px;}
.y3c{bottom:1051.560000px;}
.y9{bottom:1054.800000px;}
.y6a{bottom:1060.200000px;}
.y3b{bottom:1072.080000px;}
.y69{bottom:1081.080000px;}
.y8{bottom:1086.120000px;}
.y3a{bottom:1092.960000px;}
.y68{bottom:1101.600000px;}
.y39{bottom:1113.480000px;}
.y7{bottom:1117.080000px;}
.y67{bottom:1134.000000px;}
.y38{bottom:1134.360000px;}
.y3{bottom:1146.600000px;}
.y37{bottom:1165.680000px;}
.y2{bottom:1168.560000px;}
.y1{bottom:1190.880000px;}
.y36{bottom:1191.240000px;}
.y35{bottom:1191.600000px;}
.y66{bottom:1192.320000px;}
.h5{height:24.000000px;}
.hd{height:40.310156px;}
.h8{height:41.993438px;}
.hc{height:42.022969px;}
.h3{height:44.149219px;}
.hb{height:45.722880px;}
.ha{height:48.660480px;}
.h7{height:48.796875px;}
.h9{height:50.027344px;}
.h4{height:50.308594px;}
.h2{height:50.872320px;}
.h6{height:73.195313px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w2{width:31.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:127.439928px;}
.x2{left:129.266964px;}
.x7{left:137.906604px;}
.x4{left:154.439928px;}
.xc{left:169.965072px;}
.x8{left:204.615612px;}
.xe{left:206.664912px;}
.x6{left:222.670512px;}
.x1{left:242.852076px;}
.xb{left:246.570912px;}
.xa{left:376.402320px;}
.x3{left:446.152320px;}
.xd{left:534.392985px;}
.x5{left:735.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls26{letter-spacing:-1.419264pt;}
.ls17{letter-spacing:-1.365504pt;}
.ls29{letter-spacing:-1.349376pt;}
.ls10{letter-spacing:-1.344000pt;}
.ls2b{letter-spacing:-1.333248pt;}
.ls11{letter-spacing:-1.331200pt;}
.ls12{letter-spacing:-1.324800pt;}
.ls2a{letter-spacing:-1.295616pt;}
.ls24{letter-spacing:-1.279488pt;}
.ls22{letter-spacing:-1.263360pt;}
.ls28{letter-spacing:-1.225728pt;}
.ls27{letter-spacing:-1.209600pt;}
.ls25{letter-spacing:-1.193472pt;}
.ls18{letter-spacing:-1.188096pt;}
.ls23{letter-spacing:-1.171968pt;}
.lsf{letter-spacing:-1.075200pt;}
.lse{letter-spacing:-1.068800pt;}
.lsd{letter-spacing:-1.056000pt;}
.lsb{letter-spacing:-0.354816pt;}
.ls14{letter-spacing:-0.197120pt;}
.ls9{letter-spacing:-0.158976pt;}
.ls15{letter-spacing:-0.157696pt;}
.ls3{letter-spacing:-0.129536pt;}
.ls8{letter-spacing:-0.117760pt;}
.lsc{letter-spacing:-0.107520pt;}
.ls7{letter-spacing:-0.058880pt;}
.ls4{letter-spacing:-0.052992pt;}
.ls5{letter-spacing:-0.047104pt;}
.lsa{letter-spacing:-0.019200pt;}
.ls6{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.180224pt;}
.ls19{letter-spacing:1.696512pt;}
.ls1c{letter-spacing:3.544320pt;}
.ls20{letter-spacing:9.360640pt;}
.ls1f{letter-spacing:11.380480pt;}
.ls1e{letter-spacing:11.381760pt;}
.ls1b{letter-spacing:12.220160pt;}
.ls16{letter-spacing:14.252800pt;}
.ls1a{letter-spacing:17.904896pt;}
.ls2{letter-spacing:19.375360pt;}
.ls21{letter-spacing:19.394432pt;}
.ls1d{letter-spacing:21.669120pt;}
.ls1{letter-spacing:28.206080pt;}
.ls0{letter-spacing:38.325632pt;}
.ws0{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.250880pt;}
.ws1{word-spacing:-16.209664pt;}
.ws5{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.945280pt;}
.ws4{word-spacing:-14.944000pt;}
.ws8{word-spacing:-14.931200pt;}
.ws9{word-spacing:-14.924800pt;}
.ws7{word-spacing:-14.675200pt;}
.ws6{word-spacing:-14.656000pt;}
.wsc{word-spacing:-13.579776pt;}
.wse{word-spacing:-13.440000pt;}
.wsd{word-spacing:-12.160512pt;}
.ws3{word-spacing:-0.044800pt;}
.wsa{word-spacing:0.000000pt;}
._12{margin-left:-1.855488pt;}
._0{margin-left:-0.897664pt;}
._1{width:0.913920pt;}
._10{width:2.006528pt;}
._b{width:3.776000pt;}
._1b{width:4.864000pt;}
._17{width:6.016000pt;}
._14{width:6.976000pt;}
._f{width:7.936000pt;}
._1a{width:8.960000pt;}
._1e{width:9.856000pt;}
._13{width:10.854400pt;}
._11{width:12.480000pt;}
._6{width:13.376000pt;}
._8{width:16.038400pt;}
._4{width:17.536000pt;}
._5{width:18.432000pt;}
._7{width:19.968000pt;}
._16{width:20.992000pt;}
._24{width:21.888000pt;}
._d{width:22.848000pt;}
._18{width:23.936000pt;}
._a{width:24.832000pt;}
._15{width:25.792000pt;}
._1c{width:27.520000pt;}
._e{width:29.056000pt;}
._9{width:30.080000pt;}
._1d{width:31.232000pt;}
._23{width:32.640000pt;}
._c{width:33.792000pt;}
._19{width:35.328000pt;}
._25{width:37.004288pt;}
._1f{width:37.982464pt;}
._2{width:39.184768pt;}
._3{width:40.141696pt;}
._20{width:41.778304pt;}
._21{width:45.952000pt;}
._26{width:47.488000pt;}
._22{width:48.832000pt;}
._27{width:53.952000pt;}
.fs3{font-size:53.760000pt;}
.fs4{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.853333pt;}
.y5{bottom:46.666667pt;}
.y4{bottom:51.520000pt;}
.yef{bottom:85.440000pt;}
.yde{bottom:88.320000pt;}
.y8a{bottom:93.120000pt;}
.y34{bottom:95.680000pt;}
.yc3{bottom:96.000000pt;}
.yee{bottom:103.680000pt;}
.ydd{bottom:106.880000pt;}
.y89{bottom:111.680000pt;}
.y33{bottom:113.920000pt;}
.yac{bottom:114.240000pt;}
.yc2{bottom:114.560000pt;}
.yed{bottom:122.240000pt;}
.ydc{bottom:125.120000pt;}
.y88{bottom:129.920000pt;}
.y32{bottom:132.480000pt;}
.yc1{bottom:132.800000pt;}
.y65{bottom:140.160000pt;}
.yec{bottom:140.480000pt;}
.ydb{bottom:143.680000pt;}
.y87{bottom:148.480000pt;}
.y31{bottom:150.720000pt;}
.yab{bottom:151.040000pt;}
.yc0{bottom:151.360000pt;}
.y64{bottom:158.720000pt;}
.yeb{bottom:159.040000pt;}
.yda{bottom:161.920000pt;}
.y86{bottom:166.720000pt;}
.y30{bottom:169.280000pt;}
.ybf{bottom:169.600000pt;}
.y63{bottom:176.960000pt;}
.yea{bottom:177.280000pt;}
.yd9{bottom:180.480000pt;}
.y85{bottom:185.280000pt;}
.y2f{bottom:187.520000pt;}
.yaa{bottom:187.840000pt;}
.ybe{bottom:188.160000pt;}
.y62{bottom:195.520000pt;}
.ye9{bottom:195.840000pt;}
.yd8{bottom:198.720000pt;}
.y84{bottom:203.520000pt;}
.y2e{bottom:206.080000pt;}
.ybd{bottom:206.400000pt;}
.y61{bottom:213.760000pt;}
.ye8{bottom:214.080000pt;}
.yd7{bottom:217.280000pt;}
.y83{bottom:222.080000pt;}
.y2d{bottom:224.320000pt;}
.ya9{bottom:224.640000pt;}
.ybc{bottom:224.960000pt;}
.y60{bottom:232.320000pt;}
.ye7{bottom:232.640000pt;}
.yd6{bottom:235.520000pt;}
.y82{bottom:240.320000pt;}
.y2c{bottom:242.880000pt;}
.ybb{bottom:243.200000pt;}
.y5f{bottom:250.560000pt;}
.ye6{bottom:250.880000pt;}
.yd5{bottom:254.080000pt;}
.y81{bottom:258.880000pt;}
.y2b{bottom:261.120000pt;}
.ya8{bottom:261.440000pt;}
.yba{bottom:261.760000pt;}
.y5e{bottom:269.120000pt;}
.ye5{bottom:269.440000pt;}
.yd3{bottom:272.000000pt;}
.yd4{bottom:272.320000pt;}
.y80{bottom:277.120000pt;}
.y2a{bottom:279.680000pt;}
.yb9{bottom:280.000000pt;}
.y5d{bottom:287.360000pt;}
.ye4{bottom:287.680000pt;}
.yd2{bottom:290.880000pt;}
.y7f{bottom:295.680000pt;}
.y29{bottom:297.920000pt;}
.ya7{bottom:298.240000pt;}
.yb8{bottom:298.560000pt;}
.y5c{bottom:305.920000pt;}
.ye3{bottom:306.240000pt;}
.yd1{bottom:309.120000pt;}
.y7e{bottom:313.920000pt;}
.y28{bottom:316.480000pt;}
.yb7{bottom:316.800000pt;}
.y5b{bottom:324.160000pt;}
.ye2{bottom:324.480000pt;}
.yd0{bottom:327.680000pt;}
.y7d{bottom:332.480000pt;}
.y27{bottom:334.720000pt;}
.ya6{bottom:335.040000pt;}
.yb6{bottom:335.360000pt;}
.y5a{bottom:342.720000pt;}
.ye1{bottom:343.040000pt;}
.ycf{bottom:345.920000pt;}
.y7c{bottom:350.720000pt;}
.y26{bottom:352.960000pt;}
.ya5{bottom:353.280000pt;}
.yb5{bottom:353.600000pt;}
.y59{bottom:360.960000pt;}
.ycd{bottom:364.160000pt;}
.yce{bottom:364.480000pt;}
.y7b{bottom:369.280000pt;}
.ya4{bottom:371.840000pt;}
.yb4{bottom:372.160000pt;}
.y58{bottom:379.520000pt;}
.y25{bottom:381.760000pt;}
.ycc{bottom:382.720000pt;}
.y7a{bottom:387.520000pt;}
.ya3{bottom:390.080000pt;}
.yb3{bottom:390.400000pt;}
.y57{bottom:397.760000pt;}
.ycb{bottom:401.280000pt;}
.y24{bottom:408.320000pt;}
.ya2{bottom:408.640000pt;}
.yb2{bottom:408.960000pt;}
.y56{bottom:416.320000pt;}
.yca{bottom:419.520000pt;}
.ya1{bottom:426.880000pt;}
.yb1{bottom:427.200000pt;}
.y23{bottom:434.560000pt;}
.y79{bottom:434.880000pt;}
.yc8{bottom:437.760000pt;}
.yc9{bottom:438.080000pt;}
.ya0{bottom:445.440000pt;}
.yb0{bottom:445.760000pt;}
.y55{bottom:453.120000pt;}
.y22{bottom:453.440000pt;}
.yc7{bottom:456.320000pt;}
.y9f{bottom:463.680000pt;}
.yaf{bottom:464.000000pt;}
.y21{bottom:471.680000pt;}
.yc6{bottom:474.880000pt;}
.y54{bottom:481.920000pt;}
.yae{bottom:482.560000pt;}
.y20{bottom:490.240000pt;}
.y9e{bottom:492.480000pt;}
.yc5{bottom:493.120000pt;}
.y53{bottom:500.480000pt;}
.ye0{bottom:500.800000pt;}
.y1f{bottom:508.480000pt;}
.y9d{bottom:511.040000pt;}
.yad{bottom:511.360000pt;}
.yc4{bottom:511.680000pt;}
.y52{bottom:519.360000pt;}
.y78{bottom:527.040000pt;}
.y9c{bottom:529.920000pt;}
.y1e{bottom:534.720000pt;}
.y51{bottom:537.600000pt;}
.y77{bottom:545.280000pt;}
.y9b{bottom:548.480000pt;}
.y106{bottom:552.320000pt;}
.y1d{bottom:553.280000pt;}
.y50{bottom:556.160000pt;}
.y76{bottom:563.840000pt;}
.y9a{bottom:566.720000pt;}
.y105{bottom:567.680000pt;}
.y1c{bottom:571.840000pt;}
.y4f{bottom:574.400000pt;}
.y75{bottom:582.080000pt;}
.y104{bottom:582.720000pt;}
.y99{bottom:585.280000pt;}
.y1b{bottom:590.080000pt;}
.y4e{bottom:592.960000pt;}
.y103{bottom:598.080000pt;}
.y74{bottom:600.640000pt;}
.y98{bottom:603.520000pt;}
.y1a{bottom:608.640000pt;}
.y4d{bottom:611.200000pt;}
.y102{bottom:613.440000pt;}
.y73{bottom:618.880000pt;}
.y97{bottom:622.080000pt;}
.y19{bottom:626.880000pt;}
.y101{bottom:628.800000pt;}
.y4c{bottom:629.760000pt;}
.y72{bottom:637.440000pt;}
.y96{bottom:640.320000pt;}
.y100{bottom:644.160000pt;}
.y18{bottom:645.440000pt;}
.y4b{bottom:648.000000pt;}
.y95{bottom:658.880000pt;}
.yff{bottom:659.520000pt;}
.y17{bottom:663.680000pt;}
.y71{bottom:666.240000pt;}
.y4a{bottom:666.560000pt;}
.yfe{bottom:674.880000pt;}
.y94{bottom:677.120000pt;}
.y16{bottom:682.240000pt;}
.y49{bottom:684.800000pt;}
.yfd{bottom:690.240000pt;}
.y93{bottom:695.360000pt;}
.y15{bottom:700.480000pt;}
.y48{bottom:703.360000pt;}
.yfc{bottom:705.600000pt;}
.ydf{bottom:713.600000pt;}
.y92{bottom:713.920000pt;}
.y14{bottom:719.040000pt;}
.yfb{bottom:720.960000pt;}
.y47{bottom:721.600000pt;}
.y91{bottom:732.160000pt;}
.yfa{bottom:736.320000pt;}
.y13{bottom:737.280000pt;}
.y46{bottom:740.160000pt;}
.y90{bottom:750.720000pt;}
.yf9{bottom:751.360000pt;}
.y12{bottom:755.840000pt;}
.y45{bottom:758.400000pt;}
.yf8{bottom:766.720000pt;}
.y8f{bottom:768.960000pt;}
.y11{bottom:774.080000pt;}
.y44{bottom:776.960000pt;}
.yf7{bottom:782.080000pt;}
.y8e{bottom:787.520000pt;}
.y10{bottom:792.640000pt;}
.y43{bottom:795.200000pt;}
.yf6{bottom:797.440000pt;}
.y8d{bottom:805.760000pt;}
.yf{bottom:810.880000pt;}
.yf5{bottom:812.800000pt;}
.y42{bottom:813.760000pt;}
.y8c{bottom:824.320000pt;}
.yf4{bottom:828.160000pt;}
.ye{bottom:829.120000pt;}
.y70{bottom:832.000000pt;}
.y41{bottom:842.240000pt;}
.y8b{bottom:842.560000pt;}
.yf3{bottom:843.520000pt;}
.yd{bottom:847.360000pt;}
.y6f{bottom:850.560000pt;}
.yf2{bottom:858.880000pt;}
.y40{bottom:861.120000pt;}
.y6e{bottom:868.800000pt;}
.yc{bottom:871.040000pt;}
.yf1{bottom:874.240000pt;}
.y3f{bottom:879.360000pt;}
.y6d{bottom:887.360000pt;}
.yb{bottom:889.600000pt;}
.y3e{bottom:897.920000pt;}
.y6c{bottom:905.600000pt;}
.ya{bottom:910.080000pt;}
.yf0{bottom:915.840000pt;}
.y3d{bottom:916.160000pt;}
.y6b{bottom:924.160000pt;}
.y3c{bottom:934.720000pt;}
.y9{bottom:937.600000pt;}
.y6a{bottom:942.400000pt;}
.y3b{bottom:952.960000pt;}
.y69{bottom:960.960000pt;}
.y8{bottom:965.440000pt;}
.y3a{bottom:971.520000pt;}
.y68{bottom:979.200000pt;}
.y39{bottom:989.760000pt;}
.y7{bottom:992.960000pt;}
.y67{bottom:1008.000000pt;}
.y38{bottom:1008.320000pt;}
.y3{bottom:1019.200000pt;}
.y37{bottom:1036.160000pt;}
.y2{bottom:1038.720000pt;}
.y1{bottom:1058.560000pt;}
.y36{bottom:1058.880000pt;}
.y35{bottom:1059.200000pt;}
.y66{bottom:1059.840000pt;}
.h5{height:21.333333pt;}
.hd{height:35.831250pt;}
.h8{height:37.327500pt;}
.hc{height:37.353750pt;}
.h3{height:39.243750pt;}
.hb{height:40.642560pt;}
.ha{height:43.253760pt;}
.h7{height:43.375000pt;}
.h9{height:44.468750pt;}
.h4{height:44.718750pt;}
.h2{height:45.219840pt;}
.h6{height:65.062500pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w2{width:28.000000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:113.279936pt;}
.x2{left:114.903968pt;}
.x7{left:122.583648pt;}
.x4{left:137.279936pt;}
.xc{left:151.080064pt;}
.x8{left:181.880544pt;}
.xe{left:183.702144pt;}
.x6{left:197.929344pt;}
.x1{left:215.868512pt;}
.xb{left:219.174144pt;}
.xa{left:334.579840pt;}
.x3{left:396.579840pt;}
.xd{left:475.015987pt;}
.x5{left:653.333333pt;}
}




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