
    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_d4a2c1b917b9c59c67c1817f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900391;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_1b1ea1fc50f347c1713cef8e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.693359;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_e6613d29fd7f9d663a04788f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_e280c319f299345bf1da16a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_e048617b6c07241c8e463483.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5cd09be811ac15b9d773a7e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_21e29194a61897c1f0b1d38b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_afb0ad8f6dfaaf714f7b056f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919000;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_5127c2d3a235d5a277df852d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bb7427bba75e950f25dd1c59.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_281460565bdfd6647013ea1e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.093262;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_335c558371d8438d0e0351cc.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0d5fd973da6015fa1083724e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.912598;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:-19.980000px;}
.v4{vertical-align:-13.986000px;}
.v5{vertical-align:-2.021400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:23.976000px;}
.lsb{letter-spacing:-5.520000px;}
.lsf{letter-spacing:-3.300000px;}
.ls7{letter-spacing:-1.200000px;}
.ls5{letter-spacing:-0.600000px;}
.ls6{letter-spacing:-0.480000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000600px;}
.ls3{letter-spacing:0.004800px;}
.ls2{letter-spacing:0.480000px;}
.lsa{letter-spacing:2.100000px;}
.ls1{letter-spacing:3.783000px;}
.lsd{letter-spacing:10.009800px;}
.ls8{letter-spacing:13.596600px;}
.ls9{letter-spacing:17.128800px;}
.lse{letter-spacing:35.607000px;}
.lsc{letter-spacing:39.532200px;}
.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;}
}
.ws1e{word-spacing:-60.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.400000px;}
.ws60{word-spacing:-11.700000px;}
.ws6{word-spacing:-10.500000px;}
.ws0{word-spacing:-10.494000px;}
.ws2{word-spacing:-8.745000px;}
.ws1c{word-spacing:-6.620251px;}
.ws5{word-spacing:-6.121500px;}
.wse{word-spacing:-5.838000px;}
.ws1d{word-spacing:-3.574956px;}
.wsf{word-spacing:-3.360000px;}
.ws43{word-spacing:-3.300000px;}
.ws25{word-spacing:-2.880000px;}
.ws13{word-spacing:-2.700000px;}
.ws2a{word-spacing:-2.520000px;}
.ws44{word-spacing:-2.100000px;}
.wsd{word-spacing:-1.824000px;}
.ws12{word-spacing:-1.440000px;}
.ws20{word-spacing:-1.124194px;}
.ws4a{word-spacing:-1.080000px;}
.ws22{word-spacing:-0.660000px;}
.ws21{word-spacing:-0.607068px;}
.ws24{word-spacing:-0.480000px;}
.wsa{word-spacing:-0.360000px;}
.ws36{word-spacing:-0.240000px;}
.ws8{word-spacing:0.000000px;}
.ws23{word-spacing:0.480000px;}
.ws10{word-spacing:0.600000px;}
.ws6d{word-spacing:0.840000px;}
.ws6e{word-spacing:1.080000px;}
.ws30{word-spacing:1.200000px;}
.ws6a{word-spacing:1.320000px;}
.ws15{word-spacing:1.440000px;}
.ws68{word-spacing:1.620000px;}
.ws46{word-spacing:1.860000px;}
.ws29{word-spacing:1.920000px;}
.wsc{word-spacing:2.679000px;}
.ws2d{word-spacing:2.700000px;}
.ws5f{word-spacing:3.420000px;}
.ws11{word-spacing:4.020000px;}
.ws45{word-spacing:5.700000px;}
.ws64{word-spacing:5.820000px;}
.ws67{word-spacing:6.360000px;}
.ws9{word-spacing:6.480000px;}
.ws28{word-spacing:6.900000px;}
.ws35{word-spacing:7.140000px;}
.ws70{word-spacing:7.320000px;}
.ws1b{word-spacing:7.620000px;}
.ws48{word-spacing:7.740000px;}
.wsb{word-spacing:8.322000px;}
.ws4d{word-spacing:8.340000px;}
.ws2f{word-spacing:8.760000px;}
.ws61{word-spacing:8.940000px;}
.ws49{word-spacing:9.300000px;}
.ws2c{word-spacing:9.420000px;}
.ws6f{word-spacing:9.660000px;}
.ws73{word-spacing:10.020000px;}
.ws32{word-spacing:11.280000px;}
.ws19{word-spacing:11.460000px;}
.ws47{word-spacing:11.820000px;}
.ws34{word-spacing:12.300000px;}
.ws14{word-spacing:12.420000px;}
.ws33{word-spacing:12.600000px;}
.ws4b{word-spacing:13.800000px;}
.ws77{word-spacing:13.980000px;}
.ws69{word-spacing:14.340000px;}
.ws1f{word-spacing:15.540000px;}
.ws4f{word-spacing:15.720000px;}
.ws2e{word-spacing:16.200000px;}
.ws27{word-spacing:17.160000px;}
.ws31{word-spacing:17.520000px;}
.ws71{word-spacing:18.000000px;}
.ws16{word-spacing:19.080000px;}
.ws2b{word-spacing:19.500000px;}
.ws17{word-spacing:19.980000px;}
.ws1a{word-spacing:21.180000px;}
.ws76{word-spacing:21.300000px;}
.ws66{word-spacing:21.720000px;}
.ws62{word-spacing:23.820000px;}
.ws75{word-spacing:24.420000px;}
.ws4e{word-spacing:25.680000px;}
.ws26{word-spacing:26.280000px;}
.ws63{word-spacing:30.600000px;}
.ws72{word-spacing:31.020000px;}
.ws6c{word-spacing:31.320000px;}
.ws65{word-spacing:32.820000px;}
.ws50{word-spacing:34.020000px;}
.ws74{word-spacing:37.680000px;}
.ws53{word-spacing:39.000000px;}
.ws6b{word-spacing:39.540000px;}
.ws18{word-spacing:40.680000px;}
.ws52{word-spacing:45.000000px;}
.ws56{word-spacing:69.000000px;}
.ws4c{word-spacing:70.020000px;}
.ws5a{word-spacing:71.220000px;}
.ws55{word-spacing:75.000000px;}
.ws5e{word-spacing:77.220000px;}
.ws51{word-spacing:78.000000px;}
.ws3d{word-spacing:98.086200px;}
.ws5d{word-spacing:99.000000px;}
.ws3e{word-spacing:101.386200px;}
.ws37{word-spacing:104.490000px;}
.ws59{word-spacing:105.000000px;}
.ws57{word-spacing:108.000000px;}
.ws3f{word-spacing:108.046200px;}
.ws39{word-spacing:111.346200px;}
.ws3c{word-spacing:114.706200px;}
.ws54{word-spacing:123.000000px;}
.ws42{word-spacing:124.606200px;}
.ws40{word-spacing:124.726200px;}
.ws41{word-spacing:128.026200px;}
.ws5c{word-spacing:135.000000px;}
.ws5b{word-spacing:138.000000px;}
.ws38{word-spacing:148.066200px;}
.ws58{word-spacing:153.000000px;}
.ws3b{word-spacing:162.388200px;}
.ws3a{word-spacing:178.774800px;}
.ws4{word-spacing:895.414200px;}
._16{margin-left:-349.842803px;}
._15{margin-left:-320.332721px;}
._1e{margin-left:-69.990600px;}
._3f{margin-left:-15.373800px;}
._11{margin-left:-11.059800px;}
._10{margin-left:-8.904000px;}
._f{margin-left:-7.836000px;}
._7{margin-left:-6.799800px;}
._3{margin-left:-4.897200px;}
._2{margin-left:-3.639600px;}
._1{margin-left:-2.428800px;}
._0{margin-left:-1.168200px;}
._a{width:1.498200px;}
._b{width:2.790000px;}
._8{width:4.008000px;}
._5{width:5.406000px;}
._4{width:6.468000px;}
._6{width:8.329800px;}
._e{width:9.954000px;}
._c{width:11.530200px;}
._9{width:13.320000px;}
._d{width:16.626000px;}
._13{width:17.706000px;}
._12{width:18.966000px;}
._18{width:20.676000px;}
._42{width:22.590000px;}
._14{width:23.862000px;}
._1b{width:25.120200px;}
._17{width:26.262000px;}
._1c{width:27.264000px;}
._1a{width:28.362000px;}
._3c{width:30.838800px;}
._40{width:32.956800px;}
._1d{width:34.920000px;}
._41{width:36.282000px;}
._3d{width:37.662000px;}
._2c{width:39.000000px;}
._3e{width:40.920000px;}
._27{width:45.000000px;}
._2a{width:69.435600px;}
._29{width:75.000000px;}
._31{width:77.220000px;}
._2b{width:79.768800px;}
._28{width:82.755600px;}
._32{width:99.644400px;}
._22{width:101.142600px;}
._34{width:105.000000px;}
._2f{width:108.000000px;}
._33{width:109.768800px;}
._26{width:112.540800px;}
._24{width:123.000000px;}
._39{width:129.435600px;}
._23{width:130.594800px;}
._37{width:138.000000px;}
._21{width:139.193400px;}
._3b{width:140.314200px;}
._30{width:142.540800px;}
._38{width:144.969600px;}
._35{width:153.000000px;}
._3a{width:172.540800px;}
._20{width:185.832000px;}
._25{width:188.042400px;}
._36{width:218.042400px;}
._2e{width:259.816200px;}
._2d{width:364.808400px;}
._1f{width:684.495000px;}
._19{width:729.232200px;}
.fc3{color:rgb(27,28,32);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:16.863000px;}
.fs7{font-size:24.486000px;}
.fsa{font-size:31.227600px;}
.fs3{font-size:34.980000px;}
.fsc{font-size:37.473600px;}
.fs2{font-size:41.976000px;}
.fs8{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fse{font-size:51.000000px;}
.fsd{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:3.359100px;}
.y17{bottom:85.195350px;}
.y16{bottom:97.795350px;}
.y67{bottom:110.834700px;}
.y15{bottom:113.891850px;}
.y69{bottom:128.834700px;}
.y2d{bottom:146.834700px;}
.y2c{bottom:164.834700px;}
.y2b{bottom:182.834700px;}
.y2a{bottom:200.834700px;}
.y29{bottom:218.834700px;}
.y28{bottom:236.834700px;}
.y27{bottom:254.834700px;}
.y26{bottom:272.834700px;}
.y25{bottom:290.834700px;}
.y24{bottom:308.834700px;}
.y23{bottom:326.834700px;}
.y22{bottom:344.834700px;}
.y21{bottom:362.834700px;}
.y20{bottom:380.834700px;}
.y1f{bottom:398.834700px;}
.y1e{bottom:416.834700px;}
.y1d{bottom:434.834700px;}
.y1c{bottom:452.834700px;}
.y1b{bottom:470.834700px;}
.y1a{bottom:488.834700px;}
.y19{bottom:506.834700px;}
.y18{bottom:524.834700px;}
.y51{bottom:542.834700px;}
.y50{bottom:560.834700px;}
.y13{bottom:566.471850px;}
.y4f{bottom:578.834700px;}
.y12{bottom:587.523900px;}
.y66{bottom:596.834700px;}
.y11{bottom:604.323900px;}
.y3e{bottom:613.578000px;}
.y65{bottom:614.834700px;}
.y10{bottom:621.123900px;}
.y64{bottom:632.834700px;}
.yf{bottom:637.923900px;}
.y63{bottom:650.834700px;}
.ye{bottom:654.723900px;}
.y80{bottom:667.345050px;}
.y62{bottom:668.834700px;}
.y4d{bottom:671.846986px;}
.y3d{bottom:676.762890px;}
.yd{bottom:680.027850px;}
.y7f{bottom:682.644900px;}
.y61{bottom:686.834700px;}
.y4e{bottom:694.877629px;}
.y7e{bottom:697.945050px;}
.yc{bottom:698.027850px;}
.y60{bottom:704.834700px;}
.y7d{bottom:713.245050px;}
.yb{bottom:716.027850px;}
.y5f{bottom:722.834700px;}
.y4c{bottom:728.447646px;}
.y7c{bottom:728.545050px;}
.y5e{bottom:740.834700px;}
.y3c{bottom:745.463610px;}
.y7b{bottom:750.975900px;}
.y5d{bottom:758.834700px;}
.y7a{bottom:769.880250px;}
.y4b{bottom:773.619407px;}
.y5c{bottom:776.834700px;}
.ya{bottom:781.047450px;}
.y79{bottom:788.784450px;}
.y5b{bottom:794.834700px;}
.y4a{bottom:795.250420px;}
.y49{bottom:799.154205px;}
.y48{bottom:803.057989px;}
.y47{bottom:806.961774px;}
.y78{bottom:807.688800px;}
.y9{bottom:808.392450px;}
.y46{bottom:810.865558px;}
.y5a{bottom:812.834700px;}
.y3b{bottom:814.164330px;}
.y45{bottom:814.769343px;}
.y43{bottom:818.673127px;}
.y44{bottom:822.576912px;}
.y77{bottom:826.593150px;}
.y59{bottom:830.834700px;}
.y8{bottom:835.242450px;}
.y76{bottom:845.497500px;}
.y58{bottom:848.834700px;}
.y42{bottom:859.270800px;}
.y7{bottom:862.092450px;}
.y75{bottom:864.401850px;}
.y57{bottom:866.834700px;}
.y3a{bottom:882.865050px;}
.y74{bottom:883.306200px;}
.y6{bottom:883.947450px;}
.y56{bottom:884.834700px;}
.y41{bottom:896.745533px;}
.y73{bottom:902.210400px;}
.y55{bottom:902.834700px;}
.y40{bottom:903.107100px;}
.y5{bottom:911.292450px;}
.y54{bottom:920.834700px;}
.y72{bottom:921.114750px;}
.y53{bottom:938.834700px;}
.y71{bottom:940.019100px;}
.y4{bottom:943.647450px;}
.y52{bottom:956.834700px;}
.y70{bottom:958.923450px;}
.y3{bottom:966.147450px;}
.y39{bottom:974.834700px;}
.y6f{bottom:977.827800px;}
.y38{bottom:992.834700px;}
.y6e{bottom:996.732150px;}
.y37{bottom:1010.834700px;}
.y6d{bottom:1015.636350px;}
.y2{bottom:1016.285250px;}
.y36{bottom:1028.834700px;}
.y1{bottom:1036.085250px;}
.y6c{bottom:1038.792750px;}
.y35{bottom:1046.834700px;}
.y6a{bottom:1052.496900px;}
.y34{bottom:1064.834700px;}
.y6b{bottom:1066.720950px;}
.y33{bottom:1082.834700px;}
.y32{bottom:1100.834700px;}
.y31{bottom:1118.834700px;}
.y30{bottom:1136.834700px;}
.y14{bottom:1172.857200px;}
.y2f{bottom:1179.843300px;}
.y68{bottom:1180.348650px;}
.y2e{bottom:1180.363350px;}
.h10{height:11.972730px;}
.he{height:22.171596px;}
.ha{height:22.866539px;}
.h11{height:26.600523px;}
.h4{height:30.692900px;}
.h15{height:35.436035px;}
.hb{height:36.852539px;}
.h7{height:39.604980px;}
.h13{height:41.074219px;}
.h9{height:41.343788px;}
.h5{height:41.660156px;}
.hc{height:41.689453px;}
.h16{height:41.806641px;}
.h2{height:45.181641px;}
.h8{height:50.014160px;}
.h14{height:50.566884px;}
.h6{height:52.646484px;}
.h12{height:53.257409px;}
.hd{height:55.278809px;}
.h3{height:63.175781px;}
.hf{height:331.980000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:346.536000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:94.365150px;}
.x3{left:102.701400px;}
.x20{left:110.860950px;}
.x1{left:111.973200px;}
.x7{left:113.327550px;}
.xd{left:114.803100px;}
.x23{left:121.181100px;}
.x9{left:136.624350px;}
.xb{left:157.322850px;}
.x2{left:165.155100px;}
.x18{left:180.915247px;}
.x1b{left:184.958151px;}
.xc{left:187.086600px;}
.x22{left:207.459150px;}
.x1a{left:247.325956px;}
.x19{left:251.659747px;}
.x21{left:277.783800px;}
.x8{left:280.530300px;}
.x12{left:285.201600px;}
.x1d{left:291.494550px;}
.x6{left:310.720650px;}
.x1f{left:321.282150px;}
.x13{left:322.461450px;}
.x17{left:324.031528px;}
.x1c{left:329.377099px;}
.x16{left:350.683499px;}
.x4{left:352.347900px;}
.x14{left:354.926941px;}
.xa{left:379.579350px;}
.x15{left:386.858850px;}
.x10{left:409.593900px;}
.x11{left:418.364850px;}
.xe{left:452.834700px;}
.xf{left:474.094500px;}
.x26{left:555.261150px;}
.x24{left:619.560450px;}
.x25{left:635.673750px;}
.x1e{left:752.824650px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v4{vertical-align:-12.432000pt;}
.v5{vertical-align:-1.796800pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:21.312000pt;}
.lsb{letter-spacing:-4.906667pt;}
.lsf{letter-spacing:-2.933333pt;}
.ls7{letter-spacing:-1.066667pt;}
.ls5{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:-0.426667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000533pt;}
.ls3{letter-spacing:0.004267pt;}
.ls2{letter-spacing:0.426667pt;}
.lsa{letter-spacing:1.866667pt;}
.ls1{letter-spacing:3.362667pt;}
.lsd{letter-spacing:8.897600pt;}
.ls8{letter-spacing:12.085867pt;}
.ls9{letter-spacing:15.225600pt;}
.lse{letter-spacing:31.650667pt;}
.lsc{letter-spacing:35.139733pt;}
.ws1e{word-spacing:-53.333333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws7{word-spacing:-12.800000pt;}
.ws60{word-spacing:-10.400000pt;}
.ws6{word-spacing:-9.333333pt;}
.ws0{word-spacing:-9.328000pt;}
.ws2{word-spacing:-7.773333pt;}
.ws1c{word-spacing:-5.884668pt;}
.ws5{word-spacing:-5.441333pt;}
.wse{word-spacing:-5.189333pt;}
.ws1d{word-spacing:-3.177739pt;}
.wsf{word-spacing:-2.986667pt;}
.ws43{word-spacing:-2.933333pt;}
.ws25{word-spacing:-2.560000pt;}
.ws13{word-spacing:-2.400000pt;}
.ws2a{word-spacing:-2.240000pt;}
.ws44{word-spacing:-1.866667pt;}
.wsd{word-spacing:-1.621333pt;}
.ws12{word-spacing:-1.280000pt;}
.ws20{word-spacing:-0.999283pt;}
.ws4a{word-spacing:-0.960000pt;}
.ws22{word-spacing:-0.586667pt;}
.ws21{word-spacing:-0.539616pt;}
.ws24{word-spacing:-0.426667pt;}
.wsa{word-spacing:-0.320000pt;}
.ws36{word-spacing:-0.213333pt;}
.ws8{word-spacing:0.000000pt;}
.ws23{word-spacing:0.426667pt;}
.ws10{word-spacing:0.533333pt;}
.ws6d{word-spacing:0.746667pt;}
.ws6e{word-spacing:0.960000pt;}
.ws30{word-spacing:1.066667pt;}
.ws6a{word-spacing:1.173333pt;}
.ws15{word-spacing:1.280000pt;}
.ws68{word-spacing:1.440000pt;}
.ws46{word-spacing:1.653333pt;}
.ws29{word-spacing:1.706667pt;}
.wsc{word-spacing:2.381333pt;}
.ws2d{word-spacing:2.400000pt;}
.ws5f{word-spacing:3.040000pt;}
.ws11{word-spacing:3.573333pt;}
.ws45{word-spacing:5.066667pt;}
.ws64{word-spacing:5.173333pt;}
.ws67{word-spacing:5.653333pt;}
.ws9{word-spacing:5.760000pt;}
.ws28{word-spacing:6.133333pt;}
.ws35{word-spacing:6.346667pt;}
.ws70{word-spacing:6.506667pt;}
.ws1b{word-spacing:6.773333pt;}
.ws48{word-spacing:6.880000pt;}
.wsb{word-spacing:7.397333pt;}
.ws4d{word-spacing:7.413333pt;}
.ws2f{word-spacing:7.786667pt;}
.ws61{word-spacing:7.946667pt;}
.ws49{word-spacing:8.266667pt;}
.ws2c{word-spacing:8.373333pt;}
.ws6f{word-spacing:8.586667pt;}
.ws73{word-spacing:8.906667pt;}
.ws32{word-spacing:10.026667pt;}
.ws19{word-spacing:10.186667pt;}
.ws47{word-spacing:10.506667pt;}
.ws34{word-spacing:10.933333pt;}
.ws14{word-spacing:11.040000pt;}
.ws33{word-spacing:11.200000pt;}
.ws4b{word-spacing:12.266667pt;}
.ws77{word-spacing:12.426667pt;}
.ws69{word-spacing:12.746667pt;}
.ws1f{word-spacing:13.813333pt;}
.ws4f{word-spacing:13.973333pt;}
.ws2e{word-spacing:14.400000pt;}
.ws27{word-spacing:15.253333pt;}
.ws31{word-spacing:15.573333pt;}
.ws71{word-spacing:16.000000pt;}
.ws16{word-spacing:16.960000pt;}
.ws2b{word-spacing:17.333333pt;}
.ws17{word-spacing:17.760000pt;}
.ws1a{word-spacing:18.826667pt;}
.ws76{word-spacing:18.933333pt;}
.ws66{word-spacing:19.306667pt;}
.ws62{word-spacing:21.173333pt;}
.ws75{word-spacing:21.706667pt;}
.ws4e{word-spacing:22.826667pt;}
.ws26{word-spacing:23.360000pt;}
.ws63{word-spacing:27.200000pt;}
.ws72{word-spacing:27.573333pt;}
.ws6c{word-spacing:27.840000pt;}
.ws65{word-spacing:29.173333pt;}
.ws50{word-spacing:30.240000pt;}
.ws74{word-spacing:33.493333pt;}
.ws53{word-spacing:34.666667pt;}
.ws6b{word-spacing:35.146667pt;}
.ws18{word-spacing:36.160000pt;}
.ws52{word-spacing:40.000000pt;}
.ws56{word-spacing:61.333333pt;}
.ws4c{word-spacing:62.240000pt;}
.ws5a{word-spacing:63.306667pt;}
.ws55{word-spacing:66.666667pt;}
.ws5e{word-spacing:68.640000pt;}
.ws51{word-spacing:69.333333pt;}
.ws3d{word-spacing:87.187733pt;}
.ws5d{word-spacing:88.000000pt;}
.ws3e{word-spacing:90.121067pt;}
.ws37{word-spacing:92.880000pt;}
.ws59{word-spacing:93.333333pt;}
.ws57{word-spacing:96.000000pt;}
.ws3f{word-spacing:96.041067pt;}
.ws39{word-spacing:98.974400pt;}
.ws3c{word-spacing:101.961067pt;}
.ws54{word-spacing:109.333333pt;}
.ws42{word-spacing:110.761067pt;}
.ws40{word-spacing:110.867733pt;}
.ws41{word-spacing:113.801067pt;}
.ws5c{word-spacing:120.000000pt;}
.ws5b{word-spacing:122.666667pt;}
.ws38{word-spacing:131.614400pt;}
.ws58{word-spacing:136.000000pt;}
.ws3b{word-spacing:144.345067pt;}
.ws3a{word-spacing:158.910933pt;}
.ws4{word-spacing:795.923733pt;}
._16{margin-left:-310.971380pt;}
._15{margin-left:-284.740196pt;}
._1e{margin-left:-62.213867pt;}
._3f{margin-left:-13.665600pt;}
._11{margin-left:-9.830933pt;}
._10{margin-left:-7.914667pt;}
._f{margin-left:-6.965333pt;}
._7{margin-left:-6.044267pt;}
._3{margin-left:-4.353067pt;}
._2{margin-left:-3.235200pt;}
._1{margin-left:-2.158933pt;}
._0{margin-left:-1.038400pt;}
._a{width:1.331733pt;}
._b{width:2.480000pt;}
._8{width:3.562667pt;}
._5{width:4.805333pt;}
._4{width:5.749333pt;}
._6{width:7.404267pt;}
._e{width:8.848000pt;}
._c{width:10.249067pt;}
._9{width:11.840000pt;}
._d{width:14.778667pt;}
._13{width:15.738667pt;}
._12{width:16.858667pt;}
._18{width:18.378667pt;}
._42{width:20.080000pt;}
._14{width:21.210667pt;}
._1b{width:22.329067pt;}
._17{width:23.344000pt;}
._1c{width:24.234667pt;}
._1a{width:25.210667pt;}
._3c{width:27.412267pt;}
._40{width:29.294933pt;}
._1d{width:31.040000pt;}
._41{width:32.250667pt;}
._3d{width:33.477333pt;}
._2c{width:34.666667pt;}
._3e{width:36.373333pt;}
._27{width:40.000000pt;}
._2a{width:61.720533pt;}
._29{width:66.666667pt;}
._31{width:68.640000pt;}
._2b{width:70.905600pt;}
._28{width:73.560533pt;}
._32{width:88.572800pt;}
._22{width:89.904533pt;}
._34{width:93.333333pt;}
._2f{width:96.000000pt;}
._33{width:97.572267pt;}
._26{width:100.036267pt;}
._24{width:109.333333pt;}
._39{width:115.053867pt;}
._23{width:116.084267pt;}
._37{width:122.666667pt;}
._21{width:123.727467pt;}
._3b{width:124.723733pt;}
._30{width:126.702933pt;}
._38{width:128.861867pt;}
._35{width:136.000000pt;}
._3a{width:153.369600pt;}
._20{width:165.184000pt;}
._25{width:167.148800pt;}
._36{width:193.815467pt;}
._2e{width:230.947733pt;}
._2d{width:324.274133pt;}
._1f{width:608.440000pt;}
._19{width:648.206400pt;}
.fsb{font-size:14.989333pt;}
.fs7{font-size:21.765333pt;}
.fsa{font-size:27.757867pt;}
.fs3{font-size:31.093333pt;}
.fsc{font-size:33.309867pt;}
.fs2{font-size:37.312000pt;}
.fs8{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fse{font-size:45.333333pt;}
.fsd{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:2.985867pt;}
.y17{bottom:75.729200pt;}
.y16{bottom:86.929200pt;}
.y67{bottom:98.519733pt;}
.y15{bottom:101.237200pt;}
.y69{bottom:114.519733pt;}
.y2d{bottom:130.519733pt;}
.y2c{bottom:146.519733pt;}
.y2b{bottom:162.519733pt;}
.y2a{bottom:178.519733pt;}
.y29{bottom:194.519733pt;}
.y28{bottom:210.519733pt;}
.y27{bottom:226.519733pt;}
.y26{bottom:242.519733pt;}
.y25{bottom:258.519733pt;}
.y24{bottom:274.519733pt;}
.y23{bottom:290.519733pt;}
.y22{bottom:306.519733pt;}
.y21{bottom:322.519733pt;}
.y20{bottom:338.519733pt;}
.y1f{bottom:354.519733pt;}
.y1e{bottom:370.519733pt;}
.y1d{bottom:386.519733pt;}
.y1c{bottom:402.519733pt;}
.y1b{bottom:418.519733pt;}
.y1a{bottom:434.519733pt;}
.y19{bottom:450.519733pt;}
.y18{bottom:466.519733pt;}
.y51{bottom:482.519733pt;}
.y50{bottom:498.519733pt;}
.y13{bottom:503.530533pt;}
.y4f{bottom:514.519733pt;}
.y12{bottom:522.243467pt;}
.y66{bottom:530.519733pt;}
.y11{bottom:537.176800pt;}
.y3e{bottom:545.402667pt;}
.y65{bottom:546.519733pt;}
.y10{bottom:552.110133pt;}
.y64{bottom:562.519733pt;}
.yf{bottom:567.043467pt;}
.y63{bottom:578.519733pt;}
.ye{bottom:581.976800pt;}
.y80{bottom:593.195600pt;}
.y62{bottom:594.519733pt;}
.y4d{bottom:597.197321pt;}
.y3d{bottom:601.567013pt;}
.yd{bottom:604.469200pt;}
.y7f{bottom:606.795467pt;}
.y61{bottom:610.519733pt;}
.y4e{bottom:617.669003pt;}
.y7e{bottom:620.395600pt;}
.yc{bottom:620.469200pt;}
.y60{bottom:626.519733pt;}
.y7d{bottom:633.995600pt;}
.yb{bottom:636.469200pt;}
.y5f{bottom:642.519733pt;}
.y4c{bottom:647.509019pt;}
.y7c{bottom:647.595600pt;}
.y5e{bottom:658.519733pt;}
.y3c{bottom:662.634320pt;}
.y7b{bottom:667.534133pt;}
.y5d{bottom:674.519733pt;}
.y7a{bottom:684.338000pt;}
.y4b{bottom:687.661695pt;}
.y5c{bottom:690.519733pt;}
.ya{bottom:694.264400pt;}
.y79{bottom:701.141733pt;}
.y5b{bottom:706.519733pt;}
.y4a{bottom:706.889263pt;}
.y49{bottom:710.359293pt;}
.y48{bottom:713.829324pt;}
.y47{bottom:717.299355pt;}
.y78{bottom:717.945600pt;}
.y9{bottom:718.571067pt;}
.y46{bottom:720.769385pt;}
.y5a{bottom:722.519733pt;}
.y3b{bottom:723.701627pt;}
.y45{bottom:724.239416pt;}
.y43{bottom:727.709447pt;}
.y44{bottom:731.179477pt;}
.y77{bottom:734.749467pt;}
.y59{bottom:738.519733pt;}
.y8{bottom:742.437733pt;}
.y76{bottom:751.553333pt;}
.y58{bottom:754.519733pt;}
.y42{bottom:763.796267pt;}
.y7{bottom:766.304400pt;}
.y75{bottom:768.357200pt;}
.y57{bottom:770.519733pt;}
.y3a{bottom:784.768933pt;}
.y74{bottom:785.161067pt;}
.y6{bottom:785.731067pt;}
.y56{bottom:786.519733pt;}
.y41{bottom:797.107141pt;}
.y73{bottom:801.964800pt;}
.y55{bottom:802.519733pt;}
.y40{bottom:802.761867pt;}
.y5{bottom:810.037733pt;}
.y54{bottom:818.519733pt;}
.y72{bottom:818.768667pt;}
.y53{bottom:834.519733pt;}
.y71{bottom:835.572533pt;}
.y4{bottom:838.797733pt;}
.y52{bottom:850.519733pt;}
.y70{bottom:852.376400pt;}
.y3{bottom:858.797733pt;}
.y39{bottom:866.519733pt;}
.y6f{bottom:869.180267pt;}
.y38{bottom:882.519733pt;}
.y6e{bottom:885.984133pt;}
.y37{bottom:898.519733pt;}
.y6d{bottom:902.787867pt;}
.y2{bottom:903.364667pt;}
.y36{bottom:914.519733pt;}
.y1{bottom:920.964667pt;}
.y6c{bottom:923.371333pt;}
.y35{bottom:930.519733pt;}
.y6a{bottom:935.552800pt;}
.y34{bottom:946.519733pt;}
.y6b{bottom:948.196400pt;}
.y33{bottom:962.519733pt;}
.y32{bottom:978.519733pt;}
.y31{bottom:994.519733pt;}
.y30{bottom:1010.519733pt;}
.y14{bottom:1042.539733pt;}
.y2f{bottom:1048.749600pt;}
.y68{bottom:1049.198800pt;}
.y2e{bottom:1049.211867pt;}
.h10{height:10.642427pt;}
.he{height:19.708085pt;}
.ha{height:20.325813pt;}
.h11{height:23.644909pt;}
.h4{height:27.282578pt;}
.h15{height:31.498698pt;}
.hb{height:32.757812pt;}
.h7{height:35.204427pt;}
.h13{height:36.510417pt;}
.h9{height:36.750033pt;}
.h5{height:37.031250pt;}
.hc{height:37.057292pt;}
.h16{height:37.161458pt;}
.h2{height:40.161458pt;}
.h8{height:44.457031pt;}
.h14{height:44.948342pt;}
.h6{height:46.796875pt;}
.h12{height:47.339919pt;}
.hd{height:49.136719pt;}
.h3{height:56.156250pt;}
.hf{height:295.093333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:308.032000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:83.880133pt;}
.x3{left:91.290133pt;}
.x20{left:98.543067pt;}
.x1{left:99.531733pt;}
.x7{left:100.735600pt;}
.xd{left:102.047200pt;}
.x23{left:107.716533pt;}
.x9{left:121.443867pt;}
.xb{left:139.842533pt;}
.x2{left:146.804533pt;}
.x18{left:160.813553pt;}
.x1b{left:164.407245pt;}
.xc{left:166.299200pt;}
.x22{left:184.408133pt;}
.x1a{left:219.845295pt;}
.x19{left:223.697553pt;}
.x21{left:246.918933pt;}
.x8{left:249.360267pt;}
.x12{left:253.512533pt;}
.x1d{left:259.106267pt;}
.x6{left:276.196133pt;}
.x1f{left:285.584133pt;}
.x13{left:286.632400pt;}
.x17{left:288.028025pt;}
.x1c{left:292.779643pt;}
.x16{left:311.718666pt;}
.x4{left:313.198133pt;}
.x14{left:315.490614pt;}
.xa{left:337.403867pt;}
.x15{left:343.874533pt;}
.x10{left:364.083467pt;}
.x11{left:371.879867pt;}
.xe{left:402.519733pt;}
.xf{left:421.417333pt;}
.x26{left:493.565467pt;}
.x24{left:550.720400pt;}
.x25{left:565.043333pt;}
.x1e{left:669.177467pt;}
}




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