
    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_e8dd9185f91fba2a3e044aa9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.911133;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_02bedd16bd639e2208f5bb46.woff')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_86f10faf1bbca0a1fee4abbd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_3c19fb71bb0f1faffb77b479.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_560f48b14182893e02c48526.woff')format("woff");}.ff5{font-family:ff5;line-height:0.891602;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_5bc2543fe797431bd86821be.woff')format("woff");}.ff6{font-family:ff6;line-height:0.774414;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_820f6927a4f60c9d1d45230d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.686523;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_d8f656914fb94ed3e1365afc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_ac1a0b389f80f2de60c2e924.woff')format("woff");}.ff9{font-family:ff9;line-height:0.682129;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_b2342b68c200d54e3b6eca49.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_cd374e048df8234987aac955.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_002b35395325b3c6def3f1bc.woff')format("woff");}.ffc{font-family:ffc;line-height:0.866699;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_4bfac0e30a0194995dae7497.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_9a9782ae9b6094e8c3934ce1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.840820;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_585e50116e577ab15cb27e35.woff')format("woff");}.fff{font-family:fff;line-height:0.904297;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_94ae7158c45b71e0b3e0c8b2.woff')format("woff");}.ff10{font-family:ff10;line-height:0.858887;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_2513543219f29b3ae35fb335.woff')format("woff");}.ff11{font-family:ff11;line-height:0.938477;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:ff12;src:url('chunks/assets/font_1e1ef877e87b2804aae78b6b.woff')format("woff");}.ff12{font-family:ff12;line-height:0.936523;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.010641px;}
.ls11{letter-spacing:0.021282px;}
.ls5{letter-spacing:0.155922px;}
.ls12{letter-spacing:0.158820px;}
.ls2{letter-spacing:0.182640px;}
.lsa{letter-spacing:0.311400px;}
.ls1{letter-spacing:4.481798px;}
.lsf{letter-spacing:13.663495px;}
.lse{letter-spacing:13.698715px;}
.ls10{letter-spacing:14.419134px;}
.ls4{letter-spacing:41.940583px;}
.lsc{letter-spacing:108.219557px;}
.lsb{letter-spacing:128.391549px;}
.ls7{letter-spacing:131.993347px;}
.ls6{letter-spacing:136.316345px;}
.ls8{letter-spacing:139.918144px;}
.ls9{letter-spacing:198.127361px;}
.ls0{letter-spacing:1276.761705px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc3{text-shadow:-0.015em 0 rgb(51,51,51),0 0.015em rgb(51,51,51),0.015em 0 rgb(51,51,51),0 -0.015em  rgb(51,51,51);}
.sc2{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(51,51,51);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-38.015985px;}
.wsc{word-spacing:-25.989686px;}
.wsb{word-spacing:-25.091414px;}
.ws6{word-spacing:-18.704873px;}
.wsa{word-spacing:-18.155914px;}
.wsd{word-spacing:-18.021275px;}
.ws1{word-spacing:-17.999993px;}
.ws4{word-spacing:-16.613273px;}
.ws8{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws7{word-spacing:-14.939994px;}
.ws2{word-spacing:-14.374074px;}
.ws3{word-spacing:-13.147195px;}
.ws9{word-spacing:0.000000px;}
._16{margin-left:-198.329277px;}
._17{margin-left:-197.183794px;}
._15{margin-left:-78.526049px;}
._f{margin-left:-4.260256px;}
._a{margin-left:-2.828886px;}
._1{margin-left:-1.570800px;}
._0{width:1.003091px;}
._c{width:2.007938px;}
._3{width:3.248672px;}
._2{width:4.492798px;}
._5{width:6.475937px;}
._4{width:7.815213px;}
._6{width:9.794560px;}
._7{width:10.872830px;}
._14{width:12.268736px;}
._b{width:13.419014px;}
._10{width:15.318655px;}
._d{width:17.237928px;}
._2a{width:19.548256px;}
._18{width:20.941771px;}
._1c{width:22.202338px;}
._2b{width:28.639801px;}
._22{width:30.850643px;}
._11{width:33.317614px;}
._9{width:34.434909px;}
._8{width:35.724001px;}
._e{width:38.479901px;}
._12{width:41.597125px;}
._13{width:42.667214px;}
._29{width:43.970560px;}
._28{width:57.416632px;}
._1b{width:103.007980px;}
._19{width:105.912678px;}
._1a{width:198.127361px;}
._25{width:295.018662px;}
._26{width:409.801160px;}
._1f{width:450.518297px;}
._27{width:494.971859px;}
._24{width:583.795595px;}
._1d{width:594.414407px;}
._20{width:639.016463px;}
._1e{width:657.261095px;}
._21{width:675.036906px;}
._23{width:676.508273px;}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fca{color:rgb(51,51,51);}
.fc7{color:rgb(13,13,13);}
.fcc{color:rgb(0,176,80);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc8{color:rgb(83,129,53);}
.fc0{color:rgb(0,0,0);}
.fc9{color:rgb(44,62,80);}
.fcd{color:transparent;}
.fc3{color:rgb(68,84,106);}
.fc6{color:rgb(0,32,96);}
.fcb{color:rgb(0,0,255);}
.fs5{font-size:48.239981px;}
.fs6{font-size:51.119980px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs4{font-size:63.359975px;}
.fs1{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs7{font-size:84.239966px;}
.y6{bottom:-9.899991px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y2c{bottom:1.259309px;}
.y133{bottom:2.879259px;}
.y1a{bottom:3.599073px;}
.y10b{bottom:3.959038px;}
.y10d{bottom:3.959047px;}
.y10f{bottom:3.959055px;}
.y111{bottom:3.959064px;}
.y113{bottom:3.959073px;}
.y115{bottom:3.959081px;}
.y117{bottom:3.959090px;}
.y119{bottom:3.959098px;}
.y11b{bottom:3.959107px;}
.y120{bottom:3.959150px;}
.y122{bottom:3.959159px;}
.y124{bottom:3.959168px;}
.y126{bottom:3.959176px;}
.y128{bottom:3.959185px;}
.y12a{bottom:3.959193px;}
.y131{bottom:3.959262px;}
.y135{bottom:3.959270px;}
.y137{bottom:3.959279px;}
.y139{bottom:3.959288px;}
.y13b{bottom:3.959296px;}
.y17{bottom:4.319074px;}
.y50{bottom:4.498948px;}
.yb{bottom:4.500038px;}
.yc{bottom:32.880287px;}
.ya{bottom:50.520240px;}
.y8{bottom:55.020278px;}
.y9{bottom:56.100278px;}
.y161{bottom:127.019949px;}
.y48{bottom:128.460249px;}
.y183{bottom:139.799944px;}
.y140{bottom:143.399943px;}
.y160{bottom:147.719941px;}
.y47{bottom:149.160240px;}
.ye8{bottom:156.179938px;}
.y182{bottom:158.879936px;}
.y81{bottom:161.759935px;}
.y13f{bottom:164.099934px;}
.y15f{bottom:168.419933px;}
.y46{bottom:169.859932px;}
.y108{bottom:173.639931px;}
.y96{bottom:173.819930px;}
.ya6{bottom:175.259930px;}
.y181{bottom:177.959929px;}
.yc7{bottom:178.319929px;}
.y80{bottom:182.459927px;}
.y13e{bottom:184.799926px;}
.ye7{bottom:188.939924px;}
.y15e{bottom:189.119924px;}
.ya5{bottom:195.959922px;}
.y7f{bottom:203.159919px;}
.y13d{bottom:205.499918px;}
.y95{bottom:206.399917px;}
.y45{bottom:208.559917px;}
.y180{bottom:208.739917px;}
.ye6{bottom:209.639916px;}
.y15d{bottom:209.819916px;}
.yc6{bottom:210.899916px;}
.y7e{bottom:223.859910px;}
.ya4{bottom:224.759910px;}
.y2b{bottom:226.020600px;}
.y107{bottom:227.099909px;}
.y17f{bottom:227.819909px;}
.y15c{bottom:230.519908px;}
.yc5{bottom:231.599907px;}
.y94{bottom:235.199906px;}
.y13c{bottom:238.079905px;}
.y7d{bottom:244.559902px;}
.ye5{bottom:245.279902px;}
.y106{bottom:247.799901px;}
.y15b{bottom:251.219900px;}
.yc4{bottom:252.299899px;}
.y13a{bottom:255.720600px;}
.y44{bottom:256.799897px;}
.y17e{bottom:258.599897px;}
.y7c{bottom:265.259894px;}
.ye4{bottom:265.979894px;}
.y105{bottom:268.499893px;}
.y15a{bottom:271.919891px;}
.yc3{bottom:272.999891px;}
.y138{bottom:277.140600px;}
.y17d{bottom:277.859889px;}
.y104{bottom:289.199884px;}
.y159{bottom:292.619883px;}
.yc2{bottom:293.699883px;}
.y55{bottom:295.499882px;}
.y136{bottom:298.560600px;}
.ye3{bottom:301.619879px;}
.y7b{bottom:307.019877px;}
.y17c{bottom:308.639877px;}
.y103{bottom:309.899876px;}
.y54{bottom:312.239875px;}
.y158{bottom:313.319875px;}
.yc1{bottom:314.399874px;}
.y134{bottom:319.980600px;}
.y7a{bottom:327.719869px;}
.y53{bottom:328.979868px;}
.y102{bottom:330.599868px;}
.y157{bottom:334.019866px;}
.ye2{bottom:334.379866px;}
.y130{bottom:341.400600px;}
.y52{bottom:345.719862px;}
.yc0{bottom:347.159861px;}
.y79{bottom:348.419861px;}
.y132{bottom:349.320600px;}
.y156{bottom:354.719858px;}
.ye1{bottom:355.079858px;}
.y17b{bottom:358.499857px;}
.y51{bottom:362.999855px;}
.y2a{bottom:365.159854px;}
.y12f{bottom:366.779853px;}
.y78{bottom:369.119852px;}
.y101{bottom:369.299852px;}
.y155{bottom:375.419850px;}
.ye0{bottom:375.779850px;}
.y17a{bottom:377.759849px;}
.ybf{bottom:379.919848px;}
.y29{bottom:380.819848px;}
.y12e{bottom:387.479845px;}
.y77{bottom:389.819844px;}
.y28{bottom:393.419843px;}
.y154{bottom:396.119842px;}
.ydf{bottom:396.479841px;}
.y179{bottom:396.659841px;}
.y100{bottom:401.879839px;}
.yf7{bottom:402.059839px;}
.y43{bottom:405.119838px;}
.y12d{bottom:408.179837px;}
.y93{bottom:408.719837px;}
.y76{bottom:410.519836px;}
.ybe{bottom:411.419835px;}
.y153{bottom:416.819833px;}
.yde{bottom:417.179833px;}
.ybc{bottom:420.419832px;}
.y42{bottom:422.399831px;}
.yff{bottom:422.579831px;}
.y178{bottom:427.439829px;}
.y92{bottom:429.419828px;}
.ybd{bottom:431.039828px;}
.y75{bottom:431.219828px;}
.yf6{bottom:434.819826px;}
.y152{bottom:437.519825px;}
.y12c{bottom:441.659823px;}
.y177{bottom:446.519821px;}
.ydd{bottom:449.939820px;}
.y91{bottom:450.119820px;}
.yfe{bottom:451.379819px;}
.y74{bottom:451.919819px;}
.y151{bottom:458.219817px;}
.y41{bottom:460.559816px;}
.y12b{bottom:462.359815px;}
.yf5{bottom:467.399813px;}
.ybb{bottom:467.759813px;}
.ydc{bottom:470.639812px;}
.y73{bottom:472.619811px;}
.y176{bottom:477.479809px;}
.y40{bottom:477.839809px;}
.y150{bottom:478.919808px;}
.y90{bottom:482.699807px;}
.yf4{bottom:488.099805px;}
.ydb{bottom:491.339803px;}
.y3f{bottom:495.119802px;}
.y175{bottom:496.559801px;}
.y14f{bottom:499.619800px;}
.y27{bottom:500.879800px;}
.yba{bottom:509.339796px;}
.yda{bottom:512.039795px;}
.y3e{bottom:512.399795px;}
.y129{bottom:512.580600px;}
.y72{bottom:514.199794px;}
.y8f{bottom:515.459794px;}
.y174{bottom:515.639794px;}
.y14e{bottom:520.319792px;}
.yf3{bottom:520.859792px;}
.y3d{bottom:529.679788px;}
.yb9{bottom:530.039788px;}
.yd9{bottom:533.819786px;}
.y127{bottom:534.000600px;}
.y173{bottom:535.439786px;}
.y8e{bottom:536.159786px;}
.y26{bottom:537.599785px;}
.y14d{bottom:541.019784px;}
.y3c{bottom:546.959781px;}
.yf2{bottom:549.659780px;}
.yb8{bottom:550.739780px;}
.yd8{bottom:554.519778px;}
.y25{bottom:555.419778px;}
.y125{bottom:555.420600px;}
.y71{bottom:555.959778px;}
.y8d{bottom:564.779774px;}
.y3b{bottom:565.139774px;}
.y172{bottom:566.579773px;}
.yb7{bottom:571.439771px;}
.y24{bottom:573.239771px;}
.yd7{bottom:575.219770px;}
.y70{bottom:576.659769px;}
.y123{bottom:576.840600px;}
.y3a{bottom:582.419767px;}
.y14c{bottom:582.599767px;}
.y171{bottom:585.659766px;}
.y23{bottom:589.619764px;}
.yb6{bottom:592.139763px;}
.y6f{bottom:595.919762px;}
.y6e{bottom:597.359761px;}
.y121{bottom:598.440600px;}
.y39{bottom:599.699760px;}
.y170{bottom:604.739758px;}
.y14b{bottom:615.359754px;}
.y38{bottom:616.799753px;}
.y6d{bottom:618.059753px;}
.y11f{bottom:619.860600px;}
.y22{bottom:624.899750px;}
.yd6{bottom:628.679749px;}
.y37{bottom:634.079746px;}
.y16f{bottom:635.519746px;}
.y14a{bottom:636.059746px;}
.y6c{bottom:638.759744px;}
.y21{bottom:642.179743px;}
.y11e{bottom:645.239742px;}
.y36{bottom:651.359739px;}
.y16e{bottom:654.599738px;}
.y149{bottom:656.759737px;}
.yb5{bottom:657.659737px;}
.y6b{bottom:659.459736px;}
.yd5{bottom:661.439735px;}
.y35{bottom:668.639733px;}
.y20{bottom:677.279729px;}
.y148{bottom:677.459729px;}
.y11d{bottom:678.719729px;}
.y34{bottom:685.919726px;}
.ya3{bottom:686.099726px;}
.yb4{bottom:690.239724px;}
.y16d{bottom:691.859723px;}
.yd4{bottom:692.939723px;}
.y147{bottom:698.159721px;}
.y6a{bottom:701.219720px;}
.yd3{bottom:701.939719px;}
.y33{bottom:703.019719px;}
.ya2{bottom:706.799717px;}
.yb3{bottom:710.939716px;}
.y11c{bottom:711.299715px;}
.y1f{bottom:712.559715px;}
.y146{bottom:718.859712px;}
.y32{bottom:720.299712px;}
.y69{bottom:724.979710px;}
.yfd{bottom:726.059710px;}
.ya1{bottom:727.499709px;}
.y11a{bottom:728.760600px;}
.y1e{bottom:729.839708px;}
.y16c{bottom:730.559708px;}
.yb2{bottom:731.639707px;}
.y31{bottom:737.759705px;}
.y145{bottom:739.559704px;}
.yd2{bottom:740.279704px;}
.ya0{bottom:748.199701px;}
.y118{bottom:750.360600px;}
.yb1{bottom:752.339699px;}
.y30{bottom:755.939698px;}
.yfc{bottom:758.819696px;}
.y144{bottom:760.259696px;}
.y193{bottom:760.619696px;}
.y16b{bottom:763.319695px;}
.y68{bottom:763.499695px;}
.y9f{bottom:768.899692px;}
.y116{bottom:771.780600px;}
.yd1{bottom:772.859691px;}
.y2f{bottom:773.039691px;}
.y1d{bottom:775.019690px;}
.yfb{bottom:779.519688px;}
.y143{bottom:780.959688px;}
.y16a{bottom:784.019686px;}
.y67{bottom:784.199686px;}
.y8c{bottom:786.359685px;}
.y2d{bottom:788.699685px;}
.y9e{bottom:789.599684px;}
.y2e{bottom:790.319684px;}
.y1c{bottom:791.759683px;}
.y192{bottom:792.839683px;}
.y114{bottom:793.200600px;}
.yd0{bottom:793.559683px;}
.yb0{bottom:793.739683px;}
.yfa{bottom:800.219680px;}
.y142{bottom:801.659679px;}
.y169{bottom:804.719678px;}
.y66{bottom:804.899678px;}
.y8b{bottom:807.059677px;}
.y191{bottom:811.919675px;}
.y16{bottom:811.920600px;}
.y19{bottom:812.820600px;}
.ycf{bottom:814.259674px;}
.yaf{bottom:814.439674px;}
.y112{bottom:814.620600px;}
.y18{bottom:816.419673px;}
.y1b{bottom:817.859673px;}
.y9d{bottom:822.359671px;}
.y168{bottom:825.419670px;}
.y65{bottom:825.599670px;}
.y8a{bottom:827.759669px;}
.y190{bottom:830.819668px;}
.yf9{bottom:832.979667px;}
.yce{bottom:834.959666px;}
.yae{bottom:835.139666px;}
.yf1{bottom:835.499666px;}
.y110{bottom:836.040600px;}
.y15{bottom:836.759665px;}
.y9c{bottom:843.059663px;}
.y167{bottom:846.119662px;}
.y64{bottom:846.299661px;}
.y18f{bottom:849.899660px;}
.ycd{bottom:855.659658px;}
.yf0{bottom:856.199658px;}
.y10e{bottom:857.460600px;}
.y14{bottom:857.639657px;}
.y89{bottom:860.519656px;}
.yf8{bottom:861.599655px;}
.y141{bottom:863.759654px;}
.y166{bottom:866.819653px;}
.y63{bottom:866.999653px;}
.yad{bottom:867.899653px;}
.y9b{bottom:875.819650px;}
.yef{bottom:878.159649px;}
.y10c{bottom:879.060600px;}
.y18e{bottom:880.679648px;}
.y165{bottom:887.519645px;}
.y62{bottom:887.699645px;}
.ycc{bottom:888.419645px;}
.y13{bottom:891.299643px;}
.y88{bottom:893.099643px;}
.y9a{bottom:896.519641px;}
.yee{bottom:898.859640px;}
.y18d{bottom:899.759640px;}
.y10a{bottom:900.480600px;}
.yac{bottom:900.659640px;}
.y109{bottom:904.439638px;}
.y164{bottom:908.219637px;}
.y61{bottom:908.399637px;}
.y12{bottom:911.999635px;}
.y87{bottom:913.799634px;}
.y99{bottom:917.219633px;}
.yed{bottom:919.559632px;}
.ycb{bottom:921.179632px;}
.y163{bottom:928.919628px;}
.y60{bottom:929.099628px;}
.y18c{bottom:930.539628px;}
.yab{bottom:931.979627px;}
.y11{bottom:932.699627px;}
.y98{bottom:937.919625px;}
.yec{bottom:940.259624px;}
.ya9{bottom:940.979624px;}
.y86{bottom:946.559621px;}
.y162{bottom:949.619620px;}
.y5f{bottom:949.799620px;}
.yaa{bottom:951.599619px;}
.yca{bottom:952.679619px;}
.y10{bottom:953.399619px;}
.y97{bottom:958.619617px;}
.yc8{bottom:961.679615px;}
.y18b{bottom:968.699613px;}
.y5e{bottom:970.499612px;}
.yc9{bottom:972.299611px;}
.yf{bottom:974.099610px;}
.yeb{bottom:975.899610px;}
.y85{bottom:979.319608px;}
.y18a{bottom:987.779605px;}
.y5d{bottom:991.199604px;}
.ye{bottom:994.799602px;}
.y84{bottom:1000.019600px;}
.yea{bottom:1008.659597px;}
.y5c{bottom:1011.899595px;}
.yd{bottom:1015.499594px;}
.y189{bottom:1018.559593px;}
.y83{bottom:1020.719592px;}
.y5b{bottom:1032.599587px;}
.y188{bottom:1037.639585px;}
.ye9{bottom:1041.239584px;}
.y82{bottom:1041.419583px;}
.y49{bottom:1048.079581px;}
.y4e{bottom:1048.979580px;}
.y5a{bottom:1053.299579px;}
.ya8{bottom:1061.939575px;}
.y4d{bottom:1067.339573px;}
.y187{bottom:1068.419573px;}
.y59{bottom:1073.999570px;}
.ya7{bottom:1082.639567px;}
.y4c{bottom:1085.699566px;}
.y186{bottom:1087.679565px;}
.y58{bottom:1094.699562px;}
.y4b{bottom:1112.879555px;}
.y57{bottom:1115.399554px;}
.y185{bottom:1118.459553px;}
.y4f{bottom:1125.480600px;}
.y4a{bottom:1131.239548px;}
.y56{bottom:1136.099546px;}
.y184{bottom:1137.539545px;}
.y4{bottom:1157.339537px;}
.y7{bottom:1185.059526px;}
.y3{bottom:1189.019524px;}
.y2{bottom:1206.299517px;}
.y1{bottom:1223.579511px;}
.h3{height:5.940000px;}
.h1f{height:12.780000px;}
.h14{height:14.040000px;}
.he{height:19.260000px;}
.hb{height:20.160000px;}
.h6{height:20.340000px;}
.h1e{height:20.520000px;}
.h18{height:33.541862px;}
.hd{height:35.991197px;}
.h1c{height:36.592720px;}
.h4{height:36.703110px;}
.h5{height:36.914048px;}
.h11{height:39.339828px;}
.h17{height:40.059828px;}
.h10{height:40.297132px;}
.h7{height:40.851546px;}
.h1{height:41.551858px;}
.h13{height:42.972170px;}
.h16{height:43.390178px;}
.h12{height:43.536076px;}
.hc{height:44.149201px;}
.hf{height:44.666701px;}
.h2{height:45.281232px;}
.h21{height:46.057482px;}
.h22{height:48.256856px;}
.h8{height:48.796855px;}
.ha{height:49.000762px;}
.h9{height:50.062480px;}
.h15{height:50.247402px;}
.h1b{height:51.539042px;}
.h1a{height:52.417948px;}
.h19{height:52.453104px;}
.h20{height:58.573102px;}
.h1d{height:60.539038px;}
.h0{height:1263.000000px;}
.w5{width:3.600000px;}
.w3{width:4.500000px;}
.w14{width:5.940000px;}
.w1e{width:6.300000px;}
.w8{width:6.660000px;}
.w9{width:7.740000px;}
.wa{width:9.000000px;}
.w2{width:9.720000px;}
.w11{width:14.940000px;}
.w7{width:15.300000px;}
.w25{width:18.000000px;}
.w17{width:19.260000px;}
.w18{width:22.500000px;}
.w1a{width:23.040000px;}
.w24{width:28.080000px;}
.w12{width:31.500000px;}
.w22{width:32.580000px;}
.w6{width:33.840000px;}
.wd{width:40.500000px;}
.wc{width:41.040000px;}
.w20{width:41.580000px;}
.w15{width:49.500000px;}
.w4{width:58.500000px;}
.wb{width:60.480000px;}
.w16{width:80.100000px;}
.wf{width:82.440000px;}
.we{width:82.980000px;}
.w23{width:121.500000px;}
.w19{width:126.360000px;}
.w1b{width:135.360000px;}
.w1c{width:147.420000px;}
.w13{width:153.000000px;}
.w10{width:153.540000px;}
.w1f{width:165.780000px;}
.w21{width:174.780000px;}
.w1d{width:176.040000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x2a{left:-4.680254px;}
.x0{left:0.000000px;}
.x1a{left:100.259960px;}
.x1b{left:105.659958px;}
.x1{left:107.999957px;}
.x18{left:112.679955px;}
.x1e{left:113.939954px;}
.x19{left:115.559999px;}
.x16{left:119.159952px;}
.x17{left:121.319919px;}
.xc{left:123.120481px;}
.x31{left:125.458643px;}
.x10{left:128.160000px;}
.x4{left:132.659947px;}
.x33{left:134.999907px;}
.x44{left:144.540000px;}
.x7{left:148.499941px;}
.x32{left:150.479357px;}
.x1d{left:160.199936px;}
.x1c{left:167.759930px;}
.x20{left:176.039977px;}
.x3d{left:181.079928px;}
.x11{left:186.660000px;}
.x42{left:189.000256px;}
.x12{left:190.260000px;}
.x39{left:194.579922px;}
.x38{left:196.019922px;}
.xe{left:209.159454px;}
.x3b{left:214.559914px;}
.x40{left:218.339913px;}
.x45{left:221.220000px;}
.x23{left:222.479911px;}
.x8{left:224.281673px;}
.x13{left:226.799909px;}
.x56{left:231.660000px;}
.x63{left:237.960000px;}
.x50{left:240.840000px;}
.x4a{left:243.720000px;}
.x1f{left:246.239902px;}
.x34{left:256.860338px;}
.x3e{left:259.919940px;}
.x14{left:270.900000px;}
.xa{left:277.199889px;}
.x60{left:282.240000px;}
.x53{left:287.100000px;}
.x3a{left:289.619884px;}
.x21{left:292.139883px;}
.x15{left:294.292382px;}
.x55{left:296.100000px;}
.x2c{left:298.439881px;}
.x2{left:302.579879px;}
.x36{left:308.879952px;}
.x4c{left:314.280000px;}
.x59{left:318.059873px;}
.x24{left:319.139872px;}
.x26{left:322.199893px;}
.x66{left:327.060000px;}
.x5d{left:358.560000px;}
.x22{left:387.899762px;}
.x57{left:396.000000px;}
.x2d{left:401.219840px;}
.x46{left:403.200000px;}
.xd{left:406.251023px;}
.x2e{left:407.339837px;}
.x25{left:409.139892px;}
.x4d{left:418.140000px;}
.x27{left:419.939832px;}
.x51{left:422.460000px;}
.x54{left:426.240000px;}
.x58{left:427.500000px;}
.x2f{left:430.379828px;}
.x5{left:432.359827px;}
.x3f{left:433.799826px;}
.x5a{left:435.059826px;}
.x30{left:436.499825px;}
.x67{left:441.000000px;}
.x47{left:444.240000px;}
.x9{left:446.399821px;}
.x68{left:450.000000px;}
.xf{left:452.519819px;}
.x3c{left:455.039818px;}
.x41{left:461.879815px;}
.xb{left:474.659810px;}
.x64{left:484.560000px;}
.x4b{left:485.640000px;}
.x28{left:516.779793px;}
.x5b{left:552.059779px;}
.x5e{left:558.000000px;}
.x35{left:561.239371px;}
.x69{left:576.000000px;}
.x65{left:580.140000px;}
.x62{left:584.640000px;}
.x48{left:594.540000px;}
.x6c{left:598.499761px;}
.x52{left:617.040000px;}
.x4e{left:626.040000px;}
.x49{left:635.040000px;}
.x29{left:639.540000px;}
.x4f{left:644.040000px;}
.x5c{left:657.359737px;}
.x6a{left:663.300000px;}
.x3{left:666.179734px;}
.x6b{left:672.300000px;}
.x5f{left:697.860000px;}
.x2b{left:699.840000px;}
.x61{left:706.860000px;}
.x37{left:765.000335px;}
.x6{left:780.120000px;}
.x43{left:785.159316px;}
@media print{
.v1{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.009459pt;}
.ls11{letter-spacing:0.018917pt;}
.ls5{letter-spacing:0.138597pt;}
.ls12{letter-spacing:0.141173pt;}
.ls2{letter-spacing:0.162347pt;}
.lsa{letter-spacing:0.276800pt;}
.ls1{letter-spacing:3.983820pt;}
.lsf{letter-spacing:12.145328pt;}
.lse{letter-spacing:12.176635pt;}
.ls10{letter-spacing:12.817008pt;}
.ls4{letter-spacing:37.280518pt;}
.lsc{letter-spacing:96.195162pt;}
.lsb{letter-spacing:114.125821pt;}
.ls7{letter-spacing:117.327420pt;}
.ls6{letter-spacing:121.170085pt;}
.ls8{letter-spacing:124.371684pt;}
.ls9{letter-spacing:176.113210pt;}
.ls0{letter-spacing:1134.899294pt;}
.ws5{word-spacing:-33.791986pt;}
.wsc{word-spacing:-23.101943pt;}
.wsb{word-spacing:-22.303479pt;}
.ws6{word-spacing:-16.626553pt;}
.wsa{word-spacing:-16.138591pt;}
.wsd{word-spacing:-16.018911pt;}
.ws1{word-spacing:-15.999994pt;}
.ws4{word-spacing:-14.767354pt;}
.ws8{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws7{word-spacing:-13.279995pt;}
.ws2{word-spacing:-12.776955pt;}
.ws3{word-spacing:-11.686395pt;}
.ws9{word-spacing:0.000000pt;}
._16{margin-left:-176.292690pt;}
._17{margin-left:-175.274483pt;}
._15{margin-left:-69.800932pt;}
._f{margin-left:-3.786895pt;}
._a{margin-left:-2.514566pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891636pt;}
._c{width:1.784834pt;}
._3{width:2.887709pt;}
._2{width:3.993598pt;}
._5{width:5.756389pt;}
._4{width:6.946856pt;}
._6{width:8.706275pt;}
._7{width:9.664738pt;}
._14{width:10.905543pt;}
._b{width:11.928013pt;}
._10{width:13.616582pt;}
._d{width:15.322603pt;}
._2a{width:17.376228pt;}
._18{width:18.614907pt;}
._1c{width:19.735411pt;}
._2b{width:25.457601pt;}
._22{width:27.422794pt;}
._11{width:29.615657pt;}
._9{width:30.608808pt;}
._8{width:31.754668pt;}
._e{width:34.204356pt;}
._12{width:36.975222pt;}
._13{width:37.926412pt;}
._29{width:39.084942pt;}
._28{width:51.037006pt;}
._1b{width:91.562649pt;}
._19{width:94.144602pt;}
._1a{width:176.113210pt;}
._25{width:262.238811pt;}
._26{width:364.267698pt;}
._1f{width:400.460708pt;}
._27{width:439.974986pt;}
._24{width:518.929418pt;}
._1d{width:528.368362pt;}
._20{width:568.014634pt;}
._1e{width:584.232084pt;}
._21{width:600.032805pt;}
._23{width:601.340687pt;}
.fs5{font-size:42.879983pt;}
.fs6{font-size:45.439982pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs4{font-size:56.319977pt;}
.fs1{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs7{font-size:74.879970pt;}
.y6{bottom:-8.799992pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y2c{bottom:1.119386pt;}
.y133{bottom:2.559341pt;}
.y1a{bottom:3.199176pt;}
.y10b{bottom:3.519145pt;}
.y10d{bottom:3.519153pt;}
.y10f{bottom:3.519160pt;}
.y111{bottom:3.519168pt;}
.y113{bottom:3.519176pt;}
.y115{bottom:3.519183pt;}
.y117{bottom:3.519191pt;}
.y119{bottom:3.519198pt;}
.y11b{bottom:3.519206pt;}
.y120{bottom:3.519245pt;}
.y122{bottom:3.519252pt;}
.y124{bottom:3.519260pt;}
.y126{bottom:3.519268pt;}
.y128{bottom:3.519275pt;}
.y12a{bottom:3.519283pt;}
.y131{bottom:3.519344pt;}
.y135{bottom:3.519351pt;}
.y137{bottom:3.519359pt;}
.y139{bottom:3.519367pt;}
.y13b{bottom:3.519374pt;}
.y17{bottom:3.839176pt;}
.y50{bottom:3.999065pt;}
.yb{bottom:4.000034pt;}
.yc{bottom:29.226922pt;}
.ya{bottom:44.906880pt;}
.y8{bottom:48.906914pt;}
.y9{bottom:49.866913pt;}
.y161{bottom:112.906622pt;}
.y48{bottom:114.186888pt;}
.y183{bottom:124.266617pt;}
.y140{bottom:127.466616pt;}
.y160{bottom:131.306614pt;}
.y47{bottom:132.586880pt;}
.ye8{bottom:138.826611pt;}
.y182{bottom:141.226610pt;}
.y81{bottom:143.786609pt;}
.y13f{bottom:145.866608pt;}
.y15f{bottom:149.706607pt;}
.y46{bottom:150.986606pt;}
.y108{bottom:154.346605pt;}
.y96{bottom:154.506605pt;}
.ya6{bottom:155.786604pt;}
.y181{bottom:158.186603pt;}
.yc7{bottom:158.506603pt;}
.y80{bottom:162.186602pt;}
.y13e{bottom:164.266601pt;}
.ye7{bottom:167.946599pt;}
.y15e{bottom:168.106599pt;}
.ya5{bottom:174.186597pt;}
.y7f{bottom:180.586594pt;}
.y13d{bottom:182.666594pt;}
.y95{bottom:183.466593pt;}
.y45{bottom:185.386593pt;}
.y180{bottom:185.546592pt;}
.ye6{bottom:186.346592pt;}
.y15d{bottom:186.506592pt;}
.yc6{bottom:187.466592pt;}
.y7e{bottom:198.986587pt;}
.ya4{bottom:199.786587pt;}
.y2b{bottom:200.907200pt;}
.y107{bottom:201.866586pt;}
.y17f{bottom:202.506586pt;}
.y15c{bottom:204.906585pt;}
.yc5{bottom:205.866584pt;}
.y94{bottom:209.066583pt;}
.y13c{bottom:211.626582pt;}
.y7d{bottom:217.386580pt;}
.ye5{bottom:218.026579pt;}
.y106{bottom:220.266579pt;}
.y15b{bottom:223.306577pt;}
.yc4{bottom:224.266577pt;}
.y13a{bottom:227.307200pt;}
.y44{bottom:228.266575pt;}
.y17e{bottom:229.866575pt;}
.y7c{bottom:235.786572pt;}
.ye4{bottom:236.426572pt;}
.y105{bottom:238.666571pt;}
.y15a{bottom:241.706570pt;}
.yc3{bottom:242.666570pt;}
.y138{bottom:246.347200pt;}
.y17d{bottom:246.986568pt;}
.y104{bottom:257.066564pt;}
.y159{bottom:260.106563pt;}
.yc2{bottom:261.066562pt;}
.y55{bottom:262.666562pt;}
.y136{bottom:265.387200pt;}
.ye3{bottom:268.106559pt;}
.y7b{bottom:272.906558pt;}
.y17c{bottom:274.346557pt;}
.y103{bottom:275.466556pt;}
.y54{bottom:277.546556pt;}
.y158{bottom:278.506555pt;}
.yc1{bottom:279.466555pt;}
.y134{bottom:284.427200pt;}
.y7a{bottom:291.306550pt;}
.y53{bottom:292.426550pt;}
.y102{bottom:293.866549pt;}
.y157{bottom:296.906548pt;}
.ye2{bottom:297.226548pt;}
.y130{bottom:303.467200pt;}
.y52{bottom:307.306544pt;}
.yc0{bottom:308.586543pt;}
.y79{bottom:309.706543pt;}
.y132{bottom:310.507200pt;}
.y156{bottom:315.306541pt;}
.ye1{bottom:315.626540pt;}
.y17b{bottom:318.666539pt;}
.y51{bottom:322.666538pt;}
.y2a{bottom:324.586537pt;}
.y12f{bottom:326.026536pt;}
.y78{bottom:328.106535pt;}
.y101{bottom:328.266535pt;}
.y155{bottom:333.706533pt;}
.ye0{bottom:334.026533pt;}
.y17a{bottom:335.786532pt;}
.ybf{bottom:337.706532pt;}
.y29{bottom:338.506531pt;}
.y12e{bottom:344.426529pt;}
.y77{bottom:346.506528pt;}
.y28{bottom:349.706527pt;}
.y154{bottom:352.106526pt;}
.ydf{bottom:352.426526pt;}
.y179{bottom:352.586526pt;}
.y100{bottom:357.226524pt;}
.yf7{bottom:357.386524pt;}
.y43{bottom:360.106523pt;}
.y12d{bottom:362.826522pt;}
.y93{bottom:363.306521pt;}
.y76{bottom:364.906521pt;}
.ybe{bottom:365.706520pt;}
.y153{bottom:370.506518pt;}
.yde{bottom:370.826518pt;}
.ybc{bottom:373.706517pt;}
.y42{bottom:375.466516pt;}
.yff{bottom:375.626516pt;}
.y178{bottom:379.946515pt;}
.y92{bottom:381.706514pt;}
.ybd{bottom:383.146513pt;}
.y75{bottom:383.306513pt;}
.yf6{bottom:386.506512pt;}
.y152{bottom:388.906511pt;}
.y12c{bottom:392.586510pt;}
.y177{bottom:396.906508pt;}
.ydd{bottom:399.946507pt;}
.y91{bottom:400.106507pt;}
.yfe{bottom:401.226506pt;}
.y74{bottom:401.706506pt;}
.y151{bottom:407.306504pt;}
.y41{bottom:409.386503pt;}
.y12b{bottom:410.986502pt;}
.yf5{bottom:415.466500pt;}
.ybb{bottom:415.786500pt;}
.ydc{bottom:418.346499pt;}
.y73{bottom:420.106499pt;}
.y176{bottom:424.426497pt;}
.y40{bottom:424.746497pt;}
.y150{bottom:425.706496pt;}
.y90{bottom:429.066495pt;}
.yf4{bottom:433.866493pt;}
.ydb{bottom:436.746492pt;}
.y3f{bottom:440.106491pt;}
.y175{bottom:441.386490pt;}
.y14f{bottom:444.106489pt;}
.y27{bottom:445.226489pt;}
.yba{bottom:452.746486pt;}
.yda{bottom:455.146485pt;}
.y3e{bottom:455.466484pt;}
.y129{bottom:455.627200pt;}
.y72{bottom:457.066484pt;}
.y8f{bottom:458.186483pt;}
.y174{bottom:458.346483pt;}
.y14e{bottom:462.506482pt;}
.yf3{bottom:462.986481pt;}
.y3d{bottom:470.826478pt;}
.yb9{bottom:471.146478pt;}
.yd9{bottom:474.506477pt;}
.y127{bottom:474.667200pt;}
.y173{bottom:475.946476pt;}
.y8e{bottom:476.586476pt;}
.y26{bottom:477.866476pt;}
.y14d{bottom:480.906474pt;}
.y3c{bottom:486.186472pt;}
.yf2{bottom:488.586471pt;}
.yb8{bottom:489.546471pt;}
.yd8{bottom:492.906470pt;}
.y25{bottom:493.706469pt;}
.y125{bottom:493.707200pt;}
.y71{bottom:494.186469pt;}
.y8d{bottom:502.026466pt;}
.y3b{bottom:502.346466pt;}
.y172{bottom:503.626465pt;}
.yb7{bottom:507.946463pt;}
.y24{bottom:509.546463pt;}
.yd7{bottom:511.306462pt;}
.y70{bottom:512.586462pt;}
.y123{bottom:512.747200pt;}
.y3a{bottom:517.706460pt;}
.y14c{bottom:517.866460pt;}
.y171{bottom:520.586458pt;}
.y23{bottom:524.106457pt;}
.yb6{bottom:526.346456pt;}
.y6f{bottom:529.706455pt;}
.y6e{bottom:530.986454pt;}
.y121{bottom:531.947200pt;}
.y39{bottom:533.066453pt;}
.y170{bottom:537.546452pt;}
.y14b{bottom:546.986448pt;}
.y38{bottom:548.266447pt;}
.y6d{bottom:549.386447pt;}
.y11f{bottom:550.987200pt;}
.y22{bottom:555.466444pt;}
.yd6{bottom:558.826443pt;}
.y37{bottom:563.626441pt;}
.y16f{bottom:564.906441pt;}
.y14a{bottom:565.386441pt;}
.y6c{bottom:567.786440pt;}
.y21{bottom:570.826438pt;}
.y11e{bottom:573.546437pt;}
.y36{bottom:578.986435pt;}
.y16e{bottom:581.866434pt;}
.y149{bottom:583.786433pt;}
.yb5{bottom:584.586433pt;}
.y6b{bottom:586.186432pt;}
.yd5{bottom:587.946431pt;}
.y35{bottom:594.346429pt;}
.y20{bottom:602.026426pt;}
.y148{bottom:602.186426pt;}
.y11d{bottom:603.306425pt;}
.y34{bottom:609.706423pt;}
.ya3{bottom:609.866423pt;}
.yb4{bottom:613.546421pt;}
.y16d{bottom:614.986421pt;}
.yd4{bottom:615.946420pt;}
.y147{bottom:620.586418pt;}
.y6a{bottom:623.306417pt;}
.yd3{bottom:623.946417pt;}
.y33{bottom:624.906417pt;}
.ya2{bottom:628.266415pt;}
.yb3{bottom:631.946414pt;}
.y11c{bottom:632.266414pt;}
.y1f{bottom:633.386413pt;}
.y146{bottom:638.986411pt;}
.y32{bottom:640.266411pt;}
.y69{bottom:644.426409pt;}
.yfd{bottom:645.386409pt;}
.ya1{bottom:646.666408pt;}
.y11a{bottom:647.787200pt;}
.y1e{bottom:648.746407pt;}
.y16c{bottom:649.386407pt;}
.yb2{bottom:650.346407pt;}
.y31{bottom:655.786404pt;}
.y145{bottom:657.386404pt;}
.yd2{bottom:658.026403pt;}
.ya0{bottom:665.066401pt;}
.y118{bottom:666.987200pt;}
.yb1{bottom:668.746399pt;}
.y30{bottom:671.946398pt;}
.yfc{bottom:674.506397pt;}
.y144{bottom:675.786396pt;}
.y193{bottom:676.106396pt;}
.y16b{bottom:678.506395pt;}
.y68{bottom:678.666395pt;}
.y9f{bottom:683.466393pt;}
.y116{bottom:686.027200pt;}
.yd1{bottom:686.986392pt;}
.y2f{bottom:687.146392pt;}
.y1d{bottom:688.906391pt;}
.yfb{bottom:692.906390pt;}
.y143{bottom:694.186389pt;}
.y16a{bottom:696.906388pt;}
.y67{bottom:697.066388pt;}
.y8c{bottom:698.986387pt;}
.y2d{bottom:701.066386pt;}
.y9e{bottom:701.866386pt;}
.y2e{bottom:702.506386pt;}
.y1c{bottom:703.786385pt;}
.y192{bottom:704.746385pt;}
.y114{bottom:705.067200pt;}
.yd0{bottom:705.386385pt;}
.yb0{bottom:705.546384pt;}
.yfa{bottom:711.306382pt;}
.y142{bottom:712.586382pt;}
.y169{bottom:715.306381pt;}
.y66{bottom:715.466380pt;}
.y8b{bottom:717.386380pt;}
.y191{bottom:721.706378pt;}
.y16{bottom:721.707200pt;}
.y19{bottom:722.507200pt;}
.ycf{bottom:723.786377pt;}
.yaf{bottom:723.946377pt;}
.y112{bottom:724.107200pt;}
.y18{bottom:725.706376pt;}
.y1b{bottom:726.986376pt;}
.y9d{bottom:730.986374pt;}
.y168{bottom:733.706373pt;}
.y65{bottom:733.866373pt;}
.y8a{bottom:735.786372pt;}
.y190{bottom:738.506371pt;}
.yf9{bottom:740.426370pt;}
.yce{bottom:742.186370pt;}
.yae{bottom:742.346370pt;}
.yf1{bottom:742.666370pt;}
.y110{bottom:743.147200pt;}
.y15{bottom:743.786369pt;}
.y9c{bottom:749.386367pt;}
.y167{bottom:752.106366pt;}
.y64{bottom:752.266366pt;}
.y18f{bottom:755.466364pt;}
.ycd{bottom:760.586362pt;}
.yf0{bottom:761.066362pt;}
.y10e{bottom:762.187200pt;}
.y14{bottom:762.346362pt;}
.y89{bottom:764.906361pt;}
.yf8{bottom:765.866360pt;}
.y141{bottom:767.786360pt;}
.y166{bottom:770.506358pt;}
.y63{bottom:770.666358pt;}
.yad{bottom:771.466358pt;}
.y9b{bottom:778.506355pt;}
.yef{bottom:780.586354pt;}
.y10c{bottom:781.387200pt;}
.y18e{bottom:782.826354pt;}
.y165{bottom:788.906351pt;}
.y62{bottom:789.066351pt;}
.ycc{bottom:789.706351pt;}
.y13{bottom:792.266350pt;}
.y88{bottom:793.866349pt;}
.y9a{bottom:796.906348pt;}
.yee{bottom:798.986347pt;}
.y18d{bottom:799.786347pt;}
.y10a{bottom:800.427200pt;}
.yac{bottom:800.586346pt;}
.y109{bottom:803.946345pt;}
.y164{bottom:807.306344pt;}
.y61{bottom:807.466344pt;}
.y12{bottom:810.666342pt;}
.y87{bottom:812.266342pt;}
.y99{bottom:815.306341pt;}
.yed{bottom:817.386340pt;}
.ycb{bottom:818.826339pt;}
.y163{bottom:825.706336pt;}
.y60{bottom:825.866336pt;}
.y18c{bottom:827.146336pt;}
.yab{bottom:828.426335pt;}
.y11{bottom:829.066335pt;}
.y98{bottom:833.706333pt;}
.yec{bottom:835.786332pt;}
.ya9{bottom:836.426332pt;}
.y86{bottom:841.386330pt;}
.y162{bottom:844.106329pt;}
.y5f{bottom:844.266329pt;}
.yaa{bottom:845.866328pt;}
.yca{bottom:846.826328pt;}
.y10{bottom:847.466328pt;}
.y97{bottom:852.106326pt;}
.yc8{bottom:854.826325pt;}
.y18b{bottom:861.066322pt;}
.y5e{bottom:862.666322pt;}
.yc9{bottom:864.266321pt;}
.yf{bottom:865.866320pt;}
.yeb{bottom:867.466320pt;}
.y85{bottom:870.506318pt;}
.y18a{bottom:878.026315pt;}
.y5d{bottom:881.066314pt;}
.ye{bottom:884.266313pt;}
.y84{bottom:888.906311pt;}
.yea{bottom:896.586308pt;}
.y5c{bottom:899.466307pt;}
.yd{bottom:902.666306pt;}
.y189{bottom:905.386305pt;}
.y83{bottom:907.306304pt;}
.y5b{bottom:917.866300pt;}
.y188{bottom:922.346298pt;}
.ye9{bottom:925.546296pt;}
.y82{bottom:925.706296pt;}
.y49{bottom:931.626294pt;}
.y4e{bottom:932.426294pt;}
.y5a{bottom:936.266292pt;}
.ya8{bottom:943.946289pt;}
.y4d{bottom:948.746287pt;}
.y187{bottom:949.706287pt;}
.y59{bottom:954.666285pt;}
.ya7{bottom:962.346282pt;}
.y4c{bottom:965.066281pt;}
.y186{bottom:966.826280pt;}
.y58{bottom:973.066277pt;}
.y4b{bottom:989.226271pt;}
.y57{bottom:991.466270pt;}
.y185{bottom:994.186269pt;}
.y4f{bottom:1000.427200pt;}
.y4a{bottom:1005.546264pt;}
.y56{bottom:1009.866263pt;}
.y184{bottom:1011.146262pt;}
.y4{bottom:1028.746255pt;}
.y7{bottom:1053.386245pt;}
.y3{bottom:1056.906244pt;}
.y2{bottom:1072.266238pt;}
.y1{bottom:1087.626232pt;}
.h3{height:5.280000pt;}
.h1f{height:11.360000pt;}
.h14{height:12.480000pt;}
.he{height:17.120000pt;}
.hb{height:17.920000pt;}
.h6{height:18.080000pt;}
.h1e{height:18.240000pt;}
.h18{height:29.814988pt;}
.hd{height:31.992175pt;}
.h1c{height:32.526862pt;}
.h4{height:32.624987pt;}
.h5{height:32.812487pt;}
.h11{height:34.968736pt;}
.h17{height:35.608736pt;}
.h10{height:35.819673pt;}
.h7{height:36.312485pt;}
.h1{height:36.934985pt;}
.h13{height:38.197485pt;}
.h16{height:38.569047pt;}
.h12{height:38.698735pt;}
.hc{height:39.243734pt;}
.hf{height:39.703734pt;}
.h2{height:40.249984pt;}
.h21{height:40.939984pt;}
.h22{height:42.894983pt;}
.h8{height:43.374983pt;}
.ha{height:43.556233pt;}
.h9{height:44.499982pt;}
.h15{height:44.664357pt;}
.h1b{height:45.812482pt;}
.h1a{height:46.593731pt;}
.h19{height:46.624981pt;}
.h20{height:52.064979pt;}
.h1d{height:53.812478pt;}
.h0{height:1122.666667pt;}
.w5{width:3.200000pt;}
.w3{width:4.000000pt;}
.w14{width:5.280000pt;}
.w1e{width:5.600000pt;}
.w8{width:5.920000pt;}
.w9{width:6.880000pt;}
.wa{width:8.000000pt;}
.w2{width:8.640000pt;}
.w11{width:13.280000pt;}
.w7{width:13.600000pt;}
.w25{width:16.000000pt;}
.w17{width:17.120000pt;}
.w18{width:20.000000pt;}
.w1a{width:20.480000pt;}
.w24{width:24.960000pt;}
.w12{width:28.000000pt;}
.w22{width:28.960000pt;}
.w6{width:30.080000pt;}
.wd{width:36.000000pt;}
.wc{width:36.480000pt;}
.w20{width:36.960000pt;}
.w15{width:44.000000pt;}
.w4{width:52.000000pt;}
.wb{width:53.760000pt;}
.w16{width:71.200000pt;}
.wf{width:73.280000pt;}
.we{width:73.760000pt;}
.w23{width:108.000000pt;}
.w19{width:112.320000pt;}
.w1b{width:120.320000pt;}
.w1c{width:131.040000pt;}
.w13{width:136.000000pt;}
.w10{width:136.480000pt;}
.w1f{width:147.360000pt;}
.w21{width:155.360000pt;}
.w1d{width:156.480000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x2a{left:-4.160226pt;}
.x0{left:0.000000pt;}
.x1a{left:89.119964pt;}
.x1b{left:93.919962pt;}
.x1{left:95.999962pt;}
.x18{left:100.159960pt;}
.x1e{left:101.279959pt;}
.x19{left:102.719999pt;}
.x16{left:105.919958pt;}
.x17{left:107.839928pt;}
.xc{left:109.440428pt;}
.x31{left:111.518794pt;}
.x10{left:113.920000pt;}
.x4{left:117.919953pt;}
.x33{left:119.999917pt;}
.x44{left:128.480000pt;}
.x7{left:131.999947pt;}
.x32{left:133.759428pt;}
.x1d{left:142.399943pt;}
.x1c{left:149.119938pt;}
.x20{left:156.479980pt;}
.x3d{left:160.959936pt;}
.x11{left:165.920000pt;}
.x42{left:168.000228pt;}
.x12{left:169.120000pt;}
.x39{left:172.959931pt;}
.x38{left:174.239930pt;}
.xe{left:185.919515pt;}
.x3b{left:190.719924pt;}
.x40{left:194.079922pt;}
.x45{left:196.640000pt;}
.x23{left:197.759921pt;}
.x8{left:199.361487pt;}
.x13{left:201.599919pt;}
.x56{left:205.920000pt;}
.x63{left:211.520000pt;}
.x50{left:214.080000pt;}
.x4a{left:216.640000pt;}
.x1f{left:218.879912pt;}
.x34{left:228.320300pt;}
.x3e{left:231.039947pt;}
.x14{left:240.800000pt;}
.xa{left:246.399901pt;}
.x60{left:250.880000pt;}
.x53{left:255.200000pt;}
.x3a{left:257.439897pt;}
.x21{left:259.679896pt;}
.x15{left:261.593229pt;}
.x55{left:263.200000pt;}
.x2c{left:265.279894pt;}
.x2{left:268.959892pt;}
.x36{left:274.559958pt;}
.x4c{left:279.360000pt;}
.x59{left:282.719887pt;}
.x24{left:283.679887pt;}
.x26{left:286.399905pt;}
.x66{left:290.720000pt;}
.x5d{left:318.720000pt;}
.x22{left:344.799789pt;}
.x57{left:352.000000pt;}
.x2d{left:356.639857pt;}
.x46{left:358.400000pt;}
.xd{left:361.112020pt;}
.x2e{left:362.079855pt;}
.x25{left:363.679904pt;}
.x4d{left:371.680000pt;}
.x27{left:373.279851pt;}
.x51{left:375.520000pt;}
.x54{left:378.880000pt;}
.x58{left:380.000000pt;}
.x2f{left:382.559847pt;}
.x5{left:384.319846pt;}
.x3f{left:385.599846pt;}
.x5a{left:386.719845pt;}
.x30{left:387.999845pt;}
.x67{left:392.000000pt;}
.x47{left:394.880000pt;}
.x9{left:396.799841pt;}
.x68{left:400.000000pt;}
.xf{left:402.239839pt;}
.x3c{left:404.479838pt;}
.x41{left:410.559836pt;}
.xb{left:421.919831pt;}
.x64{left:430.720000pt;}
.x4b{left:431.680000pt;}
.x28{left:459.359816pt;}
.x5b{left:490.719804pt;}
.x5e{left:496.000000pt;}
.x35{left:498.879441pt;}
.x69{left:512.000000pt;}
.x65{left:515.680000pt;}
.x62{left:519.680000pt;}
.x48{left:528.480000pt;}
.x6c{left:531.999787pt;}
.x52{left:548.480000pt;}
.x4e{left:556.480000pt;}
.x49{left:564.480000pt;}
.x29{left:568.480000pt;}
.x4f{left:572.480000pt;}
.x5c{left:584.319766pt;}
.x6a{left:589.600000pt;}
.x3{left:592.159763pt;}
.x6b{left:597.600000pt;}
.x5f{left:620.320000pt;}
.x2b{left:622.080000pt;}
.x61{left:628.320000pt;}
.x37{left:680.000298pt;}
.x6{left:693.440000pt;}
.x43{left:697.919392pt;}
}




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