
    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_f32037e33bd12a919c8980e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6a2375df277e27e3699311ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3da8cf097c5e57425a974a0b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e4fc213efcbd68741837e44b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c9dc2c16333cbbf1116188fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_da499426f170ebac787d807c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c655788af93a8c543ce96dab.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f6e0fbd31336bab014e3b053.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2a4f19295d780e922650770c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944336;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_ec4e2af979db884675acf842.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_bd0373818bae4fe00726762f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cb73945c392f3d62a5a8f2db.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_1ad20eb593f1232d97c42446.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;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_e3e01977ff08d3bdec83a31c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_17f3570537cac329004eecce.woff2')format("woff");}.fff{font-family:fff;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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_cb1aed8a47364cd2663d0d75.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_210f346de1485efc5ea3551c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_8f1ed1bae80ead0b7a3e45cc.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.435059;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:ff13;src:url('chunks/assets/font_189efec74e8a57c7c75d1b16.woff2')format("woff");}.ff13{font-family:ff13;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsc{letter-spacing:-4.782000px;}
.lsa{letter-spacing:-4.680000px;}
.lsb{letter-spacing:-3.960000px;}
.lsf{letter-spacing:-1.800000px;}
.ls8{letter-spacing:-0.298200px;}
.lsd{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.174240px;}
.ls10{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.lse{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.786240px;}
.ls14{letter-spacing:0.900000px;}
.ls13{letter-spacing:15.786720px;}
.ls12{letter-spacing:45.306720px;}
.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;}
}
.ws0{word-spacing:-16.626360px;}
.ws1{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.140000px;}
.ws8{word-spacing:-10.980000px;}
.ws7{word-spacing:-10.260000px;}
.ws2{word-spacing:-8.786880px;}
.ws3{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._1d{margin-left:-8.200560px;}
._1b{margin-left:-7.049520px;}
._15{margin-left:-6.035760px;}
._4{margin-left:-4.535040px;}
._2{margin-left:-3.180000px;}
._3{margin-left:-2.064000px;}
._0{margin-left:-1.032000px;}
._1{width:1.080000px;}
._7{width:2.094720px;}
._6{width:3.575760px;}
._b{width:4.733040px;}
._5{width:5.935440px;}
._13{width:6.981600px;}
._10{width:8.778240px;}
._11{width:10.370640px;}
._14{width:11.641200px;}
._17{width:12.848400px;}
._1c{width:16.847760px;}
._12{width:18.900000px;}
._c{width:20.098800px;}
._9{width:21.481680px;}
._8{width:23.067360px;}
._a{width:24.580560px;}
._e{width:44.879760px;}
._d{width:47.684160px;}
._f{width:52.804080px;}
._19{width:80.018640px;}
._18{width:84.381120px;}
._1a{width:270.347520px;}
._16{width:1163.100000px;}
.fc6{color:rgb(33,37,41);}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y43{bottom:3.240000px;}
.y7b{bottom:3.420000px;}
.y40{bottom:3.600000px;}
.y3{bottom:3.780000px;}
.ye{bottom:4.320000px;}
.y18{bottom:4.860000px;}
.y76{bottom:11.520000px;}
.yab{bottom:11.880000px;}
.yac{bottom:12.240000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:14.040000px;}
.y44{bottom:15.120000px;}
.y86{bottom:16.200000px;}
.y4{bottom:17.496000px;}
.y42{bottom:18.000000px;}
.y2{bottom:20.196000px;}
.ya8{bottom:20.700000px;}
.y3f{bottom:20.880000px;}
.ya6{bottom:29.340000px;}
.y17{bottom:29.565000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.500000px;}
.ya7{bottom:37.980000px;}
.y3e{bottom:38.160000px;}
.y16{bottom:46.125000px;}
.ya{bottom:46.620000px;}
.y1{bottom:54.000000px;}
.ya9{bottom:55.260000px;}
.y3d{bottom:55.440000px;}
.y15{bottom:62.505000px;}
.y3c{bottom:72.720000px;}
.y9{bottom:73.440000px;}
.y14{bottom:78.165000px;}
.y13{bottom:88.785000px;}
.y3b{bottom:90.000000px;}
.y8{bottom:93.060000px;}
.ycc{bottom:101.016000px;}
.y91{bottom:101.916000px;}
.y53{bottom:102.816000px;}
.y3a{bottom:107.100000px;}
.y12{bottom:107.145000px;}
.y7{bottom:111.450000px;}
.ya2{bottom:111.636000px;}
.y90{bottom:116.136000px;}
.ycb{bottom:118.296000px;}
.y52{bottom:120.096000px;}
.y39{bottom:124.380000px;}
.y11{bottom:125.685000px;}
.ya1{bottom:128.556000px;}
.y8f{bottom:134.136000px;}
.yca{bottom:135.576000px;}
.y51{bottom:137.376000px;}
.y38{bottom:141.660000px;}
.ya0{bottom:142.416000px;}
.y10{bottom:150.165000px;}
.y8e{bottom:152.130000px;}
.yc9{bottom:152.850000px;}
.y50{bottom:154.650000px;}
.y37{bottom:158.940000px;}
.y8d{bottom:170.130000px;}
.y4f{bottom:171.930000px;}
.y36{bottom:176.220000px;}
.yc8{bottom:187.230000px;}
.y8c{bottom:188.130000px;}
.y4e{bottom:189.030000px;}
.y35{bottom:193.500000px;}
.yc7{bottom:204.510000px;}
.y4d{bottom:205.950000px;}
.y8b{bottom:206.130000px;}
.y34{bottom:210.600000px;}
.y27{bottom:217.110000px;}
.yc6{bottom:221.790000px;}
.y4c{bottom:223.590000px;}
.y8a{bottom:224.130000px;}
.y33{bottom:227.910000px;}
.y26{bottom:232.410000px;}
.yc5{bottom:239.070000px;}
.y4b{bottom:240.870000px;}
.y89{bottom:242.130000px;}
.y32{bottom:245.190000px;}
.y25{bottom:250.410000px;}
.yc4{bottom:256.350000px;}
.y4a{bottom:258.150000px;}
.y88{bottom:260.130000px;}
.y31{bottom:262.470000px;}
.y24{bottom:267.690000px;}
.yc3{bottom:273.630000px;}
.y49{bottom:275.430000px;}
.y87{bottom:278.130000px;}
.y30{bottom:279.750000px;}
.y23{bottom:284.970000px;}
.yc2{bottom:290.730000px;}
.y48{bottom:292.530000px;}
.y85{bottom:296.130000px;}
.y2f{bottom:296.850000px;}
.y22{bottom:302.250000px;}
.yc1{bottom:308.010000px;}
.y47{bottom:309.810000px;}
.y2e{bottom:314.130000px;}
.y21{bottom:319.710000px;}
.yc0{bottom:325.290000px;}
.y46{bottom:326.730000px;}
.y84{bottom:330.330000px;}
.y2d{bottom:331.410000px;}
.y20{bottom:337.170000px;}
.ybf{bottom:342.615000px;}
.y45{bottom:344.415000px;}
.y83{bottom:348.015000px;}
.y2c{bottom:348.690000px;}
.y1f{bottom:354.450000px;}
.y41{bottom:357.915000px;}
.ybe{bottom:359.895000px;}
.y82{bottom:362.235000px;}
.y9f{bottom:364.395000px;}
.y2b{bottom:365.970000px;}
.y1e{bottom:374.790000px;}
.ybd{bottom:377.175000px;}
.y81{bottom:380.235000px;}
.y9e{bottom:381.315000px;}
.y2a{bottom:383.250000px;}
.y1b{bottom:387.255000px;}
.ybc{bottom:394.275000px;}
.y9d{bottom:395.355000px;}
.y80{bottom:398.235000px;}
.y29{bottom:400.350000px;}
.y1d{bottom:402.330000px;}
.ybb{bottom:411.555000px;}
.y7f{bottom:416.235000px;}
.y28{bottom:417.630000px;}
.y1c{bottom:419.790000px;}
.yba{bottom:428.835000px;}
.y7e{bottom:434.235000px;}
.yb9{bottom:446.115000px;}
.y7d{bottom:452.235000px;}
.yb8{bottom:463.035000px;}
.y7c{bottom:470.235000px;}
.yb7{bottom:480.495000px;}
.y7a{bottom:488.235000px;}
.yb6{bottom:497.775000px;}
.y79{bottom:509.655000px;}
.yb5{bottom:515.055000px;}
.y78{bottom:527.295000px;}
.yb4{bottom:532.335000px;}
.y77{bottom:541.515000px;}
.yb3{bottom:549.615000px;}
.y75{bottom:559.515000px;}
.yb2{bottom:566.535000px;}
.yb1{bottom:583.995000px;}
.y74{bottom:589.035000px;}
.yb0{bottom:598.395000px;}
.y9c{bottom:599.115000px;}
.y73{bottom:606.525000px;}
.y9b{bottom:616.065000px;}
.yaf{bottom:616.425000px;}
.y72{bottom:623.805000px;}
.y9a{bottom:629.925000px;}
.yae{bottom:634.425000px;}
.y71{bottom:641.085000px;}
.yad{bottom:652.425000px;}
.y70{bottom:658.365000px;}
.yaa{bottom:670.425000px;}
.y6f{bottom:675.645000px;}
.y6e{bottom:692.925000px;}
.ya5{bottom:705.525000px;}
.y6d{bottom:710.025000px;}
.y6c{bottom:727.305000px;}
.y6b{bottom:744.585000px;}
.y6a{bottom:761.865000px;}
.ya4{bottom:778.785000px;}
.y69{bottom:779.145000px;}
.y68{bottom:796.245000px;}
.y67{bottom:813.525000px;}
.y19{bottom:818.385000px;}
.y66{bottom:830.805000px;}
.y99{bottom:836.205000px;}
.yf{bottom:847.905000px;}
.y65{bottom:848.085000px;}
.y98{bottom:853.125000px;}
.y64{bottom:865.365000px;}
.y97{bottom:866.985000px;}
.y63{bottom:882.690000px;}
.y62{bottom:899.790000px;}
.y61{bottom:917.070000px;}
.y60{bottom:934.350000px;}
.y5f{bottom:951.630000px;}
.y5e{bottom:968.910000px;}
.y5d{bottom:986.190000px;}
.y5c{bottom:1003.290000px;}
.yd{bottom:1013.370000px;}
.y5b{bottom:1020.570000px;}
.y6{bottom:1033.350000px;}
.y5a{bottom:1037.850000px;}
.y59{bottom:1054.770000px;}
.ya3{bottom:1055.130000px;}
.y96{bottom:1069.350000px;}
.y58{bottom:1072.410000px;}
.y95{bottom:1083.570000px;}
.y57{bottom:1089.690000px;}
.y94{bottom:1101.570000px;}
.y56{bottom:1106.790000px;}
.y93{bottom:1119.570000px;}
.y55{bottom:1124.070000px;}
.y92{bottom:1141.020000px;}
.y54{bottom:1141.380000px;}
.h26{height:17.100000px;}
.h27{height:17.136000px;}
.h22{height:17.280000px;}
.hb{height:19.620000px;}
.h21{height:25.380000px;}
.h12{height:28.968750px;}
.h1f{height:29.340000px;}
.h13{height:29.520000px;}
.h23{height:30.060000px;}
.h2{height:32.976000px;}
.h25{height:34.380000px;}
.h11{height:35.806641px;}
.h8{height:36.180000px;}
.h1b{height:38.818125px;}
.h1c{height:41.726953px;}
.h1e{height:42.164648px;}
.h4{height:43.453125px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h19{height:45.770625px;}
.h16{height:47.980898px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.h18{height:56.741133px;}
.hf{height:59.439023px;}
.h1a{height:59.614102px;}
.h10{height:61.189805px;}
.h1d{height:61.423863px;}
.h20{height:62.211094px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h24{height:69.120000px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:165.450000px;}
.h15{height:431.130000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:52.560000px;}
.w3{width:73.080000px;}
.w1a{width:83.376000px;}
.w16{width:113.040000px;}
.w19{width:116.100000px;}
.w15{width:116.316000px;}
.wf{width:117.756000px;}
.w10{width:122.760000px;}
.w13{width:126.720000px;}
.w14{width:126.936000px;}
.w1c{width:130.680000px;}
.w1b{width:131.796000px;}
.w5{width:151.950000px;}
.w11{width:177.690000px;}
.wd{width:181.830000px;}
.w17{width:211.575000px;}
.w8{width:216.075000px;}
.wb{width:242.670000px;}
.wa{width:242.715000px;}
.wc{width:242.850000px;}
.w12{width:243.615000px;}
.we{width:309.315000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x11{left:12.600000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x2d{left:107.855987px;}
.xb{left:171.030000px;}
.xc{left:189.390000px;}
.x25{left:201.449987px;}
.xd{left:206.535000px;}
.xf{left:215.175000px;}
.xe{left:216.975000px;}
.x5{left:232.950000px;}
.x22{left:235.829987px;}
.x21{left:246.449987px;}
.x1c{left:256.889987px;}
.x16{left:264.270000px;}
.x15{left:271.109987px;}
.x8{left:272.235000px;}
.x12{left:292.934987px;}
.x27{left:294.015000px;}
.x10{left:297.075000px;}
.x26{left:308.414987px;}
.x13{left:325.155000px;}
.x6{left:331.995000px;}
.x28{left:347.295000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x19{left:391.755000px;}
.x2c{left:396.074987px;}
.x24{left:438.014987px;}
.x9{left:439.500000px;}
.x17{left:446.835000px;}
.x1d{left:453.675000px;}
.x29{left:464.115000px;}
.x1a{left:510.225000px;}
.x2a{left:548.205000px;}
.x14{left:568.545000px;}
.x20{left:579.704987px;}
.x1e{left:581.325000px;}
.x23{left:597.344987px;}
.x18{left:629.565000px;}
.x1b{left:633.705000px;}
.x2b{left:680.730000px;}
.x1f{left:698.370000px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsc{letter-spacing:-4.250667pt;}
.lsa{letter-spacing:-4.160000pt;}
.lsb{letter-spacing:-3.520000pt;}
.lsf{letter-spacing:-1.600000pt;}
.ls8{letter-spacing:-0.265067pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.154880pt;}
.ls10{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.lse{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls14{letter-spacing:0.800000pt;}
.ls13{letter-spacing:14.032640pt;}
.ls12{letter-spacing:40.272640pt;}
.ws0{word-spacing:-14.778987pt;}
.ws1{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.640000pt;}
.ws9{word-spacing:-12.005120pt;}
.wsb{word-spacing:-11.680000pt;}
.ws8{word-spacing:-9.760000pt;}
.ws7{word-spacing:-9.120000pt;}
.ws2{word-spacing:-7.810560pt;}
.ws3{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._1d{margin-left:-7.289387pt;}
._1b{margin-left:-6.266240pt;}
._15{margin-left:-5.365120pt;}
._4{margin-left:-4.031147pt;}
._2{margin-left:-2.826667pt;}
._3{margin-left:-1.834667pt;}
._0{margin-left:-0.917333pt;}
._1{width:0.960000pt;}
._7{width:1.861973pt;}
._6{width:3.178453pt;}
._b{width:4.207147pt;}
._5{width:5.275947pt;}
._13{width:6.205867pt;}
._10{width:7.802880pt;}
._11{width:9.218347pt;}
._14{width:10.347733pt;}
._17{width:11.420800pt;}
._1c{width:14.975787pt;}
._12{width:16.800000pt;}
._c{width:17.865600pt;}
._9{width:19.094827pt;}
._8{width:20.504320pt;}
._a{width:21.849387pt;}
._e{width:39.893120pt;}
._d{width:42.385920pt;}
._f{width:46.936960pt;}
._19{width:71.127680pt;}
._18{width:75.005440pt;}
._1a{width:240.308907pt;}
._16{width:1033.866667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:2.880000pt;}
.y7b{bottom:3.040000pt;}
.y40{bottom:3.200000pt;}
.y3{bottom:3.360000pt;}
.ye{bottom:3.840000pt;}
.y18{bottom:4.320000pt;}
.y76{bottom:10.240000pt;}
.yab{bottom:10.560000pt;}
.yac{bottom:10.880000pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.480000pt;}
.y44{bottom:13.440000pt;}
.y86{bottom:14.400000pt;}
.y4{bottom:15.552000pt;}
.y42{bottom:16.000000pt;}
.y2{bottom:17.952000pt;}
.ya8{bottom:18.400000pt;}
.y3f{bottom:18.560000pt;}
.ya6{bottom:26.080000pt;}
.y17{bottom:26.280000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:28.000000pt;}
.ya7{bottom:33.760000pt;}
.y3e{bottom:33.920000pt;}
.y16{bottom:41.000000pt;}
.ya{bottom:41.440000pt;}
.y1{bottom:48.000000pt;}
.ya9{bottom:49.120000pt;}
.y3d{bottom:49.280000pt;}
.y15{bottom:55.560000pt;}
.y3c{bottom:64.640000pt;}
.y9{bottom:65.280000pt;}
.y14{bottom:69.480000pt;}
.y13{bottom:78.920000pt;}
.y3b{bottom:80.000000pt;}
.y8{bottom:82.720000pt;}
.ycc{bottom:89.792000pt;}
.y91{bottom:90.592000pt;}
.y53{bottom:91.392000pt;}
.y3a{bottom:95.200000pt;}
.y12{bottom:95.240000pt;}
.y7{bottom:99.066667pt;}
.ya2{bottom:99.232000pt;}
.y90{bottom:103.232000pt;}
.ycb{bottom:105.152000pt;}
.y52{bottom:106.752000pt;}
.y39{bottom:110.560000pt;}
.y11{bottom:111.720000pt;}
.ya1{bottom:114.272000pt;}
.y8f{bottom:119.232000pt;}
.yca{bottom:120.512000pt;}
.y51{bottom:122.112000pt;}
.y38{bottom:125.920000pt;}
.ya0{bottom:126.592000pt;}
.y10{bottom:133.480000pt;}
.y8e{bottom:135.226667pt;}
.yc9{bottom:135.866667pt;}
.y50{bottom:137.466667pt;}
.y37{bottom:141.280000pt;}
.y8d{bottom:151.226667pt;}
.y4f{bottom:152.826667pt;}
.y36{bottom:156.640000pt;}
.yc8{bottom:166.426667pt;}
.y8c{bottom:167.226667pt;}
.y4e{bottom:168.026667pt;}
.y35{bottom:172.000000pt;}
.yc7{bottom:181.786667pt;}
.y4d{bottom:183.066667pt;}
.y8b{bottom:183.226667pt;}
.y34{bottom:187.200000pt;}
.y27{bottom:192.986667pt;}
.yc6{bottom:197.146667pt;}
.y4c{bottom:198.746667pt;}
.y8a{bottom:199.226667pt;}
.y33{bottom:202.586667pt;}
.y26{bottom:206.586667pt;}
.yc5{bottom:212.506667pt;}
.y4b{bottom:214.106667pt;}
.y89{bottom:215.226667pt;}
.y32{bottom:217.946667pt;}
.y25{bottom:222.586667pt;}
.yc4{bottom:227.866667pt;}
.y4a{bottom:229.466667pt;}
.y88{bottom:231.226667pt;}
.y31{bottom:233.306667pt;}
.y24{bottom:237.946667pt;}
.yc3{bottom:243.226667pt;}
.y49{bottom:244.826667pt;}
.y87{bottom:247.226667pt;}
.y30{bottom:248.666667pt;}
.y23{bottom:253.306667pt;}
.yc2{bottom:258.426667pt;}
.y48{bottom:260.026667pt;}
.y85{bottom:263.226667pt;}
.y2f{bottom:263.866667pt;}
.y22{bottom:268.666667pt;}
.yc1{bottom:273.786667pt;}
.y47{bottom:275.386667pt;}
.y2e{bottom:279.226667pt;}
.y21{bottom:284.186667pt;}
.yc0{bottom:289.146667pt;}
.y46{bottom:290.426667pt;}
.y84{bottom:293.626667pt;}
.y2d{bottom:294.586667pt;}
.y20{bottom:299.706667pt;}
.ybf{bottom:304.546667pt;}
.y45{bottom:306.146667pt;}
.y83{bottom:309.346667pt;}
.y2c{bottom:309.946667pt;}
.y1f{bottom:315.066667pt;}
.y41{bottom:318.146667pt;}
.ybe{bottom:319.906667pt;}
.y82{bottom:321.986667pt;}
.y9f{bottom:323.906667pt;}
.y2b{bottom:325.306667pt;}
.y1e{bottom:333.146667pt;}
.ybd{bottom:335.266667pt;}
.y81{bottom:337.986667pt;}
.y9e{bottom:338.946667pt;}
.y2a{bottom:340.666667pt;}
.y1b{bottom:344.226667pt;}
.ybc{bottom:350.466667pt;}
.y9d{bottom:351.426667pt;}
.y80{bottom:353.986667pt;}
.y29{bottom:355.866667pt;}
.y1d{bottom:357.626667pt;}
.ybb{bottom:365.826667pt;}
.y7f{bottom:369.986667pt;}
.y28{bottom:371.226667pt;}
.y1c{bottom:373.146667pt;}
.yba{bottom:381.186667pt;}
.y7e{bottom:385.986667pt;}
.yb9{bottom:396.546667pt;}
.y7d{bottom:401.986667pt;}
.yb8{bottom:411.586667pt;}
.y7c{bottom:417.986667pt;}
.yb7{bottom:427.106667pt;}
.y7a{bottom:433.986667pt;}
.yb6{bottom:442.466667pt;}
.y79{bottom:453.026667pt;}
.yb5{bottom:457.826667pt;}
.y78{bottom:468.706667pt;}
.yb4{bottom:473.186667pt;}
.y77{bottom:481.346667pt;}
.yb3{bottom:488.546667pt;}
.y75{bottom:497.346667pt;}
.yb2{bottom:503.586667pt;}
.yb1{bottom:519.106667pt;}
.y74{bottom:523.586667pt;}
.yb0{bottom:531.906667pt;}
.y9c{bottom:532.546667pt;}
.y73{bottom:539.133333pt;}
.y9b{bottom:547.613333pt;}
.yaf{bottom:547.933333pt;}
.y72{bottom:554.493333pt;}
.y9a{bottom:559.933333pt;}
.yae{bottom:563.933333pt;}
.y71{bottom:569.853333pt;}
.yad{bottom:579.933333pt;}
.y70{bottom:585.213333pt;}
.yaa{bottom:595.933333pt;}
.y6f{bottom:600.573333pt;}
.y6e{bottom:615.933333pt;}
.ya5{bottom:627.133333pt;}
.y6d{bottom:631.133333pt;}
.y6c{bottom:646.493333pt;}
.y6b{bottom:661.853333pt;}
.y6a{bottom:677.213333pt;}
.ya4{bottom:692.253333pt;}
.y69{bottom:692.573333pt;}
.y68{bottom:707.773333pt;}
.y67{bottom:723.133333pt;}
.y19{bottom:727.453333pt;}
.y66{bottom:738.493333pt;}
.y99{bottom:743.293333pt;}
.yf{bottom:753.693333pt;}
.y65{bottom:753.853333pt;}
.y98{bottom:758.333333pt;}
.y64{bottom:769.213333pt;}
.y97{bottom:770.653333pt;}
.y63{bottom:784.613333pt;}
.y62{bottom:799.813333pt;}
.y61{bottom:815.173333pt;}
.y60{bottom:830.533333pt;}
.y5f{bottom:845.893333pt;}
.y5e{bottom:861.253333pt;}
.y5d{bottom:876.613333pt;}
.y5c{bottom:891.813333pt;}
.yd{bottom:900.773333pt;}
.y5b{bottom:907.173333pt;}
.y6{bottom:918.533333pt;}
.y5a{bottom:922.533333pt;}
.y59{bottom:937.573333pt;}
.ya3{bottom:937.893333pt;}
.y96{bottom:950.533333pt;}
.y58{bottom:953.253333pt;}
.y95{bottom:963.173333pt;}
.y57{bottom:968.613333pt;}
.y94{bottom:979.173333pt;}
.y56{bottom:983.813333pt;}
.y93{bottom:995.173333pt;}
.y55{bottom:999.173333pt;}
.y92{bottom:1014.240000pt;}
.y54{bottom:1014.560000pt;}
.h26{height:15.200000pt;}
.h27{height:15.232000pt;}
.h22{height:15.360000pt;}
.hb{height:17.440000pt;}
.h21{height:22.560000pt;}
.h12{height:25.750000pt;}
.h1f{height:26.080000pt;}
.h13{height:26.240000pt;}
.h23{height:26.720000pt;}
.h2{height:29.312000pt;}
.h25{height:30.560000pt;}
.h11{height:31.828125pt;}
.h8{height:32.160000pt;}
.h1b{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1e{height:37.479688pt;}
.h4{height:38.625000pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h19{height:40.685000pt;}
.h16{height:42.649687pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.h18{height:50.436563pt;}
.hf{height:52.834688pt;}
.h1a{height:52.990313pt;}
.h10{height:54.390938pt;}
.h1d{height:54.598989pt;}
.h20{height:55.298750pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h24{height:61.440000pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:147.066667pt;}
.h15{height:383.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:46.720000pt;}
.w3{width:64.960000pt;}
.w1a{width:74.112000pt;}
.w16{width:100.480000pt;}
.w19{width:103.200000pt;}
.w15{width:103.392000pt;}
.wf{width:104.672000pt;}
.w10{width:109.120000pt;}
.w13{width:112.640000pt;}
.w14{width:112.832000pt;}
.w1c{width:116.160000pt;}
.w1b{width:117.152000pt;}
.w5{width:135.066667pt;}
.w11{width:157.946667pt;}
.wd{width:161.626667pt;}
.w17{width:188.066667pt;}
.w8{width:192.066667pt;}
.wb{width:215.706667pt;}
.wa{width:215.746667pt;}
.wc{width:215.866667pt;}
.w12{width:216.546667pt;}
.we{width:274.946667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x11{left:11.200000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x2d{left:95.871988pt;}
.xb{left:152.026667pt;}
.xc{left:168.346667pt;}
.x25{left:179.066655pt;}
.xd{left:183.586667pt;}
.xf{left:191.266667pt;}
.xe{left:192.866667pt;}
.x5{left:207.066667pt;}
.x22{left:209.626655pt;}
.x21{left:219.066655pt;}
.x1c{left:228.346655pt;}
.x16{left:234.906667pt;}
.x15{left:240.986655pt;}
.x8{left:241.986667pt;}
.x12{left:260.386655pt;}
.x27{left:261.346667pt;}
.x10{left:264.066667pt;}
.x26{left:274.146655pt;}
.x13{left:289.026667pt;}
.x6{left:295.106667pt;}
.x28{left:308.706667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x19{left:348.226667pt;}
.x2c{left:352.066655pt;}
.x24{left:389.346655pt;}
.x9{left:390.666667pt;}
.x17{left:397.186667pt;}
.x1d{left:403.266667pt;}
.x29{left:412.546667pt;}
.x1a{left:453.533333pt;}
.x2a{left:487.293333pt;}
.x14{left:505.373333pt;}
.x20{left:515.293322pt;}
.x1e{left:516.733333pt;}
.x23{left:530.973322pt;}
.x18{left:559.613333pt;}
.x1b{left:563.293333pt;}
.x2b{left:605.093333pt;}
.x1f{left:620.773333pt;}
.x3{left:656.933333pt;}
}




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