
    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_ed3dc082744927725630e00b.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_55ae797b354af3620ab8e3cc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.055176;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_f79c5dff6b89df1cde173be2.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_38a3a8521e44664881e30dda.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a4e816a0b1eace15be5f05eb.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f61470d193b0918c8b7c801f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8d6d0e6557922667abef8d6e.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_66c7189116ea843c7948f110.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_35cd089bc1a893a22d65272d.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_04d8a0a1db1a7c94ea0e3655.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f51e864fbd7d39ac4e7ccc88.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c145be7b528d1bcc6b45ab56.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6c98e2facb31b27d7ace8880.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_2769d474e1189209bf2e9d0c.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c3305a3f1b7ccef3651ccb57.woff')format("woff");}.fff{font-family:fff;line-height:0.762207;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);}
.v1{vertical-align:-83.520000px;}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-1.656000px;}
.ls18{letter-spacing:-1.620000px;}
.ls19{letter-spacing:-1.524000px;}
.ls16{letter-spacing:-1.152000px;}
.ls10{letter-spacing:-0.594000px;}
.ls12{letter-spacing:-0.463800px;}
.lsb{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.230400px;}
.ls8{letter-spacing:-0.193200px;}
.lsa{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.140400px;}
.ls1a{letter-spacing:-0.023040px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.022320px;}
.ls14{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.094800px;}
.ls0{letter-spacing:0.100800px;}
.lsd{letter-spacing:0.126000px;}
.ls9{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.150000px;}
.lsc{letter-spacing:0.187200px;}
.ls1b{letter-spacing:0.224400px;}
.ls15{letter-spacing:0.256200px;}
.ls3{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.714000px;}
.ls6{letter-spacing:0.858000px;}
.ls2{letter-spacing:621.480000px;}
.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.072000px;}
.wsc{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws18{word-spacing:-17.504400px;}
.ws17{word-spacing:-17.280000px;}
.ws16{word-spacing:-17.256960px;}
.ws4{word-spacing:-17.107200px;}
.ws13{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.552000px;}
.ws10{word-spacing:-15.226440px;}
.wse{word-spacing:-14.739840px;}
.wsd{word-spacing:-14.506440px;}
.ws1{word-spacing:-13.841040px;}
.ws11{word-spacing:-13.818240px;}
.ws2{word-spacing:-13.697040px;}
.ws12{word-spacing:-13.314240px;}
.ws3{word-spacing:-12.060000px;}
.ws14{word-spacing:-11.211840px;}
.wsa{word-spacing:-10.612800px;}
.ws9{word-spacing:-10.472400px;}
.wsb{word-spacing:-10.308240px;}
.ws0{word-spacing:-9.979200px;}
.ws7{word-spacing:-9.937440px;}
.ws15{word-spacing:-9.088800px;}
.ws8{word-spacing:0.000000px;}
._2{margin-left:-2.624400px;}
._0{margin-left:-1.622880px;}
._1{width:1.307760px;}
._5{width:2.367840px;}
._4{width:4.032000px;}
._3{width:5.472000px;}
._6{width:6.984000px;}
._7{width:8.424000px;}
._8{width:9.696720px;}
._d{width:11.471280px;}
._1a{width:12.552240px;}
._c{width:13.574880px;}
._9{width:15.048000px;}
._e{width:16.131120px;}
._15{width:19.736880px;}
._12{width:21.384000px;}
._13{width:22.536000px;}
._14{width:23.643120px;}
._1b{width:24.956880px;}
._f{width:27.648000px;}
._10{width:28.656000px;}
._11{width:29.868240px;}
._1c{width:31.320000px;}
._16{width:116.352000px;}
._17{width:117.551760px;}
._18{width:134.220000px;}
._19{width:135.348000px;}
._a{width:1134.330240px;}
._b{width:1516.025760px;}
.fc5{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(38,38,38);}
.fc3{color:rgb(166,166,166);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:20.880000px;}
.fs9{font-size:38.880000px;}
.fs0{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fsc{font-size:69.120000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:102.240000px;}
.fs5{font-size:108.000000px;}
.yb0{bottom:-13.830000px;}
.y0{bottom:0.000000px;}
.y32{bottom:0.870000px;}
.ydd{bottom:1.875000px;}
.ye6{bottom:2.010000px;}
.ydf{bottom:2.055000px;}
.y34{bottom:2.490000px;}
.y37{bottom:2.700000px;}
.y92{bottom:2.910000px;}
.y90{bottom:3.855000px;}
.y94{bottom:3.990000px;}
.yc0{bottom:4.140000px;}
.y3{bottom:4.500000px;}
.y4{bottom:5.220000px;}
.y30{bottom:7.020000px;}
.y66{bottom:7.380000px;}
.ybe{bottom:14.580000px;}
.y3c{bottom:22.320000px;}
.y2{bottom:24.660000px;}
.ybf{bottom:24.840000px;}
.y65{bottom:27.540000px;}
.y5{bottom:32.400000px;}
.y2e{bottom:36.000000px;}
.y3b{bottom:41.220000px;}
.y1{bottom:42.660000px;}
.yb4{bottom:45.030000px;}
.y36{bottom:68.040000px;}
.yb3{bottom:68.610000px;}
.yb2{bottom:91.650000px;}
.y2c{bottom:111.780000px;}
.ya2{bottom:116.640000px;}
.y2b{bottom:119.340000px;}
.y8e{bottom:120.060000px;}
.y62{bottom:122.580000px;}
.yae{bottom:126.180000px;}
.y2a{bottom:130.680000px;}
.y101{bottom:140.220000px;}
.ya1{bottom:140.580000px;}
.y8d{bottom:143.820000px;}
.yad{bottom:145.980000px;}
.y61{bottom:146.340000px;}
.y128{bottom:150.120000px;}
.ydb{bottom:153.000000px;}
.y29{bottom:155.880000px;}
.ya0{bottom:164.340000px;}
.yac{bottom:165.780000px;}
.y8c{bottom:167.580000px;}
.y60{bottom:170.280000px;}
.y127{bottom:172.980000px;}
.yda{bottom:176.760000px;}
.y100{bottom:181.800000px;}
.y9f{bottom:188.100000px;}
.y8b{bottom:191.340000px;}
.y5f{bottom:194.040000px;}
.y28{bottom:194.580000px;}
.y126{bottom:195.660000px;}
.yab{bottom:197.460000px;}
.yd9{bottom:200.520000px;}
.y9e{bottom:211.890000px;}
.y125{bottom:218.550000px;}
.yd8{bottom:224.310000px;}
.yff{bottom:226.650000px;}
.y8a{bottom:229.890000px;}
.y5e{bottom:232.410000px;}
.y27{bottom:233.490000px;}
.y124{bottom:241.410000px;}
.y14f{bottom:249.690000px;}
.yfe{bottom:250.410000px;}
.y9d{bottom:250.770000px;}
.yb1{bottom:253.980000px;}
.y26{bottom:257.970000px;}
.yd7{bottom:260.130000px;}
.y123{bottom:264.270000px;}
.y89{bottom:269.130000px;}
.y5d{bottom:271.650000px;}
.y14e{bottom:272.370000px;}
.yfd{bottom:274.170000px;}
.y9c{bottom:274.530000px;}
.y25{bottom:282.270000px;}
.y122{bottom:286.950000px;}
.yd6{bottom:290.910000px;}
.y88{bottom:292.890000px;}
.y14d{bottom:295.230000px;}
.y5c{bottom:295.410000px;}
.yaf{bottom:297.180000px;}
.yfc{bottom:297.930000px;}
.y93{bottom:304.560000px;}
.y24{bottom:306.570000px;}
.y121{bottom:309.810000px;}
.y87{bottom:316.650000px;}
.y14c{bottom:318.090000px;}
.y5b{bottom:319.350000px;}
.yfb{bottom:321.870000px;}
.y23{bottom:327.990000px;}
.yd5{bottom:332.670000px;}
.y91{bottom:335.700000px;}
.y86{bottom:340.410000px;}
.y14b{bottom:340.770000px;}
.y5a{bottom:343.110000px;}
.yfa{bottom:345.630000px;}
.y22{bottom:348.690000px;}
.yd4{bottom:353.370000px;}
.y120{bottom:355.350000px;}
.y14a{bottom:363.630000px;}
.y85{bottom:364.350000px;}
.y59{bottom:366.870000px;}
.yf9{bottom:376.230000px;}
.y11f{bottom:378.210000px;}
.yd3{bottom:378.390000px;}
.y21{bottom:380.730000px;}
.y149{bottom:386.490000px;}
.y84{bottom:388.110000px;}
.y58{bottom:390.630000px;}
.yf8{bottom:400.530000px;}
.y11e{bottom:401.070000px;}
.yd2{bottom:404.850000px;}
.y20{bottom:406.650000px;}
.y148{bottom:409.350000px;}
.ye5{bottom:415.980000px;}
.y11d{bottom:423.930000px;}
.yf7{bottom:424.290000px;}
.y83{bottom:426.450000px;}
.y57{bottom:429.150000px;}
.y1f{bottom:430.410000px;}
.yd1{bottom:431.310000px;}
.y147{bottom:432.030000px;}
.y11c{bottom:446.655000px;}
.yf6{bottom:448.095000px;}
.ye4{bottom:450.540000px;}
.ye3{bottom:454.140000px;}
.y1e{bottom:454.215000px;}
.y146{bottom:454.935000px;}
.yd0{bottom:457.815000px;}
.y82{bottom:465.735000px;}
.y56{bottom:467.895000px;}
.y11b{bottom:469.515000px;}
.yf5{bottom:471.855000px;}
.y145{bottom:477.795000px;}
.y1d{bottom:477.975000px;}
.yaa{bottom:483.375000px;}
.ycf{bottom:484.275000px;}
.ye2{bottom:488.700000px;}
.y81{bottom:489.495000px;}
.y11a{bottom:492.375000px;}
.yf4{bottom:495.795000px;}
.ye1{bottom:499.320000px;}
.y144{bottom:500.655000px;}
.y1c{bottom:501.915000px;}
.y55{bottom:507.135000px;}
.yce{bottom:510.735000px;}
.y80{bottom:513.255000px;}
.y119{bottom:515.235000px;}
.yf3{bottom:519.555000px;}
.y143{bottom:523.335000px;}
.y1b{bottom:525.675000px;}
.ye0{bottom:529.200000px;}
.y54{bottom:530.895000px;}
.y7f{bottom:537.195000px;}
.ycd{bottom:537.375000px;}
.y118{bottom:537.915000px;}
.yf2{bottom:543.315000px;}
.y142{bottom:546.195000px;}
.y1a{bottom:549.435000px;}
.y8f{bottom:551.340000px;}
.y53{bottom:554.655000px;}
.yde{bottom:559.080000px;}
.ycc{bottom:560.775000px;}
.y7e{bottom:560.955000px;}
.yf1{bottom:567.075000px;}
.y141{bottom:569.055000px;}
.y19{bottom:573.195000px;}
.ydc{bottom:576.180000px;}
.y52{bottom:578.595000px;}
.y117{bottom:583.635000px;}
.y7d{bottom:584.715000px;}
.ycb{bottom:584.895000px;}
.yf0{bottom:591.015000px;}
.y140{bottom:591.735000px;}
.ya9{bottom:593.175000px;}
.y18{bottom:597.135000px;}
.y51{bottom:602.355000px;}
.y116{bottom:606.315000px;}
.y7c{bottom:608.475000px;}
.yca{bottom:608.655000px;}
.y13f{bottom:614.595000px;}
.yef{bottom:614.775000px;}
.y17{bottom:620.895000px;}
.y50{bottom:626.115000px;}
.yc9{bottom:629.175000px;}
.y7b{bottom:632.415000px;}
.y13e{bottom:637.455000px;}
.yee{bottom:638.535000px;}
.y16{bottom:644.655000px;}
.y115{bottom:652.035000px;}
.yc8{bottom:654.375000px;}
.y7a{bottom:656.175000px;}
.y13d{bottom:660.315000px;}
.yed{bottom:662.295000px;}
.y4f{bottom:664.995000px;}
.y15{bottom:668.415000px;}
.y114{bottom:674.895000px;}
.yc7{bottom:679.605000px;}
.y79{bottom:679.965000px;}
.y13c{bottom:683.025000px;}
.yec{bottom:686.085000px;}
.y4e{bottom:688.785000px;}
.y113{bottom:697.605000px;}
.y14{bottom:701.745000px;}
.y78{bottom:703.725000px;}
.yc6{bottom:704.805000px;}
.y13b{bottom:705.885000px;}
.yeb{bottom:710.025000px;}
.y4d{bottom:712.545000px;}
.y112{bottom:720.465000px;}
.y77{bottom:727.665000px;}
.y13a{bottom:728.745000px;}
.y13{bottom:729.285000px;}
.yc5{bottom:730.005000px;}
.yea{bottom:733.785000px;}
.y4c{bottom:736.305000px;}
.y111{bottom:743.325000px;}
.y76{bottom:751.425000px;}
.y139{bottom:751.605000px;}
.yc4{bottom:755.205000px;}
.ye9{bottom:757.545000px;}
.y4b{bottom:760.245000px;}
.y12{bottom:761.325000px;}
.y110{bottom:766.185000px;}
.y138{bottom:774.285000px;}
.ya8{bottom:775.185000px;}
.yc3{bottom:780.405000px;}
.ye8{bottom:781.305000px;}
.y4a{bottom:784.005000px;}
.y10f{bottom:788.865000px;}
.y75{bottom:789.765000px;}
.y11{bottom:791.925000px;}
.y137{bottom:797.145000px;}
.ya7{bottom:798.945000px;}
.y10{bottom:804.525000px;}
.ye7{bottom:805.245000px;}
.yc2{bottom:805.605000px;}
.y10e{bottom:811.725000px;}
.y136{bottom:820.005000px;}
.y49{bottom:822.705000px;}
.yf{bottom:825.225000px;}
.y74{bottom:829.005000px;}
.yc1{bottom:830.805000px;}
.y10d{bottom:834.585000px;}
.y135{bottom:842.865000px;}
.y48{bottom:846.645000px;}
.ye{bottom:848.265000px;}
.y73{bottom:852.765000px;}
.y9b{bottom:855.465000px;}
.ybd{bottom:856.725000px;}
.y10c{bottom:857.265000px;}
.y134{bottom:865.545000px;}
.y47{bottom:870.405000px;}
.y72{bottom:876.525000px;}
.y9a{bottom:879.225000px;}
.yd{bottom:879.765000px;}
.y10b{bottom:880.125000px;}
.y133{bottom:888.405000px;}
.y46{bottom:894.165000px;}
.y71{bottom:900.465000px;}
.y99{bottom:902.985000px;}
.yc{bottom:909.645000px;}
.y132{bottom:911.310000px;}
.y45{bottom:917.970000px;}
.y70{bottom:924.270000px;}
.y10a{bottom:925.890000px;}
.y98{bottom:926.790000px;}
.ya6{bottom:933.090000px;}
.ybc{bottom:933.630000px;}
.y131{bottom:933.990000px;}
.yb{bottom:939.570000px;}
.y44{bottom:941.910000px;}
.y6f{bottom:948.030000px;}
.y109{bottom:948.570000px;}
.y97{bottom:950.730000px;}
.ya5{bottom:956.850000px;}
.ybb{bottom:957.390000px;}
.y43{bottom:965.670000px;}
.y108{bottom:971.430000px;}
.y6e{bottom:971.790000px;}
.y130{bottom:979.710000px;}
.ya4{bottom:980.610000px;}
.yba{bottom:981.150000px;}
.ya{bottom:986.910000px;}
.y96{bottom:989.070000px;}
.y42{bottom:989.430000px;}
.y35{bottom:989.640000px;}
.y33{bottom:990.180000px;}
.y31{bottom:991.080000px;}
.y107{bottom:994.290000px;}
.y6d{bottom:995.730000px;}
.y12f{bottom:1002.570000px;}
.ya3{bottom:1004.370000px;}
.yb9{bottom:1004.910000px;}
.y106{bottom:1017.150000px;}
.y6c{bottom:1019.490000px;}
.y12e{bottom:1025.250000px;}
.y9{bottom:1027.590000px;}
.y95{bottom:1027.950000px;}
.y41{bottom:1028.310000px;}
.yb8{bottom:1028.850000px;}
.y105{bottom:1039.830000px;}
.y6b{bottom:1043.250000px;}
.y12d{bottom:1048.110000px;}
.y40{bottom:1052.070000px;}
.yb7{bottom:1052.610000px;}
.y104{bottom:1062.690000px;}
.y8{bottom:1062.870000px;}
.y6a{bottom:1067.010000px;}
.y12c{bottom:1070.970000px;}
.y3f{bottom:1075.830000px;}
.yb6{bottom:1076.370000px;}
.y103{bottom:1085.550000px;}
.y69{bottom:1090.950000px;}
.y12b{bottom:1093.830000px;}
.y3e{bottom:1099.590000px;}
.y7{bottom:1101.030000px;}
.yb5{bottom:1107.150000px;}
.y102{bottom:1108.410000px;}
.y68{bottom:1114.710000px;}
.y12a{bottom:1116.510000px;}
.y3d{bottom:1138.110000px;}
.y67{bottom:1138.470000px;}
.y6{bottom:1139.190000px;}
.y129{bottom:1139.370000px;}
.y3a{bottom:1169.460000px;}
.y64{bottom:1181.340000px;}
.y39{bottom:1183.500000px;}
.y38{bottom:1197.540000px;}
.y63{bottom:1197.720000px;}
.y2d{bottom:1215.720000px;}
.y2f{bottom:1238.580000px;}
.h1a{height:12.780000px;}
.h2e{height:13.140000px;}
.h31{height:13.319850px;}
.h2f{height:13.320000px;}
.h30{height:13.500000px;}
.h1b{height:14.400000px;}
.h27{height:16.200000px;}
.h24{height:16.380000px;}
.h18{height:16.648945px;}
.h2b{height:20.685000px;}
.h2a{height:20.700000px;}
.h22{height:20.880000px;}
.h25{height:21.060000px;}
.h1d{height:25.380000px;}
.h19{height:36.168398px;}
.h2d{height:36.180000px;}
.h2{height:38.405391px;}
.h1c{height:38.464805px;}
.h15{height:38.671172px;}
.h1f{height:40.655391px;}
.h1e{height:40.843828px;}
.h17{height:41.220000px;}
.h29{height:41.400000px;}
.hf{height:47.344922px;}
.h2c{height:47.980898px;}
.he{height:48.616875px;}
.h4{height:49.680000px;}
.h21{height:50.273438px;}
.h5{height:52.817344px;}
.h6{height:53.709961px;}
.h26{height:58.651172px;}
.h16{height:59.439023px;}
.hb{height:60.960938px;}
.h3{height:65.884219px;}
.h20{height:67.824844px;}
.h32{height:67.837500px;}
.h13{height:70.628906px;}
.h10{height:70.664062px;}
.h11{height:70.995234px;}
.h14{height:72.562500px;}
.hc{height:74.004654px;}
.h12{height:76.279219px;}
.h7{height:84.898125px;}
.h8{height:86.165156px;}
.h23{height:86.255508px;}
.h9{height:86.564531px;}
.ha{height:91.019531px;}
.h28{height:107.280000px;}
.hd{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:12.420000px;}
.wa{width:13.140000px;}
.w9{width:14.220000px;}
.wd{width:14.400000px;}
.w13{width:14.580000px;}
.w12{width:14.760000px;}
.w14{width:14.940000px;}
.we{width:43.380000px;}
.wb{width:43.560000px;}
.wf{width:65.160000px;}
.w4{width:82.260000px;}
.w2{width:102.240000px;}
.w7{width:123.300000px;}
.w5{width:135.720000px;}
.w6{width:153.720000px;}
.w11{width:292.935000px;}
.w10{width:356.239500px;}
.w8{width:499.860000px;}
.w3{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:1.069500px;}
.x13{left:10.836000px;}
.x11{left:14.940000px;}
.x10{left:16.380000px;}
.x3{left:18.870000px;}
.x16{left:36.690000px;}
.xf{left:41.040000px;}
.x18{left:53.496000px;}
.x17{left:93.780000px;}
.x2b{left:106.966500px;}
.x1{left:108.036000px;}
.x30{left:109.656000px;}
.x26{left:111.636000px;}
.xe{left:112.896000px;}
.x12{left:117.000000px;}
.x23{left:119.376000px;}
.x4{left:120.816000px;}
.x31{left:123.156000px;}
.x24{left:124.416000px;}
.xb{left:126.396000px;}
.x19{left:136.836000px;}
.x27{left:148.716000px;}
.x5{left:150.150000px;}
.x1c{left:162.030000px;}
.x2a{left:172.260000px;}
.x1d{left:205.230000px;}
.x1b{left:207.210000px;}
.x38{left:225.900000px;}
.x21{left:233.280000px;}
.x1e{left:235.800000px;}
.x6{left:258.510000px;}
.x37{left:287.640000px;}
.xc{left:294.195000px;}
.x28{left:317.595000px;}
.xd{left:324.075000px;}
.x35{left:352.440000px;}
.x32{left:369.795000px;}
.x14{left:383.040000px;}
.x9{left:399.493125px;}
.xa{left:405.615000px;}
.x34{left:413.100000px;}
.x8{left:434.595000px;}
.x7{left:446.475000px;}
.x22{left:454.680000px;}
.x2d{left:466.275000px;}
.x36{left:475.740000px;}
.x33{left:477.000000px;}
.x39{left:480.240000px;}
.x1a{left:560.445000px;}
.x2f{left:564.765000px;}
.x2e{left:568.905000px;}
.x1f{left:581.400000px;}
.x20{left:638.640000px;}
.x29{left:669.240000px;}
.x15{left:675.540000px;}
.x25{left:722.310000px;}
.x2{left:790.740000px;}
@media print{
.v1{vertical-align:-74.240000pt;}
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-1.472000pt;}
.ls18{letter-spacing:-1.440000pt;}
.ls19{letter-spacing:-1.354667pt;}
.ls16{letter-spacing:-1.024000pt;}
.ls10{letter-spacing:-0.528000pt;}
.ls12{letter-spacing:-0.412267pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.204800pt;}
.ls8{letter-spacing:-0.171733pt;}
.lsa{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.124800pt;}
.ls1a{letter-spacing:-0.020480pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.019840pt;}
.ls14{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.084267pt;}
.ls0{letter-spacing:0.089600pt;}
.lsd{letter-spacing:0.112000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.133333pt;}
.lsc{letter-spacing:0.166400pt;}
.ls1b{letter-spacing:0.199467pt;}
.ls15{letter-spacing:0.227733pt;}
.ls3{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.634667pt;}
.ls6{letter-spacing:0.762667pt;}
.ls2{letter-spacing:552.426667pt;}
.wsf{word-spacing:-16.064000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws18{word-spacing:-15.559467pt;}
.ws17{word-spacing:-15.360000pt;}
.ws16{word-spacing:-15.339520pt;}
.ws4{word-spacing:-15.206400pt;}
.ws13{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.824000pt;}
.ws10{word-spacing:-13.534613pt;}
.wse{word-spacing:-13.102080pt;}
.wsd{word-spacing:-12.894613pt;}
.ws1{word-spacing:-12.303147pt;}
.ws11{word-spacing:-12.282880pt;}
.ws2{word-spacing:-12.175147pt;}
.ws12{word-spacing:-11.834880pt;}
.ws3{word-spacing:-10.720000pt;}
.ws14{word-spacing:-9.966080pt;}
.wsa{word-spacing:-9.433600pt;}
.ws9{word-spacing:-9.308800pt;}
.wsb{word-spacing:-9.162880pt;}
.ws0{word-spacing:-8.870400pt;}
.ws7{word-spacing:-8.833280pt;}
.ws15{word-spacing:-8.078933pt;}
.ws8{word-spacing:0.000000pt;}
._2{margin-left:-2.332800pt;}
._0{margin-left:-1.442560pt;}
._1{width:1.162453pt;}
._5{width:2.104747pt;}
._4{width:3.584000pt;}
._3{width:4.864000pt;}
._6{width:6.208000pt;}
._7{width:7.488000pt;}
._8{width:8.619307pt;}
._d{width:10.196693pt;}
._1a{width:11.157547pt;}
._c{width:12.066560pt;}
._9{width:13.376000pt;}
._e{width:14.338773pt;}
._15{width:17.543893pt;}
._12{width:19.008000pt;}
._13{width:20.032000pt;}
._14{width:21.016107pt;}
._1b{width:22.183893pt;}
._f{width:24.576000pt;}
._10{width:25.472000pt;}
._11{width:26.549547pt;}
._1c{width:27.840000pt;}
._16{width:103.424000pt;}
._17{width:104.490453pt;}
._18{width:119.306667pt;}
._19{width:120.309333pt;}
._a{width:1008.293547pt;}
._b{width:1347.578453pt;}
.fsb{font-size:18.560000pt;}
.fs9{font-size:34.560000pt;}
.fs0{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fsc{font-size:61.440000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:90.880000pt;}
.fs5{font-size:96.000000pt;}
.yb0{bottom:-12.293333pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:0.773333pt;}
.ydd{bottom:1.666667pt;}
.ye6{bottom:1.786667pt;}
.ydf{bottom:1.826667pt;}
.y34{bottom:2.213333pt;}
.y37{bottom:2.400000pt;}
.y92{bottom:2.586667pt;}
.y90{bottom:3.426667pt;}
.y94{bottom:3.546667pt;}
.yc0{bottom:3.680000pt;}
.y3{bottom:4.000000pt;}
.y4{bottom:4.640000pt;}
.y30{bottom:6.240000pt;}
.y66{bottom:6.560000pt;}
.ybe{bottom:12.960000pt;}
.y3c{bottom:19.840000pt;}
.y2{bottom:21.920000pt;}
.ybf{bottom:22.080000pt;}
.y65{bottom:24.480000pt;}
.y5{bottom:28.800000pt;}
.y2e{bottom:32.000000pt;}
.y3b{bottom:36.640000pt;}
.y1{bottom:37.920000pt;}
.yb4{bottom:40.026667pt;}
.y36{bottom:60.480000pt;}
.yb3{bottom:60.986667pt;}
.yb2{bottom:81.466667pt;}
.y2c{bottom:99.360000pt;}
.ya2{bottom:103.680000pt;}
.y2b{bottom:106.080000pt;}
.y8e{bottom:106.720000pt;}
.y62{bottom:108.960000pt;}
.yae{bottom:112.160000pt;}
.y2a{bottom:116.160000pt;}
.y101{bottom:124.640000pt;}
.ya1{bottom:124.960000pt;}
.y8d{bottom:127.840000pt;}
.yad{bottom:129.760000pt;}
.y61{bottom:130.080000pt;}
.y128{bottom:133.440000pt;}
.ydb{bottom:136.000000pt;}
.y29{bottom:138.560000pt;}
.ya0{bottom:146.080000pt;}
.yac{bottom:147.360000pt;}
.y8c{bottom:148.960000pt;}
.y60{bottom:151.360000pt;}
.y127{bottom:153.760000pt;}
.yda{bottom:157.120000pt;}
.y100{bottom:161.600000pt;}
.y9f{bottom:167.200000pt;}
.y8b{bottom:170.080000pt;}
.y5f{bottom:172.480000pt;}
.y28{bottom:172.960000pt;}
.y126{bottom:173.920000pt;}
.yab{bottom:175.520000pt;}
.yd9{bottom:178.240000pt;}
.y9e{bottom:188.346667pt;}
.y125{bottom:194.266667pt;}
.yd8{bottom:199.386667pt;}
.yff{bottom:201.466667pt;}
.y8a{bottom:204.346667pt;}
.y5e{bottom:206.586667pt;}
.y27{bottom:207.546667pt;}
.y124{bottom:214.586667pt;}
.y14f{bottom:221.946667pt;}
.yfe{bottom:222.586667pt;}
.y9d{bottom:222.906667pt;}
.yb1{bottom:225.760000pt;}
.y26{bottom:229.306667pt;}
.yd7{bottom:231.226667pt;}
.y123{bottom:234.906667pt;}
.y89{bottom:239.226667pt;}
.y5d{bottom:241.466667pt;}
.y14e{bottom:242.106667pt;}
.yfd{bottom:243.706667pt;}
.y9c{bottom:244.026667pt;}
.y25{bottom:250.906667pt;}
.y122{bottom:255.066667pt;}
.yd6{bottom:258.586667pt;}
.y88{bottom:260.346667pt;}
.y14d{bottom:262.426667pt;}
.y5c{bottom:262.586667pt;}
.yaf{bottom:264.160000pt;}
.yfc{bottom:264.826667pt;}
.y93{bottom:270.720000pt;}
.y24{bottom:272.506667pt;}
.y121{bottom:275.386667pt;}
.y87{bottom:281.466667pt;}
.y14c{bottom:282.746667pt;}
.y5b{bottom:283.866667pt;}
.yfb{bottom:286.106667pt;}
.y23{bottom:291.546667pt;}
.yd5{bottom:295.706667pt;}
.y91{bottom:298.400000pt;}
.y86{bottom:302.586667pt;}
.y14b{bottom:302.906667pt;}
.y5a{bottom:304.986667pt;}
.yfa{bottom:307.226667pt;}
.y22{bottom:309.946667pt;}
.yd4{bottom:314.106667pt;}
.y120{bottom:315.866667pt;}
.y14a{bottom:323.226667pt;}
.y85{bottom:323.866667pt;}
.y59{bottom:326.106667pt;}
.yf9{bottom:334.426667pt;}
.y11f{bottom:336.186667pt;}
.yd3{bottom:336.346667pt;}
.y21{bottom:338.426667pt;}
.y149{bottom:343.546667pt;}
.y84{bottom:344.986667pt;}
.y58{bottom:347.226667pt;}
.yf8{bottom:356.026667pt;}
.y11e{bottom:356.506667pt;}
.yd2{bottom:359.866667pt;}
.y20{bottom:361.466667pt;}
.y148{bottom:363.866667pt;}
.ye5{bottom:369.760000pt;}
.y11d{bottom:376.826667pt;}
.yf7{bottom:377.146667pt;}
.y83{bottom:379.066667pt;}
.y57{bottom:381.466667pt;}
.y1f{bottom:382.586667pt;}
.yd1{bottom:383.386667pt;}
.y147{bottom:384.026667pt;}
.y11c{bottom:397.026667pt;}
.yf6{bottom:398.306667pt;}
.ye4{bottom:400.480000pt;}
.ye3{bottom:403.680000pt;}
.y1e{bottom:403.746667pt;}
.y146{bottom:404.386667pt;}
.yd0{bottom:406.946667pt;}
.y82{bottom:413.986667pt;}
.y56{bottom:415.906667pt;}
.y11b{bottom:417.346667pt;}
.yf5{bottom:419.426667pt;}
.y145{bottom:424.706667pt;}
.y1d{bottom:424.866667pt;}
.yaa{bottom:429.666667pt;}
.ycf{bottom:430.466667pt;}
.ye2{bottom:434.400000pt;}
.y81{bottom:435.106667pt;}
.y11a{bottom:437.666667pt;}
.yf4{bottom:440.706667pt;}
.ye1{bottom:443.840000pt;}
.y144{bottom:445.026667pt;}
.y1c{bottom:446.146667pt;}
.y55{bottom:450.786667pt;}
.yce{bottom:453.986667pt;}
.y80{bottom:456.226667pt;}
.y119{bottom:457.986667pt;}
.yf3{bottom:461.826667pt;}
.y143{bottom:465.186667pt;}
.y1b{bottom:467.266667pt;}
.ye0{bottom:470.400000pt;}
.y54{bottom:471.906667pt;}
.y7f{bottom:477.506667pt;}
.ycd{bottom:477.666667pt;}
.y118{bottom:478.146667pt;}
.yf2{bottom:482.946667pt;}
.y142{bottom:485.506667pt;}
.y1a{bottom:488.386667pt;}
.y8f{bottom:490.080000pt;}
.y53{bottom:493.026667pt;}
.yde{bottom:496.960000pt;}
.ycc{bottom:498.466667pt;}
.y7e{bottom:498.626667pt;}
.yf1{bottom:504.066667pt;}
.y141{bottom:505.826667pt;}
.y19{bottom:509.506667pt;}
.ydc{bottom:512.160000pt;}
.y52{bottom:514.306667pt;}
.y117{bottom:518.786667pt;}
.y7d{bottom:519.746667pt;}
.ycb{bottom:519.906667pt;}
.yf0{bottom:525.346667pt;}
.y140{bottom:525.986667pt;}
.ya9{bottom:527.266667pt;}
.y18{bottom:530.786667pt;}
.y51{bottom:535.426667pt;}
.y116{bottom:538.946667pt;}
.y7c{bottom:540.866667pt;}
.yca{bottom:541.026667pt;}
.y13f{bottom:546.306667pt;}
.yef{bottom:546.466667pt;}
.y17{bottom:551.906667pt;}
.y50{bottom:556.546667pt;}
.yc9{bottom:559.266667pt;}
.y7b{bottom:562.146667pt;}
.y13e{bottom:566.626667pt;}
.yee{bottom:567.586667pt;}
.y16{bottom:573.026667pt;}
.y115{bottom:579.586667pt;}
.yc8{bottom:581.666667pt;}
.y7a{bottom:583.266667pt;}
.y13d{bottom:586.946667pt;}
.yed{bottom:588.706667pt;}
.y4f{bottom:591.106667pt;}
.y15{bottom:594.146667pt;}
.y114{bottom:599.906667pt;}
.yc7{bottom:604.093333pt;}
.y79{bottom:604.413333pt;}
.y13c{bottom:607.133333pt;}
.yec{bottom:609.853333pt;}
.y4e{bottom:612.253333pt;}
.y113{bottom:620.093333pt;}
.y14{bottom:623.773333pt;}
.y78{bottom:625.533333pt;}
.yc6{bottom:626.493333pt;}
.y13b{bottom:627.453333pt;}
.yeb{bottom:631.133333pt;}
.y4d{bottom:633.373333pt;}
.y112{bottom:640.413333pt;}
.y77{bottom:646.813333pt;}
.y13a{bottom:647.773333pt;}
.y13{bottom:648.253333pt;}
.yc5{bottom:648.893333pt;}
.yea{bottom:652.253333pt;}
.y4c{bottom:654.493333pt;}
.y111{bottom:660.733333pt;}
.y76{bottom:667.933333pt;}
.y139{bottom:668.093333pt;}
.yc4{bottom:671.293333pt;}
.ye9{bottom:673.373333pt;}
.y4b{bottom:675.773333pt;}
.y12{bottom:676.733333pt;}
.y110{bottom:681.053333pt;}
.y138{bottom:688.253333pt;}
.ya8{bottom:689.053333pt;}
.yc3{bottom:693.693333pt;}
.ye8{bottom:694.493333pt;}
.y4a{bottom:696.893333pt;}
.y10f{bottom:701.213333pt;}
.y75{bottom:702.013333pt;}
.y11{bottom:703.933333pt;}
.y137{bottom:708.573333pt;}
.ya7{bottom:710.173333pt;}
.y10{bottom:715.133333pt;}
.ye7{bottom:715.773333pt;}
.yc2{bottom:716.093333pt;}
.y10e{bottom:721.533333pt;}
.y136{bottom:728.893333pt;}
.y49{bottom:731.293333pt;}
.yf{bottom:733.533333pt;}
.y74{bottom:736.893333pt;}
.yc1{bottom:738.493333pt;}
.y10d{bottom:741.853333pt;}
.y135{bottom:749.213333pt;}
.y48{bottom:752.573333pt;}
.ye{bottom:754.013333pt;}
.y73{bottom:758.013333pt;}
.y9b{bottom:760.413333pt;}
.ybd{bottom:761.533333pt;}
.y10c{bottom:762.013333pt;}
.y134{bottom:769.373333pt;}
.y47{bottom:773.693333pt;}
.y72{bottom:779.133333pt;}
.y9a{bottom:781.533333pt;}
.yd{bottom:782.013333pt;}
.y10b{bottom:782.333333pt;}
.y133{bottom:789.693333pt;}
.y46{bottom:794.813333pt;}
.y71{bottom:800.413333pt;}
.y99{bottom:802.653333pt;}
.yc{bottom:808.573333pt;}
.y132{bottom:810.053333pt;}
.y45{bottom:815.973333pt;}
.y70{bottom:821.573333pt;}
.y10a{bottom:823.013333pt;}
.y98{bottom:823.813333pt;}
.ya6{bottom:829.413333pt;}
.ybc{bottom:829.893333pt;}
.y131{bottom:830.213333pt;}
.yb{bottom:835.173333pt;}
.y44{bottom:837.253333pt;}
.y6f{bottom:842.693333pt;}
.y109{bottom:843.173333pt;}
.y97{bottom:845.093333pt;}
.ya5{bottom:850.533333pt;}
.ybb{bottom:851.013333pt;}
.y43{bottom:858.373333pt;}
.y108{bottom:863.493333pt;}
.y6e{bottom:863.813333pt;}
.y130{bottom:870.853333pt;}
.ya4{bottom:871.653333pt;}
.yba{bottom:872.133333pt;}
.ya{bottom:877.253333pt;}
.y96{bottom:879.173333pt;}
.y42{bottom:879.493333pt;}
.y35{bottom:879.680000pt;}
.y33{bottom:880.160000pt;}
.y31{bottom:880.960000pt;}
.y107{bottom:883.813333pt;}
.y6d{bottom:885.093333pt;}
.y12f{bottom:891.173333pt;}
.ya3{bottom:892.773333pt;}
.yb9{bottom:893.253333pt;}
.y106{bottom:904.133333pt;}
.y6c{bottom:906.213333pt;}
.y12e{bottom:911.333333pt;}
.y9{bottom:913.413333pt;}
.y95{bottom:913.733333pt;}
.y41{bottom:914.053333pt;}
.yb8{bottom:914.533333pt;}
.y105{bottom:924.293333pt;}
.y6b{bottom:927.333333pt;}
.y12d{bottom:931.653333pt;}
.y40{bottom:935.173333pt;}
.yb7{bottom:935.653333pt;}
.y104{bottom:944.613333pt;}
.y8{bottom:944.773333pt;}
.y6a{bottom:948.453333pt;}
.y12c{bottom:951.973333pt;}
.y3f{bottom:956.293333pt;}
.yb6{bottom:956.773333pt;}
.y103{bottom:964.933333pt;}
.y69{bottom:969.733333pt;}
.y12b{bottom:972.293333pt;}
.y3e{bottom:977.413333pt;}
.y7{bottom:978.693333pt;}
.yb5{bottom:984.133333pt;}
.y102{bottom:985.253333pt;}
.y68{bottom:990.853333pt;}
.y12a{bottom:992.453333pt;}
.y3d{bottom:1011.653333pt;}
.y67{bottom:1011.973333pt;}
.y6{bottom:1012.613333pt;}
.y129{bottom:1012.773333pt;}
.y3a{bottom:1039.520000pt;}
.y64{bottom:1050.080000pt;}
.y39{bottom:1052.000000pt;}
.y38{bottom:1064.480000pt;}
.y63{bottom:1064.640000pt;}
.y2d{bottom:1080.640000pt;}
.y2f{bottom:1100.960000pt;}
.h1a{height:11.360000pt;}
.h2e{height:11.680000pt;}
.h31{height:11.839867pt;}
.h2f{height:11.840000pt;}
.h30{height:12.000000pt;}
.h1b{height:12.800000pt;}
.h27{height:14.400000pt;}
.h24{height:14.560000pt;}
.h18{height:14.799062pt;}
.h2b{height:18.386667pt;}
.h2a{height:18.400000pt;}
.h22{height:18.560000pt;}
.h25{height:18.720000pt;}
.h1d{height:22.560000pt;}
.h19{height:32.149687pt;}
.h2d{height:32.160000pt;}
.h2{height:34.138125pt;}
.h1c{height:34.190937pt;}
.h15{height:34.374375pt;}
.h1f{height:36.138125pt;}
.h1e{height:36.305625pt;}
.h17{height:36.640000pt;}
.h29{height:36.800000pt;}
.hf{height:42.084375pt;}
.h2c{height:42.649687pt;}
.he{height:43.215000pt;}
.h4{height:44.160000pt;}
.h21{height:44.687500pt;}
.h5{height:46.948750pt;}
.h6{height:47.742188pt;}
.h26{height:52.134375pt;}
.h16{height:52.834688pt;}
.hb{height:54.187500pt;}
.h3{height:58.563750pt;}
.h20{height:60.288750pt;}
.h32{height:60.300000pt;}
.h13{height:62.781250pt;}
.h10{height:62.812500pt;}
.h11{height:63.106875pt;}
.h14{height:64.500000pt;}
.hc{height:65.781915pt;}
.h12{height:67.803750pt;}
.h7{height:75.465000pt;}
.h8{height:76.591250pt;}
.h23{height:76.671562pt;}
.h9{height:76.946250pt;}
.ha{height:80.906250pt;}
.h28{height:95.360000pt;}
.hd{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:11.040000pt;}
.wa{width:11.680000pt;}
.w9{width:12.640000pt;}
.wd{width:12.800000pt;}
.w13{width:12.960000pt;}
.w12{width:13.120000pt;}
.w14{width:13.280000pt;}
.we{width:38.560000pt;}
.wb{width:38.720000pt;}
.wf{width:57.920000pt;}
.w4{width:73.120000pt;}
.w2{width:90.880000pt;}
.w7{width:109.600000pt;}
.w5{width:120.640000pt;}
.w6{width:136.640000pt;}
.w11{width:260.386667pt;}
.w10{width:316.657333pt;}
.w8{width:444.320000pt;}
.w3{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:0.950667pt;}
.x13{left:9.632000pt;}
.x11{left:13.280000pt;}
.x10{left:14.560000pt;}
.x3{left:16.773333pt;}
.x16{left:32.613333pt;}
.xf{left:36.480000pt;}
.x18{left:47.552000pt;}
.x17{left:83.360000pt;}
.x2b{left:95.081333pt;}
.x1{left:96.032000pt;}
.x30{left:97.472000pt;}
.x26{left:99.232000pt;}
.xe{left:100.352000pt;}
.x12{left:104.000000pt;}
.x23{left:106.112000pt;}
.x4{left:107.392000pt;}
.x31{left:109.472000pt;}
.x24{left:110.592000pt;}
.xb{left:112.352000pt;}
.x19{left:121.632000pt;}
.x27{left:132.192000pt;}
.x5{left:133.466667pt;}
.x1c{left:144.026667pt;}
.x2a{left:153.120000pt;}
.x1d{left:182.426667pt;}
.x1b{left:184.186667pt;}
.x38{left:200.800000pt;}
.x21{left:207.360000pt;}
.x1e{left:209.600000pt;}
.x6{left:229.786667pt;}
.x37{left:255.680000pt;}
.xc{left:261.506667pt;}
.x28{left:282.306667pt;}
.xd{left:288.066667pt;}
.x35{left:313.280000pt;}
.x32{left:328.706667pt;}
.x14{left:340.480000pt;}
.x9{left:355.105000pt;}
.xa{left:360.546667pt;}
.x34{left:367.200000pt;}
.x8{left:386.306667pt;}
.x7{left:396.866667pt;}
.x22{left:404.160000pt;}
.x2d{left:414.466667pt;}
.x36{left:422.880000pt;}
.x33{left:424.000000pt;}
.x39{left:426.880000pt;}
.x1a{left:498.173333pt;}
.x2f{left:502.013333pt;}
.x2e{left:505.693333pt;}
.x1f{left:516.800000pt;}
.x20{left:567.680000pt;}
.x29{left:594.880000pt;}
.x15{left:600.480000pt;}
.x25{left:642.053333pt;}
.x2{left:702.880000pt;}
}




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