
    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_11b918ac585e85d6d8d78cdd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.951172;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_e456e3b1ae1a1424ec804e09.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.948242;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_98026e2477a61cafd455a8a2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065430;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_a284469de5d52af80d40df8f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.951172;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_ebe1124c89eece34a3b99db3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_e0f7ba5371e127f8c72697ef.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065430;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_0a62ccfc60aabdc6151efea3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_84d1266a2cdafb231481b251.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_2cb286f1977970a720a6bd56.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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_57b395702d1842b058dfc08a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.948242;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:-46.080000px;}
.v5{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.600000px;}
.v2{vertical-align:13.680000px;}
.v4{vertical-align:39.600000px;}
.ls6{letter-spacing:-1.482000px;}
.ls29{letter-spacing:-1.080000px;}
.ls2e{letter-spacing:-0.768000px;}
.ls27{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.331200px;}
.ls7{letter-spacing:-0.302400px;}
.ls5{letter-spacing:-0.115200px;}
.ls28{letter-spacing:-0.000006px;}
.lsb{letter-spacing:-0.000001px;}
.ls3{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000003px;}
.ls0{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.239040px;}
.ls2c{letter-spacing:0.259920px;}
.ls9{letter-spacing:0.316800px;}
.ls1b{letter-spacing:0.324000px;}
.ls16{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.720000px;}
.lsd{letter-spacing:1.038000px;}
.ls8{letter-spacing:1.440000px;}
.ls2{letter-spacing:2.160000px;}
.ls2a{letter-spacing:6.060000px;}
.ls2b{letter-spacing:6.120000px;}
.ls2d{letter-spacing:7.200000px;}
.lsa{letter-spacing:11.836800px;}
.ls24{letter-spacing:15.616800px;}
.ls18{letter-spacing:19.584000px;}
.ls11{letter-spacing:55.440000px;}
.ls1a{letter-spacing:59.220000px;}
.ls21{letter-spacing:62.616000px;}
.ls23{letter-spacing:65.700000px;}
.ls20{letter-spacing:108.696000px;}
.ls1e{letter-spacing:114.660000px;}
.lsf{letter-spacing:125.400000px;}
.ls19{letter-spacing:136.776000px;}
.ls15{letter-spacing:139.800000px;}
.ls10{letter-spacing:154.776000px;}
.ls12{letter-spacing:172.800000px;}
.ls22{letter-spacing:173.496000px;}
.ls13{letter-spacing:180.720000px;}
.ls17{letter-spacing:235.440000px;}
.ls14{letter-spacing:237.600000px;}
.ls1d{letter-spacing:357.816000px;}
.ls1f{letter-spacing:386.040000px;}
.lse{letter-spacing:438.660000px;}
.ls1c{letter-spacing:1394.340000px;}
.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;}
}
.ws13{word-spacing:-20.318400px;}
.ws8{word-spacing:-19.195200px;}
.ws6{word-spacing:-19.123200px;}
.wsa{word-spacing:-19.080000px;}
.ws0{word-spacing:-18.792000px;}
.ws10{word-spacing:-18.684000px;}
.wsc{word-spacing:-18.360003px;}
.ws4{word-spacing:-18.360000px;}
.wsb{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.928000px;}
.wsf{word-spacing:-17.640000px;}
.ws9{word-spacing:-17.280003px;}
.wsd{word-spacing:-17.280000px;}
.wse{word-spacing:-17.279994px;}
.ws12{word-spacing:-16.243200px;}
.ws11{word-spacing:-16.200000px;}
.ws2{word-spacing:-15.422400px;}
.ws3{word-spacing:-14.515200px;}
.ws1{word-spacing:-13.033200px;}
.ws7{word-spacing:-12.441600px;}
.ws5{word-spacing:0.000000px;}
._c{margin-left:-7.405200px;}
._18{margin-left:-5.859120px;}
._6{margin-left:-4.715040px;}
._37{margin-left:-3.652320px;}
._4{margin-left:-2.449680px;}
._2{margin-left:-1.135440px;}
._1{width:1.852560px;}
._3{width:3.027600px;}
._5{width:4.253520px;}
._7{width:5.781120px;}
._e{width:6.816000px;}
._d{width:8.029440px;}
._10{width:9.105120px;}
._f{width:10.156560px;}
._11{width:11.999520px;}
._a{width:13.159440px;}
._b{width:14.636880px;}
._12{width:15.909120px;}
._17{width:17.987760px;}
._9{width:19.769760px;}
._8{width:21.222000px;}
._1e{width:22.429440px;}
._33{width:23.797872px;}
._34{width:25.309440px;}
._35{width:26.352000px;}
._32{width:28.000560px;}
._31{width:29.162880px;}
._2f{width:31.075200px;}
._30{width:32.466960px;}
._16{width:37.947600px;}
._15{width:39.083040px;}
._14{width:40.457520px;}
._13{width:41.652720px;}
._36{width:43.076880px;}
._21{width:99.180000px;}
._20{width:101.496000px;}
._0{width:109.740000px;}
._27{width:118.776000px;}
._1c{width:134.210880px;}
._1a{width:176.220000px;}
._19{width:187.536000px;}
._1b{width:244.080000px;}
._1f{width:267.480000px;}
._1d{width:275.400000px;}
._2d{width:467.700000px;}
._25{width:493.020000px;}
._26{width:538.260000px;}
._2e{width:591.420000px;}
._2a{width:769.020000px;}
._22{width:787.025760px;}
._24{width:802.145760px;}
._2b{width:840.300000px;}
._23{width:857.444400px;}
._2c{width:893.582880px;}
._29{width:917.220000px;}
._28{width:942.900000px;}
.fc4{color:transparent;}
.fc3{color:rgb(128,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(31,31,31);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.760000px;}
.fs8{font-size:38.880000px;}
.fs4{font-size:45.360000px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:54.144000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:59.904000px;}
.fs9{font-size:66.240000px;}
.fsb{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:84.384000px;}
.fs5{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y20{bottom:24.120000px;}
.y1{bottom:35.640000px;}
.y41{bottom:55.980000px;}
.y87{bottom:73.800000px;}
.ye{bottom:75.780000px;}
.yb4{bottom:80.640000px;}
.y5d{bottom:81.180000px;}
.yd{bottom:89.100000px;}
.y86{bottom:91.440000px;}
.yb3{bottom:97.200000px;}
.y5c{bottom:98.640000px;}
.yc{bottom:105.300000px;}
.y85{bottom:109.080000px;}
.yb2{bottom:113.220000px;}
.yb{bottom:121.500000px;}
.y5b{bottom:125.280000px;}
.y84{bottom:126.720000px;}
.ya{bottom:134.820000px;}
.yb1{bottom:137.160000px;}
.y5a{bottom:142.920000px;}
.y83{bottom:144.360000px;}
.y82{bottom:162.000000px;}
.y1f{bottom:167.970000px;}
.y59{bottom:169.590000px;}
.yb0{bottom:178.770000px;}
.y81{bottom:179.670000px;}
.y1e{bottom:185.610000px;}
.y58{bottom:193.350000px;}
.yaf{bottom:194.610000px;}
.y80{bottom:197.310000px;}
.y1d{bottom:203.070000px;}
.y57{bottom:212.250000px;}
.y7f{bottom:214.950000px;}
.yae{bottom:218.910000px;}
.y1c{bottom:220.710000px;}
.y56{bottom:229.890000px;}
.y7e{bottom:232.410000px;}
.yad{bottom:235.470000px;}
.y1b{bottom:247.350000px;}
.y7d{bottom:250.050000px;}
.yac{bottom:259.590000px;}
.y55{bottom:274.530000px;}
.yab{bottom:276.150000px;}
.y7c{bottom:276.690000px;}
.y1a{bottom:289.290000px;}
.yaa{bottom:291.990000px;}
.y54{bottom:294.150000px;}
.y53{bottom:311.790000px;}
.y19{bottom:315.030000px;}
.ya9{bottom:315.930000px;}
.y7b{bottom:327.810000px;}
.y52{bottom:329.430000px;}
.y18{bottom:331.050000px;}
.ya8{bottom:332.670000px;}
.y17{bottom:346.890000px;}
.y7a{bottom:354.810000px;}
.y51{bottom:356.070000px;}
.ya7{bottom:356.610000px;}
.y16{bottom:362.730000px;}
.ya6{bottom:373.395000px;}
.y79{bottom:376.455000px;}
.y15{bottom:378.615000px;}
.y50{bottom:382.575000px;}
.y40{bottom:394.275000px;}
.y14{bottom:394.455000px;}
.ya5{bottom:397.335000px;}
.y78{bottom:403.455000px;}
.y4f{bottom:409.215000px;}
.y13{bottom:410.295000px;}
.y3f{bottom:411.915000px;}
.ya4{bottom:414.075000px;}
.y12{bottom:426.135000px;}
.y4e{bottom:426.855000px;}
.y3e{bottom:429.555000px;}
.y77{bottom:430.455000px;}
.y3{bottom:437.475000px;}
.ya3{bottom:438.015000px;}
.y11{bottom:441.975000px;}
.yd0{bottom:442.515000px;}
.y4d{bottom:444.495000px;}
.y3d{bottom:447.195000px;}
.y10{bottom:457.815000px;}
.y76{bottom:458.355000px;}
.ycf{bottom:459.075000px;}
.y4c{bottom:462.135000px;}
.ya2{bottom:463.035000px;}
.y3c{bottom:464.655000px;}
.yce{bottom:474.915000px;}
.y4b{bottom:479.595000px;}
.ya1{bottom:479.775000px;}
.y3b{bottom:482.295000px;}
.y75{bottom:484.275000px;}
.y4a{bottom:497.235000px;}
.ycd{bottom:499.035000px;}
.y8{bottom:499.215000px;}
.y3a{bottom:499.935000px;}
.ya0{bottom:503.715000px;}
.y74{bottom:512.175000px;}
.ycc{bottom:515.595000px;}
.y39{bottom:517.575000px;}
.y9f{bottom:520.455000px;}
.y49{bottom:523.875000px;}
.y7{bottom:525.855000px;}
.ycb{bottom:531.435000px;}
.y73{bottom:538.275000px;}
.y48{bottom:541.515000px;}
.y38{bottom:544.215000px;}
.y9e{bottom:544.575000px;}
.yca{bottom:555.555000px;}
.y47{bottom:559.155000px;}
.y9d{bottom:561.135000px;}
.y72{bottom:565.305000px;}
.y37{bottom:570.705000px;}
.yc9{bottom:572.145000px;}
.y46{bottom:576.825000px;}
.y9c{bottom:577.005000px;}
.y71{bottom:592.305000px;}
.y45{bottom:594.285000px;}
.y36{bottom:594.645000px;}
.yc8{bottom:596.265000px;}
.y9b{bottom:602.205000px;}
.y44{bottom:611.925000px;}
.yc7{bottom:613.005000px;}
.y35{bottom:613.365000px;}
.y9{bottom:616.245000px;}
.y70{bottom:620.205000px;}
.y9a{bottom:628.845000px;}
.y34{bottom:631.005000px;}
.yc6{bottom:637.125000px;}
.y43{bottom:638.565000px;}
.y99{bottom:646.305000px;}
.y33{bottom:648.645000px;}
.y6f{bottom:652.245000px;}
.yc5{bottom:653.685000px;}
.y98{bottom:663.945000px;}
.y32{bottom:666.285000px;}
.y6e{bottom:668.085000px;}
.y6d{bottom:674.025000px;}
.yc4{bottom:677.805000px;}
.y42{bottom:684.285000px;}
.y97{bottom:690.585000px;}
.y31{bottom:692.925000px;}
.yc3{bottom:694.365000px;}
.y30{bottom:710.565000px;}
.y6c{bottom:714.165000px;}
.y6{bottom:716.145000px;}
.y96{bottom:717.225000px;}
.yc2{bottom:718.305000px;}
.y2f{bottom:728.025000px;}
.y6b{bottom:730.725000px;}
.y95{bottom:734.865000px;}
.y5{bottom:740.805000px;}
.yc1{bottom:743.145000px;}
.y2e{bottom:745.665000px;}
.y6a{bottom:746.565000px;}
.y94{bottom:752.325000px;}
.yc0{bottom:759.885000px;}
.y2d{bottom:763.305000px;}
.y4{bottom:765.510000px;}
.y93{bottom:770.010000px;}
.y69{bottom:771.630000px;}
.ybf{bottom:775.770000px;}
.y92{bottom:787.650000px;}
.y68{bottom:789.270000px;}
.y2c{bottom:789.990000px;}
.ybe{bottom:799.710000px;}
.y91{bottom:805.290000px;}
.y67{bottom:806.910000px;}
.y2b{bottom:807.630000px;}
.ybd{bottom:816.450000px;}
.y90{bottom:822.930000px;}
.y66{bottom:824.550000px;}
.y2a{bottom:825.090000px;}
.yf{bottom:836.610000px;}
.y8f{bottom:840.570000px;}
.y29{bottom:851.730000px;}
.ybc{bottom:857.310000px;}
.y28{bottom:869.370000px;}
.ybb{bottom:873.150000px;}
.y8e{bottom:879.090000px;}
.y65{bottom:886.650000px;}
.y27{bottom:887.010000px;}
.y8d{bottom:896.730000px;}
.yba{bottom:897.270000px;}
.y64{bottom:902.490000px;}
.y26{bottom:904.650000px;}
.yb9{bottom:913.830000px;}
.y8c{bottom:914.370000px;}
.y61{bottom:918.150000px;}
.y25{bottom:922.290000px;}
.y63{bottom:927.150000px;}
.yb8{bottom:929.670000px;}
.y8b{bottom:931.830000px;}
.y24{bottom:939.750000px;}
.y62{bottom:942.990000px;}
.y60{bottom:943.890000px;}
.yb7{bottom:945.510000px;}
.y8a{bottom:949.470000px;}
.y23{bottom:966.420000px;}
.y89{bottom:967.140000px;}
.yb6{bottom:969.480000px;}
.y5f{bottom:970.200000px;}
.y22{bottom:984.060000px;}
.y88{bottom:984.780000px;}
.yb5{bottom:986.220000px;}
.y5e{bottom:986.760000px;}
.y21{bottom:1019.880000px;}
.y2{bottom:1029.240000px;}
.hd{height:19.827070px;}
.h8{height:37.851680px;}
.h12{height:38.891602px;}
.h9{height:41.726953px;}
.h3{height:42.806602px;}
.h2{height:43.040039px;}
.he{height:43.143750px;}
.hb{height:45.061523px;}
.h10{height:45.181687px;}
.h4{height:45.781572px;}
.h7{height:49.868086px;}
.hc{height:49.988250px;}
.h6{height:60.670898px;}
.h5{height:60.774609px;}
.hf{height:65.884219px;}
.h11{height:84.661523px;}
.ha{height:87.361914px;}
.h1{height:1057.500000px;}
.h0{height:1057.680000px;}
.w1{width:741.750000px;}
.w2{width:741.779989px;}
.w0{width:741.780000px;}
.x0{left:0.000000px;}
.x2{left:10.799989px;}
.xd{left:46.799989px;}
.xf{left:52.919989px;}
.x10{left:55.079989px;}
.xc{left:56.339989px;}
.x1{left:58.139989px;}
.x1b{left:60.119989px;}
.xa{left:61.199989px;}
.x4{left:65.375989px;}
.x1c{left:69.515989px;}
.x1e{left:79.955989px;}
.x17{left:84.995989px;}
.x7{left:90.575989px;}
.x8{left:102.995989px;}
.x11{left:133.415989px;}
.x5{left:141.875989px;}
.x1d{left:167.789989px;}
.x6{left:218.774989px;}
.x12{left:255.674989px;}
.x9{left:304.274989px;}
.x18{left:353.444989px;}
.x14{left:386.564989px;}
.x13{left:402.944989px;}
.x19{left:441.824989px;}
.x1a{left:488.849989px;}
.x15{left:495.869989px;}
.x16{left:610.739989px;}
.xb{left:708.659989px;}
.x3{left:711.539989px;}
.xe{left:712.619989px;}
@media print{
.v1{vertical-align:-40.960000pt;}
.v5{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.200000pt;}
.v2{vertical-align:12.160000pt;}
.v4{vertical-align:35.200000pt;}
.ls6{letter-spacing:-1.317333pt;}
.ls29{letter-spacing:-0.960000pt;}
.ls2e{letter-spacing:-0.682667pt;}
.ls27{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.294400pt;}
.ls7{letter-spacing:-0.268800pt;}
.ls5{letter-spacing:-0.102400pt;}
.ls28{letter-spacing:-0.000005pt;}
.lsb{letter-spacing:-0.000001pt;}
.ls3{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000003pt;}
.ls0{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.212480pt;}
.ls2c{letter-spacing:0.231040pt;}
.ls9{letter-spacing:0.281600pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls16{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.922667pt;}
.ls8{letter-spacing:1.280000pt;}
.ls2{letter-spacing:1.920000pt;}
.ls2a{letter-spacing:5.386667pt;}
.ls2b{letter-spacing:5.440000pt;}
.ls2d{letter-spacing:6.400000pt;}
.lsa{letter-spacing:10.521600pt;}
.ls24{letter-spacing:13.881600pt;}
.ls18{letter-spacing:17.408000pt;}
.ls11{letter-spacing:49.280000pt;}
.ls1a{letter-spacing:52.640000pt;}
.ls21{letter-spacing:55.658667pt;}
.ls23{letter-spacing:58.400000pt;}
.ls20{letter-spacing:96.618667pt;}
.ls1e{letter-spacing:101.920000pt;}
.lsf{letter-spacing:111.466667pt;}
.ls19{letter-spacing:121.578667pt;}
.ls15{letter-spacing:124.266667pt;}
.ls10{letter-spacing:137.578667pt;}
.ls12{letter-spacing:153.600000pt;}
.ls22{letter-spacing:154.218667pt;}
.ls13{letter-spacing:160.640000pt;}
.ls17{letter-spacing:209.280000pt;}
.ls14{letter-spacing:211.200000pt;}
.ls1d{letter-spacing:318.058667pt;}
.ls1f{letter-spacing:343.146667pt;}
.lse{letter-spacing:389.920000pt;}
.ls1c{letter-spacing:1239.413333pt;}
.ws13{word-spacing:-18.060800pt;}
.ws8{word-spacing:-17.062400pt;}
.ws6{word-spacing:-16.998400pt;}
.wsa{word-spacing:-16.960000pt;}
.ws0{word-spacing:-16.704000pt;}
.ws10{word-spacing:-16.608000pt;}
.wsc{word-spacing:-16.320003pt;}
.ws4{word-spacing:-16.320000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.936000pt;}
.wsf{word-spacing:-15.680000pt;}
.ws9{word-spacing:-15.360003pt;}
.wsd{word-spacing:-15.360000pt;}
.wse{word-spacing:-15.359995pt;}
.ws12{word-spacing:-14.438400pt;}
.ws11{word-spacing:-14.400000pt;}
.ws2{word-spacing:-13.708800pt;}
.ws3{word-spacing:-12.902400pt;}
.ws1{word-spacing:-11.585067pt;}
.ws7{word-spacing:-11.059200pt;}
.ws5{word-spacing:0.000000pt;}
._c{margin-left:-6.582400pt;}
._18{margin-left:-5.208107pt;}
._6{margin-left:-4.191147pt;}
._37{margin-left:-3.246507pt;}
._4{margin-left:-2.177493pt;}
._2{margin-left:-1.009280pt;}
._1{width:1.646720pt;}
._3{width:2.691200pt;}
._5{width:3.780907pt;}
._7{width:5.138773pt;}
._e{width:6.058667pt;}
._d{width:7.137280pt;}
._10{width:8.093440pt;}
._f{width:9.028053pt;}
._11{width:10.666240pt;}
._a{width:11.697280pt;}
._b{width:13.010560pt;}
._12{width:14.141440pt;}
._17{width:15.989120pt;}
._9{width:17.573120pt;}
._8{width:18.864000pt;}
._1e{width:19.937280pt;}
._33{width:21.153664pt;}
._34{width:22.497280pt;}
._35{width:23.424000pt;}
._32{width:24.889387pt;}
._31{width:25.922560pt;}
._2f{width:27.622400pt;}
._30{width:28.859520pt;}
._16{width:33.731200pt;}
._15{width:34.740480pt;}
._14{width:35.962240pt;}
._13{width:37.024640pt;}
._36{width:38.290560pt;}
._21{width:88.160000pt;}
._20{width:90.218667pt;}
._0{width:97.546667pt;}
._27{width:105.578667pt;}
._1c{width:119.298560pt;}
._1a{width:156.640000pt;}
._19{width:166.698667pt;}
._1b{width:216.960000pt;}
._1f{width:237.760000pt;}
._1d{width:244.800000pt;}
._2d{width:415.733333pt;}
._25{width:438.240000pt;}
._26{width:478.453333pt;}
._2e{width:525.706667pt;}
._2a{width:683.573333pt;}
._22{width:699.578453pt;}
._24{width:713.018453pt;}
._2b{width:746.933333pt;}
._23{width:762.172800pt;}
._2c{width:794.295893pt;}
._29{width:815.306667pt;}
._28{width:838.133333pt;}
.fs7{font-size:21.120000pt;}
.fs8{font-size:34.560000pt;}
.fs4{font-size:40.320000pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:48.128000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:53.248000pt;}
.fs9{font-size:58.880000pt;}
.fsb{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:75.008000pt;}
.fs5{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:21.440000pt;}
.y1{bottom:31.680000pt;}
.y41{bottom:49.760000pt;}
.y87{bottom:65.600000pt;}
.ye{bottom:67.360000pt;}
.yb4{bottom:71.680000pt;}
.y5d{bottom:72.160000pt;}
.yd{bottom:79.200000pt;}
.y86{bottom:81.280000pt;}
.yb3{bottom:86.400000pt;}
.y5c{bottom:87.680000pt;}
.yc{bottom:93.600000pt;}
.y85{bottom:96.960000pt;}
.yb2{bottom:100.640000pt;}
.yb{bottom:108.000000pt;}
.y5b{bottom:111.360000pt;}
.y84{bottom:112.640000pt;}
.ya{bottom:119.840000pt;}
.yb1{bottom:121.920000pt;}
.y5a{bottom:127.040000pt;}
.y83{bottom:128.320000pt;}
.y82{bottom:144.000000pt;}
.y1f{bottom:149.306667pt;}
.y59{bottom:150.746667pt;}
.yb0{bottom:158.906667pt;}
.y81{bottom:159.706667pt;}
.y1e{bottom:164.986667pt;}
.y58{bottom:171.866667pt;}
.yaf{bottom:172.986667pt;}
.y80{bottom:175.386667pt;}
.y1d{bottom:180.506667pt;}
.y57{bottom:188.666667pt;}
.y7f{bottom:191.066667pt;}
.yae{bottom:194.586667pt;}
.y1c{bottom:196.186667pt;}
.y56{bottom:204.346667pt;}
.y7e{bottom:206.586667pt;}
.yad{bottom:209.306667pt;}
.y1b{bottom:219.866667pt;}
.y7d{bottom:222.266667pt;}
.yac{bottom:230.746667pt;}
.y55{bottom:244.026667pt;}
.yab{bottom:245.466667pt;}
.y7c{bottom:245.946667pt;}
.y1a{bottom:257.146667pt;}
.yaa{bottom:259.546667pt;}
.y54{bottom:261.466667pt;}
.y53{bottom:277.146667pt;}
.y19{bottom:280.026667pt;}
.ya9{bottom:280.826667pt;}
.y7b{bottom:291.386667pt;}
.y52{bottom:292.826667pt;}
.y18{bottom:294.266667pt;}
.ya8{bottom:295.706667pt;}
.y17{bottom:308.346667pt;}
.y7a{bottom:315.386667pt;}
.y51{bottom:316.506667pt;}
.ya7{bottom:316.986667pt;}
.y16{bottom:322.426667pt;}
.ya6{bottom:331.906667pt;}
.y79{bottom:334.626667pt;}
.y15{bottom:336.546667pt;}
.y50{bottom:340.066667pt;}
.y40{bottom:350.466667pt;}
.y14{bottom:350.626667pt;}
.ya5{bottom:353.186667pt;}
.y78{bottom:358.626667pt;}
.y4f{bottom:363.746667pt;}
.y13{bottom:364.706667pt;}
.y3f{bottom:366.146667pt;}
.ya4{bottom:368.066667pt;}
.y12{bottom:378.786667pt;}
.y4e{bottom:379.426667pt;}
.y3e{bottom:381.826667pt;}
.y77{bottom:382.626667pt;}
.y3{bottom:388.866667pt;}
.ya3{bottom:389.346667pt;}
.y11{bottom:392.866667pt;}
.yd0{bottom:393.346667pt;}
.y4d{bottom:395.106667pt;}
.y3d{bottom:397.506667pt;}
.y10{bottom:406.946667pt;}
.y76{bottom:407.426667pt;}
.ycf{bottom:408.066667pt;}
.y4c{bottom:410.786667pt;}
.ya2{bottom:411.586667pt;}
.y3c{bottom:413.026667pt;}
.yce{bottom:422.146667pt;}
.y4b{bottom:426.306667pt;}
.ya1{bottom:426.466667pt;}
.y3b{bottom:428.706667pt;}
.y75{bottom:430.466667pt;}
.y4a{bottom:441.986667pt;}
.ycd{bottom:443.586667pt;}
.y8{bottom:443.746667pt;}
.y3a{bottom:444.386667pt;}
.ya0{bottom:447.746667pt;}
.y74{bottom:455.266667pt;}
.ycc{bottom:458.306667pt;}
.y39{bottom:460.066667pt;}
.y9f{bottom:462.626667pt;}
.y49{bottom:465.666667pt;}
.y7{bottom:467.426667pt;}
.ycb{bottom:472.386667pt;}
.y73{bottom:478.466667pt;}
.y48{bottom:481.346667pt;}
.y38{bottom:483.746667pt;}
.y9e{bottom:484.066667pt;}
.yca{bottom:493.826667pt;}
.y47{bottom:497.026667pt;}
.y9d{bottom:498.786667pt;}
.y72{bottom:502.493333pt;}
.y37{bottom:507.293333pt;}
.yc9{bottom:508.573333pt;}
.y46{bottom:512.733333pt;}
.y9c{bottom:512.893333pt;}
.y71{bottom:526.493333pt;}
.y45{bottom:528.253333pt;}
.y36{bottom:528.573333pt;}
.yc8{bottom:530.013333pt;}
.y9b{bottom:535.293333pt;}
.y44{bottom:543.933333pt;}
.yc7{bottom:544.893333pt;}
.y35{bottom:545.213333pt;}
.y9{bottom:547.773333pt;}
.y70{bottom:551.293333pt;}
.y9a{bottom:558.973333pt;}
.y34{bottom:560.893333pt;}
.yc6{bottom:566.333333pt;}
.y43{bottom:567.613333pt;}
.y99{bottom:574.493333pt;}
.y33{bottom:576.573333pt;}
.y6f{bottom:579.773333pt;}
.yc5{bottom:581.053333pt;}
.y98{bottom:590.173333pt;}
.y32{bottom:592.253333pt;}
.y6e{bottom:593.853333pt;}
.y6d{bottom:599.133333pt;}
.yc4{bottom:602.493333pt;}
.y42{bottom:608.253333pt;}
.y97{bottom:613.853333pt;}
.y31{bottom:615.933333pt;}
.yc3{bottom:617.213333pt;}
.y30{bottom:631.613333pt;}
.y6c{bottom:634.813333pt;}
.y6{bottom:636.573333pt;}
.y96{bottom:637.533333pt;}
.yc2{bottom:638.493333pt;}
.y2f{bottom:647.133333pt;}
.y6b{bottom:649.533333pt;}
.y95{bottom:653.213333pt;}
.y5{bottom:658.493333pt;}
.yc1{bottom:660.573333pt;}
.y2e{bottom:662.813333pt;}
.y6a{bottom:663.613333pt;}
.y94{bottom:668.733333pt;}
.yc0{bottom:675.453333pt;}
.y2d{bottom:678.493333pt;}
.y4{bottom:680.453333pt;}
.y93{bottom:684.453333pt;}
.y69{bottom:685.893333pt;}
.ybf{bottom:689.573333pt;}
.y92{bottom:700.133333pt;}
.y68{bottom:701.573333pt;}
.y2c{bottom:702.213333pt;}
.ybe{bottom:710.853333pt;}
.y91{bottom:715.813333pt;}
.y67{bottom:717.253333pt;}
.y2b{bottom:717.893333pt;}
.ybd{bottom:725.733333pt;}
.y90{bottom:731.493333pt;}
.y66{bottom:732.933333pt;}
.y2a{bottom:733.413333pt;}
.yf{bottom:743.653333pt;}
.y8f{bottom:747.173333pt;}
.y29{bottom:757.093333pt;}
.ybc{bottom:762.053333pt;}
.y28{bottom:772.773333pt;}
.ybb{bottom:776.133333pt;}
.y8e{bottom:781.413333pt;}
.y65{bottom:788.133333pt;}
.y27{bottom:788.453333pt;}
.y8d{bottom:797.093333pt;}
.yba{bottom:797.573333pt;}
.y64{bottom:802.213333pt;}
.y26{bottom:804.133333pt;}
.yb9{bottom:812.293333pt;}
.y8c{bottom:812.773333pt;}
.y61{bottom:816.133333pt;}
.y25{bottom:819.813333pt;}
.y63{bottom:824.133333pt;}
.yb8{bottom:826.373333pt;}
.y8b{bottom:828.293333pt;}
.y24{bottom:835.333333pt;}
.y62{bottom:838.213333pt;}
.y60{bottom:839.013333pt;}
.yb7{bottom:840.453333pt;}
.y8a{bottom:843.973333pt;}
.y23{bottom:859.040000pt;}
.y89{bottom:859.680000pt;}
.yb6{bottom:861.760000pt;}
.y5f{bottom:862.400000pt;}
.y22{bottom:874.720000pt;}
.y88{bottom:875.360000pt;}
.yb5{bottom:876.640000pt;}
.y5e{bottom:877.120000pt;}
.y21{bottom:906.560000pt;}
.y2{bottom:914.880000pt;}
.hd{height:17.624062pt;}
.h8{height:33.645938pt;}
.h12{height:34.570312pt;}
.h9{height:37.090625pt;}
.h3{height:38.050313pt;}
.h2{height:38.257813pt;}
.he{height:38.350000pt;}
.hb{height:40.054688pt;}
.h10{height:40.161500pt;}
.h4{height:40.694731pt;}
.h7{height:44.327188pt;}
.hc{height:44.434000pt;}
.h6{height:53.929687pt;}
.h5{height:54.021875pt;}
.hf{height:58.563750pt;}
.h11{height:75.254687pt;}
.ha{height:77.655035pt;}
.h1{height:940.000000pt;}
.h0{height:940.160000pt;}
.w1{width:659.333333pt;}
.w2{width:659.359990pt;}
.w0{width:659.360000pt;}
.x0{left:0.000000pt;}
.x2{left:9.599990pt;}
.xd{left:41.599990pt;}
.xf{left:47.039990pt;}
.x10{left:48.959990pt;}
.xc{left:50.079990pt;}
.x1{left:51.679990pt;}
.x1b{left:53.439990pt;}
.xa{left:54.399990pt;}
.x4{left:58.111990pt;}
.x1c{left:61.791990pt;}
.x1e{left:71.071990pt;}
.x17{left:75.551990pt;}
.x7{left:80.511990pt;}
.x8{left:91.551990pt;}
.x11{left:118.591990pt;}
.x5{left:126.111990pt;}
.x1d{left:149.146657pt;}
.x6{left:194.466657pt;}
.x12{left:227.266657pt;}
.x9{left:270.466657pt;}
.x18{left:314.173324pt;}
.x14{left:343.613324pt;}
.x13{left:358.173324pt;}
.x19{left:392.733324pt;}
.x1a{left:434.533324pt;}
.x15{left:440.773324pt;}
.x16{left:542.879990pt;}
.xb{left:629.919990pt;}
.x3{left:632.479990pt;}
.xe{left:633.439990pt;}
}




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