
    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_c6f8872c4bbf1d33329602c7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_15090866dcae59150d441d71.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a8ecbb2a60fc41ea063d104c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_1f6c2c1703476329fd01f93b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b34d882cc8507ffbe3a9cdc4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900391;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_5433bf23f0aa970e95717af1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_66290a9161b6e5c4448759c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.694336;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_69ca1c2d756203754287644c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bbe4bd4db79bac75024d489d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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);}
.v5{vertical-align:-79.920000px;}
.v1{vertical-align:-72.000000px;}
.v3{vertical-align:-20.880000px;}
.v6{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.760000px;}
.v2{vertical-align:20.880000px;}
.v4{vertical-align:27.360000px;}
.ls17{letter-spacing:-1.008000px;}
.lsd{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.720000px;}
.ls2b{letter-spacing:-0.648000px;}
.ls5{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.144000px;}
.ls25{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.178560px;}
.lsf{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.200880px;}
.ls21{letter-spacing:0.206640px;}
.ls1f{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.289440px;}
.ls8{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.432000px;}
.ls22{letter-spacing:0.454320px;}
.ls20{letter-spacing:0.479520px;}
.lsa{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.648000px;}
.ls4{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.792000px;}
.ls1a{letter-spacing:0.864000px;}
.lsb{letter-spacing:0.936000px;}
.ls13{letter-spacing:1.440000px;}
.ls27{letter-spacing:2.160000px;}
.ls12{letter-spacing:3.600000px;}
.ls18{letter-spacing:4.320000px;}
.ls11{letter-spacing:5.760000px;}
.ls1c{letter-spacing:6.480000px;}
.ls2c{letter-spacing:7.200000px;}
.ls15{letter-spacing:8.640000px;}
.ls10{letter-spacing:14.400000px;}
.ls2a{letter-spacing:15.300000px;}
.ls14{letter-spacing:16.560000px;}
.ls29{letter-spacing:25.200000px;}
.ls24{letter-spacing:46.026720px;}
.lse{letter-spacing:444.240000px;}
.ls0{letter-spacing:914.556000px;}
.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;}
}
.wsb{word-spacing:-71.784000px;}
.wsd{word-spacing:-18.936000px;}
.wse{word-spacing:-18.792000px;}
.ws8{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.wsf{word-spacing:-17.064000px;}
.ws0{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.833200px;}
.ws3{word-spacing:-13.500000px;}
.ws12{word-spacing:-12.349440px;}
.ws11{word-spacing:-12.060000px;}
.ws1{word-spacing:-10.440000px;}
.ws10{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._14{margin-left:-2.338560px;}
._0{margin-left:-1.192320px;}
._4{width:1.258560px;}
._6{width:2.614080px;}
._5{width:3.908160px;}
._7{width:5.146560px;}
._1{width:6.624000px;}
._b{width:8.101440px;}
._e{width:9.598080px;}
._3{width:10.598400px;}
._2{width:11.856960px;}
._13{width:13.023360px;}
._f{width:14.328000px;}
._11{width:15.408000px;}
._12{width:16.744320px;}
._8{width:19.010880px;}
._9{width:20.136960px;}
._a{width:21.438000px;}
._19{width:22.536000px;}
._18{width:24.240000px;}
._10{width:25.248000px;}
._d{width:26.980320px;}
._c{width:28.008000px;}
._1a{width:29.091360px;}
._17{width:30.816000px;}
._15{width:32.544000px;}
._16{width:33.840000px;}
._1b{width:35.208000px;}
._1f{width:38.832000px;}
._1d{width:40.296000px;}
._1e{width:41.402400px;}
._20{width:46.584000px;}
._21{width:47.845440px;}
._22{width:157.241760px;}
._1c{width:194.376000px;}
.fc3{color:rgb(46,151,211);}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y166{bottom:3.240000px;}
.ye1{bottom:3.420000px;}
.y106{bottom:3.600000px;}
.y145{bottom:3.615000px;}
.y66{bottom:3.765000px;}
.y73{bottom:3.771000px;}
.y75{bottom:3.780000px;}
.y7f{bottom:3.795000px;}
.yd5{bottom:4.140000px;}
.y101{bottom:4.155000px;}
.y116{bottom:4.860000px;}
.yd6{bottom:6.840000px;}
.yd7{bottom:7.200000px;}
.y8d{bottom:9.540000px;}
.ya5{bottom:10.425000px;}
.y96{bottom:11.355000px;}
.y9a{bottom:11.520000px;}
.y87{bottom:13.140000px;}
.y135{bottom:15.660000px;}
.y9f{bottom:16.380000px;}
.y91{bottom:16.920000px;}
.y131{bottom:18.525000px;}
.y126{bottom:18.540000px;}
.y129{bottom:18.720000px;}
.y117{bottom:18.900000px;}
.y113{bottom:19.080000px;}
.ydc{bottom:20.550000px;}
.y72{bottom:20.865000px;}
.y110{bottom:20.880000px;}
.y7e{bottom:20.895000px;}
.ydb{bottom:20.910000px;}
.y10d{bottom:20.925000px;}
.y65{bottom:21.045000px;}
.y104{bottom:21.060000px;}
.y169{bottom:21.075000px;}
.y14b{bottom:21.090000px;}
.y16e{bottom:21.105000px;}
.y83{bottom:21.465000px;}
.y85{bottom:21.780000px;}
.y115{bottom:22.140000px;}
.y112{bottom:22.320000px;}
.y11a{bottom:22.860000px;}
.y10b{bottom:23.055000px;}
.y100{bottom:24.675000px;}
.y8c{bottom:26.640000px;}
.ya4{bottom:27.705000px;}
.y93{bottom:28.620000px;}
.y98{bottom:28.800000px;}
.y86{bottom:30.420000px;}
.ye3{bottom:30.780000px;}
.y9d{bottom:33.660000px;}
.y8f{bottom:34.020000px;}
.y89{bottom:35.280000px;}
.ya1{bottom:36.345000px;}
.y64{bottom:38.145000px;}
.y13f{bottom:38.160000px;}
.y7d{bottom:38.175000px;}
.y16d{bottom:38.205000px;}
.y14f{bottom:38.325000px;}
.y168{bottom:38.355000px;}
.y14a{bottom:38.370000px;}
.y119{bottom:41.940000px;}
.y109{bottom:42.120000px;}
.y8b{bottom:43.920000px;}
.yfe{bottom:44.100000px;}
.ya3{bottom:44.985000px;}
.y94{bottom:45.930000px;}
.y99{bottom:46.080000px;}
.yd9{bottom:48.420000px;}
.y130{bottom:50.925000px;}
.y9e{bottom:50.940000px;}
.y90{bottom:51.300000px;}
.y71{bottom:55.425000px;}
.y13e{bottom:55.440000px;}
.y7c{bottom:55.455000px;}
.y63{bottom:55.470000px;}
.y16c{bottom:55.485000px;}
.y149{bottom:55.650000px;}
.y8a{bottom:61.200000px;}
.ya2{bottom:62.085000px;}
.y70{bottom:72.705000px;}
.y13d{bottom:72.720000px;}
.y7b{bottom:72.735000px;}
.y62{bottom:72.750000px;}
.y16b{bottom:72.765000px;}
.y69{bottom:81.345000px;}
.y12f{bottom:83.190000px;}
.y6f{bottom:89.985000px;}
.y13c{bottom:90.000000px;}
.y7a{bottom:90.015000px;}
.y5c{bottom:90.030000px;}
.y144{bottom:90.045000px;}
.y68{bottom:98.625000px;}
.y143{bottom:107.145000px;}
.y6e{bottom:107.265000px;}
.y13b{bottom:107.280000px;}
.y79{bottom:107.295000px;}
.y61{bottom:107.310000px;}
.y151{bottom:112.860000px;}
.y57{bottom:115.740000px;}
.y163{bottom:116.100000px;}
.yab{bottom:119.160000px;}
.yef{bottom:120.600000px;}
.y35{bottom:120.780000px;}
.yd0{bottom:122.580000px;}
.y74{bottom:122.940000px;}
.y6d{bottom:124.365000px;}
.y13a{bottom:124.380000px;}
.y77{bottom:124.410000px;}
.y142{bottom:124.425000px;}
.y14e{bottom:124.545000px;}
.y60{bottom:124.590000px;}
.y190{bottom:126.180000px;}
.ybc{bottom:134.856000px;}
.yfc{bottom:139.716000px;}
.y67{bottom:140.985000px;}
.y6c{bottom:141.645000px;}
.y5f{bottom:141.690000px;}
.y139{bottom:141.705000px;}
.y14d{bottom:141.825000px;}
.y148{bottom:141.870000px;}
.y56{bottom:146.736000px;}
.y34{bottom:148.356000px;}
.yaa{bottom:150.330000px;}
.ycf{bottom:153.570000px;}
.y150{bottom:154.290000px;}
.y6b{bottom:158.925000px;}
.y5e{bottom:158.970000px;}
.y138{bottom:158.985000px;}
.y147{bottom:159.150000px;}
.y181{bottom:159.510000px;}
.yee{bottom:162.030000px;}
.y162{bottom:164.370000px;}
.y124{bottom:165.810000px;}
.y18f{bottom:167.250000px;}
.y18d{bottom:167.430000px;}
.yfb{bottom:170.850000px;}
.y33{bottom:171.570000px;}
.y14c{bottom:171.585000px;}
.y6a{bottom:176.205000px;}
.y5d{bottom:176.250000px;}
.y55{bottom:177.870000px;}
.ya9{bottom:181.290000px;}
.yce{bottom:184.710000px;}
.y157{bottom:187.950000px;}
.y180{bottom:190.470000px;}
.y32{bottom:194.790000px;}
.y123{bottom:196.770000px;}
.y18c{bottom:198.570000px;}
.yfa{bottom:201.810000px;}
.yed{bottom:203.430000px;}
.y54{bottom:208.830000px;}
.y18e{bottom:209.010000px;}
.ya8{bottom:212.430000px;}
.y161{bottom:212.610000px;}
.ycd{bottom:215.670000px;}
.y31{bottom:221.430000px;}
.y17f{bottom:221.610000px;}
.y122{bottom:227.910000px;}
.y156{bottom:229.350000px;}
.y18b{bottom:229.530000px;}
.yf9{bottom:232.950000px;}
.y53{bottom:239.970000px;}
.y30{bottom:242.670000px;}
.ya7{bottom:243.390000px;}
.yec{bottom:244.830000px;}
.ycc{bottom:246.810000px;}
.y2f{bottom:249.510000px;}
.y17e{bottom:252.570000px;}
.y121{bottom:258.870000px;}
.y18a{bottom:260.490000px;}
.y160{bottom:261.030000px;}
.y2e{bottom:263.370000px;}
.yf8{bottom:263.910000px;}
.y155{bottom:270.750000px;}
.y52{bottom:270.930000px;}
.ycb{bottom:277.770000px;}
.y17d{bottom:283.710000px;}
.ya6{bottom:284.970000px;}
.yeb{bottom:286.230000px;}
.y189{bottom:291.630000px;}
.yf7{bottom:295.050000px;}
.y120{bottom:300.450000px;}
.y51{bottom:301.890000px;}
.ya0{bottom:301.905000px;}
.y2d{bottom:302.070000px;}
.yca{bottom:308.910000px;}
.y15f{bottom:309.270000px;}
.y154{bottom:312.510000px;}
.y17c{bottom:314.670000px;}
.y12e{bottom:318.105000px;}
.y2c{bottom:322.410000px;}
.y188{bottom:322.590000px;}
.yf6{bottom:326.010000px;}
.yea{bottom:327.630000px;}
.y5b{bottom:331.425000px;}
.y50{bottom:333.030000px;}
.yc9{bottom:339.870000px;}
.y2b{bottom:341.310000px;}
.y17b{bottom:345.810000px;}
.y187{bottom:353.730000px;}
.y153{bottom:353.910000px;}
.yf5{bottom:357.150000px;}
.y15e{bottom:357.510000px;}
.y2a{bottom:360.390000px;}
.y146{bottom:362.025000px;}
.y4f{bottom:363.990000px;}
.ye9{bottom:369.030000px;}
.yc8{bottom:371.010000px;}
.y17a{bottom:376.770000px;}
.y29{bottom:379.290000px;}
.y186{bottom:384.735000px;}
.y9c{bottom:384.915000px;}
.yf4{bottom:388.155000px;}
.y4e{bottom:395.175000px;}
.y152{bottom:395.355000px;}
.y28{bottom:398.415000px;}
.yc7{bottom:402.015000px;}
.y15d{bottom:405.975000px;}
.y179{bottom:407.955000px;}
.y12d{bottom:414.975000px;}
.y185{bottom:415.875000px;}
.y27{bottom:417.315000px;}
.yf3{bottom:419.295000px;}
.y4d{bottom:426.135000px;}
.ye8{bottom:430.455000px;}
.y26{bottom:436.215000px;}
.ybb{bottom:436.755000px;}
.y178{bottom:438.915000px;}
.yc6{bottom:443.595000px;}
.y184{bottom:446.835000px;}
.y12c{bottom:447.195000px;}
.ye7{bottom:447.735000px;}
.yf2{bottom:449.895000px;}
.y15c{bottom:454.215000px;}
.y25{bottom:455.295000px;}
.y4c{bottom:457.275000px;}
.ye2{bottom:461.955000px;}
.y9b{bottom:462.675000px;}
.y177{bottom:470.055000px;}
.y24{bottom:474.195000px;}
.y183{bottom:477.615000px;}
.yba{bottom:478.155000px;}
.y12b{bottom:479.415000px;}
.ye6{bottom:479.955000px;}
.yc5{bottom:484.995000px;}
.y4b{bottom:488.235000px;}
.yf1{bottom:491.835000px;}
.y23{bottom:493.275000px;}
.ye5{bottom:497.955000px;}
.y176{bottom:501.015000px;}
.y15b{bottom:502.455000px;}
.y12a{bottom:511.635000px;}
.y22{bottom:512.175000px;}
.ye4{bottom:515.955000px;}
.y182{bottom:519.195000px;}
.y4a{bottom:519.375000px;}
.yb9{bottom:519.555000px;}
.yc4{bottom:526.395000px;}
.y97{bottom:530.895000px;}
.y21{bottom:531.075000px;}
.y175{bottom:532.155000px;}
.yf0{bottom:532.875000px;}
.ye0{bottom:533.955000px;}
.y128{bottom:543.855000px;}
.y5a{bottom:546.735000px;}
.y11d{bottom:549.435000px;}
.y20{bottom:550.155000px;}
.y49{bottom:550.335000px;}
.y15a{bottom:550.875000px;}
.yd8{bottom:551.955000px;}
.y141{bottom:552.660000px;}
.y140{bottom:552.675000px;}
.yb8{bottom:560.955000px;}
.y174{bottom:563.115000px;}
.yc3{bottom:567.795000px;}
.y1f{bottom:569.055000px;}
.ydf{bottom:569.955000px;}
.y11c{bottom:570.135000px;}
.y127{bottom:576.255000px;}
.y48{bottom:581.475000px;}
.y59{bottom:584.355000px;}
.yde{bottom:587.955000px;}
.y1e{bottom:588.135000px;}
.y173{bottom:593.895000px;}
.y95{bottom:598.920000px;}
.y92{bottom:598.935000px;}
.y159{bottom:599.115000px;}
.yb7{bottom:602.355000px;}
.y11b{bottom:604.695000px;}
.ydd{bottom:605.955000px;}
.y1d{bottom:607.035000px;}
.yc2{bottom:609.195000px;}
.y125{bottom:609.915000px;}
.y47{bottom:612.435000px;}
.yda{bottom:623.955000px;}
.y1c{bottom:625.935000px;}
.y172{bottom:635.505000px;}
.y118{bottom:640.005000px;}
.y46{bottom:643.605000px;}
.yb6{bottom:643.785000px;}
.y1b{bottom:645.045000px;}
.yc1{bottom:650.625000px;}
.y171{bottom:652.785000px;}
.yd4{bottom:659.265000px;}
.y1a{bottom:665.745000px;}
.y8e{bottom:666.825000px;}
.y45{bottom:674.565000px;}
.yd3{bottom:684.825000px;}
.yb5{bottom:685.185000px;}
.y19{bottom:686.805000px;}
.yc0{bottom:692.025000px;}
.y11f{bottom:695.445000px;}
.y114{bottom:697.605000px;}
.y44{bottom:705.705000px;}
.y18{bottom:707.505000px;}
.y158{bottom:726.225000px;}
.yb4{bottom:726.585000px;}
.y17{bottom:728.205000px;}
.ybf{bottom:729.285000px;}
.y111{bottom:733.245000px;}
.y43{bottom:736.665000px;}
.y11e{bottom:736.845000px;}
.y137{bottom:743.145000px;}
.y136{bottom:743.160000px;}
.y88{bottom:745.665000px;}
.y16{bottom:748.905000px;}
.y170{bottom:757.005000px;}
.y16f{bottom:757.020000px;}
.yd2{bottom:767.625000px;}
.y42{bottom:767.805000px;}
.yb3{bottom:767.985000px;}
.y15{bottom:769.065000px;}
.y14{bottom:787.245000px;}
.yac{bottom:798.405000px;}
.y41{bottom:798.765000px;}
.y10f{bottom:803.445000px;}
.yb2{bottom:809.385000px;}
.y13{bottom:810.465000px;}
.y12{bottom:823.425000px;}
.y84{bottom:827.025000px;}
.y40{bottom:829.905000px;}
.y10e{bottom:838.005000px;}
.y11{bottom:846.645000px;}
.yb1{bottom:850.785000px;}
.y10{bottom:859.605000px;}
.y3f{bottom:860.865000px;}
.y10c{bottom:872.565000px;}
.yf{bottom:877.785000px;}
.y16a{bottom:878.505000px;}
.y82{bottom:881.025000px;}
.y3e{bottom:892.050000px;}
.yb0{bottom:892.230000px;}
.ye{bottom:895.830000px;}
.y10a{bottom:907.695000px;}
.y108{bottom:907.710000px;}
.yd{bottom:914.010000px;}
.y3d{bottom:923.010000px;}
.yc{bottom:932.190000px;}
.yaf{bottom:933.630000px;}
.yb{bottom:950.190000px;}
.y3c{bottom:954.150000px;}
.y81{bottom:959.370000px;}
.y167{bottom:965.475000px;}
.y107{bottom:965.490000px;}
.ya{bottom:968.370000px;}
.yae{bottom:975.030000px;}
.y105{bottom:982.770000px;}
.y3b{bottom:985.110000px;}
.y9{bottom:986.370000px;}
.y134{bottom:988.710000px;}
.y103{bottom:999.870000px;}
.y80{bottom:1000.770000px;}
.y8{bottom:1004.550000px;}
.y3a{bottom:1016.250000px;}
.yad{bottom:1016.430000px;}
.y78{bottom:1018.035000px;}
.y76{bottom:1018.050000px;}
.y133{bottom:1030.110000px;}
.y102{bottom:1035.150000px;}
.y165{bottom:1035.330000px;}
.y7{bottom:1040.730000px;}
.yd1{bottom:1046.850000px;}
.y39{bottom:1047.210000px;}
.yff{bottom:1054.935000px;}
.yfd{bottom:1054.950000px;}
.y164{bottom:1057.470000px;}
.ybe{bottom:1057.830000px;}
.y6{bottom:1059.090000px;}
.y132{bottom:1075.290000px;}
.y5{bottom:1078.170000px;}
.y38{bottom:1078.350000px;}
.y4{bottom:1098.870000px;}
.ybd{bottom:1099.230000px;}
.y37{bottom:1109.310000px;}
.y3{bottom:1119.570000px;}
.y36{bottom:1140.120000px;}
.y58{bottom:1140.480000px;}
.y1{bottom:1140.660000px;}
.y2{bottom:1147.500000px;}
.h2b{height:17.085000px;}
.h25{height:17.265000px;}
.h10{height:17.316000px;}
.h29{height:19.065000px;}
.h35{height:20.685000px;}
.h21{height:20.700000px;}
.h3c{height:29.145000px;}
.h37{height:32.205000px;}
.h36{height:32.250000px;}
.h39{height:32.385000px;}
.h30{height:34.380000px;}
.h2e{height:34.402500px;}
.h24{height:34.410000px;}
.h2a{height:34.545000px;}
.h2f{height:34.560000px;}
.h32{height:35.640000px;}
.h31{height:35.820000px;}
.h7{height:41.304375px;}
.h4{height:47.344922px;}
.h14{height:52.762500px;}
.ha{height:52.998047px;}
.h15{height:53.280000px;}
.h33{height:56.875500px;}
.h34{height:56.880000px;}
.h2c{height:57.051000px;}
.h2d{height:57.060000px;}
.h3e{height:58.621992px;}
.hb{height:58.651172px;}
.h3d{height:59.019609px;}
.h38{height:59.038594px;}
.h22{height:60.226875px;}
.h27{height:60.291000px;}
.h28{height:60.300000px;}
.h3f{height:61.423863px;}
.h6{height:62.184375px;}
.h1f{height:64.546875px;}
.h9{height:65.010937px;}
.h5{height:66.757500px;}
.h18{height:66.990000px;}
.h19{height:66.996000px;}
.h1a{height:67.005000px;}
.h1b{height:67.305000px;}
.h41{height:68.925000px;}
.h42{height:68.931000px;}
.h43{height:68.940000px;}
.h20{height:70.628906px;}
.h8{height:70.664062px;}
.h26{height:71.265000px;}
.h2{height:72.562500px;}
.h49{height:74.004654px;}
.h1e{height:74.704922px;}
.h1c{height:77.025000px;}
.h17{height:77.940000px;}
.h16{height:80.460000px;}
.h1d{height:82.281000px;}
.h3b{height:84.898125px;}
.h44{height:86.242500px;}
.h3a{height:96.862500px;}
.h48{height:103.495500px;}
.h47{height:103.500000px;}
.h23{height:106.410000px;}
.h45{height:120.775500px;}
.h46{height:120.780000px;}
.h11{height:137.910000px;}
.h12{height:137.916000px;}
.h13{height:137.925000px;}
.he{height:189.705000px;}
.hf{height:189.720000px;}
.hc{height:189.735000px;}
.hd{height:189.750000px;}
.h40{height:189.765000px;}
.h1{height:1263.000000px;}
.h3{height:1263.044910px;}
.h0{height:1263.060000px;}
.w1d{width:62.985000px;}
.w24{width:62.995500px;}
.w25{width:63.000000px;}
.w1c{width:63.396000px;}
.w23{width:63.405000px;}
.w20{width:65.325000px;}
.w29{width:65.331000px;}
.w2a{width:65.340000px;}
.w1e{width:73.425000px;}
.w26{width:73.435500px;}
.w27{width:73.440000px;}
.w22{width:74.155500px;}
.w1b{width:74.160000px;}
.w1f{width:74.721000px;}
.w28{width:74.722500px;}
.w9{width:88.005000px;}
.we{width:93.621000px;}
.wd{width:96.645000px;}
.wb{width:109.296000px;}
.w2b{width:146.331000px;}
.w30{width:146.340000px;}
.w13{width:147.411000px;}
.w17{width:147.420000px;}
.w16{width:159.495000px;}
.w15{width:170.130000px;}
.w19{width:170.145000px;}
.wa{width:174.255000px;}
.w14{width:181.455000px;}
.w18{width:181.470000px;}
.wc{width:190.275000px;}
.w3{width:210.255000px;}
.w6{width:210.270000px;}
.w2c{width:233.880000px;}
.w2e{width:233.895000px;}
.w1a{width:239.961000px;}
.w21{width:239.970000px;}
.w2d{width:273.795000px;}
.w2f{width:273.810000px;}
.w11{width:299.541000px;}
.w12{width:299.775000px;}
.w7{width:324.201000px;}
.w8{width:324.240000px;}
.w4{width:438.180000px;}
.w5{width:438.195000px;}
.wf{width:468.240000px;}
.w10{width:600.030000px;}
.w2{width:892.417500px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x16{left:8.091000px;}
.x2d{left:14.745000px;}
.x3c{left:19.830000px;}
.x3a{left:23.430000px;}
.x2a{left:26.805000px;}
.x5a{left:28.611000px;}
.x2b{left:31.125000px;}
.x25{left:34.740000px;}
.x30{left:39.270000px;}
.x2f{left:40.665000px;}
.x58{left:42.645000px;}
.x2e{left:47.190000px;}
.x57{left:48.585000px;}
.x32{left:50.970000px;}
.x59{left:52.725000px;}
.x29{left:54.750000px;}
.x44{left:60.330000px;}
.x31{left:62.490000px;}
.x3f{left:64.110000px;}
.x27{left:65.685000px;}
.x54{left:66.810000px;}
.x41{left:67.890000px;}
.x43{left:71.310000px;}
.x42{left:73.110000px;}
.x28{left:74.550000px;}
.x3e{left:76.530000px;}
.x40{left:81.390000px;}
.x56{left:89.085000px;}
.x47{left:111.645000px;}
.x15{left:122.085000px;}
.x7{left:127.656000px;}
.x52{left:130.716000px;}
.x45{left:131.796000px;}
.x11{left:133.776000px;}
.x19{left:140.025000px;}
.x1c{left:141.516000px;}
.x35{left:146.385000px;}
.x4f{left:149.436000px;}
.x20{left:151.590000px;}
.x12{left:154.650000px;}
.x22{left:165.465000px;}
.x1{left:168.510000px;}
.x1b{left:173.550000px;}
.x1f{left:177.510000px;}
.x13{left:180.750000px;}
.xf{left:194.970000px;}
.x5c{left:208.650000px;}
.x38{left:223.050000px;}
.x37{left:225.390000px;}
.x33{left:234.030000px;}
.x5b{left:235.650000px;}
.x36{left:238.530000px;}
.xd{left:242.310000px;}
.x23{left:253.485000px;}
.x53{left:257.985000px;}
.x39{left:275.085000px;}
.x5d{left:276.150000px;}
.x46{left:279.390000px;}
.x21{left:289.695000px;}
.x18{left:291.675000px;}
.x14{left:294.015000px;}
.x1a{left:299.955000px;}
.x6{left:322.995000px;}
.x34{left:330.735000px;}
.x17{left:332.355000px;}
.x5{left:338.115000px;}
.x1d{left:340.455000px;}
.x10{left:343.695000px;}
.x48{left:351.615000px;}
.xc{left:355.395000px;}
.x4e{left:362.595000px;}
.xa{left:374.295000px;}
.xe{left:377.175000px;}
.x50{left:385.095000px;}
.x9{left:387.255000px;}
.x8{left:389.415000px;}
.xb{left:395.535000px;}
.x51{left:413.715000px;}
.x49{left:425.775000px;}
.x24{left:427.755000px;}
.x4{left:446.295000px;}
.x3b{left:456.555000px;}
.x4a{left:489.180000px;}
.x55{left:491.880000px;}
.x26{left:537.060000px;}
.x4b{left:552.180000px;}
.x4c{left:625.620000px;}
.x3d{left:626.700000px;}
.x2c{left:633.720000px;}
.x1e{left:646.125000px;}
.x4d{left:700.350000px;}
.x2{left:718.147500px;}
.x3{left:724.290000px;}
@media print{
.v5{vertical-align:-71.040000pt;}
.v1{vertical-align:-64.000000pt;}
.v3{vertical-align:-18.560000pt;}
.v6{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.120000pt;}
.v2{vertical-align:18.560000pt;}
.v4{vertical-align:24.320000pt;}
.ls17{letter-spacing:-0.896000pt;}
.lsd{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls2b{letter-spacing:-0.576000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls25{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.158720pt;}
.lsf{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.178560pt;}
.ls21{letter-spacing:0.183680pt;}
.ls1f{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.257280pt;}
.ls8{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.384000pt;}
.ls22{letter-spacing:0.403840pt;}
.ls20{letter-spacing:0.426240pt;}
.lsa{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.576000pt;}
.ls4{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.704000pt;}
.ls1a{letter-spacing:0.768000pt;}
.lsb{letter-spacing:0.832000pt;}
.ls13{letter-spacing:1.280000pt;}
.ls27{letter-spacing:1.920000pt;}
.ls12{letter-spacing:3.200000pt;}
.ls18{letter-spacing:3.840000pt;}
.ls11{letter-spacing:5.120000pt;}
.ls1c{letter-spacing:5.760000pt;}
.ls2c{letter-spacing:6.400000pt;}
.ls15{letter-spacing:7.680000pt;}
.ls10{letter-spacing:12.800000pt;}
.ls2a{letter-spacing:13.600000pt;}
.ls14{letter-spacing:14.720000pt;}
.ls29{letter-spacing:22.400000pt;}
.ls24{letter-spacing:40.912640pt;}
.lse{letter-spacing:394.880000pt;}
.ls0{letter-spacing:812.938667pt;}
.wsb{word-spacing:-63.808000pt;}
.wsd{word-spacing:-16.832000pt;}
.wse{word-spacing:-16.704000pt;}
.ws8{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsf{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.185067pt;}
.ws3{word-spacing:-12.000000pt;}
.ws12{word-spacing:-10.977280pt;}
.ws11{word-spacing:-10.720000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws10{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._14{margin-left:-2.078720pt;}
._0{margin-left:-1.059840pt;}
._4{width:1.118720pt;}
._6{width:2.323627pt;}
._5{width:3.473920pt;}
._7{width:4.574720pt;}
._1{width:5.888000pt;}
._b{width:7.201280pt;}
._e{width:8.531627pt;}
._3{width:9.420800pt;}
._2{width:10.539520pt;}
._13{width:11.576320pt;}
._f{width:12.736000pt;}
._11{width:13.696000pt;}
._12{width:14.883840pt;}
._8{width:16.898560pt;}
._9{width:17.899520pt;}
._a{width:19.056000pt;}
._19{width:20.032000pt;}
._18{width:21.546667pt;}
._10{width:22.442667pt;}
._d{width:23.982507pt;}
._c{width:24.896000pt;}
._1a{width:25.858987pt;}
._17{width:27.392000pt;}
._15{width:28.928000pt;}
._16{width:30.080000pt;}
._1b{width:31.296000pt;}
._1f{width:34.517333pt;}
._1d{width:35.818667pt;}
._1e{width:36.802133pt;}
._20{width:41.408000pt;}
._21{width:42.529280pt;}
._22{width:139.770453pt;}
._1c{width:172.778667pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y166{bottom:2.880000pt;}
.ye1{bottom:3.040000pt;}
.y106{bottom:3.200000pt;}
.y145{bottom:3.213333pt;}
.y66{bottom:3.346667pt;}
.y73{bottom:3.352000pt;}
.y75{bottom:3.360000pt;}
.y7f{bottom:3.373333pt;}
.yd5{bottom:3.680000pt;}
.y101{bottom:3.693333pt;}
.y116{bottom:4.320000pt;}
.yd6{bottom:6.080000pt;}
.yd7{bottom:6.400000pt;}
.y8d{bottom:8.480000pt;}
.ya5{bottom:9.266667pt;}
.y96{bottom:10.093333pt;}
.y9a{bottom:10.240000pt;}
.y87{bottom:11.680000pt;}
.y135{bottom:13.920000pt;}
.y9f{bottom:14.560000pt;}
.y91{bottom:15.040000pt;}
.y131{bottom:16.466667pt;}
.y126{bottom:16.480000pt;}
.y129{bottom:16.640000pt;}
.y117{bottom:16.800000pt;}
.y113{bottom:16.960000pt;}
.ydc{bottom:18.266667pt;}
.y72{bottom:18.546667pt;}
.y110{bottom:18.560000pt;}
.y7e{bottom:18.573333pt;}
.ydb{bottom:18.586667pt;}
.y10d{bottom:18.600000pt;}
.y65{bottom:18.706667pt;}
.y104{bottom:18.720000pt;}
.y169{bottom:18.733333pt;}
.y14b{bottom:18.746667pt;}
.y16e{bottom:18.760000pt;}
.y83{bottom:19.080000pt;}
.y85{bottom:19.360000pt;}
.y115{bottom:19.680000pt;}
.y112{bottom:19.840000pt;}
.y11a{bottom:20.320000pt;}
.y10b{bottom:20.493333pt;}
.y100{bottom:21.933333pt;}
.y8c{bottom:23.680000pt;}
.ya4{bottom:24.626667pt;}
.y93{bottom:25.440000pt;}
.y98{bottom:25.600000pt;}
.y86{bottom:27.040000pt;}
.ye3{bottom:27.360000pt;}
.y9d{bottom:29.920000pt;}
.y8f{bottom:30.240000pt;}
.y89{bottom:31.360000pt;}
.ya1{bottom:32.306667pt;}
.y64{bottom:33.906667pt;}
.y13f{bottom:33.920000pt;}
.y7d{bottom:33.933333pt;}
.y16d{bottom:33.960000pt;}
.y14f{bottom:34.066667pt;}
.y168{bottom:34.093333pt;}
.y14a{bottom:34.106667pt;}
.y119{bottom:37.280000pt;}
.y109{bottom:37.440000pt;}
.y8b{bottom:39.040000pt;}
.yfe{bottom:39.200000pt;}
.ya3{bottom:39.986667pt;}
.y94{bottom:40.826667pt;}
.y99{bottom:40.960000pt;}
.yd9{bottom:43.040000pt;}
.y130{bottom:45.266667pt;}
.y9e{bottom:45.280000pt;}
.y90{bottom:45.600000pt;}
.y71{bottom:49.266667pt;}
.y13e{bottom:49.280000pt;}
.y7c{bottom:49.293333pt;}
.y63{bottom:49.306667pt;}
.y16c{bottom:49.320000pt;}
.y149{bottom:49.466667pt;}
.y8a{bottom:54.400000pt;}
.ya2{bottom:55.186667pt;}
.y70{bottom:64.626667pt;}
.y13d{bottom:64.640000pt;}
.y7b{bottom:64.653333pt;}
.y62{bottom:64.666667pt;}
.y16b{bottom:64.680000pt;}
.y69{bottom:72.306667pt;}
.y12f{bottom:73.946667pt;}
.y6f{bottom:79.986667pt;}
.y13c{bottom:80.000000pt;}
.y7a{bottom:80.013333pt;}
.y5c{bottom:80.026667pt;}
.y144{bottom:80.040000pt;}
.y68{bottom:87.666667pt;}
.y143{bottom:95.240000pt;}
.y6e{bottom:95.346667pt;}
.y13b{bottom:95.360000pt;}
.y79{bottom:95.373333pt;}
.y61{bottom:95.386667pt;}
.y151{bottom:100.320000pt;}
.y57{bottom:102.880000pt;}
.y163{bottom:103.200000pt;}
.yab{bottom:105.920000pt;}
.yef{bottom:107.200000pt;}
.y35{bottom:107.360000pt;}
.yd0{bottom:108.960000pt;}
.y74{bottom:109.280000pt;}
.y6d{bottom:110.546667pt;}
.y13a{bottom:110.560000pt;}
.y77{bottom:110.586667pt;}
.y142{bottom:110.600000pt;}
.y14e{bottom:110.706667pt;}
.y60{bottom:110.746667pt;}
.y190{bottom:112.160000pt;}
.ybc{bottom:119.872000pt;}
.yfc{bottom:124.192000pt;}
.y67{bottom:125.320000pt;}
.y6c{bottom:125.906667pt;}
.y5f{bottom:125.946667pt;}
.y139{bottom:125.960000pt;}
.y14d{bottom:126.066667pt;}
.y148{bottom:126.106667pt;}
.y56{bottom:130.432000pt;}
.y34{bottom:131.872000pt;}
.yaa{bottom:133.626667pt;}
.ycf{bottom:136.506667pt;}
.y150{bottom:137.146667pt;}
.y6b{bottom:141.266667pt;}
.y5e{bottom:141.306667pt;}
.y138{bottom:141.320000pt;}
.y147{bottom:141.466667pt;}
.y181{bottom:141.786667pt;}
.yee{bottom:144.026667pt;}
.y162{bottom:146.106667pt;}
.y124{bottom:147.386667pt;}
.y18f{bottom:148.666667pt;}
.y18d{bottom:148.826667pt;}
.yfb{bottom:151.866667pt;}
.y33{bottom:152.506667pt;}
.y14c{bottom:152.520000pt;}
.y6a{bottom:156.626667pt;}
.y5d{bottom:156.666667pt;}
.y55{bottom:158.106667pt;}
.ya9{bottom:161.146667pt;}
.yce{bottom:164.186667pt;}
.y157{bottom:167.066667pt;}
.y180{bottom:169.306667pt;}
.y32{bottom:173.146667pt;}
.y123{bottom:174.906667pt;}
.y18c{bottom:176.506667pt;}
.yfa{bottom:179.386667pt;}
.yed{bottom:180.826667pt;}
.y54{bottom:185.626667pt;}
.y18e{bottom:185.786667pt;}
.ya8{bottom:188.826667pt;}
.y161{bottom:188.986667pt;}
.ycd{bottom:191.706667pt;}
.y31{bottom:196.826667pt;}
.y17f{bottom:196.986667pt;}
.y122{bottom:202.586667pt;}
.y156{bottom:203.866667pt;}
.y18b{bottom:204.026667pt;}
.yf9{bottom:207.066667pt;}
.y53{bottom:213.306667pt;}
.y30{bottom:215.706667pt;}
.ya7{bottom:216.346667pt;}
.yec{bottom:217.626667pt;}
.ycc{bottom:219.386667pt;}
.y2f{bottom:221.786667pt;}
.y17e{bottom:224.506667pt;}
.y121{bottom:230.106667pt;}
.y18a{bottom:231.546667pt;}
.y160{bottom:232.026667pt;}
.y2e{bottom:234.106667pt;}
.yf8{bottom:234.586667pt;}
.y155{bottom:240.666667pt;}
.y52{bottom:240.826667pt;}
.ycb{bottom:246.906667pt;}
.y17d{bottom:252.186667pt;}
.ya6{bottom:253.306667pt;}
.yeb{bottom:254.426667pt;}
.y189{bottom:259.226667pt;}
.yf7{bottom:262.266667pt;}
.y120{bottom:267.066667pt;}
.y51{bottom:268.346667pt;}
.ya0{bottom:268.360000pt;}
.y2d{bottom:268.506667pt;}
.yca{bottom:274.586667pt;}
.y15f{bottom:274.906667pt;}
.y154{bottom:277.786667pt;}
.y17c{bottom:279.706667pt;}
.y12e{bottom:282.760000pt;}
.y2c{bottom:286.586667pt;}
.y188{bottom:286.746667pt;}
.yf6{bottom:289.786667pt;}
.yea{bottom:291.226667pt;}
.y5b{bottom:294.600000pt;}
.y50{bottom:296.026667pt;}
.yc9{bottom:302.106667pt;}
.y2b{bottom:303.386667pt;}
.y17b{bottom:307.386667pt;}
.y187{bottom:314.426667pt;}
.y153{bottom:314.586667pt;}
.yf5{bottom:317.466667pt;}
.y15e{bottom:317.786667pt;}
.y2a{bottom:320.346667pt;}
.y146{bottom:321.800000pt;}
.y4f{bottom:323.546667pt;}
.ye9{bottom:328.026667pt;}
.yc8{bottom:329.786667pt;}
.y17a{bottom:334.906667pt;}
.y29{bottom:337.146667pt;}
.y186{bottom:341.986667pt;}
.y9c{bottom:342.146667pt;}
.yf4{bottom:345.026667pt;}
.y4e{bottom:351.266667pt;}
.y152{bottom:351.426667pt;}
.y28{bottom:354.146667pt;}
.yc7{bottom:357.346667pt;}
.y15d{bottom:360.866667pt;}
.y179{bottom:362.626667pt;}
.y12d{bottom:368.866667pt;}
.y185{bottom:369.666667pt;}
.y27{bottom:370.946667pt;}
.yf3{bottom:372.706667pt;}
.y4d{bottom:378.786667pt;}
.ye8{bottom:382.626667pt;}
.y26{bottom:387.746667pt;}
.ybb{bottom:388.226667pt;}
.y178{bottom:390.146667pt;}
.yc6{bottom:394.306667pt;}
.y184{bottom:397.186667pt;}
.y12c{bottom:397.506667pt;}
.ye7{bottom:397.986667pt;}
.yf2{bottom:399.906667pt;}
.y15c{bottom:403.746667pt;}
.y25{bottom:404.706667pt;}
.y4c{bottom:406.466667pt;}
.ye2{bottom:410.626667pt;}
.y9b{bottom:411.266667pt;}
.y177{bottom:417.826667pt;}
.y24{bottom:421.506667pt;}
.y183{bottom:424.546667pt;}
.yba{bottom:425.026667pt;}
.y12b{bottom:426.146667pt;}
.ye6{bottom:426.626667pt;}
.yc5{bottom:431.106667pt;}
.y4b{bottom:433.986667pt;}
.yf1{bottom:437.186667pt;}
.y23{bottom:438.466667pt;}
.ye5{bottom:442.626667pt;}
.y176{bottom:445.346667pt;}
.y15b{bottom:446.626667pt;}
.y12a{bottom:454.786667pt;}
.y22{bottom:455.266667pt;}
.ye4{bottom:458.626667pt;}
.y182{bottom:461.506667pt;}
.y4a{bottom:461.666667pt;}
.yb9{bottom:461.826667pt;}
.yc4{bottom:467.906667pt;}
.y97{bottom:471.906667pt;}
.y21{bottom:472.066667pt;}
.y175{bottom:473.026667pt;}
.yf0{bottom:473.666667pt;}
.ye0{bottom:474.626667pt;}
.y128{bottom:483.426667pt;}
.y5a{bottom:485.986667pt;}
.y11d{bottom:488.386667pt;}
.y20{bottom:489.026667pt;}
.y49{bottom:489.186667pt;}
.y15a{bottom:489.666667pt;}
.yd8{bottom:490.626667pt;}
.y141{bottom:491.253333pt;}
.y140{bottom:491.266667pt;}
.yb8{bottom:498.626667pt;}
.y174{bottom:500.546667pt;}
.yc3{bottom:504.706667pt;}
.y1f{bottom:505.826667pt;}
.ydf{bottom:506.626667pt;}
.y11c{bottom:506.786667pt;}
.y127{bottom:512.226667pt;}
.y48{bottom:516.866667pt;}
.y59{bottom:519.426667pt;}
.yde{bottom:522.626667pt;}
.y1e{bottom:522.786667pt;}
.y173{bottom:527.906667pt;}
.y95{bottom:532.373333pt;}
.y92{bottom:532.386667pt;}
.y159{bottom:532.546667pt;}
.yb7{bottom:535.426667pt;}
.y11b{bottom:537.506667pt;}
.ydd{bottom:538.626667pt;}
.y1d{bottom:539.586667pt;}
.yc2{bottom:541.506667pt;}
.y125{bottom:542.146667pt;}
.y47{bottom:544.386667pt;}
.yda{bottom:554.626667pt;}
.y1c{bottom:556.386667pt;}
.y172{bottom:564.893333pt;}
.y118{bottom:568.893333pt;}
.y46{bottom:572.093333pt;}
.yb6{bottom:572.253333pt;}
.y1b{bottom:573.373333pt;}
.yc1{bottom:578.333333pt;}
.y171{bottom:580.253333pt;}
.yd4{bottom:586.013333pt;}
.y1a{bottom:591.773333pt;}
.y8e{bottom:592.733333pt;}
.y45{bottom:599.613333pt;}
.yd3{bottom:608.733333pt;}
.yb5{bottom:609.053333pt;}
.y19{bottom:610.493333pt;}
.yc0{bottom:615.133333pt;}
.y11f{bottom:618.173333pt;}
.y114{bottom:620.093333pt;}
.y44{bottom:627.293333pt;}
.y18{bottom:628.893333pt;}
.y158{bottom:645.533333pt;}
.yb4{bottom:645.853333pt;}
.y17{bottom:647.293333pt;}
.ybf{bottom:648.253333pt;}
.y111{bottom:651.773333pt;}
.y43{bottom:654.813333pt;}
.y11e{bottom:654.973333pt;}
.y137{bottom:660.573333pt;}
.y136{bottom:660.586667pt;}
.y88{bottom:662.813333pt;}
.y16{bottom:665.693333pt;}
.y170{bottom:672.893333pt;}
.y16f{bottom:672.906667pt;}
.yd2{bottom:682.333333pt;}
.y42{bottom:682.493333pt;}
.yb3{bottom:682.653333pt;}
.y15{bottom:683.613333pt;}
.y14{bottom:699.773333pt;}
.yac{bottom:709.693333pt;}
.y41{bottom:710.013333pt;}
.y10f{bottom:714.173333pt;}
.yb2{bottom:719.453333pt;}
.y13{bottom:720.413333pt;}
.y12{bottom:731.933333pt;}
.y84{bottom:735.133333pt;}
.y40{bottom:737.693333pt;}
.y10e{bottom:744.893333pt;}
.y11{bottom:752.573333pt;}
.yb1{bottom:756.253333pt;}
.y10{bottom:764.093333pt;}
.y3f{bottom:765.213333pt;}
.y10c{bottom:775.613333pt;}
.yf{bottom:780.253333pt;}
.y16a{bottom:780.893333pt;}
.y82{bottom:783.133333pt;}
.y3e{bottom:792.933333pt;}
.yb0{bottom:793.093333pt;}
.ye{bottom:796.293333pt;}
.y10a{bottom:806.840000pt;}
.y108{bottom:806.853333pt;}
.yd{bottom:812.453333pt;}
.y3d{bottom:820.453333pt;}
.yc{bottom:828.613333pt;}
.yaf{bottom:829.893333pt;}
.yb{bottom:844.613333pt;}
.y3c{bottom:848.133333pt;}
.y81{bottom:852.773333pt;}
.y167{bottom:858.200000pt;}
.y107{bottom:858.213333pt;}
.ya{bottom:860.773333pt;}
.yae{bottom:866.693333pt;}
.y105{bottom:873.573333pt;}
.y3b{bottom:875.653333pt;}
.y9{bottom:876.773333pt;}
.y134{bottom:878.853333pt;}
.y103{bottom:888.773333pt;}
.y80{bottom:889.573333pt;}
.y8{bottom:892.933333pt;}
.y3a{bottom:903.333333pt;}
.yad{bottom:903.493333pt;}
.y78{bottom:904.920000pt;}
.y76{bottom:904.933333pt;}
.y133{bottom:915.653333pt;}
.y102{bottom:920.133333pt;}
.y165{bottom:920.293333pt;}
.y7{bottom:925.093333pt;}
.yd1{bottom:930.533333pt;}
.y39{bottom:930.853333pt;}
.yff{bottom:937.720000pt;}
.yfd{bottom:937.733333pt;}
.y164{bottom:939.973333pt;}
.ybe{bottom:940.293333pt;}
.y6{bottom:941.413333pt;}
.y132{bottom:955.813333pt;}
.y5{bottom:958.373333pt;}
.y38{bottom:958.533333pt;}
.y4{bottom:976.773333pt;}
.ybd{bottom:977.093333pt;}
.y37{bottom:986.053333pt;}
.y3{bottom:995.173333pt;}
.y36{bottom:1013.440000pt;}
.y58{bottom:1013.760000pt;}
.y1{bottom:1013.920000pt;}
.y2{bottom:1020.000000pt;}
.h2b{height:15.186667pt;}
.h25{height:15.346667pt;}
.h10{height:15.392000pt;}
.h29{height:16.946667pt;}
.h35{height:18.386667pt;}
.h21{height:18.400000pt;}
.h3c{height:25.906667pt;}
.h37{height:28.626667pt;}
.h36{height:28.666667pt;}
.h39{height:28.786667pt;}
.h30{height:30.560000pt;}
.h2e{height:30.580000pt;}
.h24{height:30.586667pt;}
.h2a{height:30.706667pt;}
.h2f{height:30.720000pt;}
.h32{height:31.680000pt;}
.h31{height:31.840000pt;}
.h7{height:36.715000pt;}
.h4{height:42.084375pt;}
.h14{height:46.900000pt;}
.ha{height:47.109375pt;}
.h15{height:47.360000pt;}
.h33{height:50.556000pt;}
.h34{height:50.560000pt;}
.h2c{height:50.712000pt;}
.h2d{height:50.720000pt;}
.h3e{height:52.108438pt;}
.hb{height:52.134375pt;}
.h3d{height:52.461875pt;}
.h38{height:52.478750pt;}
.h22{height:53.535000pt;}
.h27{height:53.592000pt;}
.h28{height:53.600000pt;}
.h3f{height:54.598989pt;}
.h6{height:55.275000pt;}
.h1f{height:57.375000pt;}
.h9{height:57.787500pt;}
.h5{height:59.340000pt;}
.h18{height:59.546667pt;}
.h19{height:59.552000pt;}
.h1a{height:59.560000pt;}
.h1b{height:59.826667pt;}
.h41{height:61.266667pt;}
.h42{height:61.272000pt;}
.h43{height:61.280000pt;}
.h20{height:62.781250pt;}
.h8{height:62.812500pt;}
.h26{height:63.346667pt;}
.h2{height:64.500000pt;}
.h49{height:65.781915pt;}
.h1e{height:66.404375pt;}
.h1c{height:68.466667pt;}
.h17{height:69.280000pt;}
.h16{height:71.520000pt;}
.h1d{height:73.138667pt;}
.h3b{height:75.465000pt;}
.h44{height:76.660000pt;}
.h3a{height:86.100000pt;}
.h48{height:91.996000pt;}
.h47{height:92.000000pt;}
.h23{height:94.586667pt;}
.h45{height:107.356000pt;}
.h46{height:107.360000pt;}
.h11{height:122.586667pt;}
.h12{height:122.592000pt;}
.h13{height:122.600000pt;}
.he{height:168.626667pt;}
.hf{height:168.640000pt;}
.hc{height:168.653333pt;}
.hd{height:168.666667pt;}
.h40{height:168.680000pt;}
.h1{height:1122.666667pt;}
.h3{height:1122.706587pt;}
.h0{height:1122.720000pt;}
.w1d{width:55.986667pt;}
.w24{width:55.996000pt;}
.w25{width:56.000000pt;}
.w1c{width:56.352000pt;}
.w23{width:56.360000pt;}
.w20{width:58.066667pt;}
.w29{width:58.072000pt;}
.w2a{width:58.080000pt;}
.w1e{width:65.266667pt;}
.w26{width:65.276000pt;}
.w27{width:65.280000pt;}
.w22{width:65.916000pt;}
.w1b{width:65.920000pt;}
.w1f{width:66.418667pt;}
.w28{width:66.420000pt;}
.w9{width:78.226667pt;}
.we{width:83.218667pt;}
.wd{width:85.906667pt;}
.wb{width:97.152000pt;}
.w2b{width:130.072000pt;}
.w30{width:130.080000pt;}
.w13{width:131.032000pt;}
.w17{width:131.040000pt;}
.w16{width:141.773333pt;}
.w15{width:151.226667pt;}
.w19{width:151.240000pt;}
.wa{width:154.893333pt;}
.w14{width:161.293333pt;}
.w18{width:161.306667pt;}
.wc{width:169.133333pt;}
.w3{width:186.893333pt;}
.w6{width:186.906667pt;}
.w2c{width:207.893333pt;}
.w2e{width:207.906667pt;}
.w1a{width:213.298667pt;}
.w21{width:213.306667pt;}
.w2d{width:243.373333pt;}
.w2f{width:243.386667pt;}
.w11{width:266.258667pt;}
.w12{width:266.466667pt;}
.w7{width:288.178667pt;}
.w8{width:288.213333pt;}
.w4{width:389.493333pt;}
.w5{width:389.506667pt;}
.wf{width:416.213333pt;}
.w10{width:533.360000pt;}
.w2{width:793.260000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x16{left:7.192000pt;}
.x2d{left:13.106667pt;}
.x3c{left:17.626667pt;}
.x3a{left:20.826667pt;}
.x2a{left:23.826667pt;}
.x5a{left:25.432000pt;}
.x2b{left:27.666667pt;}
.x25{left:30.880000pt;}
.x30{left:34.906667pt;}
.x2f{left:36.146667pt;}
.x58{left:37.906667pt;}
.x2e{left:41.946667pt;}
.x57{left:43.186667pt;}
.x32{left:45.306667pt;}
.x59{left:46.866667pt;}
.x29{left:48.666667pt;}
.x44{left:53.626667pt;}
.x31{left:55.546667pt;}
.x3f{left:56.986667pt;}
.x27{left:58.386667pt;}
.x54{left:59.386667pt;}
.x41{left:60.346667pt;}
.x43{left:63.386667pt;}
.x42{left:64.986667pt;}
.x28{left:66.266667pt;}
.x3e{left:68.026667pt;}
.x40{left:72.346667pt;}
.x56{left:79.186667pt;}
.x47{left:99.240000pt;}
.x15{left:108.520000pt;}
.x7{left:113.472000pt;}
.x52{left:116.192000pt;}
.x45{left:117.152000pt;}
.x11{left:118.912000pt;}
.x19{left:124.466667pt;}
.x1c{left:125.792000pt;}
.x35{left:130.120000pt;}
.x4f{left:132.832000pt;}
.x20{left:134.746667pt;}
.x12{left:137.466667pt;}
.x22{left:147.080000pt;}
.x1{left:149.786667pt;}
.x1b{left:154.266667pt;}
.x1f{left:157.786667pt;}
.x13{left:160.666667pt;}
.xf{left:173.306667pt;}
.x5c{left:185.466667pt;}
.x38{left:198.266667pt;}
.x37{left:200.346667pt;}
.x33{left:208.026667pt;}
.x5b{left:209.466667pt;}
.x36{left:212.026667pt;}
.xd{left:215.386667pt;}
.x23{left:225.320000pt;}
.x53{left:229.320000pt;}
.x39{left:244.520000pt;}
.x5d{left:245.466667pt;}
.x46{left:248.346667pt;}
.x21{left:257.506667pt;}
.x18{left:259.266667pt;}
.x14{left:261.346667pt;}
.x1a{left:266.626667pt;}
.x6{left:287.106667pt;}
.x34{left:293.986667pt;}
.x17{left:295.426667pt;}
.x5{left:300.546667pt;}
.x1d{left:302.626667pt;}
.x10{left:305.506667pt;}
.x48{left:312.546667pt;}
.xc{left:315.906667pt;}
.x4e{left:322.306667pt;}
.xa{left:332.706667pt;}
.xe{left:335.266667pt;}
.x50{left:342.306667pt;}
.x9{left:344.226667pt;}
.x8{left:346.146667pt;}
.xb{left:351.586667pt;}
.x51{left:367.746667pt;}
.x49{left:378.466667pt;}
.x24{left:380.226667pt;}
.x4{left:396.706667pt;}
.x3b{left:405.826667pt;}
.x4a{left:434.826667pt;}
.x55{left:437.226667pt;}
.x26{left:477.386667pt;}
.x4b{left:490.826667pt;}
.x4c{left:556.106667pt;}
.x3d{left:557.066667pt;}
.x2c{left:563.306667pt;}
.x1e{left:574.333333pt;}
.x4d{left:622.533333pt;}
.x2{left:638.353333pt;}
.x3{left:643.813333pt;}
}




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