
    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_95417b3f1b11d2e7871d41af.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_adb8c8ee70b71377e4db57f9.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f8a6fcc1dcbb2486f1fe6a79.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2af3e8ea0d068e88f7fa4f1b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b70a07fa6d40456128341ba6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.871094;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_b5358c96d9b166b70f782db3.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_08896d571659a1e528b075c2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_cade12ae96c411e13de7a16f.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_af10fa790fce1fe8731b2deb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.691406;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.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);}
.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);}
.v1{vertical-align:-91.440000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls32{letter-spacing:-3.744000px;}
.ls34{letter-spacing:-2.880000px;}
.ls35{letter-spacing:-1.656000px;}
.ls2e{letter-spacing:-0.720000px;}
.ls36{letter-spacing:-0.576000px;}
.ls33{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.360000px;}
.ls2f{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.120000px;}
.ls1b{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.504000px;}
.ls24{letter-spacing:0.648000px;}
.ls27{letter-spacing:0.720000px;}
.ls30{letter-spacing:0.864000px;}
.ls28{letter-spacing:0.936000px;}
.ls2c{letter-spacing:1.008000px;}
.lsc{letter-spacing:1.440000px;}
.ls29{letter-spacing:2.160000px;}
.ls26{letter-spacing:3.600000px;}
.lsd{letter-spacing:4.320000px;}
.ls22{letter-spacing:5.760000px;}
.ls11{letter-spacing:6.480000px;}
.ls17{letter-spacing:7.200000px;}
.ls18{letter-spacing:7.920000px;}
.ls20{letter-spacing:8.640000px;}
.ls21{letter-spacing:9.360000px;}
.ls5{letter-spacing:10.080000px;}
.ls6{letter-spacing:10.800000px;}
.ls31{letter-spacing:13.680000px;}
.ls2d{letter-spacing:15.120000px;}
.ls1f{letter-spacing:15.840000px;}
.ls12{letter-spacing:16.740000px;}
.ls10{letter-spacing:17.280000px;}
.lsf{letter-spacing:17.400000px;}
.lse{letter-spacing:18.000000px;}
.ls25{letter-spacing:18.720000px;}
.ls19{letter-spacing:20.160000px;}
.ls23{letter-spacing:20.280000px;}
.ls1a{letter-spacing:20.880000px;}
.lsb{letter-spacing:25.920000px;}
.ls2b{letter-spacing:28.080000px;}
.ls1c{letter-spacing:30.240000px;}
.ls1d{letter-spacing:30.360000px;}
.ls2a{letter-spacing:38.880000px;}
.ls7{letter-spacing:47.520000px;}
.ls15{letter-spacing:54.720000px;}
.ls16{letter-spacing:54.900000px;}
.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;}
}
.wse{word-spacing:-18.864000px;}
.wsd{word-spacing:-18.648000px;}
.ws6{word-spacing:-18.504000px;}
.ws4{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.496000px;}
.ws9{word-spacing:-16.822200px;}
.ws8{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.344000px;}
.ws2{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.120000px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.wsa{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._7{margin-left:-9.792000px;}
._f{margin-left:-8.496000px;}
._2{margin-left:-7.056000px;}
._6{margin-left:-5.760000px;}
._5{margin-left:-4.248000px;}
._4{margin-left:-2.844000px;}
._3{margin-left:-1.080000px;}
._0{width:1.208640px;}
._8{width:2.868000px;}
._12{width:3.900000px;}
._d{width:5.328000px;}
._16{width:6.421440px;}
._11{width:7.827360px;}
._9{width:9.480000px;}
._a{width:10.656000px;}
._e{width:12.168000px;}
._1f{width:13.189440px;}
._14{width:14.256000px;}
._15{width:15.289440px;}
._1e{width:16.734720px;}
._23{width:19.671360px;}
._1c{width:21.600000px;}
._20{width:23.295360px;}
._1d{width:25.128000px;}
._22{width:27.144000px;}
._2b{width:28.308000px;}
._27{width:29.340000px;}
._25{width:30.396000px;}
._13{width:31.404000px;}
._1b{width:33.192000px;}
._19{width:34.488000px;}
._1a{width:36.123360px;}
._26{width:38.679360px;}
._28{width:39.748800px;}
._18{width:45.000000px;}
._17{width:46.683360px;}
._b{width:47.700000px;}
._c{width:48.846720px;}
._10{width:50.122560px;}
._24{width:54.934080px;}
._30{width:75.312000px;}
._31{width:76.827360px;}
._2c{width:78.840000px;}
._2d{width:80.530080px;}
._29{width:97.128000px;}
._2a{width:98.655360px;}
._32{width:156.312000px;}
._33{width:157.608000px;}
._2e{width:194.328000px;}
._2f{width:195.768000px;}
._21{width:843.327360px;}
._1{width:1083.154560px;}
.fc1{color:rgb(37,37,44);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y73{bottom:1.440000px;}
.y80{bottom:4.140000px;}
.y9{bottom:4.500000px;}
.y99{bottom:6.285000px;}
.y77{bottom:6.300000px;}
.y97{bottom:6.465000px;}
.y79{bottom:6.480000px;}
.y70{bottom:6.660000px;}
.y3{bottom:7.740000px;}
.y74{bottom:8.460000px;}
.ya3{bottom:9.900000px;}
.y75{bottom:14.760000px;}
.y6d{bottom:20.880000px;}
.y7f{bottom:23.040000px;}
.y8{bottom:25.200000px;}
.y2{bottom:26.820000px;}
.y6e{bottom:28.080000px;}
.y5{bottom:29.016000px;}
.ya2{bottom:30.600000px;}
.y72{bottom:43.560000px;}
.y6c{bottom:52.920000px;}
.y71{bottom:62.460000px;}
.y38{bottom:93.456000px;}
.y65{bottom:101.556000px;}
.y9f{bottom:102.996000px;}
.y37{bottom:116.136000px;}
.y64{bottom:124.236000px;}
.y9e{bottom:125.856000px;}
.y36{bottom:138.996000px;}
.y63{bottom:147.096000px;}
.y9d{bottom:148.536000px;}
.y35{bottom:161.670000px;}
.y62{bottom:169.770000px;}
.y9c{bottom:171.390000px;}
.y34{bottom:184.530000px;}
.y61{bottom:192.630000px;}
.y9b{bottom:194.070000px;}
.y33{bottom:207.210000px;}
.y60{bottom:215.310000px;}
.y9a{bottom:216.930000px;}
.y32{bottom:229.890000px;}
.y98{bottom:234.045000px;}
.y5f{bottom:238.170000px;}
.y31{bottom:252.750000px;}
.y96{bottom:256.005000px;}
.y5e{bottom:260.850000px;}
.y30{bottom:275.475000px;}
.y95{bottom:278.175000px;}
.y5d{bottom:283.755000px;}
.y2f{bottom:298.335000px;}
.y94{bottom:300.135000px;}
.y5c{bottom:306.435000px;}
.y2e{bottom:321.015000px;}
.y93{bottom:322.275000px;}
.y5b{bottom:329.115000px;}
.y2d{bottom:343.875000px;}
.y92{bottom:344.235000px;}
.y5a{bottom:351.975000px;}
.y91{bottom:366.375000px;}
.y2c{bottom:366.555000px;}
.y59{bottom:374.655000px;}
.y90{bottom:388.335000px;}
.y2b{bottom:389.415000px;}
.y58{bottom:397.515000px;}
.y8f{bottom:410.475000px;}
.y2a{bottom:412.095000px;}
.y57{bottom:420.195000px;}
.y8e{bottom:432.435000px;}
.y29{bottom:434.955000px;}
.y56{bottom:443.055000px;}
.y8d{bottom:454.575000px;}
.y28{bottom:457.635000px;}
.y55{bottom:465.735000px;}
.y8c{bottom:476.535000px;}
.y27{bottom:480.495000px;}
.y54{bottom:488.595000px;}
.y8b{bottom:498.675000px;}
.y26{bottom:503.175000px;}
.y53{bottom:511.275000px;}
.y8a{bottom:520.635000px;}
.y25{bottom:526.035000px;}
.y52{bottom:534.135000px;}
.y89{bottom:542.775000px;}
.y24{bottom:548.715000px;}
.y51{bottom:556.845000px;}
.y88{bottom:564.765000px;}
.y23{bottom:571.605000px;}
.y50{bottom:579.705000px;}
.y87{bottom:586.905000px;}
.y22{bottom:594.285000px;}
.y4f{bottom:602.385000px;}
.y86{bottom:608.865000px;}
.y21{bottom:617.145000px;}
.y4e{bottom:625.245000px;}
.y85{bottom:631.005000px;}
.y20{bottom:639.825000px;}
.y4d{bottom:647.925000px;}
.y84{bottom:652.965000px;}
.y1f{bottom:662.685000px;}
.y4c{bottom:670.785000px;}
.y83{bottom:675.105000px;}
.y1e{bottom:685.365000px;}
.ya0{bottom:693.465000px;}
.y82{bottom:697.065000px;}
.y1d{bottom:708.225000px;}
.y4b{bottom:716.325000px;}
.y81{bottom:719.205000px;}
.yaf{bottom:727.305000px;}
.y1c{bottom:730.905000px;}
.y4a{bottom:739.005000px;}
.y7e{bottom:741.165000px;}
.yae{bottom:750.165000px;}
.y1b{bottom:753.765000px;}
.y49{bottom:761.865000px;}
.yad{bottom:772.845000px;}
.y1a{bottom:774.645000px;}
.y7d{bottom:779.865000px;}
.y48{bottom:784.545000px;}
.yac{bottom:793.725000px;}
.y19{bottom:795.345000px;}
.y7c{bottom:802.005000px;}
.y47{bottom:807.405000px;}
.y18{bottom:816.045000px;}
.yab{bottom:816.405000px;}
.y7b{bottom:823.965000px;}
.y46{bottom:830.085000px;}
.y17{bottom:836.745000px;}
.yaa{bottom:837.285000px;}
.y7a{bottom:846.150000px;}
.y45{bottom:852.990000px;}
.y16{bottom:857.490000px;}
.ya9{bottom:858.030000px;}
.y78{bottom:868.110000px;}
.y44{bottom:875.670000px;}
.y15{bottom:878.190000px;}
.ya8{bottom:878.730000px;}
.y76{bottom:890.250000px;}
.y14{bottom:898.530000px;}
.ya7{bottom:899.430000px;}
.y6b{bottom:912.210000px;}
.y13{bottom:919.230000px;}
.y43{bottom:921.210000px;}
.ya6{bottom:921.930000px;}
.y12{bottom:940.290000px;}
.y42{bottom:944.070000px;}
.ya5{bottom:944.790000px;}
.y11{bottom:960.990000px;}
.ya4{bottom:965.670000px;}
.y41{bottom:966.750000px;}
.y10{bottom:981.690000px;}
.ya1{bottom:981.870000px;}
.y40{bottom:989.610000px;}
.yf{bottom:1002.390000px;}
.y6f{bottom:1004.730000px;}
.y3f{bottom:1012.290000px;}
.ye{bottom:1023.090000px;}
.y6a{bottom:1031.910000px;}
.y3e{bottom:1035.150000px;}
.yd{bottom:1043.790000px;}
.y69{bottom:1044.150000px;}
.y3d{bottom:1057.830000px;}
.y68{bottom:1063.050000px;}
.yc{bottom:1064.130000px;}
.y3c{bottom:1080.690000px;}
.y67{bottom:1082.130000px;}
.yb{bottom:1084.830000px;}
.y66{bottom:1103.010000px;}
.y3b{bottom:1103.370000px;}
.ya{bottom:1105.890000px;}
.y7{bottom:1122.120000px;}
.y3a{bottom:1126.260000px;}
.y39{bottom:1148.940000px;}
.y6{bottom:1164.060000px;}
.y4{bottom:1171.800000px;}
.y1{bottom:1191.420000px;}
.h6{height:5.653125px;}
.h13{height:21.225000px;}
.h16{height:21.240000px;}
.h19{height:21.270000px;}
.h14{height:21.405000px;}
.h17{height:21.420000px;}
.h1a{height:21.441000px;}
.h15{height:21.442500px;}
.h10{height:24.285000px;}
.hd{height:35.332031px;}
.h18{height:37.980000px;}
.h7{height:41.400000px;}
.h2{height:42.660000px;}
.h11{height:45.992812px;}
.h1b{height:46.785000px;}
.ha{height:50.027344px;}
.h3{height:58.621992px;}
.h4{height:58.651172px;}
.hf{height:64.978594px;}
.hb{height:65.010937px;}
.h9{height:70.628906px;}
.h5{height:70.664062px;}
.hc{height:71.225156px;}
.h8{height:72.562500px;}
.h12{height:91.785000px;}
.he{height:116.805000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:36.345000px;}
.w6{width:41.254500px;}
.wd{width:41.565000px;}
.we{width:41.745000px;}
.w8{width:83.520000px;}
.w9{width:84.096000px;}
.wa{width:119.685000px;}
.wb{width:157.515000px;}
.w12{width:244.290000px;}
.w11{width:246.493500px;}
.w13{width:248.235000px;}
.w7{width:252.919500px;}
.w3{width:260.655000px;}
.w10{width:294.193500px;}
.w5{width:369.435000px;}
.w4{width:369.613500px;}
.w2{width:453.883500px;}
.wf{width:739.035000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.918500px;}
.x6{left:9.885000px;}
.x1f{left:12.598500px;}
.x38{left:13.845000px;}
.x32{left:14.925000px;}
.x2d{left:16.198500px;}
.x2e{left:17.985000px;}
.x30{left:20.865000px;}
.x29{left:23.925000px;}
.x26{left:26.805000px;}
.x2{left:27.934500px;}
.x37{left:33.480000px;}
.x2f{left:39.270000px;}
.x35{left:41.760000px;}
.x23{left:47.520000px;}
.xc{left:50.250000px;}
.x28{left:55.290000px;}
.x3c{left:65.865000px;}
.x9{left:77.041500px;}
.x5{left:79.185000px;}
.x1a{left:84.960000px;}
.x1{left:87.661500px;}
.x33{left:94.168500px;}
.x2c{left:104.608500px;}
.x21{left:107.443500px;}
.x20{left:118.306500px;}
.x36{left:124.048500px;}
.x7{left:127.476000px;}
.x3{left:138.988500px;}
.x3d{left:143.490000px;}
.x14{left:147.816000px;}
.x10{left:152.130000px;}
.x8{left:153.570000px;}
.xe{left:191.190000px;}
.x15{left:197.310000px;}
.x12{left:202.530000px;}
.x13{left:217.470000px;}
.x16{left:220.890000px;}
.x19{left:232.410000px;}
.x11{left:246.090000px;}
.x18{left:254.730000px;}
.x17{left:265.530000px;}
.xd{left:270.390000px;}
.x31{left:283.573500px;}
.x34{left:299.773500px;}
.x3a{left:323.535000px;}
.x1b{left:334.335000px;}
.x22{left:371.235000px;}
.x1c{left:385.275000px;}
.x1e{left:393.555000px;}
.x39{left:425.595000px;}
.xf{left:444.135000px;}
.xb{left:446.655000px;}
.x24{left:454.755000px;}
.x25{left:538.860000px;}
.x4{left:544.800000px;}
.x3b{left:567.840000px;}
.x2a{left:575.220000px;}
.x2b{left:616.800000px;}
.x27{left:658.560000px;}
.x1d{left:748.950000px;}
@media print{
.v1{vertical-align:-81.280000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls32{letter-spacing:-3.328000pt;}
.ls34{letter-spacing:-2.560000pt;}
.ls35{letter-spacing:-1.472000pt;}
.ls2e{letter-spacing:-0.640000pt;}
.ls36{letter-spacing:-0.512000pt;}
.ls33{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls2f{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.106667pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.448000pt;}
.ls24{letter-spacing:0.576000pt;}
.ls27{letter-spacing:0.640000pt;}
.ls30{letter-spacing:0.768000pt;}
.ls28{letter-spacing:0.832000pt;}
.ls2c{letter-spacing:0.896000pt;}
.lsc{letter-spacing:1.280000pt;}
.ls29{letter-spacing:1.920000pt;}
.ls26{letter-spacing:3.200000pt;}
.lsd{letter-spacing:3.840000pt;}
.ls22{letter-spacing:5.120000pt;}
.ls11{letter-spacing:5.760000pt;}
.ls17{letter-spacing:6.400000pt;}
.ls18{letter-spacing:7.040000pt;}
.ls20{letter-spacing:7.680000pt;}
.ls21{letter-spacing:8.320000pt;}
.ls5{letter-spacing:8.960000pt;}
.ls6{letter-spacing:9.600000pt;}
.ls31{letter-spacing:12.160000pt;}
.ls2d{letter-spacing:13.440000pt;}
.ls1f{letter-spacing:14.080000pt;}
.ls12{letter-spacing:14.880000pt;}
.ls10{letter-spacing:15.360000pt;}
.lsf{letter-spacing:15.466667pt;}
.lse{letter-spacing:16.000000pt;}
.ls25{letter-spacing:16.640000pt;}
.ls19{letter-spacing:17.920000pt;}
.ls23{letter-spacing:18.026667pt;}
.ls1a{letter-spacing:18.560000pt;}
.lsb{letter-spacing:23.040000pt;}
.ls2b{letter-spacing:24.960000pt;}
.ls1c{letter-spacing:26.880000pt;}
.ls1d{letter-spacing:26.986667pt;}
.ls2a{letter-spacing:34.560000pt;}
.ls7{letter-spacing:42.240000pt;}
.ls15{letter-spacing:48.640000pt;}
.ls16{letter-spacing:48.800000pt;}
.wse{word-spacing:-16.768000pt;}
.wsd{word-spacing:-16.576000pt;}
.ws6{word-spacing:-16.448000pt;}
.ws4{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.552000pt;}
.ws9{word-spacing:-14.953067pt;}
.ws8{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.528000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.wsa{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._7{margin-left:-8.704000pt;}
._f{margin-left:-7.552000pt;}
._2{margin-left:-6.272000pt;}
._6{margin-left:-5.120000pt;}
._5{margin-left:-3.776000pt;}
._4{margin-left:-2.528000pt;}
._3{margin-left:-0.960000pt;}
._0{width:1.074347pt;}
._8{width:2.549333pt;}
._12{width:3.466667pt;}
._d{width:4.736000pt;}
._16{width:5.707947pt;}
._11{width:6.957653pt;}
._9{width:8.426667pt;}
._a{width:9.472000pt;}
._e{width:10.816000pt;}
._1f{width:11.723947pt;}
._14{width:12.672000pt;}
._15{width:13.590613pt;}
._1e{width:14.875307pt;}
._23{width:17.485653pt;}
._1c{width:19.200000pt;}
._20{width:20.706987pt;}
._1d{width:22.336000pt;}
._22{width:24.128000pt;}
._2b{width:25.162667pt;}
._27{width:26.080000pt;}
._25{width:27.018667pt;}
._13{width:27.914667pt;}
._1b{width:29.504000pt;}
._19{width:30.656000pt;}
._1a{width:32.109653pt;}
._26{width:34.381653pt;}
._28{width:35.332267pt;}
._18{width:40.000000pt;}
._17{width:41.496320pt;}
._b{width:42.400000pt;}
._c{width:43.419307pt;}
._10{width:44.553387pt;}
._24{width:48.830293pt;}
._30{width:66.944000pt;}
._31{width:68.290987pt;}
._2c{width:70.080000pt;}
._2d{width:71.582293pt;}
._29{width:86.336000pt;}
._2a{width:87.693653pt;}
._32{width:138.944000pt;}
._33{width:140.096000pt;}
._2e{width:172.736000pt;}
._2f{width:174.016000pt;}
._21{width:749.624320pt;}
._1{width:962.804053pt;}
.fs2{font-size:5.120000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:1.280000pt;}
.y80{bottom:3.680000pt;}
.y9{bottom:4.000000pt;}
.y99{bottom:5.586667pt;}
.y77{bottom:5.600000pt;}
.y97{bottom:5.746667pt;}
.y79{bottom:5.760000pt;}
.y70{bottom:5.920000pt;}
.y3{bottom:6.880000pt;}
.y74{bottom:7.520000pt;}
.ya3{bottom:8.800000pt;}
.y75{bottom:13.120000pt;}
.y6d{bottom:18.560000pt;}
.y7f{bottom:20.480000pt;}
.y8{bottom:22.400000pt;}
.y2{bottom:23.840000pt;}
.y6e{bottom:24.960000pt;}
.y5{bottom:25.792000pt;}
.ya2{bottom:27.200000pt;}
.y72{bottom:38.720000pt;}
.y6c{bottom:47.040000pt;}
.y71{bottom:55.520000pt;}
.y38{bottom:83.072000pt;}
.y65{bottom:90.272000pt;}
.y9f{bottom:91.552000pt;}
.y37{bottom:103.232000pt;}
.y64{bottom:110.432000pt;}
.y9e{bottom:111.872000pt;}
.y36{bottom:123.552000pt;}
.y63{bottom:130.752000pt;}
.y9d{bottom:132.032000pt;}
.y35{bottom:143.706667pt;}
.y62{bottom:150.906667pt;}
.y9c{bottom:152.346667pt;}
.y34{bottom:164.026667pt;}
.y61{bottom:171.226667pt;}
.y9b{bottom:172.506667pt;}
.y33{bottom:184.186667pt;}
.y60{bottom:191.386667pt;}
.y9a{bottom:192.826667pt;}
.y32{bottom:204.346667pt;}
.y98{bottom:208.040000pt;}
.y5f{bottom:211.706667pt;}
.y31{bottom:224.666667pt;}
.y96{bottom:227.560000pt;}
.y5e{bottom:231.866667pt;}
.y30{bottom:244.866667pt;}
.y95{bottom:247.266667pt;}
.y5d{bottom:252.226667pt;}
.y2f{bottom:265.186667pt;}
.y94{bottom:266.786667pt;}
.y5c{bottom:272.386667pt;}
.y2e{bottom:285.346667pt;}
.y93{bottom:286.466667pt;}
.y5b{bottom:292.546667pt;}
.y2d{bottom:305.666667pt;}
.y92{bottom:305.986667pt;}
.y5a{bottom:312.866667pt;}
.y91{bottom:325.666667pt;}
.y2c{bottom:325.826667pt;}
.y59{bottom:333.026667pt;}
.y90{bottom:345.186667pt;}
.y2b{bottom:346.146667pt;}
.y58{bottom:353.346667pt;}
.y8f{bottom:364.866667pt;}
.y2a{bottom:366.306667pt;}
.y57{bottom:373.506667pt;}
.y8e{bottom:384.386667pt;}
.y29{bottom:386.626667pt;}
.y56{bottom:393.826667pt;}
.y8d{bottom:404.066667pt;}
.y28{bottom:406.786667pt;}
.y55{bottom:413.986667pt;}
.y8c{bottom:423.586667pt;}
.y27{bottom:427.106667pt;}
.y54{bottom:434.306667pt;}
.y8b{bottom:443.266667pt;}
.y26{bottom:447.266667pt;}
.y53{bottom:454.466667pt;}
.y8a{bottom:462.786667pt;}
.y25{bottom:467.586667pt;}
.y52{bottom:474.786667pt;}
.y89{bottom:482.466667pt;}
.y24{bottom:487.746667pt;}
.y51{bottom:494.973333pt;}
.y88{bottom:502.013333pt;}
.y23{bottom:508.093333pt;}
.y50{bottom:515.293333pt;}
.y87{bottom:521.693333pt;}
.y22{bottom:528.253333pt;}
.y4f{bottom:535.453333pt;}
.y86{bottom:541.213333pt;}
.y21{bottom:548.573333pt;}
.y4e{bottom:555.773333pt;}
.y85{bottom:560.893333pt;}
.y20{bottom:568.733333pt;}
.y4d{bottom:575.933333pt;}
.y84{bottom:580.413333pt;}
.y1f{bottom:589.053333pt;}
.y4c{bottom:596.253333pt;}
.y83{bottom:600.093333pt;}
.y1e{bottom:609.213333pt;}
.ya0{bottom:616.413333pt;}
.y82{bottom:619.613333pt;}
.y1d{bottom:629.533333pt;}
.y4b{bottom:636.733333pt;}
.y81{bottom:639.293333pt;}
.yaf{bottom:646.493333pt;}
.y1c{bottom:649.693333pt;}
.y4a{bottom:656.893333pt;}
.y7e{bottom:658.813333pt;}
.yae{bottom:666.813333pt;}
.y1b{bottom:670.013333pt;}
.y49{bottom:677.213333pt;}
.yad{bottom:686.973333pt;}
.y1a{bottom:688.573333pt;}
.y7d{bottom:693.213333pt;}
.y48{bottom:697.373333pt;}
.yac{bottom:705.533333pt;}
.y19{bottom:706.973333pt;}
.y7c{bottom:712.893333pt;}
.y47{bottom:717.693333pt;}
.y18{bottom:725.373333pt;}
.yab{bottom:725.693333pt;}
.y7b{bottom:732.413333pt;}
.y46{bottom:737.853333pt;}
.y17{bottom:743.773333pt;}
.yaa{bottom:744.253333pt;}
.y7a{bottom:752.133333pt;}
.y45{bottom:758.213333pt;}
.y16{bottom:762.213333pt;}
.ya9{bottom:762.693333pt;}
.y78{bottom:771.653333pt;}
.y44{bottom:778.373333pt;}
.y15{bottom:780.613333pt;}
.ya8{bottom:781.093333pt;}
.y76{bottom:791.333333pt;}
.y14{bottom:798.693333pt;}
.ya7{bottom:799.493333pt;}
.y6b{bottom:810.853333pt;}
.y13{bottom:817.093333pt;}
.y43{bottom:818.853333pt;}
.ya6{bottom:819.493333pt;}
.y12{bottom:835.813333pt;}
.y42{bottom:839.173333pt;}
.ya5{bottom:839.813333pt;}
.y11{bottom:854.213333pt;}
.ya4{bottom:858.373333pt;}
.y41{bottom:859.333333pt;}
.y10{bottom:872.613333pt;}
.ya1{bottom:872.773333pt;}
.y40{bottom:879.653333pt;}
.yf{bottom:891.013333pt;}
.y6f{bottom:893.093333pt;}
.y3f{bottom:899.813333pt;}
.ye{bottom:909.413333pt;}
.y6a{bottom:917.253333pt;}
.y3e{bottom:920.133333pt;}
.yd{bottom:927.813333pt;}
.y69{bottom:928.133333pt;}
.y3d{bottom:940.293333pt;}
.y68{bottom:944.933333pt;}
.yc{bottom:945.893333pt;}
.y3c{bottom:960.613333pt;}
.y67{bottom:961.893333pt;}
.yb{bottom:964.293333pt;}
.y66{bottom:980.453333pt;}
.y3b{bottom:980.773333pt;}
.ya{bottom:983.013333pt;}
.y7{bottom:997.440000pt;}
.y3a{bottom:1001.120000pt;}
.y39{bottom:1021.280000pt;}
.y6{bottom:1034.720000pt;}
.y4{bottom:1041.600000pt;}
.y1{bottom:1059.040000pt;}
.h6{height:5.025000pt;}
.h13{height:18.866667pt;}
.h16{height:18.880000pt;}
.h19{height:18.906667pt;}
.h14{height:19.026667pt;}
.h17{height:19.040000pt;}
.h1a{height:19.058667pt;}
.h15{height:19.060000pt;}
.h10{height:21.586667pt;}
.hd{height:31.406250pt;}
.h18{height:33.760000pt;}
.h7{height:36.800000pt;}
.h2{height:37.920000pt;}
.h11{height:40.882500pt;}
.h1b{height:41.586667pt;}
.ha{height:44.468750pt;}
.h3{height:52.108438pt;}
.h4{height:52.134375pt;}
.hf{height:57.758750pt;}
.hb{height:57.787500pt;}
.h9{height:62.781250pt;}
.h5{height:62.812500pt;}
.hc{height:63.311250pt;}
.h8{height:64.500000pt;}
.h12{height:81.586667pt;}
.he{height:103.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:32.306667pt;}
.w6{width:36.670667pt;}
.wd{width:36.946667pt;}
.we{width:37.106667pt;}
.w8{width:74.240000pt;}
.w9{width:74.752000pt;}
.wa{width:106.386667pt;}
.wb{width:140.013333pt;}
.w12{width:217.146667pt;}
.w11{width:219.105333pt;}
.w13{width:220.653333pt;}
.w7{width:224.817333pt;}
.w3{width:231.693333pt;}
.w10{width:261.505333pt;}
.w5{width:328.386667pt;}
.w4{width:328.545333pt;}
.w2{width:403.452000pt;}
.wf{width:656.920000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.038667pt;}
.x6{left:8.786667pt;}
.x1f{left:11.198667pt;}
.x38{left:12.306667pt;}
.x32{left:13.266667pt;}
.x2d{left:14.398667pt;}
.x2e{left:15.986667pt;}
.x30{left:18.546667pt;}
.x29{left:21.266667pt;}
.x26{left:23.826667pt;}
.x2{left:24.830667pt;}
.x37{left:29.760000pt;}
.x2f{left:34.906667pt;}
.x35{left:37.120000pt;}
.x23{left:42.240000pt;}
.xc{left:44.666667pt;}
.x28{left:49.146667pt;}
.x3c{left:58.546667pt;}
.x9{left:68.481333pt;}
.x5{left:70.386667pt;}
.x1a{left:75.520000pt;}
.x1{left:77.921333pt;}
.x33{left:83.705333pt;}
.x2c{left:92.985333pt;}
.x21{left:95.505333pt;}
.x20{left:105.161333pt;}
.x36{left:110.265333pt;}
.x7{left:113.312000pt;}
.x3{left:123.545333pt;}
.x3d{left:127.546667pt;}
.x14{left:131.392000pt;}
.x10{left:135.226667pt;}
.x8{left:136.506667pt;}
.xe{left:169.946667pt;}
.x15{left:175.386667pt;}
.x12{left:180.026667pt;}
.x13{left:193.306667pt;}
.x16{left:196.346667pt;}
.x19{left:206.586667pt;}
.x11{left:218.746667pt;}
.x18{left:226.426667pt;}
.x17{left:236.026667pt;}
.xd{left:240.346667pt;}
.x31{left:252.065333pt;}
.x34{left:266.465333pt;}
.x3a{left:287.586667pt;}
.x1b{left:297.186667pt;}
.x22{left:329.986667pt;}
.x1c{left:342.466667pt;}
.x1e{left:349.826667pt;}
.x39{left:378.306667pt;}
.xf{left:394.786667pt;}
.xb{left:397.026667pt;}
.x24{left:404.226667pt;}
.x25{left:478.986667pt;}
.x4{left:484.266667pt;}
.x3b{left:504.746667pt;}
.x2a{left:511.306667pt;}
.x2b{left:548.266667pt;}
.x27{left:585.386667pt;}
.x1d{left:665.733333pt;}
}




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