
    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_1aa629b37156db402e2e0aed.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.070312;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_4c9efbb52b4b70f4e616231a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106000;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_00c7b45eadf0bec5396063dd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.992000;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_e9a45b0d5d845a791100e8f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_d94025ef75407af80d260176.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b5bb6ff2fbd93ca92ba858f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_ef1928d8d433ebb874fef1d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.992000;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.864160px;}
.ls64{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.396360px;}
.ls46{letter-spacing:-0.395280px;}
.ls27{letter-spacing:-0.329400px;}
.ls65{letter-spacing:-0.270000px;}
.ls4{letter-spacing:-0.264240px;}
.ls29{letter-spacing:-0.263520px;}
.ls28{letter-spacing:-0.197640px;}
.ls2a{letter-spacing:-0.162000px;}
.ls10{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.131760px;}
.ls3{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.083880px;}
.lse{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.065880px;}
.ls63{letter-spacing:-0.054000px;}
.ls5c{letter-spacing:-0.042120px;}
.ls2{letter-spacing:0.000000px;}
.ls60{letter-spacing:0.005400px;}
.ls62{letter-spacing:0.016200px;}
.ls5f{letter-spacing:0.054000px;}
.ls6{letter-spacing:0.065880px;}
.lsf{letter-spacing:0.072000px;}
.ls61{letter-spacing:0.075600px;}
.ls26{letter-spacing:0.083880px;}
.ls5e{letter-spacing:0.102600px;}
.ls7{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.131760px;}
.ls1{letter-spacing:0.132120px;}
.ls8{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.151524px;}
.ls21{letter-spacing:0.158112px;}
.ls66{letter-spacing:0.162000px;}
.ls45{letter-spacing:0.167760px;}
.ls58{letter-spacing:0.171288px;}
.lsb{letter-spacing:0.197640px;}
.ls40{letter-spacing:0.204228px;}
.ls47{letter-spacing:0.216000px;}
.ls5d{letter-spacing:0.270000px;}
.ls2c{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.329400px;}
.ls11{letter-spacing:0.395280px;}
.ls22{letter-spacing:0.401868px;}
.ls5b{letter-spacing:0.408600px;}
.ls59{letter-spacing:0.469800px;}
.ls25{letter-spacing:0.486000px;}
.ls1e{letter-spacing:0.487512px;}
.ls5a{letter-spacing:0.556200px;}
.ls44{letter-spacing:0.604800px;}
.ls14{letter-spacing:0.658800px;}
.ls1f{letter-spacing:1.205604px;}
.ls3d{letter-spacing:1.831464px;}
.ls3f{letter-spacing:1.844640px;}
.ls3e{letter-spacing:2.075220px;}
.ls38{letter-spacing:2.174040px;}
.ls37{letter-spacing:2.351916px;}
.ls35{letter-spacing:2.378268px;}
.ls36{letter-spacing:2.569320px;}
.ls41{letter-spacing:2.748636px;}
.ls54{letter-spacing:2.977776px;}
.ls39{letter-spacing:3.409920px;}
.ls32{letter-spacing:3.623400px;}
.ls33{letter-spacing:4.018680px;}
.ls1b{letter-spacing:5.797440px;}
.ls4b{letter-spacing:6.186132px;}
.ls56{letter-spacing:6.192720px;}
.ls34{letter-spacing:6.317892px;}
.ls57{letter-spacing:6.522120px;}
.ls55{letter-spacing:6.634116px;}
.ls42{letter-spacing:6.917400px;}
.ls50{letter-spacing:7.200684px;}
.ls4f{letter-spacing:7.971480px;}
.ls2e{letter-spacing:8.300880px;}
.ls16{letter-spacing:8.388000px;}
.ls52{letter-spacing:8.696160px;}
.ls53{letter-spacing:8.854272px;}
.ls2d{letter-spacing:9.018972px;}
.ls3b{letter-spacing:9.361548px;}
.ls3a{letter-spacing:9.611892px;}
.ls20{letter-spacing:10.474920px;}
.ls17{letter-spacing:12.253680px;}
.ls19{letter-spacing:12.523788px;}
.ls18{letter-spacing:12.616020px;}
.ls31{letter-spacing:13.110120px;}
.ls4a{letter-spacing:17.076096px;}
.ls4e{letter-spacing:17.326440px;}
.ls49{letter-spacing:17.734896px;}
.ls4d{letter-spacing:19.210608px;}
.ls1a{letter-spacing:31.358880px;}
.ls30{letter-spacing:32.188968px;}
.ls2f{letter-spacing:32.314140px;}
.ls48{letter-spacing:34.982280px;}
.ls1c{letter-spacing:36.761040px;}
.ls51{letter-spacing:57.289248px;}
.ls13{letter-spacing:57.528000px;}
.ls24{letter-spacing:59.423760px;}
.ls3c{letter-spacing:60.873120px;}
.ls4c{letter-spacing:61.993080px;}
.ls12{letter-spacing:78.133680px;}
.ls2b{letter-spacing:81.864000px;}
.ls15{letter-spacing:160.128000px;}
.ls43{letter-spacing:845.682120px;}
.ls0{letter-spacing:845.685360px;}
.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;}
}
.ws2a{word-spacing:-65.880000px;}
.ws2{word-spacing:-31.312440px;}
.ws3{word-spacing:-31.180320px;}
.wsc{word-spacing:-30.783960px;}
.wsd{word-spacing:-25.596000px;}
.ws0{word-spacing:-25.488000px;}
.ws1{word-spacing:-25.380000px;}
.wsf{word-spacing:-20.160000px;}
.ws45{word-spacing:-19.963440px;}
.wse{word-spacing:-19.944000px;}
.ws25{word-spacing:-19.879560px;}
.ws10{word-spacing:-19.872000px;}
.ws44{word-spacing:-19.795680px;}
.ws26{word-spacing:-18.446400px;}
.ws1c{word-spacing:-18.380520px;}
.ws1a{word-spacing:-18.314640px;}
.ws1b{word-spacing:-18.248760px;}
.ws27{word-spacing:-18.117000px;}
.ws49{word-spacing:-18.051120px;}
.ws29{word-spacing:-17.985240px;}
.ws48{word-spacing:-17.919360px;}
.ws47{word-spacing:-17.064000px;}
.ws46{word-spacing:-16.848000px;}
.ws23{word-spacing:-15.613560px;}
.wsb{word-spacing:-15.547680px;}
.ws9{word-spacing:-15.481800px;}
.wsa{word-spacing:-15.415920px;}
.ws66{word-spacing:-15.282000px;}
.ws4a{word-spacing:-15.228000px;}
.ws2d{word-spacing:-15.120000px;}
.ws2c{word-spacing:-15.012000px;}
.ws2b{word-spacing:-14.850000px;}
.ws7e{word-spacing:-12.906000px;}
.ws7b{word-spacing:-12.744000px;}
.ws79{word-spacing:-12.690000px;}
.ws7c{word-spacing:-12.636000px;}
.ws7d{word-spacing:-12.582000px;}
.ws7a{word-spacing:-12.312000px;}
.ws28{word-spacing:-11.709360px;}
.ws65{word-spacing:-11.667240px;}
.ws50{word-spacing:-4.348080px;}
.ws4c{word-spacing:-3.952800px;}
.ws67{word-spacing:-3.228120px;}
.wsa0{word-spacing:-2.970000px;}
.ws4d{word-spacing:-2.898720px;}
.ws4e{word-spacing:-2.503440px;}
.ws30{word-spacing:-2.174040px;}
.ws6d{word-spacing:-1.778760px;}
.ws94{word-spacing:-1.566000px;}
.ws8b{word-spacing:-1.512000px;}
.ws4f{word-spacing:-1.054080px;}
.ws3f{word-spacing:-0.724680px;}
.ws40{word-spacing:-0.395280px;}
.ws74{word-spacing:-0.329400px;}
.ws7{word-spacing:-0.264240px;}
.ws11{word-spacing:-0.197640px;}
.ws5{word-spacing:-0.168480px;}
.ws72{word-spacing:-0.167760px;}
.ws85{word-spacing:-0.162000px;}
.ws19{word-spacing:-0.144000px;}
.ws8{word-spacing:-0.132120px;}
.ws24{word-spacing:-0.131760px;}
.ws64{word-spacing:-0.108000px;}
.ws16{word-spacing:-0.072000px;}
.ws1e{word-spacing:-0.065880px;}
.ws78{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.ws87{word-spacing:0.054000px;}
.ws5d{word-spacing:0.065880px;}
.ws17{word-spacing:0.072000px;}
.ws12{word-spacing:0.083880px;}
.ws14{word-spacing:0.108000px;}
.ws39{word-spacing:0.131760px;}
.ws42{word-spacing:0.162000px;}
.ws3c{word-spacing:0.197640px;}
.ws15{word-spacing:0.216000px;}
.ws3b{word-spacing:0.263520px;}
.ws41{word-spacing:0.270000px;}
.ws18{word-spacing:0.288000px;}
.ws31{word-spacing:0.329400px;}
.ws6{word-spacing:0.396360px;}
.ws13{word-spacing:0.419400px;}
.ws43{word-spacing:0.648000px;}
.ws3a{word-spacing:1.054080px;}
.ws8e{word-spacing:1.188000px;}
.ws8d{word-spacing:1.350000px;}
.ws1f{word-spacing:1.449360px;}
.ws1d{word-spacing:1.778760px;}
.ws60{word-spacing:1.910520px;}
.ws5c{word-spacing:2.174040px;}
.ws5b{word-spacing:2.239920px;}
.ws77{word-spacing:2.503440px;}
.ws9d{word-spacing:2.646000px;}
.ws9e{word-spacing:2.754000px;}
.ws98{word-spacing:3.078000px;}
.ws97{word-spacing:3.348000px;}
.ws95{word-spacing:3.510000px;}
.ws96{word-spacing:3.564000px;}
.ws57{word-spacing:3.952800px;}
.ws62{word-spacing:4.282200px;}
.ws38{word-spacing:4.677480px;}
.ws9a{word-spacing:4.914000px;}
.ws99{word-spacing:4.968000px;}
.ws61{word-spacing:5.006880px;}
.ws34{word-spacing:5.402160px;}
.ws33{word-spacing:5.731560px;}
.ws5a{word-spacing:6.126840px;}
.ws84{word-spacing:6.318000px;}
.ws83{word-spacing:6.372000px;}
.ws69{word-spacing:6.456240px;}
.ws63{word-spacing:6.851520px;}
.ws8f{word-spacing:7.776000px;}
.ws90{word-spacing:7.830000px;}
.ws71{word-spacing:7.905600px;}
.ws4b{word-spacing:8.630280px;}
.ws8c{word-spacing:8.856000px;}
.ws5e{word-spacing:9.025560px;}
.ws82{word-spacing:9.288000px;}
.ws75{word-spacing:9.354960px;}
.wsa2{word-spacing:9.990000px;}
.ws3e{word-spacing:10.409040px;}
.ws73{word-spacing:11.858400px;}
.ws2e{word-spacing:12.253680px;}
.ws55{word-spacing:12.978360px;}
.ws9f{word-spacing:13.878000px;}
.ws88{word-spacing:14.148000px;}
.ws86{word-spacing:14.310000px;}
.ws93{word-spacing:16.038000px;}
.ws91{word-spacing:16.092000px;}
.ws92{word-spacing:16.146000px;}
.ws68{word-spacing:17.260560px;}
.ws6e{word-spacing:19.105200px;}
.ws53{word-spacing:19.764000px;}
.ws54{word-spacing:20.159280px;}
.wsa1{word-spacing:21.114000px;}
.ws21{word-spacing:21.213360px;}
.ws37{word-spacing:23.058000px;}
.ws6f{word-spacing:27.340200px;}
.ws7f{word-spacing:27.648000px;}
.ws70{word-spacing:27.735480px;}
.ws80{word-spacing:27.972000px;}
.ws2f{word-spacing:31.293000px;}
.ws22{word-spacing:31.688280px;}
.ws51{word-spacing:32.017680px;}
.ws52{word-spacing:32.412960px;}
.ws3d{word-spacing:34.191720px;}
.ws56{word-spacing:34.916400px;}
.ws35{word-spacing:36.365760px;}
.ws36{word-spacing:36.695160px;}
.ws58{word-spacing:37.090440px;}
.ws32{word-spacing:37.419840px;}
.ws59{word-spacing:50.002920px;}
.ws6b{word-spacing:56.854440px;}
.ws76{word-spacing:57.249720px;}
.ws9c{word-spacing:59.508000px;}
.ws9b{word-spacing:59.670000px;}
.ws5f{word-spacing:60.807240px;}
.ws6a{word-spacing:61.927200px;}
.ws81{word-spacing:74.736000px;}
.ws20{word-spacing:78.133680px;}
.wsa3{word-spacing:89.856000px;}
.ws6c{word-spacing:94.340160px;}
.ws89{word-spacing:184.086000px;}
.ws8a{word-spacing:184.194000px;}
._1c{margin-left:-16.667640px;}
._b{margin-left:-15.388920px;}
._c{margin-left:-14.209200px;}
._a{margin-left:-6.591240px;}
._8{margin-left:-5.468040px;}
._7{margin-left:-4.458960px;}
._9{margin-left:-2.811960px;}
._2{margin-left:-1.347624px;}
._1{width:1.189080px;}
._11{width:2.566080px;}
._14{width:4.216320px;}
._15{width:5.540508px;}
._16{width:6.970104px;}
._12{width:9.128052px;}
._1d{width:14.523840px;}
._1e{width:16.035840px;}
._19{width:17.079768px;}
._13{width:19.961640px;}
._10{width:22.662720px;}
._f{width:23.878584px;}
._d{width:31.688280px;}
._18{width:35.179920px;}
._e{width:37.449864px;}
._17{width:60.675480px;}
._1a{width:62.220744px;}
._5{width:78.427224px;}
._1b{width:94.274280px;}
._0{width:189.075600px;}
._6{width:847.271160px;}
._3{width:999.004320px;}
._4{width:1240.849800px;}
.fc3{color:rgb(197,8,89);}
.fc2{color:rgb(5,99,193);}
.fc4{color:rgb(128,128,128);}
.fc1{color:rgb(191,191,191);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs1{font-size:42.120000px;}
.fs9{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:83.880000px;}
.fs7{font-size:96.120000px;}
.fs3{font-size:108.000000px;}
.fs4{font-size:132.120000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.500000px;}
.ya{bottom:22.140000px;}
.y3{bottom:56.605590px;}
.y11{bottom:56.611890px;}
.y10{bottom:76.590000px;}
.y2d{bottom:83.340000px;}
.ya5{bottom:114.475500px;}
.yfc{bottom:114.480000px;}
.y72{bottom:117.360000px;}
.y48{bottom:122.310000px;}
.y34{bottom:125.010000px;}
.yfb{bottom:129.964500px;}
.ya4{bottom:134.460000px;}
.y2b{bottom:136.161990px;}
.y31{bottom:142.290000px;}
.y4{bottom:143.460000px;}
.yce{bottom:145.525500px;}
.ya3{bottom:145.530000px;}
.y71{bottom:148.415580px;}
.yfa{bottom:150.030000px;}
.ya2{bottom:161.014500px;}
.ycd{bottom:165.510000px;}
.y2a{bottom:168.657300px;}
.y70{bottom:168.937200px;}
.y2{bottom:170.726220px;}
.ycc{bottom:176.580000px;}
.ya1{bottom:181.080000px;}
.y6f{bottom:189.360000px;}
.ycb{bottom:192.064500px;}
.ya0{bottom:192.690000px;}
.y29{bottom:201.152610px;}
.yca{bottom:212.130000px;}
.y47{bottom:221.220000px;}
.yc9{bottom:223.110000px;}
.yf9{bottom:223.114500px;}
.y6e{bottom:226.252890px;}
.y28{bottom:233.647920px;}
.yc8{bottom:238.675500px;}
.yf8{bottom:243.180000px;}
.y6d{bottom:245.242800px;}
.yf7{bottom:254.164500px;}
.y46{bottom:258.390000px;}
.yc7{bottom:258.660000px;}
.y6c{bottom:264.232710px;}
.y27{bottom:266.044410px;}
.yc6{bottom:269.725500px;}
.yf6{bottom:274.230000px;}
.yf5{bottom:285.214500px;}
.yc5{bottom:289.710000px;}
.y45{bottom:292.680000px;}
.y6b{bottom:296.629200px;}
.y26{bottom:298.539720px;}
.yc4{bottom:301.320000px;}
.yf4{bottom:305.280000px;}
.yf3{bottom:316.260000px;}
.y44{bottom:327.060000px;}
.y6a{bottom:329.124510px;}
.y25{bottom:331.035030px;}
.yf2{bottom:331.825500px;}
.yf1{bottom:351.810000px;}
.y43{bottom:361.350000px;}
.y69{bottom:361.619820px;}
.y120{bottom:362.430000px;}
.yf0{bottom:362.880000px;}
.y24{bottom:363.530340px;}
.yc{bottom:369.900000px;}
.y9f{bottom:376.476480px;}
.yef{bottom:378.364500px;}
.y11f{bottom:390.541500px;}
.y42{bottom:392.670000px;}
.y68{bottom:394.115130px;}
.y23{bottom:396.025650px;}
.y9e{bottom:396.899280px;}
.yee{bottom:398.430000px;}
.y11e{bottom:408.091500px;}
.yed{bottom:410.040000px;}
.y9d{bottom:418.491450px;}
.y41{bottom:424.080000px;}
.y11d{bottom:425.641500px;}
.y67{bottom:426.610440px;}
.y22{bottom:428.520960px;}
.yc3{bottom:439.372440px;}
.y9c{bottom:440.083620px;}
.y11c{bottom:452.196000px;}
.y54{bottom:454.230000px;}
.y40{bottom:455.400000px;}
.y9{bottom:456.030000px;}
.y66{bottom:459.105750px;}
.y21{bottom:460.917450px;}
.y9b{bottom:461.675790px;}
.y11b{bottom:469.746000px;}
.yc2{bottom:474.755850px;}
.y9a{bottom:483.267960px;}
.y53{bottom:485.550000px;}
.y3f{bottom:486.720000px;}
.y11a{bottom:487.296000px;}
.y65{bottom:491.502240px;}
.y20{bottom:493.412760px;}
.yc1{bottom:495.277470px;}
.yec{bottom:497.632320px;}
.y99{bottom:503.690760px;}
.y119{bottom:513.850500px;}
.yc0{bottom:515.700270px;}
.y52{bottom:516.960000px;}
.y3e{bottom:518.040000px;}
.yeb{bottom:518.055120px;}
.y64{bottom:523.997550px;}
.y98{bottom:525.282930px;}
.y1f{bottom:525.908070px;}
.y118{bottom:531.400500px;}
.ybf{bottom:536.221890px;}
.yea{bottom:538.576740px;}
.y97{bottom:546.875100px;}
.y51{bottom:548.280000px;}
.y3d{bottom:549.360000px;}
.y63{bottom:556.492860px;}
.ybe{bottom:556.644690px;}
.y117{bottom:557.955000px;}
.y1e{bottom:558.403380px;}
.ye9{bottom:558.999540px;}
.yb{bottom:564.660000px;}
.y96{bottom:568.467270px;}
.y116{bottom:575.505000px;}
.ye8{bottom:579.521160px;}
.y50{bottom:579.600000px;}
.y3c{bottom:580.770000px;}
.y95{bottom:588.890070px;}
.y62{bottom:588.988170px;}
.ybd{bottom:589.149540px;}
.y1d{bottom:590.898690px;}
.y115{bottom:593.055000px;}
.ye7{bottom:599.943960px;}
.ybc{bottom:609.671160px;}
.y94{bottom:610.482240px;}
.y4f{bottom:610.920000px;}
.y3b{bottom:612.090000px;}
.y114{bottom:619.609500px;}
.ye6{bottom:620.465580px;}
.y61{bottom:621.483480px;}
.y1c{bottom:623.394000px;}
.ybb{bottom:630.093960px;}
.y93{bottom:632.074410px;}
.y113{bottom:637.159500px;}
.ye5{bottom:640.888380px;}
.y4e{bottom:642.240000px;}
.y3a{bottom:643.410000px;}
.yba{bottom:650.615580px;}
.y92{bottom:653.666580px;}
.y60{bottom:653.978790px;}
.y1b{bottom:655.790490px;}
.ye4{bottom:661.410000px;}
.y112{bottom:663.714000px;}
.yb9{bottom:671.038380px;}
.y4d{bottom:673.650000px;}
.y39{bottom:674.730000px;}
.y35{bottom:676.530000px;}
.y49{bottom:676.620000px;}
.y111{bottom:681.264000px;}
.y91{bottom:686.161890px;}
.y5f{bottom:686.375280px;}
.y1a{bottom:688.285800px;}
.yb8{bottom:691.584480px;}
.ye3{bottom:693.810000px;}
.y110{bottom:698.814000px;}
.y4c{bottom:704.970000px;}
.y38{bottom:706.050000px;}
.yb7{bottom:712.007280px;}
.y90{bottom:718.558380px;}
.y5e{bottom:718.870590px;}
.y19{bottom:720.781110px;}
.y10f{bottom:725.368500px;}
.yb6{bottom:732.528900px;}
.y4b{bottom:736.290000px;}
.ye2{bottom:738.275580px;}
.y37{bottom:738.900000px;}
.y8f{bottom:739.092780px;}
.y10e{bottom:742.918500px;}
.y5d{bottom:751.365900px;}
.y18{bottom:753.276420px;}
.ye1{bottom:758.797200px;}
.y8e{bottom:759.515580px;}
.yb5{bottom:765.024210px;}
.y4a{bottom:767.610000px;}
.y10d{bottom:769.473000px;}
.y36{bottom:770.220000px;}
.y7d{bottom:774.270000px;}
.ye0{bottom:779.218380px;}
.y8d{bottom:780.037200px;}
.y5c{bottom:783.861210px;}
.yb4{bottom:785.447010px;}
.y17{bottom:785.771730px;}
.yf{bottom:785.963880px;}
.y10c{bottom:787.023000px;}
.ydf{bottom:799.745580px;}
.y8c{bottom:800.463960px;}
.y7c{bottom:805.229850px;}
.yb3{bottom:805.968630px;}
.y10b{bottom:813.577500px;}
.y5b{bottom:816.356520px;}
.y16{bottom:818.267040px;}
.yde{bottom:820.168380px;}
.y8b{bottom:820.985580px;}
.yb2{bottom:826.391430px;}
.y10a{bottom:831.127500px;}
.ye{bottom:832.238910px;}
.y7b{bottom:836.010000px;}
.ydd{bottom:840.688380px;}
.y8a{bottom:841.408380px;}
.y30{bottom:845.460000px;}
.yb1{bottom:846.913050px;}
.y5a{bottom:848.851830px;}
.y109{bottom:857.682000px;}
.ydc{bottom:861.217200px;}
.y89{bottom:861.930000px;}
.y108{bottom:875.232000px;}
.y7a{bottom:877.140000px;}
.yd{bottom:878.580000px;}
.yb0{bottom:879.408360px;}
.y59{bottom:881.248320px;}
.ydb{bottom:881.645580px;}
.y88{bottom:894.330000px;}
.yaf{bottom:899.831160px;}
.y107{bottom:901.786500px;}
.yda{bottom:902.167200px;}
.y33{bottom:902.430000px;}
.y58{bottom:913.743630px;}
.y79{bottom:918.270000px;}
.y106{bottom:919.336500px;}
.yae{bottom:920.352780px;}
.yd9{bottom:922.599540px;}
.y87{bottom:938.902320px;}
.yad{bottom:940.775580px;}
.yd8{bottom:943.121160px;}
.y105{bottom:945.891000px;}
.y57{bottom:946.238940px;}
.y32{bottom:949.860000px;}
.y78{bottom:950.406120px;}
.y86{bottom:959.325120px;}
.yac{bottom:961.297200px;}
.y104{bottom:963.441000px;}
.yd7{bottom:963.543960px;}
.y77{bottom:973.530000px;}
.y56{bottom:978.734250px;}
.y85{bottom:979.846740px;}
.y103{bottom:980.991000px;}
.yab{bottom:981.725580px;}
.yd6{bottom:984.065580px;}
.y8{bottom:999.449010px;}
.y84{bottom:1000.269540px;}
.yaa{bottom:1002.247200px;}
.yd5{bottom:1004.488380px;}
.y76{bottom:1005.750000px;}
.y102{bottom:1007.545500px;}
.y55{bottom:1011.229560px;}
.y83{bottom:1020.791160px;}
.ya9{bottom:1022.668380px;}
.yd4{bottom:1025.021160px;}
.y101{bottom:1025.095500px;}
.y2c{bottom:1033.470000px;}
.y7{bottom:1038.054690px;}
.y82{bottom:1041.213960px;}
.y100{bottom:1042.645500px;}
.ya8{bottom:1043.190000px;}
.y15{bottom:1043.724870px;}
.yd3{bottom:1045.443960px;}
.y75{bottom:1046.880000px;}
.y2f{bottom:1053.354240px;}
.y81{bottom:1061.735580px;}
.yd2{bottom:1065.965580px;}
.yff{bottom:1069.200000px;}
.y6{bottom:1070.550000px;}
.ya7{bottom:1074.420000px;}
.y14{bottom:1076.121360px;}
.y80{bottom:1082.158380px;}
.y2e{bottom:1082.880000px;}
.y1{bottom:1086.030000px;}
.yd1{bottom:1086.388380px;}
.yfe{bottom:1086.750000px;}
.y74{bottom:1088.010000px;}
.ya6{bottom:1099.710000px;}
.y7f{bottom:1102.680000px;}
.yfd{bottom:1104.300000px;}
.yd0{bottom:1106.910000px;}
.y13{bottom:1108.616670px;}
.y73{bottom:1131.930000px;}
.y7e{bottom:1135.080000px;}
.ycf{bottom:1138.140000px;}
.y12{bottom:1141.111980px;}
.h3{height:14.310000px;}
.h1b{height:30.955078px;}
.h4{height:36.217441px;}
.h14{height:43.769004px;}
.h1c{height:46.432617px;}
.h29{height:47.962441px;}
.h2b{height:48.276000px;}
.h6{height:49.860000px;}
.h2a{height:51.694980px;}
.h1d{height:51.712980px;}
.h10{height:52.417969px;}
.h1e{height:56.160000px;}
.h24{height:56.603153px;}
.h25{height:56.609633px;}
.h27{height:56.618993px;}
.h26{height:56.625473px;}
.h2{height:56.647793px;}
.h28{height:56.654273px;}
.h21{height:56.999521px;}
.h1a{height:57.046321px;}
.h22{height:57.059281px;}
.h23{height:57.074041px;}
.h20{height:57.075121px;}
.h19{height:57.081601px;}
.h1f{height:57.103921px;}
.ha{height:58.896720px;}
.h11{height:61.910156px;}
.h17{height:64.343520px;}
.h16{height:64.368000px;}
.h18{height:65.426400px;}
.h12{height:72.125332px;}
.h15{height:74.973600px;}
.hc{height:74.988720px;}
.h5{height:74.992680px;}
.he{height:92.865234px;}
.h7{height:96.552000px;}
.hb{height:117.180000px;}
.h9{height:118.115280px;}
.hd{height:170.010000px;}
.h8{height:397.620000px;}
.hf{height:693.450000px;}
.h13{height:693.540000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:91.620000px;}
.w7{width:249.840000px;}
.w8{width:390.420000px;}
.w3{width:474.030000px;}
.w5{width:499.500000px;}
.w4{width:592.830000px;}
.w6{width:661.770000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:10.800000px;}
.xf{left:32.850000px;}
.x13{left:51.030000px;}
.x5{left:106.290000px;}
.xe{left:117.630000px;}
.x1b{left:122.760000px;}
.x1c{left:133.110000px;}
.x3{left:141.930000px;}
.x1e{left:159.840000px;}
.x12{left:181.170000px;}
.x18{left:191.970000px;}
.x8{left:193.320000px;}
.x10{left:207.000000px;}
.x9{left:229.140000px;}
.xb{left:235.010250px;}
.xa{left:262.260000px;}
.x16{left:293.220000px;}
.x6{left:312.120000px;}
.x15{left:313.200000px;}
.x7{left:318.960000px;}
.x1d{left:322.290000px;}
.x17{left:359.190000px;}
.x1{left:361.350000px;}
.x14{left:420.210000px;}
.x11{left:437.580000px;}
.x19{left:439.740000px;}
.x1a{left:450.540000px;}
.x2{left:479.242260px;}
.xc{left:536.409000px;}
.xd{left:621.553950px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.545920pt;}
.ls64{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.352320pt;}
.ls46{letter-spacing:-0.351360pt;}
.ls27{letter-spacing:-0.292800pt;}
.ls65{letter-spacing:-0.240000pt;}
.ls4{letter-spacing:-0.234880pt;}
.ls29{letter-spacing:-0.234240pt;}
.ls28{letter-spacing:-0.175680pt;}
.ls2a{letter-spacing:-0.144000pt;}
.ls10{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.117120pt;}
.ls3{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.074560pt;}
.lse{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.058560pt;}
.ls63{letter-spacing:-0.048000pt;}
.ls5c{letter-spacing:-0.037440pt;}
.ls2{letter-spacing:0.000000pt;}
.ls60{letter-spacing:0.004800pt;}
.ls62{letter-spacing:0.014400pt;}
.ls5f{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.058560pt;}
.lsf{letter-spacing:0.064000pt;}
.ls61{letter-spacing:0.067200pt;}
.ls26{letter-spacing:0.074560pt;}
.ls5e{letter-spacing:0.091200pt;}
.ls7{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.117120pt;}
.ls1{letter-spacing:0.117440pt;}
.ls8{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.134688pt;}
.ls21{letter-spacing:0.140544pt;}
.ls66{letter-spacing:0.144000pt;}
.ls45{letter-spacing:0.149120pt;}
.ls58{letter-spacing:0.152256pt;}
.lsb{letter-spacing:0.175680pt;}
.ls40{letter-spacing:0.181536pt;}
.ls47{letter-spacing:0.192000pt;}
.ls5d{letter-spacing:0.240000pt;}
.ls2c{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.292800pt;}
.ls11{letter-spacing:0.351360pt;}
.ls22{letter-spacing:0.357216pt;}
.ls5b{letter-spacing:0.363200pt;}
.ls59{letter-spacing:0.417600pt;}
.ls25{letter-spacing:0.432000pt;}
.ls1e{letter-spacing:0.433344pt;}
.ls5a{letter-spacing:0.494400pt;}
.ls44{letter-spacing:0.537600pt;}
.ls14{letter-spacing:0.585600pt;}
.ls1f{letter-spacing:1.071648pt;}
.ls3d{letter-spacing:1.627968pt;}
.ls3f{letter-spacing:1.639680pt;}
.ls3e{letter-spacing:1.844640pt;}
.ls38{letter-spacing:1.932480pt;}
.ls37{letter-spacing:2.090592pt;}
.ls35{letter-spacing:2.114016pt;}
.ls36{letter-spacing:2.283840pt;}
.ls41{letter-spacing:2.443232pt;}
.ls54{letter-spacing:2.646912pt;}
.ls39{letter-spacing:3.031040pt;}
.ls32{letter-spacing:3.220800pt;}
.ls33{letter-spacing:3.572160pt;}
.ls1b{letter-spacing:5.153280pt;}
.ls4b{letter-spacing:5.498784pt;}
.ls56{letter-spacing:5.504640pt;}
.ls34{letter-spacing:5.615904pt;}
.ls57{letter-spacing:5.797440pt;}
.ls55{letter-spacing:5.896992pt;}
.ls42{letter-spacing:6.148800pt;}
.ls50{letter-spacing:6.400608pt;}
.ls4f{letter-spacing:7.085760pt;}
.ls2e{letter-spacing:7.378560pt;}
.ls16{letter-spacing:7.456000pt;}
.ls52{letter-spacing:7.729920pt;}
.ls53{letter-spacing:7.870464pt;}
.ls2d{letter-spacing:8.016864pt;}
.ls3b{letter-spacing:8.321376pt;}
.ls3a{letter-spacing:8.543904pt;}
.ls20{letter-spacing:9.311040pt;}
.ls17{letter-spacing:10.892160pt;}
.ls19{letter-spacing:11.132256pt;}
.ls18{letter-spacing:11.214240pt;}
.ls31{letter-spacing:11.653440pt;}
.ls4a{letter-spacing:15.178752pt;}
.ls4e{letter-spacing:15.401280pt;}
.ls49{letter-spacing:15.764352pt;}
.ls4d{letter-spacing:17.076096pt;}
.ls1a{letter-spacing:27.874560pt;}
.ls30{letter-spacing:28.612416pt;}
.ls2f{letter-spacing:28.723680pt;}
.ls48{letter-spacing:31.095360pt;}
.ls1c{letter-spacing:32.676480pt;}
.ls51{letter-spacing:50.923776pt;}
.ls13{letter-spacing:51.136000pt;}
.ls24{letter-spacing:52.821120pt;}
.ls3c{letter-spacing:54.109440pt;}
.ls4c{letter-spacing:55.104960pt;}
.ls12{letter-spacing:69.452160pt;}
.ls2b{letter-spacing:72.768000pt;}
.ls15{letter-spacing:142.336000pt;}
.ls43{letter-spacing:751.717440pt;}
.ls0{letter-spacing:751.720320pt;}
.ws2a{word-spacing:-58.560000pt;}
.ws2{word-spacing:-27.833280pt;}
.ws3{word-spacing:-27.715840pt;}
.wsc{word-spacing:-27.363520pt;}
.wsd{word-spacing:-22.752000pt;}
.ws0{word-spacing:-22.656000pt;}
.ws1{word-spacing:-22.560000pt;}
.wsf{word-spacing:-17.920000pt;}
.ws45{word-spacing:-17.745280pt;}
.wse{word-spacing:-17.728000pt;}
.ws25{word-spacing:-17.670720pt;}
.ws10{word-spacing:-17.664000pt;}
.ws44{word-spacing:-17.596160pt;}
.ws26{word-spacing:-16.396800pt;}
.ws1c{word-spacing:-16.338240pt;}
.ws1a{word-spacing:-16.279680pt;}
.ws1b{word-spacing:-16.221120pt;}
.ws27{word-spacing:-16.104000pt;}
.ws49{word-spacing:-16.045440pt;}
.ws29{word-spacing:-15.986880pt;}
.ws48{word-spacing:-15.928320pt;}
.ws47{word-spacing:-15.168000pt;}
.ws46{word-spacing:-14.976000pt;}
.ws23{word-spacing:-13.878720pt;}
.wsb{word-spacing:-13.820160pt;}
.ws9{word-spacing:-13.761600pt;}
.wsa{word-spacing:-13.703040pt;}
.ws66{word-spacing:-13.584000pt;}
.ws4a{word-spacing:-13.536000pt;}
.ws2d{word-spacing:-13.440000pt;}
.ws2c{word-spacing:-13.344000pt;}
.ws2b{word-spacing:-13.200000pt;}
.ws7e{word-spacing:-11.472000pt;}
.ws7b{word-spacing:-11.328000pt;}
.ws79{word-spacing:-11.280000pt;}
.ws7c{word-spacing:-11.232000pt;}
.ws7d{word-spacing:-11.184000pt;}
.ws7a{word-spacing:-10.944000pt;}
.ws28{word-spacing:-10.408320pt;}
.ws65{word-spacing:-10.370880pt;}
.ws50{word-spacing:-3.864960pt;}
.ws4c{word-spacing:-3.513600pt;}
.ws67{word-spacing:-2.869440pt;}
.wsa0{word-spacing:-2.640000pt;}
.ws4d{word-spacing:-2.576640pt;}
.ws4e{word-spacing:-2.225280pt;}
.ws30{word-spacing:-1.932480pt;}
.ws6d{word-spacing:-1.581120pt;}
.ws94{word-spacing:-1.392000pt;}
.ws8b{word-spacing:-1.344000pt;}
.ws4f{word-spacing:-0.936960pt;}
.ws3f{word-spacing:-0.644160pt;}
.ws40{word-spacing:-0.351360pt;}
.ws74{word-spacing:-0.292800pt;}
.ws7{word-spacing:-0.234880pt;}
.ws11{word-spacing:-0.175680pt;}
.ws5{word-spacing:-0.149760pt;}
.ws72{word-spacing:-0.149120pt;}
.ws85{word-spacing:-0.144000pt;}
.ws19{word-spacing:-0.128000pt;}
.ws8{word-spacing:-0.117440pt;}
.ws24{word-spacing:-0.117120pt;}
.ws64{word-spacing:-0.096000pt;}
.ws16{word-spacing:-0.064000pt;}
.ws1e{word-spacing:-0.058560pt;}
.ws78{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.ws87{word-spacing:0.048000pt;}
.ws5d{word-spacing:0.058560pt;}
.ws17{word-spacing:0.064000pt;}
.ws12{word-spacing:0.074560pt;}
.ws14{word-spacing:0.096000pt;}
.ws39{word-spacing:0.117120pt;}
.ws42{word-spacing:0.144000pt;}
.ws3c{word-spacing:0.175680pt;}
.ws15{word-spacing:0.192000pt;}
.ws3b{word-spacing:0.234240pt;}
.ws41{word-spacing:0.240000pt;}
.ws18{word-spacing:0.256000pt;}
.ws31{word-spacing:0.292800pt;}
.ws6{word-spacing:0.352320pt;}
.ws13{word-spacing:0.372800pt;}
.ws43{word-spacing:0.576000pt;}
.ws3a{word-spacing:0.936960pt;}
.ws8e{word-spacing:1.056000pt;}
.ws8d{word-spacing:1.200000pt;}
.ws1f{word-spacing:1.288320pt;}
.ws1d{word-spacing:1.581120pt;}
.ws60{word-spacing:1.698240pt;}
.ws5c{word-spacing:1.932480pt;}
.ws5b{word-spacing:1.991040pt;}
.ws77{word-spacing:2.225280pt;}
.ws9d{word-spacing:2.352000pt;}
.ws9e{word-spacing:2.448000pt;}
.ws98{word-spacing:2.736000pt;}
.ws97{word-spacing:2.976000pt;}
.ws95{word-spacing:3.120000pt;}
.ws96{word-spacing:3.168000pt;}
.ws57{word-spacing:3.513600pt;}
.ws62{word-spacing:3.806400pt;}
.ws38{word-spacing:4.157760pt;}
.ws9a{word-spacing:4.368000pt;}
.ws99{word-spacing:4.416000pt;}
.ws61{word-spacing:4.450560pt;}
.ws34{word-spacing:4.801920pt;}
.ws33{word-spacing:5.094720pt;}
.ws5a{word-spacing:5.446080pt;}
.ws84{word-spacing:5.616000pt;}
.ws83{word-spacing:5.664000pt;}
.ws69{word-spacing:5.738880pt;}
.ws63{word-spacing:6.090240pt;}
.ws8f{word-spacing:6.912000pt;}
.ws90{word-spacing:6.960000pt;}
.ws71{word-spacing:7.027200pt;}
.ws4b{word-spacing:7.671360pt;}
.ws8c{word-spacing:7.872000pt;}
.ws5e{word-spacing:8.022720pt;}
.ws82{word-spacing:8.256000pt;}
.ws75{word-spacing:8.315520pt;}
.wsa2{word-spacing:8.880000pt;}
.ws3e{word-spacing:9.252480pt;}
.ws73{word-spacing:10.540800pt;}
.ws2e{word-spacing:10.892160pt;}
.ws55{word-spacing:11.536320pt;}
.ws9f{word-spacing:12.336000pt;}
.ws88{word-spacing:12.576000pt;}
.ws86{word-spacing:12.720000pt;}
.ws93{word-spacing:14.256000pt;}
.ws91{word-spacing:14.304000pt;}
.ws92{word-spacing:14.352000pt;}
.ws68{word-spacing:15.342720pt;}
.ws6e{word-spacing:16.982400pt;}
.ws53{word-spacing:17.568000pt;}
.ws54{word-spacing:17.919360pt;}
.wsa1{word-spacing:18.768000pt;}
.ws21{word-spacing:18.856320pt;}
.ws37{word-spacing:20.496000pt;}
.ws6f{word-spacing:24.302400pt;}
.ws7f{word-spacing:24.576000pt;}
.ws70{word-spacing:24.653760pt;}
.ws80{word-spacing:24.864000pt;}
.ws2f{word-spacing:27.816000pt;}
.ws22{word-spacing:28.167360pt;}
.ws51{word-spacing:28.460160pt;}
.ws52{word-spacing:28.811520pt;}
.ws3d{word-spacing:30.392640pt;}
.ws56{word-spacing:31.036800pt;}
.ws35{word-spacing:32.325120pt;}
.ws36{word-spacing:32.617920pt;}
.ws58{word-spacing:32.969280pt;}
.ws32{word-spacing:33.262080pt;}
.ws59{word-spacing:44.447040pt;}
.ws6b{word-spacing:50.537280pt;}
.ws76{word-spacing:50.888640pt;}
.ws9c{word-spacing:52.896000pt;}
.ws9b{word-spacing:53.040000pt;}
.ws5f{word-spacing:54.050880pt;}
.ws6a{word-spacing:55.046400pt;}
.ws81{word-spacing:66.432000pt;}
.ws20{word-spacing:69.452160pt;}
.wsa3{word-spacing:79.872000pt;}
.ws6c{word-spacing:83.857920pt;}
.ws89{word-spacing:163.632000pt;}
.ws8a{word-spacing:163.728000pt;}
._1c{margin-left:-14.815680pt;}
._b{margin-left:-13.679040pt;}
._c{margin-left:-12.630400pt;}
._a{margin-left:-5.858880pt;}
._8{margin-left:-4.860480pt;}
._7{margin-left:-3.963520pt;}
._9{margin-left:-2.499520pt;}
._2{margin-left:-1.197888pt;}
._1{width:1.056960pt;}
._11{width:2.280960pt;}
._14{width:3.747840pt;}
._15{width:4.924896pt;}
._16{width:6.195648pt;}
._12{width:8.113824pt;}
._1d{width:12.910080pt;}
._1e{width:14.254080pt;}
._19{width:15.182016pt;}
._13{width:17.743680pt;}
._10{width:20.144640pt;}
._f{width:21.225408pt;}
._d{width:28.167360pt;}
._18{width:31.271040pt;}
._e{width:33.288768pt;}
._17{width:53.933760pt;}
._1a{width:55.307328pt;}
._5{width:69.713088pt;}
._1b{width:83.799360pt;}
._0{width:168.067200pt;}
._6{width:753.129920pt;}
._3{width:888.003840pt;}
._4{width:1102.977600pt;}
.fs8{font-size:32.000000pt;}
.fs1{font-size:37.440000pt;}
.fs9{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.560000pt;}
.fs7{font-size:85.440000pt;}
.fs3{font-size:96.000000pt;}
.fs4{font-size:117.440000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.000000pt;}
.ya{bottom:19.680000pt;}
.y3{bottom:50.316080pt;}
.y11{bottom:50.321680pt;}
.y10{bottom:68.080000pt;}
.y2d{bottom:74.080000pt;}
.ya5{bottom:101.756000pt;}
.yfc{bottom:101.760000pt;}
.y72{bottom:104.320000pt;}
.y48{bottom:108.720000pt;}
.y34{bottom:111.120000pt;}
.yfb{bottom:115.524000pt;}
.ya4{bottom:119.520000pt;}
.y2b{bottom:121.032880pt;}
.y31{bottom:126.480000pt;}
.y4{bottom:127.520000pt;}
.yce{bottom:129.356000pt;}
.ya3{bottom:129.360000pt;}
.y71{bottom:131.924960pt;}
.yfa{bottom:133.360000pt;}
.ya2{bottom:143.124000pt;}
.ycd{bottom:147.120000pt;}
.y2a{bottom:149.917600pt;}
.y70{bottom:150.166400pt;}
.y2{bottom:151.756640pt;}
.ycc{bottom:156.960000pt;}
.ya1{bottom:160.960000pt;}
.y6f{bottom:168.320000pt;}
.ycb{bottom:170.724000pt;}
.ya0{bottom:171.280000pt;}
.y29{bottom:178.802320pt;}
.yca{bottom:188.560000pt;}
.y47{bottom:196.640000pt;}
.yc9{bottom:198.320000pt;}
.yf9{bottom:198.324000pt;}
.y6e{bottom:201.113680pt;}
.y28{bottom:207.687040pt;}
.yc8{bottom:212.156000pt;}
.yf8{bottom:216.160000pt;}
.y6d{bottom:217.993600pt;}
.yf7{bottom:225.924000pt;}
.y46{bottom:229.680000pt;}
.yc7{bottom:229.920000pt;}
.y6c{bottom:234.873520pt;}
.y27{bottom:236.483920pt;}
.yc6{bottom:239.756000pt;}
.yf6{bottom:243.760000pt;}
.yf5{bottom:253.524000pt;}
.yc5{bottom:257.520000pt;}
.y45{bottom:260.160000pt;}
.y6b{bottom:263.670400pt;}
.y26{bottom:265.368640pt;}
.yc4{bottom:267.840000pt;}
.yf4{bottom:271.360000pt;}
.yf3{bottom:281.120000pt;}
.y44{bottom:290.720000pt;}
.y6a{bottom:292.555120pt;}
.y25{bottom:294.253360pt;}
.yf2{bottom:294.956000pt;}
.yf1{bottom:312.720000pt;}
.y43{bottom:321.200000pt;}
.y69{bottom:321.439840pt;}
.y120{bottom:322.160000pt;}
.yf0{bottom:322.560000pt;}
.y24{bottom:323.138080pt;}
.yc{bottom:328.800000pt;}
.y9f{bottom:334.645760pt;}
.yef{bottom:336.324000pt;}
.y11f{bottom:347.148000pt;}
.y42{bottom:349.040000pt;}
.y68{bottom:350.324560pt;}
.y23{bottom:352.022800pt;}
.y9e{bottom:352.799360pt;}
.yee{bottom:354.160000pt;}
.y11e{bottom:362.748000pt;}
.yed{bottom:364.480000pt;}
.y9d{bottom:371.992400pt;}
.y41{bottom:376.960000pt;}
.y11d{bottom:378.348000pt;}
.y67{bottom:379.209280pt;}
.y22{bottom:380.907520pt;}
.yc3{bottom:390.553280pt;}
.y9c{bottom:391.185440pt;}
.y11c{bottom:401.952000pt;}
.y54{bottom:403.760000pt;}
.y40{bottom:404.800000pt;}
.y9{bottom:405.360000pt;}
.y66{bottom:408.094000pt;}
.y21{bottom:409.704400pt;}
.y9b{bottom:410.378480pt;}
.y11b{bottom:417.552000pt;}
.yc2{bottom:422.005200pt;}
.y9a{bottom:429.571520pt;}
.y53{bottom:431.600000pt;}
.y3f{bottom:432.640000pt;}
.y11a{bottom:433.152000pt;}
.y65{bottom:436.890880pt;}
.y20{bottom:438.589120pt;}
.yc1{bottom:440.246640pt;}
.yec{bottom:442.339840pt;}
.y99{bottom:447.725120pt;}
.y119{bottom:456.756000pt;}
.yc0{bottom:458.400240pt;}
.y52{bottom:459.520000pt;}
.y3e{bottom:460.480000pt;}
.yeb{bottom:460.493440pt;}
.y64{bottom:465.775600pt;}
.y98{bottom:466.918160pt;}
.y1f{bottom:467.473840pt;}
.y118{bottom:472.356000pt;}
.ybf{bottom:476.641680pt;}
.yea{bottom:478.734880pt;}
.y97{bottom:486.111200pt;}
.y51{bottom:487.360000pt;}
.y3d{bottom:488.320000pt;}
.y63{bottom:494.660320pt;}
.ybe{bottom:494.795280pt;}
.y117{bottom:495.960000pt;}
.y1e{bottom:496.358560pt;}
.ye9{bottom:496.888480pt;}
.yb{bottom:501.920000pt;}
.y96{bottom:505.304240pt;}
.y116{bottom:511.560000pt;}
.ye8{bottom:515.129920pt;}
.y50{bottom:515.200000pt;}
.y3c{bottom:516.240000pt;}
.y95{bottom:523.457840pt;}
.y62{bottom:523.545040pt;}
.ybd{bottom:523.688480pt;}
.y1d{bottom:525.243280pt;}
.y115{bottom:527.160000pt;}
.ye7{bottom:533.283520pt;}
.ybc{bottom:541.929920pt;}
.y94{bottom:542.650880pt;}
.y4f{bottom:543.040000pt;}
.y3b{bottom:544.080000pt;}
.y114{bottom:550.764000pt;}
.ye6{bottom:551.524960pt;}
.y61{bottom:552.429760pt;}
.y1c{bottom:554.128000pt;}
.ybb{bottom:560.083520pt;}
.y93{bottom:561.843920pt;}
.y113{bottom:566.364000pt;}
.ye5{bottom:569.678560pt;}
.y4e{bottom:570.880000pt;}
.y3a{bottom:571.920000pt;}
.yba{bottom:578.324960pt;}
.y92{bottom:581.036960pt;}
.y60{bottom:581.314480pt;}
.y1b{bottom:582.924880pt;}
.ye4{bottom:587.920000pt;}
.y112{bottom:589.968000pt;}
.yb9{bottom:596.478560pt;}
.y4d{bottom:598.800000pt;}
.y39{bottom:599.760000pt;}
.y35{bottom:601.360000pt;}
.y49{bottom:601.440000pt;}
.y111{bottom:605.568000pt;}
.y91{bottom:609.921680pt;}
.y5f{bottom:610.111360pt;}
.y1a{bottom:611.809600pt;}
.yb8{bottom:614.741760pt;}
.ye3{bottom:616.720000pt;}
.y110{bottom:621.168000pt;}
.y4c{bottom:626.640000pt;}
.y38{bottom:627.600000pt;}
.yb7{bottom:632.895360pt;}
.y90{bottom:638.718560pt;}
.y5e{bottom:638.996080pt;}
.y19{bottom:640.694320pt;}
.y10f{bottom:644.772000pt;}
.yb6{bottom:651.136800pt;}
.y4b{bottom:654.480000pt;}
.ye2{bottom:656.244960pt;}
.y37{bottom:656.800000pt;}
.y8f{bottom:656.971360pt;}
.y10e{bottom:660.372000pt;}
.y5d{bottom:667.880800pt;}
.y18{bottom:669.579040pt;}
.ye1{bottom:674.486400pt;}
.y8e{bottom:675.124960pt;}
.yb5{bottom:680.021520pt;}
.y4a{bottom:682.320000pt;}
.y10d{bottom:683.976000pt;}
.y36{bottom:684.640000pt;}
.y7d{bottom:688.240000pt;}
.ye0{bottom:692.638560pt;}
.y8d{bottom:693.366400pt;}
.y5c{bottom:696.765520pt;}
.yb4{bottom:698.175120pt;}
.y17{bottom:698.463760pt;}
.yf{bottom:698.634560pt;}
.y10c{bottom:699.576000pt;}
.ydf{bottom:710.884960pt;}
.y8c{bottom:711.523520pt;}
.y7c{bottom:715.759867pt;}
.yb3{bottom:716.416560pt;}
.y10b{bottom:723.180000pt;}
.y5b{bottom:725.650240pt;}
.y16{bottom:727.348480pt;}
.yde{bottom:729.038560pt;}
.y8b{bottom:729.764960pt;}
.yb2{bottom:734.570160pt;}
.y10a{bottom:738.780000pt;}
.ye{bottom:739.767920pt;}
.y7b{bottom:743.120000pt;}
.ydd{bottom:747.278560pt;}
.y8a{bottom:747.918560pt;}
.y30{bottom:751.520000pt;}
.yb1{bottom:752.811600pt;}
.y5a{bottom:754.534960pt;}
.y109{bottom:762.384000pt;}
.ydc{bottom:765.526400pt;}
.y89{bottom:766.160000pt;}
.y108{bottom:777.984000pt;}
.y7a{bottom:779.680000pt;}
.yd{bottom:780.960000pt;}
.yb0{bottom:781.696320pt;}
.y59{bottom:783.331840pt;}
.ydb{bottom:783.684960pt;}
.y88{bottom:794.960000pt;}
.yaf{bottom:799.849920pt;}
.y107{bottom:801.588000pt;}
.yda{bottom:801.926400pt;}
.y33{bottom:802.160000pt;}
.y58{bottom:812.216560pt;}
.y79{bottom:816.240000pt;}
.y106{bottom:817.188000pt;}
.yae{bottom:818.091360pt;}
.yd9{bottom:820.088480pt;}
.y87{bottom:834.579840pt;}
.yad{bottom:836.244960pt;}
.yd8{bottom:838.329920pt;}
.y105{bottom:840.792000pt;}
.y57{bottom:841.101280pt;}
.y32{bottom:844.320000pt;}
.y78{bottom:844.805440pt;}
.y86{bottom:852.733440pt;}
.yac{bottom:854.486400pt;}
.y104{bottom:856.392000pt;}
.yd7{bottom:856.483520pt;}
.y77{bottom:865.360000pt;}
.y56{bottom:869.986000pt;}
.y85{bottom:870.974880pt;}
.y103{bottom:871.992000pt;}
.yab{bottom:872.644960pt;}
.yd6{bottom:874.724960pt;}
.y8{bottom:888.399120pt;}
.y84{bottom:889.128480pt;}
.yaa{bottom:890.886400pt;}
.yd5{bottom:892.878560pt;}
.y76{bottom:894.000000pt;}
.y102{bottom:895.596000pt;}
.y55{bottom:898.870720pt;}
.y83{bottom:907.369920pt;}
.ya9{bottom:909.038560pt;}
.yd4{bottom:911.129920pt;}
.y101{bottom:911.196000pt;}
.y2c{bottom:918.640000pt;}
.y7{bottom:922.715280pt;}
.y82{bottom:925.523520pt;}
.y100{bottom:926.796000pt;}
.ya8{bottom:927.280000pt;}
.y15{bottom:927.755440pt;}
.yd3{bottom:929.283520pt;}
.y75{bottom:930.560000pt;}
.y2f{bottom:936.314880pt;}
.y81{bottom:943.764960pt;}
.yd2{bottom:947.524960pt;}
.yff{bottom:950.400000pt;}
.y6{bottom:951.600000pt;}
.ya7{bottom:955.040000pt;}
.y14{bottom:956.552320pt;}
.y80{bottom:961.918560pt;}
.y2e{bottom:962.560000pt;}
.y1{bottom:965.360000pt;}
.yd1{bottom:965.678560pt;}
.yfe{bottom:966.000000pt;}
.y74{bottom:967.120000pt;}
.ya6{bottom:977.520000pt;}
.y7f{bottom:980.160000pt;}
.yfd{bottom:981.600000pt;}
.yd0{bottom:983.920000pt;}
.y13{bottom:985.437040pt;}
.y73{bottom:1006.160000pt;}
.y7e{bottom:1008.960000pt;}
.ycf{bottom:1011.680000pt;}
.y12{bottom:1014.321760pt;}
.h3{height:12.720000pt;}
.h1b{height:27.515625pt;}
.h4{height:32.193281pt;}
.h14{height:38.905781pt;}
.h1c{height:41.273438pt;}
.h29{height:42.633281pt;}
.h2b{height:42.912000pt;}
.h6{height:44.320000pt;}
.h2a{height:45.951094pt;}
.h1d{height:45.967094pt;}
.h10{height:46.593750pt;}
.h1e{height:49.920000pt;}
.h24{height:50.313914pt;}
.h25{height:50.319674pt;}
.h27{height:50.327994pt;}
.h26{height:50.333754pt;}
.h2{height:50.353594pt;}
.h28{height:50.359354pt;}
.h21{height:50.666241pt;}
.h1a{height:50.707841pt;}
.h22{height:50.719361pt;}
.h23{height:50.732481pt;}
.h20{height:50.733441pt;}
.h19{height:50.739201pt;}
.h1f{height:50.759041pt;}
.ha{height:52.352640pt;}
.h11{height:55.031250pt;}
.h17{height:57.194240pt;}
.h16{height:57.216000pt;}
.h18{height:58.156800pt;}
.h12{height:64.111406pt;}
.h15{height:66.643200pt;}
.hc{height:66.656640pt;}
.h5{height:66.660160pt;}
.he{height:82.546875pt;}
.h7{height:85.824000pt;}
.hb{height:104.160000pt;}
.h9{height:104.991360pt;}
.hd{height:151.120000pt;}
.h8{height:353.440000pt;}
.hf{height:616.400000pt;}
.h13{height:616.480000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:81.440000pt;}
.w7{width:222.080000pt;}
.w8{width:347.040000pt;}
.w3{width:421.360000pt;}
.w5{width:444.000000pt;}
.w4{width:526.960000pt;}
.w6{width:588.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:9.600000pt;}
.xf{left:29.200000pt;}
.x13{left:45.360000pt;}
.x5{left:94.480000pt;}
.xe{left:104.560000pt;}
.x1b{left:109.120000pt;}
.x1c{left:118.320000pt;}
.x3{left:126.160000pt;}
.x1e{left:142.080000pt;}
.x12{left:161.040000pt;}
.x18{left:170.640000pt;}
.x8{left:171.840000pt;}
.x10{left:184.000000pt;}
.x9{left:203.680000pt;}
.xb{left:208.898000pt;}
.xa{left:233.120000pt;}
.x16{left:260.640000pt;}
.x6{left:277.440000pt;}
.x15{left:278.400000pt;}
.x7{left:283.520000pt;}
.x1d{left:286.480000pt;}
.x17{left:319.280000pt;}
.x1{left:321.200000pt;}
.x14{left:373.520000pt;}
.x11{left:388.960000pt;}
.x19{left:390.880000pt;}
.x1a{left:400.480000pt;}
.x2{left:425.993120pt;}
.xc{left:476.808000pt;}
.xd{left:552.492400pt;}
}




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