
    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_2e728d3527546fe577b96f15.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_a0fba6fa0bd1767d9f9ba37c.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_0030a07aba64527ead0a982f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_c9d2d650c652e2e215594db6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921875;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_a8ac00831d7426b7cf2cdf22.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_c735524d07818d23fa38ca96.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_5e460fdceafbeefb1c780001.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966309;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_e6401d23b97153cafbba9bb9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_d016384a312e67a47a274f06.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0089bebd7a0244896267aaac.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-1.008000px;}
.ls9{letter-spacing:-0.457800px;}
.lsc{letter-spacing:-0.226200px;}
.lsd{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.089400px;}
.ls8{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.060480px;}
.ls6{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.262080px;}
.ls1{letter-spacing:0.360000px;}
.lse{letter-spacing:0.403920px;}
.ls2{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.900000px;}
.ls11{letter-spacing:5.214240px;}
.ls12{letter-spacing:46.026720px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.102200px;}
.ws2{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.wsb{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.392000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.213800px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.651200px;}
._3{width:3.591360px;}
._2{width:4.752000px;}
._6{width:6.156000px;}
._e{width:7.452000px;}
._4{width:9.126000px;}
._5{width:10.408800px;}
._7{width:12.366000px;}
._b{width:13.725120px;}
._a{width:16.673040px;}
._13{width:17.679840px;}
._12{width:19.437600px;}
._10{width:21.117360px;}
._11{width:22.328160px;}
._c{width:24.882240px;}
._d{width:26.168400px;}
._8{width:52.013280px;}
._9{width:53.164320px;}
._f{width:2867.220000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:5.760000px;}
.fs8{font-size:12.240000px;}
.fs2{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y47{bottom:0.360000px;}
.y50{bottom:0.900000px;}
.y46{bottom:2.160000px;}
.yd{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.yc3{bottom:3.960000px;}
.y95{bottom:4.320000px;}
.y5f{bottom:5.010000px;}
.yc8{bottom:5.220000px;}
.y45{bottom:5.580000px;}
.y7f{bottom:6.840000px;}
.y5b{bottom:8.280000px;}
.y85{bottom:8.460000px;}
.y2{bottom:9.900000px;}
.y44{bottom:10.260000px;}
.y14{bottom:16.560000px;}
.yd1{bottom:20.340000px;}
.y8c{bottom:20.520000px;}
.y97{bottom:20.550000px;}
.y89{bottom:20.565000px;}
.y61{bottom:20.700000px;}
.y62{bottom:20.880000px;}
.ybd{bottom:21.240000px;}
.yca{bottom:21.420000px;}
.y94{bottom:21.450000px;}
.yc2{bottom:21.600000px;}
.yc7{bottom:22.500000px;}
.y82{bottom:22.680000px;}
.y4{bottom:22.710000px;}
.y5a{bottom:23.760000px;}
.y84{bottom:25.740000px;}
.y43{bottom:27.360000px;}
.y4f{bottom:30.600000px;}
.y13{bottom:33.885000px;}
.y8f{bottom:37.620000px;}
.y88{bottom:37.665000px;}
.y8b{bottom:37.800000px;}
.yce{bottom:37.845000px;}
.y96{bottom:38.370000px;}
.yc1{bottom:38.700000px;}
.y93{bottom:38.730000px;}
.ybc{bottom:38.925000px;}
.yc6{bottom:39.780000px;}
.y59{bottom:41.580000px;}
.y83{bottom:43.020000px;}
.y42{bottom:44.640000px;}
.y3{bottom:47.910000px;}
.y12{bottom:51.165000px;}
.y4e{bottom:51.300000px;}
.y8e{bottom:54.900000px;}
.y87{bottom:54.945000px;}
.y91{bottom:55.080000px;}
.ybf{bottom:55.620000px;}
.yc0{bottom:55.980000px;}
.yba{bottom:56.205000px;}
.yc9{bottom:56.700000px;}
.yc5{bottom:57.060000px;}
.y58{bottom:57.240000px;}
.y81{bottom:60.300000px;}
.y41{bottom:61.920000px;}
.y4d{bottom:64.440000px;}
.y11{bottom:69.165000px;}
.y8{bottom:71.820000px;}
.y57{bottom:72.750000px;}
.yb9{bottom:74.025000px;}
.ybb{bottom:74.385000px;}
.y40{bottom:79.200000px;}
.y4c{bottom:86.430000px;}
.y56{bottom:90.570000px;}
.y7{bottom:90.720000px;}
.y10{bottom:92.025000px;}
.y3f{bottom:96.480000px;}
.yf{bottom:103.905000px;}
.y55{bottom:106.050000px;}
.y3e{bottom:113.580000px;}
.yb7{bottom:114.480000px;}
.y9b{bottom:115.920000px;}
.y5d{bottom:117.540000px;}
.y54{bottom:121.530000px;}
.y3d{bottom:130.905000px;}
.yb6{bottom:131.760000px;}
.y9a{bottom:133.200000px;}
.y49{bottom:135.540000px;}
.y53{bottom:137.010000px;}
.y3c{bottom:148.185000px;}
.y4b{bottom:148.350000px;}
.yb5{bottom:148.860000px;}
.y99{bottom:151.200000px;}
.y52{bottom:152.670000px;}
.y4a{bottom:158.970000px;}
.y3b{bottom:165.465000px;}
.yb4{bottom:166.140000px;}
.y51{bottom:168.150000px;}
.y98{bottom:168.840000px;}
.y5c{bottom:175.710000px;}
.y3a{bottom:182.745000px;}
.yb3{bottom:183.420000px;}
.y92{bottom:183.600000px;}
.y39{bottom:200.025000px;}
.yb2{bottom:200.700000px;}
.y38{bottom:217.125000px;}
.yb1{bottom:218.010000px;}
.y37{bottom:234.405000px;}
.yb0{bottom:235.110000px;}
.yfe{bottom:236.730000px;}
.y90{bottom:237.090000px;}
.y23{bottom:249.705000px;}
.y36{bottom:251.685000px;}
.yaf{bottom:252.390000px;}
.yfd{bottom:254.010000px;}
.y22{bottom:266.985000px;}
.y35{bottom:268.965000px;}
.yae{bottom:270.390000px;}
.yfc{bottom:271.290000px;}
.y34{bottom:286.245000px;}
.yad{bottom:288.030000px;}
.yfb{bottom:288.570000px;}
.y21{bottom:291.105000px;}
.yd2{bottom:302.790000px;}
.y33{bottom:303.525000px;}
.yfa{bottom:305.850000px;}
.y8d{bottom:306.930000px;}
.y20{bottom:315.405000px;}
.y32{bottom:320.625000px;}
.yf9{bottom:323.130000px;}
.y15{bottom:323.850000px;}
.y31{bottom:337.905000px;}
.yd0{bottom:338.070000px;}
.y1f{bottom:339.525000px;}
.yf8{bottom:340.230000px;}
.y30{bottom:355.215000px;}
.yf7{bottom:357.510000px;}
.y1e{bottom:363.675000px;}
.y2f{bottom:372.495000px;}
.yf6{bottom:374.790000px;}
.y8a{bottom:376.590000px;}
.y1d{bottom:387.795000px;}
.y2e{bottom:389.775000px;}
.ycf{bottom:390.450000px;}
.yf5{bottom:392.070000px;}
.y2d{bottom:406.875000px;}
.yf4{bottom:409.350000px;}
.y1c{bottom:411.915000px;}
.y2c{bottom:424.155000px;}
.ycd{bottom:425.730000px;}
.yf3{bottom:426.630000px;}
.y86{bottom:429.150000px;}
.y1b{bottom:436.035000px;}
.y2b{bottom:441.075000px;}
.yf2{bottom:443.775000px;}
.y2a{bottom:456.735000px;}
.y1a{bottom:460.335000px;}
.yf1{bottom:461.055000px;}
.y29{bottom:472.215000px;}
.ycc{bottom:478.335000px;}
.y19{bottom:484.455000px;}
.y28{bottom:487.695000px;}
.yf0{bottom:495.615000px;}
.y80{bottom:498.855000px;}
.y27{bottom:503.895000px;}
.y18{bottom:508.575000px;}
.yef{bottom:512.895000px;}
.y26{bottom:520.455000px;}
.yee{bottom:529.995000px;}
.ycb{bottom:530.715000px;}
.y17{bottom:532.695000px;}
.y25{bottom:536.115000px;}
.yed{bottom:547.275000px;}
.y24{bottom:551.595000px;}
.y48{bottom:553.935000px;}
.y16{bottom:556.815000px;}
.yac{bottom:557.715000px;}
.yec{bottom:564.555000px;}
.y7e{bottom:573.915000px;}
.yab{bottom:574.995000px;}
.yeb{bottom:581.835000px;}
.yaa{bottom:592.275000px;}
.y7d{bottom:598.755000px;}
.yea{bottom:599.115000px;}
.ya9{bottom:609.555000px;}
.y7c{bottom:616.035000px;}
.ye9{bottom:616.395000px;}
.ya8{bottom:626.835000px;}
.y7b{bottom:633.315000px;}
.ye8{bottom:633.495000px;}
.ya7{bottom:644.835000px;}
.y7a{bottom:650.415000px;}
.ye7{bottom:650.775000px;}
.ya6{bottom:663.015000px;}
.y79{bottom:667.695000px;}
.ye6{bottom:668.055000px;}
.ya5{bottom:681.405000px;}
.y78{bottom:685.005000px;}
.ye5{bottom:685.365000px;}
.ya4{bottom:699.765000px;}
.y77{bottom:702.285000px;}
.ye4{bottom:702.645000px;}
.ya3{bottom:717.405000px;}
.y76{bottom:719.565000px;}
.ye3{bottom:719.925000px;}
.yc4{bottom:732.165000px;}
.y75{bottom:736.665000px;}
.ye2{bottom:737.025000px;}
.y74{bottom:753.945000px;}
.ye1{bottom:754.305000px;}
.y73{bottom:771.225000px;}
.ye0{bottom:771.585000px;}
.y72{bottom:788.505000px;}
.ydf{bottom:788.865000px;}
.ybe{bottom:803.985000px;}
.y71{bottom:805.785000px;}
.yde{bottom:806.145000px;}
.y70{bottom:823.065000px;}
.ydd{bottom:823.425000px;}
.y6f{bottom:840.165000px;}
.ydc{bottom:840.525000px;}
.y6e{bottom:857.445000px;}
.ydb{bottom:857.805000px;}
.y6d{bottom:874.725000px;}
.yda{bottom:875.085000px;}
.ye{bottom:890.385000px;}
.y6c{bottom:892.005000px;}
.yd9{bottom:892.365000px;}
.y6b{bottom:909.330000px;}
.yd8{bottom:909.690000px;}
.y6a{bottom:926.610000px;}
.yd7{bottom:926.790000px;}
.y69{bottom:943.710000px;}
.yd6{bottom:944.070000px;}
.y68{bottom:960.990000px;}
.yd5{bottom:961.350000px;}
.yb8{bottom:963.870000px;}
.y67{bottom:978.270000px;}
.yd4{bottom:978.630000px;}
.y66{bottom:995.550000px;}
.yd3{bottom:996.630000px;}
.ya2{bottom:996.990000px;}
.yc{bottom:1008.330000px;}
.y65{bottom:1012.830000px;}
.ya1{bottom:1014.090000px;}
.yb{bottom:1030.110000px;}
.ya0{bottom:1031.370000px;}
.y64{bottom:1047.210000px;}
.y9f{bottom:1048.650000px;}
.ya{bottom:1054.230000px;}
.y63{bottom:1065.210000px;}
.y9e{bottom:1065.930000px;}
.y60{bottom:1079.610000px;}
.y9{bottom:1082.850000px;}
.y9d{bottom:1083.210000px;}
.y5e{bottom:1086.300000px;}
.y9c{bottom:1100.490000px;}
.y6{bottom:1116.330000px;}
.y1{bottom:1123.530000px;}
.h17{height:4.021875px;}
.h13{height:8.546484px;}
.ha{height:17.280000px;}
.h1f{height:20.880000px;}
.h19{height:21.114844px;}
.hd{height:27.147656px;}
.h1b{height:27.720000px;}
.h12{height:29.158594px;}
.h11{height:29.464453px;}
.h6{height:30.077578px;}
.h2c{height:34.380000px;}
.h2b{height:34.560000px;}
.h1d{height:34.740000px;}
.h1a{height:38.100586px;}
.h14{height:38.997070px;}
.h8{height:40.132617px;}
.h15{height:41.159180px;}
.h7{height:41.726953px;}
.hf{height:42.164648px;}
.h16{height:43.453125px;}
.h2d{height:43.506914px;}
.h5{height:46.251562px;}
.hc{height:48.312422px;}
.h29{height:51.660000px;}
.h22{height:51.840000px;}
.h2a{height:51.876000px;}
.h25{height:52.776000px;}
.h9{height:59.436914px;}
.he{height:59.439023px;}
.h1e{height:61.189805px;}
.h1c{height:64.002656px;}
.h3{height:65.884219px;}
.h23{height:68.940000px;}
.h21{height:68.976000px;}
.h24{height:69.120000px;}
.h27{height:70.020000px;}
.h28{height:71.100000px;}
.h20{height:74.340000px;}
.h2{height:84.996000px;}
.h26{height:88.416000px;}
.h4{height:117.180000px;}
.hb{height:117.936000px;}
.h18{height:188.310000px;}
.h10{height:566.535000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:77.580000px;}
.w2{width:104.076000px;}
.wc{width:126.180000px;}
.we{width:128.736000px;}
.wd{width:129.996000px;}
.w7{width:132.696000px;}
.w12{width:145.116000px;}
.w11{width:145.296000px;}
.w10{width:145.440000px;}
.wa{width:162.900000px;}
.w14{width:205.410000px;}
.w15{width:223.050000px;}
.w13{width:242.490000px;}
.wf{width:254.910000px;}
.w16{width:270.390000px;}
.wb{width:323.715000px;}
.w5{width:365.475000px;}
.w6{width:365.505000px;}
.w8{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.056000px;}
.xa{left:8.100000px;}
.x4{left:12.780000px;}
.x18{left:14.616000px;}
.x6{left:16.020000px;}
.xd{left:18.390000px;}
.x1b{left:19.656000px;}
.x1a{left:22.716000px;}
.x19{left:29.016000px;}
.x12{left:43.776000px;}
.x20{left:47.736000px;}
.x13{left:50.796000px;}
.x21{left:57.096000px;}
.x11{left:60.156000px;}
.x1d{left:62.145000px;}
.x17{left:67.170000px;}
.x16{left:70.410000px;}
.x15{left:71.850000px;}
.x1{left:78.300000px;}
.x8{left:86.399987px;}
.x2{left:95.790000px;}
.x22{left:102.810000px;}
.x1f{left:106.770000px;}
.x2f{left:113.435987px;}
.x14{left:124.590000px;}
.x5{left:141.345000px;}
.xf{left:171.930000px;}
.x3{left:182.370000px;}
.x10{left:194.475000px;}
.x1c{left:219.090000px;}
.xc{left:236.055000px;}
.x26{left:252.570000px;}
.xe{left:276.555000px;}
.x2a{left:280.874987px;}
.x2d{left:302.655000px;}
.x25{left:315.615000px;}
.x27{left:383.475000px;}
.x2b{left:398.595000px;}
.x24{left:402.015000px;}
.xb{left:443.775000px;}
.x29{left:446.684987px;}
.x28{left:512.925000px;}
.x2e{left:526.425000px;}
.x2c{left:544.425000px;}
.x9{left:766.049987px;}
.x7{left:784.409987px;}
.x1e{left:815.580000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-0.896000pt;}
.ls9{letter-spacing:-0.406933pt;}
.lsc{letter-spacing:-0.201067pt;}
.lsd{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.079467pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.053760pt;}
.ls6{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.232960pt;}
.ls1{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.359040pt;}
.ls2{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.800000pt;}
.ls11{letter-spacing:4.634880pt;}
.ls12{letter-spacing:40.912640pt;}
.wsa{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.ws2{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.904000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.078933pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.467733pt;}
._3{width:3.192320pt;}
._2{width:4.224000pt;}
._6{width:5.472000pt;}
._e{width:6.624000pt;}
._4{width:8.112000pt;}
._5{width:9.252267pt;}
._7{width:10.992000pt;}
._b{width:12.200107pt;}
._a{width:14.820480pt;}
._13{width:15.715413pt;}
._12{width:17.277867pt;}
._10{width:18.770987pt;}
._11{width:19.847253pt;}
._c{width:22.117547pt;}
._d{width:23.260800pt;}
._8{width:46.234027pt;}
._9{width:47.257173pt;}
._f{width:2548.640000pt;}
.fsa{font-size:5.120000pt;}
.fs8{font-size:10.880000pt;}
.fs2{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:0.320000pt;}
.y50{bottom:0.800000pt;}
.y46{bottom:1.920000pt;}
.yd{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.yc3{bottom:3.520000pt;}
.y95{bottom:3.840000pt;}
.y5f{bottom:4.453333pt;}
.yc8{bottom:4.640000pt;}
.y45{bottom:4.960000pt;}
.y7f{bottom:6.080000pt;}
.y5b{bottom:7.360000pt;}
.y85{bottom:7.520000pt;}
.y2{bottom:8.800000pt;}
.y44{bottom:9.120000pt;}
.y14{bottom:14.720000pt;}
.yd1{bottom:18.080000pt;}
.y8c{bottom:18.240000pt;}
.y97{bottom:18.266667pt;}
.y89{bottom:18.280000pt;}
.y61{bottom:18.400000pt;}
.y62{bottom:18.560000pt;}
.ybd{bottom:18.880000pt;}
.yca{bottom:19.040000pt;}
.y94{bottom:19.066667pt;}
.yc2{bottom:19.200000pt;}
.yc7{bottom:20.000000pt;}
.y82{bottom:20.160000pt;}
.y4{bottom:20.186667pt;}
.y5a{bottom:21.120000pt;}
.y84{bottom:22.880000pt;}
.y43{bottom:24.320000pt;}
.y4f{bottom:27.200000pt;}
.y13{bottom:30.120000pt;}
.y8f{bottom:33.440000pt;}
.y88{bottom:33.480000pt;}
.y8b{bottom:33.600000pt;}
.yce{bottom:33.640000pt;}
.y96{bottom:34.106667pt;}
.yc1{bottom:34.400000pt;}
.y93{bottom:34.426667pt;}
.ybc{bottom:34.600000pt;}
.yc6{bottom:35.360000pt;}
.y59{bottom:36.960000pt;}
.y83{bottom:38.240000pt;}
.y42{bottom:39.680000pt;}
.y3{bottom:42.586667pt;}
.y12{bottom:45.480000pt;}
.y4e{bottom:45.600000pt;}
.y8e{bottom:48.800000pt;}
.y87{bottom:48.840000pt;}
.y91{bottom:48.960000pt;}
.ybf{bottom:49.440000pt;}
.yc0{bottom:49.760000pt;}
.yba{bottom:49.960000pt;}
.yc9{bottom:50.400000pt;}
.yc5{bottom:50.720000pt;}
.y58{bottom:50.880000pt;}
.y81{bottom:53.600000pt;}
.y41{bottom:55.040000pt;}
.y4d{bottom:57.280000pt;}
.y11{bottom:61.480000pt;}
.y8{bottom:63.840000pt;}
.y57{bottom:64.666667pt;}
.yb9{bottom:65.800000pt;}
.ybb{bottom:66.120000pt;}
.y40{bottom:70.400000pt;}
.y4c{bottom:76.826667pt;}
.y56{bottom:80.506667pt;}
.y7{bottom:80.640000pt;}
.y10{bottom:81.800000pt;}
.y3f{bottom:85.760000pt;}
.yf{bottom:92.360000pt;}
.y55{bottom:94.266667pt;}
.y3e{bottom:100.960000pt;}
.yb7{bottom:101.760000pt;}
.y9b{bottom:103.040000pt;}
.y5d{bottom:104.480000pt;}
.y54{bottom:108.026667pt;}
.y3d{bottom:116.360000pt;}
.yb6{bottom:117.120000pt;}
.y9a{bottom:118.400000pt;}
.y49{bottom:120.480000pt;}
.y53{bottom:121.786667pt;}
.y3c{bottom:131.720000pt;}
.y4b{bottom:131.866667pt;}
.yb5{bottom:132.320000pt;}
.y99{bottom:134.400000pt;}
.y52{bottom:135.706667pt;}
.y4a{bottom:141.306667pt;}
.y3b{bottom:147.080000pt;}
.yb4{bottom:147.680000pt;}
.y51{bottom:149.466667pt;}
.y98{bottom:150.080000pt;}
.y5c{bottom:156.186667pt;}
.y3a{bottom:162.440000pt;}
.yb3{bottom:163.040000pt;}
.y92{bottom:163.200000pt;}
.y39{bottom:177.800000pt;}
.yb2{bottom:178.400000pt;}
.y38{bottom:193.000000pt;}
.yb1{bottom:193.786667pt;}
.y37{bottom:208.360000pt;}
.yb0{bottom:208.986667pt;}
.yfe{bottom:210.426667pt;}
.y90{bottom:210.746667pt;}
.y23{bottom:221.960000pt;}
.y36{bottom:223.720000pt;}
.yaf{bottom:224.346667pt;}
.yfd{bottom:225.786667pt;}
.y22{bottom:237.320000pt;}
.y35{bottom:239.080000pt;}
.yae{bottom:240.346667pt;}
.yfc{bottom:241.146667pt;}
.y34{bottom:254.440000pt;}
.yad{bottom:256.026667pt;}
.yfb{bottom:256.506667pt;}
.y21{bottom:258.760000pt;}
.yd2{bottom:269.146667pt;}
.y33{bottom:269.800000pt;}
.yfa{bottom:271.866667pt;}
.y8d{bottom:272.826667pt;}
.y20{bottom:280.360000pt;}
.y32{bottom:285.000000pt;}
.yf9{bottom:287.226667pt;}
.y15{bottom:287.866667pt;}
.y31{bottom:300.360000pt;}
.yd0{bottom:300.506667pt;}
.y1f{bottom:301.800000pt;}
.yf8{bottom:302.426667pt;}
.y30{bottom:315.746667pt;}
.yf7{bottom:317.786667pt;}
.y1e{bottom:323.266667pt;}
.y2f{bottom:331.106667pt;}
.yf6{bottom:333.146667pt;}
.y8a{bottom:334.746667pt;}
.y1d{bottom:344.706667pt;}
.y2e{bottom:346.466667pt;}
.ycf{bottom:347.066667pt;}
.yf5{bottom:348.506667pt;}
.y2d{bottom:361.666667pt;}
.yf4{bottom:363.866667pt;}
.y1c{bottom:366.146667pt;}
.y2c{bottom:377.026667pt;}
.ycd{bottom:378.426667pt;}
.yf3{bottom:379.226667pt;}
.y86{bottom:381.466667pt;}
.y1b{bottom:387.586667pt;}
.y2b{bottom:392.066667pt;}
.yf2{bottom:394.466667pt;}
.y2a{bottom:405.986667pt;}
.y1a{bottom:409.186667pt;}
.yf1{bottom:409.826667pt;}
.y29{bottom:419.746667pt;}
.ycc{bottom:425.186667pt;}
.y19{bottom:430.626667pt;}
.y28{bottom:433.506667pt;}
.yf0{bottom:440.546667pt;}
.y80{bottom:443.426667pt;}
.y27{bottom:447.906667pt;}
.y18{bottom:452.066667pt;}
.yef{bottom:455.906667pt;}
.y26{bottom:462.626667pt;}
.yee{bottom:471.106667pt;}
.ycb{bottom:471.746667pt;}
.y17{bottom:473.506667pt;}
.y25{bottom:476.546667pt;}
.yed{bottom:486.466667pt;}
.y24{bottom:490.306667pt;}
.y48{bottom:492.386667pt;}
.y16{bottom:494.946667pt;}
.yac{bottom:495.746667pt;}
.yec{bottom:501.826667pt;}
.y7e{bottom:510.146667pt;}
.yab{bottom:511.106667pt;}
.yeb{bottom:517.186667pt;}
.yaa{bottom:526.466667pt;}
.y7d{bottom:532.226667pt;}
.yea{bottom:532.546667pt;}
.ya9{bottom:541.826667pt;}
.y7c{bottom:547.586667pt;}
.ye9{bottom:547.906667pt;}
.ya8{bottom:557.186667pt;}
.y7b{bottom:562.946667pt;}
.ye8{bottom:563.106667pt;}
.ya7{bottom:573.186667pt;}
.y7a{bottom:578.146667pt;}
.ye7{bottom:578.466667pt;}
.ya6{bottom:589.346667pt;}
.y79{bottom:593.506667pt;}
.ye6{bottom:593.826667pt;}
.ya5{bottom:605.693333pt;}
.y78{bottom:608.893333pt;}
.ye5{bottom:609.213333pt;}
.ya4{bottom:622.013333pt;}
.y77{bottom:624.253333pt;}
.ye4{bottom:624.573333pt;}
.ya3{bottom:637.693333pt;}
.y76{bottom:639.613333pt;}
.ye3{bottom:639.933333pt;}
.yc4{bottom:650.813333pt;}
.y75{bottom:654.813333pt;}
.ye2{bottom:655.133333pt;}
.y74{bottom:670.173333pt;}
.ye1{bottom:670.493333pt;}
.y73{bottom:685.533333pt;}
.ye0{bottom:685.853333pt;}
.y72{bottom:700.893333pt;}
.ydf{bottom:701.213333pt;}
.ybe{bottom:714.653333pt;}
.y71{bottom:716.253333pt;}
.yde{bottom:716.573333pt;}
.y70{bottom:731.613333pt;}
.ydd{bottom:731.933333pt;}
.y6f{bottom:746.813333pt;}
.ydc{bottom:747.133333pt;}
.y6e{bottom:762.173333pt;}
.ydb{bottom:762.493333pt;}
.y6d{bottom:777.533333pt;}
.yda{bottom:777.853333pt;}
.ye{bottom:791.453333pt;}
.y6c{bottom:792.893333pt;}
.yd9{bottom:793.213333pt;}
.y6b{bottom:808.293333pt;}
.yd8{bottom:808.613333pt;}
.y6a{bottom:823.653333pt;}
.yd7{bottom:823.813333pt;}
.y69{bottom:838.853333pt;}
.yd6{bottom:839.173333pt;}
.y68{bottom:854.213333pt;}
.yd5{bottom:854.533333pt;}
.yb8{bottom:856.773333pt;}
.y67{bottom:869.573333pt;}
.yd4{bottom:869.893333pt;}
.y66{bottom:884.933333pt;}
.yd3{bottom:885.893333pt;}
.ya2{bottom:886.213333pt;}
.yc{bottom:896.293333pt;}
.y65{bottom:900.293333pt;}
.ya1{bottom:901.413333pt;}
.yb{bottom:915.653333pt;}
.ya0{bottom:916.773333pt;}
.y64{bottom:930.853333pt;}
.y9f{bottom:932.133333pt;}
.ya{bottom:937.093333pt;}
.y63{bottom:946.853333pt;}
.y9e{bottom:947.493333pt;}
.y60{bottom:959.653333pt;}
.y9{bottom:962.533333pt;}
.y9d{bottom:962.853333pt;}
.y5e{bottom:965.600000pt;}
.y9c{bottom:978.213333pt;}
.y6{bottom:992.293333pt;}
.y1{bottom:998.693333pt;}
.h17{height:3.575000pt;}
.h13{height:7.596875pt;}
.ha{height:15.360000pt;}
.h1f{height:18.560000pt;}
.h19{height:18.768750pt;}
.hd{height:24.131250pt;}
.h1b{height:24.640000pt;}
.h12{height:25.918750pt;}
.h11{height:26.190625pt;}
.h6{height:26.735625pt;}
.h2c{height:30.560000pt;}
.h2b{height:30.720000pt;}
.h1d{height:30.880000pt;}
.h1a{height:33.867188pt;}
.h14{height:34.664062pt;}
.h8{height:35.673437pt;}
.h15{height:36.585938pt;}
.h7{height:37.090625pt;}
.hf{height:37.479688pt;}
.h16{height:38.625000pt;}
.h2d{height:38.672812pt;}
.h5{height:41.112500pt;}
.hc{height:42.944375pt;}
.h29{height:45.920000pt;}
.h22{height:46.080000pt;}
.h2a{height:46.112000pt;}
.h25{height:46.912000pt;}
.h9{height:52.832812pt;}
.he{height:52.834688pt;}
.h1e{height:54.390938pt;}
.h1c{height:56.891250pt;}
.h3{height:58.563750pt;}
.h23{height:61.280000pt;}
.h21{height:61.312000pt;}
.h24{height:61.440000pt;}
.h27{height:62.240000pt;}
.h28{height:63.200000pt;}
.h20{height:66.080000pt;}
.h2{height:75.552000pt;}
.h26{height:78.592000pt;}
.h4{height:104.160000pt;}
.hb{height:104.832000pt;}
.h18{height:167.386667pt;}
.h10{height:503.586667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:68.960000pt;}
.w2{width:92.512000pt;}
.wc{width:112.160000pt;}
.we{width:114.432000pt;}
.wd{width:115.552000pt;}
.w7{width:117.952000pt;}
.w12{width:128.992000pt;}
.w11{width:129.152000pt;}
.w10{width:129.280000pt;}
.wa{width:144.800000pt;}
.w14{width:182.586667pt;}
.w15{width:198.266667pt;}
.w13{width:215.546667pt;}
.wf{width:226.586667pt;}
.w16{width:240.346667pt;}
.wb{width:287.746667pt;}
.w5{width:324.866667pt;}
.w6{width:324.893333pt;}
.w8{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.272000pt;}
.xa{left:7.200000pt;}
.x4{left:11.360000pt;}
.x18{left:12.992000pt;}
.x6{left:14.240000pt;}
.xd{left:16.346667pt;}
.x1b{left:17.472000pt;}
.x1a{left:20.192000pt;}
.x19{left:25.792000pt;}
.x12{left:38.912000pt;}
.x20{left:42.432000pt;}
.x13{left:45.152000pt;}
.x21{left:50.752000pt;}
.x11{left:53.472000pt;}
.x1d{left:55.240000pt;}
.x17{left:59.706667pt;}
.x16{left:62.586667pt;}
.x15{left:63.866667pt;}
.x1{left:69.600000pt;}
.x8{left:76.799988pt;}
.x2{left:85.146667pt;}
.x22{left:91.386667pt;}
.x1f{left:94.906667pt;}
.x2f{left:100.831988pt;}
.x14{left:110.746667pt;}
.x5{left:125.640000pt;}
.xf{left:152.826667pt;}
.x3{left:162.106667pt;}
.x10{left:172.866667pt;}
.x1c{left:194.746667pt;}
.xc{left:209.826667pt;}
.x26{left:224.506667pt;}
.xe{left:245.826667pt;}
.x2a{left:249.666655pt;}
.x2d{left:269.026667pt;}
.x25{left:280.546667pt;}
.x27{left:340.866667pt;}
.x2b{left:354.306667pt;}
.x24{left:357.346667pt;}
.xb{left:394.466667pt;}
.x29{left:397.053322pt;}
.x28{left:455.933333pt;}
.x2e{left:467.933333pt;}
.x2c{left:483.933333pt;}
.x9{left:680.933322pt;}
.x7{left:697.253322pt;}
.x1e{left:724.960000pt;}
}




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