
    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_0b20d696f3fad81c5d219c8d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_b53013cd95c63bde5bd97921.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_8706106db6534ebf138a3311.woff')format("woff");}.ff3{font-family:ff3;line-height:0.891602;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_09eeb5994202670751eb9388.woff')format("woff");}.ff4{font-family:ff4;line-height:1.041992;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_1be502d04eff408ec0fd2341.woff')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_c9958fcf3d1f7a74775ccce4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_a9bbbff774cd8d8affbdb5c1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_b85e998b7fd89146e14e52fc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.710938;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_0034644b177b2710088f6b56.woff')format("woff");}.ff9{font-family:ff9;line-height:0.963379;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_77ec959991cd4752789c4f75.woff')format("woff");}.ffa{font-family:ffa;line-height:0.770020;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_ba319a7134030255856d4e4f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.770020;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls7{letter-spacing:-1.134000px;}
.ls6{letter-spacing:-0.918000px;}
.ls3{letter-spacing:-0.912000px;}
.lsb{letter-spacing:-0.810000px;}
.ls9{letter-spacing:-0.780000px;}
.ls4{letter-spacing:-0.691200px;}
.ls5{letter-spacing:-0.420000px;}
.lsa{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.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;}
}
.ws4{word-spacing:-17.928000px;}
.ws2d{word-spacing:-16.434000px;}
.ws3{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.880000px;}
.ws17{word-spacing:-14.520000px;}
.ws2e{word-spacing:-13.392000px;}
.ws2f{word-spacing:-12.582000px;}
.ws5{word-spacing:-12.366000px;}
.ws6{word-spacing:-11.448000px;}
.ws7{word-spacing:-11.232000px;}
.ws8{word-spacing:-11.016000px;}
.ws9{word-spacing:-10.992000px;}
.ws13{word-spacing:-10.800000px;}
.ws2{word-spacing:-9.892800px;}
.ws1{word-spacing:-9.618000px;}
.wsf{word-spacing:-1.026000px;}
.wsb{word-spacing:-0.216000px;}
.ws12{word-spacing:-0.054000px;}
.wsa{word-spacing:0.000000px;}
.ws15{word-spacing:0.180000px;}
.ws29{word-spacing:0.360000px;}
.wse{word-spacing:0.420000px;}
.ws2b{word-spacing:0.540000px;}
.wsc{word-spacing:0.691200px;}
.ws16{word-spacing:0.780000px;}
.ws30{word-spacing:0.810000px;}
.ws10{word-spacing:0.918000px;}
.ws11{word-spacing:1.134000px;}
.ws2c{word-spacing:3.186000px;}
.ws2a{word-spacing:4.158000px;}
.wsd{word-spacing:4.860000px;}
.ws0{word-spacing:33.651135px;}
.ws27{word-spacing:37.507200px;}
.ws26{word-spacing:54.019200px;}
.ws1d{word-spacing:84.744000px;}
.ws1b{word-spacing:98.212800px;}
.ws1e{word-spacing:120.576000px;}
.ws28{word-spacing:150.403200px;}
.ws25{word-spacing:152.179200px;}
.ws19{word-spacing:192.336000px;}
.ws20{word-spacing:207.888000px;}
.ws1a{word-spacing:232.080000px;}
.ws21{word-spacing:237.072000px;}
.ws1c{word-spacing:250.032000px;}
.ws24{word-spacing:262.224000px;}
.ws23{word-spacing:281.524800px;}
.ws22{word-spacing:283.440000px;}
.ws1f{word-spacing:304.128000px;}
.ws18{word-spacing:356.496000px;}
._d{margin-left:-11.424000px;}
._0{margin-left:-8.812800px;}
._16{margin-left:-7.589400px;}
._c{margin-left:-5.880000px;}
._b{margin-left:-4.782000px;}
._a{margin-left:-3.671400px;}
._2{margin-left:-2.601000px;}
._1{margin-left:-1.458600px;}
._4{width:1.161600px;}
._5{width:2.829600px;}
._6{width:4.001400px;}
._9{width:5.097600px;}
._8{width:6.350400px;}
._7{width:7.921800px;}
._e{width:8.944200px;}
._f{width:9.952800px;}
._11{width:11.076000px;}
._10{width:12.996000px;}
._15{width:15.114600px;}
._12{width:16.389000px;}
._17{width:17.959800px;}
._3{width:37.299600px;}
._14{width:42.779400px;}
._13{width:1165.968000px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(107,26,30);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3b{bottom:71.212050px;}
.y3c{bottom:75.040050px;}
.ye1{bottom:113.006850px;}
.ya9{bottom:113.078700px;}
.yc1{bottom:113.078850px;}
.y9d{bottom:117.082800px;}
.yb{bottom:117.205050px;}
.y2b{bottom:117.212550px;}
.ya{bottom:131.601450px;}
.ye0{bottom:134.012850px;}
.ya8{bottom:134.078700px;}
.y6d{bottom:134.078850px;}
.y9c{bottom:137.986800px;}
.y2a{bottom:138.212550px;}
.y9{bottom:145.997850px;}
.ydf{bottom:155.018850px;}
.ya7{bottom:155.078700px;}
.y6c{bottom:155.078850px;}
.y9b{bottom:158.890800px;}
.y29{bottom:159.212550px;}
.y8{bottom:160.397850px;}
.yde{bottom:176.024850px;}
.ya6{bottom:176.078700px;}
.y6b{bottom:176.078850px;}
.y9a{bottom:179.794800px;}
.y28{bottom:180.212550px;}
.ydd{bottom:197.030850px;}
.ya5{bottom:197.078700px;}
.y6a{bottom:197.078850px;}
.y99{bottom:200.698800px;}
.y27{bottom:201.212550px;}
.y38{bottom:203.449800px;}
.ybe{bottom:211.440900px;}
.ydc{bottom:218.036850px;}
.ya4{bottom:218.078700px;}
.y69{bottom:218.078850px;}
.y98{bottom:221.182800px;}
.y37{bottom:221.445300px;}
.y26{bottom:222.212550px;}
.ydb{bottom:239.042850px;}
.ya3{bottom:239.078700px;}
.y68{bottom:239.078850px;}
.y36{bottom:239.440800px;}
.y97{bottom:241.666800px;}
.y25{bottom:243.212550px;}
.y35{bottom:257.436300px;}
.yda{bottom:260.048850px;}
.ybd{bottom:260.078700px;}
.y67{bottom:260.078850px;}
.y96{bottom:262.150800px;}
.y24{bottom:264.212550px;}
.yc0{bottom:274.441050px;}
.y34{bottom:275.431800px;}
.y109{bottom:280.838850px;}
.yd9{bottom:281.054850px;}
.ybc{bottom:281.078700px;}
.y66{bottom:281.078850px;}
.y95{bottom:282.634800px;}
.y23{bottom:285.212550px;}
.y33{bottom:293.427300px;}
.ya2{bottom:296.215800px;}
.y108{bottom:301.844850px;}
.yd8{bottom:302.060850px;}
.ybb{bottom:302.078700px;}
.y65{bottom:302.078850px;}
.y94{bottom:303.118800px;}
.ya1{bottom:316.020300px;}
.y93{bottom:318.118800px;}
.y22{bottom:320.100300px;}
.y107{bottom:322.850850px;}
.yd7{bottom:323.066850px;}
.yba{bottom:323.078700px;}
.y64{bottom:323.078850px;}
.y32{bottom:328.432800px;}
.y92{bottom:339.022800px;}
.y106{bottom:343.856850px;}
.yd6{bottom:344.072850px;}
.yb9{bottom:344.078700px;}
.y63{bottom:344.078850px;}
.y31{bottom:346.428300px;}
.y91{bottom:354.022800px;}
.y30{bottom:364.423800px;}
.y105{bottom:364.862850px;}
.yb8{bottom:365.078700px;}
.y62{bottom:365.078850px;}
.y90{bottom:374.506800px;}
.y104{bottom:385.868850px;}
.yb7{bottom:386.078700px;}
.y61{bottom:386.078850px;}
.y8f{bottom:389.506800px;}
.y2f{bottom:399.429300px;}
.yd5{bottom:400.441050px;}
.y21{bottom:400.623450px;}
.y103{bottom:406.874850px;}
.yb6{bottom:407.078700px;}
.y60{bottom:407.078850px;}
.y8e{bottom:409.990800px;}
.y2e{bottom:417.429300px;}
.y20{bottom:420.427950px;}
.y8d{bottom:424.990800px;}
.y102{bottom:427.880850px;}
.yb5{bottom:428.078700px;}
.y5f{bottom:428.078850px;}
.y2d{bottom:435.429300px;}
.y8c{bottom:445.474800px;}
.y101{bottom:448.886850px;}
.yd4{bottom:449.072850px;}
.yb4{bottom:449.078700px;}
.y5e{bottom:449.078850px;}
.y2c{bottom:453.429300px;}
.y8b{bottom:460.474800px;}
.y1f{bottom:461.411250px;}
.y100{bottom:469.892850px;}
.yb3{bottom:470.078700px;}
.y5d{bottom:470.078850px;}
.y8a{bottom:480.958800px;}
.y1e{bottom:481.215750px;}
.yff{bottom:490.898850px;}
.yb2{bottom:491.078700px;}
.y5c{bottom:491.078850px;}
.yd3{bottom:496.529400px;}
.y1d{bottom:501.020250px;}
.y89{bottom:501.862800px;}
.yfe{bottom:511.904850px;}
.yb1{bottom:512.078700px;}
.y5b{bottom:512.078850px;}
.y1c{bottom:520.824750px;}
.y88{bottom:522.766800px;}
.yfd{bottom:532.910850px;}
.yd2{bottom:533.072850px;}
.yb0{bottom:533.078700px;}
.y5a{bottom:533.078850px;}
.y1b{bottom:540.629250px;}
.y87{bottom:543.670800px;}
.yfc{bottom:553.916850px;}
.yd1{bottom:554.072850px;}
.yaf{bottom:554.078700px;}
.y59{bottom:554.078850px;}
.y1a{bottom:560.433750px;}
.y86{bottom:574.152750px;}
.yfb{bottom:574.922850px;}
.yd0{bottom:575.072850px;}
.yae{bottom:575.078700px;}
.y58{bottom:575.078850px;}
.y19{bottom:580.238250px;}
.yfa{bottom:595.928850px;}
.yad{bottom:596.078700px;}
.y57{bottom:596.078850px;}
.y18{bottom:600.042750px;}
.yf9{bottom:616.934850px;}
.y85{bottom:617.078700px;}
.y56{bottom:617.078850px;}
.y17{bottom:619.847250px;}
.ycf{bottom:622.529400px;}
.ybf{bottom:631.441050px;}
.yf8{bottom:637.940850px;}
.y84{bottom:638.078700px;}
.y55{bottom:638.078850px;}
.y16{bottom:639.651750px;}
.yf7{bottom:658.946850px;}
.yce{bottom:659.036850px;}
.y83{bottom:659.078700px;}
.y54{bottom:659.078850px;}
.y15{bottom:659.456250px;}
.yac{bottom:676.659000px;}
.y14{bottom:679.260750px;}
.yf6{bottom:679.952850px;}
.ycd{bottom:680.042850px;}
.y82{bottom:680.078700px;}
.y53{bottom:680.078850px;}
.yab{bottom:696.463500px;}
.y13{bottom:699.065250px;}
.yf5{bottom:700.958850px;}
.ycc{bottom:701.048850px;}
.y81{bottom:701.078700px;}
.y52{bottom:701.078850px;}
.yaa{bottom:716.268000px;}
.y12{bottom:718.869750px;}
.yf4{bottom:721.964850px;}
.ycb{bottom:722.054850px;}
.y80{bottom:722.078700px;}
.y51{bottom:722.078850px;}
.ya0{bottom:731.636100px;}
.y11{bottom:738.674250px;}
.yf3{bottom:742.970850px;}
.yca{bottom:743.060850px;}
.y7f{bottom:743.078700px;}
.y50{bottom:743.078850px;}
.y9f{bottom:751.440600px;}
.y6e{bottom:757.441050px;}
.y10{bottom:758.478750px;}
.yf2{bottom:763.976850px;}
.yc9{bottom:764.066850px;}
.y7e{bottom:764.078700px;}
.y4f{bottom:764.078850px;}
.y9e{bottom:771.245100px;}
.yf{bottom:778.283250px;}
.yf1{bottom:784.982850px;}
.yc8{bottom:785.072850px;}
.y7d{bottom:785.078700px;}
.y4e{bottom:785.078850px;}
.ye{bottom:798.087750px;}
.yf0{bottom:805.988850px;}
.y7c{bottom:806.078700px;}
.y4d{bottom:806.078850px;}
.yef{bottom:826.994850px;}
.y7b{bottom:827.078700px;}
.y4c{bottom:827.078850px;}
.yd{bottom:829.185300px;}
.yc7{bottom:832.529250px;}
.yee{bottom:848.000850px;}
.y7a{bottom:848.078700px;}
.y4b{bottom:848.078850px;}
.yed{bottom:869.006850px;}
.y79{bottom:869.078700px;}
.y4a{bottom:869.078850px;}
.yec{bottom:890.012850px;}
.y78{bottom:890.078700px;}
.y49{bottom:890.078850px;}
.yc6{bottom:895.529250px;}
.y7{bottom:908.466750px;}
.yeb{bottom:911.018850px;}
.y77{bottom:911.078700px;}
.y48{bottom:911.078850px;}
.y6{bottom:926.466750px;}
.yea{bottom:932.024850px;}
.y76{bottom:932.078700px;}
.y47{bottom:932.078850px;}
.y5{bottom:944.466750px;}
.ye9{bottom:953.030850px;}
.y46{bottom:953.078850px;}
.yc5{bottom:958.529250px;}
.y75{bottom:967.440900px;}
.ye8{bottom:974.036850px;}
.y45{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.ye7{bottom:995.042850px;}
.y44{bottom:995.078850px;}
.ye6{bottom:1016.048850px;}
.y74{bottom:1016.078700px;}
.y43{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.yc4{bottom:1021.529250px;}
.ye5{bottom:1037.054850px;}
.y73{bottom:1037.078700px;}
.y42{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.ye4{bottom:1058.060850px;}
.y72{bottom:1058.078700px;}
.y41{bottom:1058.078850px;}
.ye3{bottom:1079.066850px;}
.y71{bottom:1079.078700px;}
.y40{bottom:1079.078850px;}
.yc3{bottom:1084.192950px;}
.ye2{bottom:1100.072850px;}
.y70{bottom:1100.078700px;}
.y3f{bottom:1100.078850px;}
.yc{bottom:1109.815500px;}
.yc2{bottom:1113.696900px;}
.y6f{bottom:1121.078700px;}
.y3e{bottom:1121.078850px;}
.y3a{bottom:1159.189500px;}
.y39{bottom:1178.689500px;}
.y3d{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h10{height:38.226562px;}
.hf{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h11{height:39.000000px;}
.h8{height:43.004883px;}
.he{height:43.057617px;}
.hd{height:43.321289px;}
.ha{height:43.875000px;}
.h13{height:43.899000px;}
.h9{height:45.615234px;}
.hc{height:48.750000px;}
.h12{height:50.176758px;}
.h4{height:53.625000px;}
.hb{height:54.738281px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.071650px;}
.xc{left:108.285450px;}
.xe{left:112.258350px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.xf{left:214.306350px;}
.x4{left:300.189000px;}
.x5{left:317.199000px;}
.xd{left:334.206900px;}
.x3{left:412.428000px;}
.xa{left:608.276400px;}
.x9{left:637.376400px;}
.x1{left:807.081450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls7{letter-spacing:-1.008000pt;}
.ls6{letter-spacing:-0.816000pt;}
.ls3{letter-spacing:-0.810667pt;}
.lsb{letter-spacing:-0.720000pt;}
.ls9{letter-spacing:-0.693333pt;}
.ls4{letter-spacing:-0.614400pt;}
.ls5{letter-spacing:-0.373333pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ws4{word-spacing:-15.936000pt;}
.ws2d{word-spacing:-14.608000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.226667pt;}
.ws17{word-spacing:-12.906667pt;}
.ws2e{word-spacing:-11.904000pt;}
.ws2f{word-spacing:-11.184000pt;}
.ws5{word-spacing:-10.992000pt;}
.ws6{word-spacing:-10.176000pt;}
.ws7{word-spacing:-9.984000pt;}
.ws8{word-spacing:-9.792000pt;}
.ws9{word-spacing:-9.770667pt;}
.ws13{word-spacing:-9.600000pt;}
.ws2{word-spacing:-8.793600pt;}
.ws1{word-spacing:-8.549333pt;}
.wsf{word-spacing:-0.912000pt;}
.wsb{word-spacing:-0.192000pt;}
.ws12{word-spacing:-0.048000pt;}
.wsa{word-spacing:0.000000pt;}
.ws15{word-spacing:0.160000pt;}
.ws29{word-spacing:0.320000pt;}
.wse{word-spacing:0.373333pt;}
.ws2b{word-spacing:0.480000pt;}
.wsc{word-spacing:0.614400pt;}
.ws16{word-spacing:0.693333pt;}
.ws30{word-spacing:0.720000pt;}
.ws10{word-spacing:0.816000pt;}
.ws11{word-spacing:1.008000pt;}
.ws2c{word-spacing:2.832000pt;}
.ws2a{word-spacing:3.696000pt;}
.wsd{word-spacing:4.320000pt;}
.ws0{word-spacing:29.912120pt;}
.ws27{word-spacing:33.339733pt;}
.ws26{word-spacing:48.017067pt;}
.ws1d{word-spacing:75.328000pt;}
.ws1b{word-spacing:87.300267pt;}
.ws1e{word-spacing:107.178667pt;}
.ws28{word-spacing:133.691733pt;}
.ws25{word-spacing:135.270400pt;}
.ws19{word-spacing:170.965333pt;}
.ws20{word-spacing:184.789333pt;}
.ws1a{word-spacing:206.293333pt;}
.ws21{word-spacing:210.730667pt;}
.ws1c{word-spacing:222.250667pt;}
.ws24{word-spacing:233.088000pt;}
.ws23{word-spacing:250.244267pt;}
.ws22{word-spacing:251.946667pt;}
.ws1f{word-spacing:270.336000pt;}
.ws18{word-spacing:316.885333pt;}
._d{margin-left:-10.154667pt;}
._0{margin-left:-7.833600pt;}
._16{margin-left:-6.746133pt;}
._c{margin-left:-5.226667pt;}
._b{margin-left:-4.250667pt;}
._a{margin-left:-3.263467pt;}
._2{margin-left:-2.312000pt;}
._1{margin-left:-1.296533pt;}
._4{width:1.032533pt;}
._5{width:2.515200pt;}
._6{width:3.556800pt;}
._9{width:4.531200pt;}
._8{width:5.644800pt;}
._7{width:7.041600pt;}
._e{width:7.950400pt;}
._f{width:8.846933pt;}
._11{width:9.845333pt;}
._10{width:11.552000pt;}
._15{width:13.435200pt;}
._12{width:14.568000pt;}
._17{width:15.964267pt;}
._3{width:33.155200pt;}
._14{width:38.026133pt;}
._13{width:1036.416000pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3b{bottom:63.299600pt;}
.y3c{bottom:66.702267pt;}
.ye1{bottom:100.450533pt;}
.ya9{bottom:100.514400pt;}
.yc1{bottom:100.514533pt;}
.y9d{bottom:104.073600pt;}
.yb{bottom:104.182267pt;}
.y2b{bottom:104.188933pt;}
.ya{bottom:116.979067pt;}
.ye0{bottom:119.122533pt;}
.ya8{bottom:119.181067pt;}
.y6d{bottom:119.181200pt;}
.y9c{bottom:122.654933pt;}
.y2a{bottom:122.855600pt;}
.y9{bottom:129.775867pt;}
.ydf{bottom:137.794533pt;}
.ya7{bottom:137.847733pt;}
.y6c{bottom:137.847867pt;}
.y9b{bottom:141.236267pt;}
.y29{bottom:141.522267pt;}
.y8{bottom:142.575867pt;}
.yde{bottom:156.466533pt;}
.ya6{bottom:156.514400pt;}
.y6b{bottom:156.514533pt;}
.y9a{bottom:159.817600pt;}
.y28{bottom:160.188933pt;}
.ydd{bottom:175.138533pt;}
.ya5{bottom:175.181067pt;}
.y6a{bottom:175.181200pt;}
.y99{bottom:178.398933pt;}
.y27{bottom:178.855600pt;}
.y38{bottom:180.844267pt;}
.ybe{bottom:187.947467pt;}
.ydc{bottom:193.810533pt;}
.ya4{bottom:193.847733pt;}
.y69{bottom:193.847867pt;}
.y98{bottom:196.606933pt;}
.y37{bottom:196.840267pt;}
.y26{bottom:197.522267pt;}
.ydb{bottom:212.482533pt;}
.ya3{bottom:212.514400pt;}
.y68{bottom:212.514533pt;}
.y36{bottom:212.836267pt;}
.y97{bottom:214.814933pt;}
.y25{bottom:216.188933pt;}
.y35{bottom:228.832267pt;}
.yda{bottom:231.154533pt;}
.ybd{bottom:231.181067pt;}
.y67{bottom:231.181200pt;}
.y96{bottom:233.022933pt;}
.y24{bottom:234.855600pt;}
.yc0{bottom:243.947600pt;}
.y34{bottom:244.828267pt;}
.y109{bottom:249.634533pt;}
.yd9{bottom:249.826533pt;}
.ybc{bottom:249.847733pt;}
.y66{bottom:249.847867pt;}
.y95{bottom:251.230933pt;}
.y23{bottom:253.522267pt;}
.y33{bottom:260.824267pt;}
.ya2{bottom:263.302933pt;}
.y108{bottom:268.306533pt;}
.yd8{bottom:268.498533pt;}
.ybb{bottom:268.514400pt;}
.y65{bottom:268.514533pt;}
.y94{bottom:269.438933pt;}
.ya1{bottom:280.906933pt;}
.y93{bottom:282.772267pt;}
.y22{bottom:284.533600pt;}
.y107{bottom:286.978533pt;}
.yd7{bottom:287.170533pt;}
.yba{bottom:287.181067pt;}
.y64{bottom:287.181200pt;}
.y32{bottom:291.940267pt;}
.y92{bottom:301.353600pt;}
.y106{bottom:305.650533pt;}
.yd6{bottom:305.842533pt;}
.yb9{bottom:305.847733pt;}
.y63{bottom:305.847867pt;}
.y31{bottom:307.936267pt;}
.y91{bottom:314.686933pt;}
.y30{bottom:323.932267pt;}
.y105{bottom:324.322533pt;}
.yb8{bottom:324.514400pt;}
.y62{bottom:324.514533pt;}
.y90{bottom:332.894933pt;}
.y104{bottom:342.994533pt;}
.yb7{bottom:343.181067pt;}
.y61{bottom:343.181200pt;}
.y8f{bottom:346.228267pt;}
.y2f{bottom:355.048267pt;}
.yd5{bottom:355.947600pt;}
.y21{bottom:356.109733pt;}
.y103{bottom:361.666533pt;}
.yb6{bottom:361.847733pt;}
.y60{bottom:361.847867pt;}
.y8e{bottom:364.436267pt;}
.y2e{bottom:371.048267pt;}
.y20{bottom:373.713733pt;}
.y8d{bottom:377.769600pt;}
.y102{bottom:380.338533pt;}
.yb5{bottom:380.514400pt;}
.y5f{bottom:380.514533pt;}
.y2d{bottom:387.048267pt;}
.y8c{bottom:395.977600pt;}
.y101{bottom:399.010533pt;}
.yd4{bottom:399.175867pt;}
.yb4{bottom:399.181067pt;}
.y5e{bottom:399.181200pt;}
.y2c{bottom:403.048267pt;}
.y8b{bottom:409.310933pt;}
.y1f{bottom:410.143333pt;}
.y100{bottom:417.682533pt;}
.yb3{bottom:417.847733pt;}
.y5d{bottom:417.847867pt;}
.y8a{bottom:427.518933pt;}
.y1e{bottom:427.747333pt;}
.yff{bottom:436.354533pt;}
.yb2{bottom:436.514400pt;}
.y5c{bottom:436.514533pt;}
.yd3{bottom:441.359467pt;}
.y1d{bottom:445.351333pt;}
.y89{bottom:446.100267pt;}
.yfe{bottom:455.026533pt;}
.yb1{bottom:455.181067pt;}
.y5b{bottom:455.181200pt;}
.y1c{bottom:462.955333pt;}
.y88{bottom:464.681600pt;}
.yfd{bottom:473.698533pt;}
.yd2{bottom:473.842533pt;}
.yb0{bottom:473.847733pt;}
.y5a{bottom:473.847867pt;}
.y1b{bottom:480.559333pt;}
.y87{bottom:483.262933pt;}
.yfc{bottom:492.370533pt;}
.yd1{bottom:492.509200pt;}
.yaf{bottom:492.514400pt;}
.y59{bottom:492.514533pt;}
.y1a{bottom:498.163333pt;}
.y86{bottom:510.358000pt;}
.yfb{bottom:511.042533pt;}
.yd0{bottom:511.175867pt;}
.yae{bottom:511.181067pt;}
.y58{bottom:511.181200pt;}
.y19{bottom:515.767333pt;}
.yfa{bottom:529.714533pt;}
.yad{bottom:529.847733pt;}
.y57{bottom:529.847867pt;}
.y18{bottom:533.371333pt;}
.yf9{bottom:548.386533pt;}
.y85{bottom:548.514400pt;}
.y56{bottom:548.514533pt;}
.y17{bottom:550.975333pt;}
.ycf{bottom:553.359467pt;}
.ybf{bottom:561.280933pt;}
.yf8{bottom:567.058533pt;}
.y84{bottom:567.181067pt;}
.y55{bottom:567.181200pt;}
.y16{bottom:568.579333pt;}
.yf7{bottom:585.730533pt;}
.yce{bottom:585.810533pt;}
.y83{bottom:585.847733pt;}
.y54{bottom:585.847867pt;}
.y15{bottom:586.183333pt;}
.yac{bottom:601.474667pt;}
.y14{bottom:603.787333pt;}
.yf6{bottom:604.402533pt;}
.ycd{bottom:604.482533pt;}
.y82{bottom:604.514400pt;}
.y53{bottom:604.514533pt;}
.yab{bottom:619.078667pt;}
.y13{bottom:621.391333pt;}
.yf5{bottom:623.074533pt;}
.ycc{bottom:623.154533pt;}
.y81{bottom:623.181067pt;}
.y52{bottom:623.181200pt;}
.yaa{bottom:636.682667pt;}
.y12{bottom:638.995333pt;}
.yf4{bottom:641.746533pt;}
.ycb{bottom:641.826533pt;}
.y80{bottom:641.847733pt;}
.y51{bottom:641.847867pt;}
.ya0{bottom:650.343200pt;}
.y11{bottom:656.599333pt;}
.yf3{bottom:660.418533pt;}
.yca{bottom:660.498533pt;}
.y7f{bottom:660.514400pt;}
.y50{bottom:660.514533pt;}
.y9f{bottom:667.947200pt;}
.y6e{bottom:673.280933pt;}
.y10{bottom:674.203333pt;}
.yf2{bottom:679.090533pt;}
.yc9{bottom:679.170533pt;}
.y7e{bottom:679.181067pt;}
.y4f{bottom:679.181200pt;}
.y9e{bottom:685.551200pt;}
.yf{bottom:691.807333pt;}
.yf1{bottom:697.762533pt;}
.yc8{bottom:697.842533pt;}
.y7d{bottom:697.847733pt;}
.y4e{bottom:697.847867pt;}
.ye{bottom:709.411333pt;}
.yf0{bottom:716.434533pt;}
.y7c{bottom:716.514400pt;}
.y4d{bottom:716.514533pt;}
.yef{bottom:735.106533pt;}
.y7b{bottom:735.181067pt;}
.y4c{bottom:735.181200pt;}
.yd{bottom:737.053600pt;}
.yc7{bottom:740.026000pt;}
.yee{bottom:753.778533pt;}
.y7a{bottom:753.847733pt;}
.y4b{bottom:753.847867pt;}
.yed{bottom:772.450533pt;}
.y79{bottom:772.514400pt;}
.y4a{bottom:772.514533pt;}
.yec{bottom:791.122533pt;}
.y78{bottom:791.181067pt;}
.y49{bottom:791.181200pt;}
.yc6{bottom:796.026000pt;}
.y7{bottom:807.526000pt;}
.yeb{bottom:809.794533pt;}
.y77{bottom:809.847733pt;}
.y48{bottom:809.847867pt;}
.y6{bottom:823.526000pt;}
.yea{bottom:828.466533pt;}
.y76{bottom:828.514400pt;}
.y47{bottom:828.514533pt;}
.y5{bottom:839.526000pt;}
.ye9{bottom:847.138533pt;}
.y46{bottom:847.181200pt;}
.yc5{bottom:852.026000pt;}
.y75{bottom:859.947467pt;}
.ye8{bottom:865.810533pt;}
.y45{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.ye7{bottom:884.482533pt;}
.y44{bottom:884.514533pt;}
.ye6{bottom:903.154533pt;}
.y74{bottom:903.181067pt;}
.y43{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.yc4{bottom:908.026000pt;}
.ye5{bottom:921.826533pt;}
.y73{bottom:921.847733pt;}
.y42{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.ye4{bottom:940.498533pt;}
.y72{bottom:940.514400pt;}
.y41{bottom:940.514533pt;}
.ye3{bottom:959.170533pt;}
.y71{bottom:959.181067pt;}
.y40{bottom:959.181200pt;}
.yc3{bottom:963.727067pt;}
.ye2{bottom:977.842533pt;}
.y70{bottom:977.847733pt;}
.y3f{bottom:977.847867pt;}
.yc{bottom:986.502667pt;}
.yc2{bottom:989.952800pt;}
.y6f{bottom:996.514400pt;}
.y3e{bottom:996.514533pt;}
.y3a{bottom:1030.390667pt;}
.y39{bottom:1047.724000pt;}
.y3d{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h10{height:33.979167pt;}
.hf{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h11{height:34.666667pt;}
.h8{height:38.226562pt;}
.he{height:38.273438pt;}
.hd{height:38.507812pt;}
.ha{height:39.000000pt;}
.h13{height:39.021333pt;}
.h9{height:40.546875pt;}
.hc{height:43.333333pt;}
.h12{height:44.601562pt;}
.h4{height:47.666667pt;}
.hb{height:48.656250pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.174800pt;}
.xc{left:96.253733pt;}
.xe{left:99.785200pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.xf{left:190.494533pt;}
.x4{left:266.834667pt;}
.x5{left:281.954667pt;}
.xd{left:297.072800pt;}
.x3{left:366.602667pt;}
.xa{left:540.690133pt;}
.x9{left:566.556800pt;}
.x1{left:717.405733pt;}
}




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