
    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_7aecd2b7b07337f5b2740372.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_4dfb735c6d2e9e616039430b.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_a0e72dd747798b05eff05be3.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_fbb1e61b76ebddc8a96022cc.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_c5aa5dd372d83c5965cf0c36.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_f10ca0e56cb09fa4072036b5.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_4002c013eabd93925910b2cf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3370372b461c25b1a9ffe86d.woff2')format("woff");}.ff9{font-family:ff9;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);}
.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;}
.ls5{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.174000px;}
.ls10{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.720000px;}
.lse{letter-spacing:0.864000px;}
.lsf{letter-spacing:2.160000px;}
.lsc{letter-spacing:5.040000px;}
.ls9{letter-spacing:7.920000px;}
.ls8{letter-spacing:8.640000px;}
.lsb{letter-spacing:10.800000px;}
.lsa{letter-spacing:23.040000px;}
.lsd{letter-spacing:25.920000px;}
.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;}
}
.ws6{word-spacing:-18.720000px;}
.ws5{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-13.505760px;}
.ws3{word-spacing:0.000000px;}
._1a{margin-left:-5.256000px;}
._1b{margin-left:-3.816000px;}
._d{margin-left:-2.448000px;}
._2{margin-left:-1.152000px;}
._0{width:1.055520px;}
._15{width:2.138400px;}
._3{width:4.032000px;}
._4{width:5.400000px;}
._1d{width:7.056000px;}
._1c{width:8.352000px;}
._e{width:9.504000px;}
._f{width:10.800000px;}
._1e{width:12.024000px;}
._12{width:13.248000px;}
._10{width:14.544000px;}
._b{width:15.552000px;}
._c{width:16.704000px;}
._a{width:19.464480px;}
._2a{width:21.096000px;}
._11{width:22.104000px;}
._22{width:23.640480px;}
._2b{width:24.768000px;}
._5{width:25.776000px;}
._6{width:27.144000px;}
._7{width:28.224000px;}
._29{width:29.808000px;}
._2d{width:31.680000px;}
._13{width:33.120000px;}
._14{width:34.416000px;}
._21{width:35.928000px;}
._26{width:36.936000px;}
._1f{width:38.088000px;}
._20{width:39.240000px;}
._23{width:40.320000px;}
._24{width:41.688000px;}
._25{width:43.296480px;}
._2c{width:44.663040px;}
._27{width:46.224000px;}
._28{width:47.616480px;}
._2e{width:49.104000px;}
._2f{width:50.256000px;}
._19{width:52.392000px;}
._18{width:53.400000px;}
._8{width:54.432000px;}
._9{width:55.584000px;}
._30{width:56.760480px;}
._16{width:63.288000px;}
._17{width:64.800000px;}
._1{width:82.776000px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.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;}
.ye1{bottom:112.860000px;}
.y3b{bottom:114.660000px;}
.y6a{bottom:115.560000px;}
.y145{bottom:118.260000px;}
.yf8{bottom:119.160000px;}
.ybb{bottom:121.860000px;}
.y151{bottom:124.020000px;}
.y8e{bottom:124.560000px;}
.ycf{bottom:133.560000px;}
.y3a{bottom:135.360000px;}
.y69{bottom:136.260000px;}
.yba{bottom:142.560000px;}
.y8d{bottom:145.260000px;}
.y144{bottom:147.960000px;}
.yf7{bottom:148.860000px;}
.y150{bottom:153.720000px;}
.ya9{bottom:154.260000px;}
.y39{bottom:156.060000px;}
.y68{bottom:156.960000px;}
.yb9{bottom:163.260000px;}
.y8c{bottom:165.960000px;}
.y12c{bottom:172.260000px;}
.y14f{bottom:174.420000px;}
.ya8{bottom:174.960000px;}
.y38{bottom:176.760000px;}
.y67{bottom:177.660000px;}
.yf6{bottom:178.560000px;}
.yb8{bottom:183.960000px;}
.y8b{bottom:186.660000px;}
.ye0{bottom:192.960000px;}
.ya7{bottom:195.660000px;}
.y37{bottom:197.490000px;}
.y14e{bottom:200.190000px;}
.y12b{bottom:201.990000px;}
.yb7{bottom:204.690000px;}
.y66{bottom:207.390000px;}
.yf5{bottom:208.290000px;}
.ydf{bottom:213.690000px;}
.y8a{bottom:216.390000px;}
.y36{bottom:218.190000px;}
.y118{bottom:222.690000px;}
.yb6{bottom:225.390000px;}
.y65{bottom:228.090000px;}
.yde{bottom:234.390000px;}
.y89{bottom:237.090000px;}
.yf4{bottom:237.990000px;}
.y35{bottom:238.890000px;}
.yb5{bottom:246.090000px;}
.y64{bottom:248.790000px;}
.y117{bottom:252.390000px;}
.ydd{bottom:255.090000px;}
.y88{bottom:257.790000px;}
.y34{bottom:259.590000px;}
.ya6{bottom:266.790000px;}
.yf3{bottom:267.690000px;}
.y63{bottom:269.490000px;}
.y12a{bottom:273.090000px;}
.ydc{bottom:275.790000px;}
.yc9{bottom:278.490000px;}
.y33{bottom:280.290000px;}
.y116{bottom:282.090000px;}
.y87{bottom:287.490000px;}
.y62{bottom:290.190000px;}
.ydb{bottom:296.490000px;}
.yf2{bottom:297.390000px;}
.yd1{bottom:299.190000px;}
.y32{bottom:300.990000px;}
.y129{bottom:302.790000px;}
.y86{bottom:308.190000px;}
.y61{bottom:310.890000px;}
.y115{bottom:311.790000px;}
.yb4{bottom:317.190000px;}
.y31{bottom:321.690000px;}
.yda{bottom:326.190000px;}
.yf1{bottom:327.090000px;}
.y85{bottom:328.890000px;}
.y60{bottom:331.590000px;}
.y114{bottom:332.490000px;}
.yb3{bottom:337.890000px;}
.y30{bottom:342.390000px;}
.yd9{bottom:346.890000px;}
.y84{bottom:349.590000px;}
.y5f{bottom:352.290000px;}
.y143{bottom:355.890000px;}
.yf0{bottom:356.790000px;}
.yb2{bottom:358.590000px;}
.y113{bottom:362.190000px;}
.yd8{bottom:367.590000px;}
.y83{bottom:370.290000px;}
.y2f{bottom:372.090000px;}
.y5e{bottom:372.990000px;}
.y14b{bottom:379.290000px;}
.y128{bottom:382.890000px;}
.y142{bottom:385.590000px;}
.yef{bottom:386.490000px;}
.yb1{bottom:388.290000px;}
.y82{bottom:390.990000px;}
.y112{bottom:391.890000px;}
.yce{bottom:399.990000px;}
.y2e{bottom:401.790000px;}
.y5d{bottom:402.690000px;}
.yb0{bottom:408.990000px;}
.y81{bottom:411.690000px;}
.y127{bottom:412.590000px;}
.y141{bottom:415.290000px;}
.yee{bottom:416.190000px;}
.ycd{bottom:420.690000px;}
.y111{bottom:421.590000px;}
.y5c{bottom:423.390000px;}
.yaf{bottom:429.690000px;}
.y2d{bottom:431.490000px;}
.y80{bottom:432.390000px;}
.y126{bottom:433.290000px;}
.yd7{bottom:438.735000px;}
.yc8{bottom:441.435000px;}
.y5b{bottom:444.135000px;}
.y140{bottom:445.035000px;}
.yed{bottom:445.935000px;}
.yae{bottom:450.435000px;}
.y110{bottom:451.335000px;}
.y7f{bottom:453.135000px;}
.yd6{bottom:459.435000px;}
.y2c{bottom:461.235000px;}
.ya5{bottom:462.135000px;}
.y125{bottom:463.035000px;}
.y5a{bottom:464.835000px;}
.yad{bottom:471.135000px;}
.y7e{bottom:473.835000px;}
.y13f{bottom:474.735000px;}
.yec{bottom:475.635000px;}
.yd5{bottom:480.135000px;}
.y10f{bottom:481.035000px;}
.y2b{bottom:481.935000px;}
.yc1{bottom:482.835000px;}
.ya4{bottom:491.835000px;}
.y124{bottom:492.735000px;}
.y59{bottom:494.535000px;}
.yeb{bottom:496.335000px;}
.yd4{bottom:500.835000px;}
.y2a{bottom:502.635000px;}
.yc0{bottom:503.535000px;}
.y13e{bottom:504.435000px;}
.y10e{bottom:510.735000px;}
.ya3{bottom:512.535000px;}
.y58{bottom:515.235000px;}
.yd3{bottom:521.535000px;}
.y123{bottom:522.435000px;}
.y29{bottom:523.335000px;}
.ybf{bottom:524.235000px;}
.yea{bottom:526.035000px;}
.ya2{bottom:533.235000px;}
.y13d{bottom:534.135000px;}
.y57{bottom:535.935000px;}
.y10d{bottom:540.435000px;}
.yd2{bottom:542.235000px;}
.y28{bottom:544.035000px;}
.y7d{bottom:544.935000px;}
.y122{bottom:552.135000px;}
.yc7{bottom:553.935000px;}
.ye9{bottom:555.735000px;}
.y56{bottom:556.635000px;}
.ya1{bottom:562.935000px;}
.y13c{bottom:563.835000px;}
.y27{bottom:564.735000px;}
.y7c{bottom:565.635000px;}
.y10c{bottom:570.135000px;}
.yc6{bottom:574.635000px;}
.y55{bottom:577.335000px;}
.y121{bottom:581.835000px;}
.ya0{bottom:583.635000px;}
.y13b{bottom:584.535000px;}
.y26{bottom:585.435000px;}
.y7b{bottom:586.335000px;}
.yc5{bottom:595.335000px;}
.y54{bottom:598.035000px;}
.y10b{bottom:599.835000px;}
.y9f{bottom:604.335000px;}
.y25{bottom:606.135000px;}
.y7a{bottom:607.035000px;}
.y120{bottom:611.535000px;}
.y13a{bottom:614.235000px;}
.ye8{bottom:615.135000px;}
.yc4{bottom:616.035000px;}
.ye{bottom:617.475000px;}
.y53{bottom:618.735000px;}
.y10a{bottom:620.535000px;}
.y9e{bottom:625.035000px;}
.y24{bottom:626.835000px;}
.y79{bottom:627.735000px;}
.y11f{bottom:632.235000px;}
.yc3{bottom:636.735000px;}
.y52{bottom:639.435000px;}
.y139{bottom:643.935000px;}
.ye7{bottom:644.835000px;}
.y9d{bottom:645.735000px;}
.y23{bottom:647.535000px;}
.y78{bottom:648.435000px;}
.y109{bottom:650.235000px;}
.ycc{bottom:657.435000px;}
.y11e{bottom:661.935000px;}
.y9c{bottom:666.435000px;}
.y22{bottom:668.235000px;}
.y51{bottom:669.135000px;}
.y138{bottom:673.635000px;}
.ye6{bottom:674.565000px;}
.ycb{bottom:678.165000px;}
.y108{bottom:679.965000px;}
.y11d{bottom:682.665000px;}
.y9b{bottom:687.165000px;}
.y21{bottom:688.965000px;}
.y50{bottom:689.865000px;}
.ybe{bottom:698.865000px;}
.y107{bottom:700.665000px;}
.y137{bottom:703.365000px;}
.ye5{bottom:704.265000px;}
.y9a{bottom:707.865000px;}
.y20{bottom:709.665000px;}
.y4f{bottom:710.565000px;}
.y11c{bottom:712.365000px;}
.ybd{bottom:719.565000px;}
.y136{bottom:724.065000px;}
.yac{bottom:728.565000px;}
.y1f{bottom:730.365000px;}
.y4e{bottom:731.265000px;}
.ye4{bottom:733.965000px;}
.y99{bottom:737.565000px;}
.y77{bottom:740.265000px;}
.y11b{bottom:742.065000px;}
.yab{bottom:749.265000px;}
.y1e{bottom:751.065000px;}
.y4d{bottom:751.965000px;}
.y135{bottom:753.765000px;}
.y98{bottom:758.265000px;}
.y106{bottom:760.065000px;}
.ybc{bottom:760.965000px;}
.ye3{bottom:763.665000px;}
.y76{bottom:769.965000px;}
.y1d{bottom:771.765000px;}
.y4c{bottom:772.665000px;}
.y97{bottom:778.965000px;}
.y105{bottom:780.765000px;}
.y134{bottom:783.465000px;}
.y75{bottom:790.665000px;}
.y1c{bottom:792.465000px;}
.y4b{bottom:793.365000px;}
.y96{bottom:799.665000px;}
.y11a{bottom:801.465000px;}
.y104{bottom:810.465000px;}
.y74{bottom:811.365000px;}
.y1b{bottom:813.165000px;}
.y4a{bottom:814.065000px;}
.y95{bottom:820.365000px;}
.y103{bottom:831.165000px;}
.y73{bottom:832.065000px;}
.y1a{bottom:833.865000px;}
.y49{bottom:834.765000px;}
.y94{bottom:841.065000px;}
.y133{bottom:842.865000px;}
.ye2{bottom:843.765000px;}
.y72{bottom:852.765000px;}
.y48{bottom:855.465000px;}
.y102{bottom:860.865000px;}
.y93{bottom:861.765000px;}
.y19{bottom:863.565000px;}
.y14d{bottom:864.465000px;}
.y132{bottom:872.565000px;}
.y71{bottom:873.465000px;}
.y92{bottom:882.465000px;}
.y47{bottom:885.165000px;}
.y101{bottom:890.565000px;}
.y18{bottom:893.265000px;}
.y70{bottom:894.165000px;}
.y131{bottom:902.265000px;}
.y91{bottom:903.165000px;}
.yaa{bottom:912.165000px;}
.y46{bottom:914.910000px;}
.y100{bottom:920.310000px;}
.y17{bottom:923.010000px;}
.yc2{bottom:923.910000px;}
.y130{bottom:932.010000px;}
.y90{bottom:932.910000px;}
.y6f{bottom:935.610000px;}
.y119{bottom:941.010000px;}
.y45{bottom:944.610000px;}
.yff{bottom:950.010000px;}
.y16{bottom:952.710000px;}
.y8f{bottom:953.610000px;}
.y6e{bottom:956.310000px;}
.y12f{bottom:961.710000px;}
.yca{bottom:965.310000px;}
.yfe{bottom:970.710000px;}
.y44{bottom:974.310000px;}
.y14a{bottom:977.010000px;}
.y15{bottom:982.410000px;}
.y6d{bottom:986.010000px;}
.y12e{bottom:991.410000px;}
.y43{bottom:995.010000px;}
.y149{bottom:997.710000px;}
.yfd{bottom:1000.410000px;}
.y6c{bottom:1006.710000px;}
.y14{bottom:1012.110000px;}
.y42{bottom:1015.710000px;}
.y148{bottom:1018.410000px;}
.y12d{bottom:1021.110000px;}
.y6b{bottom:1027.410000px;}
.yfc{bottom:1030.110000px;}
.y41{bottom:1036.410000px;}
.y147{bottom:1039.110000px;}
.y13{bottom:1041.810000px;}
.yd0{bottom:1048.110000px;}
.yfb{bottom:1050.810000px;}
.y40{bottom:1057.110000px;}
.y146{bottom:1059.810000px;}
.y14c{bottom:1068.810000px;}
.y12{bottom:1071.510000px;}
.y3f{bottom:1077.810000px;}
.yfa{bottom:1080.510000px;}
.y3e{bottom:1098.510000px;}
.y11{bottom:1101.210000px;}
.yf9{bottom:1110.210000px;}
.y3d{bottom:1119.210000px;}
.y10{bottom:1130.910000px;}
.y3c{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;}
.xe{left:129.455987px;}
.xf{left:131.435987px;}
.x12{left:140.975987px;}
.x2{left:161.145000px;}
.x1{left:212.430000px;}
.x11{left:384.734987px;}
.x8{left:420.375000px;}
.x10{left:446.474987px;}
.x9{left:656.205000px;}
.x13{left:738.509987px;}
.x4{left:761.010000px;}
.xc{left:807.990000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.154667pt;}
.ls10{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.768000pt;}
.lsf{letter-spacing:1.920000pt;}
.lsc{letter-spacing:4.480000pt;}
.ls9{letter-spacing:7.040000pt;}
.ls8{letter-spacing:7.680000pt;}
.lsb{letter-spacing:9.600000pt;}
.lsa{letter-spacing:20.480000pt;}
.lsd{letter-spacing:23.040000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws5{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-12.005120pt;}
.ws3{word-spacing:0.000000pt;}
._1a{margin-left:-4.672000pt;}
._1b{margin-left:-3.392000pt;}
._d{margin-left:-2.176000pt;}
._2{margin-left:-1.024000pt;}
._0{width:0.938240pt;}
._15{width:1.900800pt;}
._3{width:3.584000pt;}
._4{width:4.800000pt;}
._1d{width:6.272000pt;}
._1c{width:7.424000pt;}
._e{width:8.448000pt;}
._f{width:9.600000pt;}
._1e{width:10.688000pt;}
._12{width:11.776000pt;}
._10{width:12.928000pt;}
._b{width:13.824000pt;}
._c{width:14.848000pt;}
._a{width:17.301760pt;}
._2a{width:18.752000pt;}
._11{width:19.648000pt;}
._22{width:21.013760pt;}
._2b{width:22.016000pt;}
._5{width:22.912000pt;}
._6{width:24.128000pt;}
._7{width:25.088000pt;}
._29{width:26.496000pt;}
._2d{width:28.160000pt;}
._13{width:29.440000pt;}
._14{width:30.592000pt;}
._21{width:31.936000pt;}
._26{width:32.832000pt;}
._1f{width:33.856000pt;}
._20{width:34.880000pt;}
._23{width:35.840000pt;}
._24{width:37.056000pt;}
._25{width:38.485760pt;}
._2c{width:39.700480pt;}
._27{width:41.088000pt;}
._28{width:42.325760pt;}
._2e{width:43.648000pt;}
._2f{width:44.672000pt;}
._19{width:46.570667pt;}
._18{width:47.466667pt;}
._8{width:48.384000pt;}
._9{width:49.408000pt;}
._30{width:50.453760pt;}
._16{width:56.256000pt;}
._17{width:57.600000pt;}
._1{width:73.578667pt;}
.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;}
.ye1{bottom:100.320000pt;}
.y3b{bottom:101.920000pt;}
.y6a{bottom:102.720000pt;}
.y145{bottom:105.120000pt;}
.yf8{bottom:105.920000pt;}
.ybb{bottom:108.320000pt;}
.y151{bottom:110.240000pt;}
.y8e{bottom:110.720000pt;}
.ycf{bottom:118.720000pt;}
.y3a{bottom:120.320000pt;}
.y69{bottom:121.120000pt;}
.yba{bottom:126.720000pt;}
.y8d{bottom:129.120000pt;}
.y144{bottom:131.520000pt;}
.yf7{bottom:132.320000pt;}
.y150{bottom:136.640000pt;}
.ya9{bottom:137.120000pt;}
.y39{bottom:138.720000pt;}
.y68{bottom:139.520000pt;}
.yb9{bottom:145.120000pt;}
.y8c{bottom:147.520000pt;}
.y12c{bottom:153.120000pt;}
.y14f{bottom:155.040000pt;}
.ya8{bottom:155.520000pt;}
.y38{bottom:157.120000pt;}
.y67{bottom:157.920000pt;}
.yf6{bottom:158.720000pt;}
.yb8{bottom:163.520000pt;}
.y8b{bottom:165.920000pt;}
.ye0{bottom:171.520000pt;}
.ya7{bottom:173.920000pt;}
.y37{bottom:175.546667pt;}
.y14e{bottom:177.946667pt;}
.y12b{bottom:179.546667pt;}
.yb7{bottom:181.946667pt;}
.y66{bottom:184.346667pt;}
.yf5{bottom:185.146667pt;}
.ydf{bottom:189.946667pt;}
.y8a{bottom:192.346667pt;}
.y36{bottom:193.946667pt;}
.y118{bottom:197.946667pt;}
.yb6{bottom:200.346667pt;}
.y65{bottom:202.746667pt;}
.yde{bottom:208.346667pt;}
.y89{bottom:210.746667pt;}
.yf4{bottom:211.546667pt;}
.y35{bottom:212.346667pt;}
.yb5{bottom:218.746667pt;}
.y64{bottom:221.146667pt;}
.y117{bottom:224.346667pt;}
.ydd{bottom:226.746667pt;}
.y88{bottom:229.146667pt;}
.y34{bottom:230.746667pt;}
.ya6{bottom:237.146667pt;}
.yf3{bottom:237.946667pt;}
.y63{bottom:239.546667pt;}
.y12a{bottom:242.746667pt;}
.ydc{bottom:245.146667pt;}
.yc9{bottom:247.546667pt;}
.y33{bottom:249.146667pt;}
.y116{bottom:250.746667pt;}
.y87{bottom:255.546667pt;}
.y62{bottom:257.946667pt;}
.ydb{bottom:263.546667pt;}
.yf2{bottom:264.346667pt;}
.yd1{bottom:265.946667pt;}
.y32{bottom:267.546667pt;}
.y129{bottom:269.146667pt;}
.y86{bottom:273.946667pt;}
.y61{bottom:276.346667pt;}
.y115{bottom:277.146667pt;}
.yb4{bottom:281.946667pt;}
.y31{bottom:285.946667pt;}
.yda{bottom:289.946667pt;}
.yf1{bottom:290.746667pt;}
.y85{bottom:292.346667pt;}
.y60{bottom:294.746667pt;}
.y114{bottom:295.546667pt;}
.yb3{bottom:300.346667pt;}
.y30{bottom:304.346667pt;}
.yd9{bottom:308.346667pt;}
.y84{bottom:310.746667pt;}
.y5f{bottom:313.146667pt;}
.y143{bottom:316.346667pt;}
.yf0{bottom:317.146667pt;}
.yb2{bottom:318.746667pt;}
.y113{bottom:321.946667pt;}
.yd8{bottom:326.746667pt;}
.y83{bottom:329.146667pt;}
.y2f{bottom:330.746667pt;}
.y5e{bottom:331.546667pt;}
.y14b{bottom:337.146667pt;}
.y128{bottom:340.346667pt;}
.y142{bottom:342.746667pt;}
.yef{bottom:343.546667pt;}
.yb1{bottom:345.146667pt;}
.y82{bottom:347.546667pt;}
.y112{bottom:348.346667pt;}
.yce{bottom:355.546667pt;}
.y2e{bottom:357.146667pt;}
.y5d{bottom:357.946667pt;}
.yb0{bottom:363.546667pt;}
.y81{bottom:365.946667pt;}
.y127{bottom:366.746667pt;}
.y141{bottom:369.146667pt;}
.yee{bottom:369.946667pt;}
.ycd{bottom:373.946667pt;}
.y111{bottom:374.746667pt;}
.y5c{bottom:376.346667pt;}
.yaf{bottom:381.946667pt;}
.y2d{bottom:383.546667pt;}
.y80{bottom:384.346667pt;}
.y126{bottom:385.146667pt;}
.yd7{bottom:389.986667pt;}
.yc8{bottom:392.386667pt;}
.y5b{bottom:394.786667pt;}
.y140{bottom:395.586667pt;}
.yed{bottom:396.386667pt;}
.yae{bottom:400.386667pt;}
.y110{bottom:401.186667pt;}
.y7f{bottom:402.786667pt;}
.yd6{bottom:408.386667pt;}
.y2c{bottom:409.986667pt;}
.ya5{bottom:410.786667pt;}
.y125{bottom:411.586667pt;}
.y5a{bottom:413.186667pt;}
.yad{bottom:418.786667pt;}
.y7e{bottom:421.186667pt;}
.y13f{bottom:421.986667pt;}
.yec{bottom:422.786667pt;}
.yd5{bottom:426.786667pt;}
.y10f{bottom:427.586667pt;}
.y2b{bottom:428.386667pt;}
.yc1{bottom:429.186667pt;}
.ya4{bottom:437.186667pt;}
.y124{bottom:437.986667pt;}
.y59{bottom:439.586667pt;}
.yeb{bottom:441.186667pt;}
.yd4{bottom:445.186667pt;}
.y2a{bottom:446.786667pt;}
.yc0{bottom:447.586667pt;}
.y13e{bottom:448.386667pt;}
.y10e{bottom:453.986667pt;}
.ya3{bottom:455.586667pt;}
.y58{bottom:457.986667pt;}
.yd3{bottom:463.586667pt;}
.y123{bottom:464.386667pt;}
.y29{bottom:465.186667pt;}
.ybf{bottom:465.986667pt;}
.yea{bottom:467.586667pt;}
.ya2{bottom:473.986667pt;}
.y13d{bottom:474.786667pt;}
.y57{bottom:476.386667pt;}
.y10d{bottom:480.386667pt;}
.yd2{bottom:481.986667pt;}
.y28{bottom:483.586667pt;}
.y7d{bottom:484.386667pt;}
.y122{bottom:490.786667pt;}
.yc7{bottom:492.386667pt;}
.ye9{bottom:493.986667pt;}
.y56{bottom:494.786667pt;}
.ya1{bottom:500.386667pt;}
.y13c{bottom:501.186667pt;}
.y27{bottom:501.986667pt;}
.y7c{bottom:502.786667pt;}
.y10c{bottom:506.786667pt;}
.yc6{bottom:510.786667pt;}
.y55{bottom:513.186667pt;}
.y121{bottom:517.186667pt;}
.ya0{bottom:518.786667pt;}
.y13b{bottom:519.586667pt;}
.y26{bottom:520.386667pt;}
.y7b{bottom:521.186667pt;}
.yc5{bottom:529.186667pt;}
.y54{bottom:531.586667pt;}
.y10b{bottom:533.186667pt;}
.y9f{bottom:537.186667pt;}
.y25{bottom:538.786667pt;}
.y7a{bottom:539.586667pt;}
.y120{bottom:543.586667pt;}
.y13a{bottom:545.986667pt;}
.ye8{bottom:546.786667pt;}
.yc4{bottom:547.586667pt;}
.ye{bottom:548.866667pt;}
.y53{bottom:549.986667pt;}
.y10a{bottom:551.586667pt;}
.y9e{bottom:555.586667pt;}
.y24{bottom:557.186667pt;}
.y79{bottom:557.986667pt;}
.y11f{bottom:561.986667pt;}
.yc3{bottom:565.986667pt;}
.y52{bottom:568.386667pt;}
.y139{bottom:572.386667pt;}
.ye7{bottom:573.186667pt;}
.y9d{bottom:573.986667pt;}
.y23{bottom:575.586667pt;}
.y78{bottom:576.386667pt;}
.y109{bottom:577.986667pt;}
.ycc{bottom:584.386667pt;}
.y11e{bottom:588.386667pt;}
.y9c{bottom:592.386667pt;}
.y22{bottom:593.986667pt;}
.y51{bottom:594.786667pt;}
.y138{bottom:598.786667pt;}
.ye6{bottom:599.613333pt;}
.ycb{bottom:602.813333pt;}
.y108{bottom:604.413333pt;}
.y11d{bottom:606.813333pt;}
.y9b{bottom:610.813333pt;}
.y21{bottom:612.413333pt;}
.y50{bottom:613.213333pt;}
.ybe{bottom:621.213333pt;}
.y107{bottom:622.813333pt;}
.y137{bottom:625.213333pt;}
.ye5{bottom:626.013333pt;}
.y9a{bottom:629.213333pt;}
.y20{bottom:630.813333pt;}
.y4f{bottom:631.613333pt;}
.y11c{bottom:633.213333pt;}
.ybd{bottom:639.613333pt;}
.y136{bottom:643.613333pt;}
.yac{bottom:647.613333pt;}
.y1f{bottom:649.213333pt;}
.y4e{bottom:650.013333pt;}
.ye4{bottom:652.413333pt;}
.y99{bottom:655.613333pt;}
.y77{bottom:658.013333pt;}
.y11b{bottom:659.613333pt;}
.yab{bottom:666.013333pt;}
.y1e{bottom:667.613333pt;}
.y4d{bottom:668.413333pt;}
.y135{bottom:670.013333pt;}
.y98{bottom:674.013333pt;}
.y106{bottom:675.613333pt;}
.ybc{bottom:676.413333pt;}
.ye3{bottom:678.813333pt;}
.y76{bottom:684.413333pt;}
.y1d{bottom:686.013333pt;}
.y4c{bottom:686.813333pt;}
.y97{bottom:692.413333pt;}
.y105{bottom:694.013333pt;}
.y134{bottom:696.413333pt;}
.y75{bottom:702.813333pt;}
.y1c{bottom:704.413333pt;}
.y4b{bottom:705.213333pt;}
.y96{bottom:710.813333pt;}
.y11a{bottom:712.413333pt;}
.y104{bottom:720.413333pt;}
.y74{bottom:721.213333pt;}
.y1b{bottom:722.813333pt;}
.y4a{bottom:723.613333pt;}
.y95{bottom:729.213333pt;}
.y103{bottom:738.813333pt;}
.y73{bottom:739.613333pt;}
.y1a{bottom:741.213333pt;}
.y49{bottom:742.013333pt;}
.y94{bottom:747.613333pt;}
.y133{bottom:749.213333pt;}
.ye2{bottom:750.013333pt;}
.y72{bottom:758.013333pt;}
.y48{bottom:760.413333pt;}
.y102{bottom:765.213333pt;}
.y93{bottom:766.013333pt;}
.y19{bottom:767.613333pt;}
.y14d{bottom:768.413333pt;}
.y132{bottom:775.613333pt;}
.y71{bottom:776.413333pt;}
.y92{bottom:784.413333pt;}
.y47{bottom:786.813333pt;}
.y101{bottom:791.613333pt;}
.y18{bottom:794.013333pt;}
.y70{bottom:794.813333pt;}
.y131{bottom:802.013333pt;}
.y91{bottom:802.813333pt;}
.yaa{bottom:810.813333pt;}
.y46{bottom:813.253333pt;}
.y100{bottom:818.053333pt;}
.y17{bottom:820.453333pt;}
.yc2{bottom:821.253333pt;}
.y130{bottom:828.453333pt;}
.y90{bottom:829.253333pt;}
.y6f{bottom:831.653333pt;}
.y119{bottom:836.453333pt;}
.y45{bottom:839.653333pt;}
.yff{bottom:844.453333pt;}
.y16{bottom:846.853333pt;}
.y8f{bottom:847.653333pt;}
.y6e{bottom:850.053333pt;}
.y12f{bottom:854.853333pt;}
.yca{bottom:858.053333pt;}
.yfe{bottom:862.853333pt;}
.y44{bottom:866.053333pt;}
.y14a{bottom:868.453333pt;}
.y15{bottom:873.253333pt;}
.y6d{bottom:876.453333pt;}
.y12e{bottom:881.253333pt;}
.y43{bottom:884.453333pt;}
.y149{bottom:886.853333pt;}
.yfd{bottom:889.253333pt;}
.y6c{bottom:894.853333pt;}
.y14{bottom:899.653333pt;}
.y42{bottom:902.853333pt;}
.y148{bottom:905.253333pt;}
.y12d{bottom:907.653333pt;}
.y6b{bottom:913.253333pt;}
.yfc{bottom:915.653333pt;}
.y41{bottom:921.253333pt;}
.y147{bottom:923.653333pt;}
.y13{bottom:926.053333pt;}
.yd0{bottom:931.653333pt;}
.yfb{bottom:934.053333pt;}
.y40{bottom:939.653333pt;}
.y146{bottom:942.053333pt;}
.y14c{bottom:950.053333pt;}
.y12{bottom:952.453333pt;}
.y3f{bottom:958.053333pt;}
.yfa{bottom:960.453333pt;}
.y3e{bottom:976.453333pt;}
.y11{bottom:978.853333pt;}
.yf9{bottom:986.853333pt;}
.y3d{bottom:994.853333pt;}
.y10{bottom:1005.253333pt;}
.y3c{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;}
.xe{left:115.071988pt;}
.xf{left:116.831988pt;}
.x12{left:125.311988pt;}
.x2{left:143.240000pt;}
.x1{left:188.826667pt;}
.x11{left:341.986655pt;}
.x8{left:373.666667pt;}
.x10{left:396.866655pt;}
.x9{left:583.293333pt;}
.x13{left:656.453322pt;}
.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; }
  