
    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_02ec64f494bdb1cdc4ddc7cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.854004;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_536639164aeb0418b2a7d027.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.417000;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_5fed42d1449b49305a8ec45c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.428000;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_e1eaa478e11cdefbcb01334a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.415000;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_c7a94851f6531d7b306eced3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9145dcaa1cb982f12c94d91d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.975586;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_cd35faae821655d6141bb355.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_6290358c0cdde596232269b8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.454000;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);}
.v5{vertical-align:-13.679901px;}
.v6{vertical-align:-12.240009px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.160184px;}
.v7{vertical-align:12.959883px;}
.v3{vertical-align:36.720153px;}
.v4{vertical-align:44.639923px;}
.v2{vertical-align:50.400054px;}
.v9{vertical-align:58.320099px;}
.v8{vertical-align:65.519991px;}
.va{vertical-align:113.759995px;}
.ls8{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.021423px;}
.ls2f{letter-spacing:0.021562px;}
.ls27{letter-spacing:0.021697px;}
.ls35{letter-spacing:0.031734px;}
.ls36{letter-spacing:0.068796px;}
.ls1c{letter-spacing:0.122567px;}
.lsb{letter-spacing:0.122697px;}
.ls10{letter-spacing:0.122701px;}
.ls13{letter-spacing:0.147804px;}
.ls26{letter-spacing:0.151635px;}
.ls21{letter-spacing:0.259220px;}
.ls2a{letter-spacing:0.316195px;}
.ls5{letter-spacing:0.316334px;}
.lsf{letter-spacing:0.324808px;}
.lsa{letter-spacing:0.333416px;}
.ls9{letter-spacing:0.340920px;}
.ls1f{letter-spacing:0.378731px;}
.ls2{letter-spacing:0.378735px;}
.ls2d{letter-spacing:0.396043px;}
.ls20{letter-spacing:0.398558px;}
.ls1d{letter-spacing:0.398693px;}
.lsc{letter-spacing:0.398698px;}
.ls22{letter-spacing:0.452806px;}
.ls2e{letter-spacing:0.452941px;}
.ls18{letter-spacing:0.497032px;}
.ls1b{letter-spacing:0.532651px;}
.ls1a{letter-spacing:0.661010px;}
.ls40{letter-spacing:0.666077px;}
.ls12{letter-spacing:1.124713px;}
.ls31{letter-spacing:1.124848px;}
.ls30{letter-spacing:1.224995px;}
.ls1e{letter-spacing:1.374703px;}
.lsd{letter-spacing:1.374838px;}
.ls23{letter-spacing:1.965436px;}
.ls3e{letter-spacing:1.965441px;}
.ls3f{letter-spacing:2.080758px;}
.lse{letter-spacing:2.190859px;}
.ls3d{letter-spacing:2.356249px;}
.ls3a{letter-spacing:2.356384px;}
.ls11{letter-spacing:2.386488px;}
.ls7{letter-spacing:2.825734px;}
.ls19{letter-spacing:2.825869px;}
.ls34{letter-spacing:3.199185px;}
.ls17{letter-spacing:3.545887px;}
.ls25{letter-spacing:3.551458px;}
.ls33{letter-spacing:4.271336px;}
.ls15{letter-spacing:14.896951px;}
.ls28{letter-spacing:17.149203px;}
.ls14{letter-spacing:17.149338px;}
.ls32{letter-spacing:17.869221px;}
.ls3{letter-spacing:17.869356px;}
.ls4{letter-spacing:18.196604px;}
.ls29{letter-spacing:18.196744px;}
.ls2b{letter-spacing:22.036407px;}
.ls6{letter-spacing:22.482659px;}
.ls0{letter-spacing:39.304644px;}
.ls3c{letter-spacing:44.645884px;}
.ls2c{letter-spacing:48.436199px;}
.ls39{letter-spacing:56.530768px;}
.ls38{letter-spacing:59.410768px;}
.ls3b{letter-spacing:60.130781px;}
.ls37{letter-spacing:63.365834px;}
.ls16{letter-spacing:65.991064px;}
.ls1{letter-spacing:70.210741px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-66.242700px;}
.ws2{word-spacing:-28.052967px;}
.wsc{word-spacing:-23.714887px;}
.wse{word-spacing:-22.888942px;}
.wsf{word-spacing:-22.356932px;}
.ws4{word-spacing:-22.058819px;}
.wsd{word-spacing:-21.394886px;}
.ws0{word-spacing:-20.682862px;}
.ws3{word-spacing:-19.900829px;}
.ws1{word-spacing:-19.332806px;}
.ws8{word-spacing:-18.476609px;}
.ws5{word-spacing:-14.573394px;}
.ws6{word-spacing:-13.147695px;}
.ws9{word-spacing:-10.613196px;}
.ws7{word-spacing:0.000000px;}
.wsa{word-spacing:8.545830px;}
._4{margin-left:-16.146586px;}
._6{margin-left:-13.518486px;}
._18{margin-left:-9.111561px;}
._5{margin-left:-8.046268px;}
._7{margin-left:-5.961843px;}
._10{margin-left:-4.852253px;}
._3{margin-left:-3.600135px;}
._0{margin-left:-1.674070px;}
._1{width:1.080045px;}
._2{width:2.160081px;}
._a{width:3.294146px;}
._8{width:4.320180px;}
._9{width:6.156257px;}
._e{width:7.252157px;}
._d{width:8.651844px;}
._f{width:10.604793px;}
._c{width:12.190816px;}
._b{width:13.284545px;}
._12{width:15.202200px;}
._13{width:16.587526px;}
._11{width:18.065960px;}
._14{width:19.285001px;}
._15{width:20.933583px;}
._17{width:34.115363px;}
._16{width:35.267418px;}
._1b{width:197.303270px;}
._19{width:247.339382px;}
._1e{width:450.938583px;}
._20{width:529.911871px;}
._1a{width:564.326278px;}
._1f{width:569.474480px;}
._1d{width:609.093254px;}
._1c{width:823.404281px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.761620px;}
.fs8{font-size:48.241800px;}
.fs1{font-size:54.002250px;}
.fs6{font-size:59.762250px;}
.fs4{font-size:66.242700px;}
.fs0{font-size:72.002705px;}
.fs5{font-size:84.243145px;}
.fs3{font-size:131.764946px;}
.fs2{font-size:144.005409px;}
.y0{bottom:0.000000px;}
.y9f{bottom:4.319962px;}
.y8a{bottom:4.319996px;}
.y97{bottom:4.319997px;}
.y93{bottom:4.320030px;}
.y3{bottom:59.040115px;}
.y23{bottom:79.560104px;}
.y2{bottom:79.920043px;}
.yb3{bottom:112.860077px;}
.y21{bottom:116.280052px;}
.y20{bottom:127.440033px;}
.y46{bottom:129.420043px;}
.y84{bottom:132.660049px;}
.yb2{bottom:134.100083px;}
.y45{bottom:154.800041px;}
.yb1{bottom:155.520058px;}
.y66{bottom:156.600083px;}
.y83{bottom:162.900055px;}
.y1f{bottom:174.420043px;}
.yb0{bottom:176.940033px;}
.y65{bottom:183.420043px;}
.y82{bottom:193.140060px;}
.y44{bottom:194.580093px;}
.y1e{bottom:201.420043px;}
.y43{bottom:205.740074px;}
.y64{bottom:210.420043px;}
.yaf{bottom:210.600083px;}
.y81{bottom:223.380066px;}
.y1d{bottom:228.240074px;}
.yae{bottom:234.000068px;}
.y63{bottom:242.280052px;}
.y1c{bottom:255.060036px;}
.y42{bottom:255.600083px;}
.y80{bottom:264.600083px;}
.yad{bottom:268.920043px;}
.y62{bottom:272.520058px;}
.y41{bottom:282.420043px;}
.y1b{bottom:288.180039px;}
.yac{bottom:290.160049px;}
.y61{bottom:302.760064px;}
.y40{bottom:309.240074px;}
.yab{bottom:311.400055px;}
.y7f{bottom:320.040047px;}
.y1a{bottom:330.120072px;}
.yaa{bottom:332.820099px;}
.y3f{bottom:342.360077px;}
.y60{bottom:343.080093px;}
.y7e{bottom:352.440033px;}
.y19{bottom:356.940033px;}
.ya9{bottom:369.540047px;}
.y5f{bottom:369.900055px;}
.y18{bottom:383.940033px;}
.y3e{bottom:384.300041px;}
.y7d{bottom:384.660049px;}
.ya8{bottom:392.940033px;}
.y5e{bottom:396.720085px;}
.y17{bottom:410.760064px;}
.y3d{bottom:411.120072px;}
.ya7{bottom:416.340088px;}
.y7c{bottom:417.060036px;}
.y5d{bottom:429.840088px;}
.y3c{bottom:438.120072px;}
.y7b{bottom:449.460091px;}
.ya6{bottom:451.440033px;}
.y16{bottom:453.420043px;}
.y3b{bottom:464.940033px;}
.y5c{bottom:471.780052px;}
.y7a{bottom:472.860077px;}
.yca{bottom:489.960091px;}
.y3a{bottom:491.760064px;}
.ya5{bottom:492.480079px;}
.y5b{bottom:498.600083px;}
.y79{bottom:505.260064px;}
.yc9{bottom:511.200096px;}
.y15{bottom:512.460091px;}
.y39{bottom:518.760064px;}
.y5a{bottom:525.600083px;}
.yc8{bottom:532.440033px;}
.y14{bottom:539.280052px;}
.y78{bottom:544.320099px;}
.ya3{bottom:546.120072px;}
.ya4{bottom:550.440033px;}
.y38{bottom:559.800041px;}
.yc7{bottom:565.740074px;}
.y13{bottom:566.100083px;}
.y59{bottom:566.460091px;}
.ya1{bottom:572.400055px;}
.ya2{bottom:576.720085px;}
.y77{bottom:577.980079px;}
.y37{bottom:584.280052px;}
.yc6{bottom:586.980079px;}
.y12{bottom:593.100083px;}
.y58{bottom:596.700096px;}
.y9e{bottom:598.860077px;}
.ya0{bottom:603.180039px;}
.y36{bottom:608.580093px;}
.y11{bottom:619.920043px;}
.yc5{bottom:620.280052px;}
.y9d{bottom:625.140060px;}
.y57{bottom:630.900055px;}
.y35{bottom:633.060036px;}
.y76{bottom:633.420043px;}
.yc4{bottom:641.520058px;}
.y10{bottom:646.920043px;}
.y56{bottom:657.900055px;}
.y34{bottom:658.800041px;}
.yc3{bottom:662.760064px;}
.y75{bottom:665.820099px;}
.y9c{bottom:669.780052px;}
.yf{bottom:673.740074px;}
.y33{bottom:683.280052px;}
.y55{bottom:684.720085px;}
.yc2{bottom:696.060070px;}
.y74{bottom:698.220051px;}
.ye{bottom:700.560070px;}
.y32{bottom:708.660049px;}
.y9b{bottom:712.620072px;}
.yc1{bottom:717.300076px;}
.y54{bottom:717.840054px;}
.y73{bottom:721.620072px;}
.yc0{bottom:738.540081px;}
.yd{bottom:742.500068px;}
.y31{bottom:750.960056px;}
.y72{bottom:754.560070px;}
.y53{bottom:759.600083px;}
.y99{bottom:766.080059px;}
.y30{bottom:767.340054px;}
.yc{bottom:769.320065px;}
.y9a{bottom:770.400055px;}
.ybf{bottom:771.840054px;}
.y52{bottom:786.600083px;}
.y71{bottom:790.020058px;}
.y96{bottom:792.540081px;}
.ybe{bottom:793.080059px;}
.yb{bottom:796.320065px;}
.y98{bottom:796.860077px;}
.y51{bottom:813.420078px;}
.ybd{bottom:814.320065px;}
.y95{bottom:818.820065px;}
.y2f{bottom:820.440067px;}
.y70{bottom:822.420078px;}
.ya{bottom:823.140060px;}
.y92{bottom:845.280052px;}
.y6f{bottom:845.820065px;}
.y2e{bottom:847.260064px;}
.ybc{bottom:847.620072px;}
.y94{bottom:849.600083px;}
.y50{bottom:855.360077px;}
.y9{bottom:865.800076px;}
.ybb{bottom:868.860077px;}
.y6e{bottom:869.220051px;}
.y90{bottom:871.560070px;}
.y2d{bottom:874.080059px;}
.y91{bottom:875.880066px;}
.y4f{bottom:882.180073px;}
.yba{bottom:890.100083px;}
.y6d{bottom:892.620072px;}
.y8e{bottom:898.020058px;}
.y2c{bottom:901.080059px;}
.y8f{bottom:902.340054px;}
.y4e{bottom:909.180073px;}
.yb9{bottom:923.400055px;}
.y8d{bottom:924.120072px;}
.y6c{bottom:925.740074px;}
.y8c{bottom:928.440067px;}
.y8{bottom:929.340054px;}
.y2b{bottom:942.840054px;}
.y89{bottom:944.100083px;}
.yb8{bottom:944.640060px;}
.y8b{bottom:948.420078px;}
.y4d{bottom:953.100083px;}
.y7{bottom:958.500068px;}
.y6b{bottom:968.400055px;}
.y2a{bottom:969.840054px;}
.y4c{bottom:977.580059px;}
.yb7{bottom:985.500068px;}
.y88{bottom:992.340070px;}
.y29{bottom:996.660067px;}
.y4b{bottom:1002.960074px;}
.y6{bottom:1009.980063px;}
.y6a{bottom:1023.840070px;}
.y4a{bottom:1036.620072px;}
.y28{bottom:1037.700061px;}
.yb6{bottom:1040.580059px;}
.y87{bottom:1047.240074px;}
.y49{bottom:1047.780069px;}
.y5{bottom:1052.820065px;}
.y69{bottom:1056.240074px;}
.yb5{bottom:1061.820065px;}
.y27{bottom:1062.180073px;}
.y86{bottom:1077.480063px;}
.yb4{bottom:1083.240074px;}
.y26{bottom:1086.660067px;}
.y68{bottom:1088.640060px;}
.y48{bottom:1096.920061px;}
.y85{bottom:1107.720068px;}
.y25{bottom:1111.140060px;}
.y4{bottom:1116.540064px;}
.y67{bottom:1131.300067px;}
.y24{bottom:1136.340063px;}
.y47{bottom:1137.960065px;}
.y1{bottom:1163.880066px;}
.y22{bottom:1191.960065px;}
.h18{height:21.239971px;}
.h1f{height:21.239972px;}
.h1e{height:21.240006px;}
.h1b{height:21.599980px;}
.hc{height:54.657959px;}
.h2{height:60.857755px;}
.h7{height:60.860536px;}
.h3{height:61.184549px;}
.h1a{height:61.940581px;}
.h1d{height:67.232531px;}
.h13{height:67.352056px;}
.h19{height:67.710629px;}
.h1c{height:68.547301px;}
.h6{height:74.655523px;}
.he{height:76.103490px;}
.hd{height:78.263540px;}
.h12{height:78.263675px;}
.h4{height:81.147048px;}
.hf{height:84.355938px;}
.h8{height:94.942025px;}
.h11{height:126.377746px;}
.h9{height:126.503544px;}
.h14{height:126.503549px;}
.hb{height:128.995862px;}
.h16{height:134.755925px;}
.h10{height:136.916042px;}
.h5{height:162.294096px;}
.h17{height:175.192913px;}
.ha{height:179.395916px;}
.h15{height:179.395920px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w14{width:5.759994px;}
.w7{width:5.939964px;}
.w17{width:8.640000px;}
.w16{width:12.600013px;}
.w5{width:13.319996px;}
.w3{width:13.319997px;}
.w18{width:13.320005px;}
.w9{width:13.320012px;}
.wd{width:13.320014px;}
.w19{width:17.280000px;}
.w6{width:55.260028px;}
.w2{width:57.060009px;}
.wf{width:70.200001px;}
.w4{width:81.359991px;}
.wa{width:82.620011px;}
.w10{width:84.239997px;}
.w13{width:86.759994px;}
.w15{width:90.899987px;}
.wc{width:93.959995px;}
.wb{width:100.620011px;}
.we{width:111.959995px;}
.w8{width:112.679995px;}
.w12{width:132.120003px;}
.w11{width:145.079990px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:108.000000px;}
.x15{left:116.459997px;}
.x28{left:125.099997px;}
.x12{left:129.239997px;}
.x29{left:133.739997px;}
.x14{left:135.000000px;}
.x2a{left:144.000000px;}
.x13{left:161.099997px;}
.x16{left:173.520006px;}
.x1f{left:186.659998px;}
.x1c{left:199.080008px;}
.x20{left:200.699993px;}
.x1e{left:210.419992px;}
.x1d{left:217.080008px;}
.x1b{left:229.139992px;}
.x21{left:250.379998px;}
.x9{left:270.000000px;}
.xb{left:317.339985px;}
.xc{left:320.579990px;}
.xa{left:324.000000px;}
.xd{left:337.680005px;}
.x17{left:350.459988px;}
.xe{left:374.759994px;}
.x4{left:387.540012px;}
.x22{left:395.459988px;}
.x10{left:397.980011px;}
.x23{left:424.259994px;}
.xf{left:433.259994px;}
.x5{left:444.420010px;}
.x7{left:446.399987px;}
.x11{left:460.620002px;}
.x6{left:483.660015px;}
.x18{left:533.339985px;}
.x24{left:556.379998px;}
.x19{left:588.600014px;}
.x1a{left:594.539978px;}
.x25{left:675.000000px;}
.x26{left:680.759994px;}
.x2{left:716.759994px;}
.x8{left:724.320030px;}
.x27{left:771.659981px;}
.x1{left:784.980011px;}
@media print{
.v5{vertical-align:-12.159912pt;}
.v6{vertical-align:-10.880008pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.920164pt;}
.v7{vertical-align:11.519896pt;}
.v3{vertical-align:32.640136pt;}
.v4{vertical-align:39.679932pt;}
.v2{vertical-align:44.800048pt;}
.v9{vertical-align:51.840088pt;}
.v8{vertical-align:58.239992pt;}
.va{vertical-align:101.119996pt;}
.ls8{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.019042pt;}
.ls2f{letter-spacing:0.019166pt;}
.ls27{letter-spacing:0.019286pt;}
.ls35{letter-spacing:0.028208pt;}
.ls36{letter-spacing:0.061152pt;}
.ls1c{letter-spacing:0.108948pt;}
.lsb{letter-spacing:0.109064pt;}
.ls10{letter-spacing:0.109068pt;}
.ls13{letter-spacing:0.131382pt;}
.ls26{letter-spacing:0.134786pt;}
.ls21{letter-spacing:0.230418pt;}
.ls2a{letter-spacing:0.281062pt;}
.ls5{letter-spacing:0.281186pt;}
.lsf{letter-spacing:0.288718pt;}
.lsa{letter-spacing:0.296370pt;}
.ls9{letter-spacing:0.303040pt;}
.ls1f{letter-spacing:0.336650pt;}
.ls2{letter-spacing:0.336654pt;}
.ls2d{letter-spacing:0.352038pt;}
.ls20{letter-spacing:0.354274pt;}
.ls1d{letter-spacing:0.354394pt;}
.lsc{letter-spacing:0.354398pt;}
.ls22{letter-spacing:0.402494pt;}
.ls2e{letter-spacing:0.402614pt;}
.ls18{letter-spacing:0.441806pt;}
.ls1b{letter-spacing:0.473468pt;}
.ls1a{letter-spacing:0.587564pt;}
.ls40{letter-spacing:0.592068pt;}
.ls12{letter-spacing:0.999745pt;}
.ls31{letter-spacing:0.999865pt;}
.ls30{letter-spacing:1.088885pt;}
.ls1e{letter-spacing:1.221958pt;}
.lsd{letter-spacing:1.222078pt;}
.ls23{letter-spacing:1.747054pt;}
.ls3e{letter-spacing:1.747058pt;}
.ls3f{letter-spacing:1.849562pt;}
.lse{letter-spacing:1.947430pt;}
.ls3d{letter-spacing:2.094443pt;}
.ls3a{letter-spacing:2.094563pt;}
.ls11{letter-spacing:2.121323pt;}
.ls7{letter-spacing:2.511764pt;}
.ls19{letter-spacing:2.511884pt;}
.ls34{letter-spacing:2.843720pt;}
.ls17{letter-spacing:3.151900pt;}
.ls25{letter-spacing:3.156851pt;}
.ls33{letter-spacing:3.796743pt;}
.ls15{letter-spacing:13.241734pt;}
.ls28{letter-spacing:15.243736pt;}
.ls14{letter-spacing:15.243856pt;}
.ls32{letter-spacing:15.883752pt;}
.ls3{letter-spacing:15.883872pt;}
.ls4{letter-spacing:16.174759pt;}
.ls29{letter-spacing:16.174883pt;}
.ls2b{letter-spacing:19.587918pt;}
.ls6{letter-spacing:19.984586pt;}
.ls0{letter-spacing:34.937462pt;}
.ls3c{letter-spacing:39.685230pt;}
.ls2c{letter-spacing:43.054399pt;}
.ls39{letter-spacing:50.249571pt;}
.ls38{letter-spacing:52.809571pt;}
.ls3b{letter-spacing:53.449583pt;}
.ls37{letter-spacing:56.325186pt;}
.ls16{letter-spacing:58.658723pt;}
.ls1{letter-spacing:62.409547pt;}
.wsb{word-spacing:-58.882400pt;}
.ws2{word-spacing:-24.935971pt;}
.wsc{word-spacing:-21.079899pt;}
.wse{word-spacing:-20.345726pt;}
.wsf{word-spacing:-19.872828pt;}
.ws4{word-spacing:-19.607839pt;}
.wsd{word-spacing:-19.017676pt;}
.ws0{word-spacing:-18.384766pt;}
.ws3{word-spacing:-17.689626pt;}
.ws1{word-spacing:-17.184716pt;}
.ws8{word-spacing:-16.423653pt;}
.ws5{word-spacing:-12.954128pt;}
.ws6{word-spacing:-11.686840pt;}
.ws9{word-spacing:-9.433952pt;}
.ws7{word-spacing:0.000000pt;}
.wsa{word-spacing:7.596294pt;}
._4{margin-left:-14.352521pt;}
._6{margin-left:-12.016432pt;}
._18{margin-left:-8.099166pt;}
._5{margin-left:-7.152238pt;}
._7{margin-left:-5.299416pt;}
._10{margin-left:-4.313114pt;}
._3{margin-left:-3.200120pt;}
._0{margin-left:-1.488062pt;}
._1{width:0.960040pt;}
._2{width:1.920072pt;}
._a{width:2.928130pt;}
._8{width:3.840160pt;}
._9{width:5.472228pt;}
._e{width:6.446362pt;}
._d{width:7.690528pt;}
._f{width:9.426482pt;}
._c{width:10.836281pt;}
._b{width:11.808484pt;}
._12{width:13.513067pt;}
._13{width:14.744468pt;}
._11{width:16.058631pt;}
._14{width:17.142223pt;}
._15{width:18.607630pt;}
._17{width:30.324767pt;}
._16{width:31.348816pt;}
._1b{width:175.380684pt;}
._19{width:219.857228pt;}
._1e{width:400.834296pt;}
._20{width:471.032774pt;}
._1a{width:501.623358pt;}
._1f{width:506.199538pt;}
._1d{width:541.416226pt;}
._1c{width:731.914916pt;}
.fs7{font-size:37.121440pt;}
.fs8{font-size:42.881600pt;}
.fs1{font-size:48.002000pt;}
.fs6{font-size:53.122000pt;}
.fs4{font-size:58.882400pt;}
.fs0{font-size:64.002404pt;}
.fs5{font-size:74.882796pt;}
.fs3{font-size:117.124396pt;}
.fs2{font-size:128.004808pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:3.839966pt;}
.y8a{bottom:3.839996pt;}
.y97{bottom:3.839997pt;}
.y93{bottom:3.840027pt;}
.y3{bottom:52.480103pt;}
.y23{bottom:70.720093pt;}
.y2{bottom:71.040039pt;}
.yb3{bottom:100.320069pt;}
.y21{bottom:103.360047pt;}
.y20{bottom:113.280030pt;}
.y46{bottom:115.040039pt;}
.y84{bottom:117.920044pt;}
.yb2{bottom:119.200074pt;}
.y45{bottom:137.600037pt;}
.yb1{bottom:138.240052pt;}
.y66{bottom:139.200074pt;}
.y83{bottom:144.800049pt;}
.y1f{bottom:155.040039pt;}
.yb0{bottom:157.280030pt;}
.y65{bottom:163.040039pt;}
.y82{bottom:171.680054pt;}
.y44{bottom:172.960083pt;}
.y1e{bottom:179.040039pt;}
.y43{bottom:182.880066pt;}
.y64{bottom:187.040039pt;}
.yaf{bottom:187.200074pt;}
.y81{bottom:198.560059pt;}
.y1d{bottom:202.880066pt;}
.yae{bottom:208.000061pt;}
.y63{bottom:215.360047pt;}
.y1c{bottom:226.720032pt;}
.y42{bottom:227.200074pt;}
.y80{bottom:235.200074pt;}
.yad{bottom:239.040039pt;}
.y62{bottom:242.240052pt;}
.y41{bottom:251.040039pt;}
.y1b{bottom:256.160035pt;}
.yac{bottom:257.920044pt;}
.y61{bottom:269.120057pt;}
.y40{bottom:274.880066pt;}
.yab{bottom:276.800049pt;}
.y7f{bottom:284.480042pt;}
.y1a{bottom:293.440064pt;}
.yaa{bottom:295.840088pt;}
.y3f{bottom:304.320069pt;}
.y60{bottom:304.960083pt;}
.y7e{bottom:313.280030pt;}
.y19{bottom:317.280030pt;}
.ya9{bottom:328.480042pt;}
.y5f{bottom:328.800049pt;}
.y18{bottom:341.280030pt;}
.y3e{bottom:341.600037pt;}
.y7d{bottom:341.920044pt;}
.ya8{bottom:349.280030pt;}
.y5e{bottom:352.640076pt;}
.y17{bottom:365.120057pt;}
.y3d{bottom:365.440064pt;}
.ya7{bottom:370.080079pt;}
.y7c{bottom:370.720032pt;}
.y5d{bottom:382.080079pt;}
.y3c{bottom:389.440064pt;}
.y7b{bottom:399.520081pt;}
.ya6{bottom:401.280030pt;}
.y16{bottom:403.040039pt;}
.y3b{bottom:413.280030pt;}
.y5c{bottom:419.360047pt;}
.y7a{bottom:420.320069pt;}
.yca{bottom:435.520081pt;}
.y3a{bottom:437.120057pt;}
.ya5{bottom:437.760071pt;}
.y5b{bottom:443.200074pt;}
.y79{bottom:449.120057pt;}
.yc9{bottom:454.400086pt;}
.y15{bottom:455.520081pt;}
.y39{bottom:461.120057pt;}
.y5a{bottom:467.200074pt;}
.yc8{bottom:473.280030pt;}
.y14{bottom:479.360047pt;}
.y78{bottom:483.840088pt;}
.ya3{bottom:485.440064pt;}
.ya4{bottom:489.280030pt;}
.y38{bottom:497.600037pt;}
.yc7{bottom:502.880066pt;}
.y13{bottom:503.200074pt;}
.y59{bottom:503.520081pt;}
.ya1{bottom:508.800049pt;}
.ya2{bottom:512.640076pt;}
.y77{bottom:513.760071pt;}
.y37{bottom:519.360047pt;}
.yc6{bottom:521.760071pt;}
.y12{bottom:527.200074pt;}
.y58{bottom:530.400086pt;}
.y9e{bottom:532.320069pt;}
.ya0{bottom:536.160035pt;}
.y36{bottom:540.960083pt;}
.y11{bottom:551.040039pt;}
.yc5{bottom:551.360047pt;}
.y9d{bottom:555.680054pt;}
.y57{bottom:560.800049pt;}
.y35{bottom:562.720032pt;}
.y76{bottom:563.040039pt;}
.yc4{bottom:570.240052pt;}
.y10{bottom:575.040039pt;}
.y56{bottom:584.800049pt;}
.y34{bottom:585.600037pt;}
.yc3{bottom:589.120057pt;}
.y75{bottom:591.840088pt;}
.y9c{bottom:595.360047pt;}
.yf{bottom:598.880066pt;}
.y33{bottom:607.360047pt;}
.y55{bottom:608.640076pt;}
.yc2{bottom:618.720063pt;}
.y74{bottom:620.640046pt;}
.ye{bottom:622.720063pt;}
.y32{bottom:629.920044pt;}
.y9b{bottom:633.440064pt;}
.yc1{bottom:637.600068pt;}
.y54{bottom:638.080048pt;}
.y73{bottom:641.440064pt;}
.yc0{bottom:656.480072pt;}
.yd{bottom:660.000061pt;}
.y31{bottom:667.520050pt;}
.y72{bottom:670.720063pt;}
.y53{bottom:675.200074pt;}
.y99{bottom:680.960053pt;}
.y30{bottom:682.080048pt;}
.yc{bottom:683.840058pt;}
.y9a{bottom:684.800049pt;}
.ybf{bottom:686.080048pt;}
.y52{bottom:699.200074pt;}
.y71{bottom:702.240052pt;}
.y96{bottom:704.480072pt;}
.ybe{bottom:704.960053pt;}
.yb{bottom:707.840058pt;}
.y98{bottom:708.320069pt;}
.y51{bottom:723.040070pt;}
.ybd{bottom:723.840058pt;}
.y95{bottom:727.840058pt;}
.y2f{bottom:729.280060pt;}
.y70{bottom:731.040070pt;}
.ya{bottom:731.680054pt;}
.y92{bottom:751.360047pt;}
.y6f{bottom:751.840058pt;}
.y2e{bottom:753.120057pt;}
.ybc{bottom:753.440064pt;}
.y94{bottom:755.200074pt;}
.y50{bottom:760.320069pt;}
.y9{bottom:769.600068pt;}
.ybb{bottom:772.320069pt;}
.y6e{bottom:772.640046pt;}
.y90{bottom:774.720063pt;}
.y2d{bottom:776.960053pt;}
.y91{bottom:778.560059pt;}
.y4f{bottom:784.160065pt;}
.yba{bottom:791.200074pt;}
.y6d{bottom:793.440064pt;}
.y8e{bottom:798.240052pt;}
.y2c{bottom:800.960053pt;}
.y8f{bottom:802.080048pt;}
.y4e{bottom:808.160065pt;}
.yb9{bottom:820.800049pt;}
.y8d{bottom:821.440064pt;}
.y6c{bottom:822.880066pt;}
.y8c{bottom:825.280060pt;}
.y8{bottom:826.080048pt;}
.y2b{bottom:838.080048pt;}
.y89{bottom:839.200074pt;}
.yb8{bottom:839.680054pt;}
.y8b{bottom:843.040070pt;}
.y4d{bottom:847.200074pt;}
.y7{bottom:852.000061pt;}
.y6b{bottom:860.800049pt;}
.y2a{bottom:862.080048pt;}
.y4c{bottom:868.960053pt;}
.yb7{bottom:876.000061pt;}
.y88{bottom:882.080063pt;}
.y29{bottom:885.920060pt;}
.y4b{bottom:891.520066pt;}
.y6{bottom:897.760056pt;}
.y6a{bottom:910.080063pt;}
.y4a{bottom:921.440064pt;}
.y28{bottom:922.400055pt;}
.yb6{bottom:924.960053pt;}
.y87{bottom:930.880066pt;}
.y49{bottom:931.360062pt;}
.y5{bottom:935.840058pt;}
.y69{bottom:938.880066pt;}
.yb5{bottom:943.840058pt;}
.y27{bottom:944.160065pt;}
.y86{bottom:957.760056pt;}
.yb4{bottom:962.880066pt;}
.y26{bottom:965.920060pt;}
.y68{bottom:967.680054pt;}
.y48{bottom:975.040055pt;}
.y85{bottom:984.640061pt;}
.y25{bottom:987.680054pt;}
.y4{bottom:992.480057pt;}
.y67{bottom:1005.600060pt;}
.y24{bottom:1010.080056pt;}
.y47{bottom:1011.520058pt;}
.y1{bottom:1034.560059pt;}
.y22{bottom:1059.520058pt;}
.h18{height:18.879974pt;}
.h1f{height:18.879975pt;}
.h1e{height:18.880005pt;}
.h1b{height:19.199982pt;}
.hc{height:48.584853pt;}
.h2{height:54.095782pt;}
.h7{height:54.098254pt;}
.h3{height:54.386266pt;}
.h1a{height:55.058294pt;}
.h1d{height:59.762250pt;}
.h13{height:59.868494pt;}
.h19{height:60.187226pt;}
.h1c{height:60.930934pt;}
.h6{height:66.360465pt;}
.he{height:67.647547pt;}
.hd{height:69.567591pt;}
.h12{height:69.567711pt;}
.h4{height:72.130709pt;}
.hf{height:74.983056pt;}
.h8{height:84.392911pt;}
.h11{height:112.335774pt;}
.h9{height:112.447595pt;}
.h14{height:112.447599pt;}
.hb{height:114.662988pt;}
.h16{height:119.783044pt;}
.h10{height:121.703148pt;}
.h5{height:144.261419pt;}
.h17{height:155.727033pt;}
.ha{height:159.463036pt;}
.h15{height:159.463040pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w14{width:5.119995pt;}
.w7{width:5.279968pt;}
.w17{width:7.680000pt;}
.w16{width:11.200012pt;}
.w5{width:11.839996pt;}
.w3{width:11.839997pt;}
.w18{width:11.840004pt;}
.w9{width:11.840011pt;}
.wd{width:11.840012pt;}
.w19{width:15.360000pt;}
.w6{width:49.120025pt;}
.w2{width:50.720008pt;}
.wf{width:62.400001pt;}
.w4{width:72.319992pt;}
.wa{width:73.440010pt;}
.w10{width:74.879997pt;}
.w13{width:77.119995pt;}
.w15{width:80.799988pt;}
.wc{width:83.519996pt;}
.wb{width:89.440010pt;}
.we{width:99.519996pt;}
.w8{width:100.159996pt;}
.w12{width:117.440003pt;}
.w11{width:128.959991pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:96.000000pt;}
.x15{left:103.519997pt;}
.x28{left:111.199997pt;}
.x12{left:114.879997pt;}
.x29{left:118.879997pt;}
.x14{left:120.000000pt;}
.x2a{left:128.000000pt;}
.x13{left:143.199997pt;}
.x16{left:154.240005pt;}
.x1f{left:165.919998pt;}
.x1c{left:176.960007pt;}
.x20{left:178.399994pt;}
.x1e{left:187.039993pt;}
.x1d{left:192.960007pt;}
.x1b{left:203.679993pt;}
.x21{left:222.559998pt;}
.x9{left:240.000000pt;}
.xb{left:282.079987pt;}
.xc{left:284.959991pt;}
.xa{left:288.000000pt;}
.xd{left:300.160004pt;}
.x17{left:311.519989pt;}
.xe{left:333.119995pt;}
.x4{left:344.480011pt;}
.x22{left:351.519989pt;}
.x10{left:353.760010pt;}
.x23{left:377.119995pt;}
.xf{left:385.119995pt;}
.x5{left:395.040009pt;}
.x7{left:396.799988pt;}
.x11{left:409.440002pt;}
.x6{left:429.920013pt;}
.x18{left:474.079987pt;}
.x24{left:494.559998pt;}
.x19{left:523.200012pt;}
.x1a{left:528.479980pt;}
.x25{left:600.000000pt;}
.x26{left:605.119995pt;}
.x2{left:637.119995pt;}
.x8{left:643.840027pt;}
.x27{left:685.919983pt;}
.x1{left:697.760010pt;}
}




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