
    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_0abe7855db3bd85a2f92cd06.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_033b33d662964ffb397e5044.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_57bc65219561e009db131c2e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_3439745e3414705501ce0519.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_2ee4cbf979609bcb3b6506c2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4b6869db3916d4073e6fa07c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_4bef72ecfd2b45d5535d6c44.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_13753ed246d4f69a6af52c08.woff')format("woff");}.ffc{font-family:ffc;line-height:0.995605;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_9c3f1688439effb7925c2662.woff')format("woff");}.ffd{font-family:ffd;line-height:0.694336;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_7a2a807297442d405fbebb4b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.884766;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_2baa7189f32f6b97c124f7b1.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_0c6028d34ed595a9c4a8d2fc.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_43edb0d2f255e770439c00f9.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_186837ca68a9ae58ef31920c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.766602;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:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.lsa{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.457800px;}
.ls13{letter-spacing:-0.414600px;}
.ls19{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.190200px;}
.ls9{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.114000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078000px;}
.ls15{letter-spacing:0.080400px;}
.ls10{letter-spacing:0.109200px;}
.ls1{letter-spacing:0.187200px;}
.ls14{letter-spacing:0.262200px;}
.lsb{letter-spacing:0.315600px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.414600px;}
.lse{letter-spacing:0.567600px;}
.ls3{letter-spacing:0.576000px;}
.ls16{letter-spacing:6.785280px;}
.ls17{letter-spacing:20.880000px;}
.ls12{letter-spacing:22.320000px;}
.lsc{letter-spacing:39.881280px;}
.ls4{letter-spacing:39.905280px;}
.lsd{letter-spacing:59.345280px;}
.ls18{letter-spacing:849.185760px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-66.240000px;}
.wse{word-spacing:-37.756800px;}
.ws0{word-spacing:-24.176880px;}
.ws1{word-spacing:-24.062880px;}
.ws2{word-spacing:-19.010880px;}
.ws4{word-spacing:-18.532800px;}
.ws3{word-spacing:-18.342600px;}
.wsa{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.280000px;}
.wsd{word-spacing:-17.127600px;}
.ws11{word-spacing:-16.822200px;}
.ws12{word-spacing:-16.640400px;}
.ws9{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.254600px;}
.ws10{word-spacing:-16.145400px;}
.ws6{word-spacing:-15.912000px;}
.ws7{word-spacing:-15.696000px;}
.ws5{word-spacing:-14.650800px;}
.wsb{word-spacing:-10.755600px;}
.wsc{word-spacing:0.000000px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._d{width:2.503680px;}
._c{width:3.559440px;}
._8{width:4.968000px;}
._9{width:6.239760px;}
._5{width:8.267520px;}
._6{width:9.396720px;}
._7{width:10.951680px;}
._f{width:12.392640px;}
._e{width:14.344320px;}
._a{width:15.439440px;}
._3{width:18.511920px;}
._2{width:19.774800px;}
._4{width:21.012960px;}
._31{width:22.186320px;}
._24{width:24.054960px;}
._b{width:25.090560px;}
._14{width:27.158400px;}
._17{width:28.814400px;}
._18{width:30.448560px;}
._25{width:31.573200px;}
._16{width:32.722560px;}
._2c{width:33.916320px;}
._22{width:34.931520px;}
._23{width:35.940960px;}
._20{width:37.592160px;}
._21{width:38.685360px;}
._2b{width:39.736800px;}
._37{width:45.705600px;}
._32{width:46.871760px;}
._1b{width:48.156480px;}
._1a{width:49.835280px;}
._15{width:50.900160px;}
._2e{width:52.395840px;}
._1c{width:54.440160px;}
._11{width:56.799120px;}
._10{width:57.960000px;}
._33{width:61.536960px;}
._2a{width:62.861760px;}
._12{width:66.348480px;}
._13{width:67.516080px;}
._19{width:73.195200px;}
._36{width:75.007200px;}
._2d{width:76.904640px;}
._29{width:88.629840px;}
._27{width:100.975680px;}
._28{width:102.755520px;}
._26{width:118.737360px;}
._35{width:136.489680px;}
._34{width:138.090000px;}
._1f{width:152.893440px;}
._1d{width:189.617520px;}
._1e{width:197.647200px;}
._30{width:523.229760px;}
._2f{width:704.661120px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fsa{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y19{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.y8c{bottom:3.600000px;}
.y92{bottom:3.960000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.y91{bottom:23.040000px;}
.y95{bottom:23.760000px;}
.y16{bottom:26.505000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.y8f{bottom:42.660000px;}
.y15{bottom:47.925000px;}
.y1{bottom:51.480000px;}
.y8e{bottom:61.740000px;}
.y14{bottom:70.785000px;}
.y40{bottom:75.240000px;}
.y13{bottom:93.285000px;}
.yab{bottom:117.180000px;}
.ybd{bottom:120.600000px;}
.y8a{bottom:128.160000px;}
.y3a{bottom:129.600000px;}
.y6b{bottom:133.740000px;}
.yaa{bottom:141.840000px;}
.ybc{bottom:145.260000px;}
.y89{bottom:152.820000px;}
.y39{bottom:154.260000px;}
.y6a{bottom:158.400000px;}
.ya9{bottom:166.500000px;}
.ybb{bottom:169.920000px;}
.y88{bottom:177.480000px;}
.y38{bottom:178.920000px;}
.y69{bottom:183.060000px;}
.ya8{bottom:191.160000px;}
.yba{bottom:194.580000px;}
.y87{bottom:202.140000px;}
.y37{bottom:203.580000px;}
.y68{bottom:207.750000px;}
.ya7{bottom:215.850000px;}
.yb9{bottom:219.270000px;}
.y86{bottom:226.830000px;}
.y36{bottom:228.270000px;}
.y67{bottom:232.410000px;}
.ya6{bottom:240.510000px;}
.yb8{bottom:244.110000px;}
.y85{bottom:251.490000px;}
.y35{bottom:252.930000px;}
.y66{bottom:257.070000px;}
.ya5{bottom:265.170000px;}
.yb7{bottom:268.770000px;}
.y84{bottom:276.150000px;}
.y34{bottom:277.590000px;}
.y65{bottom:281.730000px;}
.ya4{bottom:289.830000px;}
.yb6{bottom:293.430000px;}
.y83{bottom:300.810000px;}
.y33{bottom:302.430000px;}
.y64{bottom:306.390000px;}
.ya3{bottom:314.130000px;}
.yb5{bottom:318.090000px;}
.y82{bottom:325.650000px;}
.y3d{bottom:326.730000px;}
.y32{bottom:327.090000px;}
.y63{bottom:331.050000px;}
.ya2{bottom:339.150000px;}
.yb4{bottom:342.750000px;}
.y3c{bottom:351.390000px;}
.y31{bottom:351.750000px;}
.y62{bottom:355.710000px;}
.ya1{bottom:363.810000px;}
.yb3{bottom:367.050000px;}
.y81{bottom:376.050000px;}
.y30{bottom:376.410000px;}
.y61{bottom:380.730000px;}
.ya0{bottom:388.470000px;}
.yb2{bottom:391.710000px;}
.y80{bottom:400.710000px;}
.y2f{bottom:401.070000px;}
.y60{bottom:405.390000px;}
.y9f{bottom:413.310000px;}
.yb1{bottom:416.730000px;}
.y7f{bottom:425.550000px;}
.y2e{bottom:425.730000px;}
.y5f{bottom:430.050000px;}
.y9e{bottom:439.050000px;}
.yb0{bottom:441.435000px;}
.y2d{bottom:450.435000px;}
.y7e{bottom:451.335000px;}
.y5e{bottom:454.755000px;}
.y9d{bottom:463.755000px;}
.yaf{bottom:466.095000px;}
.y2c{bottom:474.735000px;}
.y3b{bottom:475.095000px;}
.y7d{bottom:475.995000px;}
.y5d{bottom:479.595000px;}
.y9c{bottom:489.495000px;}
.yae{bottom:490.755000px;}
.y2b{bottom:499.395000px;}
.y7c{bottom:500.655000px;}
.y5c{bottom:504.255000px;}
.y9b{bottom:514.335000px;}
.yad{bottom:515.415000px;}
.y2a{bottom:523.335000px;}
.y7b{bottom:525.315000px;}
.y5b{bottom:528.915000px;}
.y9a{bottom:539.715000px;}
.yac{bottom:540.075000px;}
.y29{bottom:550.155000px;}
.y7a{bottom:550.695000px;}
.y5a{bottom:553.575000px;}
.y99{bottom:564.375000px;}
.y28{bottom:571.935000px;}
.y79{bottom:575.355000px;}
.y59{bottom:578.235000px;}
.y98{bottom:585.615000px;}
.y27{bottom:593.715000px;}
.y78{bottom:600.195000px;}
.y58{bottom:602.895000px;}
.y26{bottom:615.495000px;}
.y77{bottom:625.215000px;}
.ybe{bottom:627.195000px;}
.y57{bottom:627.555000px;}
.y25{bottom:637.455000px;}
.y76{bottom:649.875000px;}
.y56{bottom:652.215000px;}
.y24{bottom:659.235000px;}
.y75{bottom:675.615000px;}
.y55{bottom:676.905000px;}
.y23{bottom:681.045000px;}
.y74{bottom:700.485000px;}
.y54{bottom:701.565000px;}
.y22{bottom:702.825000px;}
.y21{bottom:724.605000px;}
.y73{bottom:725.865000px;}
.y53{bottom:726.225000px;}
.y20{bottom:746.565000px;}
.y72{bottom:750.525000px;}
.y52{bottom:750.885000px;}
.y1f{bottom:768.345000px;}
.y51{bottom:775.545000px;}
.y1e{bottom:790.125000px;}
.y50{bottom:799.845000px;}
.y71{bottom:800.205000px;}
.y1d{bottom:811.905000px;}
.y4f{bottom:824.505000px;}
.y70{bottom:824.865000px;}
.y1c{bottom:833.865000px;}
.y4e{bottom:849.525000px;}
.y1b{bottom:855.645000px;}
.y4d{bottom:874.185000px;}
.y1a{bottom:877.065000px;}
.y18{bottom:892.365000px;}
.y4c{bottom:898.845000px;}
.y12{bottom:899.565000px;}
.y17{bottom:903.893143px;}
.y97{bottom:906.945000px;}
.y94{bottom:922.650000px;}
.y4b{bottom:923.550000px;}
.y4a{bottom:948.210000px;}
.y96{bottom:961.350000px;}
.y49{bottom:972.870000px;}
.y48{bottom:997.530000px;}
.y93{bottom:1000.050000px;}
.y10{bottom:1018.590000px;}
.y47{bottom:1022.190000px;}
.yd{bottom:1025.070000px;}
.y8d{bottom:1038.750000px;}
.y46{bottom:1046.850000px;}
.y45{bottom:1071.150000px;}
.y6f{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y90{bottom:1077.450000px;}
.y9{bottom:1081.950000px;}
.y44{bottom:1095.810000px;}
.y6e{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.y8b{bottom:1116.150000px;}
.y43{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y6d{bottom:1145.130000px;}
.y42{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y6c{bottom:1169.820000px;}
.y41{bottom:1170.180000px;}
.y3f{bottom:1187.280000px;}
.y3e{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h16{height:7.200000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h20{height:18.885000px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1d{height:30.480469px;}
.h22{height:37.965000px;}
.h1f{height:46.251562px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h1e{height:58.621992px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h18{height:64.978594px;}
.h1b{height:65.010937px;}
.h1a{height:66.757500px;}
.h14{height:67.803750px;}
.h1c{height:68.084282px;}
.h19{height:71.204766px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h4{height:76.317188px;}
.h21{height:76.665000px;}
.hf{height:78.367500px;}
.h3{height:103.530000px;}
.h12{height:119.002500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.wa{width:129.621000px;}
.wb{width:142.050000px;}
.w8{width:172.639500px;}
.w9{width:220.530000px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.x13{left:27.349500px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x17{left:59.743500px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x27{left:113.076000px;}
.x22{left:125.506500px;}
.x1f{left:135.036000px;}
.x28{left:140.076000px;}
.x1b{left:162.030000px;}
.x4{left:168.885000px;}
.x14{left:182.548500px;}
.x18{left:192.808500px;}
.x6{left:209.010000px;}
.x15{left:252.748500px;}
.x23{left:298.875000px;}
.x16{left:301.888500px;}
.x19{left:324.965515px;}
.x12{left:335.578500px;}
.xa{left:445.620000px;}
.x1c{left:473.505000px;}
.x20{left:478.545000px;}
.x1d{left:500.505000px;}
.x21{left:505.545000px;}
.x24{left:520.320000px;}
.x1e{left:527.505000px;}
.x25{left:650.850000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
.x26{left:775.950000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.406933pt;}
.ls13{letter-spacing:-0.368533pt;}
.ls19{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.169067pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.101333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069333pt;}
.ls15{letter-spacing:0.071467pt;}
.ls10{letter-spacing:0.097067pt;}
.ls1{letter-spacing:0.166400pt;}
.ls14{letter-spacing:0.233067pt;}
.lsb{letter-spacing:0.280533pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.368533pt;}
.lse{letter-spacing:0.504533pt;}
.ls3{letter-spacing:0.512000pt;}
.ls16{letter-spacing:6.031360pt;}
.ls17{letter-spacing:18.560000pt;}
.ls12{letter-spacing:19.840000pt;}
.lsc{letter-spacing:35.450027pt;}
.ls4{letter-spacing:35.471360pt;}
.lsd{letter-spacing:52.751360pt;}
.ls18{letter-spacing:754.831787pt;}
.wsf{word-spacing:-58.880000pt;}
.wse{word-spacing:-33.561600pt;}
.ws0{word-spacing:-21.490560pt;}
.ws1{word-spacing:-21.389227pt;}
.ws2{word-spacing:-16.898560pt;}
.ws4{word-spacing:-16.473600pt;}
.ws3{word-spacing:-16.304533pt;}
.wsa{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.360000pt;}
.wsd{word-spacing:-15.224533pt;}
.ws11{word-spacing:-14.953067pt;}
.ws12{word-spacing:-14.791467pt;}
.ws9{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.448533pt;}
.ws10{word-spacing:-14.351467pt;}
.ws6{word-spacing:-14.144000pt;}
.ws7{word-spacing:-13.952000pt;}
.ws5{word-spacing:-13.022933pt;}
.wsb{word-spacing:-9.560533pt;}
.wsc{word-spacing:0.000000pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._d{width:2.225493pt;}
._c{width:3.163947pt;}
._8{width:4.416000pt;}
._9{width:5.546453pt;}
._5{width:7.348907pt;}
._6{width:8.352640pt;}
._7{width:9.734827pt;}
._f{width:11.015680pt;}
._e{width:12.750507pt;}
._a{width:13.723947pt;}
._3{width:16.455040pt;}
._2{width:17.577600pt;}
._4{width:18.678187pt;}
._31{width:19.721173pt;}
._24{width:21.382187pt;}
._b{width:22.302720pt;}
._14{width:24.140800pt;}
._17{width:25.612800pt;}
._18{width:27.065387pt;}
._25{width:28.065067pt;}
._16{width:29.086720pt;}
._2c{width:30.147840pt;}
._22{width:31.050240pt;}
._23{width:31.947520pt;}
._20{width:33.415253pt;}
._21{width:34.386987pt;}
._2b{width:35.321600pt;}
._37{width:40.627200pt;}
._32{width:41.663787pt;}
._1b{width:42.805760pt;}
._1a{width:44.298027pt;}
._15{width:45.244587pt;}
._2e{width:46.574080pt;}
._1c{width:48.391253pt;}
._11{width:50.488107pt;}
._10{width:51.520000pt;}
._33{width:54.699520pt;}
._2a{width:55.877120pt;}
._12{width:58.976427pt;}
._13{width:60.014293pt;}
._19{width:65.062400pt;}
._36{width:66.673067pt;}
._2d{width:68.359680pt;}
._29{width:78.782080pt;}
._27{width:89.756160pt;}
._28{width:91.338240pt;}
._26{width:105.544320pt;}
._35{width:121.324160pt;}
._34{width:122.746667pt;}
._1f{width:135.905280pt;}
._1d{width:168.548907pt;}
._1e{width:175.686400pt;}
._30{width:465.093120pt;}
._2f{width:626.365440pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fsa{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y19{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.y8c{bottom:3.200000pt;}
.y92{bottom:3.520000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.y91{bottom:20.480000pt;}
.y95{bottom:21.120000pt;}
.y16{bottom:23.560000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.y8f{bottom:37.920000pt;}
.y15{bottom:42.600000pt;}
.y1{bottom:45.760000pt;}
.y8e{bottom:54.880000pt;}
.y14{bottom:62.920000pt;}
.y40{bottom:66.880000pt;}
.y13{bottom:82.920000pt;}
.yab{bottom:104.160000pt;}
.ybd{bottom:107.200000pt;}
.y8a{bottom:113.920000pt;}
.y3a{bottom:115.200000pt;}
.y6b{bottom:118.880000pt;}
.yaa{bottom:126.080000pt;}
.ybc{bottom:129.120000pt;}
.y89{bottom:135.840000pt;}
.y39{bottom:137.120000pt;}
.y6a{bottom:140.800000pt;}
.ya9{bottom:148.000000pt;}
.ybb{bottom:151.040000pt;}
.y88{bottom:157.760000pt;}
.y38{bottom:159.040000pt;}
.y69{bottom:162.720000pt;}
.ya8{bottom:169.920000pt;}
.yba{bottom:172.960000pt;}
.y87{bottom:179.680000pt;}
.y37{bottom:180.960000pt;}
.y68{bottom:184.666667pt;}
.ya7{bottom:191.866667pt;}
.yb9{bottom:194.906667pt;}
.y86{bottom:201.626667pt;}
.y36{bottom:202.906667pt;}
.y67{bottom:206.586667pt;}
.ya6{bottom:213.786667pt;}
.yb8{bottom:216.986667pt;}
.y85{bottom:223.546667pt;}
.y35{bottom:224.826667pt;}
.y66{bottom:228.506667pt;}
.ya5{bottom:235.706667pt;}
.yb7{bottom:238.906667pt;}
.y84{bottom:245.466667pt;}
.y34{bottom:246.746667pt;}
.y65{bottom:250.426667pt;}
.ya4{bottom:257.626667pt;}
.yb6{bottom:260.826667pt;}
.y83{bottom:267.386667pt;}
.y33{bottom:268.826667pt;}
.y64{bottom:272.346667pt;}
.ya3{bottom:279.226667pt;}
.yb5{bottom:282.746667pt;}
.y82{bottom:289.466667pt;}
.y3d{bottom:290.426667pt;}
.y32{bottom:290.746667pt;}
.y63{bottom:294.266667pt;}
.ya2{bottom:301.466667pt;}
.yb4{bottom:304.666667pt;}
.y3c{bottom:312.346667pt;}
.y31{bottom:312.666667pt;}
.y62{bottom:316.186667pt;}
.ya1{bottom:323.386667pt;}
.yb3{bottom:326.266667pt;}
.y81{bottom:334.266667pt;}
.y30{bottom:334.586667pt;}
.y61{bottom:338.426667pt;}
.ya0{bottom:345.306667pt;}
.yb2{bottom:348.186667pt;}
.y80{bottom:356.186667pt;}
.y2f{bottom:356.506667pt;}
.y60{bottom:360.346667pt;}
.y9f{bottom:367.386667pt;}
.yb1{bottom:370.426667pt;}
.y7f{bottom:378.266667pt;}
.y2e{bottom:378.426667pt;}
.y5f{bottom:382.266667pt;}
.y9e{bottom:390.266667pt;}
.yb0{bottom:392.386667pt;}
.y2d{bottom:400.386667pt;}
.y7e{bottom:401.186667pt;}
.y5e{bottom:404.226667pt;}
.y9d{bottom:412.226667pt;}
.yaf{bottom:414.306667pt;}
.y2c{bottom:421.986667pt;}
.y3b{bottom:422.306667pt;}
.y7d{bottom:423.106667pt;}
.y5d{bottom:426.306667pt;}
.y9c{bottom:435.106667pt;}
.yae{bottom:436.226667pt;}
.y2b{bottom:443.906667pt;}
.y7c{bottom:445.026667pt;}
.y5c{bottom:448.226667pt;}
.y9b{bottom:457.186667pt;}
.yad{bottom:458.146667pt;}
.y2a{bottom:465.186667pt;}
.y7b{bottom:466.946667pt;}
.y5b{bottom:470.146667pt;}
.y9a{bottom:479.746667pt;}
.yac{bottom:480.066667pt;}
.y29{bottom:489.026667pt;}
.y7a{bottom:489.506667pt;}
.y5a{bottom:492.066667pt;}
.y99{bottom:501.666667pt;}
.y28{bottom:508.386667pt;}
.y79{bottom:511.426667pt;}
.y59{bottom:513.986667pt;}
.y98{bottom:520.546667pt;}
.y27{bottom:527.746667pt;}
.y78{bottom:533.506667pt;}
.y58{bottom:535.906667pt;}
.y26{bottom:547.106667pt;}
.y77{bottom:555.746667pt;}
.ybe{bottom:557.506667pt;}
.y57{bottom:557.826667pt;}
.y25{bottom:566.626667pt;}
.y76{bottom:577.666667pt;}
.y56{bottom:579.746667pt;}
.y24{bottom:585.986667pt;}
.y75{bottom:600.546667pt;}
.y55{bottom:601.693333pt;}
.y23{bottom:605.373333pt;}
.y74{bottom:622.653333pt;}
.y54{bottom:623.613333pt;}
.y22{bottom:624.733333pt;}
.y21{bottom:644.093333pt;}
.y73{bottom:645.213333pt;}
.y53{bottom:645.533333pt;}
.y20{bottom:663.613333pt;}
.y72{bottom:667.133333pt;}
.y52{bottom:667.453333pt;}
.y1f{bottom:682.973333pt;}
.y51{bottom:689.373333pt;}
.y1e{bottom:702.333333pt;}
.y50{bottom:710.973333pt;}
.y71{bottom:711.293333pt;}
.y1d{bottom:721.693333pt;}
.y4f{bottom:732.893333pt;}
.y70{bottom:733.213333pt;}
.y1c{bottom:741.213333pt;}
.y4e{bottom:755.133333pt;}
.y1b{bottom:760.573333pt;}
.y4d{bottom:777.053333pt;}
.y1a{bottom:779.613333pt;}
.y18{bottom:793.213333pt;}
.y4c{bottom:798.973333pt;}
.y12{bottom:799.613333pt;}
.y17{bottom:803.460571pt;}
.y97{bottom:806.173333pt;}
.y94{bottom:820.133333pt;}
.y4b{bottom:820.933333pt;}
.y4a{bottom:842.853333pt;}
.y96{bottom:854.533333pt;}
.y49{bottom:864.773333pt;}
.y48{bottom:886.693333pt;}
.y93{bottom:888.933333pt;}
.y10{bottom:905.413333pt;}
.y47{bottom:908.613333pt;}
.yd{bottom:911.173333pt;}
.y8d{bottom:923.333333pt;}
.y46{bottom:930.533333pt;}
.y45{bottom:952.133333pt;}
.y6f{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y90{bottom:957.733333pt;}
.y9{bottom:961.733333pt;}
.y44{bottom:974.053333pt;}
.y6e{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.y8b{bottom:992.133333pt;}
.y43{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y6d{bottom:1017.893333pt;}
.y42{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y6c{bottom:1039.840000pt;}
.y41{bottom:1040.160000pt;}
.y3f{bottom:1055.360000pt;}
.y3e{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h16{height:6.400000pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h20{height:16.786667pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1d{height:27.093750pt;}
.h22{height:33.746667pt;}
.h1f{height:41.112500pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h1e{height:52.108438pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h18{height:57.758750pt;}
.h1b{height:57.787500pt;}
.h1a{height:59.340000pt;}
.h14{height:60.270000pt;}
.h1c{height:60.519362pt;}
.h19{height:63.293125pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h4{height:67.837500pt;}
.h21{height:68.146667pt;}
.hf{height:69.660000pt;}
.h3{height:92.026667pt;}
.h12{height:105.780000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.wa{width:115.218667pt;}
.wb{width:126.266667pt;}
.w8{width:153.457333pt;}
.w9{width:196.026667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.x13{left:24.310667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x17{left:53.105333pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x27{left:100.512000pt;}
.x22{left:111.561333pt;}
.x1f{left:120.032000pt;}
.x28{left:124.512000pt;}
.x1b{left:144.026667pt;}
.x4{left:150.120000pt;}
.x14{left:162.265333pt;}
.x18{left:171.385333pt;}
.x6{left:185.786667pt;}
.x15{left:224.665333pt;}
.x23{left:265.666667pt;}
.x16{left:268.345333pt;}
.x19{left:288.858236pt;}
.x12{left:298.292000pt;}
.xa{left:396.106667pt;}
.x1c{left:420.893333pt;}
.x20{left:425.373333pt;}
.x1d{left:444.893333pt;}
.x21{left:449.373333pt;}
.x24{left:462.506667pt;}
.x1e{left:468.893333pt;}
.x25{left:578.533333pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
.x26{left:689.733333pt;}
}




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