
    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_c52792d14320875fb7e2acdb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b720d33962001216b9beca09.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_901afc12237b7360d60a9ebe.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9420f237c05eabca8e955d80.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973633;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_a802d641f03653663da535ff.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_0f64e0fa8e7e5719301dec11.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959961;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_d798877c885fabfff2eeebad.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.208008;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.vb{vertical-align:-27.000000px;}
.v5{vertical-align:-24.840000px;}
.vc{vertical-align:-23.400000px;}
.v3{vertical-align:-17.280000px;}
.v6{vertical-align:-13.680000px;}
.v8{vertical-align:-9.720000px;}
.va{vertical-align:-4.680000px;}
.v1{vertical-align:-1.080000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:13.680000px;}
.v2{vertical-align:16.920000px;}
.v9{vertical-align:23.400000px;}
.v4{vertical-align:24.840000px;}
.ls27{letter-spacing:-0.828000px;}
.ls9{letter-spacing:-0.270000px;}
.ls25{letter-spacing:-0.252000px;}
.ls8{letter-spacing:-0.180000px;}
.ls28{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.134400px;}
.ls29{letter-spacing:-0.108000px;}
.ls1b{letter-spacing:-0.090600px;}
.ls1a{letter-spacing:-0.067200px;}
.ls21{letter-spacing:-0.045360px;}
.ls7{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.014040px;}
.ls1{letter-spacing:0.018000px;}
.ls6{letter-spacing:0.021960px;}
.ls4{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.060480px;}
.ls2{letter-spacing:0.090000px;}
.ls26{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.156600px;}
.ls15{letter-spacing:0.172800px;}
.ls0{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.300000px;}
.lsa{letter-spacing:0.540000px;}
.ls20{letter-spacing:1.710000px;}
.ls17{letter-spacing:2.066400px;}
.lsc{letter-spacing:2.070000px;}
.ls5{letter-spacing:2.790000px;}
.ls14{letter-spacing:2.877480px;}
.ls3{letter-spacing:2.970000px;}
.ls1f{letter-spacing:3.870000px;}
.ls12{letter-spacing:4.132800px;}
.ls19{letter-spacing:4.251960px;}
.lsf{letter-spacing:4.492800px;}
.ls18{letter-spacing:4.946400px;}
.lsd{letter-spacing:4.950000px;}
.ls10{letter-spacing:5.932800px;}
.ls1e{letter-spacing:6.750000px;}
.ls24{letter-spacing:20.268000px;}
.lse{letter-spacing:22.132800px;}
.ls16{letter-spacing:22.946400px;}
.ls1c{letter-spacing:25.805880px;}
.ls23{letter-spacing:47.268000px;}
.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;}
}
.wsc{word-spacing:-65.880000px;}
.wsf{word-spacing:-47.880000px;}
.wsd{word-spacing:-47.412360px;}
.ws4{word-spacing:-16.650000px;}
.ws6{word-spacing:-16.515360px;}
.wse{word-spacing:-16.491960px;}
.ws10{word-spacing:-16.470000px;}
.ws13{word-spacing:-16.424640px;}
.wsa{word-spacing:-16.402800px;}
.ws11{word-spacing:-16.379400px;}
.ws7{word-spacing:-16.335600px;}
.ws0{word-spacing:-15.120000px;}
.ws1{word-spacing:-15.030000px;}
.ws2{word-spacing:-13.518000px;}
.ws3{word-spacing:-13.500000px;}
.ws15{word-spacing:-13.392000px;}
.ws14{word-spacing:-13.356000px;}
.ws5{word-spacing:-10.710000px;}
.wsb{word-spacing:-10.530000px;}
.ws12{word-spacing:-10.350000px;}
.ws9{word-spacing:0.000000px;}
.ws8{word-spacing:1412.130000px;}
._15{margin-left:-10.359360px;}
._16{margin-left:-4.680000px;}
._d{margin-left:-3.600600px;}
._8{margin-left:-2.262720px;}
._1{margin-left:-1.104000px;}
._2{width:1.923840px;}
._5{width:3.126240px;}
._7{width:4.774800px;}
._4{width:6.287280px;}
._3{width:7.334640px;}
._6{width:8.559600px;}
._a{width:9.684360px;}
._9{width:10.870200px;}
._12{width:11.990160px;}
._b{width:13.307760px;}
._e{width:14.973480px;}
._1a{width:16.524000px;}
._10{width:17.853480px;}
._13{width:19.213320px;}
._11{width:20.356920px;}
._14{width:21.750720px;}
._17{width:22.926240px;}
._19{width:23.931840px;}
._f{width:25.100280px;}
._18{width:26.272800px;}
._1c{width:28.135200px;}
._c{width:34.342560px;}
._1d{width:44.982000px;}
._1b{width:63.396000px;}
._0{width:116.640000px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fs5{font-size:47.880000px;}
.fs9{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fsa{font-size:63.000000px;}
.fs6{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:90.000000px;}
.fs3{font-size:96.120000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.y99{bottom:3.690000px;}
.y9a{bottom:3.780000px;}
.ya9{bottom:4.950000px;}
.yb2{bottom:5.760000px;}
.ya8{bottom:5.940000px;}
.yaf{bottom:6.120000px;}
.y4e{bottom:7.500000px;}
.yb0{bottom:9.180000px;}
.yb1{bottom:12.420000px;}
.y2{bottom:76.410000px;}
.y1{bottom:79.830000px;}
.y50{bottom:79.920000px;}
.y87{bottom:111.330000px;}
.yea{bottom:114.930000px;}
.y4c{bottom:125.010000px;}
.yad{bottom:130.140000px;}
.y86{bottom:130.320000px;}
.yd2{bottom:131.760000px;}
.yfb{bottom:132.030000px;}
.ye9{bottom:133.920000px;}
.yc9{bottom:139.950000px;}
.y38{bottom:142.200000px;}
.y4b{bottom:144.000000px;}
.yac{bottom:149.130000px;}
.y85{bottom:149.310000px;}
.yd1{bottom:150.750000px;}
.yfa{bottom:151.020000px;}
.ye8{bottom:152.820000px;}
.yc8{bottom:158.940000px;}
.y37{bottom:161.190000px;}
.y4a{bottom:162.900000px;}
.y15f{bottom:165.060000px;}
.y84{bottom:168.210000px;}
.yab{bottom:168.480000px;}
.yd0{bottom:169.740000px;}
.yf9{bottom:170.010000px;}
.ye7{bottom:171.810000px;}
.yc7{bottom:177.840000px;}
.y36{bottom:180.180000px;}
.y49{bottom:181.890000px;}
.y15e{bottom:182.880000px;}
.y83{bottom:187.200000px;}
.yaa{bottom:187.830000px;}
.ycf{bottom:188.730000px;}
.yf8{bottom:188.910000px;}
.ye6{bottom:190.800000px;}
.y120{bottom:191.700000px;}
.yc6{bottom:196.830000px;}
.y15d{bottom:198.630000px;}
.y35{bottom:199.170000px;}
.y48{bottom:200.880000px;}
.ya7{bottom:203.130000px;}
.y82{bottom:206.190000px;}
.y11f{bottom:207.450000px;}
.yce{bottom:207.720000px;}
.yf7{bottom:207.900000px;}
.ye5{bottom:209.790000px;}
.y15c{bottom:214.380000px;}
.yc5{bottom:215.100000px;}
.y34{bottom:218.160000px;}
.y47{bottom:219.870000px;}
.y11e{bottom:223.200000px;}
.y81{bottom:225.210000px;}
.ycd{bottom:226.650000px;}
.yf6{bottom:226.920000px;}
.ya6{bottom:228.360000px;}
.ye4{bottom:228.810000px;}
.y15b{bottom:230.160000px;}
.yc4{bottom:233.130000px;}
.y33{bottom:237.090000px;}
.y46{bottom:238.890000px;}
.y11d{bottom:238.980000px;}
.y80{bottom:244.200000px;}
.ycc{bottom:245.100000px;}
.yf5{bottom:245.910000px;}
.ya5{bottom:247.350000px;}
.ye3{bottom:247.710000px;}
.yc3{bottom:250.050000px;}
.y11c{bottom:254.730000px;}
.y32{bottom:256.080000px;}
.y45{bottom:257.790000px;}
.y15a{bottom:261.660000px;}
.ycb{bottom:262.920000px;}
.y7f{bottom:263.190000px;}
.yf4{bottom:264.900000px;}
.ya4{bottom:266.700000px;}
.y11b{bottom:270.480000px;}
.y31{bottom:275.070000px;}
.y44{bottom:276.780000px;}
.y159{bottom:277.410000px;}
.yca{bottom:278.130000px;}
.y7e{bottom:282.090000px;}
.yf3{bottom:283.890000px;}
.ye2{bottom:285.690000px;}
.ya3{bottom:286.050000px;}
.y11a{bottom:286.230000px;}
.y158{bottom:293.160000px;}
.y30{bottom:294.060000px;}
.y43{bottom:295.770000px;}
.y7d{bottom:301.080000px;}
.y119{bottom:301.980000px;}
.yf2{bottom:302.790000px;}
.ye1{bottom:304.680000px;}
.ya2{bottom:305.040000px;}
.y157{bottom:308.910000px;}
.y2f{bottom:313.050000px;}
.y42{bottom:314.760000px;}
.y118{bottom:317.730000px;}
.y7c{bottom:320.070000px;}
.yf1{bottom:321.780000px;}
.ye0{bottom:323.670000px;}
.ya1{bottom:324.030000px;}
.y156{bottom:324.660000px;}
.y2e{bottom:332.040000px;}
.y117{bottom:333.480000px;}
.y41{bottom:333.750000px;}
.y7b{bottom:339.060000px;}
.y155{bottom:340.410000px;}
.yf0{bottom:340.770000px;}
.ydf{bottom:342.660000px;}
.ya0{bottom:343.020000px;}
.y116{bottom:349.230000px;}
.y2d{bottom:350.940000px;}
.y40{bottom:352.740000px;}
.y154{bottom:356.160000px;}
.y7a{bottom:358.050000px;}
.yef{bottom:359.760000px;}
.yde{bottom:361.560000px;}
.y9f{bottom:361.920000px;}
.y115{bottom:364.980000px;}
.y2c{bottom:369.930000px;}
.y3f{bottom:371.640000px;}
.y153{bottom:371.910000px;}
.y79{bottom:376.950000px;}
.yee{bottom:378.750000px;}
.ydd{bottom:380.550000px;}
.y114{bottom:380.730000px;}
.y9e{bottom:380.910000px;}
.y152{bottom:387.660000px;}
.y2b{bottom:388.920000px;}
.y3e{bottom:390.630000px;}
.y78{bottom:395.940000px;}
.y113{bottom:396.480000px;}
.yed{bottom:397.650000px;}
.ydc{bottom:399.540000px;}
.y9d{bottom:399.900000px;}
.y151{bottom:403.410000px;}
.y2a{bottom:407.910000px;}
.y3d{bottom:409.620000px;}
.y112{bottom:412.230000px;}
.y77{bottom:415.200000px;}
.yec{bottom:416.640000px;}
.ydb{bottom:418.530000px;}
.y150{bottom:419.160000px;}
.y9c{bottom:419.250000px;}
.y29{bottom:426.900000px;}
.y111{bottom:427.980000px;}
.y3c{bottom:428.610000px;}
.y14f{bottom:434.910000px;}
.y76{bottom:435.630000px;}
.yda{bottom:437.520000px;}
.y9b{bottom:438.600000px;}
.y110{bottom:443.730000px;}
.y28{bottom:445.800000px;}
.y3b{bottom:447.600000px;}
.y14e{bottom:450.660000px;}
.y98{bottom:453.990000px;}
.y75{bottom:454.620000px;}
.yd9{bottom:456.420000px;}
.y10f{bottom:459.480000px;}
.y27{bottom:464.790000px;}
.y14d{bottom:466.410000px;}
.y3a{bottom:466.500000px;}
.y74{bottom:473.610000px;}
.y10e{bottom:475.230000px;}
.yd8{bottom:475.410000px;}
.y97{bottom:476.940000px;}
.y14c{bottom:482.160000px;}
.y26{bottom:484.050000px;}
.y39{bottom:485.490000px;}
.y10d{bottom:490.980000px;}
.y73{bottom:492.510000px;}
.yd7{bottom:494.400000px;}
.y96{bottom:495.930000px;}
.y14b{bottom:497.910000px;}
.y25{bottom:504.840000px;}
.y10c{bottom:506.730000px;}
.y72{bottom:511.500000px;}
.yd6{bottom:513.210000px;}
.y14a{bottom:513.660000px;}
.y95{bottom:514.920000px;}
.y10b{bottom:522.480000px;}
.y24{bottom:525.540000px;}
.y149{bottom:529.410000px;}
.y71{bottom:530.490000px;}
.yd5{bottom:531.840000px;}
.y94{bottom:533.820000px;}
.y10a{bottom:538.230000px;}
.y148{bottom:545.160000px;}
.y23{bottom:545.520000px;}
.y70{bottom:549.480000px;}
.yd4{bottom:549.660000px;}
.y93{bottom:552.810000px;}
.y109{bottom:553.980000px;}
.y147{bottom:560.910000px;}
.y22{bottom:563.610000px;}
.yd3{bottom:564.780000px;}
.y6f{bottom:568.470000px;}
.y108{bottom:569.730000px;}
.y92{bottom:571.800000px;}
.y146{bottom:576.660000px;}
.y21{bottom:581.610000px;}
.y107{bottom:585.480000px;}
.y6e{bottom:587.460000px;}
.y91{bottom:590.790000px;}
.y145{bottom:592.410000px;}
.y20{bottom:599.610000px;}
.y106{bottom:601.230000px;}
.y6d{bottom:606.360000px;}
.y144{bottom:608.160000px;}
.y90{bottom:609.780000px;}
.y105{bottom:616.980000px;}
.y1f{bottom:617.610000px;}
.y143{bottom:623.910000px;}
.y6c{bottom:625.350000px;}
.y8f{bottom:628.680000px;}
.y104{bottom:632.730000px;}
.y1e{bottom:635.610000px;}
.y142{bottom:639.660000px;}
.y6b{bottom:644.340000px;}
.y8e{bottom:647.700000px;}
.y103{bottom:648.510000px;}
.y1d{bottom:653.640000px;}
.y141{bottom:655.440000px;}
.y6a{bottom:663.360000px;}
.y102{bottom:664.260000px;}
.y8d{bottom:666.690000px;}
.y140{bottom:671.190000px;}
.y1c{bottom:671.640000px;}
.y101{bottom:680.010000px;}
.y69{bottom:682.350000px;}
.y8c{bottom:685.680000px;}
.y13f{bottom:686.940000px;}
.y1b{bottom:689.640000px;}
.y100{bottom:695.760000px;}
.y68{bottom:701.250000px;}
.y13e{bottom:702.690000px;}
.y8b{bottom:704.670000px;}
.y1a{bottom:707.640000px;}
.yff{bottom:711.510000px;}
.y13d{bottom:718.440000px;}
.y67{bottom:720.240000px;}
.y8a{bottom:722.850000px;}
.y19{bottom:725.640000px;}
.yfe{bottom:727.260000px;}
.y13c{bottom:734.190000px;}
.y66{bottom:739.230000px;}
.y89{bottom:741.570000px;}
.yfd{bottom:743.010000px;}
.y18{bottom:743.640000px;}
.y13b{bottom:749.940000px;}
.y65{bottom:758.220000px;}
.y88{bottom:758.760000px;}
.yfc{bottom:758.850000px;}
.y17{bottom:761.640000px;}
.y13a{bottom:765.690000px;}
.y64{bottom:777.210000px;}
.y16{bottom:779.640000px;}
.y139{bottom:781.440000px;}
.yc2{bottom:791.880000px;}
.y63{bottom:796.200000px;}
.y138{bottom:797.190000px;}
.y15{bottom:797.640000px;}
.yc1{bottom:810.870000px;}
.y137{bottom:812.940000px;}
.y62{bottom:815.100000px;}
.y14{bottom:815.370000px;}
.y136{bottom:828.690000px;}
.yc0{bottom:829.860000px;}
.y13{bottom:833.370000px;}
.y61{bottom:834.090000px;}
.y135{bottom:844.440000px;}
.ybf{bottom:848.760000px;}
.y12{bottom:853.080000px;}
.y134{bottom:860.190000px;}
.ybe{bottom:867.750000px;}
.y11{bottom:868.830000px;}
.y60{bottom:872.070000px;}
.y133{bottom:875.940000px;}
.ybd{bottom:886.740000px;}
.y10{bottom:888.900000px;}
.y5f{bottom:891.060000px;}
.y132{bottom:891.690000px;}
.yf{bottom:900.330000px;}
.ybc{bottom:905.730000px;}
.y131{bottom:907.440000px;}
.y5e{bottom:909.960000px;}
.ye{bottom:916.080000px;}
.y130{bottom:923.190000px;}
.ybb{bottom:924.720000px;}
.y5d{bottom:928.950000px;}
.yd{bottom:936.150000px;}
.y12f{bottom:938.940000px;}
.yba{bottom:943.710000px;}
.yc{bottom:947.580000px;}
.y5c{bottom:947.940000px;}
.y12e{bottom:954.690000px;}
.yb9{bottom:962.610000px;}
.y5b{bottom:966.930000px;}
.yb{bottom:968.100000px;}
.y12d{bottom:970.440000px;}
.ya{bottom:980.520000px;}
.yb8{bottom:981.600000px;}
.y5a{bottom:985.920000px;}
.y12c{bottom:986.190000px;}
.yb7{bottom:1000.590000px;}
.y9{bottom:1001.220000px;}
.y12b{bottom:1001.940000px;}
.y59{bottom:1004.820000px;}
.y12a{bottom:1017.690000px;}
.yb6{bottom:1019.580000px;}
.y58{bottom:1023.810000px;}
.y8{bottom:1024.530000px;}
.y129{bottom:1033.440000px;}
.yb5{bottom:1038.570000px;}
.y57{bottom:1042.800000px;}
.yeb{bottom:1049.010000px;}
.y128{bottom:1049.190000px;}
.y7{bottom:1052.790000px;}
.yb4{bottom:1057.470000px;}
.y56{bottom:1061.790000px;}
.y127{bottom:1064.940000px;}
.yb3{bottom:1076.490000px;}
.y126{bottom:1080.720000px;}
.y55{bottom:1080.810000px;}
.y6{bottom:1083.870000px;}
.yae{bottom:1091.880000px;}
.y125{bottom:1096.470000px;}
.y54{bottom:1099.800000px;}
.y124{bottom:1112.220000px;}
.y5{bottom:1114.920000px;}
.y53{bottom:1118.700000px;}
.y123{bottom:1127.970000px;}
.y52{bottom:1137.690000px;}
.y122{bottom:1143.720000px;}
.y4{bottom:1151.370000px;}
.y51{bottom:1156.680000px;}
.y121{bottom:1159.470000px;}
.y4f{bottom:1175.490000px;}
.y4d{bottom:1240.500000px;}
.h15{height:19.350000px;}
.h16{height:21.630000px;}
.h18{height:23.220000px;}
.h3{height:27.000000px;}
.h1e{height:37.759922px;}
.h1a{height:38.100586px;}
.h20{height:39.471680px;}
.h1f{height:42.418652px;}
.h19{height:42.596367px;}
.hb{height:42.923672px;}
.h11{height:43.853027px;}
.hc{height:45.295488px;}
.h14{height:46.482715px;}
.h4{height:48.410156px;}
.h13{height:49.130156px;}
.h2{height:53.896641px;}
.h12{height:56.478516px;}
.h17{height:58.610039px;}
.he{height:59.060391px;}
.h1b{height:60.500391px;}
.hf{height:62.599922px;}
.h1d{height:62.719922px;}
.h1c{height:63.319922px;}
.ha{height:64.546875px;}
.hd{height:64.906875px;}
.h9{height:70.816641px;}
.h6{height:76.201172px;}
.h10{height:77.387695px;}
.h7{height:85.090078px;}
.h8{height:86.170078px;}
.h5{height:96.820312px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:6.840000px;}
.w5{width:37.800000px;}
.w4{width:310.170000px;}
.w6{width:310.200000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:10.440000px;}
.x16{left:22.500000px;}
.x20{left:77.430000px;}
.x21{left:79.590000px;}
.x1c{left:82.080000px;}
.x12{left:85.049987px;}
.x1f{left:87.030000px;}
.x22{left:88.140000px;}
.x2b{left:91.169987px;}
.x2a{left:94.409987px;}
.x13{left:101.249987px;}
.x2c{left:108.809987px;}
.x2d{left:111.869987px;}
.x3{left:127.649987px;}
.x4{left:132.239987px;}
.x25{left:139.079987px;}
.x11{left:143.399987px;}
.x9{left:165.719987px;}
.xe{left:192.899987px;}
.x5{left:197.129987px;}
.xb{left:250.229987px;}
.x1{left:264.089987px;}
.x6{left:281.819987px;}
.xa{left:300.089987px;}
.xf{left:301.799987px;}
.x8{left:308.459987px;}
.xd{left:350.849987px;}
.x23{left:395.250000px;}
.xc{left:399.659987px;}
.x24{left:413.609987px;}
.x17{left:419.940000px;}
.x29{left:433.859987px;}
.x2{left:443.130000px;}
.x7{left:446.549987px;}
.x14{left:459.239987px;}
.x27{left:466.709987px;}
.x15{left:475.439987px;}
.x2e{left:486.059987px;}
.x1a{left:532.949987px;}
.x28{left:547.169987px;}
.x19{left:633.599987px;}
.x1b{left:641.699987px;}
.x10{left:765.449987px;}
.x1d{left:769.410000px;}
.x18{left:804.599987px;}
.x26{left:815.669987px;}
@media print{
.vb{vertical-align:-24.000000pt;}
.v5{vertical-align:-22.080000pt;}
.vc{vertical-align:-20.800000pt;}
.v3{vertical-align:-15.360000pt;}
.v6{vertical-align:-12.160000pt;}
.v8{vertical-align:-8.640000pt;}
.va{vertical-align:-4.160000pt;}
.v1{vertical-align:-0.960000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:12.160000pt;}
.v2{vertical-align:15.040000pt;}
.v9{vertical-align:20.800000pt;}
.v4{vertical-align:22.080000pt;}
.ls27{letter-spacing:-0.736000pt;}
.ls9{letter-spacing:-0.240000pt;}
.ls25{letter-spacing:-0.224000pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls28{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.119467pt;}
.ls29{letter-spacing:-0.096000pt;}
.ls1b{letter-spacing:-0.080533pt;}
.ls1a{letter-spacing:-0.059733pt;}
.ls21{letter-spacing:-0.040320pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.012480pt;}
.ls1{letter-spacing:0.016000pt;}
.ls6{letter-spacing:0.019520pt;}
.ls4{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.053760pt;}
.ls2{letter-spacing:0.080000pt;}
.ls26{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.139200pt;}
.ls15{letter-spacing:0.153600pt;}
.ls0{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.266667pt;}
.lsa{letter-spacing:0.480000pt;}
.ls20{letter-spacing:1.520000pt;}
.ls17{letter-spacing:1.836800pt;}
.lsc{letter-spacing:1.840000pt;}
.ls5{letter-spacing:2.480000pt;}
.ls14{letter-spacing:2.557760pt;}
.ls3{letter-spacing:2.640000pt;}
.ls1f{letter-spacing:3.440000pt;}
.ls12{letter-spacing:3.673600pt;}
.ls19{letter-spacing:3.779520pt;}
.lsf{letter-spacing:3.993600pt;}
.ls18{letter-spacing:4.396800pt;}
.lsd{letter-spacing:4.400000pt;}
.ls10{letter-spacing:5.273600pt;}
.ls1e{letter-spacing:6.000000pt;}
.ls24{letter-spacing:18.016000pt;}
.lse{letter-spacing:19.673600pt;}
.ls16{letter-spacing:20.396800pt;}
.ls1c{letter-spacing:22.938560pt;}
.ls23{letter-spacing:42.016000pt;}
.wsc{word-spacing:-58.560000pt;}
.wsf{word-spacing:-42.560000pt;}
.wsd{word-spacing:-42.144320pt;}
.ws4{word-spacing:-14.800000pt;}
.ws6{word-spacing:-14.680320pt;}
.wse{word-spacing:-14.659520pt;}
.ws10{word-spacing:-14.640000pt;}
.ws13{word-spacing:-14.599680pt;}
.wsa{word-spacing:-14.580267pt;}
.ws11{word-spacing:-14.559467pt;}
.ws7{word-spacing:-14.520533pt;}
.ws0{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.360000pt;}
.ws2{word-spacing:-12.016000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws15{word-spacing:-11.904000pt;}
.ws14{word-spacing:-11.872000pt;}
.ws5{word-spacing:-9.520000pt;}
.wsb{word-spacing:-9.360000pt;}
.ws12{word-spacing:-9.200000pt;}
.ws9{word-spacing:0.000000pt;}
.ws8{word-spacing:1255.226667pt;}
._15{margin-left:-9.208320pt;}
._16{margin-left:-4.160000pt;}
._d{margin-left:-3.200533pt;}
._8{margin-left:-2.011307pt;}
._1{margin-left:-0.981333pt;}
._2{width:1.710080pt;}
._5{width:2.778880pt;}
._7{width:4.244267pt;}
._4{width:5.588693pt;}
._3{width:6.519680pt;}
._6{width:7.608533pt;}
._a{width:8.608320pt;}
._9{width:9.662400pt;}
._12{width:10.657920pt;}
._b{width:11.829120pt;}
._e{width:13.309760pt;}
._1a{width:14.688000pt;}
._10{width:15.869760pt;}
._13{width:17.078507pt;}
._11{width:18.095040pt;}
._14{width:19.333973pt;}
._17{width:20.378880pt;}
._19{width:21.272747pt;}
._f{width:22.311360pt;}
._18{width:23.353600pt;}
._1c{width:25.009067pt;}
._c{width:30.526720pt;}
._1d{width:39.984000pt;}
._1b{width:56.352000pt;}
._0{width:103.680000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fs5{font-size:42.560000pt;}
.fs9{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fsa{font-size:56.000000pt;}
.fs6{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:80.000000pt;}
.fs3{font-size:85.440000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.y99{bottom:3.280000pt;}
.y9a{bottom:3.360000pt;}
.ya9{bottom:4.400000pt;}
.yb2{bottom:5.120000pt;}
.ya8{bottom:5.280000pt;}
.yaf{bottom:5.440000pt;}
.y4e{bottom:6.666667pt;}
.yb0{bottom:8.160000pt;}
.yb1{bottom:11.040000pt;}
.y2{bottom:67.920000pt;}
.y1{bottom:70.960000pt;}
.y50{bottom:71.040000pt;}
.y87{bottom:98.960000pt;}
.yea{bottom:102.160000pt;}
.y4c{bottom:111.120000pt;}
.yad{bottom:115.680000pt;}
.y86{bottom:115.840000pt;}
.yd2{bottom:117.120000pt;}
.yfb{bottom:117.360000pt;}
.ye9{bottom:119.040000pt;}
.yc9{bottom:124.400000pt;}
.y38{bottom:126.400000pt;}
.y4b{bottom:128.000000pt;}
.yac{bottom:132.560000pt;}
.y85{bottom:132.720000pt;}
.yd1{bottom:134.000000pt;}
.yfa{bottom:134.240000pt;}
.ye8{bottom:135.840000pt;}
.yc8{bottom:141.280000pt;}
.y37{bottom:143.280000pt;}
.y4a{bottom:144.800000pt;}
.y15f{bottom:146.720000pt;}
.y84{bottom:149.520000pt;}
.yab{bottom:149.760000pt;}
.yd0{bottom:150.880000pt;}
.yf9{bottom:151.120000pt;}
.ye7{bottom:152.720000pt;}
.yc7{bottom:158.080000pt;}
.y36{bottom:160.160000pt;}
.y49{bottom:161.680000pt;}
.y15e{bottom:162.560000pt;}
.y83{bottom:166.400000pt;}
.yaa{bottom:166.960000pt;}
.ycf{bottom:167.760000pt;}
.yf8{bottom:167.920000pt;}
.ye6{bottom:169.600000pt;}
.y120{bottom:170.400000pt;}
.yc6{bottom:174.960000pt;}
.y15d{bottom:176.560000pt;}
.y35{bottom:177.040000pt;}
.y48{bottom:178.560000pt;}
.ya7{bottom:180.560000pt;}
.y82{bottom:183.280000pt;}
.y11f{bottom:184.400000pt;}
.yce{bottom:184.640000pt;}
.yf7{bottom:184.800000pt;}
.ye5{bottom:186.480000pt;}
.y15c{bottom:190.560000pt;}
.yc5{bottom:191.200000pt;}
.y34{bottom:193.920000pt;}
.y47{bottom:195.440000pt;}
.y11e{bottom:198.400000pt;}
.y81{bottom:200.186667pt;}
.ycd{bottom:201.466667pt;}
.yf6{bottom:201.706667pt;}
.ya6{bottom:202.986667pt;}
.ye4{bottom:203.386667pt;}
.y15b{bottom:204.586667pt;}
.yc4{bottom:207.226667pt;}
.y33{bottom:210.746667pt;}
.y46{bottom:212.346667pt;}
.y11d{bottom:212.426667pt;}
.y80{bottom:217.066667pt;}
.ycc{bottom:217.866667pt;}
.yf5{bottom:218.586667pt;}
.ya5{bottom:219.866667pt;}
.ye3{bottom:220.186667pt;}
.yc3{bottom:222.266667pt;}
.y11c{bottom:226.426667pt;}
.y32{bottom:227.626667pt;}
.y45{bottom:229.146667pt;}
.y15a{bottom:232.586667pt;}
.ycb{bottom:233.706667pt;}
.y7f{bottom:233.946667pt;}
.yf4{bottom:235.466667pt;}
.ya4{bottom:237.066667pt;}
.y11b{bottom:240.426667pt;}
.y31{bottom:244.506667pt;}
.y44{bottom:246.026667pt;}
.y159{bottom:246.586667pt;}
.yca{bottom:247.226667pt;}
.y7e{bottom:250.746667pt;}
.yf3{bottom:252.346667pt;}
.ye2{bottom:253.946667pt;}
.ya3{bottom:254.266667pt;}
.y11a{bottom:254.426667pt;}
.y158{bottom:260.586667pt;}
.y30{bottom:261.386667pt;}
.y43{bottom:262.906667pt;}
.y7d{bottom:267.626667pt;}
.y119{bottom:268.426667pt;}
.yf2{bottom:269.146667pt;}
.ye1{bottom:270.826667pt;}
.ya2{bottom:271.146667pt;}
.y157{bottom:274.586667pt;}
.y2f{bottom:278.266667pt;}
.y42{bottom:279.786667pt;}
.y118{bottom:282.426667pt;}
.y7c{bottom:284.506667pt;}
.yf1{bottom:286.026667pt;}
.ye0{bottom:287.706667pt;}
.ya1{bottom:288.026667pt;}
.y156{bottom:288.586667pt;}
.y2e{bottom:295.146667pt;}
.y117{bottom:296.426667pt;}
.y41{bottom:296.666667pt;}
.y7b{bottom:301.386667pt;}
.y155{bottom:302.586667pt;}
.yf0{bottom:302.906667pt;}
.ydf{bottom:304.586667pt;}
.ya0{bottom:304.906667pt;}
.y116{bottom:310.426667pt;}
.y2d{bottom:311.946667pt;}
.y40{bottom:313.546667pt;}
.y154{bottom:316.586667pt;}
.y7a{bottom:318.266667pt;}
.yef{bottom:319.786667pt;}
.yde{bottom:321.386667pt;}
.y9f{bottom:321.706667pt;}
.y115{bottom:324.426667pt;}
.y2c{bottom:328.826667pt;}
.y3f{bottom:330.346667pt;}
.y153{bottom:330.586667pt;}
.y79{bottom:335.066667pt;}
.yee{bottom:336.666667pt;}
.ydd{bottom:338.266667pt;}
.y114{bottom:338.426667pt;}
.y9e{bottom:338.586667pt;}
.y152{bottom:344.586667pt;}
.y2b{bottom:345.706667pt;}
.y3e{bottom:347.226667pt;}
.y78{bottom:351.946667pt;}
.y113{bottom:352.426667pt;}
.yed{bottom:353.466667pt;}
.ydc{bottom:355.146667pt;}
.y9d{bottom:355.466667pt;}
.y151{bottom:358.586667pt;}
.y2a{bottom:362.586667pt;}
.y3d{bottom:364.106667pt;}
.y112{bottom:366.426667pt;}
.y77{bottom:369.066667pt;}
.yec{bottom:370.346667pt;}
.ydb{bottom:372.026667pt;}
.y150{bottom:372.586667pt;}
.y9c{bottom:372.666667pt;}
.y29{bottom:379.466667pt;}
.y111{bottom:380.426667pt;}
.y3c{bottom:380.986667pt;}
.y14f{bottom:386.586667pt;}
.y76{bottom:387.226667pt;}
.yda{bottom:388.906667pt;}
.y9b{bottom:389.866667pt;}
.y110{bottom:394.426667pt;}
.y28{bottom:396.266667pt;}
.y3b{bottom:397.866667pt;}
.y14e{bottom:400.586667pt;}
.y98{bottom:403.546667pt;}
.y75{bottom:404.106667pt;}
.yd9{bottom:405.706667pt;}
.y10f{bottom:408.426667pt;}
.y27{bottom:413.146667pt;}
.y14d{bottom:414.586667pt;}
.y3a{bottom:414.666667pt;}
.y74{bottom:420.986667pt;}
.y10e{bottom:422.426667pt;}
.yd8{bottom:422.586667pt;}
.y97{bottom:423.946667pt;}
.y14c{bottom:428.586667pt;}
.y26{bottom:430.266667pt;}
.y39{bottom:431.546667pt;}
.y10d{bottom:436.426667pt;}
.y73{bottom:437.786667pt;}
.yd7{bottom:439.466667pt;}
.y96{bottom:440.826667pt;}
.y14b{bottom:442.586667pt;}
.y25{bottom:448.746667pt;}
.y10c{bottom:450.426667pt;}
.y72{bottom:454.666667pt;}
.yd6{bottom:456.186667pt;}
.y14a{bottom:456.586667pt;}
.y95{bottom:457.706667pt;}
.y10b{bottom:464.426667pt;}
.y24{bottom:467.146667pt;}
.y149{bottom:470.586667pt;}
.y71{bottom:471.546667pt;}
.yd5{bottom:472.746667pt;}
.y94{bottom:474.506667pt;}
.y10a{bottom:478.426667pt;}
.y148{bottom:484.586667pt;}
.y23{bottom:484.906667pt;}
.y70{bottom:488.426667pt;}
.yd4{bottom:488.586667pt;}
.y93{bottom:491.386667pt;}
.y109{bottom:492.426667pt;}
.y147{bottom:498.586667pt;}
.y22{bottom:500.986667pt;}
.yd3{bottom:502.026667pt;}
.y6f{bottom:505.306667pt;}
.y108{bottom:506.426667pt;}
.y92{bottom:508.266667pt;}
.y146{bottom:512.586667pt;}
.y21{bottom:516.986667pt;}
.y107{bottom:520.426667pt;}
.y6e{bottom:522.186667pt;}
.y91{bottom:525.146667pt;}
.y145{bottom:526.586667pt;}
.y20{bottom:532.986667pt;}
.y106{bottom:534.426667pt;}
.y6d{bottom:538.986667pt;}
.y144{bottom:540.586667pt;}
.y90{bottom:542.026667pt;}
.y105{bottom:548.426667pt;}
.y1f{bottom:548.986667pt;}
.y143{bottom:554.586667pt;}
.y6c{bottom:555.866667pt;}
.y8f{bottom:558.826667pt;}
.y104{bottom:562.426667pt;}
.y1e{bottom:564.986667pt;}
.y142{bottom:568.586667pt;}
.y6b{bottom:572.746667pt;}
.y8e{bottom:575.733333pt;}
.y103{bottom:576.453333pt;}
.y1d{bottom:581.013333pt;}
.y141{bottom:582.613333pt;}
.y6a{bottom:589.653333pt;}
.y102{bottom:590.453333pt;}
.y8d{bottom:592.613333pt;}
.y140{bottom:596.613333pt;}
.y1c{bottom:597.013333pt;}
.y101{bottom:604.453333pt;}
.y69{bottom:606.533333pt;}
.y8c{bottom:609.493333pt;}
.y13f{bottom:610.613333pt;}
.y1b{bottom:613.013333pt;}
.y100{bottom:618.453333pt;}
.y68{bottom:623.333333pt;}
.y13e{bottom:624.613333pt;}
.y8b{bottom:626.373333pt;}
.y1a{bottom:629.013333pt;}
.yff{bottom:632.453333pt;}
.y13d{bottom:638.613333pt;}
.y67{bottom:640.213333pt;}
.y8a{bottom:642.533333pt;}
.y19{bottom:645.013333pt;}
.yfe{bottom:646.453333pt;}
.y13c{bottom:652.613333pt;}
.y66{bottom:657.093333pt;}
.y89{bottom:659.173333pt;}
.yfd{bottom:660.453333pt;}
.y18{bottom:661.013333pt;}
.y13b{bottom:666.613333pt;}
.y65{bottom:673.973333pt;}
.y88{bottom:674.453333pt;}
.yfc{bottom:674.533333pt;}
.y17{bottom:677.013333pt;}
.y13a{bottom:680.613333pt;}
.y64{bottom:690.853333pt;}
.y16{bottom:693.013333pt;}
.y139{bottom:694.613333pt;}
.yc2{bottom:703.893333pt;}
.y63{bottom:707.733333pt;}
.y138{bottom:708.613333pt;}
.y15{bottom:709.013333pt;}
.yc1{bottom:720.773333pt;}
.y137{bottom:722.613333pt;}
.y62{bottom:724.533333pt;}
.y14{bottom:724.773333pt;}
.y136{bottom:736.613333pt;}
.yc0{bottom:737.653333pt;}
.y13{bottom:740.773333pt;}
.y61{bottom:741.413333pt;}
.y135{bottom:750.613333pt;}
.ybf{bottom:754.453333pt;}
.y12{bottom:758.293333pt;}
.y134{bottom:764.613333pt;}
.ybe{bottom:771.333333pt;}
.y11{bottom:772.293333pt;}
.y60{bottom:775.173333pt;}
.y133{bottom:778.613333pt;}
.ybd{bottom:788.213333pt;}
.y10{bottom:790.133333pt;}
.y5f{bottom:792.053333pt;}
.y132{bottom:792.613333pt;}
.yf{bottom:800.293333pt;}
.ybc{bottom:805.093333pt;}
.y131{bottom:806.613333pt;}
.y5e{bottom:808.853333pt;}
.ye{bottom:814.293333pt;}
.y130{bottom:820.613333pt;}
.ybb{bottom:821.973333pt;}
.y5d{bottom:825.733333pt;}
.yd{bottom:832.133333pt;}
.y12f{bottom:834.613333pt;}
.yba{bottom:838.853333pt;}
.yc{bottom:842.293333pt;}
.y5c{bottom:842.613333pt;}
.y12e{bottom:848.613333pt;}
.yb9{bottom:855.653333pt;}
.y5b{bottom:859.493333pt;}
.yb{bottom:860.533333pt;}
.y12d{bottom:862.613333pt;}
.ya{bottom:871.573333pt;}
.yb8{bottom:872.533333pt;}
.y5a{bottom:876.373333pt;}
.y12c{bottom:876.613333pt;}
.yb7{bottom:889.413333pt;}
.y9{bottom:889.973333pt;}
.y12b{bottom:890.613333pt;}
.y59{bottom:893.173333pt;}
.y12a{bottom:904.613333pt;}
.yb6{bottom:906.293333pt;}
.y58{bottom:910.053333pt;}
.y8{bottom:910.693333pt;}
.y129{bottom:918.613333pt;}
.yb5{bottom:923.173333pt;}
.y57{bottom:926.933333pt;}
.yeb{bottom:932.453333pt;}
.y128{bottom:932.613333pt;}
.y7{bottom:935.813333pt;}
.yb4{bottom:939.973333pt;}
.y56{bottom:943.813333pt;}
.y127{bottom:946.613333pt;}
.yb3{bottom:956.880000pt;}
.y126{bottom:960.640000pt;}
.y55{bottom:960.720000pt;}
.y6{bottom:963.440000pt;}
.yae{bottom:970.560000pt;}
.y125{bottom:974.640000pt;}
.y54{bottom:977.600000pt;}
.y124{bottom:988.640000pt;}
.y5{bottom:991.040000pt;}
.y53{bottom:994.400000pt;}
.y123{bottom:1002.640000pt;}
.y52{bottom:1011.280000pt;}
.y122{bottom:1016.640000pt;}
.y4{bottom:1023.440000pt;}
.y51{bottom:1028.160000pt;}
.y121{bottom:1030.640000pt;}
.y4f{bottom:1044.880000pt;}
.y4d{bottom:1102.666667pt;}
.h15{height:17.200000pt;}
.h16{height:19.226667pt;}
.h18{height:20.640000pt;}
.h3{height:24.000000pt;}
.h1e{height:33.564375pt;}
.h1a{height:33.867188pt;}
.h20{height:35.085938pt;}
.h1f{height:37.705469pt;}
.h19{height:37.863437pt;}
.hb{height:38.154375pt;}
.h11{height:38.980469pt;}
.hc{height:40.262656pt;}
.h14{height:41.317969pt;}
.h4{height:43.031250pt;}
.h13{height:43.671250pt;}
.h2{height:47.908125pt;}
.h12{height:50.203125pt;}
.h17{height:52.097812pt;}
.he{height:52.498125pt;}
.h1b{height:53.778125pt;}
.hf{height:55.644375pt;}
.h1d{height:55.751042pt;}
.h1c{height:56.284375pt;}
.ha{height:57.375000pt;}
.hd{height:57.695000pt;}
.h9{height:62.948125pt;}
.h6{height:67.734375pt;}
.h10{height:68.789062pt;}
.h7{height:75.635625pt;}
.h8{height:76.595625pt;}
.h5{height:86.062500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:6.080000pt;}
.w5{width:33.600000pt;}
.w4{width:275.706667pt;}
.w6{width:275.733333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:9.280000pt;}
.x16{left:20.000000pt;}
.x20{left:68.826667pt;}
.x21{left:70.746667pt;}
.x1c{left:72.960000pt;}
.x12{left:75.599988pt;}
.x1f{left:77.360000pt;}
.x22{left:78.346667pt;}
.x2b{left:81.039988pt;}
.x2a{left:83.919988pt;}
.x13{left:89.999988pt;}
.x2c{left:96.719988pt;}
.x2d{left:99.439988pt;}
.x3{left:113.466655pt;}
.x4{left:117.546655pt;}
.x25{left:123.626655pt;}
.x11{left:127.466655pt;}
.x9{left:147.306655pt;}
.xe{left:171.466655pt;}
.x5{left:175.226655pt;}
.xb{left:222.426655pt;}
.x1{left:234.746655pt;}
.x6{left:250.506655pt;}
.xa{left:266.746655pt;}
.xf{left:268.266655pt;}
.x8{left:274.186655pt;}
.xd{left:311.866655pt;}
.x23{left:351.333333pt;}
.xc{left:355.253322pt;}
.x24{left:367.653322pt;}
.x17{left:373.280000pt;}
.x29{left:385.653322pt;}
.x2{left:393.893333pt;}
.x7{left:396.933322pt;}
.x14{left:408.213322pt;}
.x27{left:414.853322pt;}
.x15{left:422.613322pt;}
.x2e{left:432.053322pt;}
.x1a{left:473.733322pt;}
.x28{left:486.373322pt;}
.x19{left:563.199988pt;}
.x1b{left:570.399988pt;}
.x10{left:680.399988pt;}
.x1d{left:683.920000pt;}
.x18{left:715.199988pt;}
.x26{left:725.039988pt;}
}




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