
    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_b7754d495a7245ad61061eae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_19bacf7a8292f477f583ed3c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_bed1437c9f34af2709434b53.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9e29dd58998b0130079d77bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_a0aa788cad06e2ae3125e9ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073242;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_a35318ba8c0466a79916f15f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050293;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4677f1101c5c6841f2f9ab2d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d5d7b5e5b62b01aa1cdd6af1.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.576000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.174000px;}
.ls15{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.720000px;}
.ls11{letter-spacing:2.160000px;}
.ls9{letter-spacing:2.880000px;}
.ls6{letter-spacing:3.600000px;}
.ls2{letter-spacing:6.480000px;}
.lsb{letter-spacing:7.920000px;}
.lsf{letter-spacing:10.080000px;}
.ls16{letter-spacing:11.520000px;}
.ls7{letter-spacing:13.680000px;}
.ls13{letter-spacing:16.560000px;}
.ls10{letter-spacing:17.280000px;}
.ls14{letter-spacing:18.000000px;}
.lse{letter-spacing:21.600000px;}
.lsd{letter-spacing:23.760000px;}
.ls8{letter-spacing:28.080000px;}
.ls4{letter-spacing:28.944000px;}
.lsa{letter-spacing:32.400000px;}
.lsc{letter-spacing:43.200000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-13.505760px;}
.ws2{word-spacing:0.000000px;}
._18{margin-left:-4.968000px;}
._16{margin-left:-3.960000px;}
._17{margin-left:-2.808000px;}
._2{margin-left:-1.368000px;}
._0{width:1.055520px;}
._4{width:2.809440px;}
._3{width:4.680000px;}
._7{width:5.784480px;}
._25{width:6.815520px;}
._5{width:7.848000px;}
._6{width:9.072000px;}
._15{width:10.872000px;}
._12{width:12.096000px;}
._11{width:13.248000px;}
._c{width:14.760000px;}
._d{width:15.768000px;}
._19{width:16.992000px;}
._a{width:20.016000px;}
._1d{width:21.168000px;}
._e{width:22.536000px;}
._f{width:23.544000px;}
._1b{width:24.912000px;}
._13{width:26.280000px;}
._14{width:27.696960px;}
._10{width:29.376000px;}
._1e{width:30.480480px;}
._24{width:31.824000px;}
._21{width:33.552000px;}
._1c{width:35.496000px;}
._29{width:37.080000px;}
._22{width:38.232000px;}
._23{width:39.456000px;}
._28{width:40.608000px;}
._26{width:42.048000px;}
._27{width:43.848480px;}
._1f{width:45.360000px;}
._20{width:46.680480px;}
._b{width:47.952000px;}
._8{width:53.712000px;}
._9{width:54.720000px;}
._1a{width:61.464000px;}
._2a{width:76.752000px;}
._2b{width:78.180000px;}
._1{width:82.776000px;}
._2c{width:1701.636000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:4.319850px;}
.y8{bottom:4.500000px;}
.y3{bottom:5.400000px;}
.y9{bottom:6.300000px;}
.yf{bottom:12.600000px;}
.y6{bottom:14.400000px;}
.y7{bottom:19.080000px;}
.yc{bottom:20.160000px;}
.y2{bottom:40.140000px;}
.y5{bottom:49.140000px;}
.y14c{bottom:111.600000px;}
.y193{bottom:115.560000px;}
.y127{bottom:120.600000px;}
.y66{bottom:120.960000px;}
.y17e{bottom:121.860000px;}
.y178{bottom:128.160000px;}
.ybb{bottom:129.960000px;}
.y14b{bottom:132.300000px;}
.y103{bottom:134.460000px;}
.y192{bottom:136.260000px;}
.y1ac{bottom:138.060000px;}
.y17d{bottom:142.560000px;}
.y8f{bottom:144.180000px;}
.y39{bottom:147.060000px;}
.y177{bottom:148.860000px;}
.ye1{bottom:149.400000px;}
.y65{bottom:150.660000px;}
.yba{bottom:150.840000px;}
.y126{bottom:151.560000px;}
.y14a{bottom:153.000000px;}
.y1ab{bottom:158.760000px;}
.y17c{bottom:163.260000px;}
.y102{bottom:164.160000px;}
.y8e{bottom:164.880000px;}
.y191{bottom:165.960000px;}
.y38{bottom:167.760000px;}
.y176{bottom:169.560000px;}
.ye0{bottom:170.100000px;}
.y149{bottom:173.700000px;}
.y64{bottom:180.360000px;}
.yb9{bottom:181.800000px;}
.y125{bottom:182.520000px;}
.y17b{bottom:183.960000px;}
.y190{bottom:186.660000px;}
.y37{bottom:188.460000px;}
.y175{bottom:190.260000px;}
.y101{bottom:193.860000px;}
.y148{bottom:194.400000px;}
.y8d{bottom:195.660000px;}
.y1c3{bottom:197.490000px;}
.ydf{bottom:201.090000px;}
.yb8{bottom:202.530000px;}
.y18f{bottom:207.390000px;}
.y1aa{bottom:209.190000px;}
.y63{bottom:210.090000px;}
.y174{bottom:210.990000px;}
.y124{bottom:213.690000px;}
.y147{bottom:215.130000px;}
.y36{bottom:218.190000px;}
.yde{bottom:221.970000px;}
.y100{bottom:223.590000px;}
.y8c{bottom:226.830000px;}
.y18e{bottom:228.090000px;}
.y1a9{bottom:229.890000px;}
.y62{bottom:230.790000px;}
.y173{bottom:231.690000px;}
.yb7{bottom:233.490000px;}
.y123{bottom:234.390000px;}
.y35{bottom:238.890000px;}
.yff{bottom:244.290000px;}
.y146{bottom:244.830000px;}
.y1c2{bottom:247.890000px;}
.y172{bottom:252.390000px;}
.ydd{bottom:252.930000px;}
.yb6{bottom:254.190000px;}
.y122{bottom:255.090000px;}
.y18d{bottom:257.790000px;}
.y8b{bottom:257.970000px;}
.y34{bottom:259.590000px;}
.y61{bottom:260.490000px;}
.yfe{bottom:264.990000px;}
.y1c1{bottom:268.590000px;}
.y171{bottom:273.090000px;}
.ydc{bottom:273.630000px;}
.y145{bottom:274.530000px;}
.y121{bottom:275.790000px;}
.y18c{bottom:278.490000px;}
.y8a{bottom:278.670000px;}
.y33{bottom:280.290000px;}
.y60{bottom:281.190000px;}
.yb5{bottom:285.150000px;}
.yfd{bottom:285.690000px;}
.y170{bottom:293.790000px;}
.y144{bottom:295.230000px;}
.y120{bottom:296.490000px;}
.y1c0{bottom:298.290000px;}
.y18b{bottom:299.190000px;}
.y32{bottom:300.990000px;}
.y5f{bottom:301.890000px;}
.ydb{bottom:304.590000px;}
.yb4{bottom:305.850000px;}
.yfc{bottom:306.390000px;}
.y89{bottom:309.630000px;}
.y143{bottom:315.930000px;}
.y11f{bottom:317.190000px;}
.y1bf{bottom:318.990000px;}
.y18a{bottom:319.890000px;}
.y31{bottom:321.690000px;}
.y5e{bottom:322.590000px;}
.y16f{bottom:323.490000px;}
.yda{bottom:325.290000px;}
.y88{bottom:330.330000px;}
.y1a8{bottom:330.690000px;}
.yfb{bottom:336.090000px;}
.y142{bottom:336.630000px;}
.yb3{bottom:336.810000px;}
.y11e{bottom:337.890000px;}
.y1ce{bottom:338.790000px;}
.y5d{bottom:343.290000px;}
.y16e{bottom:344.190000px;}
.yd9{bottom:345.990000px;}
.y1be{bottom:348.690000px;}
.y189{bottom:349.590000px;}
.y30{bottom:351.390000px;}
.y141{bottom:357.330000px;}
.yb2{bottom:357.510000px;}
.y11d{bottom:358.590000px;}
.y87{bottom:361.290000px;}
.y16d{bottom:364.890000px;}
.yfa{bottom:365.790000px;}
.y1cd{bottom:368.490000px;}
.y1bd{bottom:369.390000px;}
.y188{bottom:370.290000px;}
.y2f{bottom:372.090000px;}
.y5c{bottom:372.990000px;}
.yd8{bottom:376.950000px;}
.y140{bottom:378.030000px;}
.y11c{bottom:379.290000px;}
.y86{bottom:381.990000px;}
.y16c{bottom:385.590000px;}
.yf9{bottom:386.490000px;}
.yb1{bottom:388.470000px;}
.y187{bottom:390.990000px;}
.y2e{bottom:392.790000px;}
.y5b{bottom:393.690000px;}
.yd7{bottom:397.650000px;}
.y1cc{bottom:398.190000px;}
.y13f{bottom:398.730000px;}
.y1bc{bottom:399.090000px;}
.y11b{bottom:399.990000px;}
.y1a7{bottom:401.790000px;}
.y85{bottom:402.690000px;}
.y16b{bottom:406.290000px;}
.y17a{bottom:408.990000px;}
.yb0{bottom:409.170000px;}
.y186{bottom:411.690000px;}
.y2d{bottom:413.490000px;}
.y5a{bottom:414.390000px;}
.yf8{bottom:416.190000px;}
.yd6{bottom:418.350000px;}
.y13e{bottom:419.430000px;}
.y1bb{bottom:419.790000px;}
.y11a{bottom:420.690000px;}
.y1a6{bottom:422.490000px;}
.y84{bottom:423.390000px;}
.y16a{bottom:426.990000px;}
.y1cb{bottom:427.890000px;}
.yaf{bottom:429.870000px;}
.y2c{bottom:434.190000px;}
.y59{bottom:435.090000px;}
.yf7{bottom:436.935000px;}
.y179{bottom:438.735000px;}
.y13d{bottom:440.175000px;}
.y1ba{bottom:440.535000px;}
.y119{bottom:441.435000px;}
.y1a5{bottom:443.235000px;}
.y83{bottom:444.135000px;}
.y169{bottom:447.735000px;}
.yd5{bottom:449.355000px;}
.y2b{bottom:454.935000px;}
.y58{bottom:455.835000px;}
.y1ca{bottom:457.635000px;}
.yae{bottom:460.875000px;}
.y118{bottom:462.135000px;}
.yf6{bottom:466.635000px;}
.y168{bottom:468.435000px;}
.yd4{bottom:470.055000px;}
.y1b9{bottom:470.235000px;}
.y1a4{bottom:472.935000px;}
.y82{bottom:473.835000px;}
.y57{bottom:476.535000px;}
.yad{bottom:481.575000px;}
.y117{bottom:482.835000px;}
.y2a{bottom:484.635000px;}
.y1c9{bottom:487.335000px;}
.y167{bottom:489.135000px;}
.yd3{bottom:490.755000px;}
.y1b8{bottom:490.935000px;}
.y1a3{bottom:493.635000px;}
.yf5{bottom:496.335000px;}
.yac{bottom:502.275000px;}
.y81{bottom:503.535000px;}
.y29{bottom:505.335000px;}
.y56{bottom:506.235000px;}
.y166{bottom:509.835000px;}
.y1b7{bottom:511.635000px;}
.y1c8{bottom:517.035000px;}
.yd2{bottom:521.715000px;}
.yab{bottom:522.975000px;}
.y1a2{bottom:523.335000px;}
.y116{bottom:524.235000px;}
.y28{bottom:526.035000px;}
.y55{bottom:526.935000px;}
.y165{bottom:530.535000px;}
.y80{bottom:533.235000px;}
.y1b6{bottom:541.335000px;}
.yd1{bottom:542.415000px;}
.y13c{bottom:543.675000px;}
.y1a1{bottom:544.035000px;}
.y115{bottom:544.935000px;}
.y27{bottom:546.735000px;}
.y54{bottom:547.635000px;}
.y164{bottom:551.235000px;}
.yaa{bottom:552.675000px;}
.y7f{bottom:553.935000px;}
.yf4{bottom:555.735000px;}
.y1b5{bottom:562.035000px;}
.y13b{bottom:564.375000px;}
.y1a0{bottom:564.735000px;}
.y26{bottom:567.435000px;}
.y53{bottom:568.335000px;}
.y163{bottom:571.935000px;}
.yd0{bottom:573.375000px;}
.y7e{bottom:574.635000px;}
.y1c7{bottom:576.435000px;}
.ya9{bottom:582.375000px;}
.y13a{bottom:585.075000px;}
.yf3{bottom:585.435000px;}
.y25{bottom:588.135000px;}
.y52{bottom:589.035000px;}
.y1b4{bottom:591.735000px;}
.y162{bottom:592.635000px;}
.ycf{bottom:594.075000px;}
.y19f{bottom:594.435000px;}
.y114{bottom:595.335000px;}
.ya8{bottom:603.075000px;}
.y7d{bottom:604.335000px;}
.y139{bottom:605.775000px;}
.yf2{bottom:606.135000px;}
.y24{bottom:608.835000px;}
.y51{bottom:609.735000px;}
.y1b3{bottom:612.435000px;}
.y161{bottom:613.335000px;}
.yce{bottom:614.775000px;}
.y19e{bottom:615.135000px;}
.y113{bottom:616.035000px;}
.ye{bottom:617.475000px;}
.ya7{bottom:623.775000px;}
.y7c{bottom:625.035000px;}
.y138{bottom:626.475000px;}
.y23{bottom:629.535000px;}
.y160{bottom:634.035000px;}
.ycd{bottom:635.475000px;}
.yf1{bottom:635.835000px;}
.y112{bottom:636.735000px;}
.y50{bottom:639.435000px;}
.y1b2{bottom:642.135000px;}
.ya6{bottom:644.475000px;}
.y19d{bottom:644.835000px;}
.y7b{bottom:645.735000px;}
.y137{bottom:647.175000px;}
.y22{bottom:650.235000px;}
.y15f{bottom:654.735000px;}
.ycc{bottom:656.175000px;}
.y111{bottom:657.435000px;}
.y4f{bottom:660.135000px;}
.y1b1{bottom:662.835000px;}
.ya5{bottom:665.175000px;}
.yf0{bottom:665.535000px;}
.y7a{bottom:666.435000px;}
.y136{bottom:667.875000px;}
.y15e{bottom:675.465000px;}
.ycb{bottom:676.905000px;}
.y110{bottom:678.165000px;}
.y21{bottom:679.965000px;}
.y4e{bottom:680.865000px;}
.y1b0{bottom:683.565000px;}
.ya4{bottom:685.905000px;}
.yef{bottom:686.265000px;}
.y79{bottom:687.165000px;}
.y135{bottom:688.605000px;}
.y1c6{bottom:695.265000px;}
.y15d{bottom:696.165000px;}
.yca{bottom:697.605000px;}
.y10f{bottom:698.865000px;}
.y20{bottom:700.665000px;}
.y4d{bottom:701.565000px;}
.ya3{bottom:706.605000px;}
.y78{bottom:707.865000px;}
.y134{bottom:709.305000px;}
.y1af{bottom:713.265000px;}
.yee{bottom:715.965000px;}
.y15c{bottom:716.865000px;}
.yc9{bottom:718.305000px;}
.y10e{bottom:719.565000px;}
.y1f{bottom:721.365000px;}
.y4c{bottom:722.265000px;}
.y1c5{bottom:724.965000px;}
.ya2{bottom:727.305000px;}
.y77{bottom:728.565000px;}
.y1ae{bottom:733.965000px;}
.y19c{bottom:736.665000px;}
.y15b{bottom:737.565000px;}
.yc8{bottom:739.005000px;}
.y10d{bottom:740.265000px;}
.y1e{bottom:742.065000px;}
.y4b{bottom:742.965000px;}
.yed{bottom:745.665000px;}
.ya1{bottom:748.005000px;}
.y76{bottom:749.265000px;}
.y1ad{bottom:754.665000px;}
.y15a{bottom:758.265000px;}
.yc7{bottom:759.705000px;}
.y10c{bottom:760.965000px;}
.y1d{bottom:762.765000px;}
.y4a{bottom:763.665000px;}
.y19b{bottom:766.365000px;}
.ya0{bottom:768.705000px;}
.y75{bottom:769.965000px;}
.yec{bottom:775.365000px;}
.y159{bottom:778.965000px;}
.yc6{bottom:780.405000px;}
.y10b{bottom:781.665000px;}
.y1c{bottom:783.465000px;}
.y49{bottom:784.365000px;}
.y19a{bottom:787.065000px;}
.y9f{bottom:789.405000px;}
.y74{bottom:790.665000px;}
.y1c4{bottom:796.065000px;}
.y158{bottom:799.665000px;}
.yc5{bottom:801.105000px;}
.y10a{bottom:802.365000px;}
.y1b{bottom:804.165000px;}
.y48{bottom:805.065000px;}
.y9e{bottom:810.105000px;}
.y73{bottom:811.365000px;}
.y199{bottom:816.765000px;}
.y157{bottom:820.365000px;}
.yc4{bottom:821.805000px;}
.y109{bottom:823.065000px;}
.yeb{bottom:825.765000px;}
.y9d{bottom:830.805000px;}
.y72{bottom:832.065000px;}
.y1a{bottom:833.865000px;}
.y47{bottom:834.765000px;}
.y198{bottom:837.465000px;}
.y185{bottom:841.065000px;}
.yc3{bottom:842.505000px;}
.y108{bottom:843.765000px;}
.yea{bottom:846.465000px;}
.y156{bottom:850.065000px;}
.y9c{bottom:851.505000px;}
.y71{bottom:852.765000px;}
.y46{bottom:855.465000px;}
.y197{bottom:858.165000px;}
.y184{bottom:861.765000px;}
.yc2{bottom:863.205000px;}
.y19{bottom:863.565000px;}
.y107{bottom:864.465000px;}
.ye9{bottom:867.165000px;}
.y155{bottom:870.765000px;}
.y9b{bottom:872.205000px;}
.y70{bottom:873.465000px;}
.y45{bottom:876.165000px;}
.y183{bottom:882.465000px;}
.y133{bottom:883.905000px;}
.y106{bottom:885.165000px;}
.y196{bottom:887.865000px;}
.y154{bottom:891.465000px;}
.y9a{bottom:892.905000px;}
.y18{bottom:893.265000px;}
.y6f{bottom:894.165000px;}
.y44{bottom:896.865000px;}
.y182{bottom:903.165000px;}
.y132{bottom:904.605000px;}
.y195{bottom:908.565000px;}
.y153{bottom:912.165000px;}
.y99{bottom:913.650000px;}
.y6e{bottom:914.910000px;}
.y43{bottom:917.610000px;}
.yc1{bottom:922.650000px;}
.y17{bottom:923.010000px;}
.y181{bottom:923.910000px;}
.y131{bottom:925.350000px;}
.ye8{bottom:926.610000px;}
.y152{bottom:932.910000px;}
.y6d{bottom:935.610000px;}
.y42{bottom:938.310000px;}
.y98{bottom:943.350000px;}
.y180{bottom:944.610000px;}
.ye7{bottom:947.310000px;}
.y16{bottom:952.710000px;}
.y151{bottom:953.610000px;}
.y130{bottom:954.870000px;}
.y6c{bottom:956.310000px;}
.y41{bottom:959.010000px;}
.y97{bottom:964.050000px;}
.y17f{bottom:965.310000px;}
.ye6{bottom:968.010000px;}
.y150{bottom:974.310000px;}
.y12f{bottom:975.570000px;}
.y6b{bottom:977.010000px;}
.y40{bottom:979.710000px;}
.y15{bottom:982.410000px;}
.y96{bottom:984.750000px;}
.yc0{bottom:993.750000px;}
.y14f{bottom:995.010000px;}
.y12e{bottom:996.270000px;}
.y6a{bottom:997.710000px;}
.y95{bottom:1005.450000px;}
.y3f{bottom:1009.410000px;}
.y14{bottom:1012.110000px;}
.ybf{bottom:1014.450000px;}
.y14e{bottom:1015.710000px;}
.y12d{bottom:1016.970000px;}
.y69{bottom:1018.410000px;}
.ye5{bottom:1027.410000px;}
.y194{bottom:1030.110000px;}
.y94{bottom:1035.150000px;}
.y14d{bottom:1036.410000px;}
.y12c{bottom:1037.670000px;}
.y3e{bottom:1039.110000px;}
.y13{bottom:1041.810000px;}
.ybe{bottom:1045.410000px;}
.y68{bottom:1048.110000px;}
.y93{bottom:1055.850000px;}
.ye4{bottom:1057.110000px;}
.y12b{bottom:1058.370000px;}
.y105{bottom:1059.810000px;}
.ybd{bottom:1066.110000px;}
.y3d{bottom:1068.810000px;}
.y12{bottom:1071.510000px;}
.ye3{bottom:1077.810000px;}
.y12a{bottom:1079.070000px;}
.y104{bottom:1080.510000px;}
.y92{bottom:1086.630000px;}
.ybc{bottom:1086.810000px;}
.y3c{bottom:1089.510000px;}
.ye2{bottom:1098.510000px;}
.y11{bottom:1101.210000px;}
.y129{bottom:1108.770000px;}
.y67{bottom:1110.210000px;}
.y91{bottom:1117.770000px;}
.y3b{bottom:1119.210000px;}
.y10{bottom:1130.910000px;}
.y128{bottom:1138.470000px;}
.y90{bottom:1138.650000px;}
.y3a{bottom:1139.910000px;}
.y4{bottom:1191.780000px;}
.y1{bottom:1200.780000px;}
.yb{bottom:1246.320000px;}
.ya{bottom:1261.980000px;}
.h6{height:19.620000px;}
.h8{height:21.420000px;}
.hb{height:28.260000px;}
.h9{height:49.868086px;}
.h2{height:54.900000px;}
.hd{height:60.082031px;}
.he{height:61.171875px;}
.h7{height:61.189805px;}
.hc{height:61.734375px;}
.h4{height:63.900000px;}
.ha{height:65.884219px;}
.h5{height:67.824844px;}
.h3{height:73.722656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.240000px;}
.w8{width:84.990000px;}
.w5{width:188.130000px;}
.w4{width:192.090000px;}
.w6{width:200.595000px;}
.w2{width:359.175000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.xd{left:10.800000px;}
.x5{left:21.780000px;}
.xa{left:31.185000px;}
.x7{left:47.340000px;}
.x3{left:51.120000px;}
.xb{left:106.235987px;}
.xf{left:147.275987px;}
.xe{left:151.769987px;}
.x2{left:161.145000px;}
.x12{left:189.209987px;}
.x1{left:212.430000px;}
.x13{left:342.434987px;}
.x11{left:410.114987px;}
.x8{left:420.375000px;}
.x10{left:446.474987px;}
.x9{left:656.205000px;}
.x4{left:761.010000px;}
.xc{left:807.990000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.512000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.154667pt;}
.ls15{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls11{letter-spacing:1.920000pt;}
.ls9{letter-spacing:2.560000pt;}
.ls6{letter-spacing:3.200000pt;}
.ls2{letter-spacing:5.760000pt;}
.lsb{letter-spacing:7.040000pt;}
.lsf{letter-spacing:8.960000pt;}
.ls16{letter-spacing:10.240000pt;}
.ls7{letter-spacing:12.160000pt;}
.ls13{letter-spacing:14.720000pt;}
.ls10{letter-spacing:15.360000pt;}
.ls14{letter-spacing:16.000000pt;}
.lse{letter-spacing:19.200000pt;}
.lsd{letter-spacing:21.120000pt;}
.ls8{letter-spacing:24.960000pt;}
.ls4{letter-spacing:25.728000pt;}
.lsa{letter-spacing:28.800000pt;}
.lsc{letter-spacing:38.400000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-12.005120pt;}
.ws2{word-spacing:0.000000pt;}
._18{margin-left:-4.416000pt;}
._16{margin-left:-3.520000pt;}
._17{margin-left:-2.496000pt;}
._2{margin-left:-1.216000pt;}
._0{width:0.938240pt;}
._4{width:2.497280pt;}
._3{width:4.160000pt;}
._7{width:5.141760pt;}
._25{width:6.058240pt;}
._5{width:6.976000pt;}
._6{width:8.064000pt;}
._15{width:9.664000pt;}
._12{width:10.752000pt;}
._11{width:11.776000pt;}
._c{width:13.120000pt;}
._d{width:14.016000pt;}
._19{width:15.104000pt;}
._a{width:17.792000pt;}
._1d{width:18.816000pt;}
._e{width:20.032000pt;}
._f{width:20.928000pt;}
._1b{width:22.144000pt;}
._13{width:23.360000pt;}
._14{width:24.619520pt;}
._10{width:26.112000pt;}
._1e{width:27.093760pt;}
._24{width:28.288000pt;}
._21{width:29.824000pt;}
._1c{width:31.552000pt;}
._29{width:32.960000pt;}
._22{width:33.984000pt;}
._23{width:35.072000pt;}
._28{width:36.096000pt;}
._26{width:37.376000pt;}
._27{width:38.976427pt;}
._1f{width:40.320000pt;}
._20{width:41.493760pt;}
._b{width:42.624000pt;}
._8{width:47.744000pt;}
._9{width:48.640000pt;}
._1a{width:54.634667pt;}
._2a{width:68.224000pt;}
._2b{width:69.493333pt;}
._1{width:73.578667pt;}
._2c{width:1512.565333pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:3.839867pt;}
.y8{bottom:4.000000pt;}
.y3{bottom:4.800000pt;}
.y9{bottom:5.600000pt;}
.yf{bottom:11.200000pt;}
.y6{bottom:12.800000pt;}
.y7{bottom:16.960000pt;}
.yc{bottom:17.920000pt;}
.y2{bottom:35.680000pt;}
.y5{bottom:43.680000pt;}
.y14c{bottom:99.200000pt;}
.y193{bottom:102.720000pt;}
.y127{bottom:107.200000pt;}
.y66{bottom:107.520000pt;}
.y17e{bottom:108.320000pt;}
.y178{bottom:113.920000pt;}
.ybb{bottom:115.520000pt;}
.y14b{bottom:117.600000pt;}
.y103{bottom:119.520000pt;}
.y192{bottom:121.120000pt;}
.y1ac{bottom:122.720000pt;}
.y17d{bottom:126.720000pt;}
.y8f{bottom:128.160000pt;}
.y39{bottom:130.720000pt;}
.y177{bottom:132.320000pt;}
.ye1{bottom:132.800000pt;}
.y65{bottom:133.920000pt;}
.yba{bottom:134.080000pt;}
.y126{bottom:134.720000pt;}
.y14a{bottom:136.000000pt;}
.y1ab{bottom:141.120000pt;}
.y17c{bottom:145.120000pt;}
.y102{bottom:145.920000pt;}
.y8e{bottom:146.560000pt;}
.y191{bottom:147.520000pt;}
.y38{bottom:149.120000pt;}
.y176{bottom:150.720000pt;}
.ye0{bottom:151.200000pt;}
.y149{bottom:154.400000pt;}
.y64{bottom:160.320000pt;}
.yb9{bottom:161.600000pt;}
.y125{bottom:162.240000pt;}
.y17b{bottom:163.520000pt;}
.y190{bottom:165.920000pt;}
.y37{bottom:167.520000pt;}
.y175{bottom:169.120000pt;}
.y101{bottom:172.320000pt;}
.y148{bottom:172.800000pt;}
.y8d{bottom:173.920000pt;}
.y1c3{bottom:175.546667pt;}
.ydf{bottom:178.746667pt;}
.yb8{bottom:180.026667pt;}
.y18f{bottom:184.346667pt;}
.y1aa{bottom:185.946667pt;}
.y63{bottom:186.746667pt;}
.y174{bottom:187.546667pt;}
.y124{bottom:189.946667pt;}
.y147{bottom:191.226667pt;}
.y36{bottom:193.946667pt;}
.yde{bottom:197.306667pt;}
.y100{bottom:198.746667pt;}
.y8c{bottom:201.626667pt;}
.y18e{bottom:202.746667pt;}
.y1a9{bottom:204.346667pt;}
.y62{bottom:205.146667pt;}
.y173{bottom:205.946667pt;}
.yb7{bottom:207.546667pt;}
.y123{bottom:208.346667pt;}
.y35{bottom:212.346667pt;}
.yff{bottom:217.146667pt;}
.y146{bottom:217.626667pt;}
.y1c2{bottom:220.346667pt;}
.y172{bottom:224.346667pt;}
.ydd{bottom:224.826667pt;}
.yb6{bottom:225.946667pt;}
.y122{bottom:226.746667pt;}
.y18d{bottom:229.146667pt;}
.y8b{bottom:229.306667pt;}
.y34{bottom:230.746667pt;}
.y61{bottom:231.546667pt;}
.yfe{bottom:235.546667pt;}
.y1c1{bottom:238.746667pt;}
.y171{bottom:242.746667pt;}
.ydc{bottom:243.226667pt;}
.y145{bottom:244.026667pt;}
.y121{bottom:245.146667pt;}
.y18c{bottom:247.546667pt;}
.y8a{bottom:247.706667pt;}
.y33{bottom:249.146667pt;}
.y60{bottom:249.946667pt;}
.yb5{bottom:253.466667pt;}
.yfd{bottom:253.946667pt;}
.y170{bottom:261.146667pt;}
.y144{bottom:262.426667pt;}
.y120{bottom:263.546667pt;}
.y1c0{bottom:265.146667pt;}
.y18b{bottom:265.946667pt;}
.y32{bottom:267.546667pt;}
.y5f{bottom:268.346667pt;}
.ydb{bottom:270.746667pt;}
.yb4{bottom:271.866667pt;}
.yfc{bottom:272.346667pt;}
.y89{bottom:275.226667pt;}
.y143{bottom:280.826667pt;}
.y11f{bottom:281.946667pt;}
.y1bf{bottom:283.546667pt;}
.y18a{bottom:284.346667pt;}
.y31{bottom:285.946667pt;}
.y5e{bottom:286.746667pt;}
.y16f{bottom:287.546667pt;}
.yda{bottom:289.146667pt;}
.y88{bottom:293.626667pt;}
.y1a8{bottom:293.946667pt;}
.yfb{bottom:298.746667pt;}
.y142{bottom:299.226667pt;}
.yb3{bottom:299.386667pt;}
.y11e{bottom:300.346667pt;}
.y1ce{bottom:301.146667pt;}
.y5d{bottom:305.146667pt;}
.y16e{bottom:305.946667pt;}
.yd9{bottom:307.546667pt;}
.y1be{bottom:309.946667pt;}
.y189{bottom:310.746667pt;}
.y30{bottom:312.346667pt;}
.y141{bottom:317.626667pt;}
.yb2{bottom:317.786667pt;}
.y11d{bottom:318.746667pt;}
.y87{bottom:321.146667pt;}
.y16d{bottom:324.346667pt;}
.yfa{bottom:325.146667pt;}
.y1cd{bottom:327.546667pt;}
.y1bd{bottom:328.346667pt;}
.y188{bottom:329.146667pt;}
.y2f{bottom:330.746667pt;}
.y5c{bottom:331.546667pt;}
.yd8{bottom:335.066667pt;}
.y140{bottom:336.026667pt;}
.y11c{bottom:337.146667pt;}
.y86{bottom:339.546667pt;}
.y16c{bottom:342.746667pt;}
.yf9{bottom:343.546667pt;}
.yb1{bottom:345.306667pt;}
.y187{bottom:347.546667pt;}
.y2e{bottom:349.146667pt;}
.y5b{bottom:349.946667pt;}
.yd7{bottom:353.466667pt;}
.y1cc{bottom:353.946667pt;}
.y13f{bottom:354.426667pt;}
.y1bc{bottom:354.746667pt;}
.y11b{bottom:355.546667pt;}
.y1a7{bottom:357.146667pt;}
.y85{bottom:357.946667pt;}
.y16b{bottom:361.146667pt;}
.y17a{bottom:363.546667pt;}
.yb0{bottom:363.706667pt;}
.y186{bottom:365.946667pt;}
.y2d{bottom:367.546667pt;}
.y5a{bottom:368.346667pt;}
.yf8{bottom:369.946667pt;}
.yd6{bottom:371.866667pt;}
.y13e{bottom:372.826667pt;}
.y1bb{bottom:373.146667pt;}
.y11a{bottom:373.946667pt;}
.y1a6{bottom:375.546667pt;}
.y84{bottom:376.346667pt;}
.y16a{bottom:379.546667pt;}
.y1cb{bottom:380.346667pt;}
.yaf{bottom:382.106667pt;}
.y2c{bottom:385.946667pt;}
.y59{bottom:386.746667pt;}
.yf7{bottom:388.386667pt;}
.y179{bottom:389.986667pt;}
.y13d{bottom:391.266667pt;}
.y1ba{bottom:391.586667pt;}
.y119{bottom:392.386667pt;}
.y1a5{bottom:393.986667pt;}
.y83{bottom:394.786667pt;}
.y169{bottom:397.986667pt;}
.yd5{bottom:399.426667pt;}
.y2b{bottom:404.386667pt;}
.y58{bottom:405.186667pt;}
.y1ca{bottom:406.786667pt;}
.yae{bottom:409.666667pt;}
.y118{bottom:410.786667pt;}
.yf6{bottom:414.786667pt;}
.y168{bottom:416.386667pt;}
.yd4{bottom:417.826667pt;}
.y1b9{bottom:417.986667pt;}
.y1a4{bottom:420.386667pt;}
.y82{bottom:421.186667pt;}
.y57{bottom:423.586667pt;}
.yad{bottom:428.066667pt;}
.y117{bottom:429.186667pt;}
.y2a{bottom:430.786667pt;}
.y1c9{bottom:433.186667pt;}
.y167{bottom:434.786667pt;}
.yd3{bottom:436.226667pt;}
.y1b8{bottom:436.386667pt;}
.y1a3{bottom:438.786667pt;}
.yf5{bottom:441.186667pt;}
.yac{bottom:446.466667pt;}
.y81{bottom:447.586667pt;}
.y29{bottom:449.186667pt;}
.y56{bottom:449.986667pt;}
.y166{bottom:453.186667pt;}
.y1b7{bottom:454.786667pt;}
.y1c8{bottom:459.586667pt;}
.yd2{bottom:463.746667pt;}
.yab{bottom:464.866667pt;}
.y1a2{bottom:465.186667pt;}
.y116{bottom:465.986667pt;}
.y28{bottom:467.586667pt;}
.y55{bottom:468.386667pt;}
.y165{bottom:471.586667pt;}
.y80{bottom:473.986667pt;}
.y1b6{bottom:481.186667pt;}
.yd1{bottom:482.146667pt;}
.y13c{bottom:483.266667pt;}
.y1a1{bottom:483.586667pt;}
.y115{bottom:484.386667pt;}
.y27{bottom:485.986667pt;}
.y54{bottom:486.786667pt;}
.y164{bottom:489.986667pt;}
.yaa{bottom:491.266667pt;}
.y7f{bottom:492.386667pt;}
.yf4{bottom:493.986667pt;}
.y1b5{bottom:499.586667pt;}
.y13b{bottom:501.666667pt;}
.y1a0{bottom:501.986667pt;}
.y26{bottom:504.386667pt;}
.y53{bottom:505.186667pt;}
.y163{bottom:508.386667pt;}
.yd0{bottom:509.666667pt;}
.y7e{bottom:510.786667pt;}
.y1c7{bottom:512.386667pt;}
.ya9{bottom:517.666667pt;}
.y13a{bottom:520.066667pt;}
.yf3{bottom:520.386667pt;}
.y25{bottom:522.786667pt;}
.y52{bottom:523.586667pt;}
.y1b4{bottom:525.986667pt;}
.y162{bottom:526.786667pt;}
.ycf{bottom:528.066667pt;}
.y19f{bottom:528.386667pt;}
.y114{bottom:529.186667pt;}
.ya8{bottom:536.066667pt;}
.y7d{bottom:537.186667pt;}
.y139{bottom:538.466667pt;}
.yf2{bottom:538.786667pt;}
.y24{bottom:541.186667pt;}
.y51{bottom:541.986667pt;}
.y1b3{bottom:544.386667pt;}
.y161{bottom:545.186667pt;}
.yce{bottom:546.466667pt;}
.y19e{bottom:546.786667pt;}
.y113{bottom:547.586667pt;}
.ye{bottom:548.866667pt;}
.ya7{bottom:554.466667pt;}
.y7c{bottom:555.586667pt;}
.y138{bottom:556.866667pt;}
.y23{bottom:559.586667pt;}
.y160{bottom:563.586667pt;}
.ycd{bottom:564.866667pt;}
.yf1{bottom:565.186667pt;}
.y112{bottom:565.986667pt;}
.y50{bottom:568.386667pt;}
.y1b2{bottom:570.786667pt;}
.ya6{bottom:572.866667pt;}
.y19d{bottom:573.186667pt;}
.y7b{bottom:573.986667pt;}
.y137{bottom:575.266667pt;}
.y22{bottom:577.986667pt;}
.y15f{bottom:581.986667pt;}
.ycc{bottom:583.266667pt;}
.y111{bottom:584.386667pt;}
.y4f{bottom:586.786667pt;}
.y1b1{bottom:589.186667pt;}
.ya5{bottom:591.266667pt;}
.yf0{bottom:591.586667pt;}
.y7a{bottom:592.386667pt;}
.y136{bottom:593.666667pt;}
.y15e{bottom:600.413333pt;}
.ycb{bottom:601.693333pt;}
.y110{bottom:602.813333pt;}
.y21{bottom:604.413333pt;}
.y4e{bottom:605.213333pt;}
.y1b0{bottom:607.613333pt;}
.ya4{bottom:609.693333pt;}
.yef{bottom:610.013333pt;}
.y79{bottom:610.813333pt;}
.y135{bottom:612.093333pt;}
.y1c6{bottom:618.013333pt;}
.y15d{bottom:618.813333pt;}
.yca{bottom:620.093333pt;}
.y10f{bottom:621.213333pt;}
.y20{bottom:622.813333pt;}
.y4d{bottom:623.613333pt;}
.ya3{bottom:628.093333pt;}
.y78{bottom:629.213333pt;}
.y134{bottom:630.493333pt;}
.y1af{bottom:634.013333pt;}
.yee{bottom:636.413333pt;}
.y15c{bottom:637.213333pt;}
.yc9{bottom:638.493333pt;}
.y10e{bottom:639.613333pt;}
.y1f{bottom:641.213333pt;}
.y4c{bottom:642.013333pt;}
.y1c5{bottom:644.413333pt;}
.ya2{bottom:646.493333pt;}
.y77{bottom:647.613333pt;}
.y1ae{bottom:652.413333pt;}
.y19c{bottom:654.813333pt;}
.y15b{bottom:655.613333pt;}
.yc8{bottom:656.893333pt;}
.y10d{bottom:658.013333pt;}
.y1e{bottom:659.613333pt;}
.y4b{bottom:660.413333pt;}
.yed{bottom:662.813333pt;}
.ya1{bottom:664.893333pt;}
.y76{bottom:666.013333pt;}
.y1ad{bottom:670.813333pt;}
.y15a{bottom:674.013333pt;}
.yc7{bottom:675.293333pt;}
.y10c{bottom:676.413333pt;}
.y1d{bottom:678.013333pt;}
.y4a{bottom:678.813333pt;}
.y19b{bottom:681.213333pt;}
.ya0{bottom:683.293333pt;}
.y75{bottom:684.413333pt;}
.yec{bottom:689.213333pt;}
.y159{bottom:692.413333pt;}
.yc6{bottom:693.693333pt;}
.y10b{bottom:694.813333pt;}
.y1c{bottom:696.413333pt;}
.y49{bottom:697.213333pt;}
.y19a{bottom:699.613333pt;}
.y9f{bottom:701.693333pt;}
.y74{bottom:702.813333pt;}
.y1c4{bottom:707.613333pt;}
.y158{bottom:710.813333pt;}
.yc5{bottom:712.093333pt;}
.y10a{bottom:713.213333pt;}
.y1b{bottom:714.813333pt;}
.y48{bottom:715.613333pt;}
.y9e{bottom:720.093333pt;}
.y73{bottom:721.213333pt;}
.y199{bottom:726.013333pt;}
.y157{bottom:729.213333pt;}
.yc4{bottom:730.493333pt;}
.y109{bottom:731.613333pt;}
.yeb{bottom:734.013333pt;}
.y9d{bottom:738.493333pt;}
.y72{bottom:739.613333pt;}
.y1a{bottom:741.213333pt;}
.y47{bottom:742.013333pt;}
.y198{bottom:744.413333pt;}
.y185{bottom:747.613333pt;}
.yc3{bottom:748.893333pt;}
.y108{bottom:750.013333pt;}
.yea{bottom:752.413333pt;}
.y156{bottom:755.613333pt;}
.y9c{bottom:756.893333pt;}
.y71{bottom:758.013333pt;}
.y46{bottom:760.413333pt;}
.y197{bottom:762.813333pt;}
.y184{bottom:766.013333pt;}
.yc2{bottom:767.293333pt;}
.y19{bottom:767.613333pt;}
.y107{bottom:768.413333pt;}
.ye9{bottom:770.813333pt;}
.y155{bottom:774.013333pt;}
.y9b{bottom:775.293333pt;}
.y70{bottom:776.413333pt;}
.y45{bottom:778.813333pt;}
.y183{bottom:784.413333pt;}
.y133{bottom:785.693333pt;}
.y106{bottom:786.813333pt;}
.y196{bottom:789.213333pt;}
.y154{bottom:792.413333pt;}
.y9a{bottom:793.693333pt;}
.y18{bottom:794.013333pt;}
.y6f{bottom:794.813333pt;}
.y44{bottom:797.213333pt;}
.y182{bottom:802.813333pt;}
.y132{bottom:804.093333pt;}
.y195{bottom:807.613333pt;}
.y153{bottom:810.813333pt;}
.y99{bottom:812.133333pt;}
.y6e{bottom:813.253333pt;}
.y43{bottom:815.653333pt;}
.yc1{bottom:820.133333pt;}
.y17{bottom:820.453333pt;}
.y181{bottom:821.253333pt;}
.y131{bottom:822.533333pt;}
.ye8{bottom:823.653333pt;}
.y152{bottom:829.253333pt;}
.y6d{bottom:831.653333pt;}
.y42{bottom:834.053333pt;}
.y98{bottom:838.533333pt;}
.y180{bottom:839.653333pt;}
.ye7{bottom:842.053333pt;}
.y16{bottom:846.853333pt;}
.y151{bottom:847.653333pt;}
.y130{bottom:848.773333pt;}
.y6c{bottom:850.053333pt;}
.y41{bottom:852.453333pt;}
.y97{bottom:856.933333pt;}
.y17f{bottom:858.053333pt;}
.ye6{bottom:860.453333pt;}
.y150{bottom:866.053333pt;}
.y12f{bottom:867.173333pt;}
.y6b{bottom:868.453333pt;}
.y40{bottom:870.853333pt;}
.y15{bottom:873.253333pt;}
.y96{bottom:875.333333pt;}
.yc0{bottom:883.333333pt;}
.y14f{bottom:884.453333pt;}
.y12e{bottom:885.573333pt;}
.y6a{bottom:886.853333pt;}
.y95{bottom:893.733333pt;}
.y3f{bottom:897.253333pt;}
.y14{bottom:899.653333pt;}
.ybf{bottom:901.733333pt;}
.y14e{bottom:902.853333pt;}
.y12d{bottom:903.973333pt;}
.y69{bottom:905.253333pt;}
.ye5{bottom:913.253333pt;}
.y194{bottom:915.653333pt;}
.y94{bottom:920.133333pt;}
.y14d{bottom:921.253333pt;}
.y12c{bottom:922.373333pt;}
.y3e{bottom:923.653333pt;}
.y13{bottom:926.053333pt;}
.ybe{bottom:929.253333pt;}
.y68{bottom:931.653333pt;}
.y93{bottom:938.533333pt;}
.ye4{bottom:939.653333pt;}
.y12b{bottom:940.773333pt;}
.y105{bottom:942.053333pt;}
.ybd{bottom:947.653333pt;}
.y3d{bottom:950.053333pt;}
.y12{bottom:952.453333pt;}
.ye3{bottom:958.053333pt;}
.y12a{bottom:959.173333pt;}
.y104{bottom:960.453333pt;}
.y92{bottom:965.893333pt;}
.ybc{bottom:966.053333pt;}
.y3c{bottom:968.453333pt;}
.ye2{bottom:976.453333pt;}
.y11{bottom:978.853333pt;}
.y129{bottom:985.573333pt;}
.y67{bottom:986.853333pt;}
.y91{bottom:993.573333pt;}
.y3b{bottom:994.853333pt;}
.y10{bottom:1005.253333pt;}
.y128{bottom:1011.973333pt;}
.y90{bottom:1012.133333pt;}
.y3a{bottom:1013.253333pt;}
.y4{bottom:1059.360000pt;}
.y1{bottom:1067.360000pt;}
.yb{bottom:1107.840000pt;}
.ya{bottom:1121.760000pt;}
.h6{height:17.440000pt;}
.h8{height:19.040000pt;}
.hb{height:25.120000pt;}
.h9{height:44.327188pt;}
.h2{height:48.800000pt;}
.hd{height:53.406250pt;}
.he{height:54.375000pt;}
.h7{height:54.390938pt;}
.hc{height:54.875000pt;}
.h4{height:56.800000pt;}
.ha{height:58.563750pt;}
.h5{height:60.288750pt;}
.h3{height:65.531250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.880000pt;}
.w8{width:75.546667pt;}
.w5{width:167.226667pt;}
.w4{width:170.746667pt;}
.w6{width:178.306667pt;}
.w2{width:319.266667pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.xd{left:9.600000pt;}
.x5{left:19.360000pt;}
.xa{left:27.720000pt;}
.x7{left:42.080000pt;}
.x3{left:45.440000pt;}
.xb{left:94.431988pt;}
.xf{left:130.911988pt;}
.xe{left:134.906655pt;}
.x2{left:143.240000pt;}
.x12{left:168.186655pt;}
.x1{left:188.826667pt;}
.x13{left:304.386655pt;}
.x11{left:364.546655pt;}
.x8{left:373.666667pt;}
.x10{left:396.866655pt;}
.x9{left:583.293333pt;}
.x4{left:676.453333pt;}
.xc{left:718.213333pt;}
}




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