
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_bb7a2a23b956bcb37acae772.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_aecf995bb0e1ebfc836ff55c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_caeb7958adf674dcc42396e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_91a776a22f6c8fc7da86081f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_2f5f81a39fb8b59398e5925c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_67b7a0a59048106a5abd9475.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_e2db357a9c6dbec8e6a6a208.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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_69dd6999ac1da3ca4bd00326.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.096680;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_88fecacde45de62ef49c7c6a.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls15{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.ls16{letter-spacing:-0.121200px;}
.ls2e{letter-spacing:-0.117600px;}
.ls8{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls17{letter-spacing:-0.063600px;}
.lsa{letter-spacing:-0.051600px;}
.lsb{letter-spacing:-0.008400px;}
.ls6{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.023040px;}
.ls1b{letter-spacing:0.038160px;}
.ls11{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.lsd{letter-spacing:0.049200px;}
.ls18{letter-spacing:0.060480px;}
.ls19{letter-spacing:0.060600px;}
.ls4{letter-spacing:0.065520px;}
.lse{letter-spacing:0.074160px;}
.ls1a{letter-spacing:0.079200px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls23{letter-spacing:0.098400px;}
.ls21{letter-spacing:0.099360px;}
.ls1f{letter-spacing:0.106560px;}
.ls2a{letter-spacing:0.113400px;}
.ls2b{letter-spacing:0.116400px;}
.ls25{letter-spacing:0.120000px;}
.ls22{letter-spacing:0.133200px;}
.ls20{letter-spacing:0.133920px;}
.ls7{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.153600px;}
.ls1c{letter-spacing:0.168960px;}
.ls14{letter-spacing:0.173400px;}
.ls1e{letter-spacing:0.173520px;}
.ls26{letter-spacing:0.310200px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.425520px;}
.ls10{letter-spacing:1.533600px;}
.ls27{letter-spacing:3.333600px;}
.ls13{letter-spacing:4.413600px;}
.ls28{letter-spacing:5.133600px;}
.lsf{letter-spacing:9.093600px;}
.ls3{letter-spacing:18.266400px;}
.ls2d{letter-spacing:47.726640px;}
.ls2c{letter-spacing:48.446640px;}
.ls29{letter-spacing:81.566640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.453600px;}
.ws3{word-spacing:-18.402000px;}
.ws7{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.359600px;}
.ws14{word-spacing:-13.346400px;}
.ws16{word-spacing:-13.342800px;}
.ws15{word-spacing:-13.339800px;}
.ws11{word-spacing:-13.324800px;}
.wsc{word-spacing:-13.275360px;}
.wsf{word-spacing:-13.264560px;}
.ws5{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.162800px;}
.ws12{word-spacing:-13.141800px;}
.wsa{word-spacing:-13.039800px;}
.ws13{word-spacing:-10.687200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wse{word-spacing:-8.614200px;}
.ws4{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:3.327120px;}
._9{margin-left:-3.787800px;}
._8{margin-left:-2.111400px;}
._0{margin-left:-1.110000px;}
._2{width:1.149480px;}
._c{width:2.284800px;}
._e{width:3.319561px;}
._4{width:4.977240px;}
._3{width:6.204960px;}
._10{width:7.464600px;}
._d{width:8.476800px;}
._b{width:9.954120px;}
._a{width:10.984320px;}
._11{width:12.079680px;}
._f{width:14.248440px;}
._5{width:15.934560px;}
._6{width:17.554800px;}
._7{width:18.637801px;}
._1{width:20.106960px;}
._13{width:145.370160px;}
._14{width:177.955200px;}
._12{width:233.806680px;}
._15{width:269.578080px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y94{bottom:7.830000px;}
.y97{bottom:7.920000px;}
.yb1{bottom:11.610000px;}
.y9e{bottom:12.330000px;}
.yc6{bottom:18.360000px;}
.yb6{bottom:18.450000px;}
.yce{bottom:19.440000px;}
.ybe{bottom:25.380000px;}
.yb0{bottom:25.470000px;}
.ydf{bottom:29.880000px;}
.y9d{bottom:29.970000px;}
.ybb{bottom:36.000000px;}
.yc5{bottom:40.410000px;}
.yb5{bottom:40.500000px;}
.ycb{bottom:52.020000px;}
.yb4{bottom:58.050000px;}
.yd5{bottom:62.490000px;}
.yc4{bottom:62.550000px;}
.y2{bottom:73.380000px;}
.yca{bottom:74.160000px;}
.y29{bottom:74.190000px;}
.yba{bottom:75.690000px;}
.yb3{bottom:80.190000px;}
.yb9{bottom:97.740000px;}
.y1{bottom:101.640000px;}
.ya7{bottom:115.140000px;}
.y14c{bottom:121.080000px;}
.yfb{bottom:121.170000px;}
.y7c{bottom:122.610000px;}
.ya6{bottom:132.690000px;}
.yfa{bottom:138.720000px;}
.y7b{bottom:140.250000px;}
.y27{bottom:140.790000px;}
.y14b{bottom:146.010000px;}
.yd1{bottom:152.850000px;}
.yf9{bottom:156.360000px;}
.y7a{bottom:157.800000px;}
.y26{bottom:158.340000px;}
.ya5{bottom:159.240000px;}
.y14a{bottom:163.740000px;}
.y11c{bottom:166.890000px;}
.yf8{bottom:173.910000px;}
.y79{bottom:175.440000px;}
.y25{bottom:175.980000px;}
.y11b{bottom:184.440000px;}
.yd0{bottom:188.400000px;}
.y149{bottom:188.760000px;}
.yf7{bottom:191.550000px;}
.ya4{bottom:191.820000px;}
.y24{bottom:193.530000px;}
.y52{bottom:198.840000px;}
.y78{bottom:201.990000px;}
.y148{bottom:206.400000px;}
.y11a{bottom:208.740000px;}
.yf6{bottom:209.100000px;}
.y23{bottom:211.170000px;}
.y51{bottom:216.390000px;}
.ycf{bottom:223.320000px;}
.y147{bottom:223.950000px;}
.y119{bottom:226.380000px;}
.yf5{bottom:226.650000px;}
.ya3{bottom:226.740000px;}
.y22{bottom:228.720000px;}
.yc9{bottom:235.470000px;}
.y77{bottom:237.540000px;}
.ya2{bottom:238.890000px;}
.y50{bottom:242.940000px;}
.y118{bottom:243.930000px;}
.yf4{bottom:244.290000px;}
.y21{bottom:246.270000px;}
.y146{bottom:248.970000px;}
.yf3{bottom:261.840000px;}
.y20{bottom:263.910000px;}
.ya1{bottom:266.250000px;}
.y145{bottom:266.610000px;}
.y117{bottom:268.320000px;}
.y76{bottom:273.180000px;}
.ycd{bottom:274.440000px;}
.y4f{bottom:278.580000px;}
.yf2{bottom:279.480000px;}
.y1f{bottom:281.460000px;}
.y116{bottom:285.870000px;}
.y75{bottom:290.730000px;}
.y144{bottom:291.630000px;}
.ya0{bottom:293.520000px;}
.y4e{bottom:296.130000px;}
.yf1{bottom:297.030000px;}
.y1e{bottom:299.100000px;}
.ycc{bottom:301.710000px;}
.y115{bottom:303.420000px;}
.y74{bottom:308.370000px;}
.y4d{bottom:313.770000px;}
.yf0{bottom:314.580000px;}
.y1d{bottom:316.650000px;}
.y143{bottom:316.740000px;}
.y9f{bottom:320.880000px;}
.y73{bottom:325.920000px;}
.yc3{bottom:329.070000px;}
.y114{bottom:330.330000px;}
.y4c{bottom:331.320000px;}
.yef{bottom:332.220000px;}
.y142{bottom:334.380000px;}
.y1c{bottom:343.560000px;}
.y9c{bottom:348.240000px;}
.y4b{bottom:348.870000px;}
.y141{bottom:352.020000px;}
.y72{bottom:352.470000px;}
.yc8{bottom:356.430000px;}
.yee{bottom:359.130000px;}
.y4a{bottom:375.510000px;}
.y140{bottom:376.950000px;}
.y113{bottom:378.660000px;}
.yc7{bottom:383.700000px;}
.y71{bottom:388.110000px;}
.y1b{bottom:392.160000px;}
.y13f{bottom:394.680000px;}
.y112{bottom:405.570000px;}
.y70{bottom:405.660000px;}
.yed{bottom:407.370000px;}
.y49{bottom:411.060000px;}
.y9b{bottom:418.980000px;}
.y13e{bottom:419.700000px;}
.y6f{bottom:423.300000px;}
.yec{bottom:425.010000px;}
.y48{bottom:428.700000px;}
.y1a{bottom:429.150000px;}
.y13d{bottom:437.340000px;}
.yeb{bottom:442.560000px;}
.y47{bottom:446.250000px;}
.y19{bottom:446.790000px;}
.y6e{bottom:449.850000px;}
.y9a{bottom:453.900000px;}
.y13c{bottom:454.890000px;}
.yea{bottom:460.110000px;}
.yc2{bottom:460.470000px;}
.y18{bottom:464.340000px;}
.y99{bottom:468.660000px;}
.y46{bottom:472.830000px;}
.ye9{bottom:477.780000px;}
.y13b{bottom:479.940000px;}
.y17{bottom:481.920000px;}
.y98{bottom:483.630000px;}
.y6d{bottom:485.430000px;}
.y111{bottom:487.050000px;}
.ye8{bottom:495.330000px;}
.y13a{bottom:497.580000px;}
.y16{bottom:499.560000px;}
.y45{bottom:505.410000px;}
.yc1{bottom:509.190000px;}
.y96{bottom:510.990000px;}
.y139{bottom:515.220000px;}
.y6c{bottom:521.070000px;}
.ye7{bottom:521.880000px;}
.y110{bottom:524.400000px;}
.y15{bottom:535.110000px;}
.y95{bottom:538.350000px;}
.y6b{bottom:538.620000px;}
.y138{bottom:540.240000px;}
.y44{bottom:541.050000px;}
.yc0{bottom:544.110000px;}
.y14{bottom:552.750000px;}
.y6a{bottom:556.260000px;}
.ye6{bottom:556.800000px;}
.y137{bottom:557.880000px;}
.y43{bottom:558.600000px;}
.ybf{bottom:558.870000px;}
.y93{bottom:565.710000px;}
.ye3{bottom:568.950000px;}
.y13{bottom:570.300000px;}
.y10f{bottom:572.730000px;}
.y69{bottom:573.810000px;}
.y136{bottom:575.430000px;}
.y42{bottom:576.240000px;}
.y12{bottom:587.850000px;}
.y10e{bottom:590.280000px;}
.y135{bottom:593.070000px;}
.y41{bottom:593.790000px;}
.ye5{bottom:596.310000px;}
.y68{bottom:600.360000px;}
.y10d{bottom:607.830000px;}
.y40{bottom:611.340000px;}
.y92{bottom:614.400000px;}
.y134{bottom:618.000000px;}
.ybd{bottom:618.810000px;}
.y11{bottom:623.490000px;}
.ye4{bottom:623.670000px;}
.y10c{bottom:625.470000px;}
.y133{bottom:635.730000px;}
.y67{bottom:636.000000px;}
.y3f{bottom:637.980000px;}
.y10{bottom:641.040000px;}
.y10b{bottom:643.020000px;}
.y91{bottom:649.950000px;}
.ye0{bottom:650.940000px;}
.y66{bottom:653.550000px;}
.yf{bottom:658.680000px;}
.y10a{bottom:660.660000px;}
.y132{bottom:660.750000px;}
.ybc{bottom:663.720000px;}
.y90{bottom:667.590000px;}
.y65{bottom:671.190000px;}
.y3e{bottom:673.530000px;}
.ye{bottom:676.230000px;}
.y109{bottom:678.210000px;}
.ye2{bottom:678.300000px;}
.y8f{bottom:685.140000px;}
.y131{bottom:685.770000px;}
.yb2{bottom:690.990000px;}
.y3d{bottom:691.170000px;}
.y108{bottom:695.760000px;}
.y64{bottom:697.740000px;}
.y8e{bottom:702.690000px;}
.yd{bottom:703.140000px;}
.y130{bottom:703.500000px;}
.ye1{bottom:705.660000px;}
.y3c{bottom:708.720000px;}
.y107{bottom:713.400000px;}
.y12f{bottom:728.430000px;}
.y8d{bottom:729.330000px;}
.y106{bottom:730.950000px;}
.yde{bottom:733.020000px;}
.y63{bottom:733.290000px;}
.y3b{bottom:735.270000px;}
.yb8{bottom:735.990000px;}
.y12e{bottom:746.160000px;}
.y62{bottom:750.930000px;}
.yc{bottom:751.380000px;}
.y105{bottom:757.860000px;}
.yb7{bottom:763.260000px;}
.y8c{bottom:764.880000px;}
.y3a{bottom:770.910000px;}
.y12d{bottom:771.180000px;}
.y61{bottom:777.480000px;}
.ydd{bottom:782.430000px;}
.y8b{bottom:782.520000px;}
.yb{bottom:787.200000px;}
.y39{bottom:788.460000px;}
.y12c{bottom:788.820000px;}
.yaf{bottom:790.620000px;}
.y8a{bottom:800.070000px;}
.y104{bottom:806.190000px;}
.y60{bottom:813.030000px;}
.y12b{bottom:813.840000px;}
.y38{bottom:815.010000px;}
.y89{bottom:817.620000px;}
.ya{bottom:823.200000px;}
.y103{bottom:823.740000px;}
.y5f{bottom:830.670000px;}
.ydc{bottom:831.120000px;}
.y88{bottom:835.260000px;}
.yae{bottom:835.530000px;}
.y12a{bottom:838.860000px;}
.y102{bottom:841.290000px;}
.y37{bottom:847.590000px;}
.y5e{bottom:848.220000px;}
.y129{bottom:856.590000px;}
.y101{bottom:858.930000px;}
.y9{bottom:859.200000px;}
.y87{bottom:861.810000px;}
.ydb{bottom:865.950000px;}
.y5d{bottom:874.860000px;}
.y100{bottom:876.480000px;}
.yd8{bottom:878.100000px;}
.y36{bottom:880.260000px;}
.y8{bottom:880.980000px;}
.y128{bottom:881.610000px;}
.yad{bottom:884.220000px;}
.yff{bottom:894.030000px;}
.y7{bottom:895.200000px;}
.y86{bottom:897.720000px;}
.y127{bottom:899.250000px;}
.yda{bottom:905.460000px;}
.y5c{bottom:910.410000px;}
.yfe{bottom:911.670000px;}
.y35{bottom:916.170000px;}
.y126{bottom:916.800000px;}
.y6{bottom:916.980000px;}
.yac{bottom:919.860000px;}
.y5b{bottom:927.960000px;}
.yfd{bottom:929.220000px;}
.yd9{bottom:932.820000px;}
.yab{bottom:937.410000px;}
.y125{bottom:941.820000px;}
.y5a{bottom:945.600000px;}
.y85{bottom:945.960000px;}
.yfc{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.yaa{bottom:954.960000px;}
.y124{bottom:959.460000px;}
.yd4{bottom:960.180000px;}
.y59{bottom:963.150000px;}
.y84{bottom:963.600000px;}
.y34{bottom:964.410000px;}
.ya9{bottom:972.600000px;}
.y123{bottom:977.100000px;}
.y83{bottom:981.150000px;}
.y33{bottom:981.960000px;}
.yd7{bottom:987.450000px;}
.y4{bottom:987.630000px;}
.y58{bottom:989.790000px;}
.ya8{bottom:999.150000px;}
.y32{bottom:999.600000px;}
.y122{bottom:1002.120000px;}
.y82{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.yd6{bottom:1014.840000px;}
.y31{bottom:1017.180000px;}
.y121{bottom:1019.790000px;}
.y57{bottom:1025.370000px;}
.y30{bottom:1034.820000px;}
.yd3{bottom:1042.200000px;}
.y56{bottom:1042.920000px;}
.y81{bottom:1043.370000px;}
.y120{bottom:1044.810000px;}
.y2f{bottom:1052.370000px;}
.y55{bottom:1060.560000px;}
.y80{bottom:1060.920000px;}
.y11f{bottom:1062.450000px;}
.y2e{bottom:1069.920000px;}
.y54{bottom:1078.110000px;}
.y7f{bottom:1078.560000px;}
.y11e{bottom:1080.000000px;}
.y2d{bottom:1087.560000px;}
.yd2{bottom:1091.610000px;}
.y7e{bottom:1096.110000px;}
.y53{bottom:1104.750000px;}
.y11d{bottom:1105.020000px;}
.y2c{bottom:1105.110000px;}
.y7d{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hd{height:26.550000px;}
.he{height:26.640000px;}
.h16{height:26.670000px;}
.h2{height:31.901133px;}
.h6{height:37.191445px;}
.h12{height:37.661133px;}
.h1a{height:38.160000px;}
.h3{height:39.155273px;}
.hf{height:41.661211px;}
.h15{height:44.100000px;}
.h11{height:44.190000px;}
.h1c{height:48.600000px;}
.h10{height:48.690000px;}
.h18{height:50.902383px;}
.h7{height:52.311445px;}
.h9{height:52.781133px;}
.h5{height:57.323320px;}
.h8{height:57.838008px;}
.hc{height:59.973223px;}
.h1d{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1b{height:81.210000px;}
.h17{height:81.270000px;}
.h19{height:92.880000px;}
.h13{height:98.910000px;}
.h14{height:116.460000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w10{width:36.090000px;}
.wf{width:36.390000px;}
.w11{width:42.300000px;}
.w12{width:43.560000px;}
.w5{width:58.890000px;}
.w3{width:67.410000px;}
.w7{width:71.910000px;}
.wb{width:73.200000px;}
.w1f{width:78.120000px;}
.w1e{width:78.150000px;}
.wc{width:81.090000px;}
.we{width:86.400000px;}
.wd{width:86.670000px;}
.w20{width:87.300000px;}
.w1a{width:88.830000px;}
.w16{width:93.420000px;}
.w19{width:95.670000px;}
.w18{width:96.300000px;}
.w17{width:96.420000px;}
.w6{width:98.190000px;}
.wa{width:99.000000px;}
.w9{width:100.710000px;}
.w4{width:108.630000px;}
.w21{width:115.290000px;}
.w14{width:136.380000px;}
.w15{width:144.000000px;}
.w8{width:151.500000px;}
.w1b{width:157.710000px;}
.w22{width:168.690000px;}
.w1c{width:192.060000px;}
.w1d{width:361.020000px;}
.w13{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x9{left:88.649987px;}
.x1b{left:90.450000px;}
.x26{left:111.419987px;}
.xb{left:141.390000px;}
.x14{left:176.519987px;}
.x2{left:202.799987px;}
.x15{left:205.950000px;}
.x21{left:238.170000px;}
.x1c{left:248.970000px;}
.x4{left:278.940000px;}
.xc{left:293.700000px;}
.x6{left:347.160000px;}
.x16{left:350.760000px;}
.xa{left:372.359987px;}
.xd{left:395.220000px;}
.x22{left:430.950000px;}
.x1d{left:441.750000px;}
.x17{left:444.900000px;}
.x7{left:456.510000px;}
.xe{left:494.940000px;}
.x23{left:509.820000px;}
.x8{left:516.120000px;}
.x1e{left:520.620000px;}
.x12{left:532.050000px;}
.x18{left:542.130000px;}
.xf{left:568.860000px;}
.x24{left:588.660000px;}
.x1f{left:599.460000px;}
.x19{left:639.240000px;}
.x10{left:650.670000px;}
.x25{left:676.680000px;}
.x20{left:687.480000px;}
.x13{left:693.780000px;}
.x1a{left:735.630000px;}
.x11{left:738.060000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls15{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls16{letter-spacing:-0.107733pt;}
.ls2e{letter-spacing:-0.104533pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls17{letter-spacing:-0.056533pt;}
.lsa{letter-spacing:-0.045867pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.020480pt;}
.ls1b{letter-spacing:0.033920pt;}
.ls11{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.lsd{letter-spacing:0.043733pt;}
.ls18{letter-spacing:0.053760pt;}
.ls19{letter-spacing:0.053867pt;}
.ls4{letter-spacing:0.058240pt;}
.lse{letter-spacing:0.065920pt;}
.ls1a{letter-spacing:0.070400pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls23{letter-spacing:0.087467pt;}
.ls21{letter-spacing:0.088320pt;}
.ls1f{letter-spacing:0.094720pt;}
.ls2a{letter-spacing:0.100800pt;}
.ls2b{letter-spacing:0.103467pt;}
.ls25{letter-spacing:0.106667pt;}
.ls22{letter-spacing:0.118400pt;}
.ls20{letter-spacing:0.119040pt;}
.ls7{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.136533pt;}
.ls1c{letter-spacing:0.150187pt;}
.ls14{letter-spacing:0.154133pt;}
.ls1e{letter-spacing:0.154240pt;}
.ls26{letter-spacing:0.275733pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.378240pt;}
.ls10{letter-spacing:1.363200pt;}
.ls27{letter-spacing:2.963200pt;}
.ls13{letter-spacing:3.923200pt;}
.ls28{letter-spacing:4.563200pt;}
.lsf{letter-spacing:8.083200pt;}
.ls3{letter-spacing:16.236800pt;}
.ls2d{letter-spacing:42.423680pt;}
.ls2c{letter-spacing:43.063680pt;}
.ls29{letter-spacing:72.503680pt;}
.ws2{word-spacing:-16.403200pt;}
.ws3{word-spacing:-16.357333pt;}
.ws7{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.875200pt;}
.ws14{word-spacing:-11.863467pt;}
.ws16{word-spacing:-11.860267pt;}
.ws15{word-spacing:-11.857600pt;}
.ws11{word-spacing:-11.844267pt;}
.wsc{word-spacing:-11.800320pt;}
.wsf{word-spacing:-11.790720pt;}
.ws5{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.700267pt;}
.ws12{word-spacing:-11.681600pt;}
.wsa{word-spacing:-11.590933pt;}
.ws13{word-spacing:-9.499733pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wse{word-spacing:-7.657067pt;}
.ws4{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:2.957440pt;}
._9{margin-left:-3.366934pt;}
._8{margin-left:-1.876800pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.021760pt;}
._c{width:2.030934pt;}
._e{width:2.950721pt;}
._4{width:4.424213pt;}
._3{width:5.515520pt;}
._10{width:6.635200pt;}
._d{width:7.534933pt;}
._b{width:8.848107pt;}
._a{width:9.763840pt;}
._11{width:10.737493pt;}
._f{width:12.665280pt;}
._5{width:14.164053pt;}
._6{width:15.604266pt;}
._7{width:16.566934pt;}
._1{width:17.872853pt;}
._13{width:129.217920pt;}
._14{width:158.182400pt;}
._12{width:207.828160pt;}
._15{width:239.624960pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:6.960000pt;}
.y97{bottom:7.040000pt;}
.yb1{bottom:10.320000pt;}
.y9e{bottom:10.960000pt;}
.yc6{bottom:16.320000pt;}
.yb6{bottom:16.400000pt;}
.yce{bottom:17.280000pt;}
.ybe{bottom:22.560000pt;}
.yb0{bottom:22.640000pt;}
.ydf{bottom:26.560000pt;}
.y9d{bottom:26.640000pt;}
.ybb{bottom:32.000000pt;}
.yc5{bottom:35.920000pt;}
.yb5{bottom:36.000000pt;}
.ycb{bottom:46.240000pt;}
.yb4{bottom:51.600000pt;}
.yd5{bottom:55.546667pt;}
.yc4{bottom:55.600000pt;}
.y2{bottom:65.226667pt;}
.yca{bottom:65.920000pt;}
.y29{bottom:65.946667pt;}
.yba{bottom:67.280000pt;}
.yb3{bottom:71.280000pt;}
.yb9{bottom:86.880000pt;}
.y1{bottom:90.346667pt;}
.ya7{bottom:102.346667pt;}
.y14c{bottom:107.626667pt;}
.yfb{bottom:107.706667pt;}
.y7c{bottom:108.986667pt;}
.ya6{bottom:117.946667pt;}
.yfa{bottom:123.306667pt;}
.y7b{bottom:124.666667pt;}
.y27{bottom:125.146667pt;}
.y14b{bottom:129.786667pt;}
.yd1{bottom:135.866667pt;}
.yf9{bottom:138.986667pt;}
.y7a{bottom:140.266667pt;}
.y26{bottom:140.746667pt;}
.ya5{bottom:141.546667pt;}
.y14a{bottom:145.546667pt;}
.y11c{bottom:148.346667pt;}
.yf8{bottom:154.586667pt;}
.y79{bottom:155.946667pt;}
.y25{bottom:156.426667pt;}
.y11b{bottom:163.946667pt;}
.yd0{bottom:167.466667pt;}
.y149{bottom:167.786667pt;}
.yf7{bottom:170.266667pt;}
.ya4{bottom:170.506667pt;}
.y24{bottom:172.026667pt;}
.y52{bottom:176.746667pt;}
.y78{bottom:179.546667pt;}
.y148{bottom:183.466667pt;}
.y11a{bottom:185.546667pt;}
.yf6{bottom:185.866667pt;}
.y23{bottom:187.706667pt;}
.y51{bottom:192.346667pt;}
.ycf{bottom:198.506667pt;}
.y147{bottom:199.066667pt;}
.y119{bottom:201.226667pt;}
.yf5{bottom:201.466667pt;}
.ya3{bottom:201.546667pt;}
.y22{bottom:203.306667pt;}
.yc9{bottom:209.306667pt;}
.y77{bottom:211.146667pt;}
.ya2{bottom:212.346667pt;}
.y50{bottom:215.946667pt;}
.y118{bottom:216.826667pt;}
.yf4{bottom:217.146667pt;}
.y21{bottom:218.906667pt;}
.y146{bottom:221.306667pt;}
.yf3{bottom:232.746667pt;}
.y20{bottom:234.586667pt;}
.ya1{bottom:236.666667pt;}
.y145{bottom:236.986667pt;}
.y117{bottom:238.506667pt;}
.y76{bottom:242.826667pt;}
.ycd{bottom:243.946667pt;}
.y4f{bottom:247.626667pt;}
.yf2{bottom:248.426667pt;}
.y1f{bottom:250.186667pt;}
.y116{bottom:254.106667pt;}
.y75{bottom:258.426667pt;}
.y144{bottom:259.226667pt;}
.ya0{bottom:260.906667pt;}
.y4e{bottom:263.226667pt;}
.yf1{bottom:264.026667pt;}
.y1e{bottom:265.866667pt;}
.ycc{bottom:268.186667pt;}
.y115{bottom:269.706667pt;}
.y74{bottom:274.106667pt;}
.y4d{bottom:278.906667pt;}
.yf0{bottom:279.626667pt;}
.y1d{bottom:281.466667pt;}
.y143{bottom:281.546667pt;}
.y9f{bottom:285.226667pt;}
.y73{bottom:289.706667pt;}
.yc3{bottom:292.506667pt;}
.y114{bottom:293.626667pt;}
.y4c{bottom:294.506667pt;}
.yef{bottom:295.306667pt;}
.y142{bottom:297.226667pt;}
.y1c{bottom:305.386667pt;}
.y9c{bottom:309.546667pt;}
.y4b{bottom:310.106667pt;}
.y141{bottom:312.906667pt;}
.y72{bottom:313.306667pt;}
.yc8{bottom:316.826667pt;}
.yee{bottom:319.226667pt;}
.y4a{bottom:333.786667pt;}
.y140{bottom:335.066667pt;}
.y113{bottom:336.586667pt;}
.yc7{bottom:341.066667pt;}
.y71{bottom:344.986667pt;}
.y1b{bottom:348.586667pt;}
.y13f{bottom:350.826667pt;}
.y112{bottom:360.506667pt;}
.y70{bottom:360.586667pt;}
.yed{bottom:362.106667pt;}
.y49{bottom:365.386667pt;}
.y9b{bottom:372.426667pt;}
.y13e{bottom:373.066667pt;}
.y6f{bottom:376.266667pt;}
.yec{bottom:377.786667pt;}
.y48{bottom:381.066667pt;}
.y1a{bottom:381.466667pt;}
.y13d{bottom:388.746667pt;}
.yeb{bottom:393.386667pt;}
.y47{bottom:396.666667pt;}
.y19{bottom:397.146667pt;}
.y6e{bottom:399.866667pt;}
.y9a{bottom:403.466667pt;}
.y13c{bottom:404.346667pt;}
.yea{bottom:408.986667pt;}
.yc2{bottom:409.306667pt;}
.y18{bottom:412.746667pt;}
.y99{bottom:416.586667pt;}
.y46{bottom:420.293333pt;}
.ye9{bottom:424.693333pt;}
.y13b{bottom:426.613333pt;}
.y17{bottom:428.373333pt;}
.y98{bottom:429.893333pt;}
.y6d{bottom:431.493333pt;}
.y111{bottom:432.933333pt;}
.ye8{bottom:440.293333pt;}
.y13a{bottom:442.293333pt;}
.y16{bottom:444.053333pt;}
.y45{bottom:449.253333pt;}
.yc1{bottom:452.613333pt;}
.y96{bottom:454.213333pt;}
.y139{bottom:457.973333pt;}
.y6c{bottom:463.173333pt;}
.ye7{bottom:463.893333pt;}
.y110{bottom:466.133333pt;}
.y15{bottom:475.653333pt;}
.y95{bottom:478.533333pt;}
.y6b{bottom:478.773333pt;}
.y138{bottom:480.213333pt;}
.y44{bottom:480.933333pt;}
.yc0{bottom:483.653333pt;}
.y14{bottom:491.333333pt;}
.y6a{bottom:494.453333pt;}
.ye6{bottom:494.933333pt;}
.y137{bottom:495.893333pt;}
.y43{bottom:496.533333pt;}
.ybf{bottom:496.773333pt;}
.y93{bottom:502.853333pt;}
.ye3{bottom:505.733333pt;}
.y13{bottom:506.933333pt;}
.y10f{bottom:509.093333pt;}
.y69{bottom:510.053333pt;}
.y136{bottom:511.493333pt;}
.y42{bottom:512.213333pt;}
.y12{bottom:522.533333pt;}
.y10e{bottom:524.693333pt;}
.y135{bottom:527.173333pt;}
.y41{bottom:527.813333pt;}
.ye5{bottom:530.053333pt;}
.y68{bottom:533.653333pt;}
.y10d{bottom:540.293333pt;}
.y40{bottom:543.413333pt;}
.y92{bottom:546.133333pt;}
.y134{bottom:549.333333pt;}
.ybd{bottom:550.053333pt;}
.y11{bottom:554.213333pt;}
.ye4{bottom:554.373333pt;}
.y10c{bottom:555.973333pt;}
.y133{bottom:565.093333pt;}
.y67{bottom:565.333333pt;}
.y3f{bottom:567.093333pt;}
.y10{bottom:569.813333pt;}
.y10b{bottom:571.573333pt;}
.y91{bottom:577.733333pt;}
.ye0{bottom:578.613333pt;}
.y66{bottom:580.933333pt;}
.yf{bottom:585.493333pt;}
.y10a{bottom:587.253333pt;}
.y132{bottom:587.333333pt;}
.ybc{bottom:589.973333pt;}
.y90{bottom:593.413333pt;}
.y65{bottom:596.613333pt;}
.y3e{bottom:598.693333pt;}
.ye{bottom:601.093333pt;}
.y109{bottom:602.853333pt;}
.ye2{bottom:602.933333pt;}
.y8f{bottom:609.013333pt;}
.y131{bottom:609.573333pt;}
.yb2{bottom:614.213333pt;}
.y3d{bottom:614.373333pt;}
.y108{bottom:618.453333pt;}
.y64{bottom:620.213333pt;}
.y8e{bottom:624.613333pt;}
.yd{bottom:625.013333pt;}
.y130{bottom:625.333333pt;}
.ye1{bottom:627.253333pt;}
.y3c{bottom:629.973333pt;}
.y107{bottom:634.133333pt;}
.y12f{bottom:647.493333pt;}
.y8d{bottom:648.293333pt;}
.y106{bottom:649.733333pt;}
.yde{bottom:651.573333pt;}
.y63{bottom:651.813333pt;}
.y3b{bottom:653.573333pt;}
.yb8{bottom:654.213333pt;}
.y12e{bottom:663.253333pt;}
.y62{bottom:667.493333pt;}
.yc{bottom:667.893333pt;}
.y105{bottom:673.653333pt;}
.yb7{bottom:678.453333pt;}
.y8c{bottom:679.893333pt;}
.y3a{bottom:685.253333pt;}
.y12d{bottom:685.493333pt;}
.y61{bottom:691.093333pt;}
.ydd{bottom:695.493333pt;}
.y8b{bottom:695.573333pt;}
.yb{bottom:699.733333pt;}
.y39{bottom:700.853333pt;}
.y12c{bottom:701.173333pt;}
.yaf{bottom:702.773333pt;}
.y8a{bottom:711.173333pt;}
.y104{bottom:716.613333pt;}
.y60{bottom:722.693333pt;}
.y12b{bottom:723.413333pt;}
.y38{bottom:724.453333pt;}
.y89{bottom:726.773333pt;}
.ya{bottom:731.733333pt;}
.y103{bottom:732.213333pt;}
.y5f{bottom:738.373333pt;}
.ydc{bottom:738.773333pt;}
.y88{bottom:742.453333pt;}
.yae{bottom:742.693333pt;}
.y12a{bottom:745.653333pt;}
.y102{bottom:747.813333pt;}
.y37{bottom:753.413333pt;}
.y5e{bottom:753.973333pt;}
.y129{bottom:761.413333pt;}
.y101{bottom:763.493333pt;}
.y9{bottom:763.733333pt;}
.y87{bottom:766.053333pt;}
.ydb{bottom:769.733333pt;}
.y5d{bottom:777.653333pt;}
.y100{bottom:779.093333pt;}
.yd8{bottom:780.533333pt;}
.y36{bottom:782.453333pt;}
.y8{bottom:783.093333pt;}
.y128{bottom:783.653333pt;}
.yad{bottom:785.973333pt;}
.yff{bottom:794.693333pt;}
.y7{bottom:795.733333pt;}
.y86{bottom:797.973333pt;}
.y127{bottom:799.333333pt;}
.yda{bottom:804.853333pt;}
.y5c{bottom:809.253333pt;}
.yfe{bottom:810.373333pt;}
.y35{bottom:814.373333pt;}
.y126{bottom:814.933333pt;}
.y6{bottom:815.093333pt;}
.yac{bottom:817.653333pt;}
.y5b{bottom:824.853333pt;}
.yfd{bottom:825.973333pt;}
.yd9{bottom:829.173333pt;}
.yab{bottom:833.253333pt;}
.y125{bottom:837.173333pt;}
.y5a{bottom:840.533333pt;}
.y85{bottom:840.853333pt;}
.yfc{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.yaa{bottom:848.853333pt;}
.y124{bottom:852.853333pt;}
.yd4{bottom:853.493333pt;}
.y59{bottom:856.133333pt;}
.y84{bottom:856.533333pt;}
.y34{bottom:857.253333pt;}
.ya9{bottom:864.533333pt;}
.y123{bottom:868.533333pt;}
.y83{bottom:872.133333pt;}
.y33{bottom:872.853333pt;}
.yd7{bottom:877.733333pt;}
.y4{bottom:877.893333pt;}
.y58{bottom:879.813333pt;}
.ya8{bottom:888.133333pt;}
.y32{bottom:888.533333pt;}
.y122{bottom:890.773333pt;}
.y82{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.yd6{bottom:902.080000pt;}
.y31{bottom:904.160000pt;}
.y121{bottom:906.480000pt;}
.y57{bottom:911.440000pt;}
.y30{bottom:919.840000pt;}
.yd3{bottom:926.400000pt;}
.y56{bottom:927.040000pt;}
.y81{bottom:927.440000pt;}
.y120{bottom:928.720000pt;}
.y2f{bottom:935.440000pt;}
.y55{bottom:942.720000pt;}
.y80{bottom:943.040000pt;}
.y11f{bottom:944.400000pt;}
.y2e{bottom:951.040000pt;}
.y54{bottom:958.320000pt;}
.y7f{bottom:958.720000pt;}
.y11e{bottom:960.000000pt;}
.y2d{bottom:966.720000pt;}
.yd2{bottom:970.320000pt;}
.y7e{bottom:974.320000pt;}
.y53{bottom:982.000000pt;}
.y11d{bottom:982.240000pt;}
.y2c{bottom:982.320000pt;}
.y7d{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.he{height:23.680000pt;}
.h16{height:23.706667pt;}
.h2{height:28.356562pt;}
.h6{height:33.059063pt;}
.h12{height:33.476563pt;}
.h1a{height:33.920000pt;}
.h3{height:34.804688pt;}
.hf{height:37.032187pt;}
.h15{height:39.200000pt;}
.h11{height:39.280000pt;}
.h1c{height:43.200000pt;}
.h10{height:43.280000pt;}
.h18{height:45.246562pt;}
.h7{height:46.499062pt;}
.h9{height:46.916562pt;}
.h5{height:50.954062pt;}
.h8{height:51.411562pt;}
.hc{height:53.309531pt;}
.h1d{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1b{height:72.186667pt;}
.h17{height:72.240000pt;}
.h19{height:82.560000pt;}
.h13{height:87.920000pt;}
.h14{height:103.520000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w10{width:32.080000pt;}
.wf{width:32.346667pt;}
.w11{width:37.600000pt;}
.w12{width:38.720000pt;}
.w5{width:52.346667pt;}
.w3{width:59.920000pt;}
.w7{width:63.920000pt;}
.wb{width:65.066667pt;}
.w1f{width:69.440000pt;}
.w1e{width:69.466667pt;}
.wc{width:72.080000pt;}
.we{width:76.800000pt;}
.wd{width:77.040000pt;}
.w20{width:77.600000pt;}
.w1a{width:78.960000pt;}
.w16{width:83.040000pt;}
.w19{width:85.040000pt;}
.w18{width:85.600000pt;}
.w17{width:85.706667pt;}
.w6{width:87.280000pt;}
.wa{width:88.000000pt;}
.w9{width:89.520000pt;}
.w4{width:96.560000pt;}
.w21{width:102.480000pt;}
.w14{width:121.226667pt;}
.w15{width:128.000000pt;}
.w8{width:134.666667pt;}
.w1b{width:140.186667pt;}
.w22{width:149.946667pt;}
.w1c{width:170.720000pt;}
.w1d{width:320.906667pt;}
.w13{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x9{left:78.799988pt;}
.x1b{left:80.400000pt;}
.x26{left:99.039988pt;}
.xb{left:125.680000pt;}
.x14{left:156.906655pt;}
.x2{left:180.266655pt;}
.x15{left:183.066667pt;}
.x21{left:211.706667pt;}
.x1c{left:221.306667pt;}
.x4{left:247.946667pt;}
.xc{left:261.066667pt;}
.x6{left:308.586667pt;}
.x16{left:311.786667pt;}
.xa{left:330.986655pt;}
.xd{left:351.306667pt;}
.x22{left:383.066667pt;}
.x1d{left:392.666667pt;}
.x17{left:395.466667pt;}
.x7{left:405.786667pt;}
.xe{left:439.946667pt;}
.x23{left:453.173333pt;}
.x8{left:458.773333pt;}
.x1e{left:462.773333pt;}
.x12{left:472.933333pt;}
.x18{left:481.893333pt;}
.xf{left:505.653333pt;}
.x24{left:523.253333pt;}
.x1f{left:532.853333pt;}
.x19{left:568.213333pt;}
.x10{left:578.373333pt;}
.x25{left:601.493333pt;}
.x20{left:611.093333pt;}
.x13{left:616.693333pt;}
.x1a{left:653.893333pt;}
.x11{left:656.053333pt;}
.x3{left:704.053322pt;}
}




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