
    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_c09e46b6c43e29fa9f852124.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.025879;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_8c365692b535307c3a1bcd47.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.025879;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_20c1ae71ffdb5f594c48dce8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.980957;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_d9d0210e19ea7e1a9de656a6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8f7a8f134bc8376fdecc08f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_687a0c4bf37f794d26ca2aff.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.980957;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_b092d51dd79dd7df7a0e1460.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2d273b9ae725485277737a6d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.981934;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_403b4a3827faccfac8c450bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.971191;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_f5cfdd257a2be5f7598bc8cc.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e86f38c46d1e59e4756da36a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;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_9a0100356aea50b720333e5c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fb34d6e82e31b5d29a12f557.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.971191;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.152000px;}
.v1{vertical-align:49.980000px;}
.ls13{letter-spacing:-6.540000px;}
.ls25{letter-spacing:-0.442800px;}
.lsa{letter-spacing:-0.274800px;}
.ls1c{letter-spacing:-0.144000px;}
.ls2c{letter-spacing:-0.136200px;}
.ls17{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.070800px;}
.ls2d{letter-spacing:-0.049380px;}
.ls18{letter-spacing:-0.037440px;}
.ls2{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.010080px;}
.ls14{letter-spacing:0.061200px;}
.ls16{letter-spacing:0.076200px;}
.lsf{letter-spacing:0.077400px;}
.ls15{letter-spacing:0.152400px;}
.ls11{letter-spacing:0.152640px;}
.ls3{letter-spacing:0.207600px;}
.ls2b{letter-spacing:0.211800px;}
.ls2a{letter-spacing:0.222600px;}
.ls12{letter-spacing:0.272640px;}
.ls5{letter-spacing:0.296400px;}
.ls0{letter-spacing:0.314400px;}
.ls1{letter-spacing:33.434640px;}
.ls7{letter-spacing:34.136640px;}
.ls20{letter-spacing:39.968640px;}
.ls4{letter-spacing:40.124880px;}
.ls30{letter-spacing:57.549600px;}
.ls2e{letter-spacing:57.600000px;}
.ls1d{letter-spacing:57.842640px;}
.lse{letter-spacing:62.177616px;}
.lsc{letter-spacing:70.149600px;}
.lsd{letter-spacing:70.200000px;}
.ls29{letter-spacing:72.898560px;}
.ls28{letter-spacing:73.027872px;}
.ls27{letter-spacing:73.762560px;}
.ls8{letter-spacing:74.433600px;}
.ls9{letter-spacing:74.484000px;}
.ls21{letter-spacing:79.615200px;}
.ls24{letter-spacing:83.068320px;}
.ls23{letter-spacing:83.146800px;}
.ls2f{letter-spacing:84.240000px;}
.ls26{letter-spacing:90.540000px;}
.lsb{letter-spacing:96.840000px;}
.ls6{letter-spacing:101.124000px;}
.ls1e{letter-spacing:114.069600px;}
.ls1f{letter-spacing:114.120000px;}
.ls1b{letter-spacing:119.841600px;}
.ls1a{letter-spacing:119.892000px;}
.ls19{letter-spacing:119.916000px;}
.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;}
}
.ws5{word-spacing:-61.686648px;}
.ws6{word-spacing:-61.609248px;}
.ws1b{word-spacing:-61.560000px;}
.ws14{word-spacing:-49.248000px;}
.wsb{word-spacing:-43.446240px;}
.wsc{word-spacing:-42.324480px;}
.ws8{word-spacing:-41.171328px;}
.ws9{word-spacing:-41.122080px;}
.ws4{word-spacing:-38.016000px;}
.ws1a{word-spacing:-36.985248px;}
.ws10{word-spacing:-34.976160px;}
.wse{word-spacing:-34.966080px;}
.ws19{word-spacing:-33.758208px;}
.ws3{word-spacing:-33.707520px;}
.ws1{word-spacing:-32.749920px;}
.ws12{word-spacing:-31.680000px;}
.ws17{word-spacing:-29.703168px;}
.ws18{word-spacing:-29.652480px;}
.wsa{word-spacing:-24.552000px;}
.ws13{word-spacing:-22.302720px;}
.ws7{word-spacing:-21.035520px;}
.ws11{word-spacing:-2.803680px;}
.wsd{word-spacing:-2.478240px;}
.wsf{word-spacing:-2.401440px;}
.ws2{word-spacing:0.000000px;}
.ws16{word-spacing:1.517760px;}
.ws0{word-spacing:1.753200px;}
.ws15{word-spacing:1.911600px;}
._9{margin-left:-16.708560px;}
._10{margin-left:-9.519120px;}
._11{margin-left:-7.834320px;}
._a{margin-left:-5.564160px;}
._7{margin-left:-3.671280px;}
._3{margin-left:-2.358720px;}
._4{margin-left:-1.095120px;}
._1{width:1.228320px;}
._5{width:2.739600px;}
._d{width:3.913920px;}
._c{width:33.462720px;}
._f{width:35.108256px;}
._b{width:39.791856px;}
._8{width:41.010960px;}
._e{width:42.590640px;}
._0{width:58.747680px;}
._2{width:61.700880px;}
._6{width:68.628240px;}
._12{width:169.423680px;}
._13{width:1627.097520px;}
.fcd{color:rgb(51,51,153);}
.fc0{color:rgb(255,255,255);}
.fc1{color:rgb(15,84,148);}
.fc7{color:rgb(0,176,80);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(0,159,186);}
.fc3{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fcb{color:rgb(0,176,240);}
.fc6{color:rgb(255,0,0);}
.fc8{color:rgb(255,192,0);}
.fc9{color:rgb(112,48,160);}
.fca{color:transparent;}
.fcc{color:rgb(0,174,240);}
.fsb{font-size:59.760000px;}
.fsa{font-size:59.904000px;}
.fs1a{font-size:63.360000px;}
.fsd{font-size:72.000000px;}
.fs18{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs1b{font-size:84.384000px;}
.fs17{font-size:90.000000px;}
.fs19{font-size:90.144000px;}
.fs2{font-size:95.760000px;}
.fs5{font-size:95.904000px;}
.fs15{font-size:102.240000px;}
.fs16{font-size:102.384000px;}
.fs6{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fs13{font-size:113.760000px;}
.fs12{font-size:113.904000px;}
.fs9{font-size:120.240000px;}
.fsc{font-size:120.384000px;}
.fs14{font-size:136.800000px;}
.fs11{font-size:136.944000px;}
.fsf{font-size:144.000000px;}
.fs10{font-size:144.144000px;}
.fs0{font-size:167.760000px;}
.fs1{font-size:167.904000px;}
.fs3{font-size:180.000000px;}
.fs8{font-size:180.144000px;}
.fse{font-size:192.240000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:15.516000px;}
.y3d{bottom:27.432000px;}
.y3c{bottom:45.612000px;}
.y94{bottom:46.188000px;}
.y30{bottom:46.476000px;}
.y2c{bottom:48.348000px;}
.y2f{bottom:61.056000px;}
.y33{bottom:64.905000px;}
.y42{bottom:65.448000px;}
.y18{bottom:68.004000px;}
.y7a{bottom:72.324000px;}
.y21{bottom:73.440000px;}
.y2e{bottom:86.256000px;}
.y7{bottom:89.712000px;}
.y32{bottom:92.880000px;}
.y79{bottom:93.924000px;}
.y2b{bottom:98.970000px;}
.y90{bottom:102.600000px;}
.y34{bottom:110.490000px;}
.y5b{bottom:113.400000px;}
.y6{bottom:114.912000px;}
.y1f{bottom:115.344000px;}
.ya0{bottom:116.892000px;}
.y68{bottom:117.360000px;}
.y2a{bottom:131.790000px;}
.y17{bottom:137.160000px;}
.y5a{bottom:144.000000px;}
.y67{bottom:144.720000px;}
.y78{bottom:147.240000px;}
.y35{bottom:156.060000px;}
.y77{bottom:170.640000px;}
.y66{bottom:178.020000px;}
.yf{bottom:179.175000px;}
.y59{bottom:180.720000px;}
.y29{bottom:182.415000px;}
.y95{bottom:183.090000px;}
.y99{bottom:189.330000px;}
.ya7{bottom:192.780000px;}
.y1e{bottom:193.140000px;}
.y76{bottom:194.040000px;}
.y8f{bottom:195.810000px;}
.y36{bottom:201.630000px;}
.y4e{bottom:204.765000px;}
.y16{bottom:206.280000px;}
.y65{bottom:206.820000px;}
.ye{bottom:208.005000px;}
.y58{bottom:211.320000px;}
.y28{bottom:215.250000px;}
.y4{bottom:215.490000px;}
.y75{bottom:218.160000px;}
.y8e{bottom:221.010000px;}
.y89{bottom:225.510000px;}
.y15{bottom:235.080000px;}
.y64{bottom:235.620000px;}
.yd{bottom:236.805000px;}
.y4d{bottom:240.765000px;}
.y74{bottom:245.160000px;}
.y8d{bottom:246.210000px;}
.y37{bottom:247.215000px;}
.y57{bottom:248.040000px;}
.y3{bottom:250.050000px;}
.y88{bottom:250.710000px;}
.y63{bottom:258.660000px;}
.y9e{bottom:261.540000px;}
.y27{bottom:265.860000px;}
.y1d{bottom:270.900000px;}
.y8c{bottom:272.160000px;}
.y41{bottom:273.090000px;}
.y87{bottom:275.910000px;}
.y4c{bottom:276.765000px;}
.y56{bottom:284.790000px;}
.y80{bottom:286.275000px;}
.y62{bottom:287.490000px;}
.y38{bottom:292.785000px;}
.y26{bottom:298.695000px;}
.y73{bottom:299.190000px;}
.y8b{bottom:300.960000px;}
.y14{bottom:304.230000px;}
.y40{bottom:309.090000px;}
.y9f{bottom:310.710000px;}
.y4b{bottom:312.765000px;}
.ya6{bottom:313.770000px;}
.y55{bottom:315.390000px;}
.y61{bottom:317.190000px;}
.y9c{bottom:321.090000px;}
.ya4{bottom:322.410000px;}
.y91{bottom:334.230000px;}
.y39{bottom:338.370000px;}
.y86{bottom:343.590000px;}
.yc{bottom:344.805000px;}
.y3f{bottom:345.135000px;}
.y1c{bottom:348.690000px;}
.y25{bottom:349.350000px;}
.y60{bottom:351.390000px;}
.y54{bottom:352.110000px;}
.y72{bottom:352.470000px;}
.y7f{bottom:365.610000px;}
.y85{bottom:368.790000px;}
.y13{bottom:373.350000px;}
.y2{bottom:374.655000px;}
.y98{bottom:375.510000px;}
.y71{bottom:375.870000px;}
.yb{bottom:379.410000px;}
.y9d{bottom:380.625000px;}
.y1b{bottom:381.090000px;}
.y3e{bottom:381.135000px;}
.y24{bottom:382.140000px;}
.y3a{bottom:383.940000px;}
.y5f{bottom:384.690000px;}
.y4a{bottom:384.810000px;}
.y53{bottom:389.550000px;}
.y84{bottom:393.990000px;}
.y8a{bottom:394.950000px;}
.y70{bottom:399.990000px;}
.y12{bottom:402.150000px;}
.y5e{bottom:407.730000px;}
.y83{bottom:419.190000px;}
.y49{bottom:420.810000px;}
.y3b{bottom:429.510000px;}
.y52{bottom:431.850000px;}
.y23{bottom:432.795000px;}
.ya5{bottom:434.730000px;}
.y1{bottom:435.135000px;}
.y5d{bottom:437.430000px;}
.y97{bottom:440.385000px;}
.ya3{bottom:443.370000px;}
.y82{bottom:444.390000px;}
.y9b{bottom:448.665000px;}
.y22{bottom:453.090000px;}
.y6f{bottom:454.035000px;}
.y1a{bottom:458.895000px;}
.y81{bottom:460.905000px;}
.y51{bottom:466.095000px;}
.y11{bottom:471.315000px;}
.y5c{bottom:471.675000px;}
.y6e{bottom:480.315000px;}
.ya{bottom:487.410000px;}
.y48{bottom:492.810000px;}
.y6d{bottom:503.715000px;}
.y96{bottom:512.745000px;}
.y9{bottom:516.210000px;}
.y9a{bottom:516.705000px;}
.y47{bottom:516.810000px;}
.y6c{bottom:527.115000px;}
.y50{bottom:529.050000px;}
.y19{bottom:536.655000px;}
.y7e{bottom:537.090000px;}
.y10{bottom:540.435000px;}
.y6b{bottom:551.235000px;}
.y44{bottom:565.560000px;}
.y46{bottom:567.180000px;}
.y6a{bottom:578.235000px;}
.y4f{bottom:579.450000px;}
.y7d{bottom:583.350000px;}
.ya1{bottom:583.710000px;}
.ya2{bottom:584.790000px;}
.y20{bottom:605.190000px;}
.y45{bottom:610.380000px;}
.y8{bottom:612.690000px;}
.y43{bottom:615.675000px;}
.y5{bottom:621.210000px;}
.y31{bottom:624.750000px;}
.y7c{bottom:626.550000px;}
.y69{bottom:633.165000px;}
.y93{bottom:704.085000px;}
.y7b{bottom:720.975000px;}
.y92{bottom:721.185000px;}
.h11{height:45.987188px;}
.h10{height:46.098000px;}
.h25{height:48.448125px;}
.h13{height:58.921875px;}
.h23{height:63.635625px;}
.h5{height:64.825312px;}
.h27{height:64.936125px;}
.h24{height:68.928469px;}
.h22{height:69.257812px;}
.h26{height:73.222734px;}
.h6{height:73.690313px;}
.h7{height:73.801125px;}
.h3{height:78.366094px;}
.h20{height:78.483937px;}
.h8{height:83.109375px;}
.h9{height:83.220188px;}
.h1e{height:83.669062px;}
.h1f{height:83.786906px;}
.hd{height:86.585445px;}
.h21{height:87.096516px;}
.h29{height:88.500656px;}
.h1c{height:91.541250px;}
.h19{height:92.528437px;}
.h1a{height:92.639250px;}
.he{height:98.399531px;}
.h12{height:98.517375px;}
.h1d{height:99.594141px;}
.h1b{height:99.698977px;}
.h28{height:110.812500px;}
.h18{height:110.923313px;}
.h15{height:115.734375px;}
.h16{height:117.843750px;}
.h17{height:117.961594px;}
.hc{height:133.089375px;}
.h1{height:137.287969px;}
.h2{height:137.405812px;}
.h4{height:147.304688px;}
.ha{height:147.422531px;}
.h14{height:154.505391px;}
.hf{height:492.840000px;}
.hb{height:501.660000px;}
.h0{height:810.000000px;}
.w3{width:837.540000px;}
.w2{width:1014.480000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x3a{left:16.235984px;}
.x10{left:22.752000px;}
.xf{left:29.700000px;}
.x14{left:32.723988px;}
.x46{left:33.911984px;}
.x26{left:40.859984px;}
.x45{left:48.887984px;}
.x38{left:56.771984px;}
.x7{left:58.139984px;}
.x52{left:59.579984px;}
.x27{left:64.799984px;}
.x5{left:66.023984px;}
.x47{left:67.067984px;}
.x16{left:69.479988px;}
.x34{left:72.863984px;}
.x2b{left:74.555984px;}
.x4{left:77.651984px;}
.x3{left:82.583984px;}
.x15{left:84.455988px;}
.x8{left:91.799984px;}
.x37{left:113.363984px;}
.x2c{left:116.675984px;}
.x9{left:118.835984px;}
.x33{left:120.023984px;}
.x4c{left:121.499984px;}
.x48{left:123.083984px;}
.x36{left:126.899984px;}
.x4b{left:132.695984px;}
.x1{left:135.359984px;}
.x49{left:138.815984px;}
.x2d{left:142.055984px;}
.x30{left:148.175984px;}
.xb{left:150.374984px;}
.x18{left:152.789988px;}
.x4a{left:157.754984px;}
.x17{left:167.729988px;}
.xc{left:177.374984px;}
.xd{left:187.304984px;}
.xa{left:199.544984px;}
.x3b{left:212.759984px;}
.x55{left:213.944984px;}
.xe{left:215.204984px;}
.x3c{left:218.309984px;}
.x1a{left:236.054988px;}
.x19{left:250.994988px;}
.x13{left:256.244984px;}
.x29{left:266.684984px;}
.x2a{left:285.944984px;}
.x6{left:302.009984px;}
.x1c{left:314.639988px;}
.x2f{left:327.419984px;}
.x1b{left:334.259988px;}
.x28{left:353.669984px;}
.x39{left:370.409984px;}
.x1e{left:397.949988px;}
.x1d{left:417.569988px;}
.x54{left:440.789984px;}
.x2{left:446.609984px;}
.x44{left:448.814984px;}
.x35{left:466.049984px;}
.x2e{left:470.009984px;}
.x32{left:475.409984px;}
.x20{left:481.214988px;}
.x1f{left:500.834988px;}
.x51{left:518.579984px;}
.x3d{left:552.419984px;}
.x22{left:564.479988px;}
.x21{left:584.099988px;}
.x24{left:655.169988px;}
.x23{left:656.429988px;}
.x11{left:705.420000px;}
.x53{left:756.284984px;}
.x4d{left:758.909984px;}
.x50{left:789.374984px;}
.x4f{left:813.134984px;}
.x4e{left:818.534984px;}
.x42{left:837.899984px;}
.x3e{left:841.754984px;}
.x41{left:844.739984px;}
.x25{left:848.954984px;}
.x40{left:865.979984px;}
.x3f{left:881.819984px;}
.x43{left:915.479984px;}
.x31{left:991.769984px;}
.x12{left:993.389984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.024000pt;}
.v1{vertical-align:44.426667pt;}
.ls13{letter-spacing:-5.813333pt;}
.ls25{letter-spacing:-0.393600pt;}
.lsa{letter-spacing:-0.244267pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls2c{letter-spacing:-0.121067pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.062933pt;}
.ls2d{letter-spacing:-0.043893pt;}
.ls18{letter-spacing:-0.033280pt;}
.ls2{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.008960pt;}
.ls14{letter-spacing:0.054400pt;}
.ls16{letter-spacing:0.067733pt;}
.lsf{letter-spacing:0.068800pt;}
.ls15{letter-spacing:0.135467pt;}
.ls11{letter-spacing:0.135680pt;}
.ls3{letter-spacing:0.184533pt;}
.ls2b{letter-spacing:0.188267pt;}
.ls2a{letter-spacing:0.197867pt;}
.ls12{letter-spacing:0.242347pt;}
.ls5{letter-spacing:0.263467pt;}
.ls0{letter-spacing:0.279467pt;}
.ls1{letter-spacing:29.719680pt;}
.ls7{letter-spacing:30.343680pt;}
.ls20{letter-spacing:35.527680pt;}
.ls4{letter-spacing:35.666560pt;}
.ls30{letter-spacing:51.155200pt;}
.ls2e{letter-spacing:51.200000pt;}
.ls1d{letter-spacing:51.415680pt;}
.lse{letter-spacing:55.268992pt;}
.lsc{letter-spacing:62.355200pt;}
.lsd{letter-spacing:62.400000pt;}
.ls29{letter-spacing:64.798720pt;}
.ls28{letter-spacing:64.913664pt;}
.ls27{letter-spacing:65.566720pt;}
.ls8{letter-spacing:66.163200pt;}
.ls9{letter-spacing:66.208000pt;}
.ls21{letter-spacing:70.769067pt;}
.ls24{letter-spacing:73.838507pt;}
.ls23{letter-spacing:73.908267pt;}
.ls2f{letter-spacing:74.880000pt;}
.ls26{letter-spacing:80.480000pt;}
.lsb{letter-spacing:86.080000pt;}
.ls6{letter-spacing:89.888000pt;}
.ls1e{letter-spacing:101.395200pt;}
.ls1f{letter-spacing:101.440000pt;}
.ls1b{letter-spacing:106.525867pt;}
.ls1a{letter-spacing:106.570667pt;}
.ls19{letter-spacing:106.592000pt;}
.ws5{word-spacing:-54.832576pt;}
.ws6{word-spacing:-54.763776pt;}
.ws1b{word-spacing:-54.720000pt;}
.ws14{word-spacing:-43.776000pt;}
.wsb{word-spacing:-38.618880pt;}
.wsc{word-spacing:-37.621760pt;}
.ws8{word-spacing:-36.596736pt;}
.ws9{word-spacing:-36.552960pt;}
.ws4{word-spacing:-33.792000pt;}
.ws1a{word-spacing:-32.875776pt;}
.ws10{word-spacing:-31.089920pt;}
.wse{word-spacing:-31.080960pt;}
.ws19{word-spacing:-30.007296pt;}
.ws3{word-spacing:-29.962240pt;}
.ws1{word-spacing:-29.111040pt;}
.ws12{word-spacing:-28.160000pt;}
.ws17{word-spacing:-26.402816pt;}
.ws18{word-spacing:-26.357760pt;}
.wsa{word-spacing:-21.824000pt;}
.ws13{word-spacing:-19.824640pt;}
.ws7{word-spacing:-18.698240pt;}
.ws11{word-spacing:-2.492160pt;}
.wsd{word-spacing:-2.202880pt;}
.wsf{word-spacing:-2.134613pt;}
.ws2{word-spacing:0.000000pt;}
.ws16{word-spacing:1.349120pt;}
.ws0{word-spacing:1.558400pt;}
.ws15{word-spacing:1.699200pt;}
._9{margin-left:-14.852053pt;}
._10{margin-left:-8.461440pt;}
._11{margin-left:-6.963840pt;}
._a{margin-left:-4.945920pt;}
._7{margin-left:-3.263360pt;}
._3{margin-left:-2.096640pt;}
._4{margin-left:-0.973440pt;}
._1{width:1.091840pt;}
._5{width:2.435200pt;}
._d{width:3.479040pt;}
._c{width:29.744640pt;}
._f{width:31.207339pt;}
._b{width:35.370539pt;}
._8{width:36.454187pt;}
._e{width:37.858347pt;}
._0{width:52.220160pt;}
._2{width:54.845227pt;}
._6{width:61.002880pt;}
._12{width:150.598827pt;}
._13{width:1446.308907pt;}
.fsb{font-size:53.120000pt;}
.fsa{font-size:53.248000pt;}
.fs1a{font-size:56.320000pt;}
.fsd{font-size:64.000000pt;}
.fs18{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs1b{font-size:75.008000pt;}
.fs17{font-size:80.000000pt;}
.fs19{font-size:80.128000pt;}
.fs2{font-size:85.120000pt;}
.fs5{font-size:85.248000pt;}
.fs15{font-size:90.880000pt;}
.fs16{font-size:91.008000pt;}
.fs6{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fs13{font-size:101.120000pt;}
.fs12{font-size:101.248000pt;}
.fs9{font-size:106.880000pt;}
.fsc{font-size:107.008000pt;}
.fs14{font-size:121.600000pt;}
.fs11{font-size:121.728000pt;}
.fsf{font-size:128.000000pt;}
.fs10{font-size:128.128000pt;}
.fs0{font-size:149.120000pt;}
.fs1{font-size:149.248000pt;}
.fs3{font-size:160.000000pt;}
.fs8{font-size:160.128000pt;}
.fse{font-size:170.880000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:13.792000pt;}
.y3d{bottom:24.384000pt;}
.y3c{bottom:40.544000pt;}
.y94{bottom:41.056000pt;}
.y30{bottom:41.312000pt;}
.y2c{bottom:42.976000pt;}
.y2f{bottom:54.272000pt;}
.y33{bottom:57.693333pt;}
.y42{bottom:58.176000pt;}
.y18{bottom:60.448000pt;}
.y7a{bottom:64.288000pt;}
.y21{bottom:65.280000pt;}
.y2e{bottom:76.672000pt;}
.y7{bottom:79.744000pt;}
.y32{bottom:82.560000pt;}
.y79{bottom:83.488000pt;}
.y2b{bottom:87.973333pt;}
.y90{bottom:91.200000pt;}
.y34{bottom:98.213333pt;}
.y5b{bottom:100.800000pt;}
.y6{bottom:102.144000pt;}
.y1f{bottom:102.528000pt;}
.ya0{bottom:103.904000pt;}
.y68{bottom:104.320000pt;}
.y2a{bottom:117.146667pt;}
.y17{bottom:121.920000pt;}
.y5a{bottom:128.000000pt;}
.y67{bottom:128.640000pt;}
.y78{bottom:130.880000pt;}
.y35{bottom:138.720000pt;}
.y77{bottom:151.680000pt;}
.y66{bottom:158.240000pt;}
.yf{bottom:159.266667pt;}
.y59{bottom:160.640000pt;}
.y29{bottom:162.146667pt;}
.y95{bottom:162.746667pt;}
.y99{bottom:168.293333pt;}
.ya7{bottom:171.360000pt;}
.y1e{bottom:171.680000pt;}
.y76{bottom:172.480000pt;}
.y8f{bottom:174.053333pt;}
.y36{bottom:179.226667pt;}
.y4e{bottom:182.013333pt;}
.y16{bottom:183.360000pt;}
.y65{bottom:183.840000pt;}
.ye{bottom:184.893333pt;}
.y58{bottom:187.840000pt;}
.y28{bottom:191.333333pt;}
.y4{bottom:191.546667pt;}
.y75{bottom:193.920000pt;}
.y8e{bottom:196.453333pt;}
.y89{bottom:200.453333pt;}
.y15{bottom:208.960000pt;}
.y64{bottom:209.440000pt;}
.yd{bottom:210.493333pt;}
.y4d{bottom:214.013333pt;}
.y74{bottom:217.920000pt;}
.y8d{bottom:218.853333pt;}
.y37{bottom:219.746667pt;}
.y57{bottom:220.480000pt;}
.y3{bottom:222.266667pt;}
.y88{bottom:222.853333pt;}
.y63{bottom:229.920000pt;}
.y9e{bottom:232.480000pt;}
.y27{bottom:236.320000pt;}
.y1d{bottom:240.800000pt;}
.y8c{bottom:241.920000pt;}
.y41{bottom:242.746667pt;}
.y87{bottom:245.253333pt;}
.y4c{bottom:246.013333pt;}
.y56{bottom:253.146667pt;}
.y80{bottom:254.466667pt;}
.y62{bottom:255.546667pt;}
.y38{bottom:260.253333pt;}
.y26{bottom:265.506667pt;}
.y73{bottom:265.946667pt;}
.y8b{bottom:267.520000pt;}
.y14{bottom:270.426667pt;}
.y40{bottom:274.746667pt;}
.y9f{bottom:276.186667pt;}
.y4b{bottom:278.013333pt;}
.ya6{bottom:278.906667pt;}
.y55{bottom:280.346667pt;}
.y61{bottom:281.946667pt;}
.y9c{bottom:285.413333pt;}
.ya4{bottom:286.586667pt;}
.y91{bottom:297.093333pt;}
.y39{bottom:300.773333pt;}
.y86{bottom:305.413333pt;}
.yc{bottom:306.493333pt;}
.y3f{bottom:306.786667pt;}
.y1c{bottom:309.946667pt;}
.y25{bottom:310.533333pt;}
.y60{bottom:312.346667pt;}
.y54{bottom:312.986667pt;}
.y72{bottom:313.306667pt;}
.y7f{bottom:324.986667pt;}
.y85{bottom:327.813333pt;}
.y13{bottom:331.866667pt;}
.y2{bottom:333.026667pt;}
.y98{bottom:333.786667pt;}
.y71{bottom:334.106667pt;}
.yb{bottom:337.253333pt;}
.y9d{bottom:338.333333pt;}
.y1b{bottom:338.746667pt;}
.y3e{bottom:338.786667pt;}
.y24{bottom:339.680000pt;}
.y3a{bottom:341.280000pt;}
.y5f{bottom:341.946667pt;}
.y4a{bottom:342.053333pt;}
.y53{bottom:346.266667pt;}
.y84{bottom:350.213333pt;}
.y8a{bottom:351.066667pt;}
.y70{bottom:355.546667pt;}
.y12{bottom:357.466667pt;}
.y5e{bottom:362.426667pt;}
.y83{bottom:372.613333pt;}
.y49{bottom:374.053333pt;}
.y3b{bottom:381.786667pt;}
.y52{bottom:383.866667pt;}
.y23{bottom:384.706667pt;}
.ya5{bottom:386.426667pt;}
.y1{bottom:386.786667pt;}
.y5d{bottom:388.826667pt;}
.y97{bottom:391.453333pt;}
.ya3{bottom:394.106667pt;}
.y82{bottom:395.013333pt;}
.y9b{bottom:398.813333pt;}
.y22{bottom:402.746667pt;}
.y6f{bottom:403.586667pt;}
.y1a{bottom:407.906667pt;}
.y81{bottom:409.693333pt;}
.y51{bottom:414.306667pt;}
.y11{bottom:418.946667pt;}
.y5c{bottom:419.266667pt;}
.y6e{bottom:426.946667pt;}
.ya{bottom:433.253333pt;}
.y48{bottom:438.053333pt;}
.y6d{bottom:447.746667pt;}
.y96{bottom:455.773333pt;}
.y9{bottom:458.853333pt;}
.y9a{bottom:459.293333pt;}
.y47{bottom:459.386667pt;}
.y6c{bottom:468.546667pt;}
.y50{bottom:470.266667pt;}
.y19{bottom:477.026667pt;}
.y7e{bottom:477.413333pt;}
.y10{bottom:480.386667pt;}
.y6b{bottom:489.986667pt;}
.y44{bottom:502.720000pt;}
.y46{bottom:504.160000pt;}
.y6a{bottom:513.986667pt;}
.y4f{bottom:515.066667pt;}
.y7d{bottom:518.533333pt;}
.ya1{bottom:518.853333pt;}
.ya2{bottom:519.813333pt;}
.y20{bottom:537.946667pt;}
.y45{bottom:542.560000pt;}
.y8{bottom:544.613333pt;}
.y43{bottom:547.266667pt;}
.y5{bottom:552.186667pt;}
.y31{bottom:555.333333pt;}
.y7c{bottom:556.933333pt;}
.y69{bottom:562.813333pt;}
.y93{bottom:625.853333pt;}
.y7b{bottom:640.866667pt;}
.y92{bottom:641.053333pt;}
.h11{height:40.877500pt;}
.h10{height:40.976000pt;}
.h25{height:43.065000pt;}
.h13{height:52.375000pt;}
.h23{height:56.565000pt;}
.h5{height:57.622500pt;}
.h27{height:57.721000pt;}
.h24{height:61.269750pt;}
.h22{height:61.562500pt;}
.h26{height:65.086875pt;}
.h6{height:65.502500pt;}
.h7{height:65.601000pt;}
.h3{height:69.658750pt;}
.h20{height:69.763500pt;}
.h8{height:73.875000pt;}
.h9{height:73.973500pt;}
.h1e{height:74.372500pt;}
.h1f{height:74.477250pt;}
.hd{height:76.964840pt;}
.h21{height:77.419125pt;}
.h29{height:78.667250pt;}
.h1c{height:81.370000pt;}
.h19{height:82.247500pt;}
.h1a{height:82.346000pt;}
.he{height:87.466250pt;}
.h12{height:87.571000pt;}
.h1d{height:88.528125pt;}
.h1b{height:88.621313pt;}
.h28{height:98.500000pt;}
.h18{height:98.598500pt;}
.h15{height:102.875000pt;}
.h16{height:104.750000pt;}
.h17{height:104.854750pt;}
.hc{height:118.301667pt;}
.h1{height:122.033750pt;}
.h2{height:122.138500pt;}
.h4{height:130.937500pt;}
.ha{height:131.042250pt;}
.h14{height:137.338125pt;}
.hf{height:438.080000pt;}
.hb{height:445.920000pt;}
.h0{height:720.000000pt;}
.w3{width:744.480000pt;}
.w2{width:901.760000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:14.431986pt;}
.x10{left:20.224000pt;}
.xf{left:26.400000pt;}
.x14{left:29.087989pt;}
.x46{left:30.143986pt;}
.x26{left:36.319986pt;}
.x45{left:43.455986pt;}
.x38{left:50.463986pt;}
.x7{left:51.679986pt;}
.x52{left:52.959986pt;}
.x27{left:57.599986pt;}
.x5{left:58.687986pt;}
.x47{left:59.615986pt;}
.x16{left:61.759989pt;}
.x34{left:64.767986pt;}
.x2b{left:66.271986pt;}
.x4{left:69.023986pt;}
.x3{left:73.407986pt;}
.x15{left:75.071989pt;}
.x8{left:81.599986pt;}
.x37{left:100.767986pt;}
.x2c{left:103.711986pt;}
.x9{left:105.631986pt;}
.x33{left:106.687986pt;}
.x4c{left:107.999986pt;}
.x48{left:109.407986pt;}
.x36{left:112.799986pt;}
.x4b{left:117.951986pt;}
.x1{left:120.319986pt;}
.x49{left:123.391986pt;}
.x2d{left:126.271986pt;}
.x30{left:131.711986pt;}
.xb{left:133.666652pt;}
.x18{left:135.813322pt;}
.x4a{left:140.226652pt;}
.x17{left:149.093322pt;}
.xc{left:157.666652pt;}
.xd{left:166.493319pt;}
.xa{left:177.373319pt;}
.x3b{left:189.119986pt;}
.x55{left:190.173319pt;}
.xe{left:191.293319pt;}
.x3c{left:194.053319pt;}
.x1a{left:209.826656pt;}
.x19{left:223.106656pt;}
.x13{left:227.773319pt;}
.x29{left:237.053319pt;}
.x2a{left:254.173319pt;}
.x6{left:268.453319pt;}
.x1c{left:279.679989pt;}
.x2f{left:291.039986pt;}
.x1b{left:297.119989pt;}
.x28{left:314.373319pt;}
.x39{left:329.253319pt;}
.x1e{left:353.733322pt;}
.x1d{left:371.173322pt;}
.x54{left:391.813319pt;}
.x2{left:396.986652pt;}
.x44{left:398.946652pt;}
.x35{left:414.266652pt;}
.x2e{left:417.786652pt;}
.x32{left:422.586652pt;}
.x20{left:427.746656pt;}
.x1f{left:445.186656pt;}
.x51{left:460.959986pt;}
.x3d{left:491.039986pt;}
.x22{left:501.759989pt;}
.x21{left:519.199989pt;}
.x24{left:582.373322pt;}
.x23{left:583.493322pt;}
.x11{left:627.040000pt;}
.x53{left:672.253319pt;}
.x4d{left:674.586652pt;}
.x50{left:701.666652pt;}
.x4f{left:722.786652pt;}
.x4e{left:727.586652pt;}
.x42{left:744.799986pt;}
.x3e{left:748.226652pt;}
.x41{left:750.879986pt;}
.x25{left:754.626652pt;}
.x40{left:769.759986pt;}
.x3f{left:783.839986pt;}
.x43{left:813.759986pt;}
.x31{left:881.573319pt;}
.x12{left:883.013319pt;}
}




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