
    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_6e778a11666c2ae3a1894833.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a35cc5e70f9a9d595a89a64d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_0d49cd6980264829f7387c0e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_d9f566c444831f9b80d2dc73.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c35b9d9c780a17ff2140d964.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-12.960000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.792000px;}
.ls6{letter-spacing:150.624000px;}
.lsa{letter-spacing:180.864000px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws7{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws4{word-spacing:-14.993280px;}
.ws0{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.518000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._23{margin-left:-10.680000px;}
._1b{margin-left:-2.334000px;}
._0{margin-left:-1.134000px;}
._1{width:1.182000px;}
._17{width:2.199600px;}
._6{width:3.240240px;}
._7{width:4.540320px;}
._1c{width:5.904000px;}
._b{width:7.410240px;}
._5{width:8.964000px;}
._e{width:10.590720px;}
._a{width:12.513360px;}
._9{width:13.804560px;}
._21{width:14.832000px;}
._f{width:16.015680px;}
._4{width:17.688960px;}
._3{width:18.764640px;}
._1e{width:20.112000px;}
._1f{width:21.645360px;}
._25{width:22.663200px;}
._22{width:23.688000px;}
._19{width:24.768000px;}
._18{width:25.992000px;}
._20{width:27.000000px;}
._26{width:28.076160px;}
._10{width:29.103120px;}
._8{width:30.895920px;}
._1a{width:32.456160px;}
._12{width:33.777600px;}
._11{width:34.899840px;}
._1d{width:35.953200px;}
._24{width:37.507200px;}
._2b{width:38.538000px;}
._28{width:40.456800px;}
._c{width:41.533200px;}
._d{width:43.040400px;}
._27{width:44.095200px;}
._2c{width:45.495600px;}
._2d{width:46.918800px;}
._2a{width:52.200000px;}
._29{width:53.352000px;}
._2{width:57.420000px;}
._13{width:60.596640px;}
._15{width:183.204240px;}
._14{width:187.673040px;}
._16{width:846.156000px;}
.fc2{color:transparent;}
.fc1{color:rgb(56,86,35);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:3.240000px;}
.y4{bottom:13.500000px;}
.y31{bottom:20.520000px;}
.y5{bottom:21.060000px;}
.y3{bottom:28.980000px;}
.y30{bottom:37.800000px;}
.y2{bottom:44.460000px;}
.y2f{bottom:55.080000px;}
.y8{bottom:57.420000px;}
.y35{bottom:57.600000px;}
.y2e{bottom:72.180000px;}
.y7{bottom:77.616000px;}
.y2d{bottom:89.460000px;}
.y2c{bottom:106.740000px;}
.y66{bottom:110.196000px;}
.yc6{bottom:115.596000px;}
.y15a{bottom:123.696000px;}
.y2b{bottom:124.020000px;}
.ye5{bottom:124.596000px;}
.y102{bottom:129.996000px;}
.yaf{bottom:133.596000px;}
.y150{bottom:135.396000px;}
.yc5{bottom:136.296000px;}
.y65{bottom:139.896000px;}
.y2a{bottom:141.300000px;}
.y112{bottom:142.596000px;}
.y90{bottom:144.036000px;}
.y159{bottom:144.396000px;}
.ye4{bottom:145.296000px;}
.y101{bottom:150.690000px;}
.yae{bottom:154.290000px;}
.y14f{bottom:156.090000px;}
.yc4{bottom:156.990000px;}
.y29{bottom:158.400000px;}
.y64{bottom:160.590000px;}
.y111{bottom:163.290000px;}
.y8f{bottom:164.730000px;}
.y158{bottom:165.090000px;}
.ye3{bottom:165.990000px;}
.y132{bottom:174.090000px;}
.yad{bottom:174.990000px;}
.y28{bottom:175.680000px;}
.y155{bottom:176.790000px;}
.yd7{bottom:177.690000px;}
.y100{bottom:180.390000px;}
.y63{bottom:181.290000px;}
.y110{bottom:183.990000px;}
.y8e{bottom:185.430000px;}
.y14e{bottom:185.790000px;}
.yc3{bottom:186.690000px;}
.y27{bottom:192.960000px;}
.y131{bottom:194.790000px;}
.yac{bottom:195.690000px;}
.yea{bottom:198.390000px;}
.y8d{bottom:206.130000px;}
.y14d{bottom:206.490000px;}
.yd6{bottom:207.390000px;}
.yff{bottom:210.090000px;}
.y26{bottom:210.240000px;}
.y62{bottom:210.990000px;}
.y10f{bottom:213.690000px;}
.y130{bottom:215.490000px;}
.yab{bottom:216.390000px;}
.ye9{bottom:219.090000px;}
.y8c{bottom:226.830000px;}
.y14c{bottom:227.190000px;}
.y25{bottom:227.520000px;}
.yd5{bottom:228.090000px;}
.yfe{bottom:230.790000px;}
.yaa{bottom:237.090000px;}
.ye8{bottom:239.790000px;}
.y61{bottom:240.690000px;}
.y10e{bottom:243.390000px;}
.y24{bottom:244.800000px;}
.y12f{bottom:245.190000px;}
.y8b{bottom:247.530000px;}
.yd4{bottom:248.790000px;}
.y14b{bottom:256.890000px;}
.ya9{bottom:257.790000px;}
.ye7{bottom:260.490000px;}
.y60{bottom:261.390000px;}
.y23{bottom:261.930000px;}
.y10d{bottom:264.090000px;}
.y12e{bottom:265.890000px;}
.yd3{bottom:269.490000px;}
.y8a{bottom:277.230000px;}
.y14a{bottom:277.590000px;}
.yc2{bottom:278.490000px;}
.y22{bottom:279.210000px;}
.yfd{bottom:281.190000px;}
.y5f{bottom:282.090000px;}
.y10c{bottom:284.790000px;}
.y12d{bottom:286.590000px;}
.ya8{bottom:287.490000px;}
.yd2{bottom:290.190000px;}
.y21{bottom:296.490000px;}
.y33{bottom:297.930000px;}
.y149{bottom:298.290000px;}
.yc1{bottom:299.190000px;}
.yfc{bottom:301.890000px;}
.y5e{bottom:302.790000px;}
.y10b{bottom:305.490000px;}
.ya7{bottom:308.190000px;}
.yd1{bottom:310.890000px;}
.y20{bottom:313.770000px;}
.y12c{bottom:316.290000px;}
.y89{bottom:318.630000px;}
.ye2{bottom:319.890000px;}
.yfb{bottom:322.590000px;}
.y5d{bottom:323.490000px;}
.y10a{bottom:326.190000px;}
.y148{bottom:327.990000px;}
.ya6{bottom:328.890000px;}
.y1f{bottom:331.050000px;}
.yd0{bottom:331.590000px;}
.y12b{bottom:337.035000px;}
.y88{bottom:339.375000px;}
.ye1{bottom:340.635000px;}
.yfa{bottom:343.335000px;}
.y5c{bottom:344.235000px;}
.y12{bottom:344.415000px;}
.y162{bottom:346.035000px;}
.y109{bottom:346.935000px;}
.y1e{bottom:348.330000px;}
.y147{bottom:348.735000px;}
.ya5{bottom:349.635000px;}
.ycf{bottom:352.335000px;}
.y12a{bottom:357.735000px;}
.y87{bottom:360.075000px;}
.ye0{bottom:361.335000px;}
.yf9{bottom:364.035000px;}
.y5b{bottom:364.935000px;}
.y1d{bottom:365.430000px;}
.y161{bottom:366.735000px;}
.y108{bottom:367.635000px;}
.y146{bottom:369.435000px;}
.ya4{bottom:370.335000px;}
.y154{bottom:378.435000px;}
.y86{bottom:380.775000px;}
.yce{bottom:382.035000px;}
.y1c{bottom:382.710000px;}
.yf8{bottom:384.735000px;}
.y5a{bottom:385.635000px;}
.y129{bottom:387.435000px;}
.y107{bottom:388.335000px;}
.ya3{bottom:391.035000px;}
.y145{bottom:399.135000px;}
.y1b{bottom:399.990000px;}
.y85{bottom:401.475000px;}
.ydf{bottom:402.735000px;}
.yf7{bottom:405.435000px;}
.y59{bottom:406.335000px;}
.y128{bottom:408.135000px;}
.y106{bottom:409.035000px;}
.ya2{bottom:411.735000px;}
.y1a{bottom:417.270000px;}
.y144{bottom:419.835000px;}
.y84{bottom:422.175000px;}
.yde{bottom:423.435000px;}
.yf6{bottom:426.135000px;}
.y58{bottom:427.035000px;}
.y127{bottom:428.835000px;}
.y105{bottom:429.735000px;}
.ya1{bottom:432.435000px;}
.y19{bottom:434.550000px;}
.y160{bottom:437.835000px;}
.y83{bottom:442.875000px;}
.yf5{bottom:446.835000px;}
.y57{bottom:447.735000px;}
.y143{bottom:449.535000px;}
.y104{bottom:450.435000px;}
.y18{bottom:451.650000px;}
.ya0{bottom:453.135000px;}
.y126{bottom:458.535000px;}
.yc0{bottom:462.135000px;}
.y82{bottom:463.575000px;}
.y56{bottom:468.435000px;}
.y17{bottom:468.930000px;}
.y142{bottom:470.235000px;}
.y103{bottom:471.135000px;}
.ydd{bottom:473.835000px;}
.yf4{bottom:476.535000px;}
.y125{bottom:479.235000px;}
.y9f{bottom:482.835000px;}
.y81{bottom:484.275000px;}
.y16{bottom:486.210000px;}
.y55{bottom:489.135000px;}
.y141{bottom:490.935000px;}
.ycd{bottom:491.835000px;}
.ydc{bottom:494.535000px;}
.y153{bottom:499.935000px;}
.y15{bottom:503.490000px;}
.y9e{bottom:503.535000px;}
.y80{bottom:504.975000px;}
.yf3{bottom:506.235000px;}
.y124{bottom:508.935000px;}
.y54{bottom:509.835000px;}
.ycc{bottom:512.535000px;}
.ydb{bottom:515.235000px;}
.y140{bottom:520.635000px;}
.y14{bottom:520.770000px;}
.y9d{bottom:524.235000px;}
.y123{bottom:529.635000px;}
.y53{bottom:530.535000px;}
.ycb{bottom:533.235000px;}
.y7f{bottom:534.675000px;}
.yda{bottom:535.935000px;}
.y13{bottom:538.095000px;}
.y13f{bottom:541.335000px;}
.y9c{bottom:544.935000px;}
.y122{bottom:550.335000px;}
.y52{bottom:551.235000px;}
.yca{bottom:553.935000px;}
.y7e{bottom:555.375000px;}
.yd9{bottom:556.635000px;}
.y13e{bottom:562.035000px;}
.y9b{bottom:565.635000px;}
.y121{bottom:571.035000px;}
.y51{bottom:571.935000px;}
.yc9{bottom:574.635000px;}
.y7d{bottom:576.075000px;}
.y15f{bottom:580.035000px;}
.y13d{bottom:582.735000px;}
.y9a{bottom:586.335000px;}
.y152{bottom:591.735000px;}
.y50{bottom:592.635000px;}
.ybf{bottom:595.335000px;}
.y7c{bottom:596.775000px;}
.y120{bottom:600.735000px;}
.y99{bottom:607.065000px;}
.y13c{bottom:612.465000px;}
.y4f{bottom:613.365000px;}
.ybe{bottom:616.065000px;}
.y7b{bottom:617.505000px;}
.y11f{bottom:621.465000px;}
.y98{bottom:627.765000px;}
.y13b{bottom:633.165000px;}
.y4e{bottom:634.065000px;}
.ybd{bottom:636.765000px;}
.y7a{bottom:638.205000px;}
.y11e{bottom:642.165000px;}
.y97{bottom:648.465000px;}
.y15e{bottom:651.165000px;}
.y13a{bottom:653.865000px;}
.y4d{bottom:654.765000px;}
.ybc{bottom:657.465000px;}
.y79{bottom:658.905000px;}
.y96{bottom:669.165000px;}
.y11d{bottom:671.865000px;}
.y4c{bottom:675.465000px;}
.ybb{bottom:678.165000px;}
.y78{bottom:679.605000px;}
.y139{bottom:683.565000px;}
.yc8{bottom:687.165000px;}
.yf2{bottom:689.865000px;}
.y11c{bottom:692.565000px;}
.y4b{bottom:696.165000px;}
.y95{bottom:698.865000px;}
.y138{bottom:704.265000px;}
.yc7{bottom:707.865000px;}
.y77{bottom:709.305000px;}
.yf1{bottom:710.565000px;}
.y11b{bottom:713.265000px;}
.y4a{bottom:716.865000px;}
.yba{bottom:719.565000px;}
.y15d{bottom:722.265000px;}
.y94{bottom:728.565000px;}
.yf0{bottom:731.265000px;}
.y11a{bottom:733.965000px;}
.y49{bottom:737.565000px;}
.y76{bottom:739.005000px;}
.yd8{bottom:740.265000px;}
.y157{bottom:742.965000px;}
.y93{bottom:749.265000px;}
.y137{bottom:754.665000px;}
.y48{bottom:758.265000px;}
.ye6{bottom:760.965000px;}
.y119{bottom:763.665000px;}
.y75{bottom:768.705000px;}
.y92{bottom:769.965000px;}
.y136{bottom:775.365000px;}
.y47{bottom:778.965000px;}
.yef{bottom:781.665000px;}
.y118{bottom:784.365000px;}
.y74{bottom:789.405000px;}
.y91{bottom:790.665000px;}
.y15c{bottom:793.365000px;}
.y46{bottom:799.665000px;}
.y117{bottom:805.065000px;}
.y73{bottom:811.365000px;}
.y156{bottom:814.065000px;}
.y45{bottom:820.365000px;}
.y135{bottom:825.765000px;}
.yb9{bottom:832.065000px;}
.y72{bottom:832.245000px;}
.y116{bottom:834.765000px;}
.y44{bottom:841.065000px;}
.y134{bottom:846.465000px;}
.yb8{bottom:852.765000px;}
.y71{bottom:854.205000px;}
.y115{bottom:855.465000px;}
.y43{bottom:861.765000px;}
.y15b{bottom:864.465000px;}
.yb7{bottom:873.510000px;}
.y70{bottom:874.950000px;}
.y114{bottom:876.210000px;}
.y42{bottom:882.510000px;}
.y151{bottom:885.210000px;}
.yb6{bottom:894.210000px;}
.y133{bottom:896.910000px;}
.y11{bottom:900.330000px;}
.y41{bottom:903.210000px;}
.y6f{bottom:905.910000px;}
.yee{bottom:912.210000px;}
.yb5{bottom:914.910000px;}
.y10{bottom:920.310000px;}
.y40{bottom:923.910000px;}
.y6e{bottom:926.610000px;}
.yed{bottom:932.910000px;}
.yb4{bottom:935.610000px;}
.yf{bottom:942.810000px;}
.y3f{bottom:944.610000px;}
.y113{bottom:947.310000px;}
.yec{bottom:953.610000px;}
.y6d{bottom:956.310000px;}
.ye{bottom:960.090000px;}
.y3e{bottom:965.310000px;}
.yeb{bottom:974.310000px;}
.y6c{bottom:977.010000px;}
.yd{bottom:981.870000px;}
.y3d{bottom:986.010000px;}
.yb3{bottom:995.010000px;}
.y6b{bottom:997.710000px;}
.y3c{bottom:1006.710000px;}
.yc{bottom:1011.570000px;}
.yb2{bottom:1015.710000px;}
.y6a{bottom:1018.410000px;}
.y3b{bottom:1027.410000px;}
.yb1{bottom:1036.410000px;}
.yb{bottom:1041.270000px;}
.y3a{bottom:1048.110000px;}
.yb0{bottom:1057.110000px;}
.y39{bottom:1068.810000px;}
.ya{bottom:1070.970000px;}
.y69{bottom:1077.810000px;}
.y38{bottom:1089.510000px;}
.y9{bottom:1091.670000px;}
.y68{bottom:1098.510000px;}
.y37{bottom:1110.210000px;}
.y67{bottom:1119.210000px;}
.y6{bottom:1121.910000px;}
.y36{bottom:1139.940000px;}
.y1{bottom:1142.100000px;}
.y34{bottom:1194.480000px;}
.h7{height:38.158594px;}
.h3{height:52.998047px;}
.hc{height:53.573906px;}
.h4{height:54.421875px;}
.hb{height:58.651172px;}
.ha{height:60.226875px;}
.he{height:64.546875px;}
.h5{height:65.884219px;}
.h2{height:67.680000px;}
.h8{height:70.664062px;}
.h6{height:72.562500px;}
.hd{height:74.004654px;}
.h9{height:551.955000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:17.280000px;}
.w3{width:74.700000px;}
.w8{width:214.770000px;}
.w4{width:230.250000px;}
.w2{width:349.095000px;}
.w6{width:427.035000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x4{left:66.600000px;}
.xf{left:106.235987px;}
.x1{left:119.556000px;}
.x7{left:127.655987px;}
.x9{left:129.275987px;}
.x11{left:148.715987px;}
.xc{left:202.169987px;}
.x6{left:203.805000px;}
.xa{left:297.974987px;}
.x10{left:339.194987px;}
.x8{left:434.054987px;}
.xb{left:446.474987px;}
.x3{left:468.645000px;}
.x5{left:543.345000px;}
.xd{left:554.685000px;}
.xe{left:571.965000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-11.520000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.704000pt;}
.ls6{letter-spacing:133.888000pt;}
.lsa{letter-spacing:160.768000pt;}
.ws8{word-spacing:-64.000000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws4{word-spacing:-13.327360pt;}
.ws0{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.016000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._23{margin-left:-9.493333pt;}
._1b{margin-left:-2.074667pt;}
._0{margin-left:-1.008000pt;}
._1{width:1.050667pt;}
._17{width:1.955200pt;}
._6{width:2.880213pt;}
._7{width:4.035840pt;}
._1c{width:5.248000pt;}
._b{width:6.586880pt;}
._5{width:7.968000pt;}
._e{width:9.413973pt;}
._a{width:11.122987pt;}
._9{width:12.270720pt;}
._21{width:13.184000pt;}
._f{width:14.236160pt;}
._4{width:15.723520pt;}
._3{width:16.679680pt;}
._1e{width:17.877333pt;}
._1f{width:19.240320pt;}
._25{width:20.145067pt;}
._22{width:21.056000pt;}
._19{width:22.016000pt;}
._18{width:23.104000pt;}
._20{width:24.000000pt;}
._26{width:24.956587pt;}
._10{width:25.869440pt;}
._8{width:27.463040pt;}
._1a{width:28.849920pt;}
._12{width:30.024533pt;}
._11{width:31.022080pt;}
._1d{width:31.958400pt;}
._24{width:33.339733pt;}
._2b{width:34.256000pt;}
._28{width:35.961600pt;}
._c{width:36.918400pt;}
._d{width:38.258133pt;}
._27{width:39.195733pt;}
._2c{width:40.440533pt;}
._2d{width:41.705600pt;}
._2a{width:46.400000pt;}
._29{width:47.424000pt;}
._2{width:51.040000pt;}
._13{width:53.863680pt;}
._15{width:162.848213pt;}
._14{width:166.820480pt;}
._16{width:752.138667pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:2.880000pt;}
.y4{bottom:12.000000pt;}
.y31{bottom:18.240000pt;}
.y5{bottom:18.720000pt;}
.y3{bottom:25.760000pt;}
.y30{bottom:33.600000pt;}
.y2{bottom:39.520000pt;}
.y2f{bottom:48.960000pt;}
.y8{bottom:51.040000pt;}
.y35{bottom:51.200000pt;}
.y2e{bottom:64.160000pt;}
.y7{bottom:68.992000pt;}
.y2d{bottom:79.520000pt;}
.y2c{bottom:94.880000pt;}
.y66{bottom:97.952000pt;}
.yc6{bottom:102.752000pt;}
.y15a{bottom:109.952000pt;}
.y2b{bottom:110.240000pt;}
.ye5{bottom:110.752000pt;}
.y102{bottom:115.552000pt;}
.yaf{bottom:118.752000pt;}
.y150{bottom:120.352000pt;}
.yc5{bottom:121.152000pt;}
.y65{bottom:124.352000pt;}
.y2a{bottom:125.600000pt;}
.y112{bottom:126.752000pt;}
.y90{bottom:128.032000pt;}
.y159{bottom:128.352000pt;}
.ye4{bottom:129.152000pt;}
.y101{bottom:133.946667pt;}
.yae{bottom:137.146667pt;}
.y14f{bottom:138.746667pt;}
.yc4{bottom:139.546667pt;}
.y29{bottom:140.800000pt;}
.y64{bottom:142.746667pt;}
.y111{bottom:145.146667pt;}
.y8f{bottom:146.426667pt;}
.y158{bottom:146.746667pt;}
.ye3{bottom:147.546667pt;}
.y132{bottom:154.746667pt;}
.yad{bottom:155.546667pt;}
.y28{bottom:156.160000pt;}
.y155{bottom:157.146667pt;}
.yd7{bottom:157.946667pt;}
.y100{bottom:160.346667pt;}
.y63{bottom:161.146667pt;}
.y110{bottom:163.546667pt;}
.y8e{bottom:164.826667pt;}
.y14e{bottom:165.146667pt;}
.yc3{bottom:165.946667pt;}
.y27{bottom:171.520000pt;}
.y131{bottom:173.146667pt;}
.yac{bottom:173.946667pt;}
.yea{bottom:176.346667pt;}
.y8d{bottom:183.226667pt;}
.y14d{bottom:183.546667pt;}
.yd6{bottom:184.346667pt;}
.yff{bottom:186.746667pt;}
.y26{bottom:186.880000pt;}
.y62{bottom:187.546667pt;}
.y10f{bottom:189.946667pt;}
.y130{bottom:191.546667pt;}
.yab{bottom:192.346667pt;}
.ye9{bottom:194.746667pt;}
.y8c{bottom:201.626667pt;}
.y14c{bottom:201.946667pt;}
.y25{bottom:202.240000pt;}
.yd5{bottom:202.746667pt;}
.yfe{bottom:205.146667pt;}
.yaa{bottom:210.746667pt;}
.ye8{bottom:213.146667pt;}
.y61{bottom:213.946667pt;}
.y10e{bottom:216.346667pt;}
.y24{bottom:217.600000pt;}
.y12f{bottom:217.946667pt;}
.y8b{bottom:220.026667pt;}
.yd4{bottom:221.146667pt;}
.y14b{bottom:228.346667pt;}
.ya9{bottom:229.146667pt;}
.ye7{bottom:231.546667pt;}
.y60{bottom:232.346667pt;}
.y23{bottom:232.826667pt;}
.y10d{bottom:234.746667pt;}
.y12e{bottom:236.346667pt;}
.yd3{bottom:239.546667pt;}
.y8a{bottom:246.426667pt;}
.y14a{bottom:246.746667pt;}
.yc2{bottom:247.546667pt;}
.y22{bottom:248.186667pt;}
.yfd{bottom:249.946667pt;}
.y5f{bottom:250.746667pt;}
.y10c{bottom:253.146667pt;}
.y12d{bottom:254.746667pt;}
.ya8{bottom:255.546667pt;}
.yd2{bottom:257.946667pt;}
.y21{bottom:263.546667pt;}
.y33{bottom:264.826667pt;}
.y149{bottom:265.146667pt;}
.yc1{bottom:265.946667pt;}
.yfc{bottom:268.346667pt;}
.y5e{bottom:269.146667pt;}
.y10b{bottom:271.546667pt;}
.ya7{bottom:273.946667pt;}
.yd1{bottom:276.346667pt;}
.y20{bottom:278.906667pt;}
.y12c{bottom:281.146667pt;}
.y89{bottom:283.226667pt;}
.ye2{bottom:284.346667pt;}
.yfb{bottom:286.746667pt;}
.y5d{bottom:287.546667pt;}
.y10a{bottom:289.946667pt;}
.y148{bottom:291.546667pt;}
.ya6{bottom:292.346667pt;}
.y1f{bottom:294.266667pt;}
.yd0{bottom:294.746667pt;}
.y12b{bottom:299.586667pt;}
.y88{bottom:301.666667pt;}
.ye1{bottom:302.786667pt;}
.yfa{bottom:305.186667pt;}
.y5c{bottom:305.986667pt;}
.y12{bottom:306.146667pt;}
.y162{bottom:307.586667pt;}
.y109{bottom:308.386667pt;}
.y1e{bottom:309.626667pt;}
.y147{bottom:309.986667pt;}
.ya5{bottom:310.786667pt;}
.ycf{bottom:313.186667pt;}
.y12a{bottom:317.986667pt;}
.y87{bottom:320.066667pt;}
.ye0{bottom:321.186667pt;}
.yf9{bottom:323.586667pt;}
.y5b{bottom:324.386667pt;}
.y1d{bottom:324.826667pt;}
.y161{bottom:325.986667pt;}
.y108{bottom:326.786667pt;}
.y146{bottom:328.386667pt;}
.ya4{bottom:329.186667pt;}
.y154{bottom:336.386667pt;}
.y86{bottom:338.466667pt;}
.yce{bottom:339.586667pt;}
.y1c{bottom:340.186667pt;}
.yf8{bottom:341.986667pt;}
.y5a{bottom:342.786667pt;}
.y129{bottom:344.386667pt;}
.y107{bottom:345.186667pt;}
.ya3{bottom:347.586667pt;}
.y145{bottom:354.786667pt;}
.y1b{bottom:355.546667pt;}
.y85{bottom:356.866667pt;}
.ydf{bottom:357.986667pt;}
.yf7{bottom:360.386667pt;}
.y59{bottom:361.186667pt;}
.y128{bottom:362.786667pt;}
.y106{bottom:363.586667pt;}
.ya2{bottom:365.986667pt;}
.y1a{bottom:370.906667pt;}
.y144{bottom:373.186667pt;}
.y84{bottom:375.266667pt;}
.yde{bottom:376.386667pt;}
.yf6{bottom:378.786667pt;}
.y58{bottom:379.586667pt;}
.y127{bottom:381.186667pt;}
.y105{bottom:381.986667pt;}
.ya1{bottom:384.386667pt;}
.y19{bottom:386.266667pt;}
.y160{bottom:389.186667pt;}
.y83{bottom:393.666667pt;}
.yf5{bottom:397.186667pt;}
.y57{bottom:397.986667pt;}
.y143{bottom:399.586667pt;}
.y104{bottom:400.386667pt;}
.y18{bottom:401.466667pt;}
.ya0{bottom:402.786667pt;}
.y126{bottom:407.586667pt;}
.yc0{bottom:410.786667pt;}
.y82{bottom:412.066667pt;}
.y56{bottom:416.386667pt;}
.y17{bottom:416.826667pt;}
.y142{bottom:417.986667pt;}
.y103{bottom:418.786667pt;}
.ydd{bottom:421.186667pt;}
.yf4{bottom:423.586667pt;}
.y125{bottom:425.986667pt;}
.y9f{bottom:429.186667pt;}
.y81{bottom:430.466667pt;}
.y16{bottom:432.186667pt;}
.y55{bottom:434.786667pt;}
.y141{bottom:436.386667pt;}
.ycd{bottom:437.186667pt;}
.ydc{bottom:439.586667pt;}
.y153{bottom:444.386667pt;}
.y15{bottom:447.546667pt;}
.y9e{bottom:447.586667pt;}
.y80{bottom:448.866667pt;}
.yf3{bottom:449.986667pt;}
.y124{bottom:452.386667pt;}
.y54{bottom:453.186667pt;}
.ycc{bottom:455.586667pt;}
.ydb{bottom:457.986667pt;}
.y140{bottom:462.786667pt;}
.y14{bottom:462.906667pt;}
.y9d{bottom:465.986667pt;}
.y123{bottom:470.786667pt;}
.y53{bottom:471.586667pt;}
.ycb{bottom:473.986667pt;}
.y7f{bottom:475.266667pt;}
.yda{bottom:476.386667pt;}
.y13{bottom:478.306667pt;}
.y13f{bottom:481.186667pt;}
.y9c{bottom:484.386667pt;}
.y122{bottom:489.186667pt;}
.y52{bottom:489.986667pt;}
.yca{bottom:492.386667pt;}
.y7e{bottom:493.666667pt;}
.yd9{bottom:494.786667pt;}
.y13e{bottom:499.586667pt;}
.y9b{bottom:502.786667pt;}
.y121{bottom:507.586667pt;}
.y51{bottom:508.386667pt;}
.yc9{bottom:510.786667pt;}
.y7d{bottom:512.066667pt;}
.y15f{bottom:515.586667pt;}
.y13d{bottom:517.986667pt;}
.y9a{bottom:521.186667pt;}
.y152{bottom:525.986667pt;}
.y50{bottom:526.786667pt;}
.ybf{bottom:529.186667pt;}
.y7c{bottom:530.466667pt;}
.y120{bottom:533.986667pt;}
.y99{bottom:539.613333pt;}
.y13c{bottom:544.413333pt;}
.y4f{bottom:545.213333pt;}
.ybe{bottom:547.613333pt;}
.y7b{bottom:548.893333pt;}
.y11f{bottom:552.413333pt;}
.y98{bottom:558.013333pt;}
.y13b{bottom:562.813333pt;}
.y4e{bottom:563.613333pt;}
.ybd{bottom:566.013333pt;}
.y7a{bottom:567.293333pt;}
.y11e{bottom:570.813333pt;}
.y97{bottom:576.413333pt;}
.y15e{bottom:578.813333pt;}
.y13a{bottom:581.213333pt;}
.y4d{bottom:582.013333pt;}
.ybc{bottom:584.413333pt;}
.y79{bottom:585.693333pt;}
.y96{bottom:594.813333pt;}
.y11d{bottom:597.213333pt;}
.y4c{bottom:600.413333pt;}
.ybb{bottom:602.813333pt;}
.y78{bottom:604.093333pt;}
.y139{bottom:607.613333pt;}
.yc8{bottom:610.813333pt;}
.yf2{bottom:613.213333pt;}
.y11c{bottom:615.613333pt;}
.y4b{bottom:618.813333pt;}
.y95{bottom:621.213333pt;}
.y138{bottom:626.013333pt;}
.yc7{bottom:629.213333pt;}
.y77{bottom:630.493333pt;}
.yf1{bottom:631.613333pt;}
.y11b{bottom:634.013333pt;}
.y4a{bottom:637.213333pt;}
.yba{bottom:639.613333pt;}
.y15d{bottom:642.013333pt;}
.y94{bottom:647.613333pt;}
.yf0{bottom:650.013333pt;}
.y11a{bottom:652.413333pt;}
.y49{bottom:655.613333pt;}
.y76{bottom:656.893333pt;}
.yd8{bottom:658.013333pt;}
.y157{bottom:660.413333pt;}
.y93{bottom:666.013333pt;}
.y137{bottom:670.813333pt;}
.y48{bottom:674.013333pt;}
.ye6{bottom:676.413333pt;}
.y119{bottom:678.813333pt;}
.y75{bottom:683.293333pt;}
.y92{bottom:684.413333pt;}
.y136{bottom:689.213333pt;}
.y47{bottom:692.413333pt;}
.yef{bottom:694.813333pt;}
.y118{bottom:697.213333pt;}
.y74{bottom:701.693333pt;}
.y91{bottom:702.813333pt;}
.y15c{bottom:705.213333pt;}
.y46{bottom:710.813333pt;}
.y117{bottom:715.613333pt;}
.y73{bottom:721.213333pt;}
.y156{bottom:723.613333pt;}
.y45{bottom:729.213333pt;}
.y135{bottom:734.013333pt;}
.yb9{bottom:739.613333pt;}
.y72{bottom:739.773333pt;}
.y116{bottom:742.013333pt;}
.y44{bottom:747.613333pt;}
.y134{bottom:752.413333pt;}
.yb8{bottom:758.013333pt;}
.y71{bottom:759.293333pt;}
.y115{bottom:760.413333pt;}
.y43{bottom:766.013333pt;}
.y15b{bottom:768.413333pt;}
.yb7{bottom:776.453333pt;}
.y70{bottom:777.733333pt;}
.y114{bottom:778.853333pt;}
.y42{bottom:784.453333pt;}
.y151{bottom:786.853333pt;}
.yb6{bottom:794.853333pt;}
.y133{bottom:797.253333pt;}
.y11{bottom:800.293333pt;}
.y41{bottom:802.853333pt;}
.y6f{bottom:805.253333pt;}
.yee{bottom:810.853333pt;}
.yb5{bottom:813.253333pt;}
.y10{bottom:818.053333pt;}
.y40{bottom:821.253333pt;}
.y6e{bottom:823.653333pt;}
.yed{bottom:829.253333pt;}
.yb4{bottom:831.653333pt;}
.yf{bottom:838.053333pt;}
.y3f{bottom:839.653333pt;}
.y113{bottom:842.053333pt;}
.yec{bottom:847.653333pt;}
.y6d{bottom:850.053333pt;}
.ye{bottom:853.413333pt;}
.y3e{bottom:858.053333pt;}
.yeb{bottom:866.053333pt;}
.y6c{bottom:868.453333pt;}
.yd{bottom:872.773333pt;}
.y3d{bottom:876.453333pt;}
.yb3{bottom:884.453333pt;}
.y6b{bottom:886.853333pt;}
.y3c{bottom:894.853333pt;}
.yc{bottom:899.173333pt;}
.yb2{bottom:902.853333pt;}
.y6a{bottom:905.253333pt;}
.y3b{bottom:913.253333pt;}
.yb1{bottom:921.253333pt;}
.yb{bottom:925.573333pt;}
.y3a{bottom:931.653333pt;}
.yb0{bottom:939.653333pt;}
.y39{bottom:950.053333pt;}
.ya{bottom:951.973333pt;}
.y69{bottom:958.053333pt;}
.y38{bottom:968.453333pt;}
.y9{bottom:970.373333pt;}
.y68{bottom:976.453333pt;}
.y37{bottom:986.853333pt;}
.y67{bottom:994.853333pt;}
.y6{bottom:997.253333pt;}
.y36{bottom:1013.280000pt;}
.y1{bottom:1015.200000pt;}
.y34{bottom:1061.760000pt;}
.h7{height:33.918750pt;}
.h3{height:47.109375pt;}
.hc{height:47.621250pt;}
.h4{height:48.375000pt;}
.hb{height:52.134375pt;}
.ha{height:53.535000pt;}
.he{height:57.375000pt;}
.h5{height:58.563750pt;}
.h2{height:60.160000pt;}
.h8{height:62.812500pt;}
.h6{height:64.500000pt;}
.hd{height:65.781915pt;}
.h9{height:490.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:15.360000pt;}
.w3{width:66.400000pt;}
.w8{width:190.906667pt;}
.w4{width:204.666667pt;}
.w2{width:310.306667pt;}
.w6{width:379.586667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x4{left:59.200000pt;}
.xf{left:94.431988pt;}
.x1{left:106.272000pt;}
.x7{left:113.471988pt;}
.x9{left:114.911988pt;}
.x11{left:132.191988pt;}
.xc{left:179.706655pt;}
.x6{left:181.160000pt;}
.xa{left:264.866655pt;}
.x10{left:301.506655pt;}
.x8{left:385.826655pt;}
.xb{left:396.866655pt;}
.x3{left:416.573333pt;}
.x5{left:482.973333pt;}
.xd{left:493.053333pt;}
.xe{left:508.413333pt;}
}




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