
    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_f926247651d85cb6aaa18f83.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a4220abae44165845a8b2290.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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bf5ce9fc3404459005383572.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3fe8269fdb57fbd96917516d.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_943a35efc4f7a2e2794deb29.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_c520f3a6d8147f7dbf127ff5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_cff67323662e0681c1a799da.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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_48d6af0b4a650293051bd4ce.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.976562;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;}
.ls10{letter-spacing:-1.260000px;}
.ls12{letter-spacing:-0.828000px;}
.ls11{letter-spacing:-0.774000px;}
.ls15{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.460200px;}
.ls14{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.073440px;}
.lse{letter-spacing:0.106560px;}
.ls17{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.536400px;}
.lsb{letter-spacing:12.420000px;}
.ls16{letter-spacing:21.546720px;}
.ls13{letter-spacing:46.002720px;}
.ls5{letter-spacing:65.466720px;}
.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;}
}
.ws1{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.238800px;}
.wsc{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.833200px;}
.ws6{word-spacing:-14.680200px;}
.wsb{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.166000px;}
.wsa{word-spacing:-14.112000px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._1c{margin-left:-8.197440px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._6{width:3.216480px;}
._2{width:4.245600px;}
._b{width:5.310960px;}
._9{width:6.864720px;}
._d{width:8.539680px;}
._a{width:10.510080px;}
._8{width:12.482160px;}
._7{width:13.565520px;}
._e{width:16.168800px;}
._13{width:17.513040px;}
._14{width:18.693840px;}
._c{width:19.772880px;}
._10{width:21.049920px;}
._f{width:22.290480px;}
._19{width:23.291280px;}
._12{width:24.322320px;}
._11{width:25.338240px;}
._18{width:28.139280px;}
._16{width:29.648640px;}
._15{width:31.187040px;}
._17{width:32.389920px;}
._21{width:41.107200px;}
._1d{width:59.162400px;}
._5{width:85.656000px;}
._20{width:91.843440px;}
._1f{width:127.229040px;}
._1e{width:128.484000px;}
._1b{width:204.976800px;}
._1a{width:205.992720px;}
._4{width:687.306000px;}
._3{width:748.236000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y79{bottom:3.240000px;}
.y15b{bottom:5.220000px;}
.yac{bottom:7.380000px;}
.yb0{bottom:7.425000px;}
.y8b{bottom:8.820000px;}
.y8e{bottom:9.000000px;}
.y160{bottom:9.540000px;}
.y8d{bottom:11.160000px;}
.yb3{bottom:11.340000px;}
.yab{bottom:11.520000px;}
.yaf{bottom:11.565000px;}
.y133{bottom:11.700000px;}
.ye2{bottom:11.880000px;}
.ye7{bottom:11.925000px;}
.y161{bottom:14.940000px;}
.y132{bottom:20.340000px;}
.y110{bottom:20.514000px;}
.ye1{bottom:20.520000px;}
.ye6{bottom:20.565000px;}
.y15f{bottom:26.820000px;}
.y89{bottom:29.160000px;}
.y88{bottom:32.400000px;}
.yb{bottom:36.720000px;}
.y10f{bottom:37.800000px;}
.y115{bottom:40.140000px;}
.ya{bottom:55.260000px;}
.y130{bottom:57.060000px;}
.y114{bottom:57.420000px;}
.y15d{bottom:60.480000px;}
.y10b{bottom:65.694000px;}
.y9{bottom:70.776000px;}
.y12f{bottom:74.160000px;}
.ydf{bottom:77.625000px;}
.y10a{bottom:82.974000px;}
.yde{bottom:94.905000px;}
.y78{bottom:103.176000px;}
.ydb{bottom:108.396000px;}
.ya9{bottom:109.656000px;}
.y12c{bottom:112.176000px;}
.y159{bottom:113.076000px;}
.y111{bottom:115.956000px;}
.y77{bottom:120.456000px;}
.y85{bottom:124.236000px;}
.yda{bottom:125.676000px;}
.ya8{bottom:126.936000px;}
.y40{bottom:127.116000px;}
.y12b{bottom:129.456000px;}
.y17c{bottom:129.816000px;}
.y158{bottom:130.176000px;}
.y109{bottom:131.796000px;}
.y76{bottom:137.736000px;}
.y84{bottom:141.516000px;}
.yd9{bottom:142.956000px;}
.ya7{bottom:144.216000px;}
.y3f{bottom:144.396000px;}
.y12a{bottom:146.736000px;}
.y157{bottom:147.456000px;}
.y75{bottom:155.010000px;}
.y83{bottom:158.790000px;}
.yd8{bottom:160.230000px;}
.ya6{bottom:161.490000px;}
.y3e{bottom:161.670000px;}
.y129{bottom:164.010000px;}
.y156{bottom:164.730000px;}
.y10e{bottom:167.790000px;}
.y74{bottom:172.290000px;}
.y82{bottom:175.890000px;}
.yd7{bottom:177.510000px;}
.y3d{bottom:178.770000px;}
.y128{bottom:181.290000px;}
.y155{bottom:182.010000px;}
.y73{bottom:189.570000px;}
.y81{bottom:193.170000px;}
.yd6{bottom:194.790000px;}
.ya5{bottom:195.870000px;}
.y3c{bottom:196.050000px;}
.y127{bottom:198.390000px;}
.y154{bottom:199.290000px;}
.y72{bottom:206.670000px;}
.y80{bottom:210.450000px;}
.yd5{bottom:211.890000px;}
.ya4{bottom:213.150000px;}
.y3b{bottom:213.330000px;}
.y126{bottom:215.670000px;}
.y153{bottom:216.390000px;}
.y10d{bottom:221.070000px;}
.y71{bottom:223.950000px;}
.y7f{bottom:227.730000px;}
.yd4{bottom:229.170000px;}
.ya3{bottom:230.430000px;}
.y3a{bottom:230.610000px;}
.y125{bottom:232.950000px;}
.y152{bottom:233.670000px;}
.y70{bottom:241.230000px;}
.y7e{bottom:245.010000px;}
.yd3{bottom:246.450000px;}
.ya2{bottom:247.710000px;}
.y39{bottom:247.890000px;}
.y124{bottom:250.230000px;}
.y151{bottom:250.950000px;}
.y10c{bottom:256.710000px;}
.y6f{bottom:258.510000px;}
.ya1{bottom:261.750000px;}
.y7d{bottom:262.290000px;}
.yd2{bottom:263.730000px;}
.y38{bottom:264.990000px;}
.y123{bottom:267.510000px;}
.y150{bottom:268.230000px;}
.y6e{bottom:275.790000px;}
.y7c{bottom:279.390000px;}
.yd1{bottom:281.010000px;}
.y37{bottom:282.270000px;}
.y122{bottom:284.790000px;}
.y14f{bottom:285.510000px;}
.y108{bottom:291.990000px;}
.y6d{bottom:292.890000px;}
.yd0{bottom:298.290000px;}
.y36{bottom:299.550000px;}
.y121{bottom:301.890000px;}
.y14e{bottom:302.790000px;}
.y7b{bottom:305.490000px;}
.y6c{bottom:310.170000px;}
.y107{bottom:313.230000px;}
.ycf{bottom:315.390000px;}
.y35{bottom:316.830000px;}
.y120{bottom:319.170000px;}
.y14d{bottom:319.890000px;}
.y6b{bottom:327.450000px;}
.y106{bottom:330.510000px;}
.yce{bottom:332.670000px;}
.y34{bottom:334.110000px;}
.y11f{bottom:336.495000px;}
.y14c{bottom:337.215000px;}
.y7a{bottom:339.195000px;}
.y6a{bottom:344.775000px;}
.y105{bottom:347.835000px;}
.ycd{bottom:349.995000px;}
.y33{bottom:351.435000px;}
.y11e{bottom:353.775000px;}
.y14b{bottom:354.495000px;}
.y69{bottom:362.055000px;}
.y104{bottom:364.935000px;}
.ycc{bottom:367.275000px;}
.y32{bottom:368.535000px;}
.y11d{bottom:371.055000px;}
.y14a{bottom:371.775000px;}
.y68{bottom:379.335000px;}
.y103{bottom:382.215000px;}
.ycb{bottom:384.555000px;}
.y31{bottom:385.815000px;}
.y11c{bottom:388.335000px;}
.y149{bottom:389.055000px;}
.y67{bottom:396.435000px;}
.y102{bottom:399.495000px;}
.yca{bottom:401.655000px;}
.y30{bottom:403.095000px;}
.y11b{bottom:405.435000px;}
.y148{bottom:406.335000px;}
.y66{bottom:413.715000px;}
.y101{bottom:416.775000px;}
.yc9{bottom:418.935000px;}
.y11a{bottom:422.715000px;}
.y2f{bottom:422.895000px;}
.y147{bottom:423.435000px;}
.y65{bottom:430.995000px;}
.y100{bottom:434.055000px;}
.yc8{bottom:436.215000px;}
.y119{bottom:439.995000px;}
.y2e{bottom:440.175000px;}
.y146{bottom:440.715000px;}
.y64{bottom:448.275000px;}
.yff{bottom:451.335000px;}
.yc7{bottom:453.495000px;}
.y118{bottom:457.275000px;}
.y2d{bottom:457.455000px;}
.y145{bottom:457.995000px;}
.y63{bottom:465.555000px;}
.yfe{bottom:468.435000px;}
.yc6{bottom:470.775000px;}
.y113{bottom:473.115000px;}
.y2c{bottom:474.735000px;}
.y144{bottom:475.275000px;}
.y17b{bottom:481.395000px;}
.y62{bottom:482.835000px;}
.yfd{bottom:485.715000px;}
.yc5{bottom:488.055000px;}
.y2b{bottom:492.015000px;}
.y143{bottom:492.555000px;}
.y17a{bottom:498.675000px;}
.y61{bottom:499.935000px;}
.yfc{bottom:502.995000px;}
.yc4{bottom:505.155000px;}
.y2a{bottom:509.295000px;}
.y142{bottom:509.835000px;}
.y117{bottom:510.555000px;}
.y179{bottom:515.955000px;}
.y60{bottom:517.215000px;}
.yfb{bottom:520.275000px;}
.yc3{bottom:522.435000px;}
.y29{bottom:526.395000px;}
.y141{bottom:526.935000px;}
.y178{bottom:533.055000px;}
.y5f{bottom:534.495000px;}
.yfa{bottom:537.555000px;}
.yc2{bottom:539.715000px;}
.y28{bottom:543.675000px;}
.y140{bottom:544.215000px;}
.y116{bottom:546.915000px;}
.y177{bottom:550.335000px;}
.y5e{bottom:551.775000px;}
.yf9{bottom:554.655000px;}
.yc1{bottom:556.995000px;}
.y27{bottom:560.955000px;}
.y13f{bottom:561.495000px;}
.y176{bottom:567.615000px;}
.y5d{bottom:569.055000px;}
.yf8{bottom:571.935000px;}
.yc0{bottom:574.275000px;}
.y26{bottom:578.235000px;}
.y13e{bottom:578.775000px;}
.y112{bottom:582.195000px;}
.y175{bottom:584.895000px;}
.y5c{bottom:586.155000px;}
.yf7{bottom:589.215000px;}
.ybf{bottom:591.555000px;}
.y25{bottom:595.515000px;}
.y13d{bottom:596.055000px;}
.y174{bottom:602.175000px;}
.y5b{bottom:603.435000px;}
.yf6{bottom:606.525000px;}
.ybe{bottom:608.685000px;}
.ya0{bottom:610.485000px;}
.y24{bottom:612.825000px;}
.y13c{bottom:613.185000px;}
.y173{bottom:619.485000px;}
.y5a{bottom:620.745000px;}
.yf5{bottom:623.805000px;}
.ybd{bottom:625.965000px;}
.y9f{bottom:627.765000px;}
.y23{bottom:629.925000px;}
.y13b{bottom:630.465000px;}
.y172{bottom:636.585000px;}
.y59{bottom:638.025000px;}
.yf4{bottom:641.085000px;}
.ybc{bottom:643.245000px;}
.y9e{bottom:645.045000px;}
.y22{bottom:647.205000px;}
.y13a{bottom:647.745000px;}
.y171{bottom:653.865000px;}
.y58{bottom:655.305000px;}
.yf3{bottom:658.185000px;}
.ybb{bottom:660.525000px;}
.y9d{bottom:662.325000px;}
.y21{bottom:664.485000px;}
.y139{bottom:665.025000px;}
.y170{bottom:671.145000px;}
.y57{bottom:672.585000px;}
.yf2{bottom:675.465000px;}
.yba{bottom:677.805000px;}
.y9c{bottom:679.605000px;}
.y20{bottom:681.765000px;}
.y138{bottom:682.305000px;}
.y16f{bottom:688.425000px;}
.y56{bottom:689.685000px;}
.yf1{bottom:692.745000px;}
.yb9{bottom:695.085000px;}
.y9b{bottom:696.885000px;}
.y1f{bottom:699.045000px;}
.y137{bottom:699.585000px;}
.y16e{bottom:705.705000px;}
.y55{bottom:706.965000px;}
.yf0{bottom:710.025000px;}
.yb8{bottom:712.185000px;}
.y9a{bottom:713.985000px;}
.y1e{bottom:716.325000px;}
.y136{bottom:716.685000px;}
.y16d{bottom:722.985000px;}
.y54{bottom:724.245000px;}
.yef{bottom:727.305000px;}
.yb7{bottom:729.465000px;}
.y99{bottom:731.265000px;}
.y12e{bottom:732.705000px;}
.y1d{bottom:733.425000px;}
.y16c{bottom:740.085000px;}
.y53{bottom:741.525000px;}
.yee{bottom:744.585000px;}
.yb6{bottom:746.745000px;}
.y98{bottom:748.545000px;}
.y1c{bottom:750.705000px;}
.y16b{bottom:757.365000px;}
.y52{bottom:758.805000px;}
.yb5{bottom:761.505000px;}
.yed{bottom:761.685000px;}
.y97{bottom:765.825000px;}
.y1b{bottom:767.985000px;}
.y135{bottom:768.705000px;}
.y16a{bottom:774.645000px;}
.y51{bottom:776.085000px;}
.yec{bottom:778.965000px;}
.y96{bottom:783.105000px;}
.y1a{bottom:785.265000px;}
.yb4{bottom:787.785000px;}
.y169{bottom:791.925000px;}
.y50{bottom:793.185000px;}
.yeb{bottom:796.245000px;}
.y95{bottom:800.385000px;}
.y19{bottom:802.545000px;}
.y134{bottom:804.705000px;}
.y168{bottom:809.205000px;}
.y4f{bottom:810.465000px;}
.yea{bottom:813.525000px;}
.yb2{bottom:814.065000px;}
.y94{bottom:817.485000px;}
.y18{bottom:819.645000px;}
.y167{bottom:826.485000px;}
.y4e{bottom:827.745000px;}
.ye9{bottom:830.805000px;}
.y93{bottom:834.765000px;}
.y17{bottom:838.005000px;}
.yb1{bottom:840.165000px;}
.y131{bottom:840.345000px;}
.y166{bottom:843.585000px;}
.y4d{bottom:845.025000px;}
.ye8{bottom:848.085000px;}
.y92{bottom:852.045000px;}
.y16{bottom:855.825000px;}
.y165{bottom:860.865000px;}
.y4c{bottom:862.305000px;}
.ydd{bottom:863.925000px;}
.yae{bottom:866.445000px;}
.y91{bottom:869.325000px;}
.y15{bottom:874.770000px;}
.y12d{bottom:875.490000px;}
.y164{bottom:878.190000px;}
.y4b{bottom:879.630000px;}
.y90{bottom:886.650000px;}
.yad{bottom:892.770000px;}
.y14{bottom:893.850000px;}
.y163{bottom:895.470000px;}
.y4a{bottom:896.730000px;}
.ye5{bottom:901.410000px;}
.y8f{bottom:903.750000px;}
.y15c{bottom:911.310000px;}
.y13{bottom:912.750000px;}
.y49{bottom:914.010000px;}
.yaa{bottom:919.050000px;}
.y87{bottom:919.770000px;}
.y48{bottom:931.290000px;}
.y12{bottom:931.650000px;}
.ye4{bottom:938.850000px;}
.y8c{bottom:945.690000px;}
.y47{bottom:948.570000px;}
.y162{bottom:948.750000px;}
.y11{bottom:950.730000px;}
.y46{bottom:965.850000px;}
.y10{bottom:969.630000px;}
.y8a{bottom:972.690000px;}
.ye3{bottom:976.470000px;}
.y45{bottom:982.950000px;}
.yf{bottom:988.710000px;}
.y86{bottom:996.270000px;}
.y44{bottom:1000.230000px;}
.y15e{bottom:1002.390000px;}
.ye{bottom:1007.970000px;}
.ye0{bottom:1012.830000px;}
.y43{bottom:1017.510000px;}
.yd{bottom:1028.670000px;}
.y42{bottom:1034.790000px;}
.y15a{bottom:1043.970000px;}
.ydc{bottom:1048.110000px;}
.yc{bottom:1049.370000px;}
.y41{bottom:1052.070000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1089.150000px;}
.y6{bottom:1104.990000px;}
.y5{bottom:1122.990000px;}
.y4{bottom:1139.760000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h14{height:17.100000px;}
.ha{height:17.280000px;}
.h1d{height:21.240000px;}
.hd{height:22.860000px;}
.hf{height:23.040000px;}
.he{height:25.020000px;}
.h12{height:25.380000px;}
.h10{height:25.560000px;}
.h11{height:25.596000px;}
.h16{height:34.380000px;}
.h18{height:34.416000px;}
.h17{height:34.560000px;}
.h6{height:37.705078px;}
.h1f{height:40.860000px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.h9{height:43.506914px;}
.h13{height:45.461953px;}
.h3{height:46.251562px;}
.h8{height:46.736719px;}
.hb{height:48.496641px;}
.h4{height:50.800781px;}
.h1a{height:51.840000px;}
.h7{height:65.884219px;}
.hc{height:75.780000px;}
.h1b{height:108.360000px;}
.h1e{height:131.940000px;}
.h1c{height:142.056000px;}
.h19{height:159.480000px;}
.h15{height:183.270000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:51.480000px;}
.w11{width:63.000000px;}
.w8{width:71.820000px;}
.we{width:75.060000px;}
.w1f{width:88.380000px;}
.wb{width:93.240000px;}
.w15{width:94.860000px;}
.w18{width:95.760000px;}
.w5{width:104.256000px;}
.w12{width:105.516000px;}
.w13{width:106.200000px;}
.w6{width:110.340000px;}
.w10{width:116.136000px;}
.wf{width:116.280000px;}
.wa{width:146.196000px;}
.w16{width:167.400000px;}
.w1b{width:185.970000px;}
.w19{width:186.510000px;}
.w9{width:192.270000px;}
.w1d{width:198.390000px;}
.w3{width:271.830000px;}
.wd{width:276.330000px;}
.wc{width:308.955000px;}
.w7{width:339.195000px;}
.w1e{width:395.535000px;}
.w1a{width:396.975000px;}
.w1c{width:397.335000px;}
.w17{width:404.385000px;}
.w14{width:467.205000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:7.740000px;}
.x18{left:9.000000px;}
.x28{left:11.520000px;}
.x2b{left:14.760000px;}
.x30{left:20.520000px;}
.x29{left:21.600000px;}
.x27{left:23.940000px;}
.x32{left:32.220000px;}
.x34{left:35.820000px;}
.x31{left:37.440000px;}
.x33{left:41.220000px;}
.x2f{left:42.834000px;}
.x23{left:46.614000px;}
.x1a{left:47.700000px;}
.x38{left:52.740000px;}
.x1b{left:54.000000px;}
.x25{left:98.145000px;}
.x1{left:108.035987px;}
.x2{left:123.155987px;}
.x3b{left:126.395987px;}
.x8{left:128.735987px;}
.x40{left:135.035987px;}
.xf{left:147.815987px;}
.xc{left:151.049987px;}
.x7{left:152.669987px;}
.x4{left:157.169987px;}
.x12{left:161.129987px;}
.x39{left:176.069987px;}
.x13{left:192.989987px;}
.x24{left:201.990000px;}
.x36{left:225.390000px;}
.x1d{left:240.690000px;}
.x10{left:267.509987px;}
.x3a{left:276.690000px;}
.x2a{left:277.815000px;}
.x3c{left:295.635000px;}
.x3d{left:307.515000px;}
.x17{left:310.755000px;}
.x14{left:313.454987px;}
.x1c{left:315.614987px;}
.x35{left:337.754987px;}
.x21{left:343.694987px;}
.x16{left:346.394987px;}
.xb{left:364.754987px;}
.x41{left:370.334987px;}
.x9{left:375.914987px;}
.xe{left:379.874987px;}
.x15{left:384.374987px;}
.x11{left:386.534987px;}
.x2c{left:394.815000px;}
.x6{left:396.434987px;}
.xd{left:409.394987px;}
.x5{left:412.274987px;}
.x20{left:433.695000px;}
.xa{left:446.474987px;}
.x19{left:472.245000px;}
.x26{left:511.845000px;}
.x3{left:518.504987px;}
.x2d{left:575.565000px;}
.x1f{left:580.605000px;}
.x2e{left:681.990000px;}
.x37{left:693.330000px;}
.x3f{left:695.489987px;}
.x3e{left:703.950000px;}
.x22{left:763.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.120000pt;}
.ls12{letter-spacing:-0.736000pt;}
.ls11{letter-spacing:-0.688000pt;}
.ls15{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.409067pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.065280pt;}
.lse{letter-spacing:0.094720pt;}
.ls17{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.476800pt;}
.lsb{letter-spacing:11.040000pt;}
.ls16{letter-spacing:19.152640pt;}
.ls13{letter-spacing:40.891307pt;}
.ls5{letter-spacing:58.192640pt;}
.ws1{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.185067pt;}
.ws6{word-spacing:-13.049067pt;}
.wsb{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.592000pt;}
.wsa{word-spacing:-12.544000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._1c{margin-left:-7.286613pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._6{width:2.859093pt;}
._2{width:3.773867pt;}
._b{width:4.720853pt;}
._9{width:6.101973pt;}
._d{width:7.590827pt;}
._a{width:9.342293pt;}
._8{width:11.095253pt;}
._7{width:12.058240pt;}
._e{width:14.372267pt;}
._13{width:15.567147pt;}
._14{width:16.616747pt;}
._c{width:17.575893pt;}
._10{width:18.711040pt;}
._f{width:19.813760pt;}
._19{width:20.703360pt;}
._12{width:21.619840pt;}
._11{width:22.522880pt;}
._18{width:25.012693pt;}
._16{width:26.354347pt;}
._15{width:27.721813pt;}
._17{width:28.791040pt;}
._21{width:36.539733pt;}
._1d{width:52.588800pt;}
._5{width:76.138667pt;}
._20{width:81.638613pt;}
._1f{width:113.092480pt;}
._1e{width:114.208000pt;}
._1b{width:182.201600pt;}
._1a{width:183.104640pt;}
._4{width:610.938667pt;}
._3{width:665.098667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:2.880000pt;}
.y15b{bottom:4.640000pt;}
.yac{bottom:6.560000pt;}
.yb0{bottom:6.600000pt;}
.y8b{bottom:7.840000pt;}
.y8e{bottom:8.000000pt;}
.y160{bottom:8.480000pt;}
.y8d{bottom:9.920000pt;}
.yb3{bottom:10.080000pt;}
.yab{bottom:10.240000pt;}
.yaf{bottom:10.280000pt;}
.y133{bottom:10.400000pt;}
.ye2{bottom:10.560000pt;}
.ye7{bottom:10.600000pt;}
.y161{bottom:13.280000pt;}
.y132{bottom:18.080000pt;}
.y110{bottom:18.234667pt;}
.ye1{bottom:18.240000pt;}
.ye6{bottom:18.280000pt;}
.y15f{bottom:23.840000pt;}
.y89{bottom:25.920000pt;}
.y88{bottom:28.800000pt;}
.yb{bottom:32.640000pt;}
.y10f{bottom:33.600000pt;}
.y115{bottom:35.680000pt;}
.ya{bottom:49.120000pt;}
.y130{bottom:50.720000pt;}
.y114{bottom:51.040000pt;}
.y15d{bottom:53.760000pt;}
.y10b{bottom:58.394667pt;}
.y9{bottom:62.912000pt;}
.y12f{bottom:65.920000pt;}
.ydf{bottom:69.000000pt;}
.y10a{bottom:73.754667pt;}
.yde{bottom:84.360000pt;}
.y78{bottom:91.712000pt;}
.ydb{bottom:96.352000pt;}
.ya9{bottom:97.472000pt;}
.y12c{bottom:99.712000pt;}
.y159{bottom:100.512000pt;}
.y111{bottom:103.072000pt;}
.y77{bottom:107.072000pt;}
.y85{bottom:110.432000pt;}
.yda{bottom:111.712000pt;}
.ya8{bottom:112.832000pt;}
.y40{bottom:112.992000pt;}
.y12b{bottom:115.072000pt;}
.y17c{bottom:115.392000pt;}
.y158{bottom:115.712000pt;}
.y109{bottom:117.152000pt;}
.y76{bottom:122.432000pt;}
.y84{bottom:125.792000pt;}
.yd9{bottom:127.072000pt;}
.ya7{bottom:128.192000pt;}
.y3f{bottom:128.352000pt;}
.y12a{bottom:130.432000pt;}
.y157{bottom:131.072000pt;}
.y75{bottom:137.786667pt;}
.y83{bottom:141.146667pt;}
.yd8{bottom:142.426667pt;}
.ya6{bottom:143.546667pt;}
.y3e{bottom:143.706667pt;}
.y129{bottom:145.786667pt;}
.y156{bottom:146.426667pt;}
.y10e{bottom:149.146667pt;}
.y74{bottom:153.146667pt;}
.y82{bottom:156.346667pt;}
.yd7{bottom:157.786667pt;}
.y3d{bottom:158.906667pt;}
.y128{bottom:161.146667pt;}
.y155{bottom:161.786667pt;}
.y73{bottom:168.506667pt;}
.y81{bottom:171.706667pt;}
.yd6{bottom:173.146667pt;}
.ya5{bottom:174.106667pt;}
.y3c{bottom:174.266667pt;}
.y127{bottom:176.346667pt;}
.y154{bottom:177.146667pt;}
.y72{bottom:183.706667pt;}
.y80{bottom:187.066667pt;}
.yd5{bottom:188.346667pt;}
.ya4{bottom:189.466667pt;}
.y3b{bottom:189.626667pt;}
.y126{bottom:191.706667pt;}
.y153{bottom:192.346667pt;}
.y10d{bottom:196.506667pt;}
.y71{bottom:199.066667pt;}
.y7f{bottom:202.426667pt;}
.yd4{bottom:203.706667pt;}
.ya3{bottom:204.826667pt;}
.y3a{bottom:204.986667pt;}
.y125{bottom:207.066667pt;}
.y152{bottom:207.706667pt;}
.y70{bottom:214.426667pt;}
.y7e{bottom:217.786667pt;}
.yd3{bottom:219.066667pt;}
.ya2{bottom:220.186667pt;}
.y39{bottom:220.346667pt;}
.y124{bottom:222.426667pt;}
.y151{bottom:223.066667pt;}
.y10c{bottom:228.186667pt;}
.y6f{bottom:229.786667pt;}
.ya1{bottom:232.666667pt;}
.y7d{bottom:233.146667pt;}
.yd2{bottom:234.426667pt;}
.y38{bottom:235.546667pt;}
.y123{bottom:237.786667pt;}
.y150{bottom:238.426667pt;}
.y6e{bottom:245.146667pt;}
.y7c{bottom:248.346667pt;}
.yd1{bottom:249.786667pt;}
.y37{bottom:250.906667pt;}
.y122{bottom:253.146667pt;}
.y14f{bottom:253.786667pt;}
.y108{bottom:259.546667pt;}
.y6d{bottom:260.346667pt;}
.yd0{bottom:265.146667pt;}
.y36{bottom:266.266667pt;}
.y121{bottom:268.346667pt;}
.y14e{bottom:269.146667pt;}
.y7b{bottom:271.546667pt;}
.y6c{bottom:275.706667pt;}
.y107{bottom:278.426667pt;}
.ycf{bottom:280.346667pt;}
.y35{bottom:281.626667pt;}
.y120{bottom:283.706667pt;}
.y14d{bottom:284.346667pt;}
.y6b{bottom:291.066667pt;}
.y106{bottom:293.786667pt;}
.yce{bottom:295.706667pt;}
.y34{bottom:296.986667pt;}
.y11f{bottom:299.106667pt;}
.y14c{bottom:299.746667pt;}
.y7a{bottom:301.506667pt;}
.y6a{bottom:306.466667pt;}
.y105{bottom:309.186667pt;}
.ycd{bottom:311.106667pt;}
.y33{bottom:312.386667pt;}
.y11e{bottom:314.466667pt;}
.y14b{bottom:315.106667pt;}
.y69{bottom:321.826667pt;}
.y104{bottom:324.386667pt;}
.ycc{bottom:326.466667pt;}
.y32{bottom:327.586667pt;}
.y11d{bottom:329.826667pt;}
.y14a{bottom:330.466667pt;}
.y68{bottom:337.186667pt;}
.y103{bottom:339.746667pt;}
.ycb{bottom:341.826667pt;}
.y31{bottom:342.946667pt;}
.y11c{bottom:345.186667pt;}
.y149{bottom:345.826667pt;}
.y67{bottom:352.386667pt;}
.y102{bottom:355.106667pt;}
.yca{bottom:357.026667pt;}
.y30{bottom:358.306667pt;}
.y11b{bottom:360.386667pt;}
.y148{bottom:361.186667pt;}
.y66{bottom:367.746667pt;}
.y101{bottom:370.466667pt;}
.yc9{bottom:372.386667pt;}
.y11a{bottom:375.746667pt;}
.y2f{bottom:375.906667pt;}
.y147{bottom:376.386667pt;}
.y65{bottom:383.106667pt;}
.y100{bottom:385.826667pt;}
.yc8{bottom:387.746667pt;}
.y119{bottom:391.106667pt;}
.y2e{bottom:391.266667pt;}
.y146{bottom:391.746667pt;}
.y64{bottom:398.466667pt;}
.yff{bottom:401.186667pt;}
.yc7{bottom:403.106667pt;}
.y118{bottom:406.466667pt;}
.y2d{bottom:406.626667pt;}
.y145{bottom:407.106667pt;}
.y63{bottom:413.826667pt;}
.yfe{bottom:416.386667pt;}
.yc6{bottom:418.466667pt;}
.y113{bottom:420.546667pt;}
.y2c{bottom:421.986667pt;}
.y144{bottom:422.466667pt;}
.y17b{bottom:427.906667pt;}
.y62{bottom:429.186667pt;}
.yfd{bottom:431.746667pt;}
.yc5{bottom:433.826667pt;}
.y2b{bottom:437.346667pt;}
.y143{bottom:437.826667pt;}
.y17a{bottom:443.266667pt;}
.y61{bottom:444.386667pt;}
.yfc{bottom:447.106667pt;}
.yc4{bottom:449.026667pt;}
.y2a{bottom:452.706667pt;}
.y142{bottom:453.186667pt;}
.y117{bottom:453.826667pt;}
.y179{bottom:458.626667pt;}
.y60{bottom:459.746667pt;}
.yfb{bottom:462.466667pt;}
.yc3{bottom:464.386667pt;}
.y29{bottom:467.906667pt;}
.y141{bottom:468.386667pt;}
.y178{bottom:473.826667pt;}
.y5f{bottom:475.106667pt;}
.yfa{bottom:477.826667pt;}
.yc2{bottom:479.746667pt;}
.y28{bottom:483.266667pt;}
.y140{bottom:483.746667pt;}
.y116{bottom:486.146667pt;}
.y177{bottom:489.186667pt;}
.y5e{bottom:490.466667pt;}
.yf9{bottom:493.026667pt;}
.yc1{bottom:495.106667pt;}
.y27{bottom:498.626667pt;}
.y13f{bottom:499.106667pt;}
.y176{bottom:504.546667pt;}
.y5d{bottom:505.826667pt;}
.yf8{bottom:508.386667pt;}
.yc0{bottom:510.466667pt;}
.y26{bottom:513.986667pt;}
.y13e{bottom:514.466667pt;}
.y112{bottom:517.506667pt;}
.y175{bottom:519.906667pt;}
.y5c{bottom:521.026667pt;}
.yf7{bottom:523.746667pt;}
.ybf{bottom:525.826667pt;}
.y25{bottom:529.346667pt;}
.y13d{bottom:529.826667pt;}
.y174{bottom:535.266667pt;}
.y5b{bottom:536.386667pt;}
.yf6{bottom:539.133333pt;}
.ybe{bottom:541.053333pt;}
.ya0{bottom:542.653333pt;}
.y24{bottom:544.733333pt;}
.y13c{bottom:545.053333pt;}
.y173{bottom:550.653333pt;}
.y5a{bottom:551.773333pt;}
.yf5{bottom:554.493333pt;}
.ybd{bottom:556.413333pt;}
.y9f{bottom:558.013333pt;}
.y23{bottom:559.933333pt;}
.y13b{bottom:560.413333pt;}
.y172{bottom:565.853333pt;}
.y59{bottom:567.133333pt;}
.yf4{bottom:569.853333pt;}
.ybc{bottom:571.773333pt;}
.y9e{bottom:573.373333pt;}
.y22{bottom:575.293333pt;}
.y13a{bottom:575.773333pt;}
.y171{bottom:581.213333pt;}
.y58{bottom:582.493333pt;}
.yf3{bottom:585.053333pt;}
.ybb{bottom:587.133333pt;}
.y9d{bottom:588.733333pt;}
.y21{bottom:590.653333pt;}
.y139{bottom:591.133333pt;}
.y170{bottom:596.573333pt;}
.y57{bottom:597.853333pt;}
.yf2{bottom:600.413333pt;}
.yba{bottom:602.493333pt;}
.y9c{bottom:604.093333pt;}
.y20{bottom:606.013333pt;}
.y138{bottom:606.493333pt;}
.y16f{bottom:611.933333pt;}
.y56{bottom:613.053333pt;}
.yf1{bottom:615.773333pt;}
.yb9{bottom:617.853333pt;}
.y9b{bottom:619.453333pt;}
.y1f{bottom:621.373333pt;}
.y137{bottom:621.853333pt;}
.y16e{bottom:627.293333pt;}
.y55{bottom:628.413333pt;}
.yf0{bottom:631.133333pt;}
.yb8{bottom:633.053333pt;}
.y9a{bottom:634.653333pt;}
.y1e{bottom:636.733333pt;}
.y136{bottom:637.053333pt;}
.y16d{bottom:642.653333pt;}
.y54{bottom:643.773333pt;}
.yef{bottom:646.493333pt;}
.yb7{bottom:648.413333pt;}
.y99{bottom:650.013333pt;}
.y12e{bottom:651.293333pt;}
.y1d{bottom:651.933333pt;}
.y16c{bottom:657.853333pt;}
.y53{bottom:659.133333pt;}
.yee{bottom:661.853333pt;}
.yb6{bottom:663.773333pt;}
.y98{bottom:665.373333pt;}
.y1c{bottom:667.293333pt;}
.y16b{bottom:673.213333pt;}
.y52{bottom:674.493333pt;}
.yb5{bottom:676.893333pt;}
.yed{bottom:677.053333pt;}
.y97{bottom:680.733333pt;}
.y1b{bottom:682.653333pt;}
.y135{bottom:683.293333pt;}
.y16a{bottom:688.573333pt;}
.y51{bottom:689.853333pt;}
.yec{bottom:692.413333pt;}
.y96{bottom:696.093333pt;}
.y1a{bottom:698.013333pt;}
.yb4{bottom:700.253333pt;}
.y169{bottom:703.933333pt;}
.y50{bottom:705.053333pt;}
.yeb{bottom:707.773333pt;}
.y95{bottom:711.453333pt;}
.y19{bottom:713.373333pt;}
.y134{bottom:715.293333pt;}
.y168{bottom:719.293333pt;}
.y4f{bottom:720.413333pt;}
.yea{bottom:723.133333pt;}
.yb2{bottom:723.613333pt;}
.y94{bottom:726.653333pt;}
.y18{bottom:728.573333pt;}
.y167{bottom:734.653333pt;}
.y4e{bottom:735.773333pt;}
.ye9{bottom:738.493333pt;}
.y93{bottom:742.013333pt;}
.y17{bottom:744.893333pt;}
.yb1{bottom:746.813333pt;}
.y131{bottom:746.973333pt;}
.y166{bottom:749.853333pt;}
.y4d{bottom:751.133333pt;}
.ye8{bottom:753.853333pt;}
.y92{bottom:757.373333pt;}
.y16{bottom:760.733333pt;}
.y165{bottom:765.213333pt;}
.y4c{bottom:766.493333pt;}
.ydd{bottom:767.933333pt;}
.yae{bottom:770.173333pt;}
.y91{bottom:772.733333pt;}
.y15{bottom:777.573333pt;}
.y12d{bottom:778.213333pt;}
.y164{bottom:780.613333pt;}
.y4b{bottom:781.893333pt;}
.y90{bottom:788.133333pt;}
.yad{bottom:793.573333pt;}
.y14{bottom:794.533333pt;}
.y163{bottom:795.973333pt;}
.y4a{bottom:797.093333pt;}
.ye5{bottom:801.253333pt;}
.y8f{bottom:803.333333pt;}
.y15c{bottom:810.053333pt;}
.y13{bottom:811.333333pt;}
.y49{bottom:812.453333pt;}
.yaa{bottom:816.933333pt;}
.y87{bottom:817.573333pt;}
.y48{bottom:827.813333pt;}
.y12{bottom:828.133333pt;}
.ye4{bottom:834.533333pt;}
.y8c{bottom:840.613333pt;}
.y47{bottom:843.173333pt;}
.y162{bottom:843.333333pt;}
.y11{bottom:845.093333pt;}
.y46{bottom:858.533333pt;}
.y10{bottom:861.893333pt;}
.y8a{bottom:864.613333pt;}
.ye3{bottom:867.973333pt;}
.y45{bottom:873.733333pt;}
.yf{bottom:878.853333pt;}
.y86{bottom:885.573333pt;}
.y44{bottom:889.093333pt;}
.y15e{bottom:891.013333pt;}
.ye{bottom:895.973333pt;}
.ye0{bottom:900.293333pt;}
.y43{bottom:904.453333pt;}
.yd{bottom:914.373333pt;}
.y42{bottom:919.813333pt;}
.y15a{bottom:927.973333pt;}
.ydc{bottom:931.653333pt;}
.yc{bottom:932.773333pt;}
.y41{bottom:935.173333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:968.133333pt;}
.y6{bottom:982.213333pt;}
.y5{bottom:998.213333pt;}
.y4{bottom:1013.120000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h14{height:15.200000pt;}
.ha{height:15.360000pt;}
.h1d{height:18.880000pt;}
.hd{height:20.320000pt;}
.hf{height:20.480000pt;}
.he{height:22.240000pt;}
.h12{height:22.560000pt;}
.h10{height:22.720000pt;}
.h11{height:22.752000pt;}
.h16{height:30.560000pt;}
.h18{height:30.592000pt;}
.h17{height:30.720000pt;}
.h6{height:33.515625pt;}
.h1f{height:36.320000pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.h9{height:38.672812pt;}
.h13{height:40.410625pt;}
.h3{height:41.112500pt;}
.h8{height:41.543750pt;}
.hb{height:43.108125pt;}
.h4{height:45.156250pt;}
.h1a{height:46.080000pt;}
.h7{height:58.563750pt;}
.hc{height:67.360000pt;}
.h1b{height:96.320000pt;}
.h1e{height:117.280000pt;}
.h1c{height:126.272000pt;}
.h19{height:141.760000pt;}
.h15{height:162.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:45.760000pt;}
.w11{width:56.000000pt;}
.w8{width:63.840000pt;}
.we{width:66.720000pt;}
.w1f{width:78.560000pt;}
.wb{width:82.880000pt;}
.w15{width:84.320000pt;}
.w18{width:85.120000pt;}
.w5{width:92.672000pt;}
.w12{width:93.792000pt;}
.w13{width:94.400000pt;}
.w6{width:98.080000pt;}
.w10{width:103.232000pt;}
.wf{width:103.360000pt;}
.wa{width:129.952000pt;}
.w16{width:148.800000pt;}
.w1b{width:165.306667pt;}
.w19{width:165.786667pt;}
.w9{width:170.906667pt;}
.w1d{width:176.346667pt;}
.w3{width:241.626667pt;}
.wd{width:245.626667pt;}
.wc{width:274.626667pt;}
.w7{width:301.506667pt;}
.w1e{width:351.586667pt;}
.w1a{width:352.866667pt;}
.w1c{width:353.186667pt;}
.w17{width:359.453333pt;}
.w14{width:415.293333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.880000pt;}
.x18{left:8.000000pt;}
.x28{left:10.240000pt;}
.x2b{left:13.120000pt;}
.x30{left:18.240000pt;}
.x29{left:19.200000pt;}
.x27{left:21.280000pt;}
.x32{left:28.640000pt;}
.x34{left:31.840000pt;}
.x31{left:33.280000pt;}
.x33{left:36.640000pt;}
.x2f{left:38.074667pt;}
.x23{left:41.434667pt;}
.x1a{left:42.400000pt;}
.x38{left:46.880000pt;}
.x1b{left:48.000000pt;}
.x25{left:87.240000pt;}
.x1{left:96.031988pt;}
.x2{left:109.471988pt;}
.x3b{left:112.351988pt;}
.x8{left:114.431988pt;}
.x40{left:120.031988pt;}
.xf{left:131.391988pt;}
.xc{left:134.266655pt;}
.x7{left:135.706655pt;}
.x4{left:139.706655pt;}
.x12{left:143.226655pt;}
.x39{left:156.506655pt;}
.x13{left:171.546655pt;}
.x24{left:179.546667pt;}
.x36{left:200.346667pt;}
.x1d{left:213.946667pt;}
.x10{left:237.786655pt;}
.x3a{left:245.946667pt;}
.x2a{left:246.946667pt;}
.x3c{left:262.786667pt;}
.x3d{left:273.346667pt;}
.x17{left:276.226667pt;}
.x14{left:278.626655pt;}
.x1c{left:280.546655pt;}
.x35{left:300.226655pt;}
.x21{left:305.506655pt;}
.x16{left:307.906655pt;}
.xb{left:324.226655pt;}
.x41{left:329.186655pt;}
.x9{left:334.146655pt;}
.xe{left:337.666655pt;}
.x15{left:341.666655pt;}
.x11{left:343.586655pt;}
.x2c{left:350.946667pt;}
.x6{left:352.386655pt;}
.xd{left:363.906655pt;}
.x5{left:366.466655pt;}
.x20{left:385.506667pt;}
.xa{left:396.866655pt;}
.x19{left:419.773333pt;}
.x26{left:454.973333pt;}
.x3{left:460.893322pt;}
.x2d{left:511.613333pt;}
.x1f{left:516.093333pt;}
.x2e{left:606.213333pt;}
.x37{left:616.293333pt;}
.x3f{left:618.213322pt;}
.x3e{left:625.733333pt;}
.x22{left:678.373322pt;}
}




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