
    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_092f27387b1a52c74e9f9ddb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_84b59b26a227909842915307.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1e77cb77221d1b5dcccc49e4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_9ffeeb7c88f70b0480145b8d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_2bff776b6778775609f1f302.woff')format("woff");}.ff5{font-family:ff5;line-height:0.962402;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_5716ff44c6d71adf93e0e9b6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f66c6be9f1f41d40b0a7c19a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ac45b3b9d13c2f5dd0268a0d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.917969;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_da00100aa1c5837154b8cc03.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1cf160babc939555a1485da5.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5d1d2ddbda82c78d739af58c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.921387;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls13{letter-spacing:-1.026000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.457800px;}
.ls7{letter-spacing:-0.378600px;}
.ls1e{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.305400px;}
.ls12{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.262200px;}
.ls1f{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.053280px;}
.ls1d{letter-spacing:0.106800px;}
.ls17{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.174000px;}
.ls2{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.262200px;}
.ls20{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.341280px;}
.ls1b{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.414600px;}
.ls4{letter-spacing:2.880000px;}
.ls14{letter-spacing:7.505280px;}
.ls9{letter-spacing:23.345280px;}
.ls15{letter-spacing:26.945280px;}
.ls5{letter-spacing:88.128000px;}
.lsf{letter-spacing:88.848000px;}
.lsc{letter-spacing:89.729280px;}
.lse{letter-spacing:91.530720px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws12{word-spacing:-66.240000px;}
.ws11{word-spacing:-20.232000px;}
.ws7{word-spacing:-20.160000px;}
.wsf{word-spacing:-20.016000px;}
.ws8{word-spacing:-18.829320px;}
.ws10{word-spacing:-18.414720px;}
.wse{word-spacing:-18.152520px;}
.ws9{word-spacing:-18.109320px;}
.ws6{word-spacing:-16.865400px;}
.wsb{word-spacing:-16.822200px;}
.ws4{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.272000px;}
.ws13{word-spacing:-16.102200px;}
.wsd{word-spacing:-15.534000px;}
.ws14{word-spacing:-15.300000px;}
.ws1{word-spacing:-15.012000px;}
.ws15{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws17{word-spacing:-14.833200px;}
.ws16{word-spacing:-14.580000px;}
.ws2{word-spacing:-14.328000px;}
.ws5{word-spacing:0.000000px;}
._34{margin-left:-13.417920px;}
._33{margin-left:-9.774720px;}
._6{margin-left:-8.448000px;}
._11{margin-left:-4.835520px;}
._12{margin-left:-3.546720px;}
._b{margin-left:-2.252160px;}
._5{margin-left:-1.179360px;}
._0{width:1.149120px;}
._1{width:3.053040px;}
._9{width:4.259280px;}
._8{width:5.286240px;}
._e{width:6.624000px;}
._d{width:8.103360px;}
._a{width:9.326880px;}
._7{width:10.399680px;}
._c{width:11.825280px;}
._13{width:13.446720px;}
._14{width:14.559840px;}
._44{width:16.778880px;}
._f{width:18.414720px;}
._1f{width:20.335680px;}
._18{width:21.528000px;}
._3d{width:22.592640px;}
._29{width:23.965920px;}
._26{width:25.833600px;}
._45{width:27.843120px;}
._42{width:29.211840px;}
._43{width:31.000320px;}
._17{width:32.407200px;}
._36{width:33.649920px;}
._15{width:35.107200px;}
._21{width:37.425600px;}
._2c{width:39.301680px;}
._24{width:40.870080px;}
._10{width:42.703680px;}
._22{width:45.043200px;}
._2d{width:46.689120px;}
._23{width:47.888640px;}
._32{width:49.020480px;}
._2f{width:51.137280px;}
._20{width:57.165120px;}
._27{width:59.616000px;}
._35{width:61.669440px;}
._3c{width:66.306240px;}
._3a{width:68.028480px;}
._31{width:73.261440px;}
._1d{width:77.699520px;}
._25{width:80.216640px;}
._1c{width:82.285920px;}
._16{width:84.720960px;}
._37{width:88.960320px;}
._19{width:94.921920px;}
._2a{width:104.328000px;}
._2b{width:105.652800px;}
._2e{width:117.443520px;}
._30{width:119.761920px;}
._1e{width:126.650880px;}
._3e{width:132.281280px;}
._28{width:143.330400px;}
._38{width:155.200320px;}
._1a{width:159.440880px;}
._3f{width:172.753920px;}
._40{width:176.374080px;}
._3b{width:186.651360px;}
._39{width:191.963520px;}
._41{width:218.592000px;}
._1b{width:233.628480px;}
._3{width:246.162240px;}
._2{width:1100.958240px;}
._4{width:1139.262240px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y62{bottom:3.600000px;}
.y5b{bottom:3.780000px;}
.yaf{bottom:22.494000px;}
.y61{bottom:22.500000px;}
.ya6{bottom:22.545000px;}
.y67{bottom:22.680000px;}
.y78{bottom:22.710000px;}
.y6f{bottom:22.725000px;}
.y74{bottom:37.800000px;}
.yae{bottom:41.574000px;}
.y60{bottom:41.580000px;}
.y77{bottom:41.610000px;}
.yc9{bottom:41.625000px;}
.y66{bottom:41.760000px;}
.y6e{bottom:41.805000px;}
.yad{bottom:60.474000px;}
.y71{bottom:60.480000px;}
.y5f{bottom:60.525000px;}
.y65{bottom:60.660000px;}
.y76{bottom:60.690000px;}
.y6d{bottom:60.705000px;}
.y6{bottom:72.036000px;}
.yac{bottom:79.554000px;}
.y73{bottom:79.560000px;}
.y5e{bottom:79.605000px;}
.y64{bottom:79.740000px;}
.y5{bottom:89.316000px;}
.yab{bottom:98.454000px;}
.y5d{bottom:98.505000px;}
.yf6{bottom:98.640000px;}
.y4{bottom:107.856000px;}
.yaa{bottom:117.534000px;}
.yf5{bottom:117.540000px;}
.yc8{bottom:117.585000px;}
.y36{bottom:127.116000px;}
.ya9{bottom:136.434000px;}
.yc7{bottom:136.485000px;}
.yf4{bottom:136.620000px;}
.y8a{bottom:136.836000px;}
.ya7{bottom:137.916000px;}
.y12e{bottom:141.336000px;}
.y9d{bottom:143.136000px;}
.ybf{bottom:144.756000px;}
.y35{bottom:146.196000px;}
.ya8{bottom:155.334000px;}
.yf3{bottom:155.520000px;}
.yc6{bottom:155.565000px;}
.y89{bottom:155.730000px;}
.y68{bottom:159.330000px;}
.yea{bottom:159.690000px;}
.y156{bottom:159.870000px;}
.y12d{bottom:160.410000px;}
.y9c{bottom:162.030000px;}
.ybe{bottom:163.830000px;}
.y34{bottom:165.090000px;}
.yf2{bottom:174.420000px;}
.yc5{bottom:174.465000px;}
.y88{bottom:174.810000px;}
.y63{bottom:175.710000px;}
.y155{bottom:177.150000px;}
.ye9{bottom:178.770000px;}
.y12c{bottom:179.310000px;}
.y9b{bottom:181.110000px;}
.ybd{bottom:182.730000px;}
.y33{bottom:184.170000px;}
.yc4{bottom:193.365000px;}
.yf1{bottom:193.545000px;}
.y87{bottom:193.710000px;}
.y154{bottom:194.430000px;}
.ye8{bottom:197.670000px;}
.y12b{bottom:198.210000px;}
.y9a{bottom:200.010000px;}
.ybc{bottom:201.810000px;}
.y32{bottom:203.070000px;}
.y153{bottom:211.710000px;}
.yf0{bottom:212.445000px;}
.y86{bottom:212.790000px;}
.ye7{bottom:216.750000px;}
.y12a{bottom:217.290000px;}
.y99{bottom:218.910000px;}
.ybb{bottom:220.710000px;}
.y11f{bottom:221.970000px;}
.y31{bottom:222.150000px;}
.y152{bottom:228.990000px;}
.yef{bottom:231.525000px;}
.y85{bottom:231.690000px;}
.ye6{bottom:235.650000px;}
.y129{bottom:236.190000px;}
.y98{bottom:237.990000px;}
.yba{bottom:239.610000px;}
.y30{bottom:241.050000px;}
.y151{bottom:246.090000px;}
.y84{bottom:250.590000px;}
.ye5{bottom:254.550000px;}
.y128{bottom:255.270000px;}
.y97{bottom:256.710000px;}
.y112{bottom:256.890000px;}
.yb9{bottom:258.690000px;}
.y2f{bottom:259.950000px;}
.y150{bottom:263.370000px;}
.y83{bottom:269.670000px;}
.y5c{bottom:270.750000px;}
.ye4{bottom:273.630000px;}
.y127{bottom:274.170000px;}
.y96{bottom:275.970000px;}
.yb8{bottom:277.590000px;}
.y2e{bottom:279.030000px;}
.y14f{bottom:280.650000px;}
.y82{bottom:285.690000px;}
.ye3{bottom:292.530000px;}
.y126{bottom:293.070000px;}
.y95{bottom:294.870000px;}
.yb7{bottom:296.670000px;}
.y2d{bottom:297.930000px;}
.ya5{bottom:309.450000px;}
.ye2{bottom:311.610000px;}
.y125{bottom:312.150000px;}
.y94{bottom:313.770000px;}
.y14e{bottom:315.210000px;}
.yb6{bottom:315.570000px;}
.y11e{bottom:316.830000px;}
.y2c{bottom:317.055000px;}
.y81{bottom:324.435000px;}
.ye1{bottom:330.555000px;}
.y124{bottom:331.095000px;}
.y14d{bottom:332.355000px;}
.y93{bottom:332.895000px;}
.yb5{bottom:334.515000px;}
.y2b{bottom:335.955000px;}
.ye0{bottom:349.455000px;}
.y14c{bottom:349.635000px;}
.y123{bottom:350.175000px;}
.y92{bottom:351.615000px;}
.y111{bottom:351.795000px;}
.yb4{bottom:353.595000px;}
.y2a{bottom:354.855000px;}
.y80{bottom:363.135000px;}
.y14b{bottom:366.915000px;}
.ydf{bottom:368.535000px;}
.y122{bottom:369.075000px;}
.y91{bottom:370.875000px;}
.yb3{bottom:372.495000px;}
.y29{bottom:373.935000px;}
.y14a{bottom:384.195000px;}
.y5a{bottom:385.275000px;}
.yde{bottom:387.435000px;}
.y121{bottom:388.155000px;}
.y90{bottom:389.775000px;}
.ya4{bottom:391.575000px;}
.y28{bottom:392.835000px;}
.y149{bottom:401.475000px;}
.y7f{bottom:401.835000px;}
.ydd{bottom:406.515000px;}
.y59{bottom:408.675000px;}
.y8f{bottom:408.855000px;}
.yb2{bottom:410.295000px;}
.ya3{bottom:410.475000px;}
.y11d{bottom:411.735000px;}
.y27{bottom:411.915000px;}
.y148{bottom:418.755000px;}
.ydc{bottom:425.415000px;}
.y58{bottom:427.755000px;}
.ya2{bottom:429.555000px;}
.y11c{bottom:430.815000px;}
.y26{bottom:432.615000px;}
.y147{bottom:435.855000px;}
.y7e{bottom:444.315000px;}
.y57{bottom:446.655000px;}
.ya1{bottom:448.455000px;}
.y11b{bottom:449.715000px;}
.y25{bottom:451.515000px;}
.y146{bottom:453.135000px;}
.ydb{bottom:463.395000px;}
.y7d{bottom:464.835000px;}
.y56{bottom:465.735000px;}
.ya0{bottom:467.355000px;}
.y11a{bottom:468.795000px;}
.y145{bottom:470.415000px;}
.y24{bottom:470.595000px;}
.yda{bottom:482.295000px;}
.y7c{bottom:483.915000px;}
.y55{bottom:484.455000px;}
.y110{bottom:484.635000px;}
.y9f{bottom:486.255000px;}
.y8e{bottom:486.435000px;}
.y119{bottom:487.695000px;}
.y23{bottom:491.115000px;}
.yd9{bottom:501.375000px;}
.y7b{bottom:502.815000px;}
.y54{bottom:503.715000px;}
.y144{bottom:504.975000px;}
.y8d{bottom:505.335000px;}
.y118{bottom:506.595000px;}
.y22{bottom:510.195000px;}
.yd8{bottom:520.275000px;}
.y7a{bottom:521.535000px;}
.y143{bottom:522.255000px;}
.y10f{bottom:522.615000px;}
.y53{bottom:524.415000px;}
.y117{bottom:525.675000px;}
.y21{bottom:529.095000px;}
.yd7{bottom:539.175000px;}
.y142{bottom:539.355000px;}
.y79{bottom:540.795000px;}
.y10e{bottom:541.515000px;}
.y52{bottom:543.315000px;}
.y116{bottom:544.755000px;}
.y20{bottom:548.175000px;}
.y141{bottom:556.635000px;}
.y75{bottom:556.815000px;}
.yd6{bottom:558.255000px;}
.y10d{bottom:560.595000px;}
.yb1{bottom:562.035000px;}
.y51{bottom:562.215000px;}
.y115{bottom:565.275000px;}
.y1f{bottom:567.075000px;}
.y140{bottom:573.945000px;}
.yd5{bottom:577.185000px;}
.y10c{bottom:579.525000px;}
.y9e{bottom:581.145000px;}
.y50{bottom:581.325000px;}
.y114{bottom:584.205000px;}
.y1e{bottom:586.005000px;}
.y13f{bottom:591.225000px;}
.yd4{bottom:596.265000px;}
.y10b{bottom:598.605000px;}
.y113{bottom:599.685000px;}
.y4f{bottom:600.225000px;}
.y1d{bottom:605.085000px;}
.y13e{bottom:608.505000px;}
.yd3{bottom:615.165000px;}
.y10a{bottom:617.505000px;}
.y8c{bottom:619.125000px;}
.y4e{bottom:619.305000px;}
.y1c{bottom:623.985000px;}
.y13d{bottom:625.785000px;}
.yee{bottom:631.185000px;}
.y72{bottom:632.805000px;}
.yd2{bottom:634.245000px;}
.y109{bottom:636.405000px;}
.y4d{bottom:638.205000px;}
.y13c{bottom:642.885000px;}
.y1b{bottom:643.065000px;}
.yd1{bottom:653.145000px;}
.y108{bottom:655.485000px;}
.y4c{bottom:657.105000px;}
.y13b{bottom:660.165000px;}
.y1a{bottom:661.965000px;}
.yd0{bottom:672.045000px;}
.y107{bottom:674.385000px;}
.y4b{bottom:676.185000px;}
.y13a{bottom:677.445000px;}
.y19{bottom:680.865000px;}
.ycf{bottom:691.125000px;}
.y106{bottom:693.465000px;}
.y139{bottom:694.725000px;}
.y4a{bottom:695.085000px;}
.y18{bottom:699.945000px;}
.yce{bottom:710.025000px;}
.y138{bottom:712.005000px;}
.y105{bottom:712.365000px;}
.y49{bottom:714.165000px;}
.y17{bottom:718.845000px;}
.y70{bottom:727.665000px;}
.ycd{bottom:729.105000px;}
.y104{bottom:731.265000px;}
.yb0{bottom:732.885000px;}
.y48{bottom:733.065000px;}
.y16{bottom:737.925000px;}
.y137{bottom:746.385000px;}
.ycc{bottom:748.005000px;}
.y103{bottom:750.345000px;}
.y47{bottom:751.965000px;}
.y15{bottom:756.825000px;}
.y136{bottom:763.665000px;}
.ycb{bottom:766.905000px;}
.y102{bottom:769.245000px;}
.y46{bottom:771.045000px;}
.y14{bottom:775.905000px;}
.y135{bottom:780.945000px;}
.yca{bottom:785.985000px;}
.y101{bottom:788.325000px;}
.y45{bottom:789.945000px;}
.y13{bottom:794.805000px;}
.y134{bottom:798.225000px;}
.yc3{bottom:802.005000px;}
.y6c{bottom:803.445000px;}
.y100{bottom:807.225000px;}
.y44{bottom:809.025000px;}
.y12{bottom:813.885000px;}
.y133{bottom:815.505000px;}
.yff{bottom:826.170000px;}
.y43{bottom:827.970000px;}
.y132{bottom:832.650000px;}
.y11{bottom:834.450000px;}
.yfe{bottom:845.250000px;}
.y42{bottom:846.870000px;}
.y131{bottom:849.930000px;}
.y10{bottom:852.990000px;}
.yfd{bottom:864.150000px;}
.y41{bottom:865.950000px;}
.y130{bottom:867.210000px;}
.yf{bottom:870.270000px;}
.yed{bottom:878.730000px;}
.y6b{bottom:880.170000px;}
.yfc{bottom:883.230000px;}
.y12f{bottom:884.490000px;}
.y40{bottom:884.850000px;}
.ye{bottom:892.770000px;}
.y160{bottom:901.770000px;}
.yec{bottom:901.950000px;}
.yfb{bottom:902.130000px;}
.y120{bottom:902.310000px;}
.y3f{bottom:903.930000px;}
.yd{bottom:904.830000px;}
.y15f{bottom:919.050000px;}
.yeb{bottom:921.210000px;}
.y3e{bottom:922.830000px;}
.yc{bottom:927.330000px;}
.y15e{bottom:936.150000px;}
.yfa{bottom:940.110000px;}
.y6a{bottom:941.550000px;}
.y8b{bottom:941.730000px;}
.y3d{bottom:941.910000px;}
.yb{bottom:949.650000px;}
.y15d{bottom:953.430000px;}
.yf9{bottom:959.010000px;}
.y3c{bottom:960.810000px;}
.y15c{bottom:970.710000px;}
.ya{bottom:972.870000px;}
.yf8{bottom:978.090000px;}
.y69{bottom:979.350000px;}
.y3b{bottom:979.710000px;}
.y15b{bottom:987.990000px;}
.y9{bottom:993.210000px;}
.yf7{bottom:997.170000px;}
.y3a{bottom:998.790000px;}
.y15a{bottom:1005.270000px;}
.yc2{bottom:1011.570000px;}
.y39{bottom:1017.690000px;}
.y8{bottom:1020.930000px;}
.y159{bottom:1022.370000px;}
.yc1{bottom:1034.790000px;}
.y38{bottom:1036.770000px;}
.y158{bottom:1039.650000px;}
.y7{bottom:1048.470000px;}
.yc0{bottom:1054.050000px;}
.y37{bottom:1055.670000px;}
.y157{bottom:1056.930000px;}
.y3{bottom:1075.500000px;}
.y2{bottom:1094.580000px;}
.y1{bottom:1111.140000px;}
.h18{height:18.900000px;}
.hd{height:19.080000px;}
.h8{height:34.855313px;}
.h16{height:37.836000px;}
.h14{height:37.980000px;}
.h15{height:38.016000px;}
.h2{height:41.535703px;}
.h6{height:46.736719px;}
.hc{height:49.809375px;}
.h4{height:53.573906px;}
.hb{height:54.140625px;}
.h10{height:56.880000px;}
.ha{height:59.383125px;}
.h9{height:59.439023px;}
.h3{height:65.884219px;}
.h7{height:70.845469px;}
.h5{height:72.007031px;}
.h12{height:75.780000px;}
.h11{height:75.996000px;}
.h13{height:94.860000px;}
.hf{height:95.040000px;}
.h1{height:95.245664px;}
.he{height:113.796000px;}
.h17{height:170.640000px;}
.h19{height:208.650000px;}
.h1a{height:246.810000px;}
.h0{height:1188.000000px;}
.w18{width:81.216000px;}
.we{width:84.816000px;}
.w6{width:104.256000px;}
.w2{width:105.156000px;}
.wa{width:116.136000px;}
.w16{width:119.880000px;}
.wb{width:121.536000px;}
.w1b{width:122.256000px;}
.w5{width:122.796000px;}
.w13{width:126.756000px;}
.w9{width:147.096000px;}
.w19{width:148.356000px;}
.w14{width:149.976000px;}
.w11{width:154.800000px;}
.wf{width:158.250000px;}
.w15{width:164.190000px;}
.w8{width:168.840000px;}
.w1a{width:169.740000px;}
.w10{width:182.190000px;}
.wc{width:182.370000px;}
.w7{width:211.710000px;}
.w12{width:230.655000px;}
.w1c{width:243.570000px;}
.w17{width:243.930000px;}
.wd{width:302.610000px;}
.w4{width:318.315000px;}
.w3{width:409.215000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:2.880000px;}
.xe{left:7.920000px;}
.x12{left:29.880000px;}
.x28{left:50.085000px;}
.x22{left:56.519986px;}
.xd{left:59.399986px;}
.x2{left:60.839986px;}
.x23{left:61.919986px;}
.xc{left:64.259986px;}
.x20{left:65.699986px;}
.x1f{left:67.679986px;}
.x1d{left:70.019986px;}
.x4{left:74.879986px;}
.x1c{left:79.199986px;}
.x18{left:84.240000px;}
.x17{left:87.839986px;}
.x9{left:89.639986px;}
.x5{left:95.615986px;}
.x21{left:101.375986px;}
.x8{left:113.615986px;}
.x1e{left:114.875986px;}
.x33{left:128.375986px;}
.x1{left:134.315986px;}
.x2d{left:142.056000px;}
.x24{left:145.656000px;}
.xf{left:165.990000px;}
.x13{left:183.630000px;}
.x29{left:187.590000px;}
.x19{left:200.370000px;}
.x32{left:222.869986px;}
.x14{left:287.895000px;}
.x2e{left:290.415000px;}
.x25{left:303.915000px;}
.xb{left:308.234986px;}
.x1a{left:321.915000px;}
.x2a{left:337.575000px;}
.x6{left:350.174986px;}
.xa{left:368.714986px;}
.x3{left:433.154986px;}
.x7{left:445.574986px;}
.x2f{left:460.155000px;}
.x26{left:486.105000px;}
.x15{left:499.605000px;}
.x2b{left:501.765000px;}
.x1b{left:504.285000px;}
.x10{left:575.205000px;}
.x30{left:582.405000px;}
.x2c{left:621.645000px;}
.x27{left:640.905000px;}
.x16{left:668.445000px;}
.x31{left:744.989986px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls13{letter-spacing:-0.912000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.406933pt;}
.ls7{letter-spacing:-0.336533pt;}
.ls1e{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.271467pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.233067pt;}
.ls1f{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.047360pt;}
.ls1d{letter-spacing:0.094933pt;}
.ls17{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.154667pt;}
.ls2{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.233067pt;}
.ls20{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.303360pt;}
.ls1b{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.368533pt;}
.ls4{letter-spacing:2.560000pt;}
.ls14{letter-spacing:6.671360pt;}
.ls9{letter-spacing:20.751360pt;}
.ls15{letter-spacing:23.951360pt;}
.ls5{letter-spacing:78.336000pt;}
.lsf{letter-spacing:78.976000pt;}
.lsc{letter-spacing:79.759360pt;}
.lse{letter-spacing:81.360640pt;}
.ws3{word-spacing:-64.000000pt;}
.ws12{word-spacing:-58.880000pt;}
.ws11{word-spacing:-17.984000pt;}
.ws7{word-spacing:-17.920000pt;}
.wsf{word-spacing:-17.792000pt;}
.ws8{word-spacing:-16.737173pt;}
.ws10{word-spacing:-16.368640pt;}
.wse{word-spacing:-16.135573pt;}
.ws9{word-spacing:-16.097173pt;}
.ws6{word-spacing:-14.991467pt;}
.wsb{word-spacing:-14.953067pt;}
.ws4{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.464000pt;}
.ws13{word-spacing:-14.313067pt;}
.wsd{word-spacing:-13.808000pt;}
.ws14{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.344000pt;}
.ws15{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws17{word-spacing:-13.185067pt;}
.ws16{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.736000pt;}
.ws5{word-spacing:0.000000pt;}
._34{margin-left:-11.927040pt;}
._33{margin-left:-8.688640pt;}
._6{margin-left:-7.509333pt;}
._11{margin-left:-4.298240pt;}
._12{margin-left:-3.152640pt;}
._b{margin-left:-2.001920pt;}
._5{margin-left:-1.048320pt;}
._0{width:1.021440pt;}
._1{width:2.713813pt;}
._9{width:3.786027pt;}
._8{width:4.698880pt;}
._e{width:5.888000pt;}
._d{width:7.202987pt;}
._a{width:8.290560pt;}
._7{width:9.244160pt;}
._c{width:10.511360pt;}
._13{width:11.952640pt;}
._14{width:12.942080pt;}
._44{width:14.914560pt;}
._f{width:16.368640pt;}
._1f{width:18.076160pt;}
._18{width:19.136000pt;}
._3d{width:20.082347pt;}
._29{width:21.303040pt;}
._26{width:22.963200pt;}
._45{width:24.749440pt;}
._42{width:25.966080pt;}
._43{width:27.555840pt;}
._17{width:28.806400pt;}
._36{width:29.911040pt;}
._15{width:31.206400pt;}
._21{width:33.267200pt;}
._2c{width:34.934827pt;}
._24{width:36.328960pt;}
._10{width:37.958827pt;}
._22{width:40.038400pt;}
._2d{width:41.501440pt;}
._23{width:42.567680pt;}
._32{width:43.573760pt;}
._2f{width:45.455360pt;}
._20{width:50.813440pt;}
._27{width:52.992000pt;}
._35{width:54.817280pt;}
._3c{width:58.938880pt;}
._3a{width:60.469760pt;}
._31{width:65.121280pt;}
._1d{width:69.066240pt;}
._25{width:71.303680pt;}
._1c{width:73.143040pt;}
._16{width:75.307520pt;}
._37{width:79.075840pt;}
._19{width:84.375040pt;}
._2a{width:92.736000pt;}
._2b{width:93.913600pt;}
._2e{width:104.394240pt;}
._30{width:106.455040pt;}
._1e{width:112.578560pt;}
._3e{width:117.583360pt;}
._28{width:127.404800pt;}
._38{width:137.955840pt;}
._1a{width:141.725227pt;}
._3f{width:153.559040pt;}
._40{width:156.776960pt;}
._3b{width:165.912320pt;}
._39{width:170.634240pt;}
._41{width:194.304000pt;}
._1b{width:207.669760pt;}
._3{width:218.810880pt;}
._2{width:978.629547pt;}
._4{width:1012.677547pt;}
.fs6{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:3.200000pt;}
.y5b{bottom:3.360000pt;}
.yaf{bottom:19.994667pt;}
.y61{bottom:20.000000pt;}
.ya6{bottom:20.040000pt;}
.y67{bottom:20.160000pt;}
.y78{bottom:20.186667pt;}
.y6f{bottom:20.200000pt;}
.y74{bottom:33.600000pt;}
.yae{bottom:36.954667pt;}
.y60{bottom:36.960000pt;}
.y77{bottom:36.986667pt;}
.yc9{bottom:37.000000pt;}
.y66{bottom:37.120000pt;}
.y6e{bottom:37.160000pt;}
.yad{bottom:53.754667pt;}
.y71{bottom:53.760000pt;}
.y5f{bottom:53.800000pt;}
.y65{bottom:53.920000pt;}
.y76{bottom:53.946667pt;}
.y6d{bottom:53.960000pt;}
.y6{bottom:64.032000pt;}
.yac{bottom:70.714667pt;}
.y73{bottom:70.720000pt;}
.y5e{bottom:70.760000pt;}
.y64{bottom:70.880000pt;}
.y5{bottom:79.392000pt;}
.yab{bottom:87.514667pt;}
.y5d{bottom:87.560000pt;}
.yf6{bottom:87.680000pt;}
.y4{bottom:95.872000pt;}
.yaa{bottom:104.474667pt;}
.yf5{bottom:104.480000pt;}
.yc8{bottom:104.520000pt;}
.y36{bottom:112.992000pt;}
.ya9{bottom:121.274667pt;}
.yc7{bottom:121.320000pt;}
.yf4{bottom:121.440000pt;}
.y8a{bottom:121.632000pt;}
.ya7{bottom:122.592000pt;}
.y12e{bottom:125.632000pt;}
.y9d{bottom:127.232000pt;}
.ybf{bottom:128.672000pt;}
.y35{bottom:129.952000pt;}
.ya8{bottom:138.074667pt;}
.yf3{bottom:138.240000pt;}
.yc6{bottom:138.280000pt;}
.y89{bottom:138.426667pt;}
.y68{bottom:141.626667pt;}
.yea{bottom:141.946667pt;}
.y156{bottom:142.106667pt;}
.y12d{bottom:142.586667pt;}
.y9c{bottom:144.026667pt;}
.ybe{bottom:145.626667pt;}
.y34{bottom:146.746667pt;}
.yf2{bottom:155.040000pt;}
.yc5{bottom:155.080000pt;}
.y88{bottom:155.386667pt;}
.y63{bottom:156.186667pt;}
.y155{bottom:157.466667pt;}
.ye9{bottom:158.906667pt;}
.y12c{bottom:159.386667pt;}
.y9b{bottom:160.986667pt;}
.ybd{bottom:162.426667pt;}
.y33{bottom:163.706667pt;}
.yc4{bottom:171.880000pt;}
.yf1{bottom:172.040000pt;}
.y87{bottom:172.186667pt;}
.y154{bottom:172.826667pt;}
.ye8{bottom:175.706667pt;}
.y12b{bottom:176.186667pt;}
.y9a{bottom:177.786667pt;}
.ybc{bottom:179.386667pt;}
.y32{bottom:180.506667pt;}
.y153{bottom:188.186667pt;}
.yf0{bottom:188.840000pt;}
.y86{bottom:189.146667pt;}
.ye7{bottom:192.666667pt;}
.y12a{bottom:193.146667pt;}
.y99{bottom:194.586667pt;}
.ybb{bottom:196.186667pt;}
.y11f{bottom:197.306667pt;}
.y31{bottom:197.466667pt;}
.y152{bottom:203.546667pt;}
.yef{bottom:205.800000pt;}
.y85{bottom:205.946667pt;}
.ye6{bottom:209.466667pt;}
.y129{bottom:209.946667pt;}
.y98{bottom:211.546667pt;}
.yba{bottom:212.986667pt;}
.y30{bottom:214.266667pt;}
.y151{bottom:218.746667pt;}
.y84{bottom:222.746667pt;}
.ye5{bottom:226.266667pt;}
.y128{bottom:226.906667pt;}
.y97{bottom:228.186667pt;}
.y112{bottom:228.346667pt;}
.yb9{bottom:229.946667pt;}
.y2f{bottom:231.066667pt;}
.y150{bottom:234.106667pt;}
.y83{bottom:239.706667pt;}
.y5c{bottom:240.666667pt;}
.ye4{bottom:243.226667pt;}
.y127{bottom:243.706667pt;}
.y96{bottom:245.306667pt;}
.yb8{bottom:246.746667pt;}
.y2e{bottom:248.026667pt;}
.y14f{bottom:249.466667pt;}
.y82{bottom:253.946667pt;}
.ye3{bottom:260.026667pt;}
.y126{bottom:260.506667pt;}
.y95{bottom:262.106667pt;}
.yb7{bottom:263.706667pt;}
.y2d{bottom:264.826667pt;}
.ya5{bottom:275.066667pt;}
.ye2{bottom:276.986667pt;}
.y125{bottom:277.466667pt;}
.y94{bottom:278.906667pt;}
.y14e{bottom:280.186667pt;}
.yb6{bottom:280.506667pt;}
.y11e{bottom:281.626667pt;}
.y2c{bottom:281.826667pt;}
.y81{bottom:288.386667pt;}
.ye1{bottom:293.826667pt;}
.y124{bottom:294.306667pt;}
.y14d{bottom:295.426667pt;}
.y93{bottom:295.906667pt;}
.yb5{bottom:297.346667pt;}
.y2b{bottom:298.626667pt;}
.ye0{bottom:310.626667pt;}
.y14c{bottom:310.786667pt;}
.y123{bottom:311.266667pt;}
.y92{bottom:312.546667pt;}
.y111{bottom:312.706667pt;}
.yb4{bottom:314.306667pt;}
.y2a{bottom:315.426667pt;}
.y80{bottom:322.786667pt;}
.y14b{bottom:326.146667pt;}
.ydf{bottom:327.586667pt;}
.y122{bottom:328.066667pt;}
.y91{bottom:329.666667pt;}
.yb3{bottom:331.106667pt;}
.y29{bottom:332.386667pt;}
.y14a{bottom:341.506667pt;}
.y5a{bottom:342.466667pt;}
.yde{bottom:344.386667pt;}
.y121{bottom:345.026667pt;}
.y90{bottom:346.466667pt;}
.ya4{bottom:348.066667pt;}
.y28{bottom:349.186667pt;}
.y149{bottom:356.866667pt;}
.y7f{bottom:357.186667pt;}
.ydd{bottom:361.346667pt;}
.y59{bottom:363.266667pt;}
.y8f{bottom:363.426667pt;}
.yb2{bottom:364.706667pt;}
.ya3{bottom:364.866667pt;}
.y11d{bottom:365.986667pt;}
.y27{bottom:366.146667pt;}
.y148{bottom:372.226667pt;}
.ydc{bottom:378.146667pt;}
.y58{bottom:380.226667pt;}
.ya2{bottom:381.826667pt;}
.y11c{bottom:382.946667pt;}
.y26{bottom:384.546667pt;}
.y147{bottom:387.426667pt;}
.y7e{bottom:394.946667pt;}
.y57{bottom:397.026667pt;}
.ya1{bottom:398.626667pt;}
.y11b{bottom:399.746667pt;}
.y25{bottom:401.346667pt;}
.y146{bottom:402.786667pt;}
.ydb{bottom:411.906667pt;}
.y7d{bottom:413.186667pt;}
.y56{bottom:413.986667pt;}
.ya0{bottom:415.426667pt;}
.y11a{bottom:416.706667pt;}
.y145{bottom:418.146667pt;}
.y24{bottom:418.306667pt;}
.yda{bottom:428.706667pt;}
.y7c{bottom:430.146667pt;}
.y55{bottom:430.626667pt;}
.y110{bottom:430.786667pt;}
.y9f{bottom:432.226667pt;}
.y8e{bottom:432.386667pt;}
.y119{bottom:433.506667pt;}
.y23{bottom:436.546667pt;}
.yd9{bottom:445.666667pt;}
.y7b{bottom:446.946667pt;}
.y54{bottom:447.746667pt;}
.y144{bottom:448.866667pt;}
.y8d{bottom:449.186667pt;}
.y118{bottom:450.306667pt;}
.y22{bottom:453.506667pt;}
.yd8{bottom:462.466667pt;}
.y7a{bottom:463.586667pt;}
.y143{bottom:464.226667pt;}
.y10f{bottom:464.546667pt;}
.y53{bottom:466.146667pt;}
.y117{bottom:467.266667pt;}
.y21{bottom:470.306667pt;}
.yd7{bottom:479.266667pt;}
.y142{bottom:479.426667pt;}
.y79{bottom:480.706667pt;}
.y10e{bottom:481.346667pt;}
.y52{bottom:482.946667pt;}
.y116{bottom:484.226667pt;}
.y20{bottom:487.266667pt;}
.y141{bottom:494.786667pt;}
.y75{bottom:494.946667pt;}
.yd6{bottom:496.226667pt;}
.y10d{bottom:498.306667pt;}
.yb1{bottom:499.586667pt;}
.y51{bottom:499.746667pt;}
.y115{bottom:502.466667pt;}
.y1f{bottom:504.066667pt;}
.y140{bottom:510.173333pt;}
.yd5{bottom:513.053333pt;}
.y10c{bottom:515.133333pt;}
.y9e{bottom:516.573333pt;}
.y50{bottom:516.733333pt;}
.y114{bottom:519.293333pt;}
.y1e{bottom:520.893333pt;}
.y13f{bottom:525.533333pt;}
.yd4{bottom:530.013333pt;}
.y10b{bottom:532.093333pt;}
.y113{bottom:533.053333pt;}
.y4f{bottom:533.533333pt;}
.y1d{bottom:537.853333pt;}
.y13e{bottom:540.893333pt;}
.yd3{bottom:546.813333pt;}
.y10a{bottom:548.893333pt;}
.y8c{bottom:550.333333pt;}
.y4e{bottom:550.493333pt;}
.y1c{bottom:554.653333pt;}
.y13d{bottom:556.253333pt;}
.yee{bottom:561.053333pt;}
.y72{bottom:562.493333pt;}
.yd2{bottom:563.773333pt;}
.y109{bottom:565.693333pt;}
.y4d{bottom:567.293333pt;}
.y13c{bottom:571.453333pt;}
.y1b{bottom:571.613333pt;}
.yd1{bottom:580.573333pt;}
.y108{bottom:582.653333pt;}
.y4c{bottom:584.093333pt;}
.y13b{bottom:586.813333pt;}
.y1a{bottom:588.413333pt;}
.yd0{bottom:597.373333pt;}
.y107{bottom:599.453333pt;}
.y4b{bottom:601.053333pt;}
.y13a{bottom:602.173333pt;}
.y19{bottom:605.213333pt;}
.ycf{bottom:614.333333pt;}
.y106{bottom:616.413333pt;}
.y139{bottom:617.533333pt;}
.y4a{bottom:617.853333pt;}
.y18{bottom:622.173333pt;}
.yce{bottom:631.133333pt;}
.y138{bottom:632.893333pt;}
.y105{bottom:633.213333pt;}
.y49{bottom:634.813333pt;}
.y17{bottom:638.973333pt;}
.y70{bottom:646.813333pt;}
.ycd{bottom:648.093333pt;}
.y104{bottom:650.013333pt;}
.yb0{bottom:651.453333pt;}
.y48{bottom:651.613333pt;}
.y16{bottom:655.933333pt;}
.y137{bottom:663.453333pt;}
.ycc{bottom:664.893333pt;}
.y103{bottom:666.973333pt;}
.y47{bottom:668.413333pt;}
.y15{bottom:672.733333pt;}
.y136{bottom:678.813333pt;}
.ycb{bottom:681.693333pt;}
.y102{bottom:683.773333pt;}
.y46{bottom:685.373333pt;}
.y14{bottom:689.693333pt;}
.y135{bottom:694.173333pt;}
.yca{bottom:698.653333pt;}
.y101{bottom:700.733333pt;}
.y45{bottom:702.173333pt;}
.y13{bottom:706.493333pt;}
.y134{bottom:709.533333pt;}
.yc3{bottom:712.893333pt;}
.y6c{bottom:714.173333pt;}
.y100{bottom:717.533333pt;}
.y44{bottom:719.133333pt;}
.y12{bottom:723.453333pt;}
.y133{bottom:724.893333pt;}
.yff{bottom:734.373333pt;}
.y43{bottom:735.973333pt;}
.y132{bottom:740.133333pt;}
.y11{bottom:741.733333pt;}
.yfe{bottom:751.333333pt;}
.y42{bottom:752.773333pt;}
.y131{bottom:755.493333pt;}
.y10{bottom:758.213333pt;}
.yfd{bottom:768.133333pt;}
.y41{bottom:769.733333pt;}
.y130{bottom:770.853333pt;}
.yf{bottom:773.573333pt;}
.yed{bottom:781.093333pt;}
.y6b{bottom:782.373333pt;}
.yfc{bottom:785.093333pt;}
.y12f{bottom:786.213333pt;}
.y40{bottom:786.533333pt;}
.ye{bottom:793.573333pt;}
.y160{bottom:801.573333pt;}
.yec{bottom:801.733333pt;}
.yfb{bottom:801.893333pt;}
.y120{bottom:802.053333pt;}
.y3f{bottom:803.493333pt;}
.yd{bottom:804.293333pt;}
.y15f{bottom:816.933333pt;}
.yeb{bottom:818.853333pt;}
.y3e{bottom:820.293333pt;}
.yc{bottom:824.293333pt;}
.y15e{bottom:832.133333pt;}
.yfa{bottom:835.653333pt;}
.y6a{bottom:836.933333pt;}
.y8b{bottom:837.093333pt;}
.y3d{bottom:837.253333pt;}
.yb{bottom:844.133333pt;}
.y15d{bottom:847.493333pt;}
.yf9{bottom:852.453333pt;}
.y3c{bottom:854.053333pt;}
.y15c{bottom:862.853333pt;}
.ya{bottom:864.773333pt;}
.yf8{bottom:869.413333pt;}
.y69{bottom:870.533333pt;}
.y3b{bottom:870.853333pt;}
.y15b{bottom:878.213333pt;}
.y9{bottom:882.853333pt;}
.yf7{bottom:886.373333pt;}
.y3a{bottom:887.813333pt;}
.y15a{bottom:893.573333pt;}
.yc2{bottom:899.173333pt;}
.y39{bottom:904.613333pt;}
.y8{bottom:907.493333pt;}
.y159{bottom:908.773333pt;}
.yc1{bottom:919.813333pt;}
.y38{bottom:921.573333pt;}
.y158{bottom:924.133333pt;}
.y7{bottom:931.973333pt;}
.yc0{bottom:936.933333pt;}
.y37{bottom:938.373333pt;}
.y157{bottom:939.493333pt;}
.y3{bottom:956.000000pt;}
.y2{bottom:972.960000pt;}
.y1{bottom:987.680000pt;}
.h18{height:16.800000pt;}
.hd{height:16.960000pt;}
.h8{height:30.982500pt;}
.h16{height:33.632000pt;}
.h14{height:33.760000pt;}
.h15{height:33.792000pt;}
.h2{height:36.920625pt;}
.h6{height:41.543750pt;}
.hc{height:44.275000pt;}
.h4{height:47.621250pt;}
.hb{height:48.125000pt;}
.h10{height:50.560000pt;}
.ha{height:52.785000pt;}
.h9{height:52.834688pt;}
.h3{height:58.563750pt;}
.h7{height:62.973750pt;}
.h5{height:64.006250pt;}
.h12{height:67.360000pt;}
.h11{height:67.552000pt;}
.h13{height:84.320000pt;}
.hf{height:84.480000pt;}
.h1{height:84.662813pt;}
.he{height:101.152000pt;}
.h17{height:151.680000pt;}
.h19{height:185.466667pt;}
.h1a{height:219.386667pt;}
.h0{height:1056.000000pt;}
.w18{width:72.192000pt;}
.we{width:75.392000pt;}
.w6{width:92.672000pt;}
.w2{width:93.472000pt;}
.wa{width:103.232000pt;}
.w16{width:106.560000pt;}
.wb{width:108.032000pt;}
.w1b{width:108.672000pt;}
.w5{width:109.152000pt;}
.w13{width:112.672000pt;}
.w9{width:130.752000pt;}
.w19{width:131.872000pt;}
.w14{width:133.312000pt;}
.w11{width:137.600000pt;}
.wf{width:140.666667pt;}
.w15{width:145.946667pt;}
.w8{width:150.080000pt;}
.w1a{width:150.880000pt;}
.w10{width:161.946667pt;}
.wc{width:162.106667pt;}
.w7{width:188.186667pt;}
.w12{width:205.026667pt;}
.w1c{width:216.506667pt;}
.w17{width:216.826667pt;}
.wd{width:268.986667pt;}
.w4{width:282.946667pt;}
.w3{width:363.746667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:2.560000pt;}
.xe{left:7.040000pt;}
.x12{left:26.560000pt;}
.x28{left:44.520000pt;}
.x22{left:50.239988pt;}
.xd{left:52.799988pt;}
.x2{left:54.079988pt;}
.x23{left:55.039988pt;}
.xc{left:57.119988pt;}
.x20{left:58.399988pt;}
.x1f{left:60.159988pt;}
.x1d{left:62.239988pt;}
.x4{left:66.559988pt;}
.x1c{left:70.399988pt;}
.x18{left:74.880000pt;}
.x17{left:78.079988pt;}
.x9{left:79.679988pt;}
.x5{left:84.991988pt;}
.x21{left:90.111988pt;}
.x8{left:100.991988pt;}
.x1e{left:102.111988pt;}
.x33{left:114.111988pt;}
.x1{left:119.391988pt;}
.x2d{left:126.272000pt;}
.x24{left:129.472000pt;}
.xf{left:147.546667pt;}
.x13{left:163.226667pt;}
.x29{left:166.746667pt;}
.x19{left:178.106667pt;}
.x32{left:198.106655pt;}
.x14{left:255.906667pt;}
.x2e{left:258.146667pt;}
.x25{left:270.146667pt;}
.xb{left:273.986655pt;}
.x1a{left:286.146667pt;}
.x2a{left:300.066667pt;}
.x6{left:311.266655pt;}
.xa{left:327.746655pt;}
.x3{left:385.026655pt;}
.x7{left:396.066655pt;}
.x2f{left:409.026667pt;}
.x26{left:432.093333pt;}
.x15{left:444.093333pt;}
.x2b{left:446.013333pt;}
.x1b{left:448.253333pt;}
.x10{left:511.293333pt;}
.x30{left:517.693333pt;}
.x2c{left:552.573333pt;}
.x27{left:569.693333pt;}
.x16{left:594.173333pt;}
.x31{left:662.213321pt;}
}




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