
    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_3bdc779fd39aaa8892382260.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_957eb02d6385788d18ac59fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106445;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_ac4c3c4492acded076c1ca8a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2ad99d417ad51fd62cdd0456.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_db8393d16da846ea433327a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.884277;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_80d76b0d532c9645cc7f82af.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.131836;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_c751bf64f072e6cc9b7d5729.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.164062;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_0dc98a6185567a47922c2144.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1529f95dd3d8ccd39e5b517d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.131836;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_18057d769164a8ae8c298635.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.106445;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:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffd{font-family:ffd;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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.800000px;}
.ls11{letter-spacing:-1.026000px;}
.ls18{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.642000px;}
.ls1b{letter-spacing:-0.567600px;}
.ls1c{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.496200px;}
.ls14{letter-spacing:-0.457800px;}
.lsa{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.262200px;}
.ls8{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.058320px;}
.ls6{letter-spacing:-0.034560px;}
.ls5{letter-spacing:-0.017280px;}
.ls7{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.022320px;}
.ls19{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.223800px;}
.ls10{letter-spacing:0.262080px;}
.lsf{letter-spacing:0.262200px;}
.ls1a{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:39.881280px;}
.ls17{letter-spacing:46.002720px;}
.ls16{letter-spacing:49.602720px;}
.ls13{letter-spacing:64.002720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-59.760000px;}
.ws1{word-spacing:-59.701680px;}
.ws4{word-spacing:-48.262320px;}
.ws3{word-spacing:-48.240000px;}
.ws14{word-spacing:-16.865400px;}
.wse{word-spacing:-16.822200px;}
.wsc{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.297800px;}
.ws10{word-spacing:-16.102200px;}
.ws15{word-spacing:-15.992400px;}
.ws13{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.284000px;}
.ws7{word-spacing:-13.140000px;}
.wsb{word-spacing:-12.283800px;}
.ws9{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.700000px;}
.wsa{word-spacing:-11.563800px;}
.ws11{word-spacing:-7.560000px;}
.wsf{word-spacing:0.000000px;}
._4{margin-left:-7.659360px;}
._1{margin-left:-6.454080px;}
._5{margin-left:-5.356080px;}
._12{margin-left:-4.332960px;}
._e{margin-left:-2.543040px;}
._0{margin-left:-1.494000px;}
._2{width:1.015920px;}
._23{width:2.019360px;}
._3{width:3.050400px;}
._13{width:4.091760px;}
._10{width:5.135040px;}
._19{width:6.228720px;}
._8{width:7.452000px;}
._7{width:8.910000px;}
._6{width:10.200000px;}
._c{width:11.206080px;}
._9{width:12.312000px;}
._17{width:13.322880px;}
._a{width:14.958000px;}
._d{width:16.470000px;}
._1d{width:17.788080px;}
._14{width:19.010880px;}
._18{width:20.070720px;}
._1e{width:21.130560px;}
._11{width:22.896000px;}
._b{width:24.408000px;}
._16{width:26.031120px;}
._15{width:27.225840px;}
._1c{width:28.615680px;}
._25{width:30.374640px;}
._1f{width:31.662720px;}
._20{width:33.554160px;}
._22{width:34.737360px;}
._2f{width:35.758320px;}
._24{width:36.956160px;}
._f{width:38.232000px;}
._2c{width:39.239280px;}
._1a{width:43.188480px;}
._1b{width:44.321760px;}
._31{width:48.239040px;}
._30{width:49.319280px;}
._2b{width:50.644080px;}
._21{width:51.902640px;}
._2e{width:56.039040px;}
._2d{width:57.827520px;}
._26{width:75.977280px;}
._27{width:77.103360px;}
._28{width:89.026560px;}
._29{width:102.274560px;}
._2a{width:367.168320px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y31{bottom:2.880000px;}
.ybf{bottom:6.300000px;}
.yb0{bottom:6.480000px;}
.y2{bottom:6.510000px;}
.y3d{bottom:9.720000px;}
.y3e{bottom:11.340000px;}
.yc1{bottom:17.280000px;}
.y30{bottom:18.540000px;}
.y5{bottom:25.410000px;}
.ybe{bottom:28.080000px;}
.yb9{bottom:28.260000px;}
.y8{bottom:28.650000px;}
.y2f{bottom:34.020000px;}
.ybc{bottom:39.060000px;}
.yb4{bottom:39.240000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y2e{bottom:49.500000px;}
.yc3{bottom:49.905000px;}
.yb8{bottom:50.040000px;}
.ya{bottom:56.340000px;}
.y3{bottom:60.690000px;}
.ybb{bottom:60.840000px;}
.yb3{bottom:61.020000px;}
.y6{bottom:63.390000px;}
.y2d{bottom:64.980000px;}
.yc4{bottom:71.685000px;}
.yb7{bottom:71.820000px;}
.y2c{bottom:80.640000px;}
.yc0{bottom:82.620000px;}
.yb2{bottom:82.800000px;}
.ybd{bottom:93.600000px;}
.yb6{bottom:93.780000px;}
.y2b{bottom:96.120000px;}
.y7c{bottom:110.376000px;}
.y2a{bottom:111.600000px;}
.y4d{bottom:114.516000px;}
.y89{bottom:114.876000px;}
.yb5{bottom:115.590000px;}
.y7b{bottom:124.236000px;}
.y29{bottom:127.110000px;}
.y7a{bottom:128.736000px;}
.y81{bottom:130.176000px;}
.y4c{bottom:136.296000px;}
.y79{bottom:137.916000px;}
.ycc{bottom:140.436000px;}
.y78{bottom:142.416000px;}
.y28{bottom:142.770000px;}
.ycb{bottom:144.576000px;}
.yae{bottom:145.296000px;}
.yad{bottom:149.796000px;}
.y88{bottom:151.770000px;}
.y80{bottom:151.950000px;}
.y77{bottom:154.110000px;}
.ya1{bottom:156.270000px;}
.y27{bottom:158.250000px;}
.yac{bottom:158.970000px;}
.y87{bottom:165.630000px;}
.yca{bottom:166.350000px;}
.ya0{bottom:167.970000px;}
.y86{bottom:170.130000px;}
.yab{bottom:172.830000px;}
.y26{bottom:173.730000px;}
.y7f{bottom:173.910000px;}
.yaa{bottom:177.330000px;}
.y9c{bottom:179.310000px;}
.y4b{bottom:180.030000px;}
.y85{bottom:181.830000px;}
.ya9{bottom:186.510000px;}
.yc9{bottom:188.310000px;}
.y25{bottom:189.210000px;}
.y3b{bottom:190.650000px;}
.ya8{bottom:191.010000px;}
.y9b{bottom:193.170000px;}
.y7e{bottom:195.690000px;}
.y9a{bottom:197.670000px;}
.ya3{bottom:201.630000px;}
.y4a{bottom:201.810000px;}
.ya7{bottom:202.710000px;}
.y3a{bottom:204.330000px;}
.y24{bottom:204.870000px;}
.y99{bottom:207.030000px;}
.yc8{bottom:210.090000px;}
.y98{bottom:211.530000px;}
.y7d{bottom:217.470000px;}
.y39{bottom:218.190000px;}
.y23{bottom:220.350000px;}
.y97{bottom:220.710000px;}
.y49{bottom:223.590000px;}
.yc7{bottom:231.870000px;}
.y38{bottom:232.050000px;}
.y96{bottom:234.570000px;}
.y22{bottom:235.830000px;}
.y95{bottom:239.070000px;}
.y76{bottom:239.250000px;}
.y48{bottom:245.550000px;}
.y37{bottom:245.730000px;}
.y94{bottom:248.430000px;}
.y21{bottom:251.310000px;}
.yc6{bottom:253.650000px;}
.y36{bottom:259.590000px;}
.y75{bottom:261.210000px;}
.y93{bottom:262.110000px;}
.y92{bottom:266.610000px;}
.y20{bottom:266.970000px;}
.y47{bottom:267.330000px;}
.y35{bottom:273.450000px;}
.yc5{bottom:275.610000px;}
.y91{bottom:278.310000px;}
.y1f{bottom:282.450000px;}
.y74{bottom:282.990000px;}
.y34{bottom:287.130000px;}
.y46{bottom:289.110000px;}
.yc2{bottom:295.590000px;}
.y1e{bottom:297.930000px;}
.y33{bottom:300.990000px;}
.y73{bottom:304.770000px;}
.y45{bottom:310.890000px;}
.y1d{bottom:313.410000px;}
.y32{bottom:314.850000px;}
.y72{bottom:326.550000px;}
.y1c{bottom:329.070000px;}
.ya6{bottom:332.490000px;}
.y44{bottom:332.670000px;}
.y1b{bottom:344.550000px;}
.y71{bottom:348.375000px;}
.y43{bottom:354.675000px;}
.y1a{bottom:360.030000px;}
.y70{bottom:370.335000px;}
.y19{bottom:375.510000px;}
.y42{bottom:376.455000px;}
.yba{bottom:389.595000px;}
.y18{bottom:391.035000px;}
.y6f{bottom:392.115000px;}
.y9f{bottom:398.055000px;}
.y41{bottom:398.235000px;}
.y17{bottom:406.695000px;}
.y6e{bottom:413.895000px;}
.y90{bottom:419.835000px;}
.y40{bottom:420.015000px;}
.y16{bottom:422.175000px;}
.y3f{bottom:435.675000px;}
.y15{bottom:437.655000px;}
.ya5{bottom:441.615000px;}
.y6d{bottom:457.635000px;}
.y3c{bottom:457.815000px;}
.y84{bottom:463.575000px;}
.y6c{bottom:479.415000px;}
.y8f{bottom:485.355000px;}
.y14{bottom:489.135000px;}
.y6b{bottom:501.195000px;}
.yb1{bottom:505.335000px;}
.ya2{bottom:507.135000px;}
.y6a{bottom:522.975000px;}
.y69{bottom:544.755000px;}
.y68{bottom:566.715000px;}
.y8e{bottom:572.655000px;}
.y66{bottom:588.495000px;}
.y67{bottom:594.435000px;}
.y65{bottom:610.305000px;}
.y8d{bottom:616.245000px;}
.y64{bottom:632.085000px;}
.yaf{bottom:643.065000px;}
.y63{bottom:654.045000px;}
.y62{bottom:675.825000px;}
.y61{bottom:697.605000px;}
.y83{bottom:703.545000px;}
.y60{bottom:719.385000px;}
.y82{bottom:725.325000px;}
.y5f{bottom:741.165000px;}
.y5e{bottom:763.125000px;}
.y9e{bottom:769.065000px;}
.y5d{bottom:784.905000px;}
.y5c{bottom:806.685000px;}
.y5b{bottom:828.465000px;}
.y5a{bottom:850.425000px;}
.y59{bottom:872.250000px;}
.y9d{bottom:878.190000px;}
.y58{bottom:894.030000px;}
.y57{bottom:915.810000px;}
.y8c{bottom:921.750000px;}
.y56{bottom:937.590000px;}
.y13{bottom:945.150000px;}
.y55{bottom:959.550000px;}
.y12{bottom:962.430000px;}
.ya4{bottom:965.490000px;}
.y11{bottom:980.250000px;}
.y53{bottom:981.330000px;}
.y54{bottom:987.270000px;}
.y10{bottom:998.070000px;}
.y52{bottom:1003.110000px;}
.y8b{bottom:1009.050000px;}
.yf{bottom:1013.010000px;}
.y51{bottom:1024.890000px;}
.ye{bottom:1031.910000px;}
.y50{bottom:1046.670000px;}
.yd{bottom:1049.730000px;}
.yc{bottom:1065.210000px;}
.y4f{bottom:1068.630000px;}
.y8a{bottom:1074.570000px;}
.yb{bottom:1087.530000px;}
.y4e{bottom:1090.410000px;}
.y9{bottom:1110.750000px;}
.y1{bottom:1132.350000px;}
.h13{height:21.960000px;}
.h12{height:26.947266px;}
.h10{height:31.320000px;}
.h11{height:37.212891px;}
.h8{height:42.963750px;}
.ha{height:42.987305px;}
.h6{height:47.980898px;}
.hf{height:48.093750px;}
.he{height:48.120117px;}
.hc{height:53.223750px;}
.h3{height:53.252930px;}
.hb{height:58.995000px;}
.h9{height:59.027344px;}
.h4{height:64.160156px;}
.h7{height:69.255000px;}
.h5{height:71.613281px;}
.h2{height:77.436000px;}
.h16{height:87.156000px;}
.h15{height:109.080000px;}
.h14{height:131.076000px;}
.hd{height:450.255000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.wb{width:107.100000px;}
.w4{width:209.370000px;}
.w7{width:224.130000px;}
.wc{width:263.955000px;}
.wd{width:289.110000px;}
.w8{width:297.750000px;}
.w9{width:391.575000px;}
.w3{width:427.935000px;}
.w6{width:459.075000px;}
.wa{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x47{left:1.080000px;}
.x4{left:8.100000px;}
.x14{left:29.700000px;}
.x6{left:46.260000px;}
.x2{left:69.294000px;}
.x7{left:85.725000px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.x1c{left:111.815987px;}
.x13{left:116.136000px;}
.xe{left:124.955987px;}
.xb{left:128.555987px;}
.x8{left:132.165000px;}
.x1d{left:135.035987px;}
.x4b{left:140.075987px;}
.x2f{left:150.509987px;}
.x17{left:161.129987px;}
.x3f{left:162.569973px;}
.x3c{left:167.789973px;}
.x3{left:171.930000px;}
.x40{left:173.009987px;}
.x34{left:177.149973px;}
.x3d{left:178.229987px;}
.x35{left:187.589987px;}
.xc{left:222.509987px;}
.x48{left:223.590000px;}
.x11{left:232.949987px;}
.x3a{left:260.309973px;}
.x3b{left:270.749987px;}
.xf{left:292.754987px;}
.x45{left:309.854973px;}
.x25{left:313.814973px;}
.x26{left:319.034987px;}
.x46{left:320.294987px;}
.x1b{left:324.074987px;}
.x10{left:334.874987px;}
.x43{left:355.934973px;}
.x32{left:358.814973px;}
.x44{left:366.374987px;}
.x33{left:369.254987px;}
.x15{left:413.895000px;}
.x4a{left:425.054987px;}
.xd{left:446.474987px;}
.x41{left:479.624973px;}
.x42{left:490.064987px;}
.x49{left:492.045000px;}
.x27{left:499.964973px;}
.x21{left:501.224973px;}
.xa{left:503.024987px;}
.x28{left:505.184987px;}
.x22{left:506.444987px;}
.x38{left:507.524973px;}
.x39{left:517.964987px;}
.x2d{left:520.664973px;}
.x2e{left:531.104987px;}
.x3e{left:540.824987px;}
.x1a{left:562.064973px;}
.x12{left:567.105000px;}
.x1e{left:595.544973px;}
.x5{left:599.865000px;}
.x36{left:612.644973px;}
.x37{left:623.084987px;}
.x2a{left:656.969973px;}
.x23{left:661.289973px;}
.x24{left:666.509987px;}
.x18{left:682.349973px;}
.x19{left:687.569987px;}
.x30{left:691.709973px;}
.x2b{left:700.349973px;}
.x31{left:702.149987px;}
.x2c{left:710.789987px;}
.x29{left:731.849973px;}
.x1f{left:737.069973px;}
.x20{left:742.289987px;}
.x16{left:777.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.600000pt;}
.ls11{letter-spacing:-0.912000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.570667pt;}
.ls1b{letter-spacing:-0.504533pt;}
.ls1c{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.441067pt;}
.ls14{letter-spacing:-0.406933pt;}
.lsa{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.233067pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:-0.030720pt;}
.ls5{letter-spacing:-0.015360pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.019840pt;}
.ls19{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.198933pt;}
.ls10{letter-spacing:0.232960pt;}
.lsf{letter-spacing:0.233067pt;}
.ls1a{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:35.450027pt;}
.ls17{letter-spacing:40.891307pt;}
.ls16{letter-spacing:44.091307pt;}
.ls13{letter-spacing:56.891307pt;}
.ws2{word-spacing:-53.120000pt;}
.ws1{word-spacing:-53.068160pt;}
.ws4{word-spacing:-42.899840pt;}
.ws3{word-spacing:-42.880000pt;}
.ws14{word-spacing:-14.991467pt;}
.wse{word-spacing:-14.953067pt;}
.wsc{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.486933pt;}
.ws10{word-spacing:-14.313067pt;}
.ws15{word-spacing:-14.215467pt;}
.ws13{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.808000pt;}
.ws7{word-spacing:-11.680000pt;}
.wsb{word-spacing:-10.918933pt;}
.ws9{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.400000pt;}
.wsa{word-spacing:-10.278933pt;}
.ws11{word-spacing:-6.720000pt;}
.wsf{word-spacing:0.000000pt;}
._4{margin-left:-6.808320pt;}
._1{margin-left:-5.736960pt;}
._5{margin-left:-4.760960pt;}
._12{margin-left:-3.851520pt;}
._e{margin-left:-2.260480pt;}
._0{margin-left:-1.328000pt;}
._2{width:0.903040pt;}
._23{width:1.794987pt;}
._3{width:2.711467pt;}
._13{width:3.637120pt;}
._10{width:4.564480pt;}
._19{width:5.536640pt;}
._8{width:6.624000pt;}
._7{width:7.920000pt;}
._6{width:9.066667pt;}
._c{width:9.960960pt;}
._9{width:10.944000pt;}
._17{width:11.842560pt;}
._a{width:13.296000pt;}
._d{width:14.640000pt;}
._1d{width:15.811627pt;}
._14{width:16.898560pt;}
._18{width:17.840640pt;}
._1e{width:18.782720pt;}
._11{width:20.352000pt;}
._b{width:21.696000pt;}
._16{width:23.138773pt;}
._15{width:24.200747pt;}
._1c{width:25.436160pt;}
._25{width:26.999680pt;}
._1f{width:28.144640pt;}
._20{width:29.825920pt;}
._22{width:30.877653pt;}
._2f{width:31.785173pt;}
._24{width:32.849920pt;}
._f{width:33.984000pt;}
._2c{width:34.879360pt;}
._1a{width:38.389760pt;}
._1b{width:39.397120pt;}
._31{width:42.879147pt;}
._30{width:43.839360pt;}
._2b{width:45.016960pt;}
._21{width:46.135680pt;}
._2e{width:49.812480pt;}
._2d{width:51.402240pt;}
._26{width:67.535360pt;}
._27{width:68.536320pt;}
._28{width:79.134720pt;}
._29{width:90.910720pt;}
._2a{width:326.371840pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:2.560000pt;}
.ybf{bottom:5.600000pt;}
.yb0{bottom:5.760000pt;}
.y2{bottom:5.786667pt;}
.y3d{bottom:8.640000pt;}
.y3e{bottom:10.080000pt;}
.yc1{bottom:15.360000pt;}
.y30{bottom:16.480000pt;}
.y5{bottom:22.586667pt;}
.ybe{bottom:24.960000pt;}
.yb9{bottom:25.120000pt;}
.y8{bottom:25.466667pt;}
.y2f{bottom:30.240000pt;}
.ybc{bottom:34.720000pt;}
.yb4{bottom:34.880000pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y2e{bottom:44.000000pt;}
.yc3{bottom:44.360000pt;}
.yb8{bottom:44.480000pt;}
.ya{bottom:50.080000pt;}
.y3{bottom:53.946667pt;}
.ybb{bottom:54.080000pt;}
.yb3{bottom:54.240000pt;}
.y6{bottom:56.346667pt;}
.y2d{bottom:57.760000pt;}
.yc4{bottom:63.720000pt;}
.yb7{bottom:63.840000pt;}
.y2c{bottom:71.680000pt;}
.yc0{bottom:73.440000pt;}
.yb2{bottom:73.600000pt;}
.ybd{bottom:83.200000pt;}
.yb6{bottom:83.360000pt;}
.y2b{bottom:85.440000pt;}
.y7c{bottom:98.112000pt;}
.y2a{bottom:99.200000pt;}
.y4d{bottom:101.792000pt;}
.y89{bottom:102.112000pt;}
.yb5{bottom:102.746667pt;}
.y7b{bottom:110.432000pt;}
.y29{bottom:112.986667pt;}
.y7a{bottom:114.432000pt;}
.y81{bottom:115.712000pt;}
.y4c{bottom:121.152000pt;}
.y79{bottom:122.592000pt;}
.ycc{bottom:124.832000pt;}
.y78{bottom:126.592000pt;}
.y28{bottom:126.906667pt;}
.ycb{bottom:128.512000pt;}
.yae{bottom:129.152000pt;}
.yad{bottom:133.152000pt;}
.y88{bottom:134.906667pt;}
.y80{bottom:135.066667pt;}
.y77{bottom:136.986667pt;}
.ya1{bottom:138.906667pt;}
.y27{bottom:140.666667pt;}
.yac{bottom:141.306667pt;}
.y87{bottom:147.226667pt;}
.yca{bottom:147.866667pt;}
.ya0{bottom:149.306667pt;}
.y86{bottom:151.226667pt;}
.yab{bottom:153.626667pt;}
.y26{bottom:154.426667pt;}
.y7f{bottom:154.586667pt;}
.yaa{bottom:157.626667pt;}
.y9c{bottom:159.386667pt;}
.y4b{bottom:160.026667pt;}
.y85{bottom:161.626667pt;}
.ya9{bottom:165.786667pt;}
.yc9{bottom:167.386667pt;}
.y25{bottom:168.186667pt;}
.y3b{bottom:169.466667pt;}
.ya8{bottom:169.786667pt;}
.y9b{bottom:171.706667pt;}
.y7e{bottom:173.946667pt;}
.y9a{bottom:175.706667pt;}
.ya3{bottom:179.226667pt;}
.y4a{bottom:179.386667pt;}
.ya7{bottom:180.186667pt;}
.y3a{bottom:181.626667pt;}
.y24{bottom:182.106667pt;}
.y99{bottom:184.026667pt;}
.yc8{bottom:186.746667pt;}
.y98{bottom:188.026667pt;}
.y7d{bottom:193.306667pt;}
.y39{bottom:193.946667pt;}
.y23{bottom:195.866667pt;}
.y97{bottom:196.186667pt;}
.y49{bottom:198.746667pt;}
.yc7{bottom:206.106667pt;}
.y38{bottom:206.266667pt;}
.y96{bottom:208.506667pt;}
.y22{bottom:209.626667pt;}
.y95{bottom:212.506667pt;}
.y76{bottom:212.666667pt;}
.y48{bottom:218.266667pt;}
.y37{bottom:218.426667pt;}
.y94{bottom:220.826667pt;}
.y21{bottom:223.386667pt;}
.yc6{bottom:225.466667pt;}
.y36{bottom:230.746667pt;}
.y75{bottom:232.186667pt;}
.y93{bottom:232.986667pt;}
.y92{bottom:236.986667pt;}
.y20{bottom:237.306667pt;}
.y47{bottom:237.626667pt;}
.y35{bottom:243.066667pt;}
.yc5{bottom:244.986667pt;}
.y91{bottom:247.386667pt;}
.y1f{bottom:251.066667pt;}
.y74{bottom:251.546667pt;}
.y34{bottom:255.226667pt;}
.y46{bottom:256.986667pt;}
.yc2{bottom:262.746667pt;}
.y1e{bottom:264.826667pt;}
.y33{bottom:267.546667pt;}
.y73{bottom:270.906667pt;}
.y45{bottom:276.346667pt;}
.y1d{bottom:278.586667pt;}
.y32{bottom:279.866667pt;}
.y72{bottom:290.266667pt;}
.y1c{bottom:292.506667pt;}
.ya6{bottom:295.546667pt;}
.y44{bottom:295.706667pt;}
.y1b{bottom:306.266667pt;}
.y71{bottom:309.666667pt;}
.y43{bottom:315.266667pt;}
.y1a{bottom:320.026667pt;}
.y70{bottom:329.186667pt;}
.y19{bottom:333.786667pt;}
.y42{bottom:334.626667pt;}
.yba{bottom:346.306667pt;}
.y18{bottom:347.586667pt;}
.y6f{bottom:348.546667pt;}
.y9f{bottom:353.826667pt;}
.y41{bottom:353.986667pt;}
.y17{bottom:361.506667pt;}
.y6e{bottom:367.906667pt;}
.y90{bottom:373.186667pt;}
.y40{bottom:373.346667pt;}
.y16{bottom:375.266667pt;}
.y3f{bottom:387.266667pt;}
.y15{bottom:389.026667pt;}
.ya5{bottom:392.546667pt;}
.y6d{bottom:406.786667pt;}
.y3c{bottom:406.946667pt;}
.y84{bottom:412.066667pt;}
.y6c{bottom:426.146667pt;}
.y8f{bottom:431.426667pt;}
.y14{bottom:434.786667pt;}
.y6b{bottom:445.506667pt;}
.yb1{bottom:449.186667pt;}
.ya2{bottom:450.786667pt;}
.y6a{bottom:464.866667pt;}
.y69{bottom:484.226667pt;}
.y68{bottom:503.746667pt;}
.y8e{bottom:509.026667pt;}
.y66{bottom:523.106667pt;}
.y67{bottom:528.386667pt;}
.y65{bottom:542.493333pt;}
.y8d{bottom:547.773333pt;}
.y64{bottom:561.853333pt;}
.yaf{bottom:571.613333pt;}
.y63{bottom:581.373333pt;}
.y62{bottom:600.733333pt;}
.y61{bottom:620.093333pt;}
.y83{bottom:625.373333pt;}
.y60{bottom:639.453333pt;}
.y82{bottom:644.733333pt;}
.y5f{bottom:658.813333pt;}
.y5e{bottom:678.333333pt;}
.y9e{bottom:683.613333pt;}
.y5d{bottom:697.693333pt;}
.y5c{bottom:717.053333pt;}
.y5b{bottom:736.413333pt;}
.y5a{bottom:755.933333pt;}
.y59{bottom:775.333333pt;}
.y9d{bottom:780.613333pt;}
.y58{bottom:794.693333pt;}
.y57{bottom:814.053333pt;}
.y8c{bottom:819.333333pt;}
.y56{bottom:833.413333pt;}
.y13{bottom:840.133333pt;}
.y55{bottom:852.933333pt;}
.y12{bottom:855.493333pt;}
.ya4{bottom:858.213333pt;}
.y11{bottom:871.333333pt;}
.y53{bottom:872.293333pt;}
.y54{bottom:877.573333pt;}
.y10{bottom:887.173333pt;}
.y52{bottom:891.653333pt;}
.y8b{bottom:896.933333pt;}
.yf{bottom:900.453333pt;}
.y51{bottom:911.013333pt;}
.ye{bottom:917.253333pt;}
.y50{bottom:930.373333pt;}
.yd{bottom:933.093333pt;}
.yc{bottom:946.853333pt;}
.y4f{bottom:949.893333pt;}
.y8a{bottom:955.173333pt;}
.yb{bottom:966.693333pt;}
.y4e{bottom:969.253333pt;}
.y9{bottom:987.333333pt;}
.y1{bottom:1006.533333pt;}
.h13{height:19.520000pt;}
.h12{height:23.953125pt;}
.h10{height:27.840000pt;}
.h11{height:33.078125pt;}
.h8{height:38.190000pt;}
.ha{height:38.210937pt;}
.h6{height:42.649687pt;}
.hf{height:42.750000pt;}
.he{height:42.773438pt;}
.hc{height:47.310000pt;}
.h3{height:47.335938pt;}
.hb{height:52.440000pt;}
.h9{height:52.468750pt;}
.h4{height:57.031250pt;}
.h7{height:61.560000pt;}
.h5{height:63.656250pt;}
.h2{height:68.832000pt;}
.h16{height:77.472000pt;}
.h15{height:96.960000pt;}
.h14{height:116.512000pt;}
.hd{height:400.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.wb{width:95.200000pt;}
.w4{width:186.106667pt;}
.w7{width:199.226667pt;}
.wc{width:234.626667pt;}
.wd{width:256.986667pt;}
.w8{width:264.666667pt;}
.w9{width:348.066667pt;}
.w3{width:380.386667pt;}
.w6{width:408.066667pt;}
.wa{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x47{left:0.960000pt;}
.x4{left:7.200000pt;}
.x14{left:26.400000pt;}
.x6{left:41.120000pt;}
.x2{left:61.594667pt;}
.x7{left:76.200000pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x1c{left:99.391988pt;}
.x13{left:103.232000pt;}
.xe{left:111.071988pt;}
.xb{left:114.271988pt;}
.x8{left:117.480000pt;}
.x1d{left:120.031988pt;}
.x4b{left:124.511988pt;}
.x2f{left:133.786655pt;}
.x17{left:143.226655pt;}
.x3f{left:144.506643pt;}
.x3c{left:149.146643pt;}
.x3{left:152.826667pt;}
.x40{left:153.786655pt;}
.x34{left:157.466643pt;}
.x3d{left:158.426655pt;}
.x35{left:166.746655pt;}
.xc{left:197.786655pt;}
.x48{left:198.746667pt;}
.x11{left:207.066655pt;}
.x3a{left:231.386643pt;}
.x3b{left:240.666655pt;}
.xf{left:260.226655pt;}
.x45{left:275.426643pt;}
.x25{left:278.946643pt;}
.x26{left:283.586655pt;}
.x46{left:284.706655pt;}
.x1b{left:288.066655pt;}
.x10{left:297.666655pt;}
.x43{left:316.386643pt;}
.x32{left:318.946643pt;}
.x44{left:325.666655pt;}
.x33{left:328.226655pt;}
.x15{left:367.906667pt;}
.x4a{left:377.826655pt;}
.xd{left:396.866655pt;}
.x41{left:426.333310pt;}
.x42{left:435.613322pt;}
.x49{left:437.373333pt;}
.x27{left:444.413310pt;}
.x21{left:445.533310pt;}
.xa{left:447.133322pt;}
.x28{left:449.053322pt;}
.x22{left:450.173322pt;}
.x38{left:451.133310pt;}
.x39{left:460.413322pt;}
.x2d{left:462.813310pt;}
.x2e{left:472.093322pt;}
.x3e{left:480.733322pt;}
.x1a{left:499.613310pt;}
.x12{left:504.093333pt;}
.x1e{left:529.373310pt;}
.x5{left:533.213333pt;}
.x36{left:544.573310pt;}
.x37{left:553.853322pt;}
.x2a{left:583.973310pt;}
.x23{left:587.813310pt;}
.x24{left:592.453322pt;}
.x18{left:606.533310pt;}
.x19{left:611.173322pt;}
.x30{left:614.853310pt;}
.x2b{left:622.533310pt;}
.x31{left:624.133322pt;}
.x2c{left:631.813322pt;}
.x29{left:650.533310pt;}
.x1f{left:655.173310pt;}
.x20{left:659.813322pt;}
.x16{left:691.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; }
  