
    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_59173619b2fc40bcec15b3c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.124023;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_252d8503d1ad9b77606e4a88.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.108887;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8e57f7cc58d506b14a1a63ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4047b5163c96756245345925.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.207031;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_aec9f9e779e2f2e4f1dc3406.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.108887;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a922ef2d1444be1e4567fbdc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c25a406ba19dacbb183d8169.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7a308818adefd993bf8d747b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.378906;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;}
.ls4{letter-spacing:-0.660000px;}
.ls8{letter-spacing:-0.213000px;}
.ls3{letter-spacing:-0.204600px;}
.lsb{letter-spacing:-0.106800px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.095040px;}
.ls5{letter-spacing:0.204600px;}
.ls7{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.221760px;}
.ls2{letter-spacing:1.470000px;}
.ls6{letter-spacing:18.144000px;}
.ls0{letter-spacing:59.345280px;}
.lsa{letter-spacing:64.385280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-66.240000px;}
.ws0{word-spacing:-24.888720px;}
.ws7{word-spacing:-21.312000px;}
.ws4{word-spacing:-18.619320px;}
.ws6{word-spacing:-18.414720px;}
.ws2{word-spacing:-18.210120px;}
.ws3{word-spacing:-17.754720px;}
.ws5{word-spacing:0.000000px;}
._29{margin-left:-5.811840px;}
._13{margin-left:-4.106880px;}
._1{margin-left:-2.880000px;}
._0{margin-left:-1.872000px;}
._2{width:1.263600px;}
._3{width:2.274480px;}
._1a{width:3.291840px;}
._4{width:4.305600px;}
._5{width:5.564160px;}
._6{width:6.574560px;}
._b{width:8.015040px;}
._c{width:9.117120px;}
._9{width:10.200960px;}
._7{width:11.989440px;}
._8{width:13.132800px;}
._a{width:14.569920px;}
._10{width:16.012800px;}
._e{width:17.323200px;}
._2a{width:18.691200px;}
._f{width:19.726560px;}
._2b{width:20.963520px;}
._18{width:22.026240px;}
._15{width:23.780160px;}
._19{width:24.999360px;}
._16{width:26.188800px;}
._17{width:27.747840px;}
._12{width:29.344320px;}
._11{width:30.522240px;}
._23{width:32.333760px;}
._1f{width:35.305920px;}
._25{width:36.564480px;}
._20{width:38.419200px;}
._27{width:40.340160px;}
._26{width:41.947200px;}
._1b{width:43.560000px;}
._d{width:47.422320px;}
._21{width:50.459760px;}
._22{width:51.639120px;}
._1d{width:60.120000px;}
._1e{width:61.128000px;}
._24{width:67.320000px;}
._14{width:79.775280px;}
._28{width:81.792720px;}
._1c{width:109.080000px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:110.916000px;}
.ybb{bottom:114.876000px;}
.y166{bottom:118.116000px;}
.y73{bottom:121.536000px;}
.y127{bottom:128.376000px;}
.yda{bottom:135.756000px;}
.y165{bottom:138.096000px;}
.yff{bottom:138.816000px;}
.y25{bottom:140.796000px;}
.y72{bottom:141.696000px;}
.yba{bottom:146.916000px;}
.y126{bottom:148.536000px;}
.yd9{bottom:155.730000px;}
.y4a{bottom:156.990000px;}
.y164{bottom:158.250000px;}
.yfe{bottom:158.970000px;}
.y71{bottom:161.670000px;}
.y97{bottom:164.010000px;}
.y125{bottom:168.510000px;}
.y24{bottom:175.530000px;}
.yd8{bottom:175.710000px;}
.yb9{bottom:176.790000px;}
.y49{bottom:176.970000px;}
.y163{bottom:178.410000px;}
.y70{bottom:181.830000px;}
.y149{bottom:183.450000px;}
.y96{bottom:185.070000px;}
.y124{bottom:188.670000px;}
.yfd{bottom:190.290000px;}
.y23{bottom:195.510000px;}
.y48{bottom:196.950000px;}
.y162{bottom:198.390000px;}
.yd7{bottom:200.370000px;}
.y148{bottom:203.250000px;}
.y95{bottom:206.490000px;}
.y123{bottom:208.830000px;}
.yb8{bottom:211.530000px;}
.y6f{bottom:214.050000px;}
.y47{bottom:221.610000px;}
.y147{bottom:223.410000px;}
.yfc{bottom:225.030000px;}
.y22{bottom:225.570000px;}
.y161{bottom:228.450000px;}
.y122{bottom:228.810000px;}
.yb7{bottom:232.770000px;}
.y6e{bottom:234.030000px;}
.y94{bottom:239.970000px;}
.yfb{bottom:245.010000px;}
.yd6{bottom:248.610000px;}
.y121{bottom:248.970000px;}
.y6d{bottom:254.010000px;}
.yb6{bottom:254.190000px;}
.y146{bottom:255.630000px;}
.y21{bottom:260.310000px;}
.y160{bottom:261.030000px;}
.yfa{bottom:266.250000px;}
.y120{bottom:269.130000px;}
.y46{bottom:269.850000px;}
.y6c{bottom:274.170000px;}
.y145{bottom:275.610000px;}
.yd5{bottom:280.650000px;}
.yf9{bottom:286.410000px;}
.yb5{bottom:287.670000px;}
.y11f{bottom:289.110000px;}
.y20{bottom:292.350000px;}
.y6b{bottom:294.330000px;}
.y144{bottom:295.770000px;}
.y15f{bottom:295.950000px;}
.y45{bottom:301.890000px;}
.y93{bottom:304.770000px;}
.yf8{bottom:307.830000px;}
.yd4{bottom:310.530000px;}
.y1f{bottom:312.330000px;}
.y6a{bottom:314.310000px;}
.y143{bottom:315.750000px;}
.yb4{bottom:317.550000px;}
.y11e{bottom:319.170000px;}
.y92{bottom:325.830000px;}
.yf7{bottom:327.990000px;}
.y1e{bottom:333.570000px;}
.y44{bottom:333.930000px;}
.y69{bottom:334.470000px;}
.yd3{bottom:345.495000px;}
.y91{bottom:347.295000px;}
.y142{bottom:348.015000px;}
.yf6{bottom:349.275000px;}
.y11d{bottom:351.795000px;}
.yb3{bottom:352.515000px;}
.y1d{bottom:353.775000px;}
.y43{bottom:366.195000px;}
.y68{bottom:366.735000px;}
.y141{bottom:367.995000px;}
.yf5{bottom:369.435000px;}
.yb2{bottom:373.575000px;}
.y1c{bottom:375.195000px;}
.yd2{bottom:375.375000px;}
.y90{bottom:380.955000px;}
.y11c{bottom:384.375000px;}
.y67{bottom:386.715000px;}
.y140{bottom:388.155000px;}
.yb1{bottom:394.995000px;}
.y42{bottom:398.235000px;}
.yf4{bottom:400.755000px;}
.y13f{bottom:408.135000px;}
.y1b{bottom:408.675000px;}
.yd1{bottom:410.115000px;}
.y8f{bottom:410.835000px;}
.y66{bottom:418.935000px;}
.y11b{bottom:419.295000px;}
.y13e{bottom:428.295000px;}
.yb0{bottom:428.475000px;}
.y41{bottom:430.275000px;}
.yf3{bottom:433.335000px;}
.yd0{bottom:439.995000px;}
.y65{bottom:440.175000px;}
.y1a{bottom:440.715000px;}
.y11a{bottom:443.415000px;}
.y8e{bottom:445.575000px;}
.y13d{bottom:448.455000px;}
.y17b{bottom:450.255000px;}
.yaf{bottom:458.355000px;}
.y19{bottom:460.695000px;}
.y64{bottom:461.415000px;}
.y40{bottom:462.495000px;}
.y8d{bottom:466.815000px;}
.yf2{bottom:468.075000px;}
.y13c{bottom:468.435000px;}
.y119{bottom:469.155000px;}
.y17a{bottom:470.235000px;}
.ycf{bottom:474.735000px;}
.y15e{bottom:480.675000px;}
.y63{bottom:482.835000px;}
.y18{bottom:485.175000px;}
.y8c{bottom:488.055000px;}
.y13b{bottom:488.595000px;}
.y179{bottom:490.215000px;}
.yae{bottom:493.275000px;}
.y3f{bottom:494.535000px;}
.y15d{bottom:500.475000px;}
.y62{bottom:504.075000px;}
.yce{bottom:504.615000px;}
.yf1{bottom:509.475000px;}
.yad{bottom:514.515000px;}
.y118{bottom:517.395000px;}
.y13a{bottom:518.655000px;}
.y3e{bottom:518.835000px;}
.y15c{bottom:520.635000px;}
.y8b{bottom:521.715000px;}
.y178{bottom:522.615000px;}
.yf0{bottom:529.455000px;}
.y17{bottom:533.415000px;}
.yac{bottom:535.755000px;}
.y117{bottom:537.375000px;}
.y61{bottom:537.735000px;}
.ycd{bottom:539.535000px;}
.y15b{bottom:540.795000px;}
.y8a{bottom:541.515000px;}
.y177{bottom:542.415000px;}
.yef{bottom:550.875000px;}
.y139{bottom:551.235000px;}
.y16{bottom:553.395000px;}
.y116{bottom:558.795000px;}
.y15a{bottom:560.775000px;}
.y3d{bottom:567.255000px;}
.yab{bottom:569.415000px;}
.y60{bottom:569.775000px;}
.yee{bottom:571.035000px;}
.y89{bottom:571.575000px;}
.y15{bottom:574.815000px;}
.y115{bottom:578.775000px;}
.y159{bottom:580.935000px;}
.y138{bottom:585.975000px;}
.y3c{bottom:587.055000px;}
.y5f{bottom:589.755000px;}
.y176{bottom:594.615000px;}
.y14{bottom:594.795000px;}
.yaa{bottom:599.295000px;}
.y114{bottom:600.195000px;}
.y158{bottom:601.095000px;}
.ycc{bottom:601.455000px;}
.yed{bottom:602.355000px;}
.y137{bottom:605.985000px;}
.y88{bottom:606.525000px;}
.y3b{bottom:607.245000px;}
.y5e{bottom:609.765000px;}
.y175{bottom:616.065000px;}
.y13{bottom:616.245000px;}
.y113{bottom:620.385000px;}
.y157{bottom:621.105000px;}
.y136{bottom:625.965000px;}
.y87{bottom:627.765000px;}
.y5d{bottom:629.925000px;}
.ya9{bottom:634.065000px;}
.yec{bottom:634.965000px;}
.y174{bottom:636.045000px;}
.ycb{bottom:636.225000px;}
.y12{bottom:637.485000px;}
.y3a{bottom:639.465000px;}
.y86{bottom:649.005000px;}
.y156{bottom:651.165000px;}
.y112{bottom:651.705000px;}
.ya8{bottom:654.045000px;}
.y5c{bottom:654.405000px;}
.y173{bottom:657.465000px;}
.y11{bottom:657.645000px;}
.y135{bottom:658.365000px;}
.yca{bottom:666.105000px;}
.yeb{bottom:669.705000px;}
.y39{bottom:671.505000px;}
.y172{bottom:677.625000px;}
.y134{bottom:678.165000px;}
.y10{bottom:679.065000px;}
.y85{bottom:682.665000px;}
.y155{bottom:683.745000px;}
.ya7{bottom:686.265000px;}
.y111{bottom:686.445000px;}
.yea{bottom:690.945000px;}
.y38{bottom:691.485000px;}
.y133{bottom:698.325000px;}
.yc9{bottom:701.025000px;}
.y5b{bottom:702.645000px;}
.y110{bottom:706.425000px;}
.ye9{bottom:711.105000px;}
.y37{bottom:711.645000px;}
.yf{bottom:712.545000px;}
.ya6{bottom:716.145000px;}
.y132{bottom:718.485000px;}
.y154{bottom:718.665000px;}
.y10f{bottom:727.665000px;}
.yc8{bottom:730.905000px;}
.ye8{bottom:732.345000px;}
.y5a{bottom:734.865000px;}
.ye{bottom:736.845000px;}
.y131{bottom:738.465000px;}
.y171{bottom:743.145000px;}
.y36{bottom:743.865000px;}
.y84{bottom:747.285000px;}
.y10e{bottom:747.825000px;}
.ya5{bottom:750.885000px;}
.ye7{bottom:752.505000px;}
.y59{bottom:754.665000px;}
.y130{bottom:758.625000px;}
.yd{bottom:762.405000px;}
.y170{bottom:763.125000px;}
.y35{bottom:763.845000px;}
.yc7{bottom:765.645000px;}
.y83{bottom:767.265000px;}
.y10d{bottom:769.245000px;}
.ya4{bottom:772.125000px;}
.ye6{bottom:772.665000px;}
.y16f{bottom:783.285000px;}
.y58{bottom:787.065000px;}
.y82{bottom:787.245000px;}
.y34{bottom:788.145000px;}
.y10c{bottom:789.405000px;}
.y12f{bottom:790.845000px;}
.ya3{bottom:793.545000px;}
.yc6{bottom:795.525000px;}
.y16e{bottom:803.265000px;}
.ye5{bottom:803.985000px;}
.y57{bottom:806.865000px;}
.y10b{bottom:810.645000px;}
.yc{bottom:810.825000px;}
.y33{bottom:813.885000px;}
.y81{bottom:819.465000px;}
.y16d{bottom:823.425000px;}
.ya2{bottom:827.025000px;}
.yc5{bottom:830.265000px;}
.yb{bottom:830.625000px;}
.y10a{bottom:830.805000px;}
.ye4{bottom:836.565000px;}
.y56{bottom:836.925000px;}
.y16c{bottom:847.905000px;}
.y80{bottom:849.345000px;}
.ya{bottom:850.785000px;}
.y12e{bottom:850.965000px;}
.ya1{bottom:856.905000px;}
.y32{bottom:862.125000px;}
.yc4{bottom:862.485000px;}
.ye3{bottom:863.385000px;}
.y9{bottom:870.990000px;}
.y12d{bottom:871.170000px;}
.y55{bottom:871.890000px;}
.y31{bottom:882.150000px;}
.y153{bottom:883.230000px;}
.y7f{bottom:884.310000px;}
.ye2{bottom:889.170000px;}
.y8{bottom:890.970000px;}
.y12c{bottom:891.150000px;}
.y54{bottom:891.690000px;}
.ya0{bottom:891.870000px;}
.yc3{bottom:892.410000px;}
.y16b{bottom:896.190000px;}
.y109{bottom:896.910000px;}
.y152{bottom:903.210000px;}
.y12b{bottom:911.310000px;}
.y9f{bottom:912.930000px;}
.y30{bottom:914.370000px;}
.y16a{bottom:916.170000px;}
.y7e{bottom:916.350000px;}
.y108{bottom:916.890000px;}
.y7{bottom:923.190000px;}
.y53{bottom:924.090000px;}
.yc2{bottom:927.150000px;}
.y12a{bottom:931.290000px;}
.y9e{bottom:934.350000px;}
.y2f{bottom:935.610000px;}
.y7d{bottom:936.330000px;}
.ye1{bottom:937.950000px;}
.y107{bottom:938.310000px;}
.y6{bottom:943.170000px;}
.y151{bottom:943.350000px;}
.y52{bottom:945.150000px;}
.y7c{bottom:956.310000px;}
.y2e{bottom:956.850000px;}
.yc1{bottom:957.030000px;}
.y106{bottom:958.290000px;}
.y129{bottom:961.350000px;}
.y5{bottom:963.330000px;}
.y9d{bottom:967.830000px;}
.y169{bottom:968.550000px;}
.ye0{bottom:973.050000px;}
.y150{bottom:975.570000px;}
.y7b{bottom:976.470000px;}
.y51{bottom:978.630000px;}
.y105{bottom:979.710000px;}
.y4{bottom:987.810000px;}
.y168{bottom:988.530000px;}
.y2d{bottom:990.510000px;}
.yc0{bottom:991.770000px;}
.y128{bottom:994.110000px;}
.y14f{bottom:995.550000px;}
.y7a{bottom:996.630000px;}
.y9c{bottom:997.710000px;}
.ydf{bottom:1007.970000px;}
.y50{bottom:1008.510000px;}
.y104{bottom:1011.030000px;}
.ybf{bottom:1011.750000px;}
.y14e{bottom:1015.710000px;}
.y2c{bottom:1022.550000px;}
.y167{bottom:1028.670000px;}
.y79{bottom:1028.850000px;}
.y9b{bottom:1032.630000px;}
.y14d{bottom:1035.690000px;}
.y3{bottom:1039.650000px;}
.ybe{bottom:1041.810000px;}
.yde{bottom:1043.070000px;}
.y4f{bottom:1043.430000px;}
.y2b{bottom:1043.610000px;}
.y78{bottom:1048.650000px;}
.y9a{bottom:1053.870000px;}
.y14c{bottom:1055.850000px;}
.y4e{bottom:1064.490000px;}
.y2a{bottom:1065.030000px;}
.y77{bottom:1068.810000px;}
.y99{bottom:1075.110000px;}
.y14b{bottom:1075.830000px;}
.ybd{bottom:1076.550000px;}
.ydd{bottom:1078.170000px;}
.y103{bottom:1078.350000px;}
.y2{bottom:1081.410000px;}
.y4d{bottom:1085.910000px;}
.y29{bottom:1086.450000px;}
.y102{bottom:1098.330000px;}
.y76{bottom:1101.030000px;}
.y14a{bottom:1106.070000px;}
.ybc{bottom:1106.430000px;}
.y4c{bottom:1107.330000px;}
.y28{bottom:1107.690000px;}
.y98{bottom:1108.770000px;}
.ydc{bottom:1112.730000px;}
.y101{bottom:1119.750000px;}
.y75{bottom:1121.010000px;}
.y1{bottom:1123.170000px;}
.ydb{bottom:1137.030000px;}
.y4b{bottom:1138.680000px;}
.y100{bottom:1139.940000px;}
.y74{bottom:1141.200000px;}
.y27{bottom:1141.380000px;}
.h4{height:58.218750px;}
.h5{height:59.221406px;}
.h6{height:72.035156px;}
.h7{height:73.096875px;}
.h3{height:75.314180px;}
.h2{height:128.742188px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:127.655987px;}
.x2{left:134.495987px;}
.x5{left:154.649987px;}
.x7{left:165.989987px;}
.x6{left:181.649987px;}
.x1{left:204.869987px;}
.x3{left:373.754987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.586667pt;}
.ls8{letter-spacing:-0.189333pt;}
.ls3{letter-spacing:-0.181867pt;}
.lsb{letter-spacing:-0.094933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.084480pt;}
.ls5{letter-spacing:0.181867pt;}
.ls7{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.197120pt;}
.ls2{letter-spacing:1.306667pt;}
.ls6{letter-spacing:16.128000pt;}
.ls0{letter-spacing:52.751360pt;}
.lsa{letter-spacing:57.231360pt;}
.ws1{word-spacing:-58.880000pt;}
.ws0{word-spacing:-22.123307pt;}
.ws7{word-spacing:-18.944000pt;}
.ws4{word-spacing:-16.550507pt;}
.ws6{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.186773pt;}
.ws3{word-spacing:-15.781973pt;}
.ws5{word-spacing:0.000000pt;}
._29{margin-left:-5.166080pt;}
._13{margin-left:-3.650560pt;}
._1{margin-left:-2.560000pt;}
._0{margin-left:-1.664000pt;}
._2{width:1.123200pt;}
._3{width:2.021760pt;}
._1a{width:2.926080pt;}
._4{width:3.827200pt;}
._5{width:4.945920pt;}
._6{width:5.844053pt;}
._b{width:7.124480pt;}
._c{width:8.104107pt;}
._9{width:9.067520pt;}
._7{width:10.657280pt;}
._8{width:11.673600pt;}
._a{width:12.951040pt;}
._10{width:14.233600pt;}
._e{width:15.398400pt;}
._2a{width:16.614400pt;}
._f{width:17.534720pt;}
._2b{width:18.634240pt;}
._18{width:19.578880pt;}
._15{width:21.137920pt;}
._19{width:22.221653pt;}
._16{width:23.278933pt;}
._17{width:24.664747pt;}
._12{width:26.083840pt;}
._11{width:27.130880pt;}
._23{width:28.741120pt;}
._1f{width:31.383040pt;}
._25{width:32.501760pt;}
._20{width:34.150400pt;}
._27{width:35.857920pt;}
._26{width:37.286400pt;}
._1b{width:38.720000pt;}
._d{width:42.153173pt;}
._21{width:44.853120pt;}
._22{width:45.901440pt;}
._1d{width:53.440000pt;}
._1e{width:54.336000pt;}
._24{width:59.840000pt;}
._14{width:70.911360pt;}
._28{width:72.704640pt;}
._1c{width:96.960000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:98.592000pt;}
.ybb{bottom:102.112000pt;}
.y166{bottom:104.992000pt;}
.y73{bottom:108.032000pt;}
.y127{bottom:114.112000pt;}
.yda{bottom:120.672000pt;}
.y165{bottom:122.752000pt;}
.yff{bottom:123.392000pt;}
.y25{bottom:125.152000pt;}
.y72{bottom:125.952000pt;}
.yba{bottom:130.592000pt;}
.y126{bottom:132.032000pt;}
.yd9{bottom:138.426667pt;}
.y4a{bottom:139.546667pt;}
.y164{bottom:140.666667pt;}
.yfe{bottom:141.306667pt;}
.y71{bottom:143.706667pt;}
.y97{bottom:145.786667pt;}
.y125{bottom:149.786667pt;}
.y24{bottom:156.026667pt;}
.yd8{bottom:156.186667pt;}
.yb9{bottom:157.146667pt;}
.y49{bottom:157.306667pt;}
.y163{bottom:158.586667pt;}
.y70{bottom:161.626667pt;}
.y149{bottom:163.066667pt;}
.y96{bottom:164.506667pt;}
.y124{bottom:167.706667pt;}
.yfd{bottom:169.146667pt;}
.y23{bottom:173.786667pt;}
.y48{bottom:175.066667pt;}
.y162{bottom:176.346667pt;}
.yd7{bottom:178.106667pt;}
.y148{bottom:180.666667pt;}
.y95{bottom:183.546667pt;}
.y123{bottom:185.626667pt;}
.yb8{bottom:188.026667pt;}
.y6f{bottom:190.266667pt;}
.y47{bottom:196.986667pt;}
.y147{bottom:198.586667pt;}
.yfc{bottom:200.026667pt;}
.y22{bottom:200.506667pt;}
.y161{bottom:203.066667pt;}
.y122{bottom:203.386667pt;}
.yb7{bottom:206.906667pt;}
.y6e{bottom:208.026667pt;}
.y94{bottom:213.306667pt;}
.yfb{bottom:217.786667pt;}
.yd6{bottom:220.986667pt;}
.y121{bottom:221.306667pt;}
.y6d{bottom:225.786667pt;}
.yb6{bottom:225.946667pt;}
.y146{bottom:227.226667pt;}
.y21{bottom:231.386667pt;}
.y160{bottom:232.026667pt;}
.yfa{bottom:236.666667pt;}
.y120{bottom:239.226667pt;}
.y46{bottom:239.866667pt;}
.y6c{bottom:243.706667pt;}
.y145{bottom:244.986667pt;}
.yd5{bottom:249.466667pt;}
.yf9{bottom:254.586667pt;}
.yb5{bottom:255.706667pt;}
.y11f{bottom:256.986667pt;}
.y20{bottom:259.866667pt;}
.y6b{bottom:261.626667pt;}
.y144{bottom:262.906667pt;}
.y15f{bottom:263.066667pt;}
.y45{bottom:268.346667pt;}
.y93{bottom:270.906667pt;}
.yf8{bottom:273.626667pt;}
.yd4{bottom:276.026667pt;}
.y1f{bottom:277.626667pt;}
.y6a{bottom:279.386667pt;}
.y143{bottom:280.666667pt;}
.yb4{bottom:282.266667pt;}
.y11e{bottom:283.706667pt;}
.y92{bottom:289.626667pt;}
.yf7{bottom:291.546667pt;}
.y1e{bottom:296.506667pt;}
.y44{bottom:296.826667pt;}
.y69{bottom:297.306667pt;}
.yd3{bottom:307.106667pt;}
.y91{bottom:308.706667pt;}
.y142{bottom:309.346667pt;}
.yf6{bottom:310.466667pt;}
.y11d{bottom:312.706667pt;}
.yb3{bottom:313.346667pt;}
.y1d{bottom:314.466667pt;}
.y43{bottom:325.506667pt;}
.y68{bottom:325.986667pt;}
.y141{bottom:327.106667pt;}
.yf5{bottom:328.386667pt;}
.yb2{bottom:332.066667pt;}
.y1c{bottom:333.506667pt;}
.yd2{bottom:333.666667pt;}
.y90{bottom:338.626667pt;}
.y11c{bottom:341.666667pt;}
.y67{bottom:343.746667pt;}
.y140{bottom:345.026667pt;}
.yb1{bottom:351.106667pt;}
.y42{bottom:353.986667pt;}
.yf4{bottom:356.226667pt;}
.y13f{bottom:362.786667pt;}
.y1b{bottom:363.266667pt;}
.yd1{bottom:364.546667pt;}
.y8f{bottom:365.186667pt;}
.y66{bottom:372.386667pt;}
.y11b{bottom:372.706667pt;}
.y13e{bottom:380.706667pt;}
.yb0{bottom:380.866667pt;}
.y41{bottom:382.466667pt;}
.yf3{bottom:385.186667pt;}
.yd0{bottom:391.106667pt;}
.y65{bottom:391.266667pt;}
.y1a{bottom:391.746667pt;}
.y11a{bottom:394.146667pt;}
.y8e{bottom:396.066667pt;}
.y13d{bottom:398.626667pt;}
.y17b{bottom:400.226667pt;}
.yaf{bottom:407.426667pt;}
.y19{bottom:409.506667pt;}
.y64{bottom:410.146667pt;}
.y40{bottom:411.106667pt;}
.y8d{bottom:414.946667pt;}
.yf2{bottom:416.066667pt;}
.y13c{bottom:416.386667pt;}
.y119{bottom:417.026667pt;}
.y17a{bottom:417.986667pt;}
.ycf{bottom:421.986667pt;}
.y15e{bottom:427.266667pt;}
.y63{bottom:429.186667pt;}
.y18{bottom:431.266667pt;}
.y8c{bottom:433.826667pt;}
.y13b{bottom:434.306667pt;}
.y179{bottom:435.746667pt;}
.yae{bottom:438.466667pt;}
.y3f{bottom:439.586667pt;}
.y15d{bottom:444.866667pt;}
.y62{bottom:448.066667pt;}
.yce{bottom:448.546667pt;}
.yf1{bottom:452.866667pt;}
.yad{bottom:457.346667pt;}
.y118{bottom:459.906667pt;}
.y13a{bottom:461.026667pt;}
.y3e{bottom:461.186667pt;}
.y15c{bottom:462.786667pt;}
.y8b{bottom:463.746667pt;}
.y178{bottom:464.546667pt;}
.yf0{bottom:470.626667pt;}
.y17{bottom:474.146667pt;}
.yac{bottom:476.226667pt;}
.y117{bottom:477.666667pt;}
.y61{bottom:477.986667pt;}
.ycd{bottom:479.586667pt;}
.y15b{bottom:480.706667pt;}
.y8a{bottom:481.346667pt;}
.y177{bottom:482.146667pt;}
.yef{bottom:489.666667pt;}
.y139{bottom:489.986667pt;}
.y16{bottom:491.906667pt;}
.y116{bottom:496.706667pt;}
.y15a{bottom:498.466667pt;}
.y3d{bottom:504.226667pt;}
.yab{bottom:506.146667pt;}
.y60{bottom:506.466667pt;}
.yee{bottom:507.586667pt;}
.y89{bottom:508.066667pt;}
.y15{bottom:510.946667pt;}
.y115{bottom:514.466667pt;}
.y159{bottom:516.386667pt;}
.y138{bottom:520.866667pt;}
.y3c{bottom:521.826667pt;}
.y5f{bottom:524.226667pt;}
.y176{bottom:528.546667pt;}
.y14{bottom:528.706667pt;}
.yaa{bottom:532.706667pt;}
.y114{bottom:533.506667pt;}
.y158{bottom:534.306667pt;}
.ycc{bottom:534.626667pt;}
.yed{bottom:535.426667pt;}
.y137{bottom:538.653333pt;}
.y88{bottom:539.133333pt;}
.y3b{bottom:539.773333pt;}
.y5e{bottom:542.013333pt;}
.y175{bottom:547.613333pt;}
.y13{bottom:547.773333pt;}
.y113{bottom:551.453333pt;}
.y157{bottom:552.093333pt;}
.y136{bottom:556.413333pt;}
.y87{bottom:558.013333pt;}
.y5d{bottom:559.933333pt;}
.ya9{bottom:563.613333pt;}
.yec{bottom:564.413333pt;}
.y174{bottom:565.373333pt;}
.ycb{bottom:565.533333pt;}
.y12{bottom:566.653333pt;}
.y3a{bottom:568.413333pt;}
.y86{bottom:576.893333pt;}
.y156{bottom:578.813333pt;}
.y112{bottom:579.293333pt;}
.ya8{bottom:581.373333pt;}
.y5c{bottom:581.693333pt;}
.y173{bottom:584.413333pt;}
.y11{bottom:584.573333pt;}
.y135{bottom:585.213333pt;}
.yca{bottom:592.093333pt;}
.yeb{bottom:595.293333pt;}
.y39{bottom:596.893333pt;}
.y172{bottom:602.333333pt;}
.y134{bottom:602.813333pt;}
.y10{bottom:603.613333pt;}
.y85{bottom:606.813333pt;}
.y155{bottom:607.773333pt;}
.ya7{bottom:610.013333pt;}
.y111{bottom:610.173333pt;}
.yea{bottom:614.173333pt;}
.y38{bottom:614.653333pt;}
.y133{bottom:620.733333pt;}
.yc9{bottom:623.133333pt;}
.y5b{bottom:624.573333pt;}
.y110{bottom:627.933333pt;}
.ye9{bottom:632.093333pt;}
.y37{bottom:632.573333pt;}
.yf{bottom:633.373333pt;}
.ya6{bottom:636.573333pt;}
.y132{bottom:638.653333pt;}
.y154{bottom:638.813333pt;}
.y10f{bottom:646.813333pt;}
.yc8{bottom:649.693333pt;}
.ye8{bottom:650.973333pt;}
.y5a{bottom:653.213333pt;}
.ye{bottom:654.973333pt;}
.y131{bottom:656.413333pt;}
.y171{bottom:660.573333pt;}
.y36{bottom:661.213333pt;}
.y84{bottom:664.253333pt;}
.y10e{bottom:664.733333pt;}
.ya5{bottom:667.453333pt;}
.ye7{bottom:668.893333pt;}
.y59{bottom:670.813333pt;}
.y130{bottom:674.333333pt;}
.yd{bottom:677.693333pt;}
.y170{bottom:678.333333pt;}
.y35{bottom:678.973333pt;}
.yc7{bottom:680.573333pt;}
.y83{bottom:682.013333pt;}
.y10d{bottom:683.773333pt;}
.ya4{bottom:686.333333pt;}
.ye6{bottom:686.813333pt;}
.y16f{bottom:696.253333pt;}
.y58{bottom:699.613333pt;}
.y82{bottom:699.773333pt;}
.y34{bottom:700.573333pt;}
.y10c{bottom:701.693333pt;}
.y12f{bottom:702.973333pt;}
.ya3{bottom:705.373333pt;}
.yc6{bottom:707.133333pt;}
.y16e{bottom:714.013333pt;}
.ye5{bottom:714.653333pt;}
.y57{bottom:717.213333pt;}
.y10b{bottom:720.573333pt;}
.yc{bottom:720.733333pt;}
.y33{bottom:723.453333pt;}
.y81{bottom:728.413333pt;}
.y16d{bottom:731.933333pt;}
.ya2{bottom:735.133333pt;}
.yc5{bottom:738.013333pt;}
.yb{bottom:738.333333pt;}
.y10a{bottom:738.493333pt;}
.ye4{bottom:743.613333pt;}
.y56{bottom:743.933333pt;}
.y16c{bottom:753.693333pt;}
.y80{bottom:754.973333pt;}
.ya{bottom:756.253333pt;}
.y12e{bottom:756.413333pt;}
.ya1{bottom:761.693333pt;}
.y32{bottom:766.333333pt;}
.yc4{bottom:766.653333pt;}
.ye3{bottom:767.453333pt;}
.y9{bottom:774.213333pt;}
.y12d{bottom:774.373333pt;}
.y55{bottom:775.013333pt;}
.y31{bottom:784.133333pt;}
.y153{bottom:785.093333pt;}
.y7f{bottom:786.053333pt;}
.ye2{bottom:790.373333pt;}
.y8{bottom:791.973333pt;}
.y12c{bottom:792.133333pt;}
.y54{bottom:792.613333pt;}
.ya0{bottom:792.773333pt;}
.yc3{bottom:793.253333pt;}
.y16b{bottom:796.613333pt;}
.y109{bottom:797.253333pt;}
.y152{bottom:802.853333pt;}
.y12b{bottom:810.053333pt;}
.y9f{bottom:811.493333pt;}
.y30{bottom:812.773333pt;}
.y16a{bottom:814.373333pt;}
.y7e{bottom:814.533333pt;}
.y108{bottom:815.013333pt;}
.y7{bottom:820.613333pt;}
.y53{bottom:821.413333pt;}
.yc2{bottom:824.133333pt;}
.y12a{bottom:827.813333pt;}
.y9e{bottom:830.533333pt;}
.y2f{bottom:831.653333pt;}
.y7d{bottom:832.293333pt;}
.ye1{bottom:833.733333pt;}
.y107{bottom:834.053333pt;}
.y6{bottom:838.373333pt;}
.y151{bottom:838.533333pt;}
.y52{bottom:840.133333pt;}
.y7c{bottom:850.053333pt;}
.y2e{bottom:850.533333pt;}
.yc1{bottom:850.693333pt;}
.y106{bottom:851.813333pt;}
.y129{bottom:854.533333pt;}
.y5{bottom:856.293333pt;}
.y9d{bottom:860.293333pt;}
.y169{bottom:860.933333pt;}
.ye0{bottom:864.933333pt;}
.y150{bottom:867.173333pt;}
.y7b{bottom:867.973333pt;}
.y51{bottom:869.893333pt;}
.y105{bottom:870.853333pt;}
.y4{bottom:878.053333pt;}
.y168{bottom:878.693333pt;}
.y2d{bottom:880.453333pt;}
.yc0{bottom:881.573333pt;}
.y128{bottom:883.653333pt;}
.y14f{bottom:884.933333pt;}
.y7a{bottom:885.893333pt;}
.y9c{bottom:886.853333pt;}
.ydf{bottom:895.973333pt;}
.y50{bottom:896.453333pt;}
.y104{bottom:898.693333pt;}
.ybf{bottom:899.333333pt;}
.y14e{bottom:902.853333pt;}
.y2c{bottom:908.933333pt;}
.y167{bottom:914.373333pt;}
.y79{bottom:914.533333pt;}
.y9b{bottom:917.893333pt;}
.y14d{bottom:920.613333pt;}
.y3{bottom:924.133333pt;}
.ybe{bottom:926.053333pt;}
.yde{bottom:927.173333pt;}
.y4f{bottom:927.493333pt;}
.y2b{bottom:927.653333pt;}
.y78{bottom:932.133333pt;}
.y9a{bottom:936.773333pt;}
.y14c{bottom:938.533333pt;}
.y4e{bottom:946.213333pt;}
.y2a{bottom:946.693333pt;}
.y77{bottom:950.053333pt;}
.y99{bottom:955.653333pt;}
.y14b{bottom:956.293333pt;}
.ybd{bottom:956.933333pt;}
.ydd{bottom:958.373333pt;}
.y103{bottom:958.533333pt;}
.y2{bottom:961.253333pt;}
.y4d{bottom:965.253333pt;}
.y29{bottom:965.733333pt;}
.y102{bottom:976.293333pt;}
.y76{bottom:978.693333pt;}
.y14a{bottom:983.173333pt;}
.ybc{bottom:983.493333pt;}
.y4c{bottom:984.293333pt;}
.y28{bottom:984.613333pt;}
.y98{bottom:985.573333pt;}
.ydc{bottom:989.093333pt;}
.y101{bottom:995.333333pt;}
.y75{bottom:996.453333pt;}
.y1{bottom:998.373333pt;}
.ydb{bottom:1010.693333pt;}
.y4b{bottom:1012.160000pt;}
.y100{bottom:1013.280000pt;}
.y74{bottom:1014.400000pt;}
.y27{bottom:1014.560000pt;}
.h4{height:51.750000pt;}
.h5{height:52.641250pt;}
.h6{height:64.031250pt;}
.h7{height:64.975000pt;}
.h3{height:66.945937pt;}
.h2{height:114.437500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.471988pt;}
.x2{left:119.551988pt;}
.x5{left:137.466655pt;}
.x7{left:147.546655pt;}
.x6{left:161.466655pt;}
.x1{left:182.106655pt;}
.x3{left:332.226655pt;}
}




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