
    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_fd51d73b3f3b107faf953e69.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.138000;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_6aa84ccb2e7ebb3b49d56914.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.137667;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_2bb507db336a37ac85e97c28.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.964000;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_8c80a72558b4e142541026c5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0fa51f9c9f13c4f8a353762a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e84016f5addd2351f0bbc819.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_e0bb9f52c2b5d4ae807b2b27.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.103027;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_9da5c0e020f86b57a45a75e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.012695;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_787d61fe16f796e14b2e5070.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1d8475a538daa09353183852.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.977061;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_d7284c04cdb17e59fa2df2af.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.935547;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);}
.v4{vertical-align:-57.027960px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.403040px;}
.v1{vertical-align:57.827040px;}
.v3{vertical-align:64.800000px;}
.ls36{letter-spacing:-0.505440px;}
.lsf{letter-spacing:-0.397440px;}
.ls9{letter-spacing:-0.331200px;}
.ls16{letter-spacing:-0.324000px;}
.ls20{letter-spacing:-0.298800px;}
.ls2c{letter-spacing:-0.298080px;}
.ls19{letter-spacing:-0.287280px;}
.ls30{letter-spacing:-0.270000px;}
.ls38{letter-spacing:-0.240480px;}
.ls7{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.198720px;}
.ls18{letter-spacing:-0.192240px;}
.ls6{letter-spacing:-0.191520px;}
.ls2e{letter-spacing:-0.190080px;}
.ls1d{letter-spacing:-0.168480px;}
.ls2{letter-spacing:-0.167760px;}
.ls2f{letter-spacing:-0.162000px;}
.lse{letter-spacing:-0.132480px;}
.ls24{letter-spacing:-0.119520px;}
.ls15{letter-spacing:-0.108000px;}
.ls4{letter-spacing:-0.095760px;}
.lsd{letter-spacing:-0.066240px;}
.ls22{letter-spacing:-0.059760px;}
.ls25{letter-spacing:-0.054000px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.066240px;}
.ls32{letter-spacing:0.081360px;}
.ls5{letter-spacing:0.095760px;}
.ls2d{letter-spacing:0.099360px;}
.ls1b{letter-spacing:0.108000px;}
.ls2b{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.167760px;}
.ls34{letter-spacing:0.168480px;}
.ls23{letter-spacing:0.179280px;}
.ls8{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.239040px;}
.ls1f{letter-spacing:0.241200px;}
.ls1c{letter-spacing:0.252720px;}
.ls1e{letter-spacing:0.298800px;}
.ls31{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.331200px;}
.ls35{letter-spacing:0.336960px;}
.ls37{letter-spacing:0.464400px;}
.ls17{letter-spacing:0.670320px;}
.ls29{letter-spacing:12.582000px;}
.ls2a{letter-spacing:13.878000px;}
.ls33{letter-spacing:20.470320px;}
.ls0{letter-spacing:24.418800px;}
.ls13{letter-spacing:27.432000px;}
.ls11{letter-spacing:27.756000px;}
.ls12{letter-spacing:27.864000px;}
.ls28{letter-spacing:42.282000px;}
.ls14{letter-spacing:51.624000px;}
.ls1a{letter-spacing:51.969600px;}
.ls27{letter-spacing:82.620000px;}
.ls26{letter-spacing:82.620600px;}
.ls10{letter-spacing:102.600000px;}
.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;}
}
.ws20{word-spacing:-52.056000px;}
.wsc{word-spacing:-51.840000px;}
.ws14{word-spacing:-51.624000px;}
.ws31{word-spacing:-27.756000px;}
.ws1f{word-spacing:-27.540000px;}
.ws1e{word-spacing:-27.324000px;}
.ws1d{word-spacing:-27.216000px;}
.ws1{word-spacing:-24.514560px;}
.ws2{word-spacing:-24.418800px;}
.ws29{word-spacing:-24.323040px;}
.ws3{word-spacing:-24.227280px;}
.ws28{word-spacing:-22.790880px;}
.ws59{word-spacing:-21.733920px;}
.ws5c{word-spacing:-21.481200px;}
.ws5a{word-spacing:-21.312720px;}
.ws5b{word-spacing:-20.975760px;}
.wse{word-spacing:-16.493760px;}
.ws18{word-spacing:-16.427520px;}
.ws19{word-spacing:-16.361280px;}
.ws34{word-spacing:-16.295040px;}
.ws15{word-spacing:-16.162560px;}
.ws1a{word-spacing:-16.096320px;}
.ws44{word-spacing:-15.586560px;}
.ws60{word-spacing:-15.119280px;}
.ws38{word-spacing:-15.059520px;}
.ws36{word-spacing:-14.880240px;}
.ws35{word-spacing:-14.820480px;}
.ws39{word-spacing:-14.760720px;}
.ws37{word-spacing:-14.581440px;}
.ws42{word-spacing:-13.554000px;}
.ws47{word-spacing:-13.284000px;}
.ws41{word-spacing:-13.230000px;}
.ws45{word-spacing:-13.176000px;}
.ws43{word-spacing:-13.122000px;}
.ws46{word-spacing:-13.068000px;}
.ws4e{word-spacing:-2.808000px;}
.ws4a{word-spacing:-2.484000px;}
.ws52{word-spacing:-2.278080px;}
.ws2b{word-spacing:-1.922400px;}
.ws4d{word-spacing:-1.900800px;}
.ws11{word-spacing:-1.722240px;}
.ws5d{word-spacing:-1.684800px;}
.wsd{word-spacing:-1.636128px;}
.ws56{word-spacing:-1.625832px;}
.ws50{word-spacing:-1.512000px;}
.ws24{word-spacing:-1.404000px;}
.ws57{word-spacing:-1.398384px;}
.wsb{word-spacing:-1.296000px;}
.ws12{word-spacing:-1.192320px;}
.ws5e{word-spacing:-1.179360px;}
.ws4c{word-spacing:-1.140480px;}
.wsa{word-spacing:-0.864000px;}
.ws32{word-spacing:-0.842400px;}
.ws62{word-spacing:-0.841680px;}
.ws30{word-spacing:-0.680400px;}
.ws3a{word-spacing:-0.675360px;}
.ws4f{word-spacing:-0.648000px;}
.ws54{word-spacing:-0.594000px;}
.ws2f{word-spacing:-0.432000px;}
.wsf{word-spacing:-0.216000px;}
.ws4{word-spacing:-0.167760px;}
.ws55{word-spacing:-0.162000px;}
.ws63{word-spacing:-0.120240px;}
.ws49{word-spacing:-0.099360px;}
.ws13{word-spacing:-0.066240px;}
.ws8{word-spacing:0.000000px;}
.ws40{word-spacing:0.054000px;}
.ws58{word-spacing:0.101088px;}
.ws21{word-spacing:0.108000px;}
.ws5{word-spacing:0.167760px;}
.ws5f{word-spacing:0.168480px;}
.ws61{word-spacing:0.179280px;}
.ws53{word-spacing:0.190080px;}
.ws9{word-spacing:0.191520px;}
.ws4b{word-spacing:0.198720px;}
.ws17{word-spacing:0.216000px;}
.ws33{word-spacing:0.252720px;}
.ws48{word-spacing:0.298080px;}
.ws25{word-spacing:0.324000px;}
.ws3f{word-spacing:0.331200px;}
.ws10{word-spacing:0.397440px;}
.ws3d{word-spacing:0.537840px;}
.ws3c{word-spacing:0.717120px;}
.ws1c{word-spacing:0.719280px;}
.ws22{word-spacing:0.756000px;}
.ws6{word-spacing:0.766080px;}
.ws7{word-spacing:0.861840px;}
.ws1b{word-spacing:0.864000px;}
.ws2d{word-spacing:0.957600px;}
.ws23{word-spacing:1.080000px;}
.ws51{word-spacing:1.188000px;}
.ws3b{word-spacing:1.254960px;}
.ws3e{word-spacing:1.434240px;}
.ws27{word-spacing:1.620000px;}
.ws2c{word-spacing:1.819440px;}
.ws26{word-spacing:2.268000px;}
.ws2e{word-spacing:2.394000px;}
.ws0{word-spacing:3.026016px;}
.ws2a{word-spacing:4.002768px;}
.ws16{word-spacing:1922.623368px;}
._5{margin-left:-2.350512px;}
._0{margin-left:-1.174320px;}
._2{width:1.207872px;}
._1{width:2.650608px;}
._4{width:3.709584px;}
._6{width:5.245920px;}
._7{width:53.568000px;}
._3{width:1369.958112px;}
._8{width:1479.403848px;}
.fc5{color:rgb(8,103,136);}
.fc3{color:rgb(240,162,2);}
.fc2{color:transparent;}
.fc1{color:rgb(52,148,186);}
.fc6{color:rgb(171,221,241);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fsc{font-size:59.760000px;}
.fse{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsf{font-size:81.360000px;}
.fsa{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fsd{font-size:99.360000px;}
.fs7{font-size:108.000000px;}
.fs10{font-size:120.240000px;}
.fs8{font-size:144.000000px;}
.fs0{font-size:167.760000px;}
.fs9{font-size:192.240000px;}
.fs3{font-size:216.000000px;}
.fs6{font-size:239.760000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:22.452600px;}
.y48{bottom:23.186310px;}
.y3e{bottom:25.909050px;}
.ya{bottom:30.072840px;}
.y78{bottom:33.344760px;}
.y5c{bottom:38.652600px;}
.y47{bottom:43.893150px;}
.ye{bottom:44.178840px;}
.y12{bottom:44.529600px;}
.y9{bottom:49.878600px;}
.y29{bottom:53.851290px;}
.y1f{bottom:53.928000px;}
.y77{bottom:54.051600px;}
.y49{bottom:55.928250px;}
.y35{bottom:58.786590px;}
.yd{bottom:63.984600px;}
.y46{bottom:64.565790px;}
.y76{bottom:64.637010px;}
.y7{bottom:74.046900px;}
.y28{bottom:82.651110px;}
.y41{bottom:84.569250px;}
.y45{bottom:85.272630px;}
.y75{bottom:89.845830px;}
.y6{bottom:95.646900px;}
.y4f{bottom:96.059100px;}
.y44{bottom:105.979470px;}
.y27{bottom:111.450930px;}
.y34{bottom:112.615950px;}
.y4e{bottom:112.799100px;}
.y1c{bottom:113.292600px;}
.y74{bottom:115.054650px;}
.y5{bottom:118.687260px;}
.y43{bottom:126.686310px;}
.y3d{bottom:135.552750px;}
.y42{bottom:147.393150px;}
.y4{bottom:147.487080px;}
.y7f{bottom:163.012500px;}
.y7b{bottom:163.013850px;}
.y3c{bottom:167.952750px;}
.y3{bottom:176.286900px;}
.y60{bottom:185.678400px;}
.y1b{bottom:190.161600px;}
.y33{bottom:195.030000px;}
.y7e{bottom:195.412500px;}
.y7a{bottom:195.413850px;}
.y3b{bottom:200.352750px;}
.y5f{bottom:201.878400px;}
.y14{bottom:206.044260px;}
.y64{bottom:207.770400px;}
.y2{bottom:209.395020px;}
.y67{bottom:221.497050px;}
.y1a{bottom:222.561600px;}
.y63{bottom:223.970400px;}
.y5a{bottom:228.070200px;}
.y26{bottom:232.276110px;}
.y32{bottom:233.370000px;}
.y66{bottom:238.239930px;}
.y3a{bottom:238.692600px;}
.y62{bottom:240.713130px;}
.y59{bottom:244.270200px;}
.y7d{bottom:254.271450px;}
.y79{bottom:254.273850px;}
.y65{bottom:257.137050px;}
.y61{bottom:259.610250px;}
.y1{bottom:259.806900px;}
.y58{bottom:260.470200px;}
.y19{bottom:260.901600px;}
.y25{bottom:261.075930px;}
.y39{bottom:271.092600px;}
.y31{bottom:271.890000px;}
.y57{bottom:277.213080px;}
.y13{bottom:278.032200px;}
.y5e{bottom:288.006750px;}
.y24{bottom:289.875750px;}
.y18{bottom:293.301600px;}
.y56{bottom:296.110200px;}
.y38{bottom:309.612600px;}
.y30{bottom:310.230000px;}
.y7c{bottom:314.059650px;}
.y71{bottom:318.521130px;}
.y23{bottom:331.268010px;}
.y17{bottom:331.641600px;}
.y37{bottom:342.012600px;}
.y70{bottom:343.729950px;}
.y2f{bottom:348.570000px;}
.y2c{bottom:350.283450px;}
.y11{bottom:357.475050px;}
.y22{bottom:360.067830px;}
.y16{bottom:364.041600px;}
.y53{bottom:366.313500px;}
.y40{bottom:372.252600px;}
.y36{bottom:374.412600px;}
.y52{bottom:382.513500px;}
.y2e{bottom:387.090000px;}
.y6f{bottom:387.730350px;}
.y2b{bottom:388.803450px;}
.y21{bottom:388.867650px;}
.y15{bottom:396.441600px;}
.y51{bottom:398.713500px;}
.y6e{bottom:403.930350px;}
.y10{bottom:409.135050px;}
.y50{bottom:414.913500px;}
.y6d{bottom:420.130350px;}
.y2a{bottom:421.203450px;}
.y73{bottom:426.850650px;}
.yf{bottom:428.935050px;}
.y6c{bottom:436.330350px;}
.y54{bottom:437.415600px;}
.yc{bottom:450.240300px;}
.y1e{bottom:456.759450px;}
.y4d{bottom:474.975480px;}
.y3f{bottom:477.424200px;}
.y5b{bottom:477.698700px;}
.y55{bottom:478.439700px;}
.y72{bottom:491.650650px;}
.y4c{bottom:504.684120px;}
.y6b{bottom:513.509850px;}
.yb{bottom:515.040300px;}
.y1d{bottom:521.559450px;}
.y8{bottom:525.313350px;}
.y2d{bottom:529.264200px;}
.y6a{bottom:529.709850px;}
.y4b{bottom:534.392760px;}
.y20{bottom:536.796300px;}
.y69{bottom:545.909850px;}
.y68{bottom:562.109850px;}
.y4a{bottom:564.101400px;}
.h15{height:39.313477px;}
.h14{height:41.133374px;}
.hf{height:42.139336px;}
.h16{height:42.662109px;}
.h10{height:44.222400px;}
.h13{height:47.170898px;}
.h5{height:49.017600px;}
.h8{height:49.356000px;}
.h12{height:50.056875px;}
.h7{height:50.759040px;}
.h19{height:54.620640px;}
.h17{height:64.277578px;}
.h3{height:65.808000px;}
.he{height:71.982422px;}
.hd{height:76.995360px;}
.h18{height:77.030640px;}
.h11{height:78.498281px;}
.hc{height:87.045840px;}
.h2{height:87.524640px;}
.ha{height:98.712000px;}
.h6{height:107.183040px;}
.h1a{height:109.899360px;}
.h1{height:152.493840px;}
.hb{height:174.746160px;}
.h4{height:196.344000px;}
.h9{height:217.941840px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x14{left:34.800000px;}
.x16{left:48.182460px;}
.x9{left:62.292600px;}
.xe{left:64.929450px;}
.x21{left:71.545200px;}
.x23{left:73.240050px;}
.xc{left:77.456550px;}
.x1c{left:80.775450px;}
.x30{left:84.882750px;}
.x6{left:86.617500px;}
.x28{left:89.407050px;}
.x29{left:92.374650px;}
.xa{left:96.207600px;}
.x38{left:98.193150px;}
.x8{left:102.793050px;}
.x31{left:104.862750px;}
.x11{left:106.467450px;}
.x39{left:108.688200px;}
.x13{left:111.717450px;}
.x3c{left:112.723050px;}
.x3d{left:114.509550px;}
.xf{left:119.967450px;}
.x1d{left:121.275450px;}
.x3e{left:125.067750px;}
.x1f{left:126.434100px;}
.x1{left:128.557500px;}
.x2d{left:143.691450px;}
.x32{left:146.807250px;}
.x17{left:152.034180px;}
.x10{left:160.467450px;}
.x3a{left:191.090850px;}
.x2a{left:199.776150px;}
.x2e{left:227.541000px;}
.x35{left:254.598450px;}
.x2f{left:265.274700px;}
.x12{left:268.299150px;}
.xb{left:288.392250px;}
.x1b{left:299.935500px;}
.x4{left:303.870840px;}
.x1a{left:322.606680px;}
.x2{left:327.982200px;}
.x7{left:344.197500px;}
.x36{left:396.442950px;}
.x18{left:421.670400px;}
.x1e{left:478.473090px;}
.x3{left:483.157500px;}
.x5{left:487.658220px;}
.x19{left:523.128120px;}
.x15{left:556.045620px;}
.x33{left:560.424450px;}
.x34{left:570.688770px;}
.x2c{left:593.672550px;}
.x3f{left:635.653350px;}
.x3b{left:650.878650px;}
.x20{left:658.302150px;}
.x37{left:758.823450px;}
.x2b{left:764.785050px;}
.x22{left:789.188250px;}
.x27{left:799.156650px;}
.x26{left:839.471970px;}
.x25{left:922.984050px;}
.x24{left:1003.630500px;}
.xd{left:1009.390500px;}
@media print{
.v4{vertical-align:-50.691520pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.247147pt;}
.v1{vertical-align:51.401813pt;}
.v3{vertical-align:57.600000pt;}
.ls36{letter-spacing:-0.449280pt;}
.lsf{letter-spacing:-0.353280pt;}
.ls9{letter-spacing:-0.294400pt;}
.ls16{letter-spacing:-0.288000pt;}
.ls20{letter-spacing:-0.265600pt;}
.ls2c{letter-spacing:-0.264960pt;}
.ls19{letter-spacing:-0.255360pt;}
.ls30{letter-spacing:-0.240000pt;}
.ls38{letter-spacing:-0.213760pt;}
.ls7{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.176640pt;}
.ls18{letter-spacing:-0.170880pt;}
.ls6{letter-spacing:-0.170240pt;}
.ls2e{letter-spacing:-0.168960pt;}
.ls1d{letter-spacing:-0.149760pt;}
.ls2{letter-spacing:-0.149120pt;}
.ls2f{letter-spacing:-0.144000pt;}
.lse{letter-spacing:-0.117760pt;}
.ls24{letter-spacing:-0.106240pt;}
.ls15{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:-0.085120pt;}
.lsd{letter-spacing:-0.058880pt;}
.ls22{letter-spacing:-0.053120pt;}
.ls25{letter-spacing:-0.048000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.058880pt;}
.ls32{letter-spacing:0.072320pt;}
.ls5{letter-spacing:0.085120pt;}
.ls2d{letter-spacing:0.088320pt;}
.ls1b{letter-spacing:0.096000pt;}
.ls2b{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.149120pt;}
.ls34{letter-spacing:0.149760pt;}
.ls23{letter-spacing:0.159360pt;}
.ls8{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.212480pt;}
.ls1f{letter-spacing:0.214400pt;}
.ls1c{letter-spacing:0.224640pt;}
.ls1e{letter-spacing:0.265600pt;}
.ls31{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.294400pt;}
.ls35{letter-spacing:0.299520pt;}
.ls37{letter-spacing:0.412800pt;}
.ls17{letter-spacing:0.595840pt;}
.ls29{letter-spacing:11.184000pt;}
.ls2a{letter-spacing:12.336000pt;}
.ls33{letter-spacing:18.195840pt;}
.ls0{letter-spacing:21.705600pt;}
.ls13{letter-spacing:24.384000pt;}
.ls11{letter-spacing:24.672000pt;}
.ls12{letter-spacing:24.768000pt;}
.ls28{letter-spacing:37.584000pt;}
.ls14{letter-spacing:45.888000pt;}
.ls1a{letter-spacing:46.195200pt;}
.ls27{letter-spacing:73.440000pt;}
.ls26{letter-spacing:73.440533pt;}
.ls10{letter-spacing:91.200000pt;}
.ws20{word-spacing:-46.272000pt;}
.wsc{word-spacing:-46.080000pt;}
.ws14{word-spacing:-45.888000pt;}
.ws31{word-spacing:-24.672000pt;}
.ws1f{word-spacing:-24.480000pt;}
.ws1e{word-spacing:-24.288000pt;}
.ws1d{word-spacing:-24.192000pt;}
.ws1{word-spacing:-21.790720pt;}
.ws2{word-spacing:-21.705600pt;}
.ws29{word-spacing:-21.620480pt;}
.ws3{word-spacing:-21.535360pt;}
.ws28{word-spacing:-20.258560pt;}
.ws59{word-spacing:-19.319040pt;}
.ws5c{word-spacing:-19.094400pt;}
.ws5a{word-spacing:-18.944640pt;}
.ws5b{word-spacing:-18.645120pt;}
.wse{word-spacing:-14.661120pt;}
.ws18{word-spacing:-14.602240pt;}
.ws19{word-spacing:-14.543360pt;}
.ws34{word-spacing:-14.484480pt;}
.ws15{word-spacing:-14.366720pt;}
.ws1a{word-spacing:-14.307840pt;}
.ws44{word-spacing:-13.854720pt;}
.ws60{word-spacing:-13.439360pt;}
.ws38{word-spacing:-13.386240pt;}
.ws36{word-spacing:-13.226880pt;}
.ws35{word-spacing:-13.173760pt;}
.ws39{word-spacing:-13.120640pt;}
.ws37{word-spacing:-12.961280pt;}
.ws42{word-spacing:-12.048000pt;}
.ws47{word-spacing:-11.808000pt;}
.ws41{word-spacing:-11.760000pt;}
.ws45{word-spacing:-11.712000pt;}
.ws43{word-spacing:-11.664000pt;}
.ws46{word-spacing:-11.616000pt;}
.ws4e{word-spacing:-2.496000pt;}
.ws4a{word-spacing:-2.208000pt;}
.ws52{word-spacing:-2.024960pt;}
.ws2b{word-spacing:-1.708800pt;}
.ws4d{word-spacing:-1.689600pt;}
.ws11{word-spacing:-1.530880pt;}
.ws5d{word-spacing:-1.497600pt;}
.wsd{word-spacing:-1.454336pt;}
.ws56{word-spacing:-1.445184pt;}
.ws50{word-spacing:-1.344000pt;}
.ws24{word-spacing:-1.248000pt;}
.ws57{word-spacing:-1.243008pt;}
.wsb{word-spacing:-1.152000pt;}
.ws12{word-spacing:-1.059840pt;}
.ws5e{word-spacing:-1.048320pt;}
.ws4c{word-spacing:-1.013760pt;}
.wsa{word-spacing:-0.768000pt;}
.ws32{word-spacing:-0.748800pt;}
.ws62{word-spacing:-0.748160pt;}
.ws30{word-spacing:-0.604800pt;}
.ws3a{word-spacing:-0.600320pt;}
.ws4f{word-spacing:-0.576000pt;}
.ws54{word-spacing:-0.528000pt;}
.ws2f{word-spacing:-0.384000pt;}
.wsf{word-spacing:-0.192000pt;}
.ws4{word-spacing:-0.149120pt;}
.ws55{word-spacing:-0.144000pt;}
.ws63{word-spacing:-0.106880pt;}
.ws49{word-spacing:-0.088320pt;}
.ws13{word-spacing:-0.058880pt;}
.ws8{word-spacing:0.000000pt;}
.ws40{word-spacing:0.048000pt;}
.ws58{word-spacing:0.089856pt;}
.ws21{word-spacing:0.096000pt;}
.ws5{word-spacing:0.149120pt;}
.ws5f{word-spacing:0.149760pt;}
.ws61{word-spacing:0.159360pt;}
.ws53{word-spacing:0.168960pt;}
.ws9{word-spacing:0.170240pt;}
.ws4b{word-spacing:0.176640pt;}
.ws17{word-spacing:0.192000pt;}
.ws33{word-spacing:0.224640pt;}
.ws48{word-spacing:0.264960pt;}
.ws25{word-spacing:0.288000pt;}
.ws3f{word-spacing:0.294400pt;}
.ws10{word-spacing:0.353280pt;}
.ws3d{word-spacing:0.478080pt;}
.ws3c{word-spacing:0.637440pt;}
.ws1c{word-spacing:0.639360pt;}
.ws22{word-spacing:0.672000pt;}
.ws6{word-spacing:0.680960pt;}
.ws7{word-spacing:0.766080pt;}
.ws1b{word-spacing:0.768000pt;}
.ws2d{word-spacing:0.851200pt;}
.ws23{word-spacing:0.960000pt;}
.ws51{word-spacing:1.056000pt;}
.ws3b{word-spacing:1.115520pt;}
.ws3e{word-spacing:1.274880pt;}
.ws27{word-spacing:1.440000pt;}
.ws2c{word-spacing:1.617280pt;}
.ws26{word-spacing:2.016000pt;}
.ws2e{word-spacing:2.128000pt;}
.ws0{word-spacing:2.689792pt;}
.ws2a{word-spacing:3.558016pt;}
.ws16{word-spacing:1708.998549pt;}
._5{margin-left:-2.089344pt;}
._0{margin-left:-1.043840pt;}
._2{width:1.073664pt;}
._1{width:2.356096pt;}
._4{width:3.297408pt;}
._6{width:4.663040pt;}
._7{width:47.616000pt;}
._3{width:1217.740544pt;}
._8{width:1315.025643pt;}
.fsb{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fsc{font-size:53.120000pt;}
.fse{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsf{font-size:72.320000pt;}
.fsa{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fsd{font-size:88.320000pt;}
.fs7{font-size:96.000000pt;}
.fs10{font-size:106.880000pt;}
.fs8{font-size:128.000000pt;}
.fs0{font-size:149.120000pt;}
.fs9{font-size:170.880000pt;}
.fs3{font-size:192.000000pt;}
.fs6{font-size:213.120000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:19.957867pt;}
.y48{bottom:20.610053pt;}
.y3e{bottom:23.030267pt;}
.ya{bottom:26.731413pt;}
.y78{bottom:29.639787pt;}
.y5c{bottom:34.357867pt;}
.y47{bottom:39.016133pt;}
.ye{bottom:39.270080pt;}
.y12{bottom:39.581867pt;}
.y9{bottom:44.336533pt;}
.y29{bottom:47.867813pt;}
.y1f{bottom:47.936000pt;}
.y77{bottom:48.045867pt;}
.y49{bottom:49.714000pt;}
.y35{bottom:52.254747pt;}
.yd{bottom:56.875200pt;}
.y46{bottom:57.391813pt;}
.y76{bottom:57.455120pt;}
.y7{bottom:65.819467pt;}
.y28{bottom:73.467653pt;}
.y41{bottom:75.172667pt;}
.y45{bottom:75.797893pt;}
.y75{bottom:79.862960pt;}
.y6{bottom:85.019467pt;}
.y4f{bottom:85.385867pt;}
.y44{bottom:94.203973pt;}
.y27{bottom:99.067493pt;}
.y34{bottom:100.103067pt;}
.y4e{bottom:100.265867pt;}
.y1c{bottom:100.704533pt;}
.y74{bottom:102.270800pt;}
.y5{bottom:105.499787pt;}
.y43{bottom:112.610053pt;}
.y3d{bottom:120.491333pt;}
.y42{bottom:131.016133pt;}
.y4{bottom:131.099627pt;}
.y7f{bottom:144.900000pt;}
.y7b{bottom:144.901200pt;}
.y3c{bottom:149.291333pt;}
.y3{bottom:156.699467pt;}
.y60{bottom:165.047467pt;}
.y1b{bottom:169.032533pt;}
.y33{bottom:173.360000pt;}
.y7e{bottom:173.700000pt;}
.y7a{bottom:173.701200pt;}
.y3b{bottom:178.091333pt;}
.y5f{bottom:179.447467pt;}
.y14{bottom:183.150453pt;}
.y64{bottom:184.684800pt;}
.y2{bottom:186.128907pt;}
.y67{bottom:196.886267pt;}
.y1a{bottom:197.832533pt;}
.y63{bottom:199.084800pt;}
.y5a{bottom:202.729067pt;}
.y26{bottom:206.467653pt;}
.y32{bottom:207.440000pt;}
.y66{bottom:211.768827pt;}
.y3a{bottom:212.171200pt;}
.y62{bottom:213.967227pt;}
.y59{bottom:217.129067pt;}
.y7d{bottom:226.019067pt;}
.y79{bottom:226.021200pt;}
.y65{bottom:228.566267pt;}
.y61{bottom:230.764667pt;}
.y1{bottom:230.939467pt;}
.y58{bottom:231.529067pt;}
.y19{bottom:231.912533pt;}
.y25{bottom:232.067493pt;}
.y39{bottom:240.971200pt;}
.y31{bottom:241.680000pt;}
.y57{bottom:246.411627pt;}
.y13{bottom:247.139733pt;}
.y5e{bottom:256.006000pt;}
.y24{bottom:257.667333pt;}
.y18{bottom:260.712533pt;}
.y56{bottom:263.209067pt;}
.y38{bottom:275.211200pt;}
.y30{bottom:275.760000pt;}
.y7c{bottom:279.164133pt;}
.y71{bottom:283.129893pt;}
.y23{bottom:294.460453pt;}
.y17{bottom:294.792533pt;}
.y37{bottom:304.011200pt;}
.y70{bottom:305.537733pt;}
.y2f{bottom:309.840000pt;}
.y2c{bottom:311.363067pt;}
.y11{bottom:317.755600pt;}
.y22{bottom:320.060293pt;}
.y16{bottom:323.592533pt;}
.y53{bottom:325.612000pt;}
.y40{bottom:330.891200pt;}
.y36{bottom:332.811200pt;}
.y52{bottom:340.012000pt;}
.y2e{bottom:344.080000pt;}
.y6f{bottom:344.649200pt;}
.y2b{bottom:345.603067pt;}
.y21{bottom:345.660133pt;}
.y15{bottom:352.392533pt;}
.y51{bottom:354.412000pt;}
.y6e{bottom:359.049200pt;}
.y10{bottom:363.675600pt;}
.y50{bottom:368.812000pt;}
.y6d{bottom:373.449200pt;}
.y2a{bottom:374.403067pt;}
.y73{bottom:379.422800pt;}
.yf{bottom:381.275600pt;}
.y6c{bottom:387.849200pt;}
.y54{bottom:388.813867pt;}
.yc{bottom:400.213600pt;}
.y1e{bottom:406.008400pt;}
.y4d{bottom:422.200427pt;}
.y3f{bottom:424.377067pt;}
.y5b{bottom:424.621067pt;}
.y55{bottom:425.279733pt;}
.y72{bottom:437.022800pt;}
.y4c{bottom:448.608107pt;}
.y6b{bottom:456.453200pt;}
.yb{bottom:457.813600pt;}
.y1d{bottom:463.608400pt;}
.y8{bottom:466.945200pt;}
.y2d{bottom:470.457067pt;}
.y6a{bottom:470.853200pt;}
.y4b{bottom:475.015787pt;}
.y20{bottom:477.152267pt;}
.y69{bottom:485.253200pt;}
.y68{bottom:499.653200pt;}
.y4a{bottom:501.423467pt;}
.h15{height:34.945312pt;}
.h14{height:36.562999pt;}
.hf{height:37.457187pt;}
.h16{height:37.921875pt;}
.h10{height:39.308800pt;}
.h13{height:41.929688pt;}
.h5{height:43.571200pt;}
.h8{height:43.872000pt;}
.h12{height:44.495000pt;}
.h7{height:45.119147pt;}
.h19{height:48.551680pt;}
.h17{height:57.135625pt;}
.h3{height:58.496000pt;}
.he{height:63.984375pt;}
.hd{height:68.440320pt;}
.h18{height:68.471680pt;}
.h11{height:69.776250pt;}
.hc{height:77.374080pt;}
.h2{height:77.799680pt;}
.ha{height:87.744000pt;}
.h6{height:95.273813pt;}
.h1a{height:97.688320pt;}
.h1{height:135.550080pt;}
.hb{height:155.329920pt;}
.h4{height:174.528000pt;}
.h9{height:193.726080pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x14{left:30.933333pt;}
.x16{left:42.828853pt;}
.x9{left:55.371200pt;}
.xe{left:57.715067pt;}
.x21{left:63.595733pt;}
.x23{left:65.102267pt;}
.xc{left:68.850267pt;}
.x1c{left:71.800400pt;}
.x30{left:75.451333pt;}
.x6{left:76.993333pt;}
.x28{left:79.472933pt;}
.x29{left:82.110800pt;}
.xa{left:85.517867pt;}
.x38{left:87.282800pt;}
.x8{left:91.371600pt;}
.x31{left:93.211333pt;}
.x11{left:94.637733pt;}
.x39{left:96.611733pt;}
.x13{left:99.304400pt;}
.x3c{left:100.198267pt;}
.x3d{left:101.786267pt;}
.xf{left:106.637733pt;}
.x1d{left:107.800400pt;}
.x3e{left:111.171333pt;}
.x1f{left:112.385867pt;}
.x1{left:114.273333pt;}
.x2d{left:127.725733pt;}
.x32{left:130.495333pt;}
.x17{left:135.141493pt;}
.x10{left:142.637733pt;}
.x3a{left:169.858533pt;}
.x2a{left:177.578800pt;}
.x2e{left:202.258667pt;}
.x35{left:226.309733pt;}
.x2f{left:235.799733pt;}
.x12{left:238.488133pt;}
.xb{left:256.348667pt;}
.x1b{left:266.609333pt;}
.x4{left:270.107413pt;}
.x1a{left:286.761493pt;}
.x2{left:291.539733pt;}
.x7{left:305.953333pt;}
.x36{left:352.393733pt;}
.x18{left:374.818133pt;}
.x1e{left:425.309413pt;}
.x3{left:429.473333pt;}
.x5{left:433.473973pt;}
.x19{left:465.002773pt;}
.x15{left:494.262773pt;}
.x33{left:498.155067pt;}
.x34{left:507.278907pt;}
.x2c{left:527.708933pt;}
.x3f{left:565.025200pt;}
.x3b{left:578.558800pt;}
.x20{left:585.157467pt;}
.x37{left:674.509733pt;}
.x2b{left:679.808933pt;}
.x22{left:701.500667pt;}
.x27{left:710.361467pt;}
.x26{left:746.197307pt;}
.x25{left:820.430267pt;}
.x24{left:892.116000pt;}
.xd{left:897.236000pt;}
}




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