
    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_1dffd2afe91b9badfd6b942e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_ca2b2ca7d4e087c7f7993e8b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_c4b32820c6a48bb8ff568529.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_c0c92c75f3714e5f6f6eff49.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f25786b328ae5de3853f9317.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_65ad22b411a6e0faf4bc54e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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;}
.v1{vertical-align:21.600000px;}
.lsd{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-1.422000px;}
.ls6{letter-spacing:-0.972000px;}
.lsb{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.498000px;}
.lsa{letter-spacing:-0.486600px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.017280px;}
.ls8{letter-spacing:0.020160px;}
.lsc{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.498240px;}
.ls7{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.732000px;}
.lse{letter-spacing:2.160000px;}
.ls11{letter-spacing:13.265280px;}
.ls9{letter-spacing:24.946560px;}
.ls1{letter-spacing:82.690560px;}
.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;}
}
.ws5{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.586800px;}
.ws1{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.633400px;}
.ws0{word-spacing:-13.182000px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-5.417280px;}
._10{margin-left:-4.294080px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._a{width:3.283680px;}
._8{width:4.536000px;}
._9{width:5.935680px;}
._c{width:7.058880px;}
._b{width:8.184960px;}
._f{width:9.246240px;}
._e{width:10.289760px;}
._d{width:11.612160px;}
._15{width:13.331520px;}
._7{width:16.709760px;}
._16{width:17.841600px;}
._17{width:19.275840px;}
._12{width:21.245760px;}
._13{width:22.619520px;}
._14{width:24.144960px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:38.880000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y2f{bottom:3.240000px;}
.y2e{bottom:20.520000px;}
.y2d{bottom:37.800000px;}
.ye{bottom:43.560000px;}
.y2c{bottom:55.080000px;}
.yc{bottom:68.400000px;}
.y2b{bottom:72.360000px;}
.y2a{bottom:89.280000px;}
.ya{bottom:94.716000px;}
.y29{bottom:106.560000px;}
.y28{bottom:123.885000px;}
.y75{bottom:131.076000px;}
.yd0{bottom:131.796000px;}
.ya1{bottom:138.276000px;}
.y137{bottom:140.436000px;}
.yfc{bottom:141.156000px;}
.y27{bottom:141.165000px;}
.y156{bottom:146.196000px;}
.y38{bottom:147.636000px;}
.y74{bottom:148.356000px;}
.ycf{bottom:149.076000px;}
.ya0{bottom:155.190000px;}
.y136{bottom:157.710000px;}
.yfb{bottom:158.430000px;}
.y26{bottom:158.445000px;}
.y155{bottom:164.550000px;}
.y37{bottom:164.910000px;}
.y73{bottom:165.630000px;}
.yce{bottom:166.350000px;}
.y9f{bottom:172.470000px;}
.y135{bottom:174.990000px;}
.yfa{bottom:175.710000px;}
.y25{bottom:175.725000px;}
.y36{bottom:182.190000px;}
.y11e{bottom:182.550000px;}
.y72{bottom:182.910000px;}
.ycd{bottom:183.630000px;}
.y154{bottom:184.350000px;}
.y9e{bottom:189.750000px;}
.y134{bottom:192.270000px;}
.yf9{bottom:192.990000px;}
.y24{bottom:193.005000px;}
.y35{bottom:199.155000px;}
.y11d{bottom:199.875000px;}
.y71{bottom:200.235000px;}
.ycc{bottom:200.595000px;}
.y153{bottom:201.675000px;}
.y9d{bottom:207.075000px;}
.y133{bottom:209.235000px;}
.y23{bottom:210.285000px;}
.y140{bottom:210.315000px;}
.y34{bottom:216.435000px;}
.y70{bottom:217.155000px;}
.ycb{bottom:217.875000px;}
.y152{bottom:218.595000px;}
.y9c{bottom:224.355000px;}
.y132{bottom:226.515000px;}
.y13f{bottom:227.235000px;}
.y22{bottom:227.565000px;}
.yf8{bottom:228.315000px;}
.y33{bottom:233.715000px;}
.y6f{bottom:234.435000px;}
.yca{bottom:235.155000px;}
.y151{bottom:235.875000px;}
.y9b{bottom:241.635000px;}
.y131{bottom:243.795000px;}
.y13e{bottom:244.515000px;}
.y21{bottom:244.875000px;}
.yf7{bottom:245.235000px;}
.y32{bottom:250.995000px;}
.y6e{bottom:251.715000px;}
.yc9{bottom:252.435000px;}
.y150{bottom:253.155000px;}
.y9a{bottom:258.915000px;}
.y130{bottom:261.075000px;}
.y13d{bottom:261.795000px;}
.y20{bottom:262.155000px;}
.yf6{bottom:262.515000px;}
.y6d{bottom:268.995000px;}
.yc8{bottom:269.715000px;}
.y14f{bottom:270.435000px;}
.y99{bottom:276.195000px;}
.y12f{bottom:278.355000px;}
.y13c{bottom:279.075000px;}
.y1f{bottom:279.435000px;}
.yf5{bottom:279.795000px;}
.y31{bottom:285.915000px;}
.y6c{bottom:286.275000px;}
.yc7{bottom:286.995000px;}
.y14e{bottom:287.715000px;}
.y112{bottom:293.475000px;}
.y12e{bottom:295.635000px;}
.y1e{bottom:296.355000px;}
.yf4{bottom:297.075000px;}
.y6b{bottom:303.555000px;}
.yc6{bottom:304.275000px;}
.y14d{bottom:304.995000px;}
.y111{bottom:310.755000px;}
.y98{bottom:311.475000px;}
.y12d{bottom:312.915000px;}
.y1d{bottom:313.635000px;}
.y30{bottom:313.995000px;}
.yf3{bottom:314.355000px;}
.y6a{bottom:320.835000px;}
.yc5{bottom:321.555000px;}
.y14c{bottom:322.275000px;}
.y110{bottom:328.065000px;}
.y97{bottom:328.785000px;}
.y12c{bottom:330.225000px;}
.y1c{bottom:330.915000px;}
.y13b{bottom:330.945000px;}
.yf2{bottom:331.665000px;}
.y69{bottom:338.145000px;}
.y16{bottom:338.865000px;}
.y14b{bottom:339.585000px;}
.y10f{bottom:344.985000px;}
.y96{bottom:346.065000px;}
.y12b{bottom:347.505000px;}
.y1b{bottom:348.195000px;}
.y13a{bottom:348.225000px;}
.yf1{bottom:348.945000px;}
.y68{bottom:355.425000px;}
.yc4{bottom:356.145000px;}
.y14a{bottom:356.865000px;}
.y10e{bottom:362.265000px;}
.y95{bottom:362.985000px;}
.y12a{bottom:364.785000px;}
.y1a{bottom:365.505000px;}
.yf0{bottom:366.225000px;}
.y67{bottom:372.705000px;}
.yc3{bottom:373.425000px;}
.y149{bottom:374.145000px;}
.y10d{bottom:379.545000px;}
.y94{bottom:380.265000px;}
.y129{bottom:382.065000px;}
.y19{bottom:382.785000px;}
.yef{bottom:383.505000px;}
.y11c{bottom:389.625000px;}
.y66{bottom:389.985000px;}
.yc2{bottom:390.705000px;}
.y148{bottom:391.425000px;}
.y10c{bottom:396.825000px;}
.y93{bottom:397.545000px;}
.y128{bottom:398.985000px;}
.y18{bottom:400.065000px;}
.yee{bottom:400.785000px;}
.y11b{bottom:406.905000px;}
.y65{bottom:407.265000px;}
.y147{bottom:408.705000px;}
.y10b{bottom:414.105000px;}
.y92{bottom:414.825000px;}
.y127{bottom:416.265000px;}
.y139{bottom:416.985000px;}
.y17{bottom:417.345000px;}
.yed{bottom:418.065000px;}
.y64{bottom:424.185000px;}
.yc1{bottom:425.265000px;}
.y146{bottom:425.625000px;}
.y10a{bottom:431.385000px;}
.y91{bottom:432.105000px;}
.y126{bottom:433.545000px;}
.y138{bottom:434.265000px;}
.yec{bottom:434.985000px;}
.y63{bottom:441.465000px;}
.y145{bottom:442.905000px;}
.y109{bottom:448.665000px;}
.y125{bottom:450.870000px;}
.yc0{bottom:451.590000px;}
.yeb{bottom:452.310000px;}
.y62{bottom:458.790000px;}
.y144{bottom:460.230000px;}
.y108{bottom:465.990000px;}
.y90{bottom:467.430000px;}
.y124{bottom:468.150000px;}
.ybf{bottom:468.870000px;}
.yea{bottom:469.590000px;}
.y61{bottom:476.070000px;}
.y143{bottom:477.510000px;}
.y107{bottom:483.270000px;}
.y8f{bottom:484.710000px;}
.y123{bottom:485.430000px;}
.ybe{bottom:486.150000px;}
.ye9{bottom:486.870000px;}
.y60{bottom:493.350000px;}
.y142{bottom:494.790000px;}
.y106{bottom:500.550000px;}
.y8e{bottom:501.990000px;}
.y122{bottom:502.710000px;}
.ybd{bottom:503.430000px;}
.ye8{bottom:504.150000px;}
.y5f{bottom:510.630000px;}
.y105{bottom:517.830000px;}
.y8d{bottom:519.270000px;}
.y121{bottom:519.990000px;}
.ybc{bottom:520.710000px;}
.ye7{bottom:521.430000px;}
.y5e{bottom:527.910000px;}
.y11a{bottom:528.630000px;}
.y141{bottom:529.710000px;}
.y8c{bottom:536.550000px;}
.y120{bottom:537.270000px;}
.ybb{bottom:537.990000px;}
.ye6{bottom:538.710000px;}
.y5d{bottom:545.190000px;}
.y119{bottom:545.910000px;}
.y104{bottom:552.750000px;}
.y11f{bottom:554.550000px;}
.yba{bottom:555.270000px;}
.ye5{bottom:555.990000px;}
.y5c{bottom:562.470000px;}
.y118{bottom:563.190000px;}
.y103{bottom:570.030000px;}
.y8b{bottom:571.830000px;}
.yb9{bottom:572.550000px;}
.ye4{bottom:573.270000px;}
.y5b{bottom:579.780000px;}
.y102{bottom:587.340000px;}
.y8a{bottom:589.140000px;}
.yb8{bottom:589.860000px;}
.ye3{bottom:590.580000px;}
.y5a{bottom:597.060000px;}
.y117{bottom:598.500000px;}
.y101{bottom:604.620000px;}
.y89{bottom:606.060000px;}
.yb7{bottom:607.140000px;}
.ye2{bottom:607.860000px;}
.y59{bottom:613.980000px;}
.y116{bottom:615.420000px;}
.y88{bottom:623.340000px;}
.yb6{bottom:624.060000px;}
.ye1{bottom:625.140000px;}
.y58{bottom:631.260000px;}
.y115{bottom:632.700000px;}
.y100{bottom:639.900000px;}
.y87{bottom:640.620000px;}
.yb5{bottom:641.340000px;}
.ye0{bottom:642.060000px;}
.y57{bottom:648.540000px;}
.y114{bottom:649.980000px;}
.yff{bottom:657.180000px;}
.y86{bottom:657.900000px;}
.yb4{bottom:658.620000px;}
.ydf{bottom:659.340000px;}
.y56{bottom:665.820000px;}
.yfe{bottom:674.460000px;}
.y85{bottom:675.180000px;}
.yb3{bottom:675.900000px;}
.yde{bottom:676.620000px;}
.y55{bottom:683.100000px;}
.y113{bottom:684.900000px;}
.yfd{bottom:691.740000px;}
.y84{bottom:692.460000px;}
.yb2{bottom:693.180000px;}
.ydd{bottom:693.900000px;}
.y54{bottom:700.380000px;}
.y83{bottom:709.770000px;}
.yb1{bottom:710.490000px;}
.ydc{bottom:711.210000px;}
.y53{bottom:717.690000px;}
.y16d{bottom:722.730000px;}
.y82{bottom:727.050000px;}
.yb0{bottom:727.770000px;}
.ydb{bottom:728.490000px;}
.y52{bottom:734.970000px;}
.y16c{bottom:740.010000px;}
.y81{bottom:744.330000px;}
.yaf{bottom:745.050000px;}
.yda{bottom:745.770000px;}
.y51{bottom:752.250000px;}
.y16b{bottom:757.290000px;}
.y80{bottom:761.610000px;}
.yae{bottom:762.330000px;}
.yd9{bottom:763.050000px;}
.y16a{bottom:774.570000px;}
.y15{bottom:775.650000px;}
.y7f{bottom:778.890000px;}
.yad{bottom:779.610000px;}
.yd8{bottom:780.330000px;}
.y50{bottom:787.170000px;}
.y169{bottom:791.850000px;}
.y14{bottom:792.930000px;}
.y7e{bottom:795.810000px;}
.yac{bottom:796.890000px;}
.yd7{bottom:797.610000px;}
.y168{bottom:809.130000px;}
.y7d{bottom:813.090000px;}
.yab{bottom:813.810000px;}
.yd6{bottom:814.890000px;}
.y4f{bottom:815.970000px;}
.y13{bottom:818.850000px;}
.y167{bottom:826.050000px;}
.y7c{bottom:830.415000px;}
.yaa{bottom:831.135000px;}
.yd5{bottom:831.855000px;}
.y4e{bottom:833.295000px;}
.y166{bottom:843.375000px;}
.y12{bottom:844.815000px;}
.ya9{bottom:848.415000px;}
.yd4{bottom:849.135000px;}
.y4d{bottom:850.575000px;}
.y165{bottom:860.655000px;}
.y7b{bottom:865.695000px;}
.yd3{bottom:866.415000px;}
.y11{bottom:870.375000px;}
.y164{bottom:877.935000px;}
.y4c{bottom:881.175000px;}
.y7a{bottom:882.975000px;}
.yd2{bottom:883.695000px;}
.y163{bottom:895.215000px;}
.y10{bottom:896.295000px;}
.y4b{bottom:899.535000px;}
.y79{bottom:900.255000px;}
.yd1{bottom:900.975000px;}
.y162{bottom:912.495000px;}
.yf{bottom:915.375000px;}
.y78{bottom:917.535000px;}
.y4a{bottom:918.255000px;}
.y161{bottom:929.775000px;}
.y77{bottom:934.815000px;}
.y49{bottom:935.535000px;}
.y9{bottom:941.295000px;}
.y160{bottom:947.055000px;}
.y76{bottom:952.095000px;}
.y48{bottom:952.845000px;}
.y8{bottom:958.605000px;}
.y15f{bottom:964.365000px;}
.ya8{bottom:969.405000px;}
.y47{bottom:970.125000px;}
.y7{bottom:972.645000px;}
.y15e{bottom:981.645000px;}
.ya7{bottom:986.685000px;}
.y46{bottom:987.405000px;}
.y15d{bottom:998.925000px;}
.ya6{bottom:1003.605000px;}
.y45{bottom:1004.685000px;}
.y15c{bottom:1015.845000px;}
.ya5{bottom:1020.885000px;}
.y44{bottom:1021.605000px;}
.y6{bottom:1027.365000px;}
.y15b{bottom:1034.205000px;}
.ya4{bottom:1038.165000px;}
.y43{bottom:1038.885000px;}
.y5{bottom:1052.205000px;}
.y15a{bottom:1054.005000px;}
.ya3{bottom:1055.445000px;}
.y42{bottom:1056.165000px;}
.y159{bottom:1071.285000px;}
.y4{bottom:1072.725000px;}
.y41{bottom:1073.445000px;}
.ya2{bottom:1090.050000px;}
.y40{bottom:1090.770000px;}
.y158{bottom:1091.130000px;}
.y3{bottom:1094.010000px;}
.y3f{bottom:1108.050000px;}
.y157{bottom:1112.370000px;}
.y2{bottom:1114.530000px;}
.y3e{bottom:1125.330000px;}
.y1{bottom:1131.450000px;}
.y3d{bottom:1142.610000px;}
.y3c{bottom:1166.370000px;}
.y3b{bottom:1180.410000px;}
.y3a{bottom:1201.290000px;}
.y39{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h7{height:48.013594px;}
.h5{height:48.147188px;}
.h4{height:53.067656px;}
.hc{height:53.215313px;}
.h2{height:53.717344px;}
.hd{height:55.714922px;}
.he{height:58.121719px;}
.hb{height:63.175781px;}
.h3{height:63.949219px;}
.h9{height:85.691953px;}
.ha{height:431.385000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:8.640000px;}
.x7{left:106.235987px;}
.x10{left:133.271987px;}
.xb{left:142.991987px;}
.x11{left:148.751987px;}
.xe{left:180.794987px;}
.x2{left:254.264987px;}
.xc{left:261.104987px;}
.x6{left:274.064987px;}
.xa{left:304.350000px;}
.xd{left:339.984000px;}
.x5{left:355.829987px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x8{left:446.579987px;}
.xf{left:447.660000px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-1.264000pt;}
.ls6{letter-spacing:-0.864000pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.442667pt;}
.lsa{letter-spacing:-0.432533pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.015360pt;}
.ls8{letter-spacing:0.017920pt;}
.lsc{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.442880pt;}
.ls7{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.650667pt;}
.lse{letter-spacing:1.920000pt;}
.ls11{letter-spacing:11.791360pt;}
.ls9{letter-spacing:22.174720pt;}
.ls1{letter-spacing:73.502720pt;}
.ws5{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.854933pt;}
.ws1{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.007467pt;}
.ws0{word-spacing:-11.717333pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-4.815360pt;}
._10{margin-left:-3.816960pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._a{width:2.918827pt;}
._8{width:4.032000pt;}
._9{width:5.276160pt;}
._c{width:6.274560pt;}
._b{width:7.275520pt;}
._f{width:8.218880pt;}
._e{width:9.146453pt;}
._d{width:10.321920pt;}
._15{width:11.850240pt;}
._7{width:14.853120pt;}
._16{width:15.859200pt;}
._17{width:17.134080pt;}
._12{width:18.885120pt;}
._13{width:20.106240pt;}
._14{width:21.462187pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y2f{bottom:2.880000pt;}
.y2e{bottom:18.240000pt;}
.y2d{bottom:33.600000pt;}
.ye{bottom:38.720000pt;}
.y2c{bottom:48.960000pt;}
.yc{bottom:60.800000pt;}
.y2b{bottom:64.320000pt;}
.y2a{bottom:79.360000pt;}
.ya{bottom:84.192000pt;}
.y29{bottom:94.720000pt;}
.y28{bottom:110.120000pt;}
.y75{bottom:116.512000pt;}
.yd0{bottom:117.152000pt;}
.ya1{bottom:122.912000pt;}
.y137{bottom:124.832000pt;}
.yfc{bottom:125.472000pt;}
.y27{bottom:125.480000pt;}
.y156{bottom:129.952000pt;}
.y38{bottom:131.232000pt;}
.y74{bottom:131.872000pt;}
.ycf{bottom:132.512000pt;}
.ya0{bottom:137.946667pt;}
.y136{bottom:140.186667pt;}
.yfb{bottom:140.826667pt;}
.y26{bottom:140.840000pt;}
.y155{bottom:146.266667pt;}
.y37{bottom:146.586667pt;}
.y73{bottom:147.226667pt;}
.yce{bottom:147.866667pt;}
.y9f{bottom:153.306667pt;}
.y135{bottom:155.546667pt;}
.yfa{bottom:156.186667pt;}
.y25{bottom:156.200000pt;}
.y36{bottom:161.946667pt;}
.y11e{bottom:162.266667pt;}
.y72{bottom:162.586667pt;}
.ycd{bottom:163.226667pt;}
.y154{bottom:163.866667pt;}
.y9e{bottom:168.666667pt;}
.y134{bottom:170.906667pt;}
.yf9{bottom:171.546667pt;}
.y24{bottom:171.560000pt;}
.y35{bottom:177.026667pt;}
.y11d{bottom:177.666667pt;}
.y71{bottom:177.986667pt;}
.ycc{bottom:178.306667pt;}
.y153{bottom:179.266667pt;}
.y9d{bottom:184.066667pt;}
.y133{bottom:185.986667pt;}
.y23{bottom:186.920000pt;}
.y140{bottom:186.946667pt;}
.y34{bottom:192.386667pt;}
.y70{bottom:193.026667pt;}
.ycb{bottom:193.666667pt;}
.y152{bottom:194.306667pt;}
.y9c{bottom:199.426667pt;}
.y132{bottom:201.346667pt;}
.y13f{bottom:201.986667pt;}
.y22{bottom:202.280000pt;}
.yf8{bottom:202.946667pt;}
.y33{bottom:207.746667pt;}
.y6f{bottom:208.386667pt;}
.yca{bottom:209.026667pt;}
.y151{bottom:209.666667pt;}
.y9b{bottom:214.786667pt;}
.y131{bottom:216.706667pt;}
.y13e{bottom:217.346667pt;}
.y21{bottom:217.666667pt;}
.yf7{bottom:217.986667pt;}
.y32{bottom:223.106667pt;}
.y6e{bottom:223.746667pt;}
.yc9{bottom:224.386667pt;}
.y150{bottom:225.026667pt;}
.y9a{bottom:230.146667pt;}
.y130{bottom:232.066667pt;}
.y13d{bottom:232.706667pt;}
.y20{bottom:233.026667pt;}
.yf6{bottom:233.346667pt;}
.y6d{bottom:239.106667pt;}
.yc8{bottom:239.746667pt;}
.y14f{bottom:240.386667pt;}
.y99{bottom:245.506667pt;}
.y12f{bottom:247.426667pt;}
.y13c{bottom:248.066667pt;}
.y1f{bottom:248.386667pt;}
.yf5{bottom:248.706667pt;}
.y31{bottom:254.146667pt;}
.y6c{bottom:254.466667pt;}
.yc7{bottom:255.106667pt;}
.y14e{bottom:255.746667pt;}
.y112{bottom:260.866667pt;}
.y12e{bottom:262.786667pt;}
.y1e{bottom:263.426667pt;}
.yf4{bottom:264.066667pt;}
.y6b{bottom:269.826667pt;}
.yc6{bottom:270.466667pt;}
.y14d{bottom:271.106667pt;}
.y111{bottom:276.226667pt;}
.y98{bottom:276.866667pt;}
.y12d{bottom:278.146667pt;}
.y1d{bottom:278.786667pt;}
.y30{bottom:279.106667pt;}
.yf3{bottom:279.426667pt;}
.y6a{bottom:285.186667pt;}
.yc5{bottom:285.826667pt;}
.y14c{bottom:286.466667pt;}
.y110{bottom:291.613333pt;}
.y97{bottom:292.253333pt;}
.y12c{bottom:293.533333pt;}
.y1c{bottom:294.146667pt;}
.y13b{bottom:294.173333pt;}
.yf2{bottom:294.813333pt;}
.y69{bottom:300.573333pt;}
.y16{bottom:301.213333pt;}
.y14b{bottom:301.853333pt;}
.y10f{bottom:306.653333pt;}
.y96{bottom:307.613333pt;}
.y12b{bottom:308.893333pt;}
.y1b{bottom:309.506667pt;}
.y13a{bottom:309.533333pt;}
.yf1{bottom:310.173333pt;}
.y68{bottom:315.933333pt;}
.yc4{bottom:316.573333pt;}
.y14a{bottom:317.213333pt;}
.y10e{bottom:322.013333pt;}
.y95{bottom:322.653333pt;}
.y12a{bottom:324.253333pt;}
.y1a{bottom:324.893333pt;}
.yf0{bottom:325.533333pt;}
.y67{bottom:331.293333pt;}
.yc3{bottom:331.933333pt;}
.y149{bottom:332.573333pt;}
.y10d{bottom:337.373333pt;}
.y94{bottom:338.013333pt;}
.y129{bottom:339.613333pt;}
.y19{bottom:340.253333pt;}
.yef{bottom:340.893333pt;}
.y11c{bottom:346.333333pt;}
.y66{bottom:346.653333pt;}
.yc2{bottom:347.293333pt;}
.y148{bottom:347.933333pt;}
.y10c{bottom:352.733333pt;}
.y93{bottom:353.373333pt;}
.y128{bottom:354.653333pt;}
.y18{bottom:355.613333pt;}
.yee{bottom:356.253333pt;}
.y11b{bottom:361.693333pt;}
.y65{bottom:362.013333pt;}
.y147{bottom:363.293333pt;}
.y10b{bottom:368.093333pt;}
.y92{bottom:368.733333pt;}
.y127{bottom:370.013333pt;}
.y139{bottom:370.653333pt;}
.y17{bottom:370.973333pt;}
.yed{bottom:371.613333pt;}
.y64{bottom:377.053333pt;}
.yc1{bottom:378.013333pt;}
.y146{bottom:378.333333pt;}
.y10a{bottom:383.453333pt;}
.y91{bottom:384.093333pt;}
.y126{bottom:385.373333pt;}
.y138{bottom:386.013333pt;}
.yec{bottom:386.653333pt;}
.y63{bottom:392.413333pt;}
.y145{bottom:393.693333pt;}
.y109{bottom:398.813333pt;}
.y125{bottom:400.773333pt;}
.yc0{bottom:401.413333pt;}
.yeb{bottom:402.053333pt;}
.y62{bottom:407.813333pt;}
.y144{bottom:409.093333pt;}
.y108{bottom:414.213333pt;}
.y90{bottom:415.493333pt;}
.y124{bottom:416.133333pt;}
.ybf{bottom:416.773333pt;}
.yea{bottom:417.413333pt;}
.y61{bottom:423.173333pt;}
.y143{bottom:424.453333pt;}
.y107{bottom:429.573333pt;}
.y8f{bottom:430.853333pt;}
.y123{bottom:431.493333pt;}
.ybe{bottom:432.133333pt;}
.ye9{bottom:432.773333pt;}
.y60{bottom:438.533333pt;}
.y142{bottom:439.813333pt;}
.y106{bottom:444.933333pt;}
.y8e{bottom:446.213333pt;}
.y122{bottom:446.853333pt;}
.ybd{bottom:447.493333pt;}
.ye8{bottom:448.133333pt;}
.y5f{bottom:453.893333pt;}
.y105{bottom:460.293333pt;}
.y8d{bottom:461.573333pt;}
.y121{bottom:462.213333pt;}
.ybc{bottom:462.853333pt;}
.ye7{bottom:463.493333pt;}
.y5e{bottom:469.253333pt;}
.y11a{bottom:469.893333pt;}
.y141{bottom:470.853333pt;}
.y8c{bottom:476.933333pt;}
.y120{bottom:477.573333pt;}
.ybb{bottom:478.213333pt;}
.ye6{bottom:478.853333pt;}
.y5d{bottom:484.613333pt;}
.y119{bottom:485.253333pt;}
.y104{bottom:491.333333pt;}
.y11f{bottom:492.933333pt;}
.yba{bottom:493.573333pt;}
.ye5{bottom:494.213333pt;}
.y5c{bottom:499.973333pt;}
.y118{bottom:500.613333pt;}
.y103{bottom:506.693333pt;}
.y8b{bottom:508.293333pt;}
.yb9{bottom:508.933333pt;}
.ye4{bottom:509.573333pt;}
.y5b{bottom:515.360000pt;}
.y102{bottom:522.080000pt;}
.y8a{bottom:523.680000pt;}
.yb8{bottom:524.320000pt;}
.ye3{bottom:524.960000pt;}
.y5a{bottom:530.720000pt;}
.y117{bottom:532.000000pt;}
.y101{bottom:537.440000pt;}
.y89{bottom:538.720000pt;}
.yb7{bottom:539.680000pt;}
.ye2{bottom:540.320000pt;}
.y59{bottom:545.760000pt;}
.y116{bottom:547.040000pt;}
.y88{bottom:554.080000pt;}
.yb6{bottom:554.720000pt;}
.ye1{bottom:555.680000pt;}
.y58{bottom:561.120000pt;}
.y115{bottom:562.400000pt;}
.y100{bottom:568.800000pt;}
.y87{bottom:569.440000pt;}
.yb5{bottom:570.080000pt;}
.ye0{bottom:570.720000pt;}
.y57{bottom:576.480000pt;}
.y114{bottom:577.760000pt;}
.yff{bottom:584.160000pt;}
.y86{bottom:584.800000pt;}
.yb4{bottom:585.440000pt;}
.ydf{bottom:586.080000pt;}
.y56{bottom:591.840000pt;}
.yfe{bottom:599.520000pt;}
.y85{bottom:600.160000pt;}
.yb3{bottom:600.800000pt;}
.yde{bottom:601.440000pt;}
.y55{bottom:607.200000pt;}
.y113{bottom:608.800000pt;}
.yfd{bottom:614.880000pt;}
.y84{bottom:615.520000pt;}
.yb2{bottom:616.160000pt;}
.ydd{bottom:616.800000pt;}
.y54{bottom:622.560000pt;}
.y83{bottom:630.906667pt;}
.yb1{bottom:631.546667pt;}
.ydc{bottom:632.186667pt;}
.y53{bottom:637.946667pt;}
.y16d{bottom:642.426667pt;}
.y82{bottom:646.266667pt;}
.yb0{bottom:646.906667pt;}
.ydb{bottom:647.546667pt;}
.y52{bottom:653.306667pt;}
.y16c{bottom:657.786667pt;}
.y81{bottom:661.626667pt;}
.yaf{bottom:662.266667pt;}
.yda{bottom:662.906667pt;}
.y51{bottom:668.666667pt;}
.y16b{bottom:673.146667pt;}
.y80{bottom:676.986667pt;}
.yae{bottom:677.626667pt;}
.yd9{bottom:678.266667pt;}
.y16a{bottom:688.506667pt;}
.y15{bottom:689.466667pt;}
.y7f{bottom:692.346667pt;}
.yad{bottom:692.986667pt;}
.yd8{bottom:693.626667pt;}
.y50{bottom:699.706667pt;}
.y169{bottom:703.866667pt;}
.y14{bottom:704.826667pt;}
.y7e{bottom:707.386667pt;}
.yac{bottom:708.346667pt;}
.yd7{bottom:708.986667pt;}
.y168{bottom:719.226667pt;}
.y7d{bottom:722.746667pt;}
.yab{bottom:723.386667pt;}
.yd6{bottom:724.346667pt;}
.y4f{bottom:725.306667pt;}
.y13{bottom:727.866667pt;}
.y167{bottom:734.266667pt;}
.y7c{bottom:738.146667pt;}
.yaa{bottom:738.786667pt;}
.yd5{bottom:739.426667pt;}
.y4e{bottom:740.706667pt;}
.y166{bottom:749.666667pt;}
.y12{bottom:750.946667pt;}
.ya9{bottom:754.146667pt;}
.yd4{bottom:754.786667pt;}
.y4d{bottom:756.066667pt;}
.y165{bottom:765.026667pt;}
.y7b{bottom:769.506667pt;}
.yd3{bottom:770.146667pt;}
.y11{bottom:773.666667pt;}
.y164{bottom:780.386667pt;}
.y4c{bottom:783.266667pt;}
.y7a{bottom:784.866667pt;}
.yd2{bottom:785.506667pt;}
.y163{bottom:795.746667pt;}
.y10{bottom:796.706667pt;}
.y4b{bottom:799.586667pt;}
.y79{bottom:800.226667pt;}
.yd1{bottom:800.866667pt;}
.y162{bottom:811.106667pt;}
.yf{bottom:813.666667pt;}
.y78{bottom:815.586667pt;}
.y4a{bottom:816.226667pt;}
.y161{bottom:826.466667pt;}
.y77{bottom:830.946667pt;}
.y49{bottom:831.586667pt;}
.y9{bottom:836.706667pt;}
.y160{bottom:841.826667pt;}
.y76{bottom:846.306667pt;}
.y48{bottom:846.973333pt;}
.y8{bottom:852.093333pt;}
.y15f{bottom:857.213333pt;}
.ya8{bottom:861.693333pt;}
.y47{bottom:862.333333pt;}
.y7{bottom:864.573333pt;}
.y15e{bottom:872.573333pt;}
.ya7{bottom:877.053333pt;}
.y46{bottom:877.693333pt;}
.y15d{bottom:887.933333pt;}
.ya6{bottom:892.093333pt;}
.y45{bottom:893.053333pt;}
.y15c{bottom:902.973333pt;}
.ya5{bottom:907.453333pt;}
.y44{bottom:908.093333pt;}
.y6{bottom:913.213333pt;}
.y15b{bottom:919.293333pt;}
.ya4{bottom:922.813333pt;}
.y43{bottom:923.453333pt;}
.y5{bottom:935.293333pt;}
.y15a{bottom:936.893333pt;}
.ya3{bottom:938.173333pt;}
.y42{bottom:938.813333pt;}
.y159{bottom:952.253333pt;}
.y4{bottom:953.533333pt;}
.y41{bottom:954.173333pt;}
.ya2{bottom:968.933333pt;}
.y40{bottom:969.573333pt;}
.y158{bottom:969.893333pt;}
.y3{bottom:972.453333pt;}
.y3f{bottom:984.933333pt;}
.y157{bottom:988.773333pt;}
.y2{bottom:990.693333pt;}
.y3e{bottom:1000.293333pt;}
.y1{bottom:1005.733333pt;}
.y3d{bottom:1015.653333pt;}
.y3c{bottom:1036.773333pt;}
.y3b{bottom:1049.253333pt;}
.y3a{bottom:1067.813333pt;}
.y39{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h7{height:42.678750pt;}
.h5{height:42.797500pt;}
.h4{height:47.171250pt;}
.hc{height:47.302500pt;}
.h2{height:47.748750pt;}
.hd{height:49.524375pt;}
.he{height:51.663750pt;}
.hb{height:56.156250pt;}
.h3{height:56.843750pt;}
.h9{height:76.170625pt;}
.ha{height:383.453333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:7.680000pt;}
.x7{left:94.431988pt;}
.x10{left:118.463988pt;}
.xb{left:127.103988pt;}
.x11{left:132.223988pt;}
.xe{left:160.706655pt;}
.x2{left:226.013322pt;}
.xc{left:232.093322pt;}
.x6{left:243.613322pt;}
.xa{left:270.533333pt;}
.xd{left:302.208000pt;}
.x5{left:316.293322pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x8{left:396.959988pt;}
.xf{left:397.920000pt;}
.x1{left:699.493322pt;}
}




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