
    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_e74246310b8a8935fa0d4360.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_5dfe05708d056114d9d648f7.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f4f0311e32e92b1f94d5ff60.woff')format("woff");}.ff3{font-family:ff3;line-height:0.729492;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_160a6627c36ca9a1bff155b3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.060059;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_253ee0073e14cc8060d24769.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d99ee13a48749e80670f4bcd.woff')format("woff");}.ff6{font-family:ff6;line-height:1.166504;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_5dab635127aed8ef74f02a36.woff')format("woff");}.ff7{font-family:ff7;line-height:1.166504;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_7e56fd96b286a4470f2cd967.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_21b6877a4c909ad63f379424.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_47b01533fdad540f2647a7c5.woff')format("woff");}.ffa{font-family:ffa;line-height:1.056152;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_cea81d700e90095fc5c900e7.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8aaf05a9c50f20ab18f921ca.woff')format("woff");}.ffc{font-family:ffc;line-height:0.977539;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:ffd;src:url('chunks/assets/font_fc4af3ac8e5fbf3e3b268ba0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.800293;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:ffe;src:url('chunks/assets/font_cb3c7902eaf0860943b423d7.woff')format("woff");}.ffe{font-family:ffe;line-height:1.064941;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:fff;src:url('chunks/assets/font_f1f75b2e4bfd1c904fadac38.woff')format("woff");}.fff{font-family:fff;line-height:1.049805;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:-33.120000px;}
.v1{vertical-align:-30.240000px;}
.v3{vertical-align:-27.360000px;}
.v6{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.v4{vertical-align:33.120000px;}
.lsb{letter-spacing:-1.890000px;}
.ls10{letter-spacing:-0.536400px;}
.ls11{letter-spacing:-0.501000px;}
.lsa{letter-spacing:-0.324000px;}
.ls6{letter-spacing:-0.272400px;}
.ls14{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.172800px;}
.lsd{letter-spacing:-0.140400px;}
.lsf{letter-spacing:-0.085200px;}
.ls7{letter-spacing:-0.064800px;}
.lse{letter-spacing:-0.012240px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.239040px;}
.ls8{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.306600px;}
.ls12{letter-spacing:0.306720px;}
.ls16{letter-spacing:0.326400px;}
.ls3{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.666000px;}
.ls15{letter-spacing:1.764000px;}
.lsc{letter-spacing:19.620000px;}
.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;}
}
.ws7{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.107200px;}
.ws8{word-spacing:-15.246600px;}
.ws4{word-spacing:-14.940000px;}
.ws10{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.440960px;}
.ws11{word-spacing:-11.701440px;}
.wsd{word-spacing:-10.527600px;}
.wsc{word-spacing:-10.472400px;}
.ws12{word-spacing:-10.263840px;}
.wsf{word-spacing:-10.111800px;}
.ws9{word-spacing:-9.937440px;}
.ws3{word-spacing:-9.720000px;}
.wse{word-spacing:-9.401040px;}
.wsa{word-spacing:-9.234000px;}
.ws1{word-spacing:-8.786880px;}
.ws0{word-spacing:-8.514480px;}
.ws6{word-spacing:-0.077760px;}
.wsb{word-spacing:0.000000px;}
._3{margin-left:-4.490160px;}
._d{margin-left:-2.262240px;}
._0{margin-left:-1.134000px;}
._2{width:1.053360px;}
._7{width:2.082240px;}
._5{width:3.553440px;}
._4{width:4.686240px;}
._b{width:6.035760px;}
._c{width:7.215840px;}
._a{width:8.886720px;}
._9{width:10.218960px;}
._17{width:12.096000px;}
._6{width:13.147200px;}
._1e{width:14.148720px;}
._14{width:15.150000px;}
._18{width:16.398000px;}
._15{width:19.027920px;}
._1b{width:20.067120px;}
._16{width:21.096000px;}
._1a{width:22.176000px;}
._8{width:23.186880px;}
._19{width:25.128000px;}
._1c{width:26.378640px;}
._1d{width:27.549360px;}
._f{width:28.692000px;}
._e{width:29.718000px;}
._10{width:31.157520px;}
._13{width:32.454000px;}
._21{width:33.894000px;}
._20{width:35.724240px;}
._1f{width:36.774000px;}
._11{width:42.192000px;}
._12{width:43.688880px;}
._22{width:45.318240px;}
._1{width:2694.606000px;}
.fc7{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(238,78,60);}
.fc6{color:rgb(166,166,166);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs9{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs0{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.y3a{bottom:-16.770000px;}
.y3f{bottom:-6.480000px;}
.y39{bottom:-0.030000px;}
.y0{bottom:0.000000px;}
.y35{bottom:1.080000px;}
.y37{bottom:2.490000px;}
.y3{bottom:4.500000px;}
.y40{bottom:5.400000px;}
.yf2{bottom:5.940000px;}
.y70{bottom:6.120000px;}
.yb1{bottom:6.840000px;}
.yb4{bottom:7.020000px;}
.yc9{bottom:7.560000px;}
.y3e{bottom:12.240000px;}
.ye2{bottom:14.580000px;}
.y6f{bottom:14.760000px;}
.y9a{bottom:14.940000px;}
.yc4{bottom:15.120000px;}
.y118{bottom:15.480000px;}
.y167{bottom:15.660000px;}
.yf1{bottom:16.020000px;}
.y44{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.yb3{bottom:24.840000px;}
.ydd{bottom:25.560000px;}
.yc7{bottom:26.820000px;}
.ycd{bottom:27.360000px;}
.yd1{bottom:27.405000px;}
.y3d{bottom:27.720000px;}
.ye1{bottom:34.380000px;}
.y41{bottom:35.820000px;}
.y3c{bottom:41.040000px;}
.y1{bottom:42.660000px;}
.ydc{bottom:46.620000px;}
.yc6{bottom:46.800000px;}
.ycc{bottom:47.160000px;}
.yd0{bottom:47.205000px;}
.y33{bottom:47.880000px;}
.ye0{bottom:54.180000px;}
.ycb{bottom:66.960000px;}
.ycf{bottom:67.005000px;}
.y34{bottom:73.980000px;}
.yaf{bottom:103.320000px;}
.y188{bottom:113.760000px;}
.y166{bottom:116.460000px;}
.y99{bottom:117.000000px;}
.y32{bottom:117.360000px;}
.yae{bottom:121.320000px;}
.yc3{bottom:124.380000px;}
.y135{bottom:126.900000px;}
.y6e{bottom:129.240000px;}
.yf0{bottom:131.400000px;}
.y117{bottom:133.560000px;}
.y31{bottom:137.160000px;}
.y187{bottom:137.520000px;}
.yad{bottom:139.170000px;}
.y98{bottom:140.760000px;}
.yc2{bottom:149.400000px;}
.y134{bottom:150.660000px;}
.y30{bottom:154.440000px;}
.y157{bottom:155.160000px;}
.yef{bottom:155.340000px;}
.yac{bottom:156.990000px;}
.y116{bottom:157.320000px;}
.y186{bottom:161.460000px;}
.y97{bottom:165.420000px;}
.y2f{bottom:171.720000px;}
.yc1{bottom:174.600000px;}
.yab{bottom:174.810000px;}
.yee{bottom:179.100000px;}
.y6d{bottom:179.460000px;}
.y115{bottom:181.080000px;}
.y133{bottom:189.540000px;}
.y96{bottom:190.800000px;}
.y2e{bottom:192.600000px;}
.y156{bottom:194.040000px;}
.yc0{bottom:199.620000px;}
.y185{bottom:200.160000px;}
.yed{bottom:202.860000px;}
.y6c{bottom:204.480000px;}
.y114{bottom:204.840000px;}
.y132{bottom:213.330000px;}
.y2d{bottom:215.310000px;}
.y95{bottom:216.030000px;}
.y155{bottom:217.830000px;}
.y184{bottom:224.130000px;}
.ybf{bottom:224.670000px;}
.yec{bottom:226.650000px;}
.y113{bottom:228.810000px;}
.y6b{bottom:230.070000px;}
.y131{bottom:237.090000px;}
.y94{bottom:239.790000px;}
.y154{bottom:241.590000px;}
.y2c{bottom:244.830000px;}
.y183{bottom:247.890000px;}
.ybe{bottom:250.230000px;}
.yeb{bottom:250.590000px;}
.y112{bottom:252.570000px;}
.y6a{bottom:253.830000px;}
.y130{bottom:261.030000px;}
.y93{bottom:263.550000px;}
.y153{bottom:265.530000px;}
.y2b{bottom:268.950000px;}
.yea{bottom:274.350000px;}
.ybd{bottom:275.250000px;}
.y111{bottom:276.330000px;}
.y69{bottom:277.590000px;}
.y182{bottom:286.590000px;}
.y92{bottom:287.310000px;}
.y2a{bottom:289.110000px;}
.y165{bottom:289.290000px;}
.y12f{bottom:292.890000px;}
.ye9{bottom:298.110000px;}
.ybc{bottom:299.010000px;}
.y110{bottom:300.090000px;}
.y68{bottom:301.350000px;}
.y152{bottom:304.230000px;}
.y29{bottom:309.090000px;}
.y181{bottom:310.530000px;}
.y91{bottom:311.250000px;}
.y164{bottom:313.050000px;}
.y12e{bottom:318.090000px;}
.ye8{bottom:321.870000px;}
.ybb{bottom:322.770000px;}
.y10f{bottom:324.030000px;}
.y67{bottom:325.290000px;}
.y151{bottom:327.990000px;}
.y28{bottom:328.890000px;}
.y180{bottom:334.290000px;}
.y90{bottom:335.010000px;}
.y163{bottom:336.810000px;}
.y12d{bottom:343.470000px;}
.yba{bottom:346.710000px;}
.y10e{bottom:347.790000px;}
.y27{bottom:348.690000px;}
.y66{bottom:349.050000px;}
.y150{bottom:351.930000px;}
.ye7{bottom:353.910000px;}
.y17f{bottom:358.050000px;}
.y8f{bottom:358.770000px;}
.y162{bottom:360.750000px;}
.y26{bottom:368.490000px;}
.yb9{bottom:370.470000px;}
.y10d{bottom:371.550000px;}
.y65{bottom:372.810000px;}
.y12c{bottom:375.330000px;}
.y14f{bottom:375.690000px;}
.ye6{bottom:378.930000px;}
.y8e{bottom:382.530000px;}
.y161{bottom:384.510000px;}
.y25{bottom:388.290000px;}
.yb8{bottom:394.230000px;}
.y64{bottom:396.570000px;}
.y17e{bottom:396.930000px;}
.y12b{bottom:400.890000px;}
.ye5{bottom:404.490000px;}
.y8d{bottom:407.370000px;}
.y24{bottom:408.270000px;}
.y14e{bottom:414.390000px;}
.yb7{bottom:419.250000px;}
.y63{bottom:420.510000px;}
.y17d{bottom:420.690000px;}
.y10c{bottom:421.770000px;}
.y160{bottom:423.210000px;}
.y12a{bottom:425.910000px;}
.y23{bottom:428.070000px;}
.ye4{bottom:428.250000px;}
.y8c{bottom:432.390000px;}
.y14d{bottom:438.330000px;}
.yb6{bottom:443.235000px;}
.y62{bottom:444.315000px;}
.y17c{bottom:444.495000px;}
.ye3{bottom:445.395000px;}
.y10b{bottom:445.575000px;}
.y15f{bottom:447.195000px;}
.y22{bottom:447.915000px;}
.y129{bottom:449.715000px;}
.yb5{bottom:457.635000px;}
.y8b{bottom:457.815000px;}
.y14c{bottom:462.135000px;}
.y21{bottom:467.715000px;}
.y61{bottom:468.075000px;}
.y17b{bottom:468.255000px;}
.y10a{bottom:469.335000px;}
.y128{bottom:473.655000px;}
.y8a{bottom:481.755000px;}
.y14b{bottom:485.895000px;}
.y20{bottom:487.515000px;}
.y60{bottom:491.835000px;}
.y109{bottom:493.095000px;}
.yb2{bottom:495.255000px;}
.y127{bottom:497.415000px;}
.y89{bottom:505.515000px;}
.y17a{bottom:507.135000px;}
.y1f{bottom:507.495000px;}
.y14a{bottom:509.655000px;}
.ydf{bottom:514.155000px;}
.y5f{bottom:515.775000px;}
.y108{bottom:517.035000px;}
.y126{bottom:521.175000px;}
.y1e{bottom:527.295000px;}
.y88{bottom:529.275000px;}
.y179{bottom:530.895000px;}
.yb0{bottom:533.055000px;}
.y15e{bottom:533.595000px;}
.y5e{bottom:539.535000px;}
.y107{bottom:540.795000px;}
.y125{bottom:544.935000px;}
.y1d{bottom:547.095000px;}
.y149{bottom:548.535000px;}
.y87{bottom:553.035000px;}
.y178{bottom:554.655000px;}
.y5d{bottom:563.295000px;}
.y106{bottom:564.555000px;}
.y1c{bottom:566.895000px;}
.y148{bottom:572.295000px;}
.y86{bottom:576.975000px;}
.y177{bottom:578.595000px;}
.yde{bottom:582.735000px;}
.y1b{bottom:586.695000px;}
.y5c{bottom:587.055000px;}
.y105{bottom:588.315000px;}
.y147{bottom:596.055000px;}
.y85{bottom:600.735000px;}
.y124{bottom:601.995000px;}
.y176{bottom:602.355000px;}
.ydb{bottom:604.695000px;}
.y1a{bottom:606.675000px;}
.y5b{bottom:612.255000px;}
.y15d{bottom:619.995000px;}
.y84{bottom:624.495000px;}
.y19{bottom:626.475000px;}
.y123{bottom:627.375000px;}
.y146{bottom:634.935000px;}
.y104{bottom:636.015000px;}
.y5a{bottom:637.275000px;}
.y175{bottom:641.055000px;}
.y15c{bottom:643.755000px;}
.y83{bottom:648.255000px;}
.y122{bottom:651.315000px;}
.y18{bottom:655.995000px;}
.y145{bottom:658.695000px;}
.y103{bottom:659.775000px;}
.y59{bottom:661.035000px;}
.y174{bottom:664.995000px;}
.y82{bottom:672.195000px;}
.yda{bottom:674.895000px;}
.y121{bottom:675.075000px;}
.y17{bottom:681.225000px;}
.y144{bottom:682.665000px;}
.y102{bottom:683.565000px;}
.y58{bottom:684.825000px;}
.y173{bottom:688.785000px;}
.y81{bottom:696.885000px;}
.y120{bottom:698.865000px;}
.y16{bottom:699.225000px;}
.yd9{bottom:699.945000px;}
.y15b{bottom:706.425000px;}
.y101{bottom:707.505000px;}
.y57{bottom:708.765000px;}
.y172{bottom:712.545000px;}
.y143{bottom:721.365000px;}
.y80{bottom:722.265000px;}
.y11f{bottom:722.625000px;}
.y15{bottom:723.345000px;}
.yd8{bottom:725.145000px;}
.y100{bottom:731.265000px;}
.y56{bottom:732.525000px;}
.y14{bottom:734.145000px;}
.y171{bottom:736.305000px;}
.y142{bottom:745.125000px;}
.y11e{bottom:746.565000px;}
.y7f{bottom:747.465000px;}
.yd7{bottom:748.905000px;}
.yaa{bottom:749.985000px;}
.yff{bottom:755.025000px;}
.y55{bottom:756.285000px;}
.y13{bottom:759.885000px;}
.y141{bottom:769.065000px;}
.y11d{bottom:770.325000px;}
.y12{bottom:770.685000px;}
.y7e{bottom:771.225000px;}
.yd6{bottom:772.665000px;}
.ya9{bottom:775.005000px;}
.y170{bottom:775.185000px;}
.yfe{bottom:778.785000px;}
.y54{bottom:780.045000px;}
.y15a{bottom:792.825000px;}
.y7d{bottom:795.885000px;}
.yd5{bottom:796.425000px;}
.y11{bottom:796.605000px;}
.y16f{bottom:798.945000px;}
.ya8{bottom:800.025000px;}
.y11c{bottom:802.185000px;}
.yfd{bottom:802.545000px;}
.y53{bottom:803.985000px;}
.y10{bottom:807.405000px;}
.y140{bottom:807.765000px;}
.y159{bottom:816.585000px;}
.yd4{bottom:820.365000px;}
.y7c{bottom:821.265000px;}
.y16e{bottom:822.705000px;}
.ya7{bottom:825.225000px;}
.yfc{bottom:826.485000px;}
.y11b{bottom:827.385000px;}
.y52{bottom:827.745000px;}
.y13f{bottom:831.525000px;}
.yf{bottom:833.145000px;}
.yd3{bottom:845.025000px;}
.y7b{bottom:846.465000px;}
.y16d{bottom:846.645000px;}
.ya6{bottom:848.985000px;}
.yfb{bottom:850.245000px;}
.y51{bottom:851.505000px;}
.y11a{bottom:852.765000px;}
.ye{bottom:854.205000px;}
.y13e{bottom:855.465000px;}
.yd{bottom:864.645000px;}
.yd2{bottom:869.145000px;}
.y7a{bottom:870.225000px;}
.y16c{bottom:870.405000px;}
.ya5{bottom:872.745000px;}
.y50{bottom:875.265000px;}
.y119{bottom:876.525000px;}
.y13d{bottom:879.225000px;}
.yc{bottom:882.645000px;}
.yce{bottom:883.545000px;}
.y79{bottom:893.985000px;}
.ya4{bottom:896.505000px;}
.y4f{bottom:899.205000px;}
.yfa{bottom:900.465000px;}
.y158{bottom:902.985000px;}
.yb{bottom:908.565000px;}
.y16b{bottom:909.285000px;}
.y78{bottom:917.790000px;}
.y13c{bottom:917.970000px;}
.ya3{bottom:920.490000px;}
.y4e{bottom:923.010000px;}
.yf9{bottom:924.270000px;}
.y16a{bottom:933.090000px;}
.ya{bottom:941.010000px;}
.y77{bottom:941.730000px;}
.y13b{bottom:941.910000px;}
.ya2{bottom:944.250000px;}
.y4d{bottom:946.770000px;}
.yf8{bottom:948.030000px;}
.y169{bottom:956.850000px;}
.yca{bottom:964.950000px;}
.y76{bottom:965.490000px;}
.y13a{bottom:965.670000px;}
.ya1{bottom:968.010000px;}
.y4c{bottom:970.530000px;}
.y9{bottom:970.890000px;}
.yf7{bottom:971.790000px;}
.y168{bottom:980.610000px;}
.y36{bottom:983.880000px;}
.y38{bottom:986.580000px;}
.y75{bottom:990.150000px;}
.ya0{bottom:991.770000px;}
.y8{bottom:993.390000px;}
.y4b{bottom:994.290000px;}
.yf6{bottom:995.730000px;}
.y139{bottom:1004.370000px;}
.y74{bottom:1015.710000px;}
.y4a{bottom:1018.230000px;}
.yf5{bottom:1019.490000px;}
.y7{bottom:1027.590000px;}
.y138{bottom:1028.310000px;}
.y9f{bottom:1040.370000px;}
.y73{bottom:1040.730000px;}
.y49{bottom:1041.990000px;}
.yf4{bottom:1043.250000px;}
.yc8{bottom:1046.310000px;}
.y137{bottom:1052.070000px;}
.y6{bottom:1062.870000px;}
.y72{bottom:1064.490000px;}
.y9e{bottom:1065.390000px;}
.y48{bottom:1065.750000px;}
.yf3{bottom:1067.010000px;}
.yc5{bottom:1068.270000px;}
.y136{bottom:1075.830000px;}
.y71{bottom:1088.250000px;}
.y47{bottom:1089.510000px;}
.y9d{bottom:1090.950000px;}
.y5{bottom:1101.030000px;}
.y46{bottom:1113.450000px;}
.y9c{bottom:1114.710000px;}
.y45{bottom:1138.110000px;}
.y9b{bottom:1138.470000px;}
.y4{bottom:1139.190000px;}
.y43{bottom:1183.500000px;}
.y42{bottom:1197.540000px;}
.y3b{bottom:1207.800000px;}
.h18{height:11.700000px;}
.h16{height:14.400000px;}
.h2d{height:18.000000px;}
.h20{height:18.180000px;}
.h23{height:19.065000px;}
.h28{height:21.225000px;}
.h15{height:24.660000px;}
.h1b{height:28.705078px;}
.h1c{height:36.168398px;}
.h26{height:36.885000px;}
.h25{height:37.065000px;}
.h2{height:38.405391px;}
.h17{height:38.464805px;}
.h5{height:38.469727px;}
.hb{height:38.671172px;}
.hd{height:39.183750px;}
.ha{height:39.810234px;}
.h1e{height:40.843828px;}
.h1d{height:43.057617px;}
.h14{height:47.650430px;}
.h1a{height:49.680000px;}
.h6{height:51.292969px;}
.h19{height:52.817344px;}
.h24{height:52.998047px;}
.h4{height:53.709961px;}
.h22{height:54.421875px;}
.h9{height:58.621992px;}
.h10{height:58.651172px;}
.hc{height:59.439023px;}
.h2e{height:60.046875px;}
.he{height:60.226875px;}
.h2b{height:60.645000px;}
.h27{height:60.825000px;}
.h13{height:61.740000px;}
.hf{height:65.837812px;}
.h3{height:65.884219px;}
.h2c{height:67.845000px;}
.h8{height:70.628906px;}
.h12{height:70.664062px;}
.h11{height:72.562500px;}
.h1f{height:80.464922px;}
.h29{height:80.625000px;}
.h2a{height:80.662500px;}
.h7{height:81.078047px;}
.h21{height:187.410000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:75.240000px;}
.w10{width:75.420000px;}
.w11{width:77.929500px;}
.w2{width:86.580000px;}
.wa{width:86.929500px;}
.w8{width:86.940000px;}
.we{width:93.621000px;}
.w6{width:96.480000px;}
.w19{width:99.576000px;}
.w18{width:104.220000px;}
.w16{width:109.245000px;}
.wb{width:110.901000px;}
.w15{width:119.361000px;}
.w14{width:119.376000px;}
.w13{width:119.700000px;}
.wf{width:120.405000px;}
.wd{width:120.636000px;}
.w1b{width:124.365000px;}
.w12{width:124.581000px;}
.w17{width:127.461000px;}
.w4{width:135.000000px;}
.w5{width:135.540000px;}
.w1a{width:144.921000px;}
.wc{width:147.600000px;}
.w7{width:168.660000px;}
.w3{width:626.400000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:7.549500px;}
.x10{left:10.950000px;}
.x16{left:16.416000px;}
.x18{left:21.135000px;}
.x14{left:42.630000px;}
.x11{left:93.240000px;}
.x1f{left:104.446500px;}
.x1{left:108.036000px;}
.x15{left:121.860000px;}
.x9{left:124.056000px;}
.x3{left:126.576000px;}
.x7{left:129.096000px;}
.x19{left:131.436000px;}
.xb{left:137.916000px;}
.x2e{left:162.030000px;}
.x1a{left:163.110000px;}
.x2a{left:184.005000px;}
.x25{left:187.245000px;}
.x21{left:192.105000px;}
.x6{left:209.190000px;}
.x1d{left:236.730000px;}
.x1b{left:239.790000px;}
.xd{left:247.170000px;}
.x22{left:303.735000px;}
.xe{left:308.955000px;}
.xa{left:311.115000px;}
.x26{left:312.735000px;}
.xc{left:318.675000px;}
.x8{left:356.475000px;}
.x17{left:374.040000px;}
.x4{left:382.395000px;}
.x2b{left:417.315000px;}
.x27{left:433.335000px;}
.x5{left:436.035000px;}
.x2{left:446.475000px;}
.x23{left:452.235000px;}
.x12{left:454.965000px;}
.x2c{left:517.620000px;}
.x28{left:553.440000px;}
.x24{left:573.780000px;}
.x30{left:654.120000px;}
.x1c{left:655.200000px;}
.x2f{left:656.280000px;}
.x1e{left:657.900000px;}
.x2d{left:663.450000px;}
.x13{left:667.440000px;}
.x29{left:673.530000px;}
.xf{left:806.400000px;}
@media print{
.v5{vertical-align:-29.440000pt;}
.v1{vertical-align:-26.880000pt;}
.v3{vertical-align:-24.320000pt;}
.v6{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.v4{vertical-align:29.440000pt;}
.lsb{letter-spacing:-1.680000pt;}
.ls10{letter-spacing:-0.476800pt;}
.ls11{letter-spacing:-0.445333pt;}
.lsa{letter-spacing:-0.288000pt;}
.ls6{letter-spacing:-0.242133pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.153600pt;}
.lsd{letter-spacing:-0.124800pt;}
.lsf{letter-spacing:-0.075733pt;}
.ls7{letter-spacing:-0.057600pt;}
.lse{letter-spacing:-0.010880pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.212480pt;}
.ls8{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.272533pt;}
.ls12{letter-spacing:0.272640pt;}
.ls16{letter-spacing:0.290133pt;}
.ls3{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.592000pt;}
.ls15{letter-spacing:1.568000pt;}
.lsc{letter-spacing:17.440000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.206400pt;}
.ws8{word-spacing:-13.552533pt;}
.ws4{word-spacing:-13.280000pt;}
.ws10{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.947520pt;}
.ws11{word-spacing:-10.401280pt;}
.wsd{word-spacing:-9.357867pt;}
.wsc{word-spacing:-9.308800pt;}
.ws12{word-spacing:-9.123413pt;}
.wsf{word-spacing:-8.988267pt;}
.ws9{word-spacing:-8.833280pt;}
.ws3{word-spacing:-8.640000pt;}
.wse{word-spacing:-8.356480pt;}
.wsa{word-spacing:-8.208000pt;}
.ws1{word-spacing:-7.810560pt;}
.ws0{word-spacing:-7.568427pt;}
.ws6{word-spacing:-0.069120pt;}
.wsb{word-spacing:0.000000pt;}
._3{margin-left:-3.991253pt;}
._d{margin-left:-2.010880pt;}
._0{margin-left:-1.008000pt;}
._2{width:0.936320pt;}
._7{width:1.850880pt;}
._5{width:3.158613pt;}
._4{width:4.165547pt;}
._b{width:5.365120pt;}
._c{width:6.414080pt;}
._a{width:7.899307pt;}
._9{width:9.083520pt;}
._17{width:10.752000pt;}
._6{width:11.686400pt;}
._1e{width:12.576640pt;}
._14{width:13.466667pt;}
._18{width:14.576000pt;}
._15{width:16.913707pt;}
._1b{width:17.837440pt;}
._16{width:18.752000pt;}
._1a{width:19.712000pt;}
._8{width:20.610560pt;}
._19{width:22.336000pt;}
._1c{width:23.447680pt;}
._1d{width:24.488320pt;}
._f{width:25.504000pt;}
._e{width:26.416000pt;}
._10{width:27.695573pt;}
._13{width:28.848000pt;}
._21{width:30.128000pt;}
._20{width:31.754880pt;}
._1f{width:32.688000pt;}
._11{width:37.504000pt;}
._12{width:38.834560pt;}
._22{width:40.282880pt;}
._1{width:2395.205333pt;}
.fs9{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs0{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.y3a{bottom:-14.906667pt;}
.y3f{bottom:-5.760000pt;}
.y39{bottom:-0.026667pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:0.960000pt;}
.y37{bottom:2.213333pt;}
.y3{bottom:4.000000pt;}
.y40{bottom:4.800000pt;}
.yf2{bottom:5.280000pt;}
.y70{bottom:5.440000pt;}
.yb1{bottom:6.080000pt;}
.yb4{bottom:6.240000pt;}
.yc9{bottom:6.720000pt;}
.y3e{bottom:10.880000pt;}
.ye2{bottom:12.960000pt;}
.y6f{bottom:13.120000pt;}
.y9a{bottom:13.280000pt;}
.yc4{bottom:13.440000pt;}
.y118{bottom:13.760000pt;}
.y167{bottom:13.920000pt;}
.yf1{bottom:14.240000pt;}
.y44{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.yb3{bottom:22.080000pt;}
.ydd{bottom:22.720000pt;}
.yc7{bottom:23.840000pt;}
.ycd{bottom:24.320000pt;}
.yd1{bottom:24.360000pt;}
.y3d{bottom:24.640000pt;}
.ye1{bottom:30.560000pt;}
.y41{bottom:31.840000pt;}
.y3c{bottom:36.480000pt;}
.y1{bottom:37.920000pt;}
.ydc{bottom:41.440000pt;}
.yc6{bottom:41.600000pt;}
.ycc{bottom:41.920000pt;}
.yd0{bottom:41.960000pt;}
.y33{bottom:42.560000pt;}
.ye0{bottom:48.160000pt;}
.ycb{bottom:59.520000pt;}
.ycf{bottom:59.560000pt;}
.y34{bottom:65.760000pt;}
.yaf{bottom:91.840000pt;}
.y188{bottom:101.120000pt;}
.y166{bottom:103.520000pt;}
.y99{bottom:104.000000pt;}
.y32{bottom:104.320000pt;}
.yae{bottom:107.840000pt;}
.yc3{bottom:110.560000pt;}
.y135{bottom:112.800000pt;}
.y6e{bottom:114.880000pt;}
.yf0{bottom:116.800000pt;}
.y117{bottom:118.720000pt;}
.y31{bottom:121.920000pt;}
.y187{bottom:122.240000pt;}
.yad{bottom:123.706667pt;}
.y98{bottom:125.120000pt;}
.yc2{bottom:132.800000pt;}
.y134{bottom:133.920000pt;}
.y30{bottom:137.280000pt;}
.y157{bottom:137.920000pt;}
.yef{bottom:138.080000pt;}
.yac{bottom:139.546667pt;}
.y116{bottom:139.840000pt;}
.y186{bottom:143.520000pt;}
.y97{bottom:147.040000pt;}
.y2f{bottom:152.640000pt;}
.yc1{bottom:155.200000pt;}
.yab{bottom:155.386667pt;}
.yee{bottom:159.200000pt;}
.y6d{bottom:159.520000pt;}
.y115{bottom:160.960000pt;}
.y133{bottom:168.480000pt;}
.y96{bottom:169.600000pt;}
.y2e{bottom:171.200000pt;}
.y156{bottom:172.480000pt;}
.yc0{bottom:177.440000pt;}
.y185{bottom:177.920000pt;}
.yed{bottom:180.320000pt;}
.y6c{bottom:181.760000pt;}
.y114{bottom:182.080000pt;}
.y132{bottom:189.626667pt;}
.y2d{bottom:191.386667pt;}
.y95{bottom:192.026667pt;}
.y155{bottom:193.626667pt;}
.y184{bottom:199.226667pt;}
.ybf{bottom:199.706667pt;}
.yec{bottom:201.466667pt;}
.y113{bottom:203.386667pt;}
.y6b{bottom:204.506667pt;}
.y131{bottom:210.746667pt;}
.y94{bottom:213.146667pt;}
.y154{bottom:214.746667pt;}
.y2c{bottom:217.626667pt;}
.y183{bottom:220.346667pt;}
.ybe{bottom:222.426667pt;}
.yeb{bottom:222.746667pt;}
.y112{bottom:224.506667pt;}
.y6a{bottom:225.626667pt;}
.y130{bottom:232.026667pt;}
.y93{bottom:234.266667pt;}
.y153{bottom:236.026667pt;}
.y2b{bottom:239.066667pt;}
.yea{bottom:243.866667pt;}
.ybd{bottom:244.666667pt;}
.y111{bottom:245.626667pt;}
.y69{bottom:246.746667pt;}
.y182{bottom:254.746667pt;}
.y92{bottom:255.386667pt;}
.y2a{bottom:256.986667pt;}
.y165{bottom:257.146667pt;}
.y12f{bottom:260.346667pt;}
.ye9{bottom:264.986667pt;}
.ybc{bottom:265.786667pt;}
.y110{bottom:266.746667pt;}
.y68{bottom:267.866667pt;}
.y152{bottom:270.426667pt;}
.y29{bottom:274.746667pt;}
.y181{bottom:276.026667pt;}
.y91{bottom:276.666667pt;}
.y164{bottom:278.266667pt;}
.y12e{bottom:282.746667pt;}
.ye8{bottom:286.106667pt;}
.ybb{bottom:286.906667pt;}
.y10f{bottom:288.026667pt;}
.y67{bottom:289.146667pt;}
.y151{bottom:291.546667pt;}
.y28{bottom:292.346667pt;}
.y180{bottom:297.146667pt;}
.y90{bottom:297.786667pt;}
.y163{bottom:299.386667pt;}
.y12d{bottom:305.306667pt;}
.yba{bottom:308.186667pt;}
.y10e{bottom:309.146667pt;}
.y27{bottom:309.946667pt;}
.y66{bottom:310.266667pt;}
.y150{bottom:312.826667pt;}
.ye7{bottom:314.586667pt;}
.y17f{bottom:318.266667pt;}
.y8f{bottom:318.906667pt;}
.y162{bottom:320.666667pt;}
.y26{bottom:327.546667pt;}
.yb9{bottom:329.306667pt;}
.y10d{bottom:330.266667pt;}
.y65{bottom:331.386667pt;}
.y12c{bottom:333.626667pt;}
.y14f{bottom:333.946667pt;}
.ye6{bottom:336.826667pt;}
.y8e{bottom:340.026667pt;}
.y161{bottom:341.786667pt;}
.y25{bottom:345.146667pt;}
.yb8{bottom:350.426667pt;}
.y64{bottom:352.506667pt;}
.y17e{bottom:352.826667pt;}
.y12b{bottom:356.346667pt;}
.ye5{bottom:359.546667pt;}
.y8d{bottom:362.106667pt;}
.y24{bottom:362.906667pt;}
.y14e{bottom:368.346667pt;}
.yb7{bottom:372.666667pt;}
.y63{bottom:373.786667pt;}
.y17d{bottom:373.946667pt;}
.y10c{bottom:374.906667pt;}
.y160{bottom:376.186667pt;}
.y12a{bottom:378.586667pt;}
.y23{bottom:380.506667pt;}
.ye4{bottom:380.666667pt;}
.y8c{bottom:384.346667pt;}
.y14d{bottom:389.626667pt;}
.yb6{bottom:393.986667pt;}
.y62{bottom:394.946667pt;}
.y17c{bottom:395.106667pt;}
.ye3{bottom:395.906667pt;}
.y10b{bottom:396.066667pt;}
.y15f{bottom:397.506667pt;}
.y22{bottom:398.146667pt;}
.y129{bottom:399.746667pt;}
.yb5{bottom:406.786667pt;}
.y8b{bottom:406.946667pt;}
.y14c{bottom:410.786667pt;}
.y21{bottom:415.746667pt;}
.y61{bottom:416.066667pt;}
.y17b{bottom:416.226667pt;}
.y10a{bottom:417.186667pt;}
.y128{bottom:421.026667pt;}
.y8a{bottom:428.226667pt;}
.y14b{bottom:431.906667pt;}
.y20{bottom:433.346667pt;}
.y60{bottom:437.186667pt;}
.y109{bottom:438.306667pt;}
.yb2{bottom:440.226667pt;}
.y127{bottom:442.146667pt;}
.y89{bottom:449.346667pt;}
.y17a{bottom:450.786667pt;}
.y1f{bottom:451.106667pt;}
.y14a{bottom:453.026667pt;}
.ydf{bottom:457.026667pt;}
.y5f{bottom:458.466667pt;}
.y108{bottom:459.586667pt;}
.y126{bottom:463.266667pt;}
.y1e{bottom:468.706667pt;}
.y88{bottom:470.466667pt;}
.y179{bottom:471.906667pt;}
.yb0{bottom:473.826667pt;}
.y15e{bottom:474.306667pt;}
.y5e{bottom:479.586667pt;}
.y107{bottom:480.706667pt;}
.y125{bottom:484.386667pt;}
.y1d{bottom:486.306667pt;}
.y149{bottom:487.586667pt;}
.y87{bottom:491.586667pt;}
.y178{bottom:493.026667pt;}
.y5d{bottom:500.706667pt;}
.y106{bottom:501.826667pt;}
.y1c{bottom:503.906667pt;}
.y148{bottom:508.706667pt;}
.y86{bottom:512.866667pt;}
.y177{bottom:514.306667pt;}
.yde{bottom:517.986667pt;}
.y1b{bottom:521.506667pt;}
.y5c{bottom:521.826667pt;}
.y105{bottom:522.946667pt;}
.y147{bottom:529.826667pt;}
.y85{bottom:533.986667pt;}
.y124{bottom:535.106667pt;}
.y176{bottom:535.426667pt;}
.ydb{bottom:537.506667pt;}
.y1a{bottom:539.266667pt;}
.y5b{bottom:544.226667pt;}
.y15d{bottom:551.106667pt;}
.y84{bottom:555.106667pt;}
.y19{bottom:556.866667pt;}
.y123{bottom:557.666667pt;}
.y146{bottom:564.386667pt;}
.y104{bottom:565.346667pt;}
.y5a{bottom:566.466667pt;}
.y175{bottom:569.826667pt;}
.y15c{bottom:572.226667pt;}
.y83{bottom:576.226667pt;}
.y122{bottom:578.946667pt;}
.y18{bottom:583.106667pt;}
.y145{bottom:585.506667pt;}
.y103{bottom:586.466667pt;}
.y59{bottom:587.586667pt;}
.y174{bottom:591.106667pt;}
.y82{bottom:597.506667pt;}
.yda{bottom:599.906667pt;}
.y121{bottom:600.066667pt;}
.y17{bottom:605.533333pt;}
.y144{bottom:606.813333pt;}
.y102{bottom:607.613333pt;}
.y58{bottom:608.733333pt;}
.y173{bottom:612.253333pt;}
.y81{bottom:619.453333pt;}
.y120{bottom:621.213333pt;}
.y16{bottom:621.533333pt;}
.yd9{bottom:622.173333pt;}
.y15b{bottom:627.933333pt;}
.y101{bottom:628.893333pt;}
.y57{bottom:630.013333pt;}
.y172{bottom:633.373333pt;}
.y143{bottom:641.213333pt;}
.y80{bottom:642.013333pt;}
.y11f{bottom:642.333333pt;}
.y15{bottom:642.973333pt;}
.yd8{bottom:644.573333pt;}
.y100{bottom:650.013333pt;}
.y56{bottom:651.133333pt;}
.y14{bottom:652.573333pt;}
.y171{bottom:654.493333pt;}
.y142{bottom:662.333333pt;}
.y11e{bottom:663.613333pt;}
.y7f{bottom:664.413333pt;}
.yd7{bottom:665.693333pt;}
.yaa{bottom:666.653333pt;}
.yff{bottom:671.133333pt;}
.y55{bottom:672.253333pt;}
.y13{bottom:675.453333pt;}
.y141{bottom:683.613333pt;}
.y11d{bottom:684.733333pt;}
.y12{bottom:685.053333pt;}
.y7e{bottom:685.533333pt;}
.yd6{bottom:686.813333pt;}
.ya9{bottom:688.893333pt;}
.y170{bottom:689.053333pt;}
.yfe{bottom:692.253333pt;}
.y54{bottom:693.373333pt;}
.y15a{bottom:704.733333pt;}
.y7d{bottom:707.453333pt;}
.yd5{bottom:707.933333pt;}
.y11{bottom:708.093333pt;}
.y16f{bottom:710.173333pt;}
.ya8{bottom:711.133333pt;}
.y11c{bottom:713.053333pt;}
.yfd{bottom:713.373333pt;}
.y53{bottom:714.653333pt;}
.y10{bottom:717.693333pt;}
.y140{bottom:718.013333pt;}
.y159{bottom:725.853333pt;}
.yd4{bottom:729.213333pt;}
.y7c{bottom:730.013333pt;}
.y16e{bottom:731.293333pt;}
.ya7{bottom:733.533333pt;}
.yfc{bottom:734.653333pt;}
.y11b{bottom:735.453333pt;}
.y52{bottom:735.773333pt;}
.y13f{bottom:739.133333pt;}
.yf{bottom:740.573333pt;}
.yd3{bottom:751.133333pt;}
.y7b{bottom:752.413333pt;}
.y16d{bottom:752.573333pt;}
.ya6{bottom:754.653333pt;}
.yfb{bottom:755.773333pt;}
.y51{bottom:756.893333pt;}
.y11a{bottom:758.013333pt;}
.ye{bottom:759.293333pt;}
.y13e{bottom:760.413333pt;}
.yd{bottom:768.573333pt;}
.yd2{bottom:772.573333pt;}
.y7a{bottom:773.533333pt;}
.y16c{bottom:773.693333pt;}
.ya5{bottom:775.773333pt;}
.y50{bottom:778.013333pt;}
.y119{bottom:779.133333pt;}
.y13d{bottom:781.533333pt;}
.yc{bottom:784.573333pt;}
.yce{bottom:785.373333pt;}
.y79{bottom:794.653333pt;}
.ya4{bottom:796.893333pt;}
.y4f{bottom:799.293333pt;}
.yfa{bottom:800.413333pt;}
.y158{bottom:802.653333pt;}
.yb{bottom:807.613333pt;}
.y16b{bottom:808.253333pt;}
.y78{bottom:815.813333pt;}
.y13c{bottom:815.973333pt;}
.ya3{bottom:818.213333pt;}
.y4e{bottom:820.453333pt;}
.yf9{bottom:821.573333pt;}
.y16a{bottom:829.413333pt;}
.ya{bottom:836.453333pt;}
.y77{bottom:837.093333pt;}
.y13b{bottom:837.253333pt;}
.ya2{bottom:839.333333pt;}
.y4d{bottom:841.573333pt;}
.yf8{bottom:842.693333pt;}
.y169{bottom:850.533333pt;}
.yca{bottom:857.733333pt;}
.y76{bottom:858.213333pt;}
.y13a{bottom:858.373333pt;}
.ya1{bottom:860.453333pt;}
.y4c{bottom:862.693333pt;}
.y9{bottom:863.013333pt;}
.yf7{bottom:863.813333pt;}
.y168{bottom:871.653333pt;}
.y36{bottom:874.560000pt;}
.y38{bottom:876.960000pt;}
.y75{bottom:880.133333pt;}
.ya0{bottom:881.573333pt;}
.y8{bottom:883.013333pt;}
.y4b{bottom:883.813333pt;}
.yf6{bottom:885.093333pt;}
.y139{bottom:892.773333pt;}
.y74{bottom:902.853333pt;}
.y4a{bottom:905.093333pt;}
.yf5{bottom:906.213333pt;}
.y7{bottom:913.413333pt;}
.y138{bottom:914.053333pt;}
.y9f{bottom:924.773333pt;}
.y73{bottom:925.093333pt;}
.y49{bottom:926.213333pt;}
.yf4{bottom:927.333333pt;}
.yc8{bottom:930.053333pt;}
.y137{bottom:935.173333pt;}
.y6{bottom:944.773333pt;}
.y72{bottom:946.213333pt;}
.y9e{bottom:947.013333pt;}
.y48{bottom:947.333333pt;}
.yf3{bottom:948.453333pt;}
.yc5{bottom:949.573333pt;}
.y136{bottom:956.293333pt;}
.y71{bottom:967.333333pt;}
.y47{bottom:968.453333pt;}
.y9d{bottom:969.733333pt;}
.y5{bottom:978.693333pt;}
.y46{bottom:989.733333pt;}
.y9c{bottom:990.853333pt;}
.y45{bottom:1011.653333pt;}
.y9b{bottom:1011.973333pt;}
.y4{bottom:1012.613333pt;}
.y43{bottom:1052.000000pt;}
.y42{bottom:1064.480000pt;}
.y3b{bottom:1073.600000pt;}
.h18{height:10.400000pt;}
.h16{height:12.800000pt;}
.h2d{height:16.000000pt;}
.h20{height:16.160000pt;}
.h23{height:16.946667pt;}
.h28{height:18.866667pt;}
.h15{height:21.920000pt;}
.h1b{height:25.515625pt;}
.h1c{height:32.149687pt;}
.h26{height:32.786667pt;}
.h25{height:32.946667pt;}
.h2{height:34.138125pt;}
.h17{height:34.190937pt;}
.h5{height:34.195312pt;}
.hb{height:34.374375pt;}
.hd{height:34.830000pt;}
.ha{height:35.386875pt;}
.h1e{height:36.305625pt;}
.h1d{height:38.273438pt;}
.h14{height:42.355937pt;}
.h1a{height:44.160000pt;}
.h6{height:45.593750pt;}
.h19{height:46.948750pt;}
.h24{height:47.109375pt;}
.h4{height:47.742188pt;}
.h22{height:48.375000pt;}
.h9{height:52.108438pt;}
.h10{height:52.134375pt;}
.hc{height:52.834688pt;}
.h2e{height:53.375000pt;}
.he{height:53.535000pt;}
.h2b{height:53.906667pt;}
.h27{height:54.066667pt;}
.h13{height:54.880000pt;}
.hf{height:58.522500pt;}
.h3{height:58.563750pt;}
.h2c{height:60.306667pt;}
.h8{height:62.781250pt;}
.h12{height:62.812500pt;}
.h11{height:64.500000pt;}
.h1f{height:71.524375pt;}
.h29{height:71.666667pt;}
.h2a{height:71.700000pt;}
.h7{height:72.069375pt;}
.h21{height:166.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:66.880000pt;}
.w10{width:67.040000pt;}
.w11{width:69.270667pt;}
.w2{width:76.960000pt;}
.wa{width:77.270667pt;}
.w8{width:77.280000pt;}
.we{width:83.218667pt;}
.w6{width:85.760000pt;}
.w19{width:88.512000pt;}
.w18{width:92.640000pt;}
.w16{width:97.106667pt;}
.wb{width:98.578667pt;}
.w15{width:106.098667pt;}
.w14{width:106.112000pt;}
.w13{width:106.400000pt;}
.wf{width:107.026667pt;}
.wd{width:107.232000pt;}
.w1b{width:110.546667pt;}
.w12{width:110.738667pt;}
.w17{width:113.298667pt;}
.w4{width:120.000000pt;}
.w5{width:120.480000pt;}
.w1a{width:128.818667pt;}
.wc{width:131.200000pt;}
.w7{width:149.920000pt;}
.w3{width:556.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.710667pt;}
.x10{left:9.733333pt;}
.x16{left:14.592000pt;}
.x18{left:18.786667pt;}
.x14{left:37.893333pt;}
.x11{left:82.880000pt;}
.x1f{left:92.841333pt;}
.x1{left:96.032000pt;}
.x15{left:108.320000pt;}
.x9{left:110.272000pt;}
.x3{left:112.512000pt;}
.x7{left:114.752000pt;}
.x19{left:116.832000pt;}
.xb{left:122.592000pt;}
.x2e{left:144.026667pt;}
.x1a{left:144.986667pt;}
.x2a{left:163.560000pt;}
.x25{left:166.440000pt;}
.x21{left:170.760000pt;}
.x6{left:185.946667pt;}
.x1d{left:210.426667pt;}
.x1b{left:213.146667pt;}
.xd{left:219.706667pt;}
.x22{left:269.986667pt;}
.xe{left:274.626667pt;}
.xa{left:276.546667pt;}
.x26{left:277.986667pt;}
.xc{left:283.266667pt;}
.x8{left:316.866667pt;}
.x17{left:332.480000pt;}
.x4{left:339.906667pt;}
.x2b{left:370.946667pt;}
.x27{left:385.186667pt;}
.x5{left:387.586667pt;}
.x2{left:396.866667pt;}
.x23{left:401.986667pt;}
.x12{left:404.413333pt;}
.x2c{left:460.106667pt;}
.x28{left:491.946667pt;}
.x24{left:510.026667pt;}
.x30{left:581.440000pt;}
.x1c{left:582.400000pt;}
.x2f{left:583.360000pt;}
.x1e{left:584.800000pt;}
.x2d{left:589.733333pt;}
.x13{left:593.280000pt;}
.x29{left:598.693333pt;}
.xf{left:716.800000pt;}
}




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