
    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_4197fcb5a6fad8c19f31b597.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e72768c5ddb373b89885b76d.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_5a0d67cd58859cc5749748e9.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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_73e69e5c8a03d152f5010bcb.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_99f7f4f387fd2e79f2c34b6f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bb902ea18836e424a0b0574c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.920410;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740234;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_24c41f1386f668f5d943379e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.206400px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:16.506720px;}
.lsb{letter-spacing:46.026720px;}
.ls8{letter-spacing:114.570720px;}
.ls2{letter-spacing:137.466720px;}
.ls1{letter-spacing:161.370720px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.733600px;}
.ws1{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.860000px;}
.ws5{word-spacing:0.000000px;}
.ws6{word-spacing:84.582960px;}
._d{margin-left:-6.894480px;}
._e{margin-left:-3.841920px;}
._c{margin-left:-2.185920px;}
._b{margin-left:-1.074240px;}
._4{width:1.254960px;}
._f{width:3.053760px;}
._10{width:4.742880px;}
._11{width:6.035760px;}
._14{width:7.470000px;}
._22{width:8.511120px;}
._3{width:9.540000px;}
._1b{width:10.901520px;}
._1{width:12.420000px;}
._1a{width:13.447440px;}
._19{width:16.613280px;}
._13{width:18.167040px;}
._12{width:19.541520px;}
._23{width:21.214800px;}
._24{width:22.350240px;}
._1f{width:24.322320px;}
._1e{width:25.517520px;}
._28{width:26.712720px;}
._2e{width:27.788400px;}
._27{width:28.892880px;}
._1c{width:30.238560px;}
._1d{width:31.314240px;}
._20{width:32.628960px;}
._15{width:33.824160px;}
._16{width:34.899840px;}
._17{width:36.573120px;}
._18{width:37.768320px;}
._21{width:39.441600px;}
._29{width:40.577040px;}
._2a{width:42.728400px;}
._2c{width:44.521200px;}
._2d{width:46.012320px;}
._2f{width:47.392560px;}
._2b{width:48.525120px;}
._26{width:53.246160px;}
._25{width:54.859680px;}
._33{width:62.030880px;}
._31{width:63.226080px;}
._30{width:65.138400px;}
._32{width:76.134240px;}
._8{width:88.200000px;}
._6{width:97.380000px;}
._0{width:102.600000px;}
._9{width:108.180000px;}
._2{width:165.060000px;}
._5{width:183.960000px;}
._a{width:229.860000px;}
._7{width:296.820000px;}
.fca{color:transparent;}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(24,23,23);}
.fc9{color:rgb(89,89,89);}
.fc8{color:rgb(64,64,64);}
.fc7{color:rgb(13,13,13);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(177,84,7);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:2.880000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.400000px;}
.y24{bottom:5.760000px;}
.ya9{bottom:5.940000px;}
.yd9{bottom:5.985000px;}
.y10{bottom:7.020000px;}
.y18{bottom:9.000000px;}
.yde{bottom:10.980000px;}
.yd3{bottom:11.340000px;}
.y8{bottom:14.580000px;}
.yd{bottom:15.300000px;}
.yd5{bottom:15.660000px;}
.yda{bottom:15.885000px;}
.y81{bottom:16.200000px;}
.y7d{bottom:16.380000px;}
.y7f{bottom:16.560000px;}
.y7b{bottom:16.740000px;}
.ya4{bottom:16.920000px;}
.y79{bottom:17.640000px;}
.yd1{bottom:17.820000px;}
.y86{bottom:20.520000px;}
.ye1{bottom:20.700000px;}
.y23{bottom:25.560000px;}
.ya8{bottom:25.740000px;}
.y83{bottom:25.770000px;}
.yd8{bottom:25.785000px;}
.y11{bottom:36.180000px;}
.y44{bottom:36.720000px;}
.y7{bottom:38.880000px;}
.yc{bottom:44.100000px;}
.ydc{bottom:45.360000px;}
.y22{bottom:45.540000px;}
.yf{bottom:51.840000px;}
.y43{bottom:52.380000px;}
.y6{bottom:63.180000px;}
.y21{bottom:65.340000px;}
.yb{bottom:73.080000px;}
.y101{bottom:79.560000px;}
.ycf{bottom:81.180000px;}
.y5{bottom:84.450000px;}
.y20{bottom:85.140000px;}
.y12b{bottom:89.280000px;}
.ya{bottom:92.370000px;}
.y41{bottom:94.320000px;}
.y154{bottom:95.580000px;}
.y9e{bottom:96.300000px;}
.y100{bottom:99.360000px;}
.yce{bottom:100.980000px;}
.ya1{bottom:103.890000px;}
.y1f{bottom:104.940000px;}
.y176{bottom:106.380000px;}
.y4{bottom:106.950000px;}
.y12a{bottom:109.260000px;}
.y9{bottom:110.190000px;}
.ya2{bottom:112.890000px;}
.y40{bottom:114.120000px;}
.y153{bottom:115.380000px;}
.y9d{bottom:116.100000px;}
.yff{bottom:119.160000px;}
.ycd{bottom:120.780000px;}
.y1e{bottom:124.740000px;}
.y175{bottom:126.180000px;}
.y3{bottom:126.750000px;}
.y129{bottom:129.060000px;}
.y3f{bottom:133.920000px;}
.y152{bottom:135.180000px;}
.y9c{bottom:135.900000px;}
.yfe{bottom:139.140000px;}
.ycc{bottom:140.580000px;}
.y1d{bottom:144.720000px;}
.y174{bottom:145.980000px;}
.y128{bottom:148.860000px;}
.y3e{bottom:153.930000px;}
.y151{bottom:155.010000px;}
.y9b{bottom:155.730000px;}
.yfd{bottom:158.970000px;}
.ycb{bottom:160.410000px;}
.y1c{bottom:164.520000px;}
.ya0{bottom:165.780000px;}
.y173{bottom:165.990000px;}
.y127{bottom:168.690000px;}
.ya3{bottom:169.170000px;}
.y3d{bottom:173.730000px;}
.y150{bottom:174.990000px;}
.y9a{bottom:175.710000px;}
.yfc{bottom:178.770000px;}
.yca{bottom:180.390000px;}
.y1b{bottom:184.320000px;}
.y172{bottom:185.790000px;}
.y126{bottom:188.490000px;}
.y3c{bottom:193.530000px;}
.y14f{bottom:194.790000px;}
.y99{bottom:195.510000px;}
.yfb{bottom:198.570000px;}
.yc9{bottom:200.190000px;}
.y1a{bottom:204.120000px;}
.y171{bottom:205.590000px;}
.y125{bottom:208.470000px;}
.y3b{bottom:213.330000px;}
.y14e{bottom:214.590000px;}
.y98{bottom:215.310000px;}
.yfa{bottom:218.370000px;}
.yc8{bottom:219.990000px;}
.y170{bottom:225.390000px;}
.y124{bottom:228.270000px;}
.y3a{bottom:233.130000px;}
.y14d{bottom:234.390000px;}
.y97{bottom:235.110000px;}
.yf9{bottom:238.350000px;}
.yc7{bottom:239.790000px;}
.y16f{bottom:245.190000px;}
.y123{bottom:248.070000px;}
.y39{bottom:253.110000px;}
.y14c{bottom:254.190000px;}
.y96{bottom:254.910000px;}
.yf8{bottom:258.150000px;}
.yc6{bottom:259.590000px;}
.y16e{bottom:265.170000px;}
.y122{bottom:267.870000px;}
.y38{bottom:272.910000px;}
.y14b{bottom:274.170000px;}
.y95{bottom:274.890000px;}
.y70{bottom:275.970000px;}
.yf7{bottom:277.950000px;}
.yc5{bottom:279.570000px;}
.y16d{bottom:284.970000px;}
.y121{bottom:287.670000px;}
.y37{bottom:292.710000px;}
.y14a{bottom:293.970000px;}
.y94{bottom:294.690000px;}
.y6f{bottom:295.770000px;}
.yf6{bottom:297.750000px;}
.yc4{bottom:299.370000px;}
.y16c{bottom:304.770000px;}
.y120{bottom:307.650000px;}
.y36{bottom:312.510000px;}
.y149{bottom:313.770000px;}
.y93{bottom:314.490000px;}
.y6e{bottom:315.570000px;}
.yf5{bottom:317.550000px;}
.yc3{bottom:319.170000px;}
.y16b{bottom:324.570000px;}
.y11f{bottom:327.450000px;}
.y35{bottom:332.310000px;}
.y148{bottom:333.570000px;}
.y92{bottom:334.290000px;}
.y6d{bottom:335.370000px;}
.yf4{bottom:337.530000px;}
.yc2{bottom:338.970000px;}
.y16a{bottom:344.370000px;}
.y11e{bottom:347.250000px;}
.y34{bottom:352.290000px;}
.y147{bottom:353.370000px;}
.y91{bottom:354.090000px;}
.y6c{bottom:355.350000px;}
.yf3{bottom:357.330000px;}
.yc1{bottom:358.770000px;}
.y169{bottom:364.350000px;}
.y11d{bottom:367.050000px;}
.y33{bottom:372.090000px;}
.y146{bottom:373.350000px;}
.y90{bottom:374.070000px;}
.y6b{bottom:375.150000px;}
.yf2{bottom:377.130000px;}
.yc0{bottom:378.750000px;}
.y168{bottom:384.150000px;}
.y11c{bottom:386.850000px;}
.y32{bottom:391.890000px;}
.y145{bottom:393.150000px;}
.y8f{bottom:393.870000px;}
.y6a{bottom:394.950000px;}
.yf1{bottom:396.930000px;}
.ybf{bottom:398.550000px;}
.y167{bottom:403.995000px;}
.y11b{bottom:406.875000px;}
.y31{bottom:411.735000px;}
.y144{bottom:412.995000px;}
.y8e{bottom:413.715000px;}
.y69{bottom:414.795000px;}
.yf0{bottom:416.775000px;}
.ybe{bottom:418.395000px;}
.y166{bottom:423.795000px;}
.y11a{bottom:426.675000px;}
.y30{bottom:431.535000px;}
.y143{bottom:432.795000px;}
.y8d{bottom:433.515000px;}
.y68{bottom:434.595000px;}
.yef{bottom:436.755000px;}
.ybd{bottom:438.195000px;}
.y165{bottom:443.595000px;}
.y119{bottom:446.475000px;}
.y2f{bottom:451.515000px;}
.y142{bottom:452.595000px;}
.y8c{bottom:453.315000px;}
.y67{bottom:454.575000px;}
.yee{bottom:456.555000px;}
.ybc{bottom:457.995000px;}
.y164{bottom:463.575000px;}
.y118{bottom:466.275000px;}
.y2e{bottom:471.315000px;}
.y141{bottom:472.575000px;}
.y8b{bottom:473.295000px;}
.y66{bottom:474.375000px;}
.yed{bottom:476.355000px;}
.ybb{bottom:477.975000px;}
.y163{bottom:483.375000px;}
.y117{bottom:486.075000px;}
.y2d{bottom:491.115000px;}
.y140{bottom:492.375000px;}
.y8a{bottom:493.095000px;}
.y65{bottom:494.175000px;}
.yec{bottom:496.155000px;}
.yba{bottom:497.775000px;}
.y162{bottom:503.175000px;}
.y116{bottom:506.055000px;}
.y2c{bottom:510.915000px;}
.y13f{bottom:512.175000px;}
.y89{bottom:512.895000px;}
.y64{bottom:513.975000px;}
.yeb{bottom:515.955000px;}
.yb9{bottom:517.575000px;}
.y161{bottom:522.975000px;}
.y115{bottom:525.855000px;}
.y2b{bottom:530.715000px;}
.y13e{bottom:531.975000px;}
.y88{bottom:532.695000px;}
.y63{bottom:533.775000px;}
.yea{bottom:535.935000px;}
.yb8{bottom:537.375000px;}
.y160{bottom:542.775000px;}
.y114{bottom:545.655000px;}
.y2a{bottom:550.695000px;}
.y13d{bottom:551.775000px;}
.y87{bottom:552.495000px;}
.y62{bottom:553.755000px;}
.ye9{bottom:555.735000px;}
.yb7{bottom:557.175000px;}
.y15f{bottom:562.755000px;}
.y113{bottom:565.455000px;}
.y85{bottom:567.435000px;}
.y29{bottom:570.495000px;}
.y13c{bottom:571.755000px;}
.y61{bottom:573.555000px;}
.ye8{bottom:575.535000px;}
.yb6{bottom:577.155000px;}
.y15e{bottom:582.555000px;}
.y112{bottom:585.255000px;}
.y28{bottom:590.295000px;}
.y13b{bottom:591.555000px;}
.y60{bottom:593.355000px;}
.ye7{bottom:595.335000px;}
.yb5{bottom:596.955000px;}
.y15d{bottom:602.355000px;}
.y84{bottom:602.715000px;}
.y111{bottom:605.235000px;}
.y27{bottom:610.095000px;}
.y13a{bottom:611.355000px;}
.y5f{bottom:613.155000px;}
.ye6{bottom:615.135000px;}
.yb4{bottom:616.755000px;}
.y15c{bottom:622.155000px;}
.y110{bottom:625.035000px;}
.y26{bottom:629.895000px;}
.y139{bottom:631.155000px;}
.y5e{bottom:632.955000px;}
.y82{bottom:633.855000px;}
.ye5{bottom:635.115000px;}
.yb3{bottom:636.555000px;}
.y15b{bottom:641.955000px;}
.y10f{bottom:644.835000px;}
.y138{bottom:650.985000px;}
.y5d{bottom:652.965000px;}
.ye4{bottom:654.945000px;}
.yb2{bottom:656.385000px;}
.y15a{bottom:661.965000px;}
.y25{bottom:664.665000px;}
.y137{bottom:670.965000px;}
.y80{bottom:674.385000px;}
.ye3{bottom:674.745000px;}
.yb1{bottom:676.365000px;}
.y5c{bottom:681.765000px;}
.y10e{bottom:684.465000px;}
.y19{bottom:685.185000px;}
.y136{bottom:690.765000px;}
.ye2{bottom:694.545000px;}
.yb0{bottom:696.165000px;}
.y5b{bottom:701.565000px;}
.y10d{bottom:704.445000px;}
.y7e{bottom:705.525000px;}
.ye0{bottom:709.305000px;}
.y135{bottom:710.565000px;}
.yaf{bottom:710.925000px;}
.y5a{bottom:721.365000px;}
.y10c{bottom:724.245000px;}
.y134{bottom:730.365000px;}
.y7c{bottom:736.845000px;}
.y10b{bottom:739.005000px;}
.y59{bottom:741.165000px;}
.ydf{bottom:744.765000px;}
.yae{bottom:746.385000px;}
.y133{bottom:750.165000px;}
.y58{bottom:761.145000px;}
.y7a{bottom:767.985000px;}
.y132{bottom:770.145000px;}
.y10a{bottom:774.465000px;}
.y57{bottom:780.945000px;}
.yad{bottom:786.705000px;}
.y131{bottom:789.945000px;}
.y78{bottom:799.485000px;}
.y56{bottom:800.745000px;}
.ydd{bottom:805.065000px;}
.y130{bottom:809.745000px;}
.y109{bottom:814.785000px;}
.y55{bottom:820.545000px;}
.yac{bottom:827.205000px;}
.y12f{bottom:829.545000px;}
.ydb{bottom:836.205000px;}
.y77{bottom:837.825000px;}
.y54{bottom:840.345000px;}
.y12e{bottom:849.345000px;}
.y108{bottom:855.285000px;}
.y76{bottom:857.625000px;}
.y53{bottom:860.325000px;}
.yab{bottom:867.525000px;}
.y12d{bottom:869.325000px;}
.y75{bottom:877.425000px;}
.y52{bottom:880.125000px;}
.y12c{bottom:889.125000px;}
.y107{bottom:895.605000px;}
.yd7{bottom:896.325000px;}
.y74{bottom:897.225000px;}
.y159{bottom:899.970000px;}
.y17{bottom:904.110000px;}
.yaa{bottom:908.070000px;}
.y51{bottom:908.970000px;}
.y73{bottom:917.250000px;}
.y158{bottom:919.770000px;}
.y50{bottom:928.770000px;}
.y16{bottom:933.630000px;}
.y106{bottom:936.150000px;}
.yd6{bottom:936.870000px;}
.y72{bottom:937.050000px;}
.y157{bottom:939.570000px;}
.ya7{bottom:948.390000px;}
.y4f{bottom:948.570000px;}
.y15{bottom:953.430000px;}
.y71{bottom:953.610000px;}
.y9f{bottom:953.820000px;}
.y156{bottom:959.550000px;}
.y4e{bottom:968.550000px;}
.y14{bottom:973.770000px;}
.y105{bottom:976.470000px;}
.y155{bottom:979.350000px;}
.y4d{bottom:988.350000px;}
.ya6{bottom:988.890000px;}
.y13{bottom:995.190000px;}
.yd4{bottom:997.170000px;}
.y104{bottom:1007.970000px;}
.y4c{bottom:1008.150000px;}
.y12{bottom:1018.590000px;}
.y4b{bottom:1027.950000px;}
.ya5{bottom:1029.390000px;}
.yd2{bottom:1037.490000px;}
.ye{bottom:1045.410000px;}
.y4a{bottom:1047.750000px;}
.y103{bottom:1048.470000px;}
.y1{bottom:1067.730000px;}
.yd0{bottom:1068.990000px;}
.y49{bottom:1087.530000px;}
.y102{bottom:1088.790000px;}
.y48{bottom:1107.330000px;}
.y47{bottom:1127.130000px;}
.y46{bottom:1146.960000px;}
.y45{bottom:1166.940000px;}
.y42{bottom:1193.400000px;}
.h3{height:2.105156px;}
.h10{height:19.800000px;}
.ha{height:22.320000px;}
.he{height:23.040000px;}
.h16{height:30.240000px;}
.h14{height:30.420000px;}
.h15{height:30.600000px;}
.h13{height:30.780000px;}
.h12{height:31.680000px;}
.h1c{height:31.860000px;}
.h18{height:34.560000px;}
.h1f{height:34.740000px;}
.h1a{height:39.600000px;}
.h1b{height:39.780000px;}
.h17{height:39.816000px;}
.h4{height:42.164648px;}
.h11{height:43.681992px;}
.hc{height:46.736719px;}
.h8{height:48.410156px;}
.h5{height:50.800781px;}
.h6{height:53.573906px;}
.hb{height:59.383125px;}
.h1e{height:59.400000px;}
.h1d{height:59.580000px;}
.h7{height:64.546875px;}
.h9{height:65.884219px;}
.hd{height:85.847344px;}
.h2{height:140.796000px;}
.hf{height:218.190000px;}
.h19{height:227.160000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:22.680000px;}
.wb{width:22.860000px;}
.w11{width:39.600000px;}
.wd{width:39.636000px;}
.w6{width:52.776000px;}
.w4{width:158.970000px;}
.w2{width:172.830000px;}
.w8{width:192.090000px;}
.w10{width:299.775000px;}
.wc{width:299.910000px;}
.w12{width:299.955000px;}
.we{width:365.400000px;}
.w3{width:464.865000px;}
.w9{width:585.690000px;}
.w7{width:731.670000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x4{left:38.340000px;}
.x1{left:48.240000px;}
.xb{left:53.999987px;}
.xd{left:57.780000px;}
.x1b{left:59.040000px;}
.xa{left:62.100000px;}
.x1c{left:78.480000px;}
.x6{left:80.865000px;}
.x19{left:105.840000px;}
.xc{left:107.496000px;}
.x1a{left:117.075000px;}
.x7{left:133.605000px;}
.x2{left:160.050000px;}
.x18{left:202.605000px;}
.x10{left:208.829987px;}
.x3{left:221.070000px;}
.x17{left:227.340000px;}
.x5{left:248.295000px;}
.xe{left:249.870000px;}
.x1d{left:379.155000px;}
.xf{left:473.504987px;}
.x15{left:497.985000px;}
.x12{left:500.864987px;}
.x1e{left:527.504987px;}
.x13{left:629.609987px;}
.x14{left:656.249987px;}
.x8{left:685.950000px;}
.x16{left:798.630000px;}
.x11{left:840.239987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:14.672640pt;}
.lsb{letter-spacing:40.912640pt;}
.ls8{letter-spacing:101.840640pt;}
.ls2{letter-spacing:122.192640pt;}
.ls1{letter-spacing:143.440640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.096533pt;}
.ws1{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.320000pt;}
.ws5{word-spacing:0.000000pt;}
.ws6{word-spacing:75.184853pt;}
._d{margin-left:-6.128427pt;}
._e{margin-left:-3.415040pt;}
._c{margin-left:-1.943040pt;}
._b{margin-left:-0.954880pt;}
._4{width:1.115520pt;}
._f{width:2.714453pt;}
._10{width:4.215893pt;}
._11{width:5.365120pt;}
._14{width:6.640000pt;}
._22{width:7.565440pt;}
._3{width:8.480000pt;}
._1b{width:9.690240pt;}
._1{width:11.040000pt;}
._1a{width:11.953280pt;}
._19{width:14.767360pt;}
._13{width:16.148480pt;}
._12{width:17.370240pt;}
._23{width:18.857600pt;}
._24{width:19.866880pt;}
._1f{width:21.619840pt;}
._1e{width:22.682240pt;}
._28{width:23.744640pt;}
._2e{width:24.700800pt;}
._27{width:25.682560pt;}
._1c{width:26.878720pt;}
._1d{width:27.834880pt;}
._20{width:29.003520pt;}
._15{width:30.065920pt;}
._16{width:31.022080pt;}
._17{width:32.509440pt;}
._18{width:33.571840pt;}
._21{width:35.059200pt;}
._29{width:36.068480pt;}
._2a{width:37.980800pt;}
._2c{width:39.574400pt;}
._2d{width:40.899840pt;}
._2f{width:42.126720pt;}
._2b{width:43.133440pt;}
._26{width:47.329920pt;}
._25{width:48.764160pt;}
._33{width:55.138560pt;}
._31{width:56.200960pt;}
._30{width:57.900800pt;}
._32{width:67.674880pt;}
._8{width:78.400000pt;}
._6{width:86.560000pt;}
._0{width:91.200000pt;}
._9{width:96.160000pt;}
._2{width:146.720000pt;}
._5{width:163.520000pt;}
._a{width:204.320000pt;}
._7{width:263.840000pt;}
.fs0{font-size:2.560000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.800000pt;}
.y24{bottom:5.120000pt;}
.ya9{bottom:5.280000pt;}
.yd9{bottom:5.320000pt;}
.y10{bottom:6.240000pt;}
.y18{bottom:8.000000pt;}
.yde{bottom:9.760000pt;}
.yd3{bottom:10.080000pt;}
.y8{bottom:12.960000pt;}
.yd{bottom:13.600000pt;}
.yd5{bottom:13.920000pt;}
.yda{bottom:14.120000pt;}
.y81{bottom:14.400000pt;}
.y7d{bottom:14.560000pt;}
.y7f{bottom:14.720000pt;}
.y7b{bottom:14.880000pt;}
.ya4{bottom:15.040000pt;}
.y79{bottom:15.680000pt;}
.yd1{bottom:15.840000pt;}
.y86{bottom:18.240000pt;}
.ye1{bottom:18.400000pt;}
.y23{bottom:22.720000pt;}
.ya8{bottom:22.880000pt;}
.y83{bottom:22.906667pt;}
.yd8{bottom:22.920000pt;}
.y11{bottom:32.160000pt;}
.y44{bottom:32.640000pt;}
.y7{bottom:34.560000pt;}
.yc{bottom:39.200000pt;}
.ydc{bottom:40.320000pt;}
.y22{bottom:40.480000pt;}
.yf{bottom:46.080000pt;}
.y43{bottom:46.560000pt;}
.y6{bottom:56.160000pt;}
.y21{bottom:58.080000pt;}
.yb{bottom:64.960000pt;}
.y101{bottom:70.720000pt;}
.ycf{bottom:72.160000pt;}
.y5{bottom:75.066667pt;}
.y20{bottom:75.680000pt;}
.y12b{bottom:79.360000pt;}
.ya{bottom:82.106667pt;}
.y41{bottom:83.840000pt;}
.y154{bottom:84.960000pt;}
.y9e{bottom:85.600000pt;}
.y100{bottom:88.320000pt;}
.yce{bottom:89.760000pt;}
.ya1{bottom:92.346667pt;}
.y1f{bottom:93.280000pt;}
.y176{bottom:94.560000pt;}
.y4{bottom:95.066667pt;}
.y12a{bottom:97.120000pt;}
.y9{bottom:97.946667pt;}
.ya2{bottom:100.346667pt;}
.y40{bottom:101.440000pt;}
.y153{bottom:102.560000pt;}
.y9d{bottom:103.200000pt;}
.yff{bottom:105.920000pt;}
.ycd{bottom:107.360000pt;}
.y1e{bottom:110.880000pt;}
.y175{bottom:112.160000pt;}
.y3{bottom:112.666667pt;}
.y129{bottom:114.720000pt;}
.y3f{bottom:119.040000pt;}
.y152{bottom:120.160000pt;}
.y9c{bottom:120.800000pt;}
.yfe{bottom:123.680000pt;}
.ycc{bottom:124.960000pt;}
.y1d{bottom:128.640000pt;}
.y174{bottom:129.760000pt;}
.y128{bottom:132.320000pt;}
.y3e{bottom:136.826667pt;}
.y151{bottom:137.786667pt;}
.y9b{bottom:138.426667pt;}
.yfd{bottom:141.306667pt;}
.ycb{bottom:142.586667pt;}
.y1c{bottom:146.240000pt;}
.ya0{bottom:147.360000pt;}
.y173{bottom:147.546667pt;}
.y127{bottom:149.946667pt;}
.ya3{bottom:150.373333pt;}
.y3d{bottom:154.426667pt;}
.y150{bottom:155.546667pt;}
.y9a{bottom:156.186667pt;}
.yfc{bottom:158.906667pt;}
.yca{bottom:160.346667pt;}
.y1b{bottom:163.840000pt;}
.y172{bottom:165.146667pt;}
.y126{bottom:167.546667pt;}
.y3c{bottom:172.026667pt;}
.y14f{bottom:173.146667pt;}
.y99{bottom:173.786667pt;}
.yfb{bottom:176.506667pt;}
.yc9{bottom:177.946667pt;}
.y1a{bottom:181.440000pt;}
.y171{bottom:182.746667pt;}
.y125{bottom:185.306667pt;}
.y3b{bottom:189.626667pt;}
.y14e{bottom:190.746667pt;}
.y98{bottom:191.386667pt;}
.yfa{bottom:194.106667pt;}
.yc8{bottom:195.546667pt;}
.y170{bottom:200.346667pt;}
.y124{bottom:202.906667pt;}
.y3a{bottom:207.226667pt;}
.y14d{bottom:208.346667pt;}
.y97{bottom:208.986667pt;}
.yf9{bottom:211.866667pt;}
.yc7{bottom:213.146667pt;}
.y16f{bottom:217.946667pt;}
.y123{bottom:220.506667pt;}
.y39{bottom:224.986667pt;}
.y14c{bottom:225.946667pt;}
.y96{bottom:226.586667pt;}
.yf8{bottom:229.466667pt;}
.yc6{bottom:230.746667pt;}
.y16e{bottom:235.706667pt;}
.y122{bottom:238.106667pt;}
.y38{bottom:242.586667pt;}
.y14b{bottom:243.706667pt;}
.y95{bottom:244.346667pt;}
.y70{bottom:245.306667pt;}
.yf7{bottom:247.066667pt;}
.yc5{bottom:248.506667pt;}
.y16d{bottom:253.306667pt;}
.y121{bottom:255.706667pt;}
.y37{bottom:260.186667pt;}
.y14a{bottom:261.306667pt;}
.y94{bottom:261.946667pt;}
.y6f{bottom:262.906667pt;}
.yf6{bottom:264.666667pt;}
.yc4{bottom:266.106667pt;}
.y16c{bottom:270.906667pt;}
.y120{bottom:273.466667pt;}
.y36{bottom:277.786667pt;}
.y149{bottom:278.906667pt;}
.y93{bottom:279.546667pt;}
.y6e{bottom:280.506667pt;}
.yf5{bottom:282.266667pt;}
.yc3{bottom:283.706667pt;}
.y16b{bottom:288.506667pt;}
.y11f{bottom:291.066667pt;}
.y35{bottom:295.386667pt;}
.y148{bottom:296.506667pt;}
.y92{bottom:297.146667pt;}
.y6d{bottom:298.106667pt;}
.yf4{bottom:300.026667pt;}
.yc2{bottom:301.306667pt;}
.y16a{bottom:306.106667pt;}
.y11e{bottom:308.666667pt;}
.y34{bottom:313.146667pt;}
.y147{bottom:314.106667pt;}
.y91{bottom:314.746667pt;}
.y6c{bottom:315.866667pt;}
.yf3{bottom:317.626667pt;}
.yc1{bottom:318.906667pt;}
.y169{bottom:323.866667pt;}
.y11d{bottom:326.266667pt;}
.y33{bottom:330.746667pt;}
.y146{bottom:331.866667pt;}
.y90{bottom:332.506667pt;}
.y6b{bottom:333.466667pt;}
.yf2{bottom:335.226667pt;}
.yc0{bottom:336.666667pt;}
.y168{bottom:341.466667pt;}
.y11c{bottom:343.866667pt;}
.y32{bottom:348.346667pt;}
.y145{bottom:349.466667pt;}
.y8f{bottom:350.106667pt;}
.y6a{bottom:351.066667pt;}
.yf1{bottom:352.826667pt;}
.ybf{bottom:354.266667pt;}
.y167{bottom:359.106667pt;}
.y11b{bottom:361.666667pt;}
.y31{bottom:365.986667pt;}
.y144{bottom:367.106667pt;}
.y8e{bottom:367.746667pt;}
.y69{bottom:368.706667pt;}
.yf0{bottom:370.466667pt;}
.ybe{bottom:371.906667pt;}
.y166{bottom:376.706667pt;}
.y11a{bottom:379.266667pt;}
.y30{bottom:383.586667pt;}
.y143{bottom:384.706667pt;}
.y8d{bottom:385.346667pt;}
.y68{bottom:386.306667pt;}
.yef{bottom:388.226667pt;}
.ybd{bottom:389.506667pt;}
.y165{bottom:394.306667pt;}
.y119{bottom:396.866667pt;}
.y2f{bottom:401.346667pt;}
.y142{bottom:402.306667pt;}
.y8c{bottom:402.946667pt;}
.y67{bottom:404.066667pt;}
.yee{bottom:405.826667pt;}
.ybc{bottom:407.106667pt;}
.y164{bottom:412.066667pt;}
.y118{bottom:414.466667pt;}
.y2e{bottom:418.946667pt;}
.y141{bottom:420.066667pt;}
.y8b{bottom:420.706667pt;}
.y66{bottom:421.666667pt;}
.yed{bottom:423.426667pt;}
.ybb{bottom:424.866667pt;}
.y163{bottom:429.666667pt;}
.y117{bottom:432.066667pt;}
.y2d{bottom:436.546667pt;}
.y140{bottom:437.666667pt;}
.y8a{bottom:438.306667pt;}
.y65{bottom:439.266667pt;}
.yec{bottom:441.026667pt;}
.yba{bottom:442.466667pt;}
.y162{bottom:447.266667pt;}
.y116{bottom:449.826667pt;}
.y2c{bottom:454.146667pt;}
.y13f{bottom:455.266667pt;}
.y89{bottom:455.906667pt;}
.y64{bottom:456.866667pt;}
.yeb{bottom:458.626667pt;}
.yb9{bottom:460.066667pt;}
.y161{bottom:464.866667pt;}
.y115{bottom:467.426667pt;}
.y2b{bottom:471.746667pt;}
.y13e{bottom:472.866667pt;}
.y88{bottom:473.506667pt;}
.y63{bottom:474.466667pt;}
.yea{bottom:476.386667pt;}
.yb8{bottom:477.666667pt;}
.y160{bottom:482.466667pt;}
.y114{bottom:485.026667pt;}
.y2a{bottom:489.506667pt;}
.y13d{bottom:490.466667pt;}
.y87{bottom:491.106667pt;}
.y62{bottom:492.226667pt;}
.ye9{bottom:493.986667pt;}
.yb7{bottom:495.266667pt;}
.y15f{bottom:500.226667pt;}
.y113{bottom:502.626667pt;}
.y85{bottom:504.386667pt;}
.y29{bottom:507.106667pt;}
.y13c{bottom:508.226667pt;}
.y61{bottom:509.826667pt;}
.ye8{bottom:511.586667pt;}
.yb6{bottom:513.026667pt;}
.y15e{bottom:517.826667pt;}
.y112{bottom:520.226667pt;}
.y28{bottom:524.706667pt;}
.y13b{bottom:525.826667pt;}
.y60{bottom:527.426667pt;}
.ye7{bottom:529.186667pt;}
.yb5{bottom:530.626667pt;}
.y15d{bottom:535.426667pt;}
.y84{bottom:535.746667pt;}
.y111{bottom:537.986667pt;}
.y27{bottom:542.306667pt;}
.y13a{bottom:543.426667pt;}
.y5f{bottom:545.026667pt;}
.ye6{bottom:546.786667pt;}
.yb4{bottom:548.226667pt;}
.y15c{bottom:553.026667pt;}
.y110{bottom:555.586667pt;}
.y26{bottom:559.906667pt;}
.y139{bottom:561.026667pt;}
.y5e{bottom:562.626667pt;}
.y82{bottom:563.426667pt;}
.ye5{bottom:564.546667pt;}
.yb3{bottom:565.826667pt;}
.y15b{bottom:570.626667pt;}
.y10f{bottom:573.186667pt;}
.y138{bottom:578.653333pt;}
.y5d{bottom:580.413333pt;}
.ye4{bottom:582.173333pt;}
.yb2{bottom:583.453333pt;}
.y15a{bottom:588.413333pt;}
.y25{bottom:590.813333pt;}
.y137{bottom:596.413333pt;}
.y80{bottom:599.453333pt;}
.ye3{bottom:599.773333pt;}
.yb1{bottom:601.213333pt;}
.y5c{bottom:606.013333pt;}
.y10e{bottom:608.413333pt;}
.y19{bottom:609.053333pt;}
.y136{bottom:614.013333pt;}
.ye2{bottom:617.373333pt;}
.yb0{bottom:618.813333pt;}
.y5b{bottom:623.613333pt;}
.y10d{bottom:626.173333pt;}
.y7e{bottom:627.133333pt;}
.ye0{bottom:630.493333pt;}
.y135{bottom:631.613333pt;}
.yaf{bottom:631.933333pt;}
.y5a{bottom:641.213333pt;}
.y10c{bottom:643.773333pt;}
.y134{bottom:649.213333pt;}
.y7c{bottom:654.973333pt;}
.y10b{bottom:656.893333pt;}
.y59{bottom:658.813333pt;}
.ydf{bottom:662.013333pt;}
.yae{bottom:663.453333pt;}
.y133{bottom:666.813333pt;}
.y58{bottom:676.573333pt;}
.y7a{bottom:682.653333pt;}
.y132{bottom:684.573333pt;}
.y10a{bottom:688.413333pt;}
.y57{bottom:694.173333pt;}
.yad{bottom:699.293333pt;}
.y131{bottom:702.173333pt;}
.y78{bottom:710.653333pt;}
.y56{bottom:711.773333pt;}
.ydd{bottom:715.613333pt;}
.y130{bottom:719.773333pt;}
.y109{bottom:724.253333pt;}
.y55{bottom:729.373333pt;}
.yac{bottom:735.293333pt;}
.y12f{bottom:737.373333pt;}
.ydb{bottom:743.293333pt;}
.y77{bottom:744.733333pt;}
.y54{bottom:746.973333pt;}
.y12e{bottom:754.973333pt;}
.y108{bottom:760.253333pt;}
.y76{bottom:762.333333pt;}
.y53{bottom:764.733333pt;}
.yab{bottom:771.133333pt;}
.y12d{bottom:772.733333pt;}
.y75{bottom:779.933333pt;}
.y52{bottom:782.333333pt;}
.y12c{bottom:790.333333pt;}
.y107{bottom:796.093333pt;}
.yd7{bottom:796.733333pt;}
.y74{bottom:797.533333pt;}
.y159{bottom:799.973333pt;}
.y17{bottom:803.653333pt;}
.yaa{bottom:807.173333pt;}
.y51{bottom:807.973333pt;}
.y73{bottom:815.333333pt;}
.y158{bottom:817.573333pt;}
.y50{bottom:825.573333pt;}
.y16{bottom:829.893333pt;}
.y106{bottom:832.133333pt;}
.yd6{bottom:832.773333pt;}
.y72{bottom:832.933333pt;}
.y157{bottom:835.173333pt;}
.ya7{bottom:843.013333pt;}
.y4f{bottom:843.173333pt;}
.y15{bottom:847.493333pt;}
.y71{bottom:847.653333pt;}
.y9f{bottom:847.840000pt;}
.y156{bottom:852.933333pt;}
.y4e{bottom:860.933333pt;}
.y14{bottom:865.573333pt;}
.y105{bottom:867.973333pt;}
.y155{bottom:870.533333pt;}
.y4d{bottom:878.533333pt;}
.ya6{bottom:879.013333pt;}
.y13{bottom:884.613333pt;}
.yd4{bottom:886.373333pt;}
.y104{bottom:895.973333pt;}
.y4c{bottom:896.133333pt;}
.y12{bottom:905.413333pt;}
.y4b{bottom:913.733333pt;}
.ya5{bottom:915.013333pt;}
.yd2{bottom:922.213333pt;}
.ye{bottom:929.253333pt;}
.y4a{bottom:931.333333pt;}
.y103{bottom:931.973333pt;}
.y1{bottom:949.093333pt;}
.yd0{bottom:950.213333pt;}
.y49{bottom:966.693333pt;}
.y102{bottom:967.813333pt;}
.y48{bottom:984.293333pt;}
.y47{bottom:1001.893333pt;}
.y46{bottom:1019.520000pt;}
.y45{bottom:1037.280000pt;}
.y42{bottom:1060.800000pt;}
.h3{height:1.871250pt;}
.h10{height:17.600000pt;}
.ha{height:19.840000pt;}
.he{height:20.480000pt;}
.h16{height:26.880000pt;}
.h14{height:27.040000pt;}
.h15{height:27.200000pt;}
.h13{height:27.360000pt;}
.h12{height:28.160000pt;}
.h1c{height:28.320000pt;}
.h18{height:30.720000pt;}
.h1f{height:30.880000pt;}
.h1a{height:35.200000pt;}
.h1b{height:35.360000pt;}
.h17{height:35.392000pt;}
.h4{height:37.479688pt;}
.h11{height:38.828437pt;}
.hc{height:41.543750pt;}
.h8{height:43.031250pt;}
.h5{height:45.156250pt;}
.h6{height:47.621250pt;}
.hb{height:52.785000pt;}
.h1e{height:52.800000pt;}
.h1d{height:52.960000pt;}
.h7{height:57.375000pt;}
.h9{height:58.563750pt;}
.hd{height:76.308750pt;}
.h2{height:125.152000pt;}
.hf{height:193.946667pt;}
.h19{height:201.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:20.160000pt;}
.wb{width:20.320000pt;}
.w11{width:35.200000pt;}
.wd{width:35.232000pt;}
.w6{width:46.912000pt;}
.w4{width:141.306667pt;}
.w2{width:153.626667pt;}
.w8{width:170.746667pt;}
.w10{width:266.466667pt;}
.wc{width:266.586667pt;}
.w12{width:266.626667pt;}
.we{width:324.800000pt;}
.w3{width:413.213333pt;}
.w9{width:520.613333pt;}
.w7{width:650.373333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x4{left:34.080000pt;}
.x1{left:42.880000pt;}
.xb{left:47.999988pt;}
.xd{left:51.360000pt;}
.x1b{left:52.480000pt;}
.xa{left:55.200000pt;}
.x1c{left:69.760000pt;}
.x6{left:71.880000pt;}
.x19{left:94.080000pt;}
.xc{left:95.552000pt;}
.x1a{left:104.066667pt;}
.x7{left:118.760000pt;}
.x2{left:142.266667pt;}
.x18{left:180.093333pt;}
.x10{left:185.626655pt;}
.x3{left:196.506667pt;}
.x17{left:202.080000pt;}
.x5{left:220.706667pt;}
.xe{left:222.106667pt;}
.x1d{left:337.026667pt;}
.xf{left:420.893322pt;}
.x15{left:442.653333pt;}
.x12{left:445.213322pt;}
.x1e{left:468.893322pt;}
.x13{left:559.653322pt;}
.x14{left:583.333322pt;}
.x8{left:609.733333pt;}
.x16{left:709.893333pt;}
.x11{left:746.879988pt;}
}




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