
    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_c8a795f194f5b23b7e3329c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_67a5f5a0ab78f22b5c0e8c2d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_521410d9fe47bd2ce8281930.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_97489c5ae9fdc31cc1734ea2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_9103cb8e16a6598134fb534c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_e84d7274c2946bae4f392c07.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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);}
.v3{vertical-align:-82.800000px;}
.v2{vertical-align:-24.120000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:20.880000px;}
.v4{vertical-align:24.120000px;}
.v1{vertical-align:29.880000px;}
.lsd{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.306600px;}
.ls9{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.153600px;}
.lsa{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.139800px;}
.ls3{letter-spacing:-0.081600px;}
.ls6{letter-spacing:-0.072000px;}
.ls18{letter-spacing:-0.039960px;}
.ls19{letter-spacing:-0.017280px;}
.ls1a{letter-spacing:-0.013320px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.ls11{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.078600px;}
.ls4{letter-spacing:0.081600px;}
.lse{letter-spacing:0.118200px;}
.ls8{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.153600px;}
.ls1b{letter-spacing:0.170400px;}
.ls15{letter-spacing:0.170640px;}
.ls17{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.864000px;}
.lsc{letter-spacing:2.664000px;}
.ls1{letter-spacing:93.231120px;}
.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;}
}
.wsa{word-spacing:-20.304000px;}
.ws9{word-spacing:-20.232000px;}
.ws5{word-spacing:-20.160000px;}
.ws3{word-spacing:-20.016000px;}
.ws2{word-spacing:-19.944000px;}
.ws4{word-spacing:-19.872000px;}
.wsb{word-spacing:-19.800000px;}
.ws12{word-spacing:-16.883760px;}
.wsf{word-spacing:-16.866960px;}
.wsc{word-spacing:-16.766640px;}
.wsd{word-spacing:-16.713360px;}
.ws10{word-spacing:-16.673400px;}
.wse{word-spacing:-16.573560px;}
.ws0{word-spacing:-15.012000px;}
.ws6{word-spacing:-14.967480px;}
.ws8{word-spacing:-13.428840px;}
.ws7{word-spacing:-13.329360px;}
.ws11{word-spacing:-10.791360px;}
.ws1{word-spacing:0.000000px;}
._17{margin-left:-5.544000px;}
._9{margin-left:-3.816000px;}
._11{margin-left:-2.686320px;}
._0{margin-left:-1.345680px;}
._1{width:1.321560px;}
._1c{width:2.323440px;}
._10{width:3.358440px;}
._13{width:4.536000px;}
._14{width:5.640000px;}
._b{width:6.649680px;}
._a{width:7.704000px;}
._c{width:9.048000px;}
._16{width:10.201680px;}
._1f{width:11.226960px;}
._6{width:12.240000px;}
._8{width:13.680000px;}
._12{width:14.760000px;}
._e{width:16.416000px;}
._d{width:17.568000px;}
._2{width:19.008000px;}
._7{width:21.120000px;}
._15{width:22.248000px;}
._f{width:23.400000px;}
._20{width:24.480000px;}
._18{width:25.848000px;}
._19{width:26.880000px;}
._5{width:28.080000px;}
._3{width:29.448000px;}
._1a{width:30.672000px;}
._22{width:31.968000px;}
._23{width:33.192000px;}
._39{width:34.416000px;}
._29{width:35.712000px;}
._1b{width:36.720000px;}
._27{width:39.384000px;}
._26{width:40.392000px;}
._21{width:42.192000px;}
._42{width:43.416000px;}
._28{width:44.712000px;}
._33{width:45.980640px;}
._1e{width:47.137680px;}
._1d{width:48.312000px;}
._3f{width:49.680000px;}
._25{width:51.243600px;}
._24{width:52.364400px;}
._3e{width:53.665680px;}
._2f{width:54.936000px;}
._30{width:56.280000px;}
._5c{width:59.125320px;}
._4e{width:62.784000px;}
._59{width:65.091240px;}
._46{width:67.608000px;}
._4f{width:68.736000px;}
._4b{width:74.592000px;}
._49{width:75.816000px;}
._5a{width:77.434560px;}
._41{width:81.288000px;}
._2b{width:85.104000px;}
._2c{width:86.184000px;}
._40{width:90.504000px;}
._43{width:92.232120px;}
._36{width:93.240000px;}
._2e{width:95.112000px;}
._5b{width:114.733080px;}
._48{width:116.352000px;}
._54{width:121.863240px;}
._56{width:127.274040px;}
._4a{width:129.384000px;}
._55{width:135.149760px;}
._2a{width:140.400000px;}
._45{width:144.576000px;}
._3d{width:146.376000px;}
._37{width:150.624000px;}
._3a{width:156.744000px;}
._57{width:161.362080px;}
._44{width:180.432000px;}
._31{width:200.592000px;}
._58{width:202.123440px;}
._52{width:205.309800px;}
._3b{width:211.104000px;}
._53{width:224.728560px;}
._4c{width:229.968000px;}
._4d{width:231.000000px;}
._2d{width:234.936000px;}
._51{width:251.602200px;}
._47{width:302.688000px;}
._5d{width:307.129320px;}
._38{width:319.608000px;}
._32{width:456.984000px;}
._35{width:475.776000px;}
._34{width:477.048000px;}
._3c{width:637.416000px;}
._4{width:843.984000px;}
._50{width:849.111120px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fs5{font-size:47.880000px;}
.fs4{font-size:54.000000px;}
.fsa{font-size:56.880000px;}
.fs8{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs6{font-size:69.120000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:83.880000px;}
.fs1{font-size:96.120000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ycc{bottom:3.150000px;}
.yc6{bottom:3.780000px;}
.yd3{bottom:20.340000px;}
.ycb{bottom:20.430000px;}
.ye2{bottom:20.460000px;}
.yc5{bottom:24.480000px;}
.yca{bottom:37.620000px;}
.ye1{bottom:37.650000px;}
.ye8{bottom:37.710000px;}
.y102{bottom:45.180000px;}
.ye5{bottom:54.810000px;}
.yc9{bottom:54.900000px;}
.ye0{bottom:54.930000px;}
.y2{bottom:57.420000px;}
.yd2{bottom:72.090000px;}
.yfb{bottom:72.120000px;}
.yc8{bottom:72.180000px;}
.ydf{bottom:72.210000px;}
.y1{bottom:77.580000px;}
.yd1{bottom:89.370000px;}
.yde{bottom:89.400000px;}
.yf1{bottom:89.460000px;}
.ye4{bottom:106.560000px;}
.yd0{bottom:106.650000px;}
.ydd{bottom:106.680000px;}
.yae{bottom:112.500000px;}
.y4f{bottom:116.100000px;}
.y89{bottom:123.840000px;}
.ydc{bottom:123.960000px;}
.y3e{bottom:127.440000px;}
.yf3{bottom:129.060000px;}
.y62{bottom:131.040000px;}
.y9d{bottom:138.600000px;}
.ya9{bottom:138.870000px;}
.y109{bottom:140.580000px;}
.ycf{bottom:141.120000px;}
.yd5{bottom:141.150000px;}
.y53{bottom:142.470000px;}
.y27{bottom:145.440000px;}
.y67{bottom:146.070000px;}
.yad{bottom:153.900000px;}
.y4e{bottom:157.500000px;}
.yf8{bottom:158.340000px;}
.yf6{bottom:158.400000px;}
.ydb{bottom:158.430000px;}
.ye7{bottom:158.580000px;}
.yf9{bottom:159.390000px;}
.yd4{bottom:159.930000px;}
.yf2{bottom:164.340000px;}
.y88{bottom:165.240000px;}
.y3d{bottom:168.840000px;}
.y61{bottom:172.440000px;}
.yf7{bottom:175.620000px;}
.yf5{bottom:175.680000px;}
.yda{bottom:175.710000px;}
.y9c{bottom:180.000000px;}
.ya8{bottom:180.270000px;}
.y52{bottom:183.870000px;}
.y26{bottom:186.840000px;}
.y66{bottom:187.470000px;}
.yd9{bottom:192.900000px;}
.yac{bottom:195.300000px;}
.y4d{bottom:198.900000px;}
.y87{bottom:206.640000px;}
.yd8{bottom:210.180000px;}
.y3c{bottom:210.240000px;}
.y108{bottom:210.330000px;}
.y60{bottom:213.840000px;}
.yab{bottom:221.670000px;}
.y7f{bottom:225.300000px;}
.yd7{bottom:227.460000px;}
.y25{bottom:228.270000px;}
.y65{bottom:228.900000px;}
.y9b{bottom:236.370000px;}
.ya7{bottom:236.730000px;}
.y4c{bottom:240.330000px;}
.ye6{bottom:245.610000px;}
.y3b{bottom:251.670000px;}
.y5f{bottom:255.270000px;}
.yfa{bottom:262.890000px;}
.y86{bottom:263.100000px;}
.y7e{bottom:266.700000px;}
.y64{bottom:270.300000px;}
.y9a{bottom:277.770000px;}
.ya6{bottom:278.130000px;}
.y4b{bottom:281.730000px;}
.y24{bottom:284.700000px;}
.y3a{bottom:293.070000px;}
.y5e{bottom:296.670000px;}
.y107{bottom:297.390000px;}
.yf0{bottom:303.060000px;}
.yb2{bottom:304.500000px;}
.y7d{bottom:308.100000px;}
.y63{bottom:311.700000px;}
.yce{bottom:315.930000px;}
.y99{bottom:319.170000px;}
.y85{bottom:319.530000px;}
.y4a{bottom:323.130000px;}
.y23{bottom:326.100000px;}
.y39{bottom:334.470000px;}
.y6b{bottom:338.070000px;}
.y7c{bottom:349.500000px;}
.y106{bottom:349.860000px;}
.y5d{bottom:353.100000px;}
.ya5{bottom:360.840000px;}
.yec{bottom:361.920000px;}
.y49{bottom:364.530000px;}
.y22{bottom:367.500000px;}
.y98{bottom:375.600000px;}
.y38{bottom:375.870000px;}
.y6a{bottom:379.470000px;}
.ye3{bottom:384.420000px;}
.y7b{bottom:390.900000px;}
.y5c{bottom:394.500000px;}
.yeb{bottom:400.080000px;}
.yaa{bottom:402.240000px;}
.y48{bottom:405.840000px;}
.y21{bottom:408.900000px;}
.y97{bottom:417.000000px;}
.ya4{bottom:417.270000px;}
.y105{bottom:419.610000px;}
.y69{bottom:420.870000px;}
.yef{bottom:424.560000px;}
.y37{bottom:432.300000px;}
.y5b{bottom:435.900000px;}
.yea{bottom:437.160000px;}
.yb1{bottom:443.640000px;}
.y47{bottom:447.240000px;}
.y20{bottom:450.300000px;}
.ye9{bottom:453.360000px;}
.y96{bottom:458.400000px;}
.ya3{bottom:458.670000px;}
.y68{bottom:462.270000px;}
.ycd{bottom:471.900000px;}
.y7a{bottom:473.700000px;}
.y5a{bottom:477.300000px;}
.yb9{bottom:485.580000px;}
.y36{bottom:488.640000px;}
.y104{bottom:489.360000px;}
.y1f{bottom:491.700000px;}
.ya2{bottom:500.070000px;}
.y46{bottom:503.670000px;}
.y95{bottom:514.740000px;}
.y79{bottom:515.100000px;}
.y100{bottom:517.890000px;}
.y59{bottom:518.700000px;}
.yd6{bottom:523.110000px;}
.y51{bottom:530.040000px;}
.y10d{bottom:531.840000px;}
.y1e{bottom:533.100000px;}
.yb8{bottom:540.840000px;}
.ya1{bottom:541.470000px;}
.yc7{bottom:541.680000px;}
.y35{bottom:545.070000px;}
.yff{bottom:556.080000px;}
.y94{bottom:556.140000px;}
.y78{bottom:556.500000px;}
.y103{bottom:559.140000px;}
.y58{bottom:560.100000px;}
.y10c{bottom:571.200000px;}
.y50{bottom:571.440000px;}
.y1d{bottom:574.500000px;}
.yf4{bottom:574.890000px;}
.yb0{bottom:582.870000px;}
.y34{bottom:586.470000px;}
.yfe{bottom:593.160000px;}
.yb7{bottom:593.400000px;}
.y93{bottom:597.540000px;}
.y77{bottom:597.900000px;}
.y57{bottom:601.500000px;}
.yfd{bottom:609.360000px;}
.y70{bottom:612.840000px;}
.y1c{bottom:615.900000px;}
.ybd{bottom:623.010000px;}
.yaf{bottom:624.270000px;}
.yc1{bottom:624.630000px;}
.y10b{bottom:625.920000px;}
.y33{bottom:627.870000px;}
.yc4{bottom:628.710000px;}
.yb6{bottom:635.700000px;}
.y92{bottom:638.940000px;}
.y76{bottom:639.300000px;}
.y56{bottom:642.900000px;}
.y101{bottom:646.170000px;}
.y6f{bottom:654.270000px;}
.y1b{bottom:657.330000px;}
.ybc{bottom:661.200000px;}
.yee{bottom:666.870000px;}
.y32{bottom:669.300000px;}
.yfc{bottom:679.110000px;}
.yc0{bottom:679.830000px;}
.y75{bottom:680.730000px;}
.y55{bottom:684.330000px;}
.yb5{bottom:692.070000px;}
.y91{bottom:695.400000px;}
.y6e{bottom:695.670000px;}
.y1a{bottom:698.730000px;}
.yc3{bottom:710.250000px;}
.y31{bottom:710.700000px;}
.ybb{bottom:716.460000px;}
.y74{bottom:722.130000px;}
.yf{bottom:724.560000px;}
.y54{bottom:725.730000px;}
.ybf{bottom:730.680000px;}
.y90{bottom:736.800000px;}
.y6d{bottom:737.070000px;}
.y19{bottom:740.130000px;}
.y10a{bottom:747.420000px;}
.yed{bottom:748.410000px;}
.yb4{bottom:748.500000px;}
.yc2{bottom:749.580000px;}
.y45{bottom:752.100000px;}
.y73{bottom:763.440000px;}
.ye{bottom:766.230000px;}
.y30{bottom:767.130000px;}
.yba{bottom:767.310000px;}
.y8f{bottom:778.200000px;}
.y6c{bottom:778.470000px;}
.y18{bottom:781.440000px;}
.y44{bottom:793.500000px;}
.y72{bottom:804.840000px;}
.yd{bottom:807.900000px;}
.y2f{bottom:808.440000px;}
.ya0{bottom:819.870000px;}
.y17{bottom:822.840000px;}
.yc{bottom:828.600000px;}
.y8e{bottom:834.540000px;}
.yb{bottom:834.630000px;}
.y43{bottom:834.900000px;}
.y84{bottom:846.240000px;}
.y2e{bottom:849.840000px;}
.y71{bottom:861.270000px;}
.y16{bottom:864.240000px;}
.ya{bottom:870.360000px;}
.y8d{bottom:875.940000px;}
.y42{bottom:876.300000px;}
.y83{bottom:887.640000px;}
.y9{bottom:891.060000px;}
.y2d{bottom:891.240000px;}
.y8{bottom:897.090000px;}
.y9f{bottom:902.670000px;}
.y8c{bottom:917.340000px;}
.y41{bottom:917.700000px;}
.y15{bottom:920.670000px;}
.y82{bottom:929.040000px;}
.y2c{bottom:932.640000px;}
.yb3{bottom:944.070000px;}
.y7{bottom:945.330000px;}
.y40{bottom:959.100000px;}
.y14{bottom:962.070000px;}
.y2b{bottom:974.040000px;}
.y8b{bottom:976.740000px;}
.y6{bottom:981.600000px;}
.y81{bottom:985.470000px;}
.y3f{bottom:1000.500000px;}
.y13{bottom:1003.470000px;}
.y2a{bottom:1015.440000px;}
.y5{bottom:1029.300000px;}
.y80{bottom:1041.900000px;}
.y12{bottom:1044.870000px;}
.y8a{bottom:1048.470000px;}
.y29{bottom:1056.840000px;}
.y4{bottom:1078.920000px;}
.y9e{bottom:1083.330000px;}
.y11{bottom:1086.300000px;}
.y28{bottom:1098.270000px;}
.y3{bottom:1134.090000px;}
.y10{bottom:1139.670000px;}
.ybe{bottom:1140.840000px;}
.h22{height:17.190000px;}
.h18{height:34.470000px;}
.hc{height:41.400000px;}
.h6{height:50.973750px;}
.h20{height:51.750000px;}
.h1f{height:62.100000px;}
.he{height:62.703281px;}
.h7{height:64.582031px;}
.h2{height:65.526152px;}
.h9{height:68.710781px;}
.h1a{height:68.940000px;}
.h16{height:69.030000px;}
.hf{height:69.060000px;}
.h4{height:75.093750px;}
.hd{height:86.220000px;}
.h15{height:86.310000px;}
.h21{height:86.340000px;}
.h5{height:87.484219px;}
.h3{height:100.250156px;}
.h1e{height:103.500000px;}
.h8{height:112.640625px;}
.h23{height:120.690000px;}
.h1d{height:120.720000px;}
.h17{height:120.780000px;}
.h13{height:137.970000px;}
.h14{height:138.000000px;}
.h10{height:155.250000px;}
.h11{height:155.280000px;}
.h19{height:189.720000px;}
.h1b{height:189.750000px;}
.h1c{height:224.220000px;}
.h12{height:241.500000px;}
.ha{height:892.980000px;}
.hb{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:87.750000px;}
.w16{width:105.780000px;}
.we{width:106.200000px;}
.w15{width:114.660000px;}
.w11{width:119.610000px;}
.w10{width:119.640000px;}
.w8{width:122.580000px;}
.wa{width:126.000000px;}
.w19{width:130.530000px;}
.wb{width:134.280000px;}
.w12{width:134.820000px;}
.w17{width:144.180000px;}
.w9{width:159.420000px;}
.wc{width:170.130000px;}
.w1b{width:185.610000px;}
.w13{width:188.400000px;}
.w18{width:190.080000px;}
.w1a{width:258.660000px;}
.wd{width:276.510000px;}
.w14{width:285.600000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w7{width:1262.879962px;}
.w6{width:1262.879981px;}
.w4{width:1262.880000px;}
.w5{width:1263.000000px;}
.x0{left:0.000000px;}
.x16{left:8.100000px;}
.x13{left:54.179962px;}
.x15{left:74.340000px;}
.xb{left:75.509973px;}
.x14{left:79.289981px;}
.x8{left:83.879973px;}
.x3{left:92.249973px;}
.x4{left:100.619987px;}
.x12{left:106.289981px;}
.x2{left:127.649987px;}
.x6{left:150.419987px;}
.x9{left:154.649987px;}
.x7{left:163.829987px;}
.x1d{left:194.040000px;}
.x17{left:196.920000px;}
.x22{left:212.070000px;}
.x5{left:293.159987px;}
.xa{left:303.509987px;}
.xd{left:307.559987px;}
.x1e{left:313.680000px;}
.x18{left:356.340000px;}
.x1f{left:433.290000px;}
.xc{left:438.179987px;}
.x1{left:442.409987px;}
.x19{left:482.340000px;}
.x23{left:546.330000px;}
.x20{left:568.110000px;}
.x1a{left:616.620000px;}
.x11{left:623.129981px;}
.x24{left:676.860000px;}
.x10{left:754.289987px;}
.xf{left:756.719987px;}
.xe{left:767.699987px;}
.x1b{left:786.750000px;}
.x25{left:935.520000px;}
.x21{left:1042.110000px;}
.x1c{left:1063.260000px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v2{vertical-align:-21.440000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:18.560000pt;}
.v4{vertical-align:21.440000pt;}
.v1{vertical-align:26.560000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.272533pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.136533pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.124267pt;}
.ls3{letter-spacing:-0.072533pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls18{letter-spacing:-0.035520pt;}
.ls19{letter-spacing:-0.015360pt;}
.ls1a{letter-spacing:-0.011840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.ls11{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.069867pt;}
.ls4{letter-spacing:0.072533pt;}
.lse{letter-spacing:0.105067pt;}
.ls8{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.136533pt;}
.ls1b{letter-spacing:0.151467pt;}
.ls15{letter-spacing:0.151680pt;}
.ls17{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.768000pt;}
.lsc{letter-spacing:2.368000pt;}
.ls1{letter-spacing:82.872107pt;}
.wsa{word-spacing:-18.048000pt;}
.ws9{word-spacing:-17.984000pt;}
.ws5{word-spacing:-17.920000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws2{word-spacing:-17.728000pt;}
.ws4{word-spacing:-17.664000pt;}
.wsb{word-spacing:-17.600000pt;}
.ws12{word-spacing:-15.007787pt;}
.wsf{word-spacing:-14.992853pt;}
.wsc{word-spacing:-14.903680pt;}
.wsd{word-spacing:-14.856320pt;}
.ws10{word-spacing:-14.820800pt;}
.wse{word-spacing:-14.732053pt;}
.ws0{word-spacing:-13.344000pt;}
.ws6{word-spacing:-13.304427pt;}
.ws8{word-spacing:-11.936747pt;}
.ws7{word-spacing:-11.848320pt;}
.ws11{word-spacing:-9.592320pt;}
.ws1{word-spacing:0.000000pt;}
._17{margin-left:-4.928000pt;}
._9{margin-left:-3.392000pt;}
._11{margin-left:-2.387840pt;}
._0{margin-left:-1.196160pt;}
._1{width:1.174720pt;}
._1c{width:2.065280pt;}
._10{width:2.985280pt;}
._13{width:4.032000pt;}
._14{width:5.013333pt;}
._b{width:5.910827pt;}
._a{width:6.848000pt;}
._c{width:8.042667pt;}
._16{width:9.068160pt;}
._1f{width:9.979520pt;}
._6{width:10.880000pt;}
._8{width:12.160000pt;}
._12{width:13.120000pt;}
._e{width:14.592000pt;}
._d{width:15.616000pt;}
._2{width:16.896000pt;}
._7{width:18.773333pt;}
._15{width:19.776000pt;}
._f{width:20.800000pt;}
._20{width:21.760000pt;}
._18{width:22.976000pt;}
._19{width:23.893333pt;}
._5{width:24.960000pt;}
._3{width:26.176000pt;}
._1a{width:27.264000pt;}
._22{width:28.416000pt;}
._23{width:29.504000pt;}
._39{width:30.592000pt;}
._29{width:31.744000pt;}
._1b{width:32.640000pt;}
._27{width:35.008000pt;}
._26{width:35.904000pt;}
._21{width:37.504000pt;}
._42{width:38.592000pt;}
._28{width:39.744000pt;}
._33{width:40.871680pt;}
._1e{width:41.900160pt;}
._1d{width:42.944000pt;}
._3f{width:44.160000pt;}
._25{width:45.549867pt;}
._24{width:46.546133pt;}
._3e{width:47.702827pt;}
._2f{width:48.832000pt;}
._30{width:50.026667pt;}
._5c{width:52.555840pt;}
._4e{width:55.808000pt;}
._59{width:57.858880pt;}
._46{width:60.096000pt;}
._4f{width:61.098667pt;}
._4b{width:66.304000pt;}
._49{width:67.392000pt;}
._5a{width:68.830720pt;}
._41{width:72.256000pt;}
._2b{width:75.648000pt;}
._2c{width:76.608000pt;}
._40{width:80.448000pt;}
._43{width:81.984107pt;}
._36{width:82.880000pt;}
._2e{width:84.544000pt;}
._5b{width:101.984960pt;}
._48{width:103.424000pt;}
._54{width:108.322880pt;}
._56{width:113.132480pt;}
._4a{width:115.008000pt;}
._55{width:120.133120pt;}
._2a{width:124.800000pt;}
._45{width:128.512000pt;}
._3d{width:130.112000pt;}
._37{width:133.888000pt;}
._3a{width:139.328000pt;}
._57{width:143.432960pt;}
._44{width:160.384000pt;}
._31{width:178.304000pt;}
._58{width:179.665280pt;}
._52{width:182.497600pt;}
._3b{width:187.648000pt;}
._53{width:199.758720pt;}
._4c{width:204.416000pt;}
._4d{width:205.333333pt;}
._2d{width:208.832000pt;}
._51{width:223.646400pt;}
._47{width:269.056000pt;}
._5d{width:273.003840pt;}
._38{width:284.096000pt;}
._32{width:406.208000pt;}
._35{width:422.912000pt;}
._34{width:424.042667pt;}
._3c{width:566.592000pt;}
._4{width:750.208000pt;}
._50{width:754.765440pt;}
.fs9{font-size:34.560000pt;}
.fs5{font-size:42.560000pt;}
.fs4{font-size:48.000000pt;}
.fsa{font-size:50.560000pt;}
.fs8{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs6{font-size:61.440000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.560000pt;}
.fs1{font-size:85.440000pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:2.800000pt;}
.yc6{bottom:3.360000pt;}
.yd3{bottom:18.080000pt;}
.ycb{bottom:18.160000pt;}
.ye2{bottom:18.186667pt;}
.yc5{bottom:21.760000pt;}
.yca{bottom:33.440000pt;}
.ye1{bottom:33.466667pt;}
.ye8{bottom:33.520000pt;}
.y102{bottom:40.160000pt;}
.ye5{bottom:48.720000pt;}
.yc9{bottom:48.800000pt;}
.ye0{bottom:48.826667pt;}
.y2{bottom:51.040000pt;}
.yd2{bottom:64.080000pt;}
.yfb{bottom:64.106667pt;}
.yc8{bottom:64.160000pt;}
.ydf{bottom:64.186667pt;}
.y1{bottom:68.960000pt;}
.yd1{bottom:79.440000pt;}
.yde{bottom:79.466667pt;}
.yf1{bottom:79.520000pt;}
.ye4{bottom:94.720000pt;}
.yd0{bottom:94.800000pt;}
.ydd{bottom:94.826667pt;}
.yae{bottom:100.000000pt;}
.y4f{bottom:103.200000pt;}
.y89{bottom:110.080000pt;}
.ydc{bottom:110.186667pt;}
.y3e{bottom:113.280000pt;}
.yf3{bottom:114.720000pt;}
.y62{bottom:116.480000pt;}
.y9d{bottom:123.200000pt;}
.ya9{bottom:123.440000pt;}
.y109{bottom:124.960000pt;}
.ycf{bottom:125.440000pt;}
.yd5{bottom:125.466667pt;}
.y53{bottom:126.640000pt;}
.y27{bottom:129.280000pt;}
.y67{bottom:129.840000pt;}
.yad{bottom:136.800000pt;}
.y4e{bottom:140.000000pt;}
.yf8{bottom:140.746667pt;}
.yf6{bottom:140.800000pt;}
.ydb{bottom:140.826667pt;}
.ye7{bottom:140.960000pt;}
.yf9{bottom:141.680000pt;}
.yd4{bottom:142.160000pt;}
.yf2{bottom:146.080000pt;}
.y88{bottom:146.880000pt;}
.y3d{bottom:150.080000pt;}
.y61{bottom:153.280000pt;}
.yf7{bottom:156.106667pt;}
.yf5{bottom:156.160000pt;}
.yda{bottom:156.186667pt;}
.y9c{bottom:160.000000pt;}
.ya8{bottom:160.240000pt;}
.y52{bottom:163.440000pt;}
.y26{bottom:166.080000pt;}
.y66{bottom:166.640000pt;}
.yd9{bottom:171.466667pt;}
.yac{bottom:173.600000pt;}
.y4d{bottom:176.800000pt;}
.y87{bottom:183.680000pt;}
.yd8{bottom:186.826667pt;}
.y3c{bottom:186.880000pt;}
.y108{bottom:186.960000pt;}
.y60{bottom:190.080000pt;}
.yab{bottom:197.040000pt;}
.y7f{bottom:200.266667pt;}
.yd7{bottom:202.186667pt;}
.y25{bottom:202.906667pt;}
.y65{bottom:203.466667pt;}
.y9b{bottom:210.106667pt;}
.ya7{bottom:210.426667pt;}
.y4c{bottom:213.626667pt;}
.ye6{bottom:218.320000pt;}
.y3b{bottom:223.706667pt;}
.y5f{bottom:226.906667pt;}
.yfa{bottom:233.680000pt;}
.y86{bottom:233.866667pt;}
.y7e{bottom:237.066667pt;}
.y64{bottom:240.266667pt;}
.y9a{bottom:246.906667pt;}
.ya6{bottom:247.226667pt;}
.y4b{bottom:250.426667pt;}
.y24{bottom:253.066667pt;}
.y3a{bottom:260.506667pt;}
.y5e{bottom:263.706667pt;}
.y107{bottom:264.346667pt;}
.yf0{bottom:269.386667pt;}
.yb2{bottom:270.666667pt;}
.y7d{bottom:273.866667pt;}
.y63{bottom:277.066667pt;}
.yce{bottom:280.826667pt;}
.y99{bottom:283.706667pt;}
.y85{bottom:284.026667pt;}
.y4a{bottom:287.226667pt;}
.y23{bottom:289.866667pt;}
.y39{bottom:297.306667pt;}
.y6b{bottom:300.506667pt;}
.y7c{bottom:310.666667pt;}
.y106{bottom:310.986667pt;}
.y5d{bottom:313.866667pt;}
.ya5{bottom:320.746667pt;}
.yec{bottom:321.706667pt;}
.y49{bottom:324.026667pt;}
.y22{bottom:326.666667pt;}
.y98{bottom:333.866667pt;}
.y38{bottom:334.106667pt;}
.y6a{bottom:337.306667pt;}
.ye3{bottom:341.706667pt;}
.y7b{bottom:347.466667pt;}
.y5c{bottom:350.666667pt;}
.yeb{bottom:355.626667pt;}
.yaa{bottom:357.546667pt;}
.y48{bottom:360.746667pt;}
.y21{bottom:363.466667pt;}
.y97{bottom:370.666667pt;}
.ya4{bottom:370.906667pt;}
.y105{bottom:372.986667pt;}
.y69{bottom:374.106667pt;}
.yef{bottom:377.386667pt;}
.y37{bottom:384.266667pt;}
.y5b{bottom:387.466667pt;}
.yea{bottom:388.586667pt;}
.yb1{bottom:394.346667pt;}
.y47{bottom:397.546667pt;}
.y20{bottom:400.266667pt;}
.ye9{bottom:402.986667pt;}
.y96{bottom:407.466667pt;}
.ya3{bottom:407.706667pt;}
.y68{bottom:410.906667pt;}
.ycd{bottom:419.466667pt;}
.y7a{bottom:421.066667pt;}
.y5a{bottom:424.266667pt;}
.yb9{bottom:431.626667pt;}
.y36{bottom:434.346667pt;}
.y104{bottom:434.986667pt;}
.y1f{bottom:437.066667pt;}
.ya2{bottom:444.506667pt;}
.y46{bottom:447.706667pt;}
.y95{bottom:457.546667pt;}
.y79{bottom:457.866667pt;}
.y100{bottom:460.346667pt;}
.y59{bottom:461.066667pt;}
.yd6{bottom:464.986667pt;}
.y51{bottom:471.146667pt;}
.y10d{bottom:472.746667pt;}
.y1e{bottom:473.866667pt;}
.yb8{bottom:480.746667pt;}
.ya1{bottom:481.306667pt;}
.yc7{bottom:481.493333pt;}
.y35{bottom:484.506667pt;}
.yff{bottom:494.293333pt;}
.y94{bottom:494.346667pt;}
.y78{bottom:494.666667pt;}
.y103{bottom:497.013333pt;}
.y58{bottom:497.866667pt;}
.y10c{bottom:507.733333pt;}
.y50{bottom:507.946667pt;}
.y1d{bottom:510.666667pt;}
.yf4{bottom:511.013333pt;}
.yb0{bottom:518.106667pt;}
.y34{bottom:521.306667pt;}
.yfe{bottom:527.253333pt;}
.yb7{bottom:527.466667pt;}
.y93{bottom:531.146667pt;}
.y77{bottom:531.466667pt;}
.y57{bottom:534.666667pt;}
.yfd{bottom:541.653333pt;}
.y70{bottom:544.746667pt;}
.y1c{bottom:547.466667pt;}
.ybd{bottom:553.786667pt;}
.yaf{bottom:554.906667pt;}
.yc1{bottom:555.226667pt;}
.y10b{bottom:556.373333pt;}
.y33{bottom:558.106667pt;}
.yc4{bottom:558.853333pt;}
.yb6{bottom:565.066667pt;}
.y92{bottom:567.946667pt;}
.y76{bottom:568.266667pt;}
.y56{bottom:571.466667pt;}
.y101{bottom:574.373333pt;}
.y6f{bottom:581.573333pt;}
.y1b{bottom:584.293333pt;}
.ybc{bottom:587.733333pt;}
.yee{bottom:592.773333pt;}
.y32{bottom:594.933333pt;}
.yfc{bottom:603.653333pt;}
.yc0{bottom:604.293333pt;}
.y75{bottom:605.093333pt;}
.y55{bottom:608.293333pt;}
.yb5{bottom:615.173333pt;}
.y91{bottom:618.133333pt;}
.y6e{bottom:618.373333pt;}
.y1a{bottom:621.093333pt;}
.yc3{bottom:631.333333pt;}
.y31{bottom:631.733333pt;}
.ybb{bottom:636.853333pt;}
.y74{bottom:641.893333pt;}
.yf{bottom:644.053333pt;}
.y54{bottom:645.093333pt;}
.ybf{bottom:649.493333pt;}
.y90{bottom:654.933333pt;}
.y6d{bottom:655.173333pt;}
.y19{bottom:657.893333pt;}
.y10a{bottom:664.373333pt;}
.yed{bottom:665.253333pt;}
.yb4{bottom:665.333333pt;}
.yc2{bottom:666.293333pt;}
.y45{bottom:668.533333pt;}
.y73{bottom:678.613333pt;}
.ye{bottom:681.093333pt;}
.y30{bottom:681.893333pt;}
.yba{bottom:682.053333pt;}
.y8f{bottom:691.733333pt;}
.y6c{bottom:691.973333pt;}
.y18{bottom:694.613333pt;}
.y44{bottom:705.333333pt;}
.y72{bottom:715.413333pt;}
.yd{bottom:718.133333pt;}
.y2f{bottom:718.613333pt;}
.ya0{bottom:728.773333pt;}
.y17{bottom:731.413333pt;}
.yc{bottom:736.533333pt;}
.y8e{bottom:741.813333pt;}
.yb{bottom:741.893333pt;}
.y43{bottom:742.133333pt;}
.y84{bottom:752.213333pt;}
.y2e{bottom:755.413333pt;}
.y71{bottom:765.573333pt;}
.y16{bottom:768.213333pt;}
.ya{bottom:773.653333pt;}
.y8d{bottom:778.613333pt;}
.y42{bottom:778.933333pt;}
.y83{bottom:789.013333pt;}
.y9{bottom:792.053333pt;}
.y2d{bottom:792.213333pt;}
.y8{bottom:797.413333pt;}
.y9f{bottom:802.373333pt;}
.y8c{bottom:815.413333pt;}
.y41{bottom:815.733333pt;}
.y15{bottom:818.373333pt;}
.y82{bottom:825.813333pt;}
.y2c{bottom:829.013333pt;}
.yb3{bottom:839.173333pt;}
.y7{bottom:840.293333pt;}
.y40{bottom:852.533333pt;}
.y14{bottom:855.173333pt;}
.y2b{bottom:865.813333pt;}
.y8b{bottom:868.213333pt;}
.y6{bottom:872.533333pt;}
.y81{bottom:875.973333pt;}
.y3f{bottom:889.333333pt;}
.y13{bottom:891.973333pt;}
.y2a{bottom:902.613333pt;}
.y5{bottom:914.933333pt;}
.y80{bottom:926.133333pt;}
.y12{bottom:928.773333pt;}
.y8a{bottom:931.973333pt;}
.y29{bottom:939.413333pt;}
.y4{bottom:959.040000pt;}
.y9e{bottom:962.960000pt;}
.y11{bottom:965.600000pt;}
.y28{bottom:976.240000pt;}
.y3{bottom:1008.080000pt;}
.y10{bottom:1013.040000pt;}
.ybe{bottom:1014.080000pt;}
.h22{height:15.280000pt;}
.h18{height:30.640000pt;}
.hc{height:36.800000pt;}
.h6{height:45.310000pt;}
.h20{height:46.000000pt;}
.h1f{height:55.200000pt;}
.he{height:55.736250pt;}
.h7{height:57.406250pt;}
.h2{height:58.245469pt;}
.h9{height:61.076250pt;}
.h1a{height:61.280000pt;}
.h16{height:61.360000pt;}
.hf{height:61.386667pt;}
.h4{height:66.750000pt;}
.hd{height:76.640000pt;}
.h15{height:76.720000pt;}
.h21{height:76.746667pt;}
.h5{height:77.763750pt;}
.h3{height:89.111250pt;}
.h1e{height:92.000000pt;}
.h8{height:100.125000pt;}
.h23{height:107.280000pt;}
.h1d{height:107.306667pt;}
.h17{height:107.360000pt;}
.h13{height:122.640000pt;}
.h14{height:122.666667pt;}
.h10{height:138.000000pt;}
.h11{height:138.026667pt;}
.h19{height:168.640000pt;}
.h1b{height:168.666667pt;}
.h1c{height:199.306667pt;}
.h12{height:214.666667pt;}
.ha{height:793.760000pt;}
.hb{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:78.000000pt;}
.w16{width:94.026667pt;}
.we{width:94.400000pt;}
.w15{width:101.920000pt;}
.w11{width:106.320000pt;}
.w10{width:106.346667pt;}
.w8{width:108.960000pt;}
.wa{width:112.000000pt;}
.w19{width:116.026667pt;}
.wb{width:119.360000pt;}
.w12{width:119.840000pt;}
.w17{width:128.160000pt;}
.w9{width:141.706667pt;}
.wc{width:151.226667pt;}
.w1b{width:164.986667pt;}
.w13{width:167.466667pt;}
.w18{width:168.960000pt;}
.w1a{width:229.920000pt;}
.wd{width:245.786667pt;}
.w14{width:253.866667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w7{width:1122.559967pt;}
.w6{width:1122.559983pt;}
.w4{width:1122.560000pt;}
.w5{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x16{left:7.200000pt;}
.x13{left:48.159967pt;}
.x15{left:66.080000pt;}
.xb{left:67.119976pt;}
.x14{left:70.479983pt;}
.x8{left:74.559976pt;}
.x3{left:81.999976pt;}
.x4{left:89.439988pt;}
.x12{left:94.479983pt;}
.x2{left:113.466655pt;}
.x6{left:133.706655pt;}
.x9{left:137.466655pt;}
.x7{left:145.626655pt;}
.x1d{left:172.480000pt;}
.x17{left:175.040000pt;}
.x22{left:188.506667pt;}
.x5{left:260.586655pt;}
.xa{left:269.786655pt;}
.xd{left:273.386655pt;}
.x1e{left:278.826667pt;}
.x18{left:316.746667pt;}
.x1f{left:385.146667pt;}
.xc{left:389.493322pt;}
.x1{left:393.253322pt;}
.x19{left:428.746667pt;}
.x23{left:485.626667pt;}
.x20{left:504.986667pt;}
.x1a{left:548.106667pt;}
.x11{left:553.893317pt;}
.x24{left:601.653333pt;}
.x10{left:670.479988pt;}
.xf{left:672.639988pt;}
.xe{left:682.399988pt;}
.x1b{left:699.333333pt;}
.x25{left:831.573333pt;}
.x21{left:926.320000pt;}
.x1c{left:945.120000pt;}
}




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