
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_893589a82d58346072bf5910.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_bdeee707ac08a0b475174170.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_bc9ff3212edf633ef0b0a4fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_42e7b21adbc6ed9cbaa2151b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_376c16406882b9c6fc897c34.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b30c90e0e900db079437ec7a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_d44dac0d74f994bc7c29af65.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_70ca7696ef305224a6e23424.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-66.960000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls9{letter-spacing:-1.134000px;}
.lsd{letter-spacing:-0.457800px;}
.ls6{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.274800px;}
.ls8{letter-spacing:-0.262200px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.109440px;}
.lsa{letter-spacing:0.152400px;}
.lse{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.262080px;}
.lsc{letter-spacing:0.262200px;}
.lsf{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.720000px;}
.ls12{letter-spacing:6.785280px;}
.ls11{letter-spacing:39.905280px;}
.lsb{letter-spacing:59.345280px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.wsc{word-spacing:-66.240000px;}
.ws8{word-spacing:-28.712400px;}
.ws1{word-spacing:-18.000000px;}
.wsd{word-spacing:-16.865400px;}
.wsf{word-spacing:-16.822200px;}
.wsb{word-spacing:-16.712400px;}
.wse{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.297800px;}
.ws3{word-spacing:-16.254600px;}
.wsa{word-spacing:-15.426000px;}
.ws0{word-spacing:-15.300000px;}
.ws7{word-spacing:-13.939200px;}
.ws6{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._f{margin-left:-2.086080px;}
._1{margin-left:-1.080000px;}
._0{width:1.020000px;}
._2{width:2.486880px;}
._d{width:3.600960px;}
._7{width:4.835520px;}
._8{width:6.363840px;}
._c{width:7.600320px;}
._b{width:8.677440px;}
._6{width:9.737280px;}
._5{width:10.929600px;}
._e{width:11.937840px;}
._10{width:13.182720px;}
._4{width:14.374080px;}
._23{width:15.436800px;}
._1f{width:18.248640px;}
._a{width:19.891200px;}
._9{width:20.952000px;}
._2a{width:22.256640px;}
._11{width:23.362560px;}
._24{width:25.303680px;}
._17{width:26.893440px;}
._16{width:28.072320px;}
._13{width:29.874240px;}
._12{width:30.934080px;}
._18{width:32.253120px;}
._1a{width:34.148160px;}
._20{width:35.931360px;}
._1d{width:36.965280px;}
._1c{width:38.359200px;}
._39{width:39.539040px;}
._2d{width:41.135040px;}
._2e{width:42.426240px;}
._3e{width:43.585920px;}
._3a{width:44.614560px;}
._1e{width:45.639360px;}
._56{width:46.699200px;}
._28{width:47.773440px;}
._32{width:49.944960px;}
._25{width:51.932160px;}
._21{width:52.992000px;}
._22{width:54.154080px;}
._1b{width:56.304000px;}
._19{width:58.510080px;}
._14{width:60.145920px;}
._15{width:61.874400px;}
._3b{width:62.928000px;}
._2b{width:64.152960px;}
._2f{width:67.167360px;}
._37{width:68.425920px;}
._2c{width:69.816960px;}
._48{width:71.737920px;}
._47{width:72.864000px;}
._46{width:75.381120px;}
._44{width:76.705920px;}
._4d{width:77.765760px;}
._5c{width:79.686720px;}
._45{width:81.740160px;}
._38{width:85.714560px;}
._42{width:87.420960px;}
._36{width:91.224960px;}
._33{width:92.491200px;}
._30{width:97.637760px;}
._31{width:98.935200px;}
._34{width:100.949760px;}
._5d{width:104.659200px;}
._40{width:106.513920px;}
._58{width:116.516160px;}
._5b{width:117.840960px;}
._35{width:120.661920px;}
._51{width:123.007680px;}
._26{width:129.168000px;}
._27{width:130.524480px;}
._59{width:132.347520px;}
._4b{width:134.473440px;}
._60{width:139.202880px;}
._41{width:142.598880px;}
._3c{width:149.172480px;}
._3d{width:150.662400px;}
._4a{width:159.373440px;}
._3f{width:168.852000px;}
._52{width:171.296640px;}
._50{width:173.488800px;}
._29{width:181.929120px;}
._49{width:185.641920px;}
._54{width:196.169280px;}
._55{width:199.189920px;}
._5a{width:202.893120px;}
._4e{width:206.735040px;}
._43{width:216.014880px;}
._53{width:222.632640px;}
._5e{width:227.845200px;}
._57{width:230.124000px;}
._4c{width:285.759360px;}
._4f{width:290.992320px;}
._5f{width:361.901760px;}
._3{width:961.680000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc8{color:rgb(255,255,255);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.ybf{bottom:-14.940000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.y8b{bottom:13.500000px;}
.y7f{bottom:13.530000px;}
.y9b{bottom:13.680000px;}
.ya{bottom:20.880000px;}
.y37{bottom:30.600000px;}
.y8a{bottom:41.940000px;}
.ya0{bottom:41.985000px;}
.y9a{bottom:42.165000px;}
.y36{bottom:46.980000px;}
.y38{bottom:48.420000px;}
.y39{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y7{bottom:53.280000px;}
.y35{bottom:63.000000px;}
.y5{bottom:68.976000px;}
.y92{bottom:70.410000px;}
.y89{bottom:70.425000px;}
.yaa{bottom:70.560000px;}
.y99{bottom:70.605000px;}
.yb1{bottom:75.240000px;}
.y34{bottom:79.056000px;}
.y30{bottom:97.596000px;}
.y91{bottom:98.850000px;}
.y88{bottom:98.865000px;}
.ya9{bottom:99.000000px;}
.y98{bottom:99.045000px;}
.yb0{bottom:103.905000px;}
.y69{bottom:104.796000px;}
.y5d{bottom:109.836000px;}
.yc5{bottom:111.636000px;}
.y7d{bottom:112.896000px;}
.y5f{bottom:115.776000px;}
.y6f{bottom:122.076000px;}
.y2f{bottom:126.036000px;}
.y90{bottom:127.290000px;}
.y87{bottom:127.305000px;}
.ya8{bottom:127.470000px;}
.y97{bottom:127.485000px;}
.yaf{bottom:132.345000px;}
.y68{bottom:133.236000px;}
.y5c{bottom:138.456000px;}
.yc4{bottom:140.436000px;}
.y7c{bottom:141.516000px;}
.y6e{bottom:146.916000px;}
.y2e{bottom:154.470000px;}
.y71{bottom:154.650000px;}
.y8f{bottom:155.730000px;}
.y86{bottom:155.745000px;}
.ya7{bottom:155.910000px;}
.y96{bottom:155.925000px;}
.yae{bottom:160.785000px;}
.y67{bottom:162.210000px;}
.y6d{bottom:166.530000px;}
.y5b{bottom:166.890000px;}
.yc3{bottom:168.870000px;}
.y7b{bottom:169.950000px;}
.y2d{bottom:182.550000px;}
.y31{bottom:182.910000px;}
.y8e{bottom:184.170000px;}
.y85{bottom:184.185000px;}
.ya6{bottom:184.350000px;}
.y95{bottom:184.365000px;}
.yb3{bottom:184.710000px;}
.yad{bottom:189.225000px;}
.y66{bottom:191.910000px;}
.y5a{bottom:195.330000px;}
.y7a{bottom:198.390000px;}
.y70{bottom:211.350000px;}
.y8d{bottom:212.610000px;}
.y84{bottom:212.625000px;}
.ya5{bottom:212.790000px;}
.y94{bottom:212.805000px;}
.yb2{bottom:213.330000px;}
.yc2{bottom:213.870000px;}
.y2c{bottom:215.130000px;}
.yac{bottom:217.665000px;}
.y65{bottom:221.430000px;}
.y59{bottom:223.770000px;}
.y79{bottom:226.830000px;}
.yab{bottom:230.070000px;}
.ya4{bottom:241.230000px;}
.y83{bottom:241.245000px;}
.yc1{bottom:243.030000px;}
.y2b{bottom:243.570000px;}
.y64{bottom:250.950000px;}
.y58{bottom:252.210000px;}
.y78{bottom:255.270000px;}
.ya3{bottom:269.670000px;}
.y82{bottom:269.685000px;}
.y2a{bottom:272.010000px;}
.yc0{bottom:272.190000px;}
.y9c{bottom:276.510000px;}
.y63{bottom:279.570000px;}
.y57{bottom:280.650000px;}
.y77{bottom:283.710000px;}
.y93{bottom:292.530000px;}
.ya2{bottom:298.110000px;}
.y81{bottom:298.125000px;}
.y9f{bottom:298.155000px;}
.y29{bottom:300.450000px;}
.ybe{bottom:301.530000px;}
.y62{bottom:308.730000px;}
.y56{bottom:309.090000px;}
.y76{bottom:312.150000px;}
.y9e{bottom:326.595000px;}
.y28{bottom:328.935000px;}
.ybd{bottom:330.735000px;}
.y55{bottom:337.575000px;}
.y75{bottom:340.635000px;}
.yb4{bottom:355.035000px;}
.y27{bottom:357.555000px;}
.ybc{bottom:359.895000px;}
.y54{bottom:366.015000px;}
.y74{bottom:369.075000px;}
.y26{bottom:385.995000px;}
.ybb{bottom:389.235000px;}
.y53{bottom:394.635000px;}
.y73{bottom:397.695000px;}
.y25{bottom:414.435000px;}
.yba{bottom:418.395000px;}
.y52{bottom:423.075000px;}
.y24{bottom:442.875000px;}
.yb9{bottom:447.555000px;}
.y72{bottom:450.615000px;}
.y51{bottom:451.515000px;}
.ya1{bottom:463.755000px;}
.y23{bottom:471.315000px;}
.yb8{bottom:476.715000px;}
.y50{bottom:479.955000px;}
.y22{bottom:499.755000px;}
.yb7{bottom:506.055000px;}
.y4f{bottom:508.395000px;}
.y8c{bottom:521.175000px;}
.y21{bottom:534.135000px;}
.yb6{bottom:535.215000px;}
.y4e{bottom:536.835000px;}
.y20{bottom:556.635000px;}
.y6c{bottom:564.915000px;}
.y4d{bottom:565.275000px;}
.y1f{bottom:591.045000px;}
.y4c{bottom:593.385000px;}
.y5e{bottom:593.745000px;}
.y1e{bottom:613.725000px;}
.y61{bottom:621.825000px;}
.y4b{bottom:622.185000px;}
.y1d{bottom:648.105000px;}
.y4a{bottom:650.805000px;}
.y1c{bottom:670.605000px;}
.y49{bottom:679.245000px;}
.y1b{bottom:704.985000px;}
.y48{bottom:707.685000px;}
.y1a{bottom:727.485000px;}
.yb5{bottom:733.065000px;}
.y47{bottom:736.125000px;}
.y80{bottom:749.625000px;}
.y19{bottom:761.865000px;}
.y46{bottom:764.565000px;}
.y9d{bottom:778.065000px;}
.y18{bottom:784.365000px;}
.y60{bottom:792.645000px;}
.y45{bottom:793.005000px;}
.y17{bottom:818.745000px;}
.y44{bottom:821.490000px;}
.y16{bottom:841.290000px;}
.y43{bottom:849.930000px;}
.y15{bottom:875.850000px;}
.y6b{bottom:878.010000px;}
.y42{bottom:878.370000px;}
.y14{bottom:898.350000px;}
.y41{bottom:906.990000px;}
.y13{bottom:932.730000px;}
.y40{bottom:935.430000px;}
.y12{bottom:955.230000px;}
.y3f{bottom:963.870000px;}
.y11{bottom:989.610000px;}
.y3e{bottom:992.310000px;}
.y10{bottom:1011.750000px;}
.y3d{bottom:1020.750000px;}
.y4{bottom:1032.810000px;}
.y3c{bottom:1049.190000px;}
.y3{bottom:1052.790000px;}
.y7e{bottom:1063.410000px;}
.y2{bottom:1072.620000px;}
.y3b{bottom:1077.660000px;}
.y6a{bottom:1105.740000px;}
.y3a{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1141.740000px;}
.h23{height:28.440000px;}
.h14{height:28.476000px;}
.h24{height:28.620000px;}
.h6{height:33.480000px;}
.hb{height:41.250938px;}
.h12{height:47.901094px;}
.h1{height:48.045938px;}
.hd{height:52.971680px;}
.hc{height:53.709961px;}
.h7{height:54.421875px;}
.h2{height:58.621992px;}
.h10{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.h21{height:65.010972px;}
.h20{height:65.010974px;}
.h1c{height:65.010976px;}
.h1e{height:65.010979px;}
.h1f{height:65.010981px;}
.h22{height:65.010983px;}
.h1d{height:65.010986px;}
.ha{height:66.757500px;}
.h11{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562511px;}
.h13{height:111.043849px;}
.hf{height:111.043854px;}
.h4{height:167.250000px;}
.h1b{height:183.630000px;}
.h16{height:227.550000px;}
.h17{height:227.730000px;}
.h19{height:232.590000px;}
.he{height:268.635000px;}
.h15{height:313.050000px;}
.h18{height:341.535000px;}
.h1a{height:369.975000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w8{width:37.116000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w17{width:45.720000px;}
.w16{width:45.900000px;}
.w18{width:45.936000px;}
.w19{width:46.260000px;}
.we{width:52.056000px;}
.wb{width:80.460000px;}
.wf{width:84.060000px;}
.w11{width:94.500000px;}
.w9{width:136.980000px;}
.w10{width:147.816000px;}
.wa{width:167.790000px;}
.wc{width:174.960000px;}
.w12{width:183.270000px;}
.wd{width:216.435000px;}
.w13{width:237.990000px;}
.w15{width:258.195000px;}
.w14{width:272.550000px;}
.w3{width:361.335000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2{left:53.999986px;}
.xd{left:80.999986px;}
.x12{left:92.196000px;}
.x17{left:107.676000px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.x18{left:192.810000px;}
.x13{left:229.890000px;}
.x1d{left:313.275000px;}
.x19{left:341.715000px;}
.x1e{left:359.895000px;}
.x14{left:398.415000px;}
.x1f{left:406.335000px;}
.x1a{left:437.295000px;}
.x20{left:452.775000px;}
.x15{left:479.805000px;}
.x8{left:482.144986px;}
.x21{left:499.425000px;}
.xc{left:509.144986px;}
.x5{left:521.025000px;}
.x22{left:545.865000px;}
.x1c{left:586.185000px;}
.x23{left:592.305000px;}
.x1b{left:621.645000px;}
.x16{left:655.485000px;}
.x10{left:855.149986px;}
.xf{left:859.829986px;}
.xe{left:864.149986px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls9{letter-spacing:-1.008000pt;}
.lsd{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.244267pt;}
.ls8{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.097280pt;}
.lsa{letter-spacing:0.135467pt;}
.lse{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.232960pt;}
.lsc{letter-spacing:0.233067pt;}
.lsf{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls12{letter-spacing:6.031360pt;}
.ls11{letter-spacing:35.471360pt;}
.lsb{letter-spacing:52.751360pt;}
.ls0{letter-spacing:184.370347pt;}
.wsc{word-spacing:-58.880000pt;}
.ws8{word-spacing:-25.522133pt;}
.ws1{word-spacing:-16.000000pt;}
.wsd{word-spacing:-14.991467pt;}
.wsf{word-spacing:-14.953067pt;}
.wsb{word-spacing:-14.855467pt;}
.wse{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.486933pt;}
.ws3{word-spacing:-14.448533pt;}
.wsa{word-spacing:-13.712000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws7{word-spacing:-12.390400pt;}
.ws6{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._f{margin-left:-1.854293pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.906667pt;}
._2{width:2.210560pt;}
._d{width:3.200853pt;}
._7{width:4.298240pt;}
._8{width:5.656747pt;}
._c{width:6.755840pt;}
._b{width:7.713280pt;}
._6{width:8.655360pt;}
._5{width:9.715200pt;}
._e{width:10.611413pt;}
._10{width:11.717973pt;}
._4{width:12.776960pt;}
._23{width:13.721600pt;}
._1f{width:16.221013pt;}
._a{width:17.681067pt;}
._9{width:18.624000pt;}
._2a{width:19.783680pt;}
._11{width:20.766720pt;}
._24{width:22.492160pt;}
._17{width:23.905280pt;}
._16{width:24.953173pt;}
._13{width:26.554880pt;}
._12{width:27.496960pt;}
._18{width:28.669440pt;}
._1a{width:30.353920pt;}
._20{width:31.938987pt;}
._1d{width:32.858027pt;}
._1c{width:34.097067pt;}
._39{width:35.145813pt;}
._2d{width:36.564480pt;}
._2e{width:37.712213pt;}
._3e{width:38.743040pt;}
._3a{width:39.657387pt;}
._1e{width:40.568320pt;}
._56{width:41.510400pt;}
._28{width:42.465280pt;}
._32{width:44.395520pt;}
._25{width:46.161920pt;}
._21{width:47.104000pt;}
._22{width:48.136960pt;}
._1b{width:50.048000pt;}
._19{width:52.008960pt;}
._14{width:53.463040pt;}
._15{width:54.999467pt;}
._3b{width:55.936000pt;}
._2b{width:57.024853pt;}
._2f{width:59.704320pt;}
._37{width:60.823040pt;}
._2c{width:62.059520pt;}
._48{width:63.767040pt;}
._47{width:64.768000pt;}
._46{width:67.005440pt;}
._44{width:68.183040pt;}
._4d{width:69.125120pt;}
._5c{width:70.832640pt;}
._45{width:72.657920pt;}
._38{width:76.190720pt;}
._42{width:77.707520pt;}
._36{width:81.088853pt;}
._33{width:82.214400pt;}
._30{width:86.789120pt;}
._31{width:87.942400pt;}
._34{width:89.733120pt;}
._5d{width:93.030400pt;}
._40{width:94.679040pt;}
._58{width:103.569920pt;}
._5b{width:104.747520pt;}
._35{width:107.255040pt;}
._51{width:109.340160pt;}
._26{width:114.816000pt;}
._27{width:116.021760pt;}
._59{width:117.642240pt;}
._4b{width:119.531947pt;}
._60{width:123.735893pt;}
._41{width:126.754560pt;}
._3c{width:132.597760pt;}
._3d{width:133.922133pt;}
._4a{width:141.665280pt;}
._3f{width:150.090667pt;}
._52{width:152.263680pt;}
._50{width:154.212267pt;}
._29{width:161.714773pt;}
._49{width:165.015040pt;}
._54{width:174.372693pt;}
._55{width:177.057707pt;}
._5a{width:180.349440pt;}
._4e{width:183.764480pt;}
._43{width:192.013227pt;}
._53{width:197.895680pt;}
._5e{width:202.529067pt;}
._57{width:204.554667pt;}
._4c{width:254.008320pt;}
._4f{width:258.659840pt;}
._5f{width:321.690453pt;}
._3{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.ybf{bottom:-13.280000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.y8b{bottom:12.000000pt;}
.y7f{bottom:12.026667pt;}
.y9b{bottom:12.160000pt;}
.ya{bottom:18.560000pt;}
.y37{bottom:27.200000pt;}
.y8a{bottom:37.280000pt;}
.ya0{bottom:37.320000pt;}
.y9a{bottom:37.480000pt;}
.y36{bottom:41.760000pt;}
.y38{bottom:43.040000pt;}
.y39{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y7{bottom:47.360000pt;}
.y35{bottom:56.000000pt;}
.y5{bottom:61.312000pt;}
.y92{bottom:62.586667pt;}
.y89{bottom:62.600000pt;}
.yaa{bottom:62.720000pt;}
.y99{bottom:62.760000pt;}
.yb1{bottom:66.880000pt;}
.y34{bottom:70.272000pt;}
.y30{bottom:86.752000pt;}
.y91{bottom:87.866667pt;}
.y88{bottom:87.880000pt;}
.ya9{bottom:88.000000pt;}
.y98{bottom:88.040000pt;}
.yb0{bottom:92.360000pt;}
.y69{bottom:93.152000pt;}
.y5d{bottom:97.632000pt;}
.yc5{bottom:99.232000pt;}
.y7d{bottom:100.352000pt;}
.y5f{bottom:102.912000pt;}
.y6f{bottom:108.512000pt;}
.y2f{bottom:112.032000pt;}
.y90{bottom:113.146667pt;}
.y87{bottom:113.160000pt;}
.ya8{bottom:113.306667pt;}
.y97{bottom:113.320000pt;}
.yaf{bottom:117.640000pt;}
.y68{bottom:118.432000pt;}
.y5c{bottom:123.072000pt;}
.yc4{bottom:124.832000pt;}
.y7c{bottom:125.792000pt;}
.y6e{bottom:130.592000pt;}
.y2e{bottom:137.306667pt;}
.y71{bottom:137.466667pt;}
.y8f{bottom:138.426667pt;}
.y86{bottom:138.440000pt;}
.ya7{bottom:138.586667pt;}
.y96{bottom:138.600000pt;}
.yae{bottom:142.920000pt;}
.y67{bottom:144.186667pt;}
.y6d{bottom:148.026667pt;}
.y5b{bottom:148.346667pt;}
.yc3{bottom:150.106667pt;}
.y7b{bottom:151.066667pt;}
.y2d{bottom:162.266667pt;}
.y31{bottom:162.586667pt;}
.y8e{bottom:163.706667pt;}
.y85{bottom:163.720000pt;}
.ya6{bottom:163.866667pt;}
.y95{bottom:163.880000pt;}
.yb3{bottom:164.186667pt;}
.yad{bottom:168.200000pt;}
.y66{bottom:170.586667pt;}
.y5a{bottom:173.626667pt;}
.y7a{bottom:176.346667pt;}
.y70{bottom:187.866667pt;}
.y8d{bottom:188.986667pt;}
.y84{bottom:189.000000pt;}
.ya5{bottom:189.146667pt;}
.y94{bottom:189.160000pt;}
.yb2{bottom:189.626667pt;}
.yc2{bottom:190.106667pt;}
.y2c{bottom:191.226667pt;}
.yac{bottom:193.480000pt;}
.y65{bottom:196.826667pt;}
.y59{bottom:198.906667pt;}
.y79{bottom:201.626667pt;}
.yab{bottom:204.506667pt;}
.ya4{bottom:214.426667pt;}
.y83{bottom:214.440000pt;}
.yc1{bottom:216.026667pt;}
.y2b{bottom:216.506667pt;}
.y64{bottom:223.066667pt;}
.y58{bottom:224.186667pt;}
.y78{bottom:226.906667pt;}
.ya3{bottom:239.706667pt;}
.y82{bottom:239.720000pt;}
.y2a{bottom:241.786667pt;}
.yc0{bottom:241.946667pt;}
.y9c{bottom:245.786667pt;}
.y63{bottom:248.506667pt;}
.y57{bottom:249.466667pt;}
.y77{bottom:252.186667pt;}
.y93{bottom:260.026667pt;}
.ya2{bottom:264.986667pt;}
.y81{bottom:265.000000pt;}
.y9f{bottom:265.026667pt;}
.y29{bottom:267.066667pt;}
.ybe{bottom:268.026667pt;}
.y62{bottom:274.426667pt;}
.y56{bottom:274.746667pt;}
.y76{bottom:277.466667pt;}
.y9e{bottom:290.306667pt;}
.y28{bottom:292.386667pt;}
.ybd{bottom:293.986667pt;}
.y55{bottom:300.066667pt;}
.y75{bottom:302.786667pt;}
.yb4{bottom:315.586667pt;}
.y27{bottom:317.826667pt;}
.ybc{bottom:319.906667pt;}
.y54{bottom:325.346667pt;}
.y74{bottom:328.066667pt;}
.y26{bottom:343.106667pt;}
.ybb{bottom:345.986667pt;}
.y53{bottom:350.786667pt;}
.y73{bottom:353.506667pt;}
.y25{bottom:368.386667pt;}
.yba{bottom:371.906667pt;}
.y52{bottom:376.066667pt;}
.y24{bottom:393.666667pt;}
.yb9{bottom:397.826667pt;}
.y72{bottom:400.546667pt;}
.y51{bottom:401.346667pt;}
.ya1{bottom:412.226667pt;}
.y23{bottom:418.946667pt;}
.yb8{bottom:423.746667pt;}
.y50{bottom:426.626667pt;}
.y22{bottom:444.226667pt;}
.yb7{bottom:449.826667pt;}
.y4f{bottom:451.906667pt;}
.y8c{bottom:463.266667pt;}
.y21{bottom:474.786667pt;}
.yb6{bottom:475.746667pt;}
.y4e{bottom:477.186667pt;}
.y20{bottom:494.786667pt;}
.y6c{bottom:502.146667pt;}
.y4d{bottom:502.466667pt;}
.y1f{bottom:525.373333pt;}
.y4c{bottom:527.453333pt;}
.y5e{bottom:527.773333pt;}
.y1e{bottom:545.533333pt;}
.y61{bottom:552.733333pt;}
.y4b{bottom:553.053333pt;}
.y1d{bottom:576.093333pt;}
.y4a{bottom:578.493333pt;}
.y1c{bottom:596.093333pt;}
.y49{bottom:603.773333pt;}
.y1b{bottom:626.653333pt;}
.y48{bottom:629.053333pt;}
.y1a{bottom:646.653333pt;}
.yb5{bottom:651.613333pt;}
.y47{bottom:654.333333pt;}
.y80{bottom:666.333333pt;}
.y19{bottom:677.213333pt;}
.y46{bottom:679.613333pt;}
.y9d{bottom:691.613333pt;}
.y18{bottom:697.213333pt;}
.y60{bottom:704.573333pt;}
.y45{bottom:704.893333pt;}
.y17{bottom:727.773333pt;}
.y44{bottom:730.213333pt;}
.y16{bottom:747.813333pt;}
.y43{bottom:755.493333pt;}
.y15{bottom:778.533333pt;}
.y6b{bottom:780.453333pt;}
.y42{bottom:780.773333pt;}
.y14{bottom:798.533333pt;}
.y41{bottom:806.213333pt;}
.y13{bottom:829.093333pt;}
.y40{bottom:831.493333pt;}
.y12{bottom:849.093333pt;}
.y3f{bottom:856.773333pt;}
.y11{bottom:879.653333pt;}
.y3e{bottom:882.053333pt;}
.y10{bottom:899.333333pt;}
.y3d{bottom:907.333333pt;}
.y4{bottom:918.053333pt;}
.y3c{bottom:932.613333pt;}
.y3{bottom:935.813333pt;}
.y7e{bottom:945.253333pt;}
.y2{bottom:953.440000pt;}
.y3b{bottom:957.920000pt;}
.y6a{bottom:982.880000pt;}
.y3a{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1014.880000pt;}
.h23{height:25.280000pt;}
.h14{height:25.312000pt;}
.h24{height:25.440000pt;}
.h6{height:29.760000pt;}
.hb{height:36.667500pt;}
.h12{height:42.578750pt;}
.h1{height:42.707500pt;}
.hd{height:47.085938pt;}
.hc{height:47.742188pt;}
.h7{height:48.375000pt;}
.h2{height:52.108438pt;}
.h10{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.h21{height:57.787531pt;}
.h20{height:57.787532pt;}
.h1c{height:57.787534pt;}
.h1e{height:57.787537pt;}
.h1f{height:57.787538pt;}
.h22{height:57.787540pt;}
.h1d{height:57.787543pt;}
.ha{height:59.340000pt;}
.h11{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500010pt;}
.h13{height:98.705643pt;}
.hf{height:98.705648pt;}
.h4{height:148.666667pt;}
.h1b{height:163.226667pt;}
.h16{height:202.266667pt;}
.h17{height:202.426667pt;}
.h19{height:206.746667pt;}
.he{height:238.786667pt;}
.h15{height:278.266667pt;}
.h18{height:303.586667pt;}
.h1a{height:328.866667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w8{width:32.992000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w17{width:40.640000pt;}
.w16{width:40.800000pt;}
.w18{width:40.832000pt;}
.w19{width:41.120000pt;}
.we{width:46.272000pt;}
.wb{width:71.520000pt;}
.wf{width:74.720000pt;}
.w11{width:84.000000pt;}
.w9{width:121.760000pt;}
.w10{width:131.392000pt;}
.wa{width:149.146667pt;}
.wc{width:155.520000pt;}
.w12{width:162.906667pt;}
.wd{width:192.386667pt;}
.w13{width:211.546667pt;}
.w15{width:229.506667pt;}
.w14{width:242.266667pt;}
.w3{width:321.186667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2{left:47.999988pt;}
.xd{left:71.999988pt;}
.x12{left:81.952000pt;}
.x17{left:95.712000pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.x18{left:171.386667pt;}
.x13{left:204.346667pt;}
.x1d{left:278.466667pt;}
.x19{left:303.746667pt;}
.x1e{left:319.906667pt;}
.x14{left:354.146667pt;}
.x1f{left:361.186667pt;}
.x1a{left:388.706667pt;}
.x20{left:402.466667pt;}
.x15{left:426.493333pt;}
.x8{left:428.573321pt;}
.x21{left:443.933333pt;}
.xc{left:452.573321pt;}
.x5{left:463.133333pt;}
.x22{left:485.213333pt;}
.x1c{left:521.053333pt;}
.x23{left:526.493333pt;}
.x1b{left:552.573333pt;}
.x16{left:582.653333pt;}
.x10{left:760.133321pt;}
.xf{left:764.293321pt;}
.xe{left:768.133321pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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