
    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_c2901620340762a4d72b46da.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_bbf33f63a761da598afb77fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.139160;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_c80c7c892dd50db5f8904c78.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_843d4a462d61c5777adf7e2d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_e675dcf570d90f8b099f90cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_4e8fb3fd2d8b74694b61514f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056152;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_3866568f362cf903768b76db.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.139160;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_6ba6a6abb19328000f9eb113.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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v1{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-0.984000px;}
.ls19{letter-spacing:-0.762000px;}
.ls1c{letter-spacing:-0.618000px;}
.ls2{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.529200px;}
.ls6{letter-spacing:-0.478200px;}
.ls12{letter-spacing:-0.233400px;}
.ls3{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.172800px;}
.ls5{letter-spacing:-0.163200px;}
.ls16{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.094800px;}
.ls1f{letter-spacing:-0.069000px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.023040px;}
.lsa{letter-spacing:0.043200px;}
.ls8{letter-spacing:0.069000px;}
.lsd{letter-spacing:0.075000px;}
.ls13{letter-spacing:0.100800px;}
.ls4{letter-spacing:0.132600px;}
.ls18{letter-spacing:0.172800px;}
.ls0{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.305280px;}
.ls14{letter-spacing:0.308400px;}
.ls1b{letter-spacing:0.328320px;}
.lsb{letter-spacing:0.385800px;}
.lsc{letter-spacing:1.025280px;}
.lse{letter-spacing:2.465280px;}
.ls1d{letter-spacing:34.865280px;}
.ls10{letter-spacing:39.905280px;}
.lsf{letter-spacing:43.505280px;}
.ls11{letter-spacing:47.105280px;}
.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;}
}
.wsb{word-spacing:-14.958600px;}
.ws11{word-spacing:-14.901120px;}
.wse{word-spacing:-14.881200px;}
.wsc{word-spacing:-14.647800px;}
.ws8{word-spacing:-14.641800px;}
.wsa{word-spacing:-14.616000px;}
.ws10{word-spacing:-14.595840px;}
.ws9{word-spacing:-14.572800px;}
.ws12{word-spacing:-14.503800px;}
.wsf{word-spacing:-14.428800px;}
.wsd{word-spacing:-14.339400px;}
.ws0{word-spacing:-12.060000px;}
.ws6{word-spacing:-10.612800px;}
.ws3{word-spacing:-10.449600px;}
.ws5{word-spacing:-10.134600px;}
.ws7{word-spacing:-9.092400px;}
.ws1{word-spacing:-7.920000px;}
.ws2{word-spacing:-7.740000px;}
.ws4{word-spacing:0.000000px;}
._29{margin-left:-16.071480px;}
._4{margin-left:-4.010160px;}
._15{margin-left:-2.308320px;}
._2{margin-left:-1.098000px;}
._1{width:1.488000px;}
._14{width:2.689200px;}
._7{width:3.944160px;}
._6{width:5.079600px;}
._12{width:6.215040px;}
._13{width:7.529760px;}
._8{width:8.545680px;}
._9{width:9.752880px;}
._16{width:11.414160px;}
._18{width:13.066560px;}
._d{width:14.228880px;}
._b{width:15.358320px;}
._c{width:16.434000px;}
._e{width:17.533680px;}
._24{width:18.684240px;}
._23{width:19.739520px;}
._1d{width:21.726720px;}
._1e{width:22.758480px;}
._1f{width:23.770080px;}
._20{width:24.773760px;}
._17{width:26.316720px;}
._a{width:27.907920px;}
._1b{width:29.240880px;}
._21{width:30.934080px;}
._1c{width:31.993920px;}
._28{width:33.086880px;}
._f{width:34.601040px;}
._2b{width:36.536400px;}
._26{width:37.955520px;}
._27{width:38.959200px;}
._2a{width:40.186800px;}
._25{width:41.201280px;}
._22{width:42.246720px;}
._11{width:43.272240px;}
._10{width:44.282160px;}
._2c{width:46.481760px;}
._19{width:47.541600px;}
._0{width:75.000000px;}
._3{width:181.080000px;}
._5{width:202.972800px;}
._1a{width:1055.287200px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.y56{bottom:-10.800000px;}
.y0{bottom:0.000000px;}
.y8a{bottom:6.300000px;}
.y90{bottom:6.480000px;}
.y55{bottom:9.900000px;}
.yb9{bottom:13.320000px;}
.yb6{bottom:26.640000px;}
.y8c{bottom:28.620000px;}
.yad{bottom:28.800000px;}
.yb0{bottom:28.830000px;}
.y54{bottom:29.340000px;}
.yb8{bottom:32.040000px;}
.y53{bottom:43.380000px;}
.yb5{bottom:47.340000px;}
.yba{bottom:47.520000px;}
.y8e{bottom:50.760000px;}
.yc6{bottom:50.790000px;}
.yc9{bottom:50.940000px;}
.yaf{bottom:50.970000px;}
.yb{bottom:56.520000px;}
.y52{bottom:57.450000px;}
.ya{bottom:70.596000px;}
.y51{bottom:71.490000px;}
.yc4{bottom:73.080000px;}
.yce{bottom:73.260000px;}
.ycb{bottom:73.305000px;}
.y9{bottom:84.636000px;}
.yc3{bottom:95.220000px;}
.ycd{bottom:95.400000px;}
.y50{bottom:97.410000px;}
.y8{bottom:98.496000px;}
.y7{bottom:112.536000px;}
.y88{bottom:114.156000px;}
.yc2{bottom:117.540000px;}
.ycf{bottom:118.656000px;}
.y6{bottom:126.576000px;}
.yf6{bottom:133.416000px;}
.y87{bottom:136.296000px;}
.y3f{bottom:150.870000px;}
.y4f{bottom:152.310000px;}
.yf5{bottom:155.550000px;}
.y86{bottom:158.610000px;}
.ycc{bottom:163.830000px;}
.y4e{bottom:168.510000px;}
.y3e{bottom:173.190000px;}
.ya5{bottom:176.430000px;}
.yf4{bottom:177.870000px;}
.y85{bottom:180.930000px;}
.y4d{bottom:184.710000px;}
.y3d{bottom:195.510000px;}
.ya4{bottom:198.570000px;}
.yf3{bottom:200.190000px;}
.y4c{bottom:200.910000px;}
.y84{bottom:203.070000px;}
.yb4{bottom:207.930000px;}
.y4b{bottom:217.110000px;}
.y3c{bottom:217.650000px;}
.ya3{bottom:220.890000px;}
.yf2{bottom:222.330000px;}
.y83{bottom:225.390000px;}
.y4a{bottom:233.310000px;}
.y3b{bottom:239.970000px;}
.ya2{bottom:243.030000px;}
.yf1{bottom:244.650000px;}
.y82{bottom:247.530000px;}
.y49{bottom:249.510000px;}
.y3a{bottom:262.110000px;}
.ya1{bottom:265.350000px;}
.y48{bottom:265.710000px;}
.yf0{bottom:266.790000px;}
.y81{bottom:269.850000px;}
.yca{bottom:275.790000px;}
.y47{bottom:279.570000px;}
.y39{bottom:284.430000px;}
.ya0{bottom:287.670000px;}
.yef{bottom:289.110000px;}
.y80{bottom:292.170000px;}
.y46{bottom:293.430000px;}
.y38{bottom:306.750000px;}
.y45{bottom:307.650000px;}
.y9f{bottom:309.810000px;}
.yee{bottom:311.430000px;}
.y7f{bottom:314.310000px;}
.y44{bottom:321.735000px;}
.y37{bottom:328.890000px;}
.y9e{bottom:332.130000px;}
.yed{bottom:333.570000px;}
.y43{bottom:335.775000px;}
.y7e{bottom:336.675000px;}
.y42{bottom:349.815000px;}
.y36{bottom:351.255000px;}
.y9d{bottom:354.315000px;}
.yec{bottom:355.935000px;}
.y7d{bottom:358.815000px;}
.y41{bottom:364.215000px;}
.yc8{bottom:365.655000px;}
.y35{bottom:370.515000px;}
.y9c{bottom:376.635000px;}
.yeb{bottom:378.075000px;}
.y7c{bottom:381.135000px;}
.y34{bottom:387.975000px;}
.y9b{bottom:398.955000px;}
.yea{bottom:400.395000px;}
.y7b{bottom:403.455000px;}
.y33{bottom:405.615000px;}
.y9a{bottom:421.095000px;}
.ye9{bottom:422.535000px;}
.y32{bottom:423.255000px;}
.y7a{bottom:425.595000px;}
.y31{bottom:440.895000px;}
.y99{bottom:443.415000px;}
.ye8{bottom:444.855000px;}
.y79{bottom:447.915000px;}
.yc7{bottom:455.475000px;}
.y30{bottom:458.355000px;}
.y98{bottom:465.555000px;}
.ye7{bottom:467.175000px;}
.y78{bottom:470.055000px;}
.yb3{bottom:473.655000px;}
.y2f{bottom:475.995000px;}
.y97{bottom:487.875000px;}
.ye6{bottom:489.315000px;}
.yb2{bottom:490.215000px;}
.y77{bottom:492.375000px;}
.y2e{bottom:493.635000px;}
.y96{bottom:510.015000px;}
.y2d{bottom:511.095000px;}
.ye5{bottom:511.635000px;}
.y76{bottom:514.515000px;}
.y2c{bottom:528.735000px;}
.y95{bottom:532.335000px;}
.ye4{bottom:533.775000px;}
.yb1{bottom:535.395000px;}
.y75{bottom:536.835000px;}
.y2b{bottom:546.375000px;}
.y40{bottom:553.755000px;}
.y94{bottom:554.655000px;}
.ye3{bottom:556.095000px;}
.y74{bottom:559.155000px;}
.y2a{bottom:563.835000px;}
.yc5{bottom:567.435000px;}
.y93{bottom:576.795000px;}
.ye2{bottom:578.415000px;}
.yae{bottom:580.575000px;}
.y73{bottom:581.295000px;}
.y29{bottom:583.635000px;}
.y92{bottom:599.115000px;}
.ye1{bottom:600.555000px;}
.y28{bottom:601.275000px;}
.y72{bottom:603.645000px;}
.y91{bottom:615.705000px;}
.y27{bottom:618.945000px;}
.ye0{bottom:622.905000px;}
.y71{bottom:625.785000px;}
.yc1{bottom:634.965000px;}
.y26{bottom:636.585000px;}
.ydf{bottom:645.045000px;}
.y70{bottom:648.105000px;}
.y25{bottom:654.045000px;}
.y8f{bottom:660.885000px;}
.yde{bottom:667.365000px;}
.y6f{bottom:670.425000px;}
.y24{bottom:671.685000px;}
.y23{bottom:689.325000px;}
.ydd{bottom:689.505000px;}
.y6e{bottom:692.565000px;}
.yac{bottom:693.465000px;}
.y8d{bottom:706.245000px;}
.y22{bottom:706.785000px;}
.ydc{bottom:711.825000px;}
.y6d{bottom:714.885000px;}
.yab{bottom:722.805000px;}
.y21{bottom:724.425000px;}
.ydb{bottom:734.145000px;}
.y6c{bottom:737.025000px;}
.y20{bottom:742.065000px;}
.yaa{bottom:745.125000px;}
.yda{bottom:756.285000px;}
.y6b{bottom:759.345000px;}
.y1f{bottom:759.705000px;}
.ya9{bottom:767.265000px;}
.yc0{bottom:769.065000px;}
.y8b{bottom:773.745000px;}
.y1e{bottom:777.165000px;}
.yd9{bottom:778.605000px;}
.y6a{bottom:781.485000px;}
.ya8{bottom:789.585000px;}
.y1d{bottom:794.805000px;}
.ybf{bottom:798.585000px;}
.yd8{bottom:800.745000px;}
.y69{bottom:803.805000px;}
.ya7{bottom:811.725000px;}
.y1c{bottom:812.445000px;}
.y89{bottom:818.925000px;}
.ybe{bottom:820.725000px;}
.yd7{bottom:823.065000px;}
.y68{bottom:826.125000px;}
.y1b{bottom:829.905000px;}
.ya6{bottom:830.625000px;}
.ybd{bottom:843.045000px;}
.yd6{bottom:845.385000px;}
.y1a{bottom:847.545000px;}
.y67{bottom:848.265000px;}
.y19{bottom:865.185000px;}
.yd5{bottom:867.525000px;}
.y66{bottom:870.630000px;}
.y18{bottom:882.690000px;}
.ybc{bottom:887.550000px;}
.yd4{bottom:889.890000px;}
.y65{bottom:892.770000px;}
.y17{bottom:900.330000px;}
.ybb{bottom:909.690000px;}
.yd3{bottom:912.030000px;}
.y64{bottom:915.090000px;}
.y16{bottom:917.970000px;}
.yb7{bottom:925.530000px;}
.yd2{bottom:928.770000px;}
.y15{bottom:935.790000px;}
.y63{bottom:937.410000px;}
.y14{bottom:954.510000px;}
.y62{bottom:959.550000px;}
.y13{bottom:973.410000px;}
.y61{bottom:981.870000px;}
.y12{bottom:986.730000px;}
.y60{bottom:1004.010000px;}
.y11{bottom:1006.170000px;}
.yd1{bottom:1018.410000px;}
.y10{bottom:1024.530000px;}
.y5f{bottom:1026.330000px;}
.yf{bottom:1040.190000px;}
.y5e{bottom:1048.650000px;}
.ye{bottom:1063.050000px;}
.y5d{bottom:1070.790000px;}
.yd{bottom:1085.910000px;}
.y5c{bottom:1093.110000px;}
.yd0{bottom:1108.230000px;}
.yc{bottom:1110.930000px;}
.y5b{bottom:1115.250000px;}
.y5{bottom:1133.250000px;}
.y5a{bottom:1137.570000px;}
.y4{bottom:1147.500000px;}
.y59{bottom:1157.400000px;}
.y3{bottom:1162.980000px;}
.y58{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y57{bottom:1197.540000px;}
.h11{height:22.140000px;}
.h18{height:22.320000px;}
.he{height:33.683203px;}
.h9{height:37.488516px;}
.h3{height:38.100586px;}
.hf{height:40.655391px;}
.h5{height:40.843828px;}
.h4{height:44.424141px;}
.h12{height:44.460000px;}
.h1f{height:44.496000px;}
.h14{height:44.640000px;}
.h2{height:49.728516px;}
.hd{height:50.273438px;}
.hb{height:50.597578px;}
.ha{height:55.032891px;}
.h8{height:56.084062px;}
.h10{height:58.819922px;}
.h6{height:61.000312px;}
.h7{height:65.837812px;}
.h13{height:66.600000px;}
.h1a{height:66.636000px;}
.h15{height:66.816000px;}
.h1c{height:88.920000px;}
.h1d{height:89.136000px;}
.h1b{height:111.060000px;}
.h1e{height:111.240000px;}
.h19{height:133.380000px;}
.h17{height:227.910000px;}
.h16{height:259.230000px;}
.hc{height:376.995000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:42.480000px;}
.wf{width:52.380000px;}
.wd{width:63.036000px;}
.we{width:63.180000px;}
.w4{width:124.380000px;}
.w3{width:208.110000px;}
.w7{width:211.890000px;}
.w5{width:211.935000px;}
.w6{width:286.230000px;}
.w8{width:331.095000px;}
.w9{width:338.070000px;}
.wa{width:338.295000px;}
.wc{width:455.295000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.740000px;}
.x20{left:10.980000px;}
.x24{left:15.480000px;}
.x28{left:20.700000px;}
.x27{left:26.100000px;}
.x1b{left:30.630000px;}
.x1f{left:34.050000px;}
.x1d{left:39.240000px;}
.x18{left:42.474000px;}
.x1{left:108.035987px;}
.xb{left:109.116000px;}
.x4{left:110.555987px;}
.x11{left:112.895987px;}
.x2{left:116.135987px;}
.x3{left:120.815987px;}
.x7{left:122.435987px;}
.x12{left:129.275987px;}
.xc{left:134.994000px;}
.x29{left:140.075987px;}
.x21{left:152.130000px;}
.xa{left:162.029987px;}
.x19{left:169.014000px;}
.x22{left:202.185000px;}
.x5{left:209.009987px;}
.x15{left:237.270000px;}
.xf{left:259.590000px;}
.x1e{left:312.735000px;}
.x6{left:316.154987px;}
.x17{left:319.719000px;}
.x1c{left:320.979000px;}
.x9{left:331.994987px;}
.x14{left:339.554987px;}
.x8{left:418.034987px;}
.x1a{left:446.115000px;}
.x16{left:449.895000px;}
.x10{left:472.425000px;}
.xd{left:491.684987px;}
.x23{left:608.145000px;}
.x25{left:671.910000px;}
.x13{left:729.329987px;}
.x26{left:735.810000px;}
@media print{
.v1{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-0.874667pt;}
.ls19{letter-spacing:-0.677333pt;}
.ls1c{letter-spacing:-0.549333pt;}
.ls2{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.470400pt;}
.ls6{letter-spacing:-0.425067pt;}
.ls12{letter-spacing:-0.207467pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.153600pt;}
.ls5{letter-spacing:-0.145067pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.084267pt;}
.ls1f{letter-spacing:-0.061333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.020480pt;}
.lsa{letter-spacing:0.038400pt;}
.ls8{letter-spacing:0.061333pt;}
.lsd{letter-spacing:0.066667pt;}
.ls13{letter-spacing:0.089600pt;}
.ls4{letter-spacing:0.117867pt;}
.ls18{letter-spacing:0.153600pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.271360pt;}
.ls14{letter-spacing:0.274133pt;}
.ls1b{letter-spacing:0.291840pt;}
.lsb{letter-spacing:0.342933pt;}
.lsc{letter-spacing:0.911360pt;}
.lse{letter-spacing:2.191360pt;}
.ls1d{letter-spacing:30.991360pt;}
.ls10{letter-spacing:35.471360pt;}
.lsf{letter-spacing:38.671360pt;}
.ls11{letter-spacing:41.871360pt;}
.wsb{word-spacing:-13.296533pt;}
.ws11{word-spacing:-13.245440pt;}
.wse{word-spacing:-13.227733pt;}
.wsc{word-spacing:-13.020267pt;}
.ws8{word-spacing:-13.014933pt;}
.wsa{word-spacing:-12.992000pt;}
.ws10{word-spacing:-12.974080pt;}
.ws9{word-spacing:-12.953600pt;}
.ws12{word-spacing:-12.892267pt;}
.wsf{word-spacing:-12.825600pt;}
.wsd{word-spacing:-12.746133pt;}
.ws0{word-spacing:-10.720000pt;}
.ws6{word-spacing:-9.433600pt;}
.ws3{word-spacing:-9.288533pt;}
.ws5{word-spacing:-9.008533pt;}
.ws7{word-spacing:-8.082133pt;}
.ws1{word-spacing:-7.040000pt;}
.ws2{word-spacing:-6.880000pt;}
.ws4{word-spacing:0.000000pt;}
._29{margin-left:-14.285760pt;}
._4{margin-left:-3.564587pt;}
._15{margin-left:-2.051840pt;}
._2{margin-left:-0.976000pt;}
._1{width:1.322667pt;}
._14{width:2.390400pt;}
._7{width:3.505920pt;}
._6{width:4.515200pt;}
._12{width:5.524480pt;}
._13{width:6.693120pt;}
._8{width:7.596160pt;}
._9{width:8.669227pt;}
._16{width:10.145920pt;}
._18{width:11.614720pt;}
._d{width:12.647893pt;}
._b{width:13.651840pt;}
._c{width:14.608000pt;}
._e{width:15.585493pt;}
._24{width:16.608213pt;}
._23{width:17.546240pt;}
._1d{width:19.312640pt;}
._1e{width:20.229760pt;}
._1f{width:21.128960pt;}
._20{width:22.021120pt;}
._17{width:23.392640pt;}
._a{width:24.807040pt;}
._1b{width:25.991893pt;}
._21{width:27.496960pt;}
._1c{width:28.439040pt;}
._28{width:29.410560pt;}
._f{width:30.756480pt;}
._2b{width:32.476800pt;}
._26{width:33.738240pt;}
._27{width:34.630400pt;}
._2a{width:35.721600pt;}
._25{width:36.623360pt;}
._22{width:37.552640pt;}
._11{width:38.464213pt;}
._10{width:39.361920pt;}
._2c{width:41.317120pt;}
._19{width:42.259200pt;}
._0{width:66.666667pt;}
._3{width:160.960000pt;}
._5{width:180.420267pt;}
._1a{width:938.033067pt;}
.fs4{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.y56{bottom:-9.600000pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:5.600000pt;}
.y90{bottom:5.760000pt;}
.y55{bottom:8.800000pt;}
.yb9{bottom:11.840000pt;}
.yb6{bottom:23.680000pt;}
.y8c{bottom:25.440000pt;}
.yad{bottom:25.600000pt;}
.yb0{bottom:25.626667pt;}
.y54{bottom:26.080000pt;}
.yb8{bottom:28.480000pt;}
.y53{bottom:38.560000pt;}
.yb5{bottom:42.080000pt;}
.yba{bottom:42.240000pt;}
.y8e{bottom:45.120000pt;}
.yc6{bottom:45.146667pt;}
.yc9{bottom:45.280000pt;}
.yaf{bottom:45.306667pt;}
.yb{bottom:50.240000pt;}
.y52{bottom:51.066667pt;}
.ya{bottom:62.752000pt;}
.y51{bottom:63.546667pt;}
.yc4{bottom:64.960000pt;}
.yce{bottom:65.120000pt;}
.ycb{bottom:65.160000pt;}
.y9{bottom:75.232000pt;}
.yc3{bottom:84.640000pt;}
.ycd{bottom:84.800000pt;}
.y50{bottom:86.586667pt;}
.y8{bottom:87.552000pt;}
.y7{bottom:100.032000pt;}
.y88{bottom:101.472000pt;}
.yc2{bottom:104.480000pt;}
.ycf{bottom:105.472000pt;}
.y6{bottom:112.512000pt;}
.yf6{bottom:118.592000pt;}
.y87{bottom:121.152000pt;}
.y3f{bottom:134.106667pt;}
.y4f{bottom:135.386667pt;}
.yf5{bottom:138.266667pt;}
.y86{bottom:140.986667pt;}
.ycc{bottom:145.626667pt;}
.y4e{bottom:149.786667pt;}
.y3e{bottom:153.946667pt;}
.ya5{bottom:156.826667pt;}
.yf4{bottom:158.106667pt;}
.y85{bottom:160.826667pt;}
.y4d{bottom:164.186667pt;}
.y3d{bottom:173.786667pt;}
.ya4{bottom:176.506667pt;}
.yf3{bottom:177.946667pt;}
.y4c{bottom:178.586667pt;}
.y84{bottom:180.506667pt;}
.yb4{bottom:184.826667pt;}
.y4b{bottom:192.986667pt;}
.y3c{bottom:193.466667pt;}
.ya3{bottom:196.346667pt;}
.yf2{bottom:197.626667pt;}
.y83{bottom:200.346667pt;}
.y4a{bottom:207.386667pt;}
.y3b{bottom:213.306667pt;}
.ya2{bottom:216.026667pt;}
.yf1{bottom:217.466667pt;}
.y82{bottom:220.026667pt;}
.y49{bottom:221.786667pt;}
.y3a{bottom:232.986667pt;}
.ya1{bottom:235.866667pt;}
.y48{bottom:236.186667pt;}
.yf0{bottom:237.146667pt;}
.y81{bottom:239.866667pt;}
.yca{bottom:245.146667pt;}
.y47{bottom:248.506667pt;}
.y39{bottom:252.826667pt;}
.ya0{bottom:255.706667pt;}
.yef{bottom:256.986667pt;}
.y80{bottom:259.706667pt;}
.y46{bottom:260.826667pt;}
.y38{bottom:272.666667pt;}
.y45{bottom:273.466667pt;}
.y9f{bottom:275.386667pt;}
.yee{bottom:276.826667pt;}
.y7f{bottom:279.386667pt;}
.y44{bottom:285.986667pt;}
.y37{bottom:292.346667pt;}
.y9e{bottom:295.226667pt;}
.yed{bottom:296.506667pt;}
.y43{bottom:298.466667pt;}
.y7e{bottom:299.266667pt;}
.y42{bottom:310.946667pt;}
.y36{bottom:312.226667pt;}
.y9d{bottom:314.946667pt;}
.yec{bottom:316.386667pt;}
.y7d{bottom:318.946667pt;}
.y41{bottom:323.746667pt;}
.yc8{bottom:325.026667pt;}
.y35{bottom:329.346667pt;}
.y9c{bottom:334.786667pt;}
.yeb{bottom:336.066667pt;}
.y7c{bottom:338.786667pt;}
.y34{bottom:344.866667pt;}
.y9b{bottom:354.626667pt;}
.yea{bottom:355.906667pt;}
.y7b{bottom:358.626667pt;}
.y33{bottom:360.546667pt;}
.y9a{bottom:374.306667pt;}
.ye9{bottom:375.586667pt;}
.y32{bottom:376.226667pt;}
.y7a{bottom:378.306667pt;}
.y31{bottom:391.906667pt;}
.y99{bottom:394.146667pt;}
.ye8{bottom:395.426667pt;}
.y79{bottom:398.146667pt;}
.yc7{bottom:404.866667pt;}
.y30{bottom:407.426667pt;}
.y98{bottom:413.826667pt;}
.ye7{bottom:415.266667pt;}
.y78{bottom:417.826667pt;}
.yb3{bottom:421.026667pt;}
.y2f{bottom:423.106667pt;}
.y97{bottom:433.666667pt;}
.ye6{bottom:434.946667pt;}
.yb2{bottom:435.746667pt;}
.y77{bottom:437.666667pt;}
.y2e{bottom:438.786667pt;}
.y96{bottom:453.346667pt;}
.y2d{bottom:454.306667pt;}
.ye5{bottom:454.786667pt;}
.y76{bottom:457.346667pt;}
.y2c{bottom:469.986667pt;}
.y95{bottom:473.186667pt;}
.ye4{bottom:474.466667pt;}
.yb1{bottom:475.906667pt;}
.y75{bottom:477.186667pt;}
.y2b{bottom:485.666667pt;}
.y40{bottom:492.226667pt;}
.y94{bottom:493.026667pt;}
.ye3{bottom:494.306667pt;}
.y74{bottom:497.026667pt;}
.y2a{bottom:501.186667pt;}
.yc5{bottom:504.386667pt;}
.y93{bottom:512.706667pt;}
.ye2{bottom:514.146667pt;}
.yae{bottom:516.066667pt;}
.y73{bottom:516.706667pt;}
.y29{bottom:518.786667pt;}
.y92{bottom:532.546667pt;}
.ye1{bottom:533.826667pt;}
.y28{bottom:534.466667pt;}
.y72{bottom:536.573333pt;}
.y91{bottom:547.293333pt;}
.y27{bottom:550.173333pt;}
.ye0{bottom:553.693333pt;}
.y71{bottom:556.253333pt;}
.yc1{bottom:564.413333pt;}
.y26{bottom:565.853333pt;}
.ydf{bottom:573.373333pt;}
.y70{bottom:576.093333pt;}
.y25{bottom:581.373333pt;}
.y8f{bottom:587.453333pt;}
.yde{bottom:593.213333pt;}
.y6f{bottom:595.933333pt;}
.y24{bottom:597.053333pt;}
.y23{bottom:612.733333pt;}
.ydd{bottom:612.893333pt;}
.y6e{bottom:615.613333pt;}
.yac{bottom:616.413333pt;}
.y8d{bottom:627.773333pt;}
.y22{bottom:628.253333pt;}
.ydc{bottom:632.733333pt;}
.y6d{bottom:635.453333pt;}
.yab{bottom:642.493333pt;}
.y21{bottom:643.933333pt;}
.ydb{bottom:652.573333pt;}
.y6c{bottom:655.133333pt;}
.y20{bottom:659.613333pt;}
.yaa{bottom:662.333333pt;}
.yda{bottom:672.253333pt;}
.y6b{bottom:674.973333pt;}
.y1f{bottom:675.293333pt;}
.ya9{bottom:682.013333pt;}
.yc0{bottom:683.613333pt;}
.y8b{bottom:687.773333pt;}
.y1e{bottom:690.813333pt;}
.yd9{bottom:692.093333pt;}
.y6a{bottom:694.653333pt;}
.ya8{bottom:701.853333pt;}
.y1d{bottom:706.493333pt;}
.ybf{bottom:709.853333pt;}
.yd8{bottom:711.773333pt;}
.y69{bottom:714.493333pt;}
.ya7{bottom:721.533333pt;}
.y1c{bottom:722.173333pt;}
.y89{bottom:727.933333pt;}
.ybe{bottom:729.533333pt;}
.yd7{bottom:731.613333pt;}
.y68{bottom:734.333333pt;}
.y1b{bottom:737.693333pt;}
.ya6{bottom:738.333333pt;}
.ybd{bottom:749.373333pt;}
.yd6{bottom:751.453333pt;}
.y1a{bottom:753.373333pt;}
.y67{bottom:754.013333pt;}
.y19{bottom:769.053333pt;}
.yd5{bottom:771.133333pt;}
.y66{bottom:773.893333pt;}
.y18{bottom:784.613333pt;}
.ybc{bottom:788.933333pt;}
.yd4{bottom:791.013333pt;}
.y65{bottom:793.573333pt;}
.y17{bottom:800.293333pt;}
.ybb{bottom:808.613333pt;}
.yd3{bottom:810.693333pt;}
.y64{bottom:813.413333pt;}
.y16{bottom:815.973333pt;}
.yb7{bottom:822.693333pt;}
.yd2{bottom:825.573333pt;}
.y15{bottom:831.813333pt;}
.y63{bottom:833.253333pt;}
.y14{bottom:848.453333pt;}
.y62{bottom:852.933333pt;}
.y13{bottom:865.253333pt;}
.y61{bottom:872.773333pt;}
.y12{bottom:877.093333pt;}
.y60{bottom:892.453333pt;}
.y11{bottom:894.373333pt;}
.yd1{bottom:905.253333pt;}
.y10{bottom:910.693333pt;}
.y5f{bottom:912.293333pt;}
.yf{bottom:924.613333pt;}
.y5e{bottom:932.133333pt;}
.ye{bottom:944.933333pt;}
.y5d{bottom:951.813333pt;}
.yd{bottom:965.253333pt;}
.y5c{bottom:971.653333pt;}
.yd0{bottom:985.093333pt;}
.yc{bottom:987.493333pt;}
.y5b{bottom:991.333333pt;}
.y5{bottom:1007.333333pt;}
.y5a{bottom:1011.173333pt;}
.y4{bottom:1020.000000pt;}
.y59{bottom:1028.800000pt;}
.y3{bottom:1033.760000pt;}
.y58{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y57{bottom:1064.480000pt;}
.h11{height:19.680000pt;}
.h18{height:19.840000pt;}
.he{height:29.940625pt;}
.h9{height:33.323125pt;}
.h3{height:33.867188pt;}
.hf{height:36.138125pt;}
.h5{height:36.305625pt;}
.h4{height:39.488125pt;}
.h12{height:39.520000pt;}
.h1f{height:39.552000pt;}
.h14{height:39.680000pt;}
.h2{height:44.203125pt;}
.hd{height:44.687500pt;}
.hb{height:44.975625pt;}
.ha{height:48.918125pt;}
.h8{height:49.852500pt;}
.h10{height:52.284375pt;}
.h6{height:54.222500pt;}
.h7{height:58.522500pt;}
.h13{height:59.200000pt;}
.h1a{height:59.232000pt;}
.h15{height:59.392000pt;}
.h1c{height:79.040000pt;}
.h1d{height:79.232000pt;}
.h1b{height:98.720000pt;}
.h1e{height:98.880000pt;}
.h19{height:118.560000pt;}
.h17{height:202.586667pt;}
.h16{height:230.426667pt;}
.hc{height:335.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:37.760000pt;}
.wf{width:46.560000pt;}
.wd{width:56.032000pt;}
.we{width:56.160000pt;}
.w4{width:110.560000pt;}
.w3{width:184.986667pt;}
.w7{width:188.346667pt;}
.w5{width:188.386667pt;}
.w6{width:254.426667pt;}
.w8{width:294.306667pt;}
.w9{width:300.506667pt;}
.wa{width:300.706667pt;}
.wc{width:404.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.880000pt;}
.x20{left:9.760000pt;}
.x24{left:13.760000pt;}
.x28{left:18.400000pt;}
.x27{left:23.200000pt;}
.x1b{left:27.226667pt;}
.x1f{left:30.266667pt;}
.x1d{left:34.880000pt;}
.x18{left:37.754667pt;}
.x1{left:96.031988pt;}
.xb{left:96.992000pt;}
.x4{left:98.271988pt;}
.x11{left:100.351988pt;}
.x2{left:103.231988pt;}
.x3{left:107.391988pt;}
.x7{left:108.831988pt;}
.x12{left:114.911988pt;}
.xc{left:119.994667pt;}
.x29{left:124.511988pt;}
.x21{left:135.226667pt;}
.xa{left:144.026655pt;}
.x19{left:150.234667pt;}
.x22{left:179.720000pt;}
.x5{left:185.786655pt;}
.x15{left:210.906667pt;}
.xf{left:230.746667pt;}
.x1e{left:277.986667pt;}
.x6{left:281.026655pt;}
.x17{left:284.194667pt;}
.x1c{left:285.314667pt;}
.x9{left:295.106655pt;}
.x14{left:301.826655pt;}
.x8{left:371.586655pt;}
.x1a{left:396.546667pt;}
.x16{left:399.906667pt;}
.x10{left:419.933333pt;}
.xd{left:437.053322pt;}
.x23{left:540.573333pt;}
.x25{left:597.253333pt;}
.x13{left:648.293322pt;}
.x26{left:654.053333pt;}
}




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