
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_63a027aa969327c1b613e68b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.810547;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_fc39399395ad6004f1e17e88.woff')format("woff");}.ff3{font-family:ff3;line-height:0.810547;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_cd78194986cb1276f4f3c58a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_17983184ea2fb4541976c0e7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff6{font-family:ff6;line-height:0.813477;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_23990cbd4dbf3186afd9a0da.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0edef522843df15ff4ccadac.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4cc31f7659b4514e1d859665.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_38a59ccb64d9b965b7562189.woff')format("woff");}.ffa{font-family:ffa;line-height:0.978027;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_b076b0d563ef087edb247ef3.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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0954919159b0b025a80e807d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.978027;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;}
.v3{vertical-align:21.000000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.924000px;}
.lsd{letter-spacing:-0.774000px;}
.ls19{letter-spacing:-0.702000px;}
.ls13{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls6{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.259800px;}
.lsf{letter-spacing:-0.226200px;}
.ls7{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.lse{letter-spacing:0.206400px;}
.lsc{letter-spacing:0.259800px;}
.ls16{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.513600px;}
.ls10{letter-spacing:0.828000px;}
.ls17{letter-spacing:2.304000px;}
.ls3{letter-spacing:13.140000px;}
.ls12{letter-spacing:22.986720px;}
.ls1d{letter-spacing:36.090720px;}
.ls2{letter-spacing:51.996000px;}
.ls1c{letter-spacing:65.610720px;}
.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;}
}
.wsf{word-spacing:-18.000000px;}
.wse{word-spacing:-17.712000px;}
.ws2{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.ws10{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.580000px;}
.ws0{word-spacing:-14.506440px;}
.ws7{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._5{margin-left:-4.292880px;}
._1{margin-left:-3.179520px;}
._6{margin-left:-2.063040px;}
._2{margin-left:-1.059840px;}
._0{width:1.185840px;}
._9{width:2.629440px;}
._e{width:3.654720px;}
._8{width:4.661280px;}
._c{width:5.976000px;}
._b{width:7.410240px;}
._10{width:8.683920px;}
._13{width:9.932400px;}
._12{width:11.913360px;}
._a{width:13.014720px;}
._f{width:16.434000px;}
._11{width:17.519040px;}
._d{width:19.481760px;}
._3{width:32.366880px;}
._4{width:33.698640px;}
._7{width:51.702480px;}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y16{bottom:5.760000px;}
.y125{bottom:6.300000px;}
.y144{bottom:8.100000px;}
.y146{bottom:8.280000px;}
.y130{bottom:9.000000px;}
.ycb{bottom:10.080000px;}
.y142{bottom:10.260000px;}
.y9e{bottom:10.440000px;}
.y95{bottom:10.620000px;}
.yb9{bottom:10.650000px;}
.yad{bottom:10.800000px;}
.y121{bottom:12.060000px;}
.y15a{bottom:13.500000px;}
.y15c{bottom:13.680000px;}
.y7{bottom:14.760000px;}
.y123{bottom:16.020000px;}
.y12b{bottom:17.460000px;}
.yc9{bottom:19.980000px;}
.y140{bottom:20.160000px;}
.y26{bottom:25.560000px;}
.y124{bottom:26.100000px;}
.y129{bottom:27.360000px;}
.y12d{bottom:28.980000px;}
.yca{bottom:29.880000px;}
.y141{bottom:30.060000px;}
.y11f{bottom:31.500000px;}
.y131{bottom:34.380000px;}
.y101{bottom:34.920000px;}
.y12a{bottom:37.260000px;}
.y6{bottom:43.920000px;}
.y25{bottom:45.360000px;}
.y12c{bottom:48.960000px;}
.yd{bottom:55.260000px;}
.y99{bottom:56.160000px;}
.yb3{bottom:63.570000px;}
.y5{bottom:64.080000px;}
.y24{bottom:65.340000px;}
.yb{bottom:73.800000px;}
.y98{bottom:75.990000px;}
.y16e{bottom:77.940000px;}
.ya{bottom:78.300000px;}
.yd4{bottom:79.920000px;}
.y11d{bottom:81.000000px;}
.yb2{bottom:83.370000px;}
.y23{bottom:85.140000px;}
.y4{bottom:86.400000px;}
.y3b{bottom:93.420000px;}
.y96{bottom:94.680000px;}
.y97{bottom:95.970000px;}
.y16d{bottom:97.920000px;}
.y15d{bottom:99.540000px;}
.yd3{bottom:99.900000px;}
.y11c{bottom:100.800000px;}
.y70{bottom:101.520000px;}
.yb1{bottom:103.170000px;}
.y22{bottom:104.940000px;}
.y9{bottom:107.490000px;}
.yff{bottom:113.220000px;}
.y3a{bottom:113.400000px;}
.y15b{bottom:114.300000px;}
.y16c{bottom:117.720000px;}
.yd2{bottom:119.700000px;}
.y11b{bottom:120.600000px;}
.y6f{bottom:121.320000px;}
.y3{bottom:122.610000px;}
.ya5{bottom:123.705000px;}
.y9f{bottom:124.740000px;}
.y21{bottom:124.770000px;}
.yfe{bottom:133.020000px;}
.y39{bottom:133.200000px;}
.y8{bottom:136.650000px;}
.y16b{bottom:137.520000px;}
.yd1{bottom:139.500000px;}
.y11a{bottom:140.580000px;}
.ya4{bottom:143.505000px;}
.y20{bottom:144.570000px;}
.y6e{bottom:150.120000px;}
.yfd{bottom:152.850000px;}
.y38{bottom:153.030000px;}
.y9d{bottom:154.830000px;}
.y159{bottom:155.370000px;}
.y16a{bottom:157.350000px;}
.yd0{bottom:159.330000px;}
.y119{bottom:160.410000px;}
.ya3{bottom:163.305000px;}
.y1f{bottom:164.550000px;}
.y6d{bottom:170.130000px;}
.yfc{bottom:172.650000px;}
.y37{bottom:172.830000px;}
.y169{bottom:177.150000px;}
.ycf{bottom:179.130000px;}
.y118{bottom:180.210000px;}
.y1e{bottom:184.350000px;}
.y9c{bottom:184.710000px;}
.y6c{bottom:189.930000px;}
.y36{bottom:192.630000px;}
.y168{bottom:197.130000px;}
.yce{bottom:199.110000px;}
.y158{bottom:201.990000px;}
.y1d{bottom:204.150000px;}
.y117{bottom:209.010000px;}
.y6b{bottom:209.730000px;}
.y9b{bottom:209.910000px;}
.yfb{bottom:212.430000px;}
.y35{bottom:212.610000px;}
.ycd{bottom:213.870000px;}
.y167{bottom:216.930000px;}
.y157{bottom:221.790000px;}
.y1c{bottom:223.950000px;}
.y116{bottom:228.810000px;}
.y6a{bottom:229.530000px;}
.y34{bottom:232.410000px;}
.y9a{bottom:235.110000px;}
.y166{bottom:236.730000px;}
.yfa{bottom:241.230000px;}
.y156{bottom:241.590000px;}
.y1b{bottom:243.750000px;}
.y115{bottom:248.790000px;}
.y69{bottom:249.330000px;}
.y33{bottom:252.210000px;}
.y165{bottom:256.530000px;}
.y94{bottom:260.310000px;}
.yf9{bottom:261.030000px;}
.y155{bottom:261.570000px;}
.y1a{bottom:263.730000px;}
.y114{bottom:268.590000px;}
.y68{bottom:269.310000px;}
.y32{bottom:272.010000px;}
.ycc{bottom:273.810000px;}
.y164{bottom:276.330000px;}
.yf8{bottom:280.830000px;}
.y154{bottom:281.370000px;}
.y19{bottom:283.530000px;}
.y113{bottom:288.390000px;}
.y67{bottom:289.110000px;}
.y31{bottom:291.810000px;}
.y93{bottom:296.310000px;}
.yf7{bottom:300.810000px;}
.y153{bottom:301.170000px;}
.y18{bottom:303.330000px;}
.yc8{bottom:303.690000px;}
.y112{bottom:308.190000px;}
.y66{bottom:308.910000px;}
.y30{bottom:311.790000px;}
.y92{bottom:316.110000px;}
.yf6{bottom:320.610000px;}
.y152{bottom:320.970000px;}
.y111{bottom:327.990000px;}
.y2f{bottom:331.590000px;}
.y91{bottom:335.910000px;}
.y65{bottom:337.710000px;}
.yf5{bottom:344.910000px;}
.y110{bottom:347.790000px;}
.y151{bottom:349.770000px;}
.y2e{bottom:351.390000px;}
.y90{bottom:355.710000px;}
.y64{bottom:357.510000px;}
.yc7{bottom:363.270000px;}
.yf4{bottom:364.710000px;}
.y10f{bottom:367.770000px;}
.y150{bottom:369.750000px;}
.y2d{bottom:371.190000px;}
.y8f{bottom:375.510000px;}
.y63{bottom:377.490000px;}
.yc6{bottom:383.070000px;}
.yf3{bottom:384.510000px;}
.y10e{bottom:387.570000px;}
.y14f{bottom:389.550000px;}
.y2c{bottom:390.990000px;}
.y17d{bottom:393.510000px;}
.y8e{bottom:395.490000px;}
.y62{bottom:397.290000px;}
.yc5{bottom:402.915000px;}
.yf2{bottom:404.535000px;}
.y10d{bottom:407.415000px;}
.y14e{bottom:409.395000px;}
.y2b{bottom:411.015000px;}
.y17c{bottom:413.535000px;}
.y8d{bottom:415.335000px;}
.y61{bottom:417.135000px;}
.yc4{bottom:422.895000px;}
.yf1{bottom:424.335000px;}
.y10c{bottom:427.215000px;}
.y14d{bottom:429.195000px;}
.y2a{bottom:430.815000px;}
.y17b{bottom:433.335000px;}
.y8c{bottom:435.135000px;}
.y60{bottom:436.935000px;}
.yc3{bottom:442.695000px;}
.yf0{bottom:444.135000px;}
.y10b{bottom:447.015000px;}
.y14c{bottom:448.995000px;}
.y29{bottom:450.615000px;}
.y17a{bottom:453.135000px;}
.y8b{bottom:454.935000px;}
.y5f{bottom:456.735000px;}
.yc2{bottom:462.495000px;}
.yef{bottom:463.935000px;}
.y10a{bottom:466.995000px;}
.y14b{bottom:468.975000px;}
.y28{bottom:470.415000px;}
.y179{bottom:472.935000px;}
.y8a{bottom:474.735000px;}
.y5e{bottom:476.715000px;}
.yc1{bottom:482.295000px;}
.yee{bottom:483.735000px;}
.y109{bottom:486.795000px;}
.y14a{bottom:488.775000px;}
.y27{bottom:490.215000px;}
.y178{bottom:492.735000px;}
.y89{bottom:494.715000px;}
.yc0{bottom:502.095000px;}
.yed{bottom:503.715000px;}
.y5d{bottom:505.515000px;}
.y108{bottom:506.595000px;}
.y149{bottom:508.575000px;}
.y177{bottom:512.715000px;}
.y88{bottom:514.515000px;}
.yec{bottom:523.515000px;}
.y17{bottom:524.955000px;}
.y5c{bottom:525.315000px;}
.y107{bottom:526.395000px;}
.y148{bottom:528.375000px;}
.ybf{bottom:531.075000px;}
.y176{bottom:532.515000px;}
.y87{bottom:534.315000px;}
.y106{bottom:541.155000px;}
.yeb{bottom:543.315000px;}
.y5b{bottom:545.115000px;}
.y147{bottom:548.175000px;}
.ybe{bottom:550.875000px;}
.y175{bottom:552.315000px;}
.y86{bottom:554.115000px;}
.yea{bottom:563.115000px;}
.y5a{bottom:564.915000px;}
.ybd{bottom:570.675000px;}
.y105{bottom:571.395000px;}
.y174{bottom:572.115000px;}
.y85{bottom:573.915000px;}
.ye9{bottom:582.915000px;}
.y59{bottom:584.895000px;}
.ybc{bottom:590.475000px;}
.y173{bottom:591.915000px;}
.y145{bottom:592.815000px;}
.y84{bottom:593.895000px;}
.y104{bottom:601.275000px;}
.ye8{bottom:602.895000px;}
.y58{bottom:604.695000px;}
.ybb{bottom:610.275000px;}
.y172{bottom:611.895000px;}
.y83{bottom:613.695000px;}
.ye7{bottom:622.695000px;}
.y143{bottom:623.055000px;}
.y57{bottom:624.495000px;}
.yba{bottom:630.255000px;}
.y103{bottom:631.155000px;}
.y171{bottom:631.695000px;}
.y82{bottom:633.495000px;}
.ye6{bottom:642.495000px;}
.y56{bottom:644.295000px;}
.yb0{bottom:645.015000px;}
.y170{bottom:651.525000px;}
.y13f{bottom:652.785000px;}
.y81{bottom:653.325000px;}
.y100{bottom:661.245000px;}
.ye5{bottom:662.325000px;}
.y16f{bottom:671.325000px;}
.y55{bottom:673.125000px;}
.yb8{bottom:675.105000px;}
.ye4{bottom:682.125000px;}
.y102{bottom:691.125000px;}
.y54{bottom:693.105000px;}
.y163{bottom:702.105000px;}
.yb7{bottom:705.165000px;}
.ye3{bottom:711.105000px;}
.y13e{bottom:712.545000px;}
.y53{bottom:712.905000px;}
.y162{bottom:721.905000px;}
.ye2{bottom:730.905000px;}
.y13d{bottom:732.345000px;}
.y52{bottom:732.705000px;}
.yb6{bottom:735.225000px;}
.y161{bottom:741.705000px;}
.ye1{bottom:750.705000px;}
.y13c{bottom:752.145000px;}
.y51{bottom:752.505000px;}
.y160{bottom:761.505000px;}
.yb5{bottom:765.285000px;}
.ye0{bottom:770.505000px;}
.y13b{bottom:771.945000px;}
.y50{bottom:772.305000px;}
.y15f{bottom:781.305000px;}
.ydf{bottom:790.305000px;}
.y13a{bottom:791.925000px;}
.y4f{bottom:792.285000px;}
.yb4{bottom:795.345000px;}
.y15e{bottom:801.285000px;}
.yde{bottom:810.285000px;}
.y139{bottom:811.725000px;}
.y80{bottom:812.085000px;}
.y4e{bottom:821.085000px;}
.ya2{bottom:825.405000px;}
.ydd{bottom:830.085000px;}
.y138{bottom:831.525000px;}
.y7f{bottom:831.885000px;}
.y4d{bottom:840.885000px;}
.y15{bottom:843.045000px;}
.ydc{bottom:849.885000px;}
.y137{bottom:851.325000px;}
.y7e{bottom:851.685000px;}
.yaf{bottom:855.465000px;}
.y4c{bottom:860.685000px;}
.y14{bottom:868.605000px;}
.ydb{bottom:869.685000px;}
.y7d{bottom:871.485000px;}
.y136{bottom:880.125000px;}
.y4b{bottom:880.485000px;}
.yae{bottom:885.525000px;}
.yda{bottom:889.485000px;}
.y7c{bottom:891.465000px;}
.y13{bottom:893.805000px;}
.y135{bottom:900.150000px;}
.y4a{bottom:900.510000px;}
.yd9{bottom:909.510000px;}
.y7b{bottom:911.310000px;}
.y12{bottom:913.650000px;}
.yac{bottom:915.630000px;}
.y134{bottom:919.950000px;}
.y49{bottom:920.310000px;}
.y11{bottom:928.770000px;}
.yd8{bottom:929.310000px;}
.y7a{bottom:931.110000px;}
.y133{bottom:939.750000px;}
.y48{bottom:940.110000px;}
.yab{bottom:945.870000px;}
.yd7{bottom:949.110000px;}
.y10{bottom:950.010000px;}
.y79{bottom:950.910000px;}
.y132{bottom:959.550000px;}
.y47{bottom:959.910000px;}
.yd6{bottom:968.910000px;}
.y78{bottom:970.710000px;}
.yf{bottom:973.590000px;}
.y12f{bottom:974.310000px;}
.yaa{bottom:975.930000px;}
.y46{bottom:979.710000px;}
.y126{bottom:986.550000px;}
.yd5{bottom:988.710000px;}
.y77{bottom:990.510000px;}
.ye{bottom:1005.270000px;}
.ya9{bottom:1005.990000px;}
.y45{bottom:1008.510000px;}
.y76{bottom:1010.490000px;}
.y12e{bottom:1027.770000px;}
.y44{bottom:1028.490000px;}
.y75{bottom:1030.290000px;}
.yc{bottom:1030.830000px;}
.y122{bottom:1032.090000px;}
.ya8{bottom:1036.050000px;}
.y1{bottom:1045.590000px;}
.y43{bottom:1048.290000px;}
.y74{bottom:1050.090000px;}
.y128{bottom:1064.130000px;}
.ya7{bottom:1066.110000px;}
.y42{bottom:1068.090000px;}
.y11e{bottom:1077.630000px;}
.y73{bottom:1078.890000px;}
.y41{bottom:1087.890000px;}
.ya6{bottom:1096.170000px;}
.y72{bottom:1098.690000px;}
.y40{bottom:1107.690000px;}
.y120{bottom:1109.130000px;}
.y71{bottom:1118.670000px;}
.ya1{bottom:1126.050000px;}
.y3f{bottom:1127.670000px;}
.y127{bottom:1131.990000px;}
.y3e{bottom:1147.500000px;}
.ya0{bottom:1151.280000px;}
.y3d{bottom:1167.300000px;}
.y3c{bottom:1193.580000px;}
.h3{height:2.864531px;}
.hc{height:19.800000px;}
.h23{height:24.300000px;}
.h11{height:24.480000px;}
.hf{height:24.660000px;}
.h14{height:24.696000px;}
.h13{height:24.840000px;}
.h1b{height:26.100000px;}
.hb{height:27.147656px;}
.h1f{height:31.500000px;}
.h24{height:35.460000px;}
.h25{height:35.640000px;}
.h1a{height:39.636000px;}
.h1c{height:40.140000px;}
.h6{height:41.726953px;}
.h9{height:42.164648px;}
.h18{height:43.506914px;}
.he{height:45.549492px;}
.h7{height:46.251562px;}
.h20{height:48.027656px;}
.h16{height:48.420000px;}
.h1d{height:48.432422px;}
.h22{height:48.600000px;}
.h21{height:52.417969px;}
.ha{height:53.224453px;}
.h1e{height:63.000000px;}
.h8{height:67.565039px;}
.h5{height:67.824844px;}
.h19{height:71.136000px;}
.h17{height:78.300000px;}
.h4{height:105.060586px;}
.h10{height:160.230000px;}
.h2{height:161.310000px;}
.h15{height:174.990000px;}
.h12{height:295.230000px;}
.hd{height:317.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:49.500000px;}
.w1e{width:50.040000px;}
.we{width:50.400000px;}
.w28{width:51.480000px;}
.wa{width:52.920000px;}
.w27{width:54.576000px;}
.wb{width:58.500000px;}
.w26{width:59.220000px;}
.wc{width:59.436000px;}
.w2f{width:70.200000px;}
.w22{width:72.180000px;}
.w2e{width:74.196000px;}
.w11{width:75.276000px;}
.w21{width:75.456000px;}
.w12{width:75.600000px;}
.w1d{width:80.496000px;}
.w17{width:81.936000px;}
.w29{width:84.960000px;}
.w2c{width:85.860000px;}
.w2a{width:89.316000px;}
.wf{width:89.496000px;}
.w2d{width:89.676000px;}
.w31{width:91.980000px;}
.w30{width:93.996000px;}
.w13{width:94.176000px;}
.w9{width:94.716000px;}
.w23{width:101.376000px;}
.w16{width:101.556000px;}
.w20{width:106.956000px;}
.w25{width:113.976000px;}
.w18{width:115.560000px;}
.w24{width:118.080000px;}
.w1c{width:123.336000px;}
.w1b{width:131.256000px;}
.w14{width:142.056000px;}
.w2{width:153.750000px;}
.w1a{width:156.270000px;}
.w4{width:156.990000px;}
.w10{width:166.710000px;}
.w15{width:198.210000px;}
.w2b{width:281.775000px;}
.w7{width:287.895000px;}
.w1f{width:369.255000px;}
.w19{width:443.265000px;}
.w3{width:472.785000px;}
.w8{width:493.305000px;}
.w6{width:781.200000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x32{left:12.420000px;}
.x35{left:14.760000px;}
.x1{left:54.720000px;}
.x4{left:56.160000px;}
.x3a{left:64.619987px;}
.x23{left:75.239987px;}
.xc{left:96.515987px;}
.x1d{left:108.035987px;}
.x8{left:110.205000px;}
.x7{left:117.225000px;}
.x5{left:119.385000px;}
.x28{left:131.625000px;}
.x2{left:136.290000px;}
.x27{left:202.889987px;}
.x3{left:208.470000px;}
.xe{left:216.029987px;}
.x2d{left:217.830000px;}
.x1f{left:224.129987px;}
.x34{left:229.170000px;}
.x15{left:234.749987px;}
.x6{left:236.385000px;}
.x16{left:239.610000px;}
.x1c{left:274.394987px;}
.x2a{left:284.295000px;}
.xd{left:295.094987px;}
.x36{left:304.095000px;}
.xf{left:312.375000px;}
.x1e{left:316.334987px;}
.x2e{left:332.535000px;}
.x1b{left:342.074987px;}
.xb{left:343.875000px;}
.x2b{left:357.195000px;}
.x10{left:366.015000px;}
.x20{left:367.635000px;}
.x37{left:375.015000px;}
.x2f{left:392.475000px;}
.x24{left:397.335000px;}
.x17{left:407.055000px;}
.x11{left:425.235000px;}
.x1a{left:446.504987px;}
.x30{left:447.765000px;}
.x22{left:450.285000px;}
.x2c{left:459.285000px;}
.x38{left:469.905000px;}
.x26{left:478.545000px;}
.x18{left:483.045000px;}
.x12{left:485.385000px;}
.x31{left:500.145000px;}
.x25{left:529.305000px;}
.x13{left:535.605000px;}
.x19{left:559.365000px;}
.x39{left:562.605000px;}
.x21{left:566.565000px;}
.x29{left:578.085000px;}
.x33{left:585.465000px;}
.x14{left:586.725000px;}
.x9{left:681.270000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.666667pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.821333pt;}
.lsd{letter-spacing:-0.688000pt;}
.ls19{letter-spacing:-0.624000pt;}
.ls13{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.230933pt;}
.lsf{letter-spacing:-0.201067pt;}
.ls7{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.183467pt;}
.lsc{letter-spacing:0.230933pt;}
.ls16{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.456533pt;}
.ls10{letter-spacing:0.736000pt;}
.ls17{letter-spacing:2.048000pt;}
.ls3{letter-spacing:11.680000pt;}
.ls12{letter-spacing:20.432640pt;}
.ls1d{letter-spacing:32.080640pt;}
.ls2{letter-spacing:46.218667pt;}
.ls1c{letter-spacing:58.320640pt;}
.wsf{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.ws10{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws6{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws7{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._5{margin-left:-3.815893pt;}
._1{margin-left:-2.826240pt;}
._6{margin-left:-1.833813pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.054080pt;}
._9{width:2.337280pt;}
._e{width:3.248640pt;}
._8{width:4.143360pt;}
._c{width:5.312000pt;}
._b{width:6.586880pt;}
._10{width:7.719040pt;}
._13{width:8.828800pt;}
._12{width:10.589653pt;}
._a{width:11.568640pt;}
._f{width:14.608000pt;}
._11{width:15.572480pt;}
._d{width:17.317120pt;}
._3{width:28.770560pt;}
._4{width:29.954347pt;}
._7{width:45.957760pt;}
.fs0{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y16{bottom:5.120000pt;}
.y125{bottom:5.600000pt;}
.y144{bottom:7.200000pt;}
.y146{bottom:7.360000pt;}
.y130{bottom:8.000000pt;}
.ycb{bottom:8.960000pt;}
.y142{bottom:9.120000pt;}
.y9e{bottom:9.280000pt;}
.y95{bottom:9.440000pt;}
.yb9{bottom:9.466667pt;}
.yad{bottom:9.600000pt;}
.y121{bottom:10.720000pt;}
.y15a{bottom:12.000000pt;}
.y15c{bottom:12.160000pt;}
.y7{bottom:13.120000pt;}
.y123{bottom:14.240000pt;}
.y12b{bottom:15.520000pt;}
.yc9{bottom:17.760000pt;}
.y140{bottom:17.920000pt;}
.y26{bottom:22.720000pt;}
.y124{bottom:23.200000pt;}
.y129{bottom:24.320000pt;}
.y12d{bottom:25.760000pt;}
.yca{bottom:26.560000pt;}
.y141{bottom:26.720000pt;}
.y11f{bottom:28.000000pt;}
.y131{bottom:30.560000pt;}
.y101{bottom:31.040000pt;}
.y12a{bottom:33.120000pt;}
.y6{bottom:39.040000pt;}
.y25{bottom:40.320000pt;}
.y12c{bottom:43.520000pt;}
.yd{bottom:49.120000pt;}
.y99{bottom:49.920000pt;}
.yb3{bottom:56.506667pt;}
.y5{bottom:56.960000pt;}
.y24{bottom:58.080000pt;}
.yb{bottom:65.600000pt;}
.y98{bottom:67.546667pt;}
.y16e{bottom:69.280000pt;}
.ya{bottom:69.600000pt;}
.yd4{bottom:71.040000pt;}
.y11d{bottom:72.000000pt;}
.yb2{bottom:74.106667pt;}
.y23{bottom:75.680000pt;}
.y4{bottom:76.800000pt;}
.y3b{bottom:83.040000pt;}
.y96{bottom:84.160000pt;}
.y97{bottom:85.306667pt;}
.y16d{bottom:87.040000pt;}
.y15d{bottom:88.480000pt;}
.yd3{bottom:88.800000pt;}
.y11c{bottom:89.600000pt;}
.y70{bottom:90.240000pt;}
.yb1{bottom:91.706667pt;}
.y22{bottom:93.280000pt;}
.y9{bottom:95.546667pt;}
.yff{bottom:100.640000pt;}
.y3a{bottom:100.800000pt;}
.y15b{bottom:101.600000pt;}
.y16c{bottom:104.640000pt;}
.yd2{bottom:106.400000pt;}
.y11b{bottom:107.200000pt;}
.y6f{bottom:107.840000pt;}
.y3{bottom:108.986667pt;}
.ya5{bottom:109.960000pt;}
.y9f{bottom:110.880000pt;}
.y21{bottom:110.906667pt;}
.yfe{bottom:118.240000pt;}
.y39{bottom:118.400000pt;}
.y8{bottom:121.466667pt;}
.y16b{bottom:122.240000pt;}
.yd1{bottom:124.000000pt;}
.y11a{bottom:124.960000pt;}
.ya4{bottom:127.560000pt;}
.y20{bottom:128.506667pt;}
.y6e{bottom:133.440000pt;}
.yfd{bottom:135.866667pt;}
.y38{bottom:136.026667pt;}
.y9d{bottom:137.626667pt;}
.y159{bottom:138.106667pt;}
.y16a{bottom:139.866667pt;}
.yd0{bottom:141.626667pt;}
.y119{bottom:142.586667pt;}
.ya3{bottom:145.160000pt;}
.y1f{bottom:146.266667pt;}
.y6d{bottom:151.226667pt;}
.yfc{bottom:153.466667pt;}
.y37{bottom:153.626667pt;}
.y169{bottom:157.466667pt;}
.ycf{bottom:159.226667pt;}
.y118{bottom:160.186667pt;}
.y1e{bottom:163.866667pt;}
.y9c{bottom:164.186667pt;}
.y6c{bottom:168.826667pt;}
.y36{bottom:171.226667pt;}
.y168{bottom:175.226667pt;}
.yce{bottom:176.986667pt;}
.y158{bottom:179.546667pt;}
.y1d{bottom:181.466667pt;}
.y117{bottom:185.786667pt;}
.y6b{bottom:186.426667pt;}
.y9b{bottom:186.586667pt;}
.yfb{bottom:188.826667pt;}
.y35{bottom:188.986667pt;}
.ycd{bottom:190.106667pt;}
.y167{bottom:192.826667pt;}
.y157{bottom:197.146667pt;}
.y1c{bottom:199.066667pt;}
.y116{bottom:203.386667pt;}
.y6a{bottom:204.026667pt;}
.y34{bottom:206.586667pt;}
.y9a{bottom:208.986667pt;}
.y166{bottom:210.426667pt;}
.yfa{bottom:214.426667pt;}
.y156{bottom:214.746667pt;}
.y1b{bottom:216.666667pt;}
.y115{bottom:221.146667pt;}
.y69{bottom:221.626667pt;}
.y33{bottom:224.186667pt;}
.y165{bottom:228.026667pt;}
.y94{bottom:231.386667pt;}
.yf9{bottom:232.026667pt;}
.y155{bottom:232.506667pt;}
.y1a{bottom:234.426667pt;}
.y114{bottom:238.746667pt;}
.y68{bottom:239.386667pt;}
.y32{bottom:241.786667pt;}
.ycc{bottom:243.386667pt;}
.y164{bottom:245.626667pt;}
.yf8{bottom:249.626667pt;}
.y154{bottom:250.106667pt;}
.y19{bottom:252.026667pt;}
.y113{bottom:256.346667pt;}
.y67{bottom:256.986667pt;}
.y31{bottom:259.386667pt;}
.y93{bottom:263.386667pt;}
.yf7{bottom:267.386667pt;}
.y153{bottom:267.706667pt;}
.y18{bottom:269.626667pt;}
.yc8{bottom:269.946667pt;}
.y112{bottom:273.946667pt;}
.y66{bottom:274.586667pt;}
.y30{bottom:277.146667pt;}
.y92{bottom:280.986667pt;}
.yf6{bottom:284.986667pt;}
.y152{bottom:285.306667pt;}
.y111{bottom:291.546667pt;}
.y2f{bottom:294.746667pt;}
.y91{bottom:298.586667pt;}
.y65{bottom:300.186667pt;}
.yf5{bottom:306.586667pt;}
.y110{bottom:309.146667pt;}
.y151{bottom:310.906667pt;}
.y2e{bottom:312.346667pt;}
.y90{bottom:316.186667pt;}
.y64{bottom:317.786667pt;}
.yc7{bottom:322.906667pt;}
.yf4{bottom:324.186667pt;}
.y10f{bottom:326.906667pt;}
.y150{bottom:328.666667pt;}
.y2d{bottom:329.946667pt;}
.y8f{bottom:333.786667pt;}
.y63{bottom:335.546667pt;}
.yc6{bottom:340.506667pt;}
.yf3{bottom:341.786667pt;}
.y10e{bottom:344.506667pt;}
.y14f{bottom:346.266667pt;}
.y2c{bottom:347.546667pt;}
.y17d{bottom:349.786667pt;}
.y8e{bottom:351.546667pt;}
.y62{bottom:353.146667pt;}
.yc5{bottom:358.146667pt;}
.yf2{bottom:359.586667pt;}
.y10d{bottom:362.146667pt;}
.y14e{bottom:363.906667pt;}
.y2b{bottom:365.346667pt;}
.y17c{bottom:367.586667pt;}
.y8d{bottom:369.186667pt;}
.y61{bottom:370.786667pt;}
.yc4{bottom:375.906667pt;}
.yf1{bottom:377.186667pt;}
.y10c{bottom:379.746667pt;}
.y14d{bottom:381.506667pt;}
.y2a{bottom:382.946667pt;}
.y17b{bottom:385.186667pt;}
.y8c{bottom:386.786667pt;}
.y60{bottom:388.386667pt;}
.yc3{bottom:393.506667pt;}
.yf0{bottom:394.786667pt;}
.y10b{bottom:397.346667pt;}
.y14c{bottom:399.106667pt;}
.y29{bottom:400.546667pt;}
.y17a{bottom:402.786667pt;}
.y8b{bottom:404.386667pt;}
.y5f{bottom:405.986667pt;}
.yc2{bottom:411.106667pt;}
.yef{bottom:412.386667pt;}
.y10a{bottom:415.106667pt;}
.y14b{bottom:416.866667pt;}
.y28{bottom:418.146667pt;}
.y179{bottom:420.386667pt;}
.y8a{bottom:421.986667pt;}
.y5e{bottom:423.746667pt;}
.yc1{bottom:428.706667pt;}
.yee{bottom:429.986667pt;}
.y109{bottom:432.706667pt;}
.y14a{bottom:434.466667pt;}
.y27{bottom:435.746667pt;}
.y178{bottom:437.986667pt;}
.y89{bottom:439.746667pt;}
.yc0{bottom:446.306667pt;}
.yed{bottom:447.746667pt;}
.y5d{bottom:449.346667pt;}
.y108{bottom:450.306667pt;}
.y149{bottom:452.066667pt;}
.y177{bottom:455.746667pt;}
.y88{bottom:457.346667pt;}
.yec{bottom:465.346667pt;}
.y17{bottom:466.626667pt;}
.y5c{bottom:466.946667pt;}
.y107{bottom:467.906667pt;}
.y148{bottom:469.666667pt;}
.ybf{bottom:472.066667pt;}
.y176{bottom:473.346667pt;}
.y87{bottom:474.946667pt;}
.y106{bottom:481.026667pt;}
.yeb{bottom:482.946667pt;}
.y5b{bottom:484.546667pt;}
.y147{bottom:487.266667pt;}
.ybe{bottom:489.666667pt;}
.y175{bottom:490.946667pt;}
.y86{bottom:492.546667pt;}
.yea{bottom:500.546667pt;}
.y5a{bottom:502.146667pt;}
.ybd{bottom:507.266667pt;}
.y105{bottom:507.906667pt;}
.y174{bottom:508.546667pt;}
.y85{bottom:510.146667pt;}
.ye9{bottom:518.146667pt;}
.y59{bottom:519.906667pt;}
.ybc{bottom:524.866667pt;}
.y173{bottom:526.146667pt;}
.y145{bottom:526.946667pt;}
.y84{bottom:527.906667pt;}
.y104{bottom:534.466667pt;}
.ye8{bottom:535.906667pt;}
.y58{bottom:537.506667pt;}
.ybb{bottom:542.466667pt;}
.y172{bottom:543.906667pt;}
.y83{bottom:545.506667pt;}
.ye7{bottom:553.506667pt;}
.y143{bottom:553.826667pt;}
.y57{bottom:555.106667pt;}
.yba{bottom:560.226667pt;}
.y103{bottom:561.026667pt;}
.y171{bottom:561.506667pt;}
.y82{bottom:563.106667pt;}
.ye6{bottom:571.106667pt;}
.y56{bottom:572.706667pt;}
.yb0{bottom:573.346667pt;}
.y170{bottom:579.133333pt;}
.y13f{bottom:580.253333pt;}
.y81{bottom:580.733333pt;}
.y100{bottom:587.773333pt;}
.ye5{bottom:588.733333pt;}
.y16f{bottom:596.733333pt;}
.y55{bottom:598.333333pt;}
.yb8{bottom:600.093333pt;}
.ye4{bottom:606.333333pt;}
.y102{bottom:614.333333pt;}
.y54{bottom:616.093333pt;}
.y163{bottom:624.093333pt;}
.yb7{bottom:626.813333pt;}
.ye3{bottom:632.093333pt;}
.y13e{bottom:633.373333pt;}
.y53{bottom:633.693333pt;}
.y162{bottom:641.693333pt;}
.ye2{bottom:649.693333pt;}
.y13d{bottom:650.973333pt;}
.y52{bottom:651.293333pt;}
.yb6{bottom:653.533333pt;}
.y161{bottom:659.293333pt;}
.ye1{bottom:667.293333pt;}
.y13c{bottom:668.573333pt;}
.y51{bottom:668.893333pt;}
.y160{bottom:676.893333pt;}
.yb5{bottom:680.253333pt;}
.ye0{bottom:684.893333pt;}
.y13b{bottom:686.173333pt;}
.y50{bottom:686.493333pt;}
.y15f{bottom:694.493333pt;}
.ydf{bottom:702.493333pt;}
.y13a{bottom:703.933333pt;}
.y4f{bottom:704.253333pt;}
.yb4{bottom:706.973333pt;}
.y15e{bottom:712.253333pt;}
.yde{bottom:720.253333pt;}
.y139{bottom:721.533333pt;}
.y80{bottom:721.853333pt;}
.y4e{bottom:729.853333pt;}
.ya2{bottom:733.693333pt;}
.ydd{bottom:737.853333pt;}
.y138{bottom:739.133333pt;}
.y7f{bottom:739.453333pt;}
.y4d{bottom:747.453333pt;}
.y15{bottom:749.373333pt;}
.ydc{bottom:755.453333pt;}
.y137{bottom:756.733333pt;}
.y7e{bottom:757.053333pt;}
.yaf{bottom:760.413333pt;}
.y4c{bottom:765.053333pt;}
.y14{bottom:772.093333pt;}
.ydb{bottom:773.053333pt;}
.y7d{bottom:774.653333pt;}
.y136{bottom:782.333333pt;}
.y4b{bottom:782.653333pt;}
.yae{bottom:787.133333pt;}
.yda{bottom:790.653333pt;}
.y7c{bottom:792.413333pt;}
.y13{bottom:794.493333pt;}
.y135{bottom:800.133333pt;}
.y4a{bottom:800.453333pt;}
.yd9{bottom:808.453333pt;}
.y7b{bottom:810.053333pt;}
.y12{bottom:812.133333pt;}
.yac{bottom:813.893333pt;}
.y134{bottom:817.733333pt;}
.y49{bottom:818.053333pt;}
.y11{bottom:825.573333pt;}
.yd8{bottom:826.053333pt;}
.y7a{bottom:827.653333pt;}
.y133{bottom:835.333333pt;}
.y48{bottom:835.653333pt;}
.yab{bottom:840.773333pt;}
.yd7{bottom:843.653333pt;}
.y10{bottom:844.453333pt;}
.y79{bottom:845.253333pt;}
.y132{bottom:852.933333pt;}
.y47{bottom:853.253333pt;}
.yd6{bottom:861.253333pt;}
.y78{bottom:862.853333pt;}
.yf{bottom:865.413333pt;}
.y12f{bottom:866.053333pt;}
.yaa{bottom:867.493333pt;}
.y46{bottom:870.853333pt;}
.y126{bottom:876.933333pt;}
.yd5{bottom:878.853333pt;}
.y77{bottom:880.453333pt;}
.ye{bottom:893.573333pt;}
.ya9{bottom:894.213333pt;}
.y45{bottom:896.453333pt;}
.y76{bottom:898.213333pt;}
.y12e{bottom:913.573333pt;}
.y44{bottom:914.213333pt;}
.y75{bottom:915.813333pt;}
.yc{bottom:916.293333pt;}
.y122{bottom:917.413333pt;}
.ya8{bottom:920.933333pt;}
.y1{bottom:929.413333pt;}
.y43{bottom:931.813333pt;}
.y74{bottom:933.413333pt;}
.y128{bottom:945.893333pt;}
.ya7{bottom:947.653333pt;}
.y42{bottom:949.413333pt;}
.y11e{bottom:957.893333pt;}
.y73{bottom:959.013333pt;}
.y41{bottom:967.013333pt;}
.ya6{bottom:974.373333pt;}
.y72{bottom:976.613333pt;}
.y40{bottom:984.613333pt;}
.y120{bottom:985.893333pt;}
.y71{bottom:994.373333pt;}
.ya1{bottom:1000.933333pt;}
.y3f{bottom:1002.373333pt;}
.y127{bottom:1006.213333pt;}
.y3e{bottom:1020.000000pt;}
.ya0{bottom:1023.360000pt;}
.y3d{bottom:1037.600000pt;}
.y3c{bottom:1060.960000pt;}
.h3{height:2.546250pt;}
.hc{height:17.600000pt;}
.h23{height:21.600000pt;}
.h11{height:21.760000pt;}
.hf{height:21.920000pt;}
.h14{height:21.952000pt;}
.h13{height:22.080000pt;}
.h1b{height:23.200000pt;}
.hb{height:24.131250pt;}
.h1f{height:28.000000pt;}
.h24{height:31.520000pt;}
.h25{height:31.680000pt;}
.h1a{height:35.232000pt;}
.h1c{height:35.680000pt;}
.h6{height:37.090625pt;}
.h9{height:37.479688pt;}
.h18{height:38.672812pt;}
.he{height:40.488438pt;}
.h7{height:41.112500pt;}
.h20{height:42.691250pt;}
.h16{height:43.040000pt;}
.h1d{height:43.051042pt;}
.h22{height:43.200000pt;}
.h21{height:46.593750pt;}
.ha{height:47.310625pt;}
.h1e{height:56.000000pt;}
.h8{height:60.057813pt;}
.h5{height:60.288750pt;}
.h19{height:63.232000pt;}
.h17{height:69.600000pt;}
.h4{height:93.387187pt;}
.h10{height:142.426667pt;}
.h2{height:143.386667pt;}
.h15{height:155.546667pt;}
.h12{height:262.426667pt;}
.hd{height:282.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:44.000000pt;}
.w1e{width:44.480000pt;}
.we{width:44.800000pt;}
.w28{width:45.760000pt;}
.wa{width:47.040000pt;}
.w27{width:48.512000pt;}
.wb{width:52.000000pt;}
.w26{width:52.640000pt;}
.wc{width:52.832000pt;}
.w2f{width:62.400000pt;}
.w22{width:64.160000pt;}
.w2e{width:65.952000pt;}
.w11{width:66.912000pt;}
.w21{width:67.072000pt;}
.w12{width:67.200000pt;}
.w1d{width:71.552000pt;}
.w17{width:72.832000pt;}
.w29{width:75.520000pt;}
.w2c{width:76.320000pt;}
.w2a{width:79.392000pt;}
.wf{width:79.552000pt;}
.w2d{width:79.712000pt;}
.w31{width:81.760000pt;}
.w30{width:83.552000pt;}
.w13{width:83.712000pt;}
.w9{width:84.192000pt;}
.w23{width:90.112000pt;}
.w16{width:90.272000pt;}
.w20{width:95.072000pt;}
.w25{width:101.312000pt;}
.w18{width:102.720000pt;}
.w24{width:104.960000pt;}
.w1c{width:109.632000pt;}
.w1b{width:116.672000pt;}
.w14{width:126.272000pt;}
.w2{width:136.666667pt;}
.w1a{width:138.906667pt;}
.w4{width:139.546667pt;}
.w10{width:148.186667pt;}
.w15{width:176.186667pt;}
.w2b{width:250.466667pt;}
.w7{width:255.906667pt;}
.w1f{width:328.226667pt;}
.w19{width:394.013333pt;}
.w3{width:420.253333pt;}
.w8{width:438.493333pt;}
.w6{width:694.400000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x32{left:11.040000pt;}
.x35{left:13.120000pt;}
.x1{left:48.640000pt;}
.x4{left:49.920000pt;}
.x3a{left:57.439988pt;}
.x23{left:66.879988pt;}
.xc{left:85.791988pt;}
.x1d{left:96.031988pt;}
.x8{left:97.960000pt;}
.x7{left:104.200000pt;}
.x5{left:106.120000pt;}
.x28{left:117.000000pt;}
.x2{left:121.146667pt;}
.x27{left:180.346655pt;}
.x3{left:185.306667pt;}
.xe{left:192.026655pt;}
.x2d{left:193.626667pt;}
.x1f{left:199.226655pt;}
.x34{left:203.706667pt;}
.x15{left:208.666655pt;}
.x6{left:210.120000pt;}
.x16{left:212.986667pt;}
.x1c{left:243.906655pt;}
.x2a{left:252.706667pt;}
.xd{left:262.306655pt;}
.x36{left:270.306667pt;}
.xf{left:277.666667pt;}
.x1e{left:281.186655pt;}
.x2e{left:295.586667pt;}
.x1b{left:304.066655pt;}
.xb{left:305.666667pt;}
.x2b{left:317.506667pt;}
.x10{left:325.346667pt;}
.x20{left:326.786667pt;}
.x37{left:333.346667pt;}
.x2f{left:348.866667pt;}
.x24{left:353.186667pt;}
.x17{left:361.826667pt;}
.x11{left:377.986667pt;}
.x1a{left:396.893322pt;}
.x30{left:398.013333pt;}
.x22{left:400.253333pt;}
.x2c{left:408.253333pt;}
.x38{left:417.693333pt;}
.x26{left:425.373333pt;}
.x18{left:429.373333pt;}
.x12{left:431.453333pt;}
.x31{left:444.573333pt;}
.x25{left:470.493333pt;}
.x13{left:476.093333pt;}
.x19{left:497.213333pt;}
.x39{left:500.093333pt;}
.x21{left:503.613333pt;}
.x29{left:513.853333pt;}
.x33{left:520.413333pt;}
.x14{left:521.533333pt;}
.x9{left:605.573333pt;}
}




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