
    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_7eef7a72b2e16718373a697b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7dab4512c912d9403f834fa4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d0a983839943201cc9888f40.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_aad2d5dba2a17dc0438f9717.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_5071c93095aa2758b8f1b193.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_b293accf3f3ced9306d5fd9c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_e8634655866f2a30ed6eaca4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_5645dead0f91dc5453a0cbf7.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_65e102f4349921481a9bfafc.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_e09415e789f8ce5ddd029436.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ba89a6fe7bf85a1b9c420a6a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e65becc28a12c558a1a7c6a3.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_572a24c9dbc159473feaac97.woff2')format("woff");}.fff{font-family:fff;line-height:0.934082;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:ff10;src:url('chunks/assets/font_597d4b711eb7b680b1b770bf.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff11{font-family:ff11;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls7{letter-spacing:-0.127200px;}
.ls8{letter-spacing:-0.038160px;}
.ls6{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls4{letter-spacing:0.174240px;}
.lsb{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.lse{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.786240px;}
.lsf{letter-spacing:16.506720px;}
.lsd{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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.wsa{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.wsb{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.505760px;}
.ws5{word-spacing:-12.854880px;}
.ws6{word-spacing:-12.816720px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._1d{margin-left:-7.865760px;}
._19{margin-left:-6.634080px;}
._4{margin-left:-5.557680px;}
._5{margin-left:-4.499040px;}
._2{margin-left:-3.132000px;}
._3{margin-left:-2.082240px;}
._0{margin-left:-1.080000px;}
._1{width:1.020000px;}
._6{width:2.155440px;}
._d{width:3.345840px;}
._12{width:4.635600px;}
._9{width:5.792640px;}
._8{width:6.818640px;}
._7{width:7.946880px;}
._17{width:8.962320px;}
._a{width:10.334400px;}
._15{width:11.541840px;}
._14{width:13.083360px;}
._13{width:16.673040px;}
._e{width:17.773200px;}
._11{width:19.656960px;}
._16{width:21.869520px;}
._c{width:23.309040px;}
._b{width:24.319680px;}
._18{width:25.886880px;}
._f{width:39.441600px;}
._10{width:40.684320px;}
._1c{width:43.031520px;}
._1b{width:56.582880px;}
._1a{width:57.963120px;}
.fc5{color:rgb(227,108,10);}
.fc6{color:rgb(47,84,150);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc8{color:rgb(27,27,27);}
.fc7{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y47{bottom:3.240000px;}
.yc0{bottom:3.270000px;}
.y3{bottom:3.600000px;}
.y4c{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y4a{bottom:10.620000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.316000px;}
.y2{bottom:20.196000px;}
.y46{bottom:20.520000px;}
.y4b{bottom:22.320000px;}
.y18{bottom:23.985000px;}
.y49{bottom:25.200000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.680000px;}
.y45{bottom:37.845000px;}
.y17{bottom:40.365000px;}
.ya{bottom:46.620000px;}
.y1{bottom:54.180000px;}
.y44{bottom:55.125000px;}
.y16{bottom:56.925000px;}
.y43{bottom:72.405000px;}
.y9{bottom:73.470000px;}
.y15{bottom:73.485000px;}
.y14{bottom:85.725000px;}
.y42{bottom:89.505000px;}
.y8{bottom:93.090000px;}
.y13{bottom:101.025000px;}
.y56{bottom:103.356000px;}
.y95{bottom:104.796000px;}
.y41{bottom:106.785000px;}
.ybd{bottom:110.736000px;}
.y7{bottom:111.450000px;}
.y12{bottom:120.105000px;}
.y55{bottom:120.456000px;}
.y94{bottom:122.076000px;}
.y40{bottom:124.065000px;}
.ybc{bottom:128.016000px;}
.yf9{bottom:133.416000px;}
.y54{bottom:137.736000px;}
.y93{bottom:139.356000px;}
.y3f{bottom:141.345000px;}
.ybb{bottom:145.296000px;}
.y11{bottom:145.845000px;}
.yf8{bottom:150.510000px;}
.y53{bottom:155.010000px;}
.y92{bottom:156.630000px;}
.y3e{bottom:158.625000px;}
.yba{bottom:162.570000px;}
.yf7{bottom:167.790000px;}
.y10{bottom:170.145000px;}
.y52{bottom:172.290000px;}
.y91{bottom:173.910000px;}
.y3d{bottom:175.905000px;}
.yb9{bottom:179.850000px;}
.yf6{bottom:185.070000px;}
.y51{bottom:189.570000px;}
.y90{bottom:191.010000px;}
.y3c{bottom:193.005000px;}
.yb8{bottom:194.610000px;}
.yf5{bottom:202.350000px;}
.y50{bottom:206.850000px;}
.y8f{bottom:208.290000px;}
.y3b{bottom:210.285000px;}
.yb7{bottom:212.610000px;}
.yf4{bottom:219.630000px;}
.y4f{bottom:223.950000px;}
.y8e{bottom:225.570000px;}
.y3a{bottom:227.565000px;}
.yb6{bottom:230.610000px;}
.yf3{bottom:236.910000px;}
.y4e{bottom:241.230000px;}
.y8d{bottom:242.850000px;}
.y39{bottom:244.845000px;}
.yb5{bottom:248.610000px;}
.yf2{bottom:254.010000px;}
.y4d{bottom:258.510000px;}
.y8c{bottom:260.130000px;}
.y38{bottom:262.125000px;}
.yb4{bottom:266.610000px;}
.yf1{bottom:271.290000px;}
.y29{bottom:271.845000px;}
.y48{bottom:272.550000px;}
.y8b{bottom:277.410000px;}
.y37{bottom:279.405000px;}
.yb3{bottom:284.610000px;}
.y28{bottom:286.965000px;}
.yf0{bottom:288.570000px;}
.y8a{bottom:294.510000px;}
.y36{bottom:296.535000px;}
.yb2{bottom:302.610000px;}
.y27{bottom:304.455000px;}
.yef{bottom:305.850000px;}
.y1b{bottom:309.090000px;}
.y89{bottom:311.790000px;}
.y35{bottom:313.815000px;}
.y26{bottom:321.735000px;}
.yee{bottom:323.130000px;}
.yb1{bottom:323.850000px;}
.y88{bottom:329.070000px;}
.y34{bottom:331.095000px;}
.y25{bottom:339.195000px;}
.yed{bottom:340.275000px;}
.yb0{bottom:341.175000px;}
.y87{bottom:346.395000px;}
.y33{bottom:348.375000px;}
.y24{bottom:356.655000px;}
.yec{bottom:357.555000px;}
.yaf{bottom:358.275000px;}
.y86{bottom:363.675000px;}
.y32{bottom:365.655000px;}
.y23{bottom:373.935000px;}
.yeb{bottom:374.835000px;}
.yae{bottom:375.555000px;}
.y85{bottom:380.775000px;}
.y31{bottom:382.935000px;}
.y22{bottom:391.395000px;}
.yea{bottom:392.115000px;}
.yad{bottom:392.835000px;}
.y84{bottom:398.055000px;}
.y30{bottom:400.035000px;}
.y21{bottom:408.855000px;}
.ye9{bottom:409.395000px;}
.yac{bottom:410.115000px;}
.y83{bottom:415.335000px;}
.y2f{bottom:417.315000px;}
.y20{bottom:426.135000px;}
.ye8{bottom:426.675000px;}
.yab{bottom:427.395000px;}
.y82{bottom:432.615000px;}
.y2e{bottom:434.595000px;}
.y1f{bottom:443.595000px;}
.ye7{bottom:443.775000px;}
.yaa{bottom:444.495000px;}
.y81{bottom:449.895000px;}
.y2d{bottom:451.875000px;}
.ya9{bottom:458.535000px;}
.y1e{bottom:461.055000px;}
.y80{bottom:467.175000px;}
.y2c{bottom:469.155000px;}
.ye6{bottom:478.335000px;}
.y7f{bottom:484.275000px;}
.y2b{bottom:486.255000px;}
.y1d{bottom:488.595000px;}
.ye5{bottom:495.615000px;}
.y7e{bottom:501.555000px;}
.y2a{bottom:503.535000px;}
.y1c{bottom:506.235000px;}
.ye4{bottom:512.895000px;}
.y7d{bottom:518.835000px;}
.ye3{bottom:530.175000px;}
.y7c{bottom:536.115000px;}
.ye2{bottom:547.275000px;}
.y7b{bottom:553.395000px;}
.ye1{bottom:564.555000px;}
.y7a{bottom:570.675000px;}
.ye0{bottom:581.835000px;}
.y79{bottom:587.775000px;}
.ydf{bottom:599.115000px;}
.y78{bottom:605.085000px;}
.yde{bottom:616.425000px;}
.yfb{bottom:621.285000px;}
.y77{bottom:622.365000px;}
.ydd{bottom:633.705000px;}
.yfa{bottom:639.285000px;}
.y76{bottom:639.645000px;}
.ydc{bottom:650.805000px;}
.y75{bottom:656.925000px;}
.ydb{bottom:668.085000px;}
.y74{bottom:674.025000px;}
.yda{bottom:685.365000px;}
.y73{bottom:691.305000px;}
.yd9{bottom:702.645000px;}
.y72{bottom:708.585000px;}
.yd8{bottom:719.925000px;}
.y71{bottom:725.865000px;}
.ya8{bottom:731.805000px;}
.yd7{bottom:737.025000px;}
.y70{bottom:743.145000px;}
.ya7{bottom:746.565000px;}
.yd6{bottom:754.305000px;}
.y6f{bottom:760.425000px;}
.ya6{bottom:764.565000px;}
.yd5{bottom:771.585000px;}
.y6e{bottom:777.525000px;}
.ya5{bottom:782.565000px;}
.yd4{bottom:788.865000px;}
.y6d{bottom:794.805000px;}
.ya4{bottom:800.565000px;}
.yd3{bottom:806.145000px;}
.y6c{bottom:812.085000px;}
.ya3{bottom:818.565000px;}
.yd2{bottom:823.425000px;}
.y19{bottom:826.665000px;}
.y6b{bottom:829.365000px;}
.ya2{bottom:836.565000px;}
.yd1{bottom:840.525000px;}
.y6a{bottom:846.645000px;}
.ya1{bottom:854.565000px;}
.yf{bottom:856.185000px;}
.yd0{bottom:857.805000px;}
.y69{bottom:863.925000px;}
.ycf{bottom:875.130000px;}
.ya0{bottom:875.850000px;}
.y68{bottom:881.070000px;}
.yce{bottom:892.410000px;}
.y9f{bottom:893.130000px;}
.y67{bottom:898.350000px;}
.ycd{bottom:909.690000px;}
.y9e{bottom:910.410000px;}
.y66{bottom:915.630000px;}
.ycc{bottom:926.970000px;}
.y9d{bottom:927.690000px;}
.y65{bottom:932.910000px;}
.ycb{bottom:944.070000px;}
.y9c{bottom:944.970000px;}
.y64{bottom:950.190000px;}
.yca{bottom:961.350000px;}
.y9b{bottom:962.070000px;}
.y63{bottom:967.470000px;}
.y9a{bottom:976.830000px;}
.yc9{bottom:978.630000px;}
.y62{bottom:984.570000px;}
.y99{bottom:994.830000px;}
.yc8{bottom:995.910000px;}
.y61{bottom:1001.850000px;}
.y98{bottom:1012.830000px;}
.yc7{bottom:1013.190000px;}
.y60{bottom:1019.130000px;}
.yc6{bottom:1030.290000px;}
.y97{bottom:1030.830000px;}
.y5f{bottom:1036.410000px;}
.yd{bottom:1041.450000px;}
.yc5{bottom:1045.050000px;}
.y96{bottom:1048.830000px;}
.y5e{bottom:1053.690000px;}
.yc4{bottom:1063.050000px;}
.y6{bottom:1066.830000px;}
.y5d{bottom:1070.790000px;}
.yc3{bottom:1081.050000px;}
.y5c{bottom:1088.070000px;}
.yc2{bottom:1099.050000px;}
.y5b{bottom:1105.350000px;}
.yc1{bottom:1117.050000px;}
.y5a{bottom:1122.630000px;}
.ybf{bottom:1135.050000px;}
.y59{bottom:1139.940000px;}
.ybe{bottom:1153.080000px;}
.y58{bottom:1157.220000px;}
.y57{bottom:1174.320000px;}
.h1d{height:17.280000px;}
.h1e{height:17.316000px;}
.hb{height:25.020000px;}
.h11{height:28.968750px;}
.h12{height:29.520000px;}
.h2{height:32.976000px;}
.h8{height:36.180000px;}
.h1b{height:36.540000px;}
.h18{height:38.818125px;}
.h1a{height:41.726953px;}
.h19{height:42.164648px;}
.h1f{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1c{height:48.088125px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:185.250000px;}
.h14{height:517.575000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.we{width:144.360000px;}
.w5{width:151.950000px;}
.wd{width:154.470000px;}
.wa{width:185.970000px;}
.wb{width:186.150000px;}
.w8{width:223.275000px;}
.wc{width:290.955000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x14{left:12.600000px;}
.xe{left:21.636000px;}
.xf{left:43.236000px;}
.xc{left:44.676000px;}
.x11{left:46.656000px;}
.x10{left:55.296000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x21{left:108.035987px;}
.xd{left:133.950000px;}
.x22{left:135.035987px;}
.x12{left:215.175000px;}
.x6{left:224.850000px;}
.x15{left:252.929987px;}
.x16{left:260.130000px;}
.x9{left:288.435000px;}
.x13{left:296.175000px;}
.x1c{left:305.354987px;}
.x1b{left:309.674987px;}
.x1d{left:321.194987px;}
.x7{left:348.195000px;}
.x19{left:349.274987px;}
.x1e{left:364.935000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x17{left:446.835000px;}
.xa{left:455.700000px;}
.x1f{left:520.125000px;}
.x18{left:633.705000px;}
.x20{left:675.510000px;}
.x1a{left:732.929987px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls7{letter-spacing:-0.113067pt;}
.ls8{letter-spacing:-0.033920pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls4{letter-spacing:0.154880pt;}
.lsb{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698880pt;}
.lsf{letter-spacing:14.672640pt;}
.lsd{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.wsa{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.426560pt;}
.ws6{word-spacing:-11.392640pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._1d{margin-left:-6.991787pt;}
._19{margin-left:-5.896960pt;}
._4{margin-left:-4.940160pt;}
._5{margin-left:-3.999147pt;}
._2{margin-left:-2.784000pt;}
._3{margin-left:-1.850880pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.906667pt;}
._6{width:1.915947pt;}
._d{width:2.974080pt;}
._12{width:4.120533pt;}
._9{width:5.149013pt;}
._8{width:6.061013pt;}
._7{width:7.063893pt;}
._17{width:7.966507pt;}
._a{width:9.186133pt;}
._15{width:10.259413pt;}
._14{width:11.629653pt;}
._13{width:14.820480pt;}
._e{width:15.798400pt;}
._11{width:17.472853pt;}
._16{width:19.439573pt;}
._c{width:20.719147pt;}
._b{width:21.617493pt;}
._18{width:23.010560pt;}
._f{width:35.059200pt;}
._10{width:36.163840pt;}
._1c{width:38.250240pt;}
._1b{width:50.295893pt;}
._1a{width:51.522773pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:2.880000pt;}
.yc0{bottom:2.906667pt;}
.y3{bottom:3.200000pt;}
.y4c{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y4a{bottom:9.440000pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.392000pt;}
.y2{bottom:17.952000pt;}
.y46{bottom:18.240000pt;}
.y4b{bottom:19.840000pt;}
.y18{bottom:21.320000pt;}
.y49{bottom:22.400000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:28.160000pt;}
.y45{bottom:33.640000pt;}
.y17{bottom:35.880000pt;}
.ya{bottom:41.440000pt;}
.y1{bottom:48.160000pt;}
.y44{bottom:49.000000pt;}
.y16{bottom:50.600000pt;}
.y43{bottom:64.360000pt;}
.y9{bottom:65.306667pt;}
.y15{bottom:65.320000pt;}
.y14{bottom:76.200000pt;}
.y42{bottom:79.560000pt;}
.y8{bottom:82.746667pt;}
.y13{bottom:89.800000pt;}
.y56{bottom:91.872000pt;}
.y95{bottom:93.152000pt;}
.y41{bottom:94.920000pt;}
.ybd{bottom:98.432000pt;}
.y7{bottom:99.066667pt;}
.y12{bottom:106.760000pt;}
.y55{bottom:107.072000pt;}
.y94{bottom:108.512000pt;}
.y40{bottom:110.280000pt;}
.ybc{bottom:113.792000pt;}
.yf9{bottom:118.592000pt;}
.y54{bottom:122.432000pt;}
.y93{bottom:123.872000pt;}
.y3f{bottom:125.640000pt;}
.ybb{bottom:129.152000pt;}
.y11{bottom:129.640000pt;}
.yf8{bottom:133.786667pt;}
.y53{bottom:137.786667pt;}
.y92{bottom:139.226667pt;}
.y3e{bottom:141.000000pt;}
.yba{bottom:144.506667pt;}
.yf7{bottom:149.146667pt;}
.y10{bottom:151.240000pt;}
.y52{bottom:153.146667pt;}
.y91{bottom:154.586667pt;}
.y3d{bottom:156.360000pt;}
.yb9{bottom:159.866667pt;}
.yf6{bottom:164.506667pt;}
.y51{bottom:168.506667pt;}
.y90{bottom:169.786667pt;}
.y3c{bottom:171.560000pt;}
.yb8{bottom:172.986667pt;}
.yf5{bottom:179.866667pt;}
.y50{bottom:183.866667pt;}
.y8f{bottom:185.146667pt;}
.y3b{bottom:186.920000pt;}
.yb7{bottom:188.986667pt;}
.yf4{bottom:195.226667pt;}
.y4f{bottom:199.066667pt;}
.y8e{bottom:200.506667pt;}
.y3a{bottom:202.280000pt;}
.yb6{bottom:204.986667pt;}
.yf3{bottom:210.586667pt;}
.y4e{bottom:214.426667pt;}
.y8d{bottom:215.866667pt;}
.y39{bottom:217.640000pt;}
.yb5{bottom:220.986667pt;}
.yf2{bottom:225.786667pt;}
.y4d{bottom:229.786667pt;}
.y8c{bottom:231.226667pt;}
.y38{bottom:233.000000pt;}
.yb4{bottom:236.986667pt;}
.yf1{bottom:241.146667pt;}
.y29{bottom:241.640000pt;}
.y48{bottom:242.266667pt;}
.y8b{bottom:246.586667pt;}
.y37{bottom:248.360000pt;}
.yb3{bottom:252.986667pt;}
.y28{bottom:255.080000pt;}
.yf0{bottom:256.506667pt;}
.y8a{bottom:261.786667pt;}
.y36{bottom:263.586667pt;}
.yb2{bottom:268.986667pt;}
.y27{bottom:270.626667pt;}
.yef{bottom:271.866667pt;}
.y1b{bottom:274.746667pt;}
.y89{bottom:277.146667pt;}
.y35{bottom:278.946667pt;}
.y26{bottom:285.986667pt;}
.yee{bottom:287.226667pt;}
.yb1{bottom:287.866667pt;}
.y88{bottom:292.506667pt;}
.y34{bottom:294.306667pt;}
.y25{bottom:301.506667pt;}
.yed{bottom:302.466667pt;}
.yb0{bottom:303.266667pt;}
.y87{bottom:307.906667pt;}
.y33{bottom:309.666667pt;}
.y24{bottom:317.026667pt;}
.yec{bottom:317.826667pt;}
.yaf{bottom:318.466667pt;}
.y86{bottom:323.266667pt;}
.y32{bottom:325.026667pt;}
.y23{bottom:332.386667pt;}
.yeb{bottom:333.186667pt;}
.yae{bottom:333.826667pt;}
.y85{bottom:338.466667pt;}
.y31{bottom:340.386667pt;}
.y22{bottom:347.906667pt;}
.yea{bottom:348.546667pt;}
.yad{bottom:349.186667pt;}
.y84{bottom:353.826667pt;}
.y30{bottom:355.586667pt;}
.y21{bottom:363.426667pt;}
.ye9{bottom:363.906667pt;}
.yac{bottom:364.546667pt;}
.y83{bottom:369.186667pt;}
.y2f{bottom:370.946667pt;}
.y20{bottom:378.786667pt;}
.ye8{bottom:379.266667pt;}
.yab{bottom:379.906667pt;}
.y82{bottom:384.546667pt;}
.y2e{bottom:386.306667pt;}
.y1f{bottom:394.306667pt;}
.ye7{bottom:394.466667pt;}
.yaa{bottom:395.106667pt;}
.y81{bottom:399.906667pt;}
.y2d{bottom:401.666667pt;}
.ya9{bottom:407.586667pt;}
.y1e{bottom:409.826667pt;}
.y80{bottom:415.266667pt;}
.y2c{bottom:417.026667pt;}
.ye6{bottom:425.186667pt;}
.y7f{bottom:430.466667pt;}
.y2b{bottom:432.226667pt;}
.y1d{bottom:434.306667pt;}
.ye5{bottom:440.546667pt;}
.y7e{bottom:445.826667pt;}
.y2a{bottom:447.586667pt;}
.y1c{bottom:449.986667pt;}
.ye4{bottom:455.906667pt;}
.y7d{bottom:461.186667pt;}
.ye3{bottom:471.266667pt;}
.y7c{bottom:476.546667pt;}
.ye2{bottom:486.466667pt;}
.y7b{bottom:491.906667pt;}
.ye1{bottom:501.826667pt;}
.y7a{bottom:507.266667pt;}
.ye0{bottom:517.186667pt;}
.y79{bottom:522.466667pt;}
.ydf{bottom:532.546667pt;}
.y78{bottom:537.853333pt;}
.yde{bottom:547.933333pt;}
.yfb{bottom:552.253333pt;}
.y77{bottom:553.213333pt;}
.ydd{bottom:563.293333pt;}
.yfa{bottom:568.253333pt;}
.y76{bottom:568.573333pt;}
.ydc{bottom:578.493333pt;}
.y75{bottom:583.933333pt;}
.ydb{bottom:593.853333pt;}
.y74{bottom:599.133333pt;}
.yda{bottom:609.213333pt;}
.y73{bottom:614.493333pt;}
.yd9{bottom:624.573333pt;}
.y72{bottom:629.853333pt;}
.yd8{bottom:639.933333pt;}
.y71{bottom:645.213333pt;}
.ya8{bottom:650.493333pt;}
.yd7{bottom:655.133333pt;}
.y70{bottom:660.573333pt;}
.ya7{bottom:663.613333pt;}
.yd6{bottom:670.493333pt;}
.y6f{bottom:675.933333pt;}
.ya6{bottom:679.613333pt;}
.yd5{bottom:685.853333pt;}
.y6e{bottom:691.133333pt;}
.ya5{bottom:695.613333pt;}
.yd4{bottom:701.213333pt;}
.y6d{bottom:706.493333pt;}
.ya4{bottom:711.613333pt;}
.yd3{bottom:716.573333pt;}
.y6c{bottom:721.853333pt;}
.ya3{bottom:727.613333pt;}
.yd2{bottom:731.933333pt;}
.y19{bottom:734.813333pt;}
.y6b{bottom:737.213333pt;}
.ya2{bottom:743.613333pt;}
.yd1{bottom:747.133333pt;}
.y6a{bottom:752.573333pt;}
.ya1{bottom:759.613333pt;}
.yf{bottom:761.053333pt;}
.yd0{bottom:762.493333pt;}
.y69{bottom:767.933333pt;}
.ycf{bottom:777.893333pt;}
.ya0{bottom:778.533333pt;}
.y68{bottom:783.173333pt;}
.yce{bottom:793.253333pt;}
.y9f{bottom:793.893333pt;}
.y67{bottom:798.533333pt;}
.ycd{bottom:808.613333pt;}
.y9e{bottom:809.253333pt;}
.y66{bottom:813.893333pt;}
.ycc{bottom:823.973333pt;}
.y9d{bottom:824.613333pt;}
.y65{bottom:829.253333pt;}
.ycb{bottom:839.173333pt;}
.y9c{bottom:839.973333pt;}
.y64{bottom:844.613333pt;}
.yca{bottom:854.533333pt;}
.y9b{bottom:855.173333pt;}
.y63{bottom:859.973333pt;}
.y9a{bottom:868.293333pt;}
.yc9{bottom:869.893333pt;}
.y62{bottom:875.173333pt;}
.y99{bottom:884.293333pt;}
.yc8{bottom:885.253333pt;}
.y61{bottom:890.533333pt;}
.y98{bottom:900.293333pt;}
.yc7{bottom:900.613333pt;}
.y60{bottom:905.893333pt;}
.yc6{bottom:915.813333pt;}
.y97{bottom:916.293333pt;}
.y5f{bottom:921.253333pt;}
.yd{bottom:925.733333pt;}
.yc5{bottom:928.933333pt;}
.y96{bottom:932.293333pt;}
.y5e{bottom:936.613333pt;}
.yc4{bottom:944.933333pt;}
.y6{bottom:948.293333pt;}
.y5d{bottom:951.813333pt;}
.yc3{bottom:960.933333pt;}
.y5c{bottom:967.173333pt;}
.yc2{bottom:976.933333pt;}
.y5b{bottom:982.533333pt;}
.yc1{bottom:992.933333pt;}
.y5a{bottom:997.893333pt;}
.ybf{bottom:1008.933333pt;}
.y59{bottom:1013.280000pt;}
.ybe{bottom:1024.960000pt;}
.y58{bottom:1028.640000pt;}
.y57{bottom:1043.840000pt;}
.h1d{height:15.360000pt;}
.h1e{height:15.392000pt;}
.hb{height:22.240000pt;}
.h11{height:25.750000pt;}
.h12{height:26.240000pt;}
.h2{height:29.312000pt;}
.h8{height:32.160000pt;}
.h1b{height:32.480000pt;}
.h18{height:34.505000pt;}
.h1a{height:37.090625pt;}
.h19{height:37.479688pt;}
.h1f{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1c{height:42.745000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:164.666667pt;}
.h14{height:460.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.we{width:128.320000pt;}
.w5{width:135.066667pt;}
.wd{width:137.306667pt;}
.wa{width:165.306667pt;}
.wb{width:165.466667pt;}
.w8{width:198.466667pt;}
.wc{width:258.626667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x14{left:11.200000pt;}
.xe{left:19.232000pt;}
.xf{left:38.432000pt;}
.xc{left:39.712000pt;}
.x11{left:41.472000pt;}
.x10{left:49.152000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x21{left:96.031988pt;}
.xd{left:119.066667pt;}
.x22{left:120.031988pt;}
.x12{left:191.266667pt;}
.x6{left:199.866667pt;}
.x15{left:224.826655pt;}
.x16{left:231.226667pt;}
.x9{left:256.386667pt;}
.x13{left:263.266667pt;}
.x1c{left:271.426655pt;}
.x1b{left:275.266655pt;}
.x1d{left:285.506655pt;}
.x7{left:309.506667pt;}
.x19{left:310.466655pt;}
.x1e{left:324.386667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x17{left:397.186667pt;}
.xa{left:405.066667pt;}
.x1f{left:462.333333pt;}
.x18{left:563.293333pt;}
.x20{left:600.453333pt;}
.x1a{left:651.493322pt;}
.x3{left:663.013333pt;}
}




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