
    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_f4dda3abe191b4bc2d7772af.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_ee2739e2698135d76a081be9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_069b5f6a6aa8461f1ae2ccf0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_0ada72708cdf0cca48207bfc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_18eaf044381e727ca7786d4f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999512;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_3d18ee9aa6632388c7b55f35.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.115234;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_b22dc7961ec15e7872ac06bf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2054a35619732311a685910b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;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_ccc71e6db4e21056241597f0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.106934;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(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls13{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-1.224000px;}
.ls2{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.106800px;}
.ls14{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.720000px;}
.lsc{letter-spacing:1.008000px;}
.lsa{letter-spacing:2.160000px;}
.ls10{letter-spacing:2.880000px;}
.ls11{letter-spacing:3.600000px;}
.ls8{letter-spacing:17.597280px;}
.lsf{letter-spacing:26.640000px;}
.lse{letter-spacing:27.360000px;}
.ls5{letter-spacing:64.421280px;}
.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:-72.000000px;}
.wsb{word-spacing:-59.760000px;}
.ws7{word-spacing:-21.060000px;}
.wsd{word-spacing:-19.008000px;}
.ws9{word-spacing:-18.720000px;}
.wsf{word-spacing:-18.576000px;}
.wsc{word-spacing:-18.288000px;}
.wse{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws12{word-spacing:-16.776000px;}
.ws10{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.506480px;}
.ws0{word-spacing:-12.060000px;}
.ws6{word-spacing:0.000000px;}
._1e{margin-left:-6.504000px;}
._12{margin-left:-5.146560px;}
._11{margin-left:-3.798720px;}
._1b{margin-left:-2.488320px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._8{width:2.897280px;}
._c{width:4.128000px;}
._6{width:5.808000px;}
._7{width:6.936000px;}
._9{width:8.801760px;}
._a{width:10.080000px;}
._b{width:11.184480px;}
._16{width:12.503520px;}
._17{width:14.112000px;}
._18{width:15.209280px;}
._e{width:16.416000px;}
._19{width:19.440000px;}
._13{width:20.664000px;}
._14{width:21.959040px;}
._15{width:23.234880px;}
._d{width:24.312000px;}
._1c{width:25.317120px;}
._1a{width:26.424000px;}
._f{width:32.616000px;}
._10{width:33.768000px;}
._5{width:53.389680px;}
._4{width:54.391680px;}
._20{width:56.736000px;}
._2{width:63.993360px;}
._3{width:65.308320px;}
._21{width:80.618880px;}
._22{width:112.502880px;}
._1d{width:323.496000px;}
._1f{width:616.824000px;}
.fc3{color:rgb(238,0,0);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:3.240000px;}
.y77{bottom:5.400000px;}
.yb4{bottom:5.940000px;}
.y8c{bottom:11.880000px;}
.ya7{bottom:14.400000px;}
.yb2{bottom:14.580000px;}
.y8a{bottom:20.520000px;}
.yb3{bottom:23.040000px;}
.yb6{bottom:29.160000px;}
.yb7{bottom:37.800000px;}
.y6{bottom:82.116000px;}
.y5{bottom:109.296000px;}
.y4{bottom:134.496000px;}
.y3{bottom:153.750000px;}
.y2{bottom:172.650000px;}
.yf8{bottom:195.690000px;}
.yd4{bottom:202.890000px;}
.y49{bottom:207.390000px;}
.y2d{bottom:207.570000px;}
.yf7{bottom:216.390000px;}
.yab{bottom:218.550000px;}
.y64{bottom:221.790000px;}
.y82{bottom:224.310000px;}
.y2c{bottom:228.270000px;}
.yc9{bottom:228.630000px;}
.y67{bottom:232.590000px;}
.y48{bottom:238.530000px;}
.yd3{bottom:239.790000px;}
.yf6{bottom:243.030000px;}
.y2b{bottom:248.970000px;}
.yaa{bottom:249.510000px;}
.y81{bottom:251.130000px;}
.y63{bottom:252.750000px;}
.yc8{bottom:259.590000px;}
.y47{bottom:269.490000px;}
.y2a{bottom:269.670000px;}
.yf5{bottom:269.850000px;}
.ya9{bottom:270.210000px;}
.yd2{bottom:270.930000px;}
.y66{bottom:275.610000px;}
.y117{bottom:276.330000px;}
.y62{bottom:287.850000px;}
.y80{bottom:288.210000px;}
.y29{bottom:290.370000px;}
.yf4{bottom:290.550000px;}
.yc7{bottom:290.730000px;}
.ya8{bottom:290.910000px;}
.y46{bottom:300.630000px;}
.yd1{bottom:301.890000px;}
.y116{bottom:302.970000px;}
.ya6{bottom:308.550000px;}
.y28{bottom:311.070000px;}
.yf3{bottom:311.250000px;}
.y65{bottom:318.450000px;}
.y7f{bottom:319.170000px;}
.yc6{bottom:327.810000px;}
.y115{bottom:329.610000px;}
.y61{bottom:330.690000px;}
.y45{bottom:331.590000px;}
.y27{bottom:331.770000px;}
.yf2{bottom:331.950000px;}
.yd0{bottom:333.030000px;}
.ya5{bottom:348.195000px;}
.y7e{bottom:350.355000px;}
.y26{bottom:352.515000px;}
.yf1{bottom:352.695000px;}
.y114{bottom:356.475000px;}
.yc5{bottom:358.815000px;}
.y60{bottom:361.875000px;}
.y44{bottom:362.775000px;}
.ycf{bottom:364.035000px;}
.ya4{bottom:369.795000px;}
.y25{bottom:373.215000px;}
.y113{bottom:377.175000px;}
.yf0{bottom:379.335000px;}
.y7d{bottom:381.315000px;}
.yc4{bottom:389.955000px;}
.ya3{bottom:392.115000px;}
.y5f{bottom:392.835000px;}
.y43{bottom:393.735000px;}
.y24{bottom:393.915000px;}
.yce{bottom:395.175000px;}
.y112{bottom:397.875000px;}
.yef{bottom:405.975000px;}
.y7c{bottom:407.955000px;}
.y23{bottom:414.615000px;}
.ya2{bottom:418.395000px;}
.yc3{bottom:420.915000px;}
.y5e{bottom:423.975000px;}
.y42{bottom:424.875000px;}
.ycd{bottom:426.135000px;}
.yee{bottom:426.675000px;}
.y111{bottom:430.455000px;}
.y7b{bottom:434.775000px;}
.y22{bottom:435.315000px;}
.ya1{bottom:439.095000px;}
.yed{bottom:447.375000px;}
.yc2{bottom:452.055000px;}
.y7a{bottom:452.235000px;}
.y5d{bottom:454.935000px;}
.y41{bottom:455.835000px;}
.y21{bottom:456.015000px;}
.ycc{bottom:457.275000px;}
.ya0{bottom:459.795000px;}
.y110{bottom:463.215000px;}
.y79{bottom:473.835000px;}
.y20{bottom:476.715000px;}
.yec{bottom:480.135000px;}
.y9f{bottom:480.495000px;}
.yc1{bottom:483.015000px;}
.y10f{bottom:483.915000px;}
.y5c{bottom:486.075000px;}
.y40{bottom:486.975000px;}
.ycb{bottom:488.235000px;}
.y78{bottom:495.435000px;}
.y1f{bottom:503.355000px;}
.y10e{bottom:504.615000px;}
.yeb{bottom:506.955000px;}
.yca{bottom:515.415000px;}
.y5b{bottom:517.035000px;}
.y9e{bottom:517.575000px;}
.y76{bottom:517.755000px;}
.y3f{bottom:517.935000px;}
.yc0{bottom:520.095000px;}
.y1e{bottom:524.055000px;}
.yea{bottom:527.655000px;}
.y10d{bottom:540.435000px;}
.y75{bottom:544.035000px;}
.y1d{bottom:544.755000px;}
.y5a{bottom:548.175000px;}
.y9d{bottom:548.535000px;}
.y3e{bottom:549.075000px;}
.ybf{bottom:551.055000px;}
.ye9{bottom:560.235000px;}
.y10c{bottom:561.135000px;}
.y1c{bottom:565.455000px;}
.y74{bottom:570.855000px;}
.y59{bottom:579.135000px;}
.y9c{bottom:579.675000px;}
.y3d{bottom:580.035000px;}
.ye8{bottom:580.935000px;}
.y10b{bottom:581.835000px;}
.ybe{bottom:582.195000px;}
.y1b{bottom:586.155000px;}
.y73{bottom:591.555000px;}
.y10a{bottom:602.715000px;}
.y1a{bottom:606.885000px;}
.ye7{bottom:607.605000px;}
.y58{bottom:610.305000px;}
.y9b{bottom:610.665000px;}
.y3c{bottom:611.205000px;}
.y72{bottom:612.285000px;}
.ybd{bottom:613.185000px;}
.y109{bottom:623.445000px;}
.y19{bottom:627.585000px;}
.ye6{bottom:634.245000px;}
.y57{bottom:641.265000px;}
.y9a{bottom:641.805000px;}
.y3b{bottom:642.165000px;}
.ybc{bottom:644.325000px;}
.y18{bottom:648.285000px;}
.y71{bottom:649.185000px;}
.ye5{bottom:654.945000px;}
.y108{bottom:656.205000px;}
.y99{bottom:658.545000px;}
.y17{bottom:668.985000px;}
.y56{bottom:672.405000px;}
.y3a{bottom:673.305000px;}
.ybb{bottom:675.285000px;}
.ye4{bottom:675.645000px;}
.y70{bottom:680.325000px;}
.y98{bottom:680.865000px;}
.y107{bottom:688.965000px;}
.y16{bottom:695.805000px;}
.y97{bottom:702.465000px;}
.y55{bottom:703.365000px;}
.y39{bottom:704.265000px;}
.yba{bottom:706.425000px;}
.ye3{bottom:708.225000px;}
.y106{bottom:709.665000px;}
.y6f{bottom:711.285000px;}
.y15{bottom:716.505000px;}
.y96{bottom:724.785000px;}
.yb9{bottom:727.125000px;}
.y105{bottom:730.365000px;}
.y54{bottom:734.505000px;}
.ye2{bottom:734.865000px;}
.y38{bottom:735.405000px;}
.y6e{bottom:742.425000px;}
.yb8{bottom:747.825000px;}
.y14{bottom:749.985000px;}
.y95{bottom:751.065000px;}
.ye1{bottom:755.565000px;}
.y104{bottom:763.125000px;}
.yb5{bottom:765.285000px;}
.y53{bottom:765.465000px;}
.y37{bottom:766.365000px;}
.y13{bottom:770.685000px;}
.y94{bottom:771.765000px;}
.y6d{bottom:779.505000px;}
.ye0{bottom:782.205000px;}
.y103{bottom:789.765000px;}
.y12{bottom:790.485000px;}
.y93{bottom:792.465000px;}
.y52{bottom:796.605000px;}
.y36{bottom:797.505000px;}
.y85{bottom:803.985000px;}
.ydf{bottom:809.025000px;}
.y102{bottom:810.465000px;}
.y6c{bottom:816.405000px;}
.yb1{bottom:816.945000px;}
.y11{bottom:817.305000px;}
.y92{bottom:823.605000px;}
.y84{bottom:825.585000px;}
.y51{bottom:827.565000px;}
.y35{bottom:828.465000px;}
.yde{bottom:829.725000px;}
.y101{bottom:831.165000px;}
.y10{bottom:838.005000px;}
.y83{bottom:847.905000px;}
.ydd{bottom:850.425000px;}
.y6b{bottom:853.485000px;}
.y91{bottom:854.565000px;}
.yb0{bottom:857.445000px;}
.y100{bottom:857.805000px;}
.yf{bottom:858.705000px;}
.y34{bottom:859.605000px;}
.y6a{bottom:874.230000px;}
.ydc{bottom:877.110000px;}
.ye{bottom:880.710000px;}
.yff{bottom:883.410000px;}
.yaf{bottom:883.770000px;}
.y90{bottom:885.750000px;}
.y50{bottom:889.710000px;}
.y33{bottom:890.610000px;}
.y69{bottom:894.930000px;}
.ydb{bottom:903.750000px;}
.yfe{bottom:904.110000px;}
.yae{bottom:904.470000px;}
.yd{bottom:908.250000px;}
.y8f{bottom:912.390000px;}
.y68{bottom:915.630000px;}
.y4f{bottom:920.850000px;}
.y32{bottom:921.750000px;}
.yda{bottom:924.450000px;}
.yfd{bottom:924.810000px;}
.yad{bottom:925.170000px;}
.y8e{bottom:929.850000px;}
.yc{bottom:935.970000px;}
.yd9{bottom:945.150000px;}
.yac{bottom:945.870000px;}
.yfc{bottom:948.570000px;}
.y8d{bottom:951.450000px;}
.y4e{bottom:951.810000px;}
.y31{bottom:952.710000px;}
.yb{bottom:963.510000px;}
.yd8{bottom:965.850000px;}
.y89{bottom:973.050000px;}
.yfb{bottom:975.210000px;}
.y4d{bottom:982.950000px;}
.y30{bottom:983.850000px;}
.ya{bottom:991.050000px;}
.yd7{bottom:992.670000px;}
.yfa{bottom:995.910000px;}
.y88{bottom:1008.330000px;}
.y4c{bottom:1013.910000px;}
.y2f{bottom:1014.810000px;}
.y9{bottom:1018.770000px;}
.yd6{bottom:1019.310000px;}
.yf9{bottom:1028.670000px;}
.y87{bottom:1034.610000px;}
.yd5{bottom:1040.190000px;}
.y4b{bottom:1045.050000px;}
.y2e{bottom:1045.950000px;}
.y8{bottom:1046.310000px;}
.y86{bottom:1055.310000px;}
.y7{bottom:1073.130000px;}
.y4a{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.hd{height:21.600000px;}
.h12{height:21.636000px;}
.h10{height:34.560000px;}
.h13{height:39.600000px;}
.h11{height:39.636000px;}
.h9{height:43.246406px;}
.h14{height:51.660000px;}
.h7{height:52.628906px;}
.hf{height:53.573906px;}
.he{height:54.069961px;}
.ha{height:54.246094px;}
.h3{height:59.383125px;}
.hb{height:63.949219px;}
.h2{height:64.546875px;}
.h4{height:65.884219px;}
.h8{height:70.606406px;}
.h5{height:74.820586px;}
.hc{height:76.219102px;}
.h6{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:133.596000px;}
.w5{width:135.036000px;}
.w3{width:149.976000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:5.220000px;}
.x1d{left:6.660000px;}
.x1c{left:8.280000px;}
.x16{left:18.180000px;}
.x1f{left:19.440000px;}
.x15{left:22.500000px;}
.x14{left:25.740000px;}
.x1a{left:29.880000px;}
.x13{left:31.320000px;}
.x19{left:34.200000px;}
.x11{left:41.760000px;}
.x18{left:44.145000px;}
.x1e{left:52.560000px;}
.x17{left:57.105000px;}
.x1b{left:66.600000px;}
.x2{left:106.415987px;}
.xd{left:108.215987px;}
.xc{left:138.815987px;}
.xa{left:148.895987px;}
.x8{left:150.509987px;}
.xb{left:159.509987px;}
.x7{left:172.109987px;}
.x5{left:185.969987px;}
.x20{left:195.509987px;}
.x21{left:207.389987px;}
.x22{left:235.829987px;}
.xe{left:237.270000px;}
.x23{left:247.709987px;}
.x9{left:273.449987px;}
.x24{left:370.514987px;}
.x25{left:382.394987px;}
.x10{left:387.255000px;}
.x6{left:397.694987px;}
.x26{left:415.874987px;}
.x27{left:427.574987px;}
.x4{left:446.474987px;}
.x1{left:467.744987px;}
.x28{left:486.464987px;}
.x29{left:498.344987px;}
.x12{left:520.845000px;}
.x2a{left:525.704987px;}
.x2b{left:537.584987px;}
.x2c{left:598.244987px;}
.x2d{left:610.124987px;}
.x2e{left:638.564987px;}
.x2f{left:650.264987px;}
.x30{left:713.309987px;}
.x31{left:725.009987px;}
.x3{left:786.749987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls13{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-1.088000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.896000pt;}
.lsa{letter-spacing:1.920000pt;}
.ls10{letter-spacing:2.560000pt;}
.ls11{letter-spacing:3.200000pt;}
.ls8{letter-spacing:15.642027pt;}
.lsf{letter-spacing:23.680000pt;}
.lse{letter-spacing:24.320000pt;}
.ls5{letter-spacing:57.263360pt;}
.ws1{word-spacing:-64.000000pt;}
.wsb{word-spacing:-53.120000pt;}
.ws7{word-spacing:-18.720000pt;}
.wsd{word-spacing:-16.896000pt;}
.ws9{word-spacing:-16.640000pt;}
.wsf{word-spacing:-16.512000pt;}
.wsc{word-spacing:-16.256000pt;}
.wse{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws12{word-spacing:-14.912000pt;}
.ws10{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.672427pt;}
.ws0{word-spacing:-10.720000pt;}
.ws6{word-spacing:0.000000pt;}
._1e{margin-left:-5.781333pt;}
._12{margin-left:-4.574720pt;}
._11{margin-left:-3.376640pt;}
._1b{margin-left:-2.211840pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._8{width:2.575360pt;}
._c{width:3.669333pt;}
._6{width:5.162667pt;}
._7{width:6.165333pt;}
._9{width:7.823787pt;}
._a{width:8.960000pt;}
._b{width:9.941760pt;}
._16{width:11.114240pt;}
._17{width:12.544000pt;}
._18{width:13.519360pt;}
._e{width:14.592000pt;}
._19{width:17.280000pt;}
._13{width:18.368000pt;}
._14{width:19.519147pt;}
._15{width:20.653227pt;}
._d{width:21.610667pt;}
._1c{width:22.504107pt;}
._1a{width:23.488000pt;}
._f{width:28.992000pt;}
._10{width:30.016000pt;}
._5{width:47.457493pt;}
._4{width:48.348160pt;}
._20{width:50.432000pt;}
._2{width:56.882987pt;}
._3{width:58.051840pt;}
._21{width:71.661227pt;}
._22{width:100.002560pt;}
._1d{width:287.552000pt;}
._1f{width:548.288000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:2.880000pt;}
.y77{bottom:4.800000pt;}
.yb4{bottom:5.280000pt;}
.y8c{bottom:10.560000pt;}
.ya7{bottom:12.800000pt;}
.yb2{bottom:12.960000pt;}
.y8a{bottom:18.240000pt;}
.yb3{bottom:20.480000pt;}
.yb6{bottom:25.920000pt;}
.yb7{bottom:33.600000pt;}
.y6{bottom:72.992000pt;}
.y5{bottom:97.152000pt;}
.y4{bottom:119.552000pt;}
.y3{bottom:136.666667pt;}
.y2{bottom:153.466667pt;}
.yf8{bottom:173.946667pt;}
.yd4{bottom:180.346667pt;}
.y49{bottom:184.346667pt;}
.y2d{bottom:184.506667pt;}
.yf7{bottom:192.346667pt;}
.yab{bottom:194.266667pt;}
.y64{bottom:197.146667pt;}
.y82{bottom:199.386667pt;}
.y2c{bottom:202.906667pt;}
.yc9{bottom:203.226667pt;}
.y67{bottom:206.746667pt;}
.y48{bottom:212.026667pt;}
.yd3{bottom:213.146667pt;}
.yf6{bottom:216.026667pt;}
.y2b{bottom:221.306667pt;}
.yaa{bottom:221.786667pt;}
.y81{bottom:223.226667pt;}
.y63{bottom:224.666667pt;}
.yc8{bottom:230.746667pt;}
.y47{bottom:239.546667pt;}
.y2a{bottom:239.706667pt;}
.yf5{bottom:239.866667pt;}
.ya9{bottom:240.186667pt;}
.yd2{bottom:240.826667pt;}
.y66{bottom:244.986667pt;}
.y117{bottom:245.626667pt;}
.y62{bottom:255.866667pt;}
.y80{bottom:256.186667pt;}
.y29{bottom:258.106667pt;}
.yf4{bottom:258.266667pt;}
.yc7{bottom:258.426667pt;}
.ya8{bottom:258.586667pt;}
.y46{bottom:267.226667pt;}
.yd1{bottom:268.346667pt;}
.y116{bottom:269.306667pt;}
.ya6{bottom:274.266667pt;}
.y28{bottom:276.506667pt;}
.yf3{bottom:276.666667pt;}
.y65{bottom:283.066667pt;}
.y7f{bottom:283.706667pt;}
.yc6{bottom:291.386667pt;}
.y115{bottom:292.986667pt;}
.y61{bottom:293.946667pt;}
.y45{bottom:294.746667pt;}
.y27{bottom:294.906667pt;}
.yf2{bottom:295.066667pt;}
.yd0{bottom:296.026667pt;}
.ya5{bottom:309.506667pt;}
.y7e{bottom:311.426667pt;}
.y26{bottom:313.346667pt;}
.yf1{bottom:313.506667pt;}
.y114{bottom:316.866667pt;}
.yc5{bottom:318.946667pt;}
.y60{bottom:321.666667pt;}
.y44{bottom:322.466667pt;}
.ycf{bottom:323.586667pt;}
.ya4{bottom:328.706667pt;}
.y25{bottom:331.746667pt;}
.y113{bottom:335.266667pt;}
.yf0{bottom:337.186667pt;}
.y7d{bottom:338.946667pt;}
.yc4{bottom:346.626667pt;}
.ya3{bottom:348.546667pt;}
.y5f{bottom:349.186667pt;}
.y43{bottom:349.986667pt;}
.y24{bottom:350.146667pt;}
.yce{bottom:351.266667pt;}
.y112{bottom:353.666667pt;}
.yef{bottom:360.866667pt;}
.y7c{bottom:362.626667pt;}
.y23{bottom:368.546667pt;}
.ya2{bottom:371.906667pt;}
.yc3{bottom:374.146667pt;}
.y5e{bottom:376.866667pt;}
.y42{bottom:377.666667pt;}
.ycd{bottom:378.786667pt;}
.yee{bottom:379.266667pt;}
.y111{bottom:382.626667pt;}
.y7b{bottom:386.466667pt;}
.y22{bottom:386.946667pt;}
.ya1{bottom:390.306667pt;}
.yed{bottom:397.666667pt;}
.yc2{bottom:401.826667pt;}
.y7a{bottom:401.986667pt;}
.y5d{bottom:404.386667pt;}
.y41{bottom:405.186667pt;}
.y21{bottom:405.346667pt;}
.ycc{bottom:406.466667pt;}
.ya0{bottom:408.706667pt;}
.y110{bottom:411.746667pt;}
.y79{bottom:421.186667pt;}
.y20{bottom:423.746667pt;}
.yec{bottom:426.786667pt;}
.y9f{bottom:427.106667pt;}
.yc1{bottom:429.346667pt;}
.y10f{bottom:430.146667pt;}
.y5c{bottom:432.066667pt;}
.y40{bottom:432.866667pt;}
.ycb{bottom:433.986667pt;}
.y78{bottom:440.386667pt;}
.y1f{bottom:447.426667pt;}
.y10e{bottom:448.546667pt;}
.yeb{bottom:450.626667pt;}
.yca{bottom:458.146667pt;}
.y5b{bottom:459.586667pt;}
.y9e{bottom:460.066667pt;}
.y76{bottom:460.226667pt;}
.y3f{bottom:460.386667pt;}
.yc0{bottom:462.306667pt;}
.y1e{bottom:465.826667pt;}
.yea{bottom:469.026667pt;}
.y10d{bottom:480.386667pt;}
.y75{bottom:483.586667pt;}
.y1d{bottom:484.226667pt;}
.y5a{bottom:487.266667pt;}
.y9d{bottom:487.586667pt;}
.y3e{bottom:488.066667pt;}
.ybf{bottom:489.826667pt;}
.ye9{bottom:497.986667pt;}
.y10c{bottom:498.786667pt;}
.y1c{bottom:502.626667pt;}
.y74{bottom:507.426667pt;}
.y59{bottom:514.786667pt;}
.y9c{bottom:515.266667pt;}
.y3d{bottom:515.586667pt;}
.ye8{bottom:516.386667pt;}
.y10b{bottom:517.186667pt;}
.ybe{bottom:517.506667pt;}
.y1b{bottom:521.026667pt;}
.y73{bottom:525.826667pt;}
.y10a{bottom:535.746667pt;}
.y1a{bottom:539.453333pt;}
.ye7{bottom:540.093333pt;}
.y58{bottom:542.493333pt;}
.y9b{bottom:542.813333pt;}
.y3c{bottom:543.293333pt;}
.y72{bottom:544.253333pt;}
.ybd{bottom:545.053333pt;}
.y109{bottom:554.173333pt;}
.y19{bottom:557.853333pt;}
.ye6{bottom:563.773333pt;}
.y57{bottom:570.013333pt;}
.y9a{bottom:570.493333pt;}
.y3b{bottom:570.813333pt;}
.ybc{bottom:572.733333pt;}
.y18{bottom:576.253333pt;}
.y71{bottom:577.053333pt;}
.ye5{bottom:582.173333pt;}
.y108{bottom:583.293333pt;}
.y99{bottom:585.373333pt;}
.y17{bottom:594.653333pt;}
.y56{bottom:597.693333pt;}
.y3a{bottom:598.493333pt;}
.ybb{bottom:600.253333pt;}
.ye4{bottom:600.573333pt;}
.y70{bottom:604.733333pt;}
.y98{bottom:605.213333pt;}
.y107{bottom:612.413333pt;}
.y16{bottom:618.493333pt;}
.y97{bottom:624.413333pt;}
.y55{bottom:625.213333pt;}
.y39{bottom:626.013333pt;}
.yba{bottom:627.933333pt;}
.ye3{bottom:629.533333pt;}
.y106{bottom:630.813333pt;}
.y6f{bottom:632.253333pt;}
.y15{bottom:636.893333pt;}
.y96{bottom:644.253333pt;}
.yb9{bottom:646.333333pt;}
.y105{bottom:649.213333pt;}
.y54{bottom:652.893333pt;}
.ye2{bottom:653.213333pt;}
.y38{bottom:653.693333pt;}
.y6e{bottom:659.933333pt;}
.yb8{bottom:664.733333pt;}
.y14{bottom:666.653333pt;}
.y95{bottom:667.613333pt;}
.ye1{bottom:671.613333pt;}
.y104{bottom:678.333333pt;}
.yb5{bottom:680.253333pt;}
.y53{bottom:680.413333pt;}
.y37{bottom:681.213333pt;}
.y13{bottom:685.053333pt;}
.y94{bottom:686.013333pt;}
.y6d{bottom:692.893333pt;}
.ye0{bottom:695.293333pt;}
.y103{bottom:702.013333pt;}
.y12{bottom:702.653333pt;}
.y93{bottom:704.413333pt;}
.y52{bottom:708.093333pt;}
.y36{bottom:708.893333pt;}
.y85{bottom:714.653333pt;}
.ydf{bottom:719.133333pt;}
.y102{bottom:720.413333pt;}
.y6c{bottom:725.693333pt;}
.yb1{bottom:726.173333pt;}
.y11{bottom:726.493333pt;}
.y92{bottom:732.093333pt;}
.y84{bottom:733.853333pt;}
.y51{bottom:735.613333pt;}
.y35{bottom:736.413333pt;}
.yde{bottom:737.533333pt;}
.y101{bottom:738.813333pt;}
.y10{bottom:744.893333pt;}
.y83{bottom:753.693333pt;}
.ydd{bottom:755.933333pt;}
.y6b{bottom:758.653333pt;}
.y91{bottom:759.613333pt;}
.yb0{bottom:762.173333pt;}
.y100{bottom:762.493333pt;}
.yf{bottom:763.293333pt;}
.y34{bottom:764.093333pt;}
.y6a{bottom:777.093333pt;}
.ydc{bottom:779.653333pt;}
.ye{bottom:782.853333pt;}
.yff{bottom:785.253333pt;}
.yaf{bottom:785.573333pt;}
.y90{bottom:787.333333pt;}
.y50{bottom:790.853333pt;}
.y33{bottom:791.653333pt;}
.y69{bottom:795.493333pt;}
.ydb{bottom:803.333333pt;}
.yfe{bottom:803.653333pt;}
.yae{bottom:803.973333pt;}
.yd{bottom:807.333333pt;}
.y8f{bottom:811.013333pt;}
.y68{bottom:813.893333pt;}
.y4f{bottom:818.533333pt;}
.y32{bottom:819.333333pt;}
.yda{bottom:821.733333pt;}
.yfd{bottom:822.053333pt;}
.yad{bottom:822.373333pt;}
.y8e{bottom:826.533333pt;}
.yc{bottom:831.973333pt;}
.yd9{bottom:840.133333pt;}
.yac{bottom:840.773333pt;}
.yfc{bottom:843.173333pt;}
.y8d{bottom:845.733333pt;}
.y4e{bottom:846.053333pt;}
.y31{bottom:846.853333pt;}
.yb{bottom:856.453333pt;}
.yd8{bottom:858.533333pt;}
.y89{bottom:864.933333pt;}
.yfb{bottom:866.853333pt;}
.y4d{bottom:873.733333pt;}
.y30{bottom:874.533333pt;}
.ya{bottom:880.933333pt;}
.yd7{bottom:882.373333pt;}
.yfa{bottom:885.253333pt;}
.y88{bottom:896.293333pt;}
.y4c{bottom:901.253333pt;}
.y2f{bottom:902.053333pt;}
.y9{bottom:905.573333pt;}
.yd6{bottom:906.053333pt;}
.yf9{bottom:914.373333pt;}
.y87{bottom:919.653333pt;}
.yd5{bottom:924.613333pt;}
.y4b{bottom:928.933333pt;}
.y2e{bottom:929.733333pt;}
.y8{bottom:930.053333pt;}
.y86{bottom:938.053333pt;}
.y7{bottom:953.893333pt;}
.y4a{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.hd{height:19.200000pt;}
.h12{height:19.232000pt;}
.h10{height:30.720000pt;}
.h13{height:35.200000pt;}
.h11{height:35.232000pt;}
.h9{height:38.441250pt;}
.h14{height:45.920000pt;}
.h7{height:46.781250pt;}
.hf{height:47.621250pt;}
.he{height:48.062188pt;}
.ha{height:48.218750pt;}
.h3{height:52.785000pt;}
.hb{height:56.843750pt;}
.h2{height:57.375000pt;}
.h4{height:58.563750pt;}
.h8{height:62.761250pt;}
.h5{height:66.507188pt;}
.hc{height:67.750312pt;}
.h6{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:118.752000pt;}
.w5{width:120.032000pt;}
.w3{width:133.312000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:4.640000pt;}
.x1d{left:5.920000pt;}
.x1c{left:7.360000pt;}
.x16{left:16.160000pt;}
.x1f{left:17.280000pt;}
.x15{left:20.000000pt;}
.x14{left:22.880000pt;}
.x1a{left:26.560000pt;}
.x13{left:27.840000pt;}
.x19{left:30.400000pt;}
.x11{left:37.120000pt;}
.x18{left:39.240000pt;}
.x1e{left:46.720000pt;}
.x17{left:50.760000pt;}
.x1b{left:59.200000pt;}
.x2{left:94.591988pt;}
.xd{left:96.191988pt;}
.xc{left:123.391988pt;}
.xa{left:132.351988pt;}
.x8{left:133.786655pt;}
.xb{left:141.786655pt;}
.x7{left:152.986655pt;}
.x5{left:165.306655pt;}
.x20{left:173.786655pt;}
.x21{left:184.346655pt;}
.x22{left:209.626655pt;}
.xe{left:210.906667pt;}
.x23{left:220.186655pt;}
.x9{left:243.066655pt;}
.x24{left:329.346655pt;}
.x25{left:339.906655pt;}
.x10{left:344.226667pt;}
.x6{left:353.506655pt;}
.x26{left:369.666655pt;}
.x27{left:380.066655pt;}
.x4{left:396.866655pt;}
.x1{left:415.773322pt;}
.x28{left:432.413322pt;}
.x29{left:442.973322pt;}
.x12{left:462.973333pt;}
.x2a{left:467.293322pt;}
.x2b{left:477.853322pt;}
.x2c{left:531.773322pt;}
.x2d{left:542.333322pt;}
.x2e{left:567.613322pt;}
.x2f{left:578.013322pt;}
.x30{left:634.053322pt;}
.x31{left:644.453322pt;}
.x3{left:699.333322pt;}
}




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