
    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_421a3d65fb33c93aaa718e11.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.272949;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b871a1827e3e615f7c5b83a2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_87f0581d7d7de601b443fe28.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_8686872cf05dc9c65af49c46.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cc9a40f6c9348ad442bc8eff.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_abdffeacac9ea3c9a416ca19.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.470017px;}
.ls2{letter-spacing:0.512089px;}
.ls1{letter-spacing:1.910305px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-60.480000px;}
.ws0{word-spacing:-16.813440px;}
.ws1{word-spacing:0.000000px;}
._5{margin-left:-2.855432px;}
._0{margin-left:-1.473120px;}
._1{width:1.995840px;}
._c{width:3.226692px;}
._10{width:4.396045px;}
._8{width:5.646240px;}
._6{width:6.656010px;}
._7{width:8.550214px;}
._d{width:9.555840px;}
._e{width:11.007360px;}
._b{width:12.539968px;}
._a{width:13.785579px;}
._9{width:14.839200px;}
._2{width:18.321120px;}
._f{width:19.569512px;}
._14{width:20.602080px;}
._15{width:21.634560px;}
._11{width:22.965728px;}
._1b{width:24.334560px;}
._13{width:25.371448px;}
._12{width:26.865992px;}
._27{width:28.287360px;}
._26{width:29.730152px;}
._1a{width:31.147200px;}
._19{width:32.641920px;}
._23{width:33.924960px;}
._4{width:36.712883px;}
._3{width:38.213280px;}
._2a{width:85.365548px;}
._29{width:86.425920px;}
._24{width:123.379200px;}
._25{width:125.107845px;}
._28{width:155.983720px;}
._17{width:168.528993px;}
._18{width:171.409569px;}
._16{width:173.741505px;}
._1d{width:176.986080px;}
._1c{width:190.594080px;}
._2c{width:193.436640px;}
._21{width:221.680800px;}
._22{width:223.007040px;}
._1e{width:319.718880px;}
._1f{width:799.541192px;}
._2b{width:2140.711200px;}
._20{width:2262.055680px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fs0{font-size:47.520000px;}
.fs4{font-size:60.480000px;}
.fs1{font-size:66.239400px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:109.800000px;}
.ya4{bottom:111.240000px;}
.y124{bottom:114.479850px;}
.yf6{bottom:118.800000px;}
.y6e{bottom:124.200000px;}
.y39{bottom:124.560000px;}
.y183{bottom:124.920000px;}
.ycc{bottom:125.640000px;}
.ya3{bottom:128.520000px;}
.y123{bottom:131.760000px;}
.yf5{bottom:136.080000px;}
.y38{bottom:138.960000px;}
.y6d{bottom:141.479850px;}
.y182{bottom:142.200000px;}
.ycb{bottom:142.920000px;}
.ya2{bottom:145.800000px;}
.y143{bottom:148.680000px;}
.yf4{bottom:153.360000px;}
.y37{bottom:153.720000px;}
.y122{bottom:154.800000px;}
.y181{bottom:159.480000px;}
.yca{bottom:160.200000px;}
.y6c{bottom:164.880000px;}
.y142{bottom:165.960000px;}
.y36{bottom:168.480000px;}
.ya1{bottom:169.200000px;}
.yf3{bottom:170.640000px;}
.yc9{bottom:177.480000px;}
.y15d{bottom:178.200000px;}
.y121{bottom:178.560000px;}
.y6b{bottom:182.160000px;}
.y180{bottom:182.520000px;}
.y35{bottom:182.880000px;}
.y141{bottom:183.240000px;}
.yf2{bottom:187.920000px;}
.ya0{bottom:192.600000px;}
.yc8{bottom:194.760000px;}
.y15c{bottom:195.480000px;}
.y120{bottom:195.840000px;}
.y140{bottom:200.520000px;}
.y34{bottom:203.760000px;}
.y6a{bottom:205.200000px;}
.y17f{bottom:205.920000px;}
.y9f{bottom:209.520000px;}
.yc7{bottom:211.680000px;}
.y11f{bottom:212.760000px;}
.y33{bottom:213.480000px;}
.y15b{bottom:218.520000px;}
.yf1{bottom:222.480000px;}
.y17e{bottom:223.200000px;}
.y13f{bottom:223.920000px;}
.y9e{bottom:226.800000px;}
.y69{bottom:228.600000px;}
.yc6{bottom:228.960000px;}
.y11e{bottom:235.800000px;}
.yf0{bottom:239.760000px;}
.y17d{bottom:240.480000px;}
.y15a{bottom:241.920000px;}
.y9d{bottom:244.440000px;}
.yc5{bottom:246.240000px;}
.y13e{bottom:246.960000px;}
.y32{bottom:249.480000px;}
.y68{bottom:251.640000px;}
.yef{bottom:256.680000px;}
.y11d{bottom:259.200000px;}
.y9c{bottom:261.360000px;}
.yc4{bottom:263.520000px;}
.y13d{bottom:264.600000px;}
.y159{bottom:264.960000px;}
.y31{bottom:266.760000px;}
.yee{bottom:273.960000px;}
.y67{bottom:275.040000px;}
.y11c{bottom:276.480000px;}
.y9b{bottom:278.640000px;}
.yc3{bottom:280.800000px;}
.y13c{bottom:281.880000px;}
.y30{bottom:284.040000px;}
.y17c{bottom:286.920000px;}
.y158{bottom:288.360000px;}
.yed{bottom:291.240000px;}
.y11b{bottom:293.400000px;}
.y9a{bottom:295.920000px;}
.yc2{bottom:298.080000px;}
.y66{bottom:298.440000px;}
.y13b{bottom:298.800000px;}
.y2f{bottom:301.320000px;}
.y17b{bottom:304.200000px;}
.yec{bottom:308.520000px;}
.y157{bottom:311.400000px;}
.y99{bottom:313.200000px;}
.yc1{bottom:315.360000px;}
.y11a{bottom:316.800000px;}
.y2e{bottom:318.600000px;}
.y65{bottom:321.480000px;}
.y13a{bottom:322.200000px;}
.yeb{bottom:325.800000px;}
.y17a{bottom:327.240000px;}
.y156{bottom:328.680000px;}
.y98{bottom:330.480000px;}
.yc0{bottom:332.640000px;}
.y2d{bottom:335.880000px;}
.y64{bottom:338.760000px;}
.y119{bottom:340.200000px;}
.yea{bottom:343.080000px;}
.y139{bottom:345.240000px;}
.y155{bottom:345.960000px;}
.y97{bottom:347.400000px;}
.ybf{bottom:349.920000px;}
.y179{bottom:350.640000px;}
.y2c{bottom:352.800000px;}
.y118{bottom:357.480000px;}
.y63{bottom:362.160000px;}
.y96{bottom:364.680000px;}
.ye9{bottom:366.480000px;}
.ybe{bottom:367.200000px;}
.y178{bottom:367.920000px;}
.y138{bottom:368.640000px;}
.y154{bottom:369.360000px;}
.y2b{bottom:370.080000px;}
.y117{bottom:374.400000px;}
.y95{bottom:382.320000px;}
.ybd{bottom:384.480000px;}
.y62{bottom:385.200000px;}
.y137{bottom:385.920000px;}
.y2a{bottom:387.360000px;}
.ye8{bottom:389.520000px;}
.y177{bottom:390.960000px;}
.y153{bottom:392.400000px;}
.y116{bottom:397.800000px;}
.ybc{bottom:401.400000px;}
.y29{bottom:404.640000px;}
.y94{bottom:405.360000px;}
.ye7{bottom:406.800000px;}
.y61{bottom:408.600000px;}
.y136{bottom:408.960000px;}
.y152{bottom:409.680000px;}
.y176{bottom:414.360000px;}
.ybb{bottom:418.680000px;}
.y115{bottom:421.200000px;}
.y28{bottom:421.920000px;}
.ye6{bottom:424.080000px;}
.y135{bottom:426.240000px;}
.y151{bottom:426.960000px;}
.y93{bottom:428.400000px;}
.y175{bottom:431.640000px;}
.y60{bottom:432.720000px;}
.yba{bottom:436.320000px;}
.y114{bottom:438.480000px;}
.y27{bottom:439.200000px;}
.ye5{bottom:441.360000px;}
.y134{bottom:443.520000px;}
.y150{bottom:444.240000px;}
.y92{bottom:445.680000px;}
.y174{bottom:448.920000px;}
.yb9{bottom:453.240000px;}
.y113{bottom:455.400000px;}
.y5f{bottom:456.120000px;}
.y26{bottom:456.480000px;}
.ye4{bottom:458.640000px;}
.y14f{bottom:461.520000px;}
.y91{bottom:463.320000px;}
.y173{bottom:466.200000px;}
.y133{bottom:466.920000px;}
.yb8{bottom:470.520000px;}
.y25{bottom:473.760000px;}
.ye3{bottom:475.920000px;}
.y112{bottom:478.800000px;}
.y5e{bottom:479.160000px;}
.y90{bottom:480.240000px;}
.yb7{bottom:487.800000px;}
.y172{bottom:489.240000px;}
.y132{bottom:489.960000px;}
.y24{bottom:491.040000px;}
.ye2{bottom:493.200000px;}
.y8f{bottom:497.520000px;}
.y111{bottom:502.200000px;}
.y5d{bottom:502.560000px;}
.yb6{bottom:505.080000px;}
.y23{bottom:508.320000px;}
.ye1{bottom:510.480000px;}
.y171{bottom:512.640000px;}
.y131{bottom:513.720000px;}
.y8e{bottom:514.800000px;}
.y110{bottom:519.480000px;}
.yb5{bottom:522.360000px;}
.y14e{bottom:525.240000px;}
.y5c{bottom:525.960000px;}
.ye0{bottom:527.400000px;}
.y170{bottom:529.920000px;}
.y130{bottom:531.000000px;}
.y22{bottom:531.360000px;}
.y8d{bottom:532.080000px;}
.y10f{bottom:536.400000px;}
.yb4{bottom:539.640000px;}
.y14d{bottom:542.520000px;}
.ydf{bottom:544.680000px;}
.y21{bottom:548.640000px;}
.y5b{bottom:549.000000px;}
.y8c{bottom:549.720000px;}
.y16f{bottom:552.960000px;}
.y10e{bottom:553.680000px;}
.yb3{bottom:556.920000px;}
.y14c{bottom:559.800000px;}
.yde{bottom:561.960000px;}
.y20{bottom:565.920000px;}
.y16e{bottom:570.240000px;}
.y8b{bottom:572.400000px;}
.y5a{bottom:573.480000px;}
.yb2{bottom:574.200000px;}
.y10d{bottom:577.080000px;}
.ydd{bottom:579.240000px;}
.y1f{bottom:583.200000px;}
.y16d{bottom:587.520000px;}
.y8a{bottom:589.680000px;}
.yb1{bottom:591.480000px;}
.y14b{bottom:594.360000px;}
.y59{bottom:596.520000px;}
.y1e{bottom:600.480000px;}
.y12f{bottom:600.840000px;}
.y89{bottom:606.960000px;}
.yb0{bottom:608.400000px;}
.y16c{bottom:610.920000px;}
.y14a{bottom:611.640000px;}
.ydc{bottom:613.800000px;}
.y10c{bottom:617.400000px;}
.y1d{bottom:617.760000px;}
.y58{bottom:619.920000px;}
.y88{bottom:624.240000px;}
.yaf{bottom:625.680000px;}
.ydb{bottom:631.080000px;}
.y16b{bottom:633.960000px;}
.y10b{bottom:634.680000px;}
.y1c{bottom:641.160000px;}
.y87{bottom:641.520000px;}
.y57{bottom:642.960000px;}
.yda{bottom:648.360000px;}
.y10a{bottom:651.960000px;}
.y16a{bottom:657.360000px;}
.y12e{bottom:658.080000px;}
.y86{bottom:658.800000px;}
.y56{bottom:660.240000px;}
.y1b{bottom:664.560000px;}
.yd9{bottom:665.640000px;}
.y109{bottom:675.360000px;}
.y85{bottom:676.080000px;}
.y55{bottom:677.520000px;}
.y169{bottom:680.400000px;}
.y1a{bottom:681.480000px;}
.yd8{bottom:682.920000px;}
.y84{bottom:693.360000px;}
.y54{bottom:694.800000px;}
.y168{bottom:697.680000px;}
.y108{bottom:698.400000px;}
.y12d{bottom:698.760000px;}
.yd7{bottom:700.200000px;}
.y19{bottom:704.520000px;}
.y83{bottom:710.640000px;}
.y53{bottom:712.080000px;}
.y107{bottom:715.680000px;}
.y167{bottom:721.080000px;}
.y18{bottom:721.800000px;}
.yd6{bottom:723.240000px;}
.y82{bottom:727.920000px;}
.y52{bottom:729.360000px;}
.y106{bottom:732.960000px;}
.y12c{bottom:739.080000px;}
.yd5{bottom:740.520000px;}
.y166{bottom:744.120000px;}
.y81{bottom:745.200000px;}
.y17{bottom:745.560000px;}
.y51{bottom:746.640000px;}
.y105{bottom:750.600000px;}
.y149{bottom:756.360000px;}
.yd4{bottom:757.800000px;}
.y165{bottom:761.400000px;}
.y80{bottom:762.120000px;}
.y50{bottom:763.920000px;}
.y104{bottom:767.520000px;}
.y16{bottom:769.320000px;}
.y148{bottom:773.640000px;}
.yd3{bottom:775.080000px;}
.y7f{bottom:779.400000px;}
.y4f{bottom:781.200000px;}
.y164{bottom:784.800000px;}
.y103{bottom:790.920000px;}
.yd2{bottom:792.360000px;}
.y15{bottom:795.960000px;}
.y7e{bottom:796.680000px;}
.yae{bottom:798.120000px;}
.y4e{bottom:798.480000px;}
.y163{bottom:808.200000px;}
.yd1{bottom:809.640000px;}
.y7d{bottom:813.960000px;}
.y4d{bottom:815.400000px;}
.y14{bottom:815.760000px;}
.y162{bottom:825.120000px;}
.yd0{bottom:826.920000px;}
.y7c{bottom:831.240000px;}
.y4c{bottom:832.680000px;}
.y13{bottom:833.040000px;}
.y147{bottom:837.360000px;}
.y161{bottom:842.400000px;}
.y12b{bottom:848.520000px;}
.y102{bottom:848.880000px;}
.y4b{bottom:849.960000px;}
.y12{bottom:850.680000px;}
.y7b{bottom:854.640000px;}
.y101{bottom:865.800000px;}
.y4a{bottom:867.240000px;}
.y11{bottom:867.960000px;}
.y7a{bottom:871.920000px;}
.ycf{bottom:873.360000px;}
.y146{bottom:877.680000px;}
.y49{bottom:884.520000px;}
.y10{bottom:884.880000px;}
.y79{bottom:889.200000px;}
.yce{bottom:890.640000px;}
.y12a{bottom:894.960000px;}
.y48{bottom:901.800000px;}
.y78{bottom:906.120000px;}
.yf{bottom:907.560000px;}
.ycd{bottom:907.920000px;}
.y100{bottom:912.600000px;}
.y129{bottom:918.360000px;}
.yad{bottom:919.080000px;}
.y77{bottom:923.400000px;}
.y47{bottom:925.200000px;}
.ye{bottom:928.800000px;}
.yff{bottom:935.640000px;}
.yac{bottom:936.360000px;}
.y76{bottom:940.680000px;}
.y145{bottom:941.400000px;}
.y46{bottom:942.120000px;}
.y128{bottom:952.920000px;}
.yab{bottom:953.640000px;}
.yd{bottom:954.000000px;}
.y75{bottom:957.960000px;}
.yfe{bottom:958.680000px;}
.y45{bottom:959.400000px;}
.yaa{bottom:970.920000px;}
.yc{bottom:973.800000px;}
.yfd{bottom:975.960000px;}
.y44{bottom:976.680000px;}
.y74{bottom:981.360000px;}
.ya9{bottom:988.200000px;}
.yfc{bottom:993.240000px;}
.yb{bottom:993.600000px;}
.y43{bottom:993.960000px;}
.y127{bottom:999.360000px;}
.y160{bottom:1004.400000px;}
.y73{bottom:1004.760000px;}
.ya8{bottom:1005.120000px;}
.yfb{bottom:1010.520000px;}
.y42{bottom:1011.240000px;}
.ya{bottom:1013.400000px;}
.y126{bottom:1016.640000px;}
.y15f{bottom:1021.680000px;}
.ya7{bottom:1022.400000px;}
.y72{bottom:1027.800000px;}
.y41{bottom:1028.520000px;}
.y125{bottom:1033.920000px;}
.y9{bottom:1034.640000px;}
.ya6{bottom:1039.680000px;}
.yfa{bottom:1045.080000px;}
.y40{bottom:1045.800000px;}
.y71{bottom:1050.840000px;}
.y8{bottom:1055.520000px;}
.ya5{bottom:1056.960000px;}
.yf9{bottom:1062.720000px;}
.y3f{bottom:1063.080000px;}
.y15e{bottom:1068.120000px;}
.y70{bottom:1074.240000px;}
.y7{bottom:1076.040000px;}
.y3e{bottom:1080.360000px;}
.yf8{bottom:1085.400000px;}
.y6f{bottom:1091.520000px;}
.y3d{bottom:1097.640000px;}
.y6{bottom:1102.320000px;}
.y144{bottom:1108.800000px;}
.yf7{bottom:1109.160000px;}
.y3c{bottom:1114.920000px;}
.y5{bottom:1128.960000px;}
.y3b{bottom:1131.840000px;}
.y4{bottom:1150.200000px;}
.y3{bottom:1169.280000px;}
.y2{bottom:1184.040000px;}
.y1{bottom:1198.800000px;}
.h8{height:30.682969px;}
.h1{height:48.216094px;}
.h5{height:49.561875px;}
.h7{height:63.078750px;}
.h2{height:67.209704px;}
.h6{height:70.664062px;}
.h3{height:72.562500px;}
.h4{height:75.093750px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.439850px;}
.x4{left:180.360000px;}
.x3{left:181.440000px;}
.x2{left:393.120000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.417793pt;}
.ls2{letter-spacing:0.455190pt;}
.ls1{letter-spacing:1.698049pt;}
.ws2{word-spacing:-53.760000pt;}
.ws0{word-spacing:-14.945280pt;}
.ws1{word-spacing:0.000000pt;}
._5{margin-left:-2.538162pt;}
._0{margin-left:-1.309440pt;}
._1{width:1.774080pt;}
._c{width:2.868171pt;}
._10{width:3.907596pt;}
._8{width:5.018880pt;}
._6{width:5.916453pt;}
._7{width:7.600190pt;}
._d{width:8.494080pt;}
._e{width:9.784320pt;}
._b{width:11.146639pt;}
._a{width:12.253848pt;}
._9{width:13.190400pt;}
._2{width:16.285440pt;}
._f{width:17.395122pt;}
._14{width:18.312960pt;}
._15{width:19.230720pt;}
._11{width:20.413981pt;}
._1b{width:21.630720pt;}
._13{width:22.552398pt;}
._12{width:23.880882pt;}
._27{width:25.144320pt;}
._26{width:26.426802pt;}
._1a{width:27.686400pt;}
._19{width:29.015040pt;}
._23{width:30.155520pt;}
._4{width:32.633674pt;}
._3{width:33.967360pt;}
._2a{width:75.880487pt;}
._29{width:76.823040pt;}
._24{width:109.670400pt;}
._25{width:111.206973pt;}
._28{width:138.652196pt;}
._17{width:149.803549pt;}
._18{width:152.364061pt;}
._16{width:154.436893pt;}
._1d{width:157.320960pt;}
._1c{width:169.416960pt;}
._2c{width:171.943680pt;}
._21{width:197.049600pt;}
._22{width:198.228480pt;}
._1e{width:284.194560pt;}
._1f{width:710.703282pt;}
._2b{width:1902.854400pt;}
._20{width:2010.716160pt;}
.fs3{font-size:26.880000pt;}
.fs0{font-size:42.240000pt;}
.fs4{font-size:53.760000pt;}
.fs1{font-size:58.879467pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:97.600000pt;}
.ya4{bottom:98.880000pt;}
.y124{bottom:101.759867pt;}
.yf6{bottom:105.600000pt;}
.y6e{bottom:110.400000pt;}
.y39{bottom:110.720000pt;}
.y183{bottom:111.040000pt;}
.ycc{bottom:111.680000pt;}
.ya3{bottom:114.240000pt;}
.y123{bottom:117.120000pt;}
.yf5{bottom:120.960000pt;}
.y38{bottom:123.520000pt;}
.y6d{bottom:125.759867pt;}
.y182{bottom:126.400000pt;}
.ycb{bottom:127.040000pt;}
.ya2{bottom:129.600000pt;}
.y143{bottom:132.160000pt;}
.yf4{bottom:136.320000pt;}
.y37{bottom:136.640000pt;}
.y122{bottom:137.600000pt;}
.y181{bottom:141.760000pt;}
.yca{bottom:142.400000pt;}
.y6c{bottom:146.560000pt;}
.y142{bottom:147.520000pt;}
.y36{bottom:149.760000pt;}
.ya1{bottom:150.400000pt;}
.yf3{bottom:151.680000pt;}
.yc9{bottom:157.760000pt;}
.y15d{bottom:158.400000pt;}
.y121{bottom:158.720000pt;}
.y6b{bottom:161.920000pt;}
.y180{bottom:162.240000pt;}
.y35{bottom:162.560000pt;}
.y141{bottom:162.880000pt;}
.yf2{bottom:167.040000pt;}
.ya0{bottom:171.200000pt;}
.yc8{bottom:173.120000pt;}
.y15c{bottom:173.760000pt;}
.y120{bottom:174.080000pt;}
.y140{bottom:178.240000pt;}
.y34{bottom:181.120000pt;}
.y6a{bottom:182.400000pt;}
.y17f{bottom:183.040000pt;}
.y9f{bottom:186.240000pt;}
.yc7{bottom:188.160000pt;}
.y11f{bottom:189.120000pt;}
.y33{bottom:189.760000pt;}
.y15b{bottom:194.240000pt;}
.yf1{bottom:197.760000pt;}
.y17e{bottom:198.400000pt;}
.y13f{bottom:199.040000pt;}
.y9e{bottom:201.600000pt;}
.y69{bottom:203.200000pt;}
.yc6{bottom:203.520000pt;}
.y11e{bottom:209.600000pt;}
.yf0{bottom:213.120000pt;}
.y17d{bottom:213.760000pt;}
.y15a{bottom:215.040000pt;}
.y9d{bottom:217.280000pt;}
.yc5{bottom:218.880000pt;}
.y13e{bottom:219.520000pt;}
.y32{bottom:221.760000pt;}
.y68{bottom:223.680000pt;}
.yef{bottom:228.160000pt;}
.y11d{bottom:230.400000pt;}
.y9c{bottom:232.320000pt;}
.yc4{bottom:234.240000pt;}
.y13d{bottom:235.200000pt;}
.y159{bottom:235.520000pt;}
.y31{bottom:237.120000pt;}
.yee{bottom:243.520000pt;}
.y67{bottom:244.480000pt;}
.y11c{bottom:245.760000pt;}
.y9b{bottom:247.680000pt;}
.yc3{bottom:249.600000pt;}
.y13c{bottom:250.560000pt;}
.y30{bottom:252.480000pt;}
.y17c{bottom:255.040000pt;}
.y158{bottom:256.320000pt;}
.yed{bottom:258.880000pt;}
.y11b{bottom:260.800000pt;}
.y9a{bottom:263.040000pt;}
.yc2{bottom:264.960000pt;}
.y66{bottom:265.280000pt;}
.y13b{bottom:265.600000pt;}
.y2f{bottom:267.840000pt;}
.y17b{bottom:270.400000pt;}
.yec{bottom:274.240000pt;}
.y157{bottom:276.800000pt;}
.y99{bottom:278.400000pt;}
.yc1{bottom:280.320000pt;}
.y11a{bottom:281.600000pt;}
.y2e{bottom:283.200000pt;}
.y65{bottom:285.760000pt;}
.y13a{bottom:286.400000pt;}
.yeb{bottom:289.600000pt;}
.y17a{bottom:290.880000pt;}
.y156{bottom:292.160000pt;}
.y98{bottom:293.760000pt;}
.yc0{bottom:295.680000pt;}
.y2d{bottom:298.560000pt;}
.y64{bottom:301.120000pt;}
.y119{bottom:302.400000pt;}
.yea{bottom:304.960000pt;}
.y139{bottom:306.880000pt;}
.y155{bottom:307.520000pt;}
.y97{bottom:308.800000pt;}
.ybf{bottom:311.040000pt;}
.y179{bottom:311.680000pt;}
.y2c{bottom:313.600000pt;}
.y118{bottom:317.760000pt;}
.y63{bottom:321.920000pt;}
.y96{bottom:324.160000pt;}
.ye9{bottom:325.760000pt;}
.ybe{bottom:326.400000pt;}
.y178{bottom:327.040000pt;}
.y138{bottom:327.680000pt;}
.y154{bottom:328.320000pt;}
.y2b{bottom:328.960000pt;}
.y117{bottom:332.800000pt;}
.y95{bottom:339.840000pt;}
.ybd{bottom:341.760000pt;}
.y62{bottom:342.400000pt;}
.y137{bottom:343.040000pt;}
.y2a{bottom:344.320000pt;}
.ye8{bottom:346.240000pt;}
.y177{bottom:347.520000pt;}
.y153{bottom:348.800000pt;}
.y116{bottom:353.600000pt;}
.ybc{bottom:356.800000pt;}
.y29{bottom:359.680000pt;}
.y94{bottom:360.320000pt;}
.ye7{bottom:361.600000pt;}
.y61{bottom:363.200000pt;}
.y136{bottom:363.520000pt;}
.y152{bottom:364.160000pt;}
.y176{bottom:368.320000pt;}
.ybb{bottom:372.160000pt;}
.y115{bottom:374.400000pt;}
.y28{bottom:375.040000pt;}
.ye6{bottom:376.960000pt;}
.y135{bottom:378.880000pt;}
.y151{bottom:379.520000pt;}
.y93{bottom:380.800000pt;}
.y175{bottom:383.680000pt;}
.y60{bottom:384.640000pt;}
.yba{bottom:387.840000pt;}
.y114{bottom:389.760000pt;}
.y27{bottom:390.400000pt;}
.ye5{bottom:392.320000pt;}
.y134{bottom:394.240000pt;}
.y150{bottom:394.880000pt;}
.y92{bottom:396.160000pt;}
.y174{bottom:399.040000pt;}
.yb9{bottom:402.880000pt;}
.y113{bottom:404.800000pt;}
.y5f{bottom:405.440000pt;}
.y26{bottom:405.760000pt;}
.ye4{bottom:407.680000pt;}
.y14f{bottom:410.240000pt;}
.y91{bottom:411.840000pt;}
.y173{bottom:414.400000pt;}
.y133{bottom:415.040000pt;}
.yb8{bottom:418.240000pt;}
.y25{bottom:421.120000pt;}
.ye3{bottom:423.040000pt;}
.y112{bottom:425.600000pt;}
.y5e{bottom:425.920000pt;}
.y90{bottom:426.880000pt;}
.yb7{bottom:433.600000pt;}
.y172{bottom:434.880000pt;}
.y132{bottom:435.520000pt;}
.y24{bottom:436.480000pt;}
.ye2{bottom:438.400000pt;}
.y8f{bottom:442.240000pt;}
.y111{bottom:446.400000pt;}
.y5d{bottom:446.720000pt;}
.yb6{bottom:448.960000pt;}
.y23{bottom:451.840000pt;}
.ye1{bottom:453.760000pt;}
.y171{bottom:455.680000pt;}
.y131{bottom:456.640000pt;}
.y8e{bottom:457.600000pt;}
.y110{bottom:461.760000pt;}
.yb5{bottom:464.320000pt;}
.y14e{bottom:466.880000pt;}
.y5c{bottom:467.520000pt;}
.ye0{bottom:468.800000pt;}
.y170{bottom:471.040000pt;}
.y130{bottom:472.000000pt;}
.y22{bottom:472.320000pt;}
.y8d{bottom:472.960000pt;}
.y10f{bottom:476.800000pt;}
.yb4{bottom:479.680000pt;}
.y14d{bottom:482.240000pt;}
.ydf{bottom:484.160000pt;}
.y21{bottom:487.680000pt;}
.y5b{bottom:488.000000pt;}
.y8c{bottom:488.640000pt;}
.y16f{bottom:491.520000pt;}
.y10e{bottom:492.160000pt;}
.yb3{bottom:495.040000pt;}
.y14c{bottom:497.600000pt;}
.yde{bottom:499.520000pt;}
.y20{bottom:503.040000pt;}
.y16e{bottom:506.880000pt;}
.y8b{bottom:508.800000pt;}
.y5a{bottom:509.760000pt;}
.yb2{bottom:510.400000pt;}
.y10d{bottom:512.960000pt;}
.ydd{bottom:514.880000pt;}
.y1f{bottom:518.400000pt;}
.y16d{bottom:522.240000pt;}
.y8a{bottom:524.160000pt;}
.yb1{bottom:525.760000pt;}
.y14b{bottom:528.320000pt;}
.y59{bottom:530.240000pt;}
.y1e{bottom:533.760000pt;}
.y12f{bottom:534.080000pt;}
.y89{bottom:539.520000pt;}
.yb0{bottom:540.800000pt;}
.y16c{bottom:543.040000pt;}
.y14a{bottom:543.680000pt;}
.ydc{bottom:545.600000pt;}
.y10c{bottom:548.800000pt;}
.y1d{bottom:549.120000pt;}
.y58{bottom:551.040000pt;}
.y88{bottom:554.880000pt;}
.yaf{bottom:556.160000pt;}
.ydb{bottom:560.960000pt;}
.y16b{bottom:563.520000pt;}
.y10b{bottom:564.160000pt;}
.y1c{bottom:569.920000pt;}
.y87{bottom:570.240000pt;}
.y57{bottom:571.520000pt;}
.yda{bottom:576.320000pt;}
.y10a{bottom:579.520000pt;}
.y16a{bottom:584.320000pt;}
.y12e{bottom:584.960000pt;}
.y86{bottom:585.600000pt;}
.y56{bottom:586.880000pt;}
.y1b{bottom:590.720000pt;}
.yd9{bottom:591.680000pt;}
.y109{bottom:600.320000pt;}
.y85{bottom:600.960000pt;}
.y55{bottom:602.240000pt;}
.y169{bottom:604.800000pt;}
.y1a{bottom:605.760000pt;}
.yd8{bottom:607.040000pt;}
.y84{bottom:616.320000pt;}
.y54{bottom:617.600000pt;}
.y168{bottom:620.160000pt;}
.y108{bottom:620.800000pt;}
.y12d{bottom:621.120000pt;}
.yd7{bottom:622.400000pt;}
.y19{bottom:626.240000pt;}
.y83{bottom:631.680000pt;}
.y53{bottom:632.960000pt;}
.y107{bottom:636.160000pt;}
.y167{bottom:640.960000pt;}
.y18{bottom:641.600000pt;}
.yd6{bottom:642.880000pt;}
.y82{bottom:647.040000pt;}
.y52{bottom:648.320000pt;}
.y106{bottom:651.520000pt;}
.y12c{bottom:656.960000pt;}
.yd5{bottom:658.240000pt;}
.y166{bottom:661.440000pt;}
.y81{bottom:662.400000pt;}
.y17{bottom:662.720000pt;}
.y51{bottom:663.680000pt;}
.y105{bottom:667.200000pt;}
.y149{bottom:672.320000pt;}
.yd4{bottom:673.600000pt;}
.y165{bottom:676.800000pt;}
.y80{bottom:677.440000pt;}
.y50{bottom:679.040000pt;}
.y104{bottom:682.240000pt;}
.y16{bottom:683.840000pt;}
.y148{bottom:687.680000pt;}
.yd3{bottom:688.960000pt;}
.y7f{bottom:692.800000pt;}
.y4f{bottom:694.400000pt;}
.y164{bottom:697.600000pt;}
.y103{bottom:703.040000pt;}
.yd2{bottom:704.320000pt;}
.y15{bottom:707.520000pt;}
.y7e{bottom:708.160000pt;}
.yae{bottom:709.440000pt;}
.y4e{bottom:709.760000pt;}
.y163{bottom:718.400000pt;}
.yd1{bottom:719.680000pt;}
.y7d{bottom:723.520000pt;}
.y4d{bottom:724.800000pt;}
.y14{bottom:725.120000pt;}
.y162{bottom:733.440000pt;}
.yd0{bottom:735.040000pt;}
.y7c{bottom:738.880000pt;}
.y4c{bottom:740.160000pt;}
.y13{bottom:740.480000pt;}
.y147{bottom:744.320000pt;}
.y161{bottom:748.800000pt;}
.y12b{bottom:754.240000pt;}
.y102{bottom:754.560000pt;}
.y4b{bottom:755.520000pt;}
.y12{bottom:756.160000pt;}
.y7b{bottom:759.680000pt;}
.y101{bottom:769.600000pt;}
.y4a{bottom:770.880000pt;}
.y11{bottom:771.520000pt;}
.y7a{bottom:775.040000pt;}
.ycf{bottom:776.320000pt;}
.y146{bottom:780.160000pt;}
.y49{bottom:786.240000pt;}
.y10{bottom:786.560000pt;}
.y79{bottom:790.400000pt;}
.yce{bottom:791.680000pt;}
.y12a{bottom:795.520000pt;}
.y48{bottom:801.600000pt;}
.y78{bottom:805.440000pt;}
.yf{bottom:806.720000pt;}
.ycd{bottom:807.040000pt;}
.y100{bottom:811.200000pt;}
.y129{bottom:816.320000pt;}
.yad{bottom:816.960000pt;}
.y77{bottom:820.800000pt;}
.y47{bottom:822.400000pt;}
.ye{bottom:825.600000pt;}
.yff{bottom:831.680000pt;}
.yac{bottom:832.320000pt;}
.y76{bottom:836.160000pt;}
.y145{bottom:836.800000pt;}
.y46{bottom:837.440000pt;}
.y128{bottom:847.040000pt;}
.yab{bottom:847.680000pt;}
.yd{bottom:848.000000pt;}
.y75{bottom:851.520000pt;}
.yfe{bottom:852.160000pt;}
.y45{bottom:852.800000pt;}
.yaa{bottom:863.040000pt;}
.yc{bottom:865.600000pt;}
.yfd{bottom:867.520000pt;}
.y44{bottom:868.160000pt;}
.y74{bottom:872.320000pt;}
.ya9{bottom:878.400000pt;}
.yfc{bottom:882.880000pt;}
.yb{bottom:883.200000pt;}
.y43{bottom:883.520000pt;}
.y127{bottom:888.320000pt;}
.y160{bottom:892.800000pt;}
.y73{bottom:893.120000pt;}
.ya8{bottom:893.440000pt;}
.yfb{bottom:898.240000pt;}
.y42{bottom:898.880000pt;}
.ya{bottom:900.800000pt;}
.y126{bottom:903.680000pt;}
.y15f{bottom:908.160000pt;}
.ya7{bottom:908.800000pt;}
.y72{bottom:913.600000pt;}
.y41{bottom:914.240000pt;}
.y125{bottom:919.040000pt;}
.y9{bottom:919.680000pt;}
.ya6{bottom:924.160000pt;}
.yfa{bottom:928.960000pt;}
.y40{bottom:929.600000pt;}
.y71{bottom:934.080000pt;}
.y8{bottom:938.240000pt;}
.ya5{bottom:939.520000pt;}
.yf9{bottom:944.640000pt;}
.y3f{bottom:944.960000pt;}
.y15e{bottom:949.440000pt;}
.y70{bottom:954.880000pt;}
.y7{bottom:956.480000pt;}
.y3e{bottom:960.320000pt;}
.yf8{bottom:964.800000pt;}
.y6f{bottom:970.240000pt;}
.y3d{bottom:975.680000pt;}
.y6{bottom:979.840000pt;}
.y144{bottom:985.600000pt;}
.yf7{bottom:985.920000pt;}
.y3c{bottom:991.040000pt;}
.y5{bottom:1003.520000pt;}
.y3b{bottom:1006.080000pt;}
.y4{bottom:1022.400000pt;}
.y3{bottom:1039.360000pt;}
.y2{bottom:1052.480000pt;}
.y1{bottom:1065.600000pt;}
.h8{height:27.273750pt;}
.h1{height:42.858750pt;}
.h5{height:44.055000pt;}
.h7{height:56.070000pt;}
.h2{height:59.741959pt;}
.h6{height:62.812500pt;}
.h3{height:64.500000pt;}
.h4{height:66.750000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.279867pt;}
.x4{left:160.320000pt;}
.x3{left:161.280000pt;}
.x2{left:349.440000pt;}
}




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