
    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_849e10bfab4b8d00963a1b37.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_b59dd18a57a542d9fdd7b4c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d9821fd0022018bdb2b8d6f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_fb947a0dfc5656c10d189664.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_246baf8d99fd23e2f83e43d9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c5904582652a9ce757e6902d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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_930e5d19e9b79327b805e8d9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8ed09c64543015aec3bf8936.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_53942939eeaeada9ffd9a412.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;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_2712abfbd76d3655c0be4f5a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.064941;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_ce8720596971bf45a6eb2f1c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1c169a0b34cbc01375062aeb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ef9f912c3f1befa2e0ead1b5.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.064941;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.400000px;}
.v1{vertical-align:18.720000px;}
.lsd{letter-spacing:-1.242000px;}
.ls7{letter-spacing:-1.206000px;}
.ls11{letter-spacing:-0.876000px;}
.ls1b{letter-spacing:-0.714000px;}
.ls14{letter-spacing:-0.648000px;}
.ls1f{letter-spacing:-0.630000px;}
.lsb{letter-spacing:-0.435000px;}
.ls6{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.423600px;}
.ls1e{letter-spacing:-0.385800px;}
.ls17{letter-spacing:-0.282000px;}
.ls20{letter-spacing:-0.253200px;}
.ls18{letter-spacing:-0.238800px;}
.ls1c{letter-spacing:-0.126600px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060480px;}
.ls1a{letter-spacing:0.080640px;}
.ls13{letter-spacing:0.138000px;}
.lsa{letter-spacing:0.208800px;}
.ls19{letter-spacing:0.282240px;}
.ls16{letter-spacing:0.325200px;}
.ls9{letter-spacing:0.345600px;}
.lsc{letter-spacing:0.368400px;}
.ls2{letter-spacing:0.411840px;}
.ls10{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.561600px;}
.ls3{letter-spacing:0.564480px;}
.lsf{letter-spacing:0.576000px;}
.ls15{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.668160px;}
.lse{letter-spacing:0.726000px;}
.ls12{letter-spacing:11.174400px;}
.ls4{letter-spacing:76.786560px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-21.225600px;}
.ws8{word-spacing:-13.737600px;}
.ws2{word-spacing:-13.668480px;}
.ws3{word-spacing:-13.305600px;}
.ws1{word-spacing:-13.244880px;}
.wsd{word-spacing:-13.066800px;}
.ws10{word-spacing:-13.052400px;}
.wsc{word-spacing:-13.023600px;}
.wse{word-spacing:-12.919800px;}
.ws6{word-spacing:-12.870600px;}
.wsf{word-spacing:-12.675600px;}
.wsa{word-spacing:-12.363600px;}
.ws7{word-spacing:-12.063600px;}
.wsb{word-spacing:-12.038400px;}
.ws4{word-spacing:-10.454400px;}
.ws5{word-spacing:-8.762400px;}
.ws9{word-spacing:0.000000px;}
._20{margin-left:-12.129600px;}
._d{margin-left:-2.474880px;}
._0{margin-left:-1.254240px;}
._1{width:1.012320px;}
._2{width:2.282400px;}
._5{width:3.864480px;}
._3{width:5.020800px;}
._4{width:6.408000px;}
._a{width:8.225280px;}
._b{width:9.540000px;}
._18{width:10.776480px;}
._6{width:11.975040px;}
._11{width:14.264160px;}
._9{width:15.314400px;}
._7{width:16.858080px;}
._8{width:18.486720px;}
._19{width:19.700640px;}
._17{width:21.365760px;}
._16{width:22.498560px;}
._1a{width:23.889600px;}
._e{width:25.341120px;}
._c{width:27.018720px;}
._12{width:29.041920px;}
._15{width:30.317280px;}
._13{width:31.675680px;}
._14{width:32.972640px;}
._1f{width:34.655040px;}
._1e{width:35.667360px;}
._27{width:39.191040px;}
._28{width:40.368960px;}
._2c{width:41.473440px;}
._22{width:44.392320px;}
._26{width:46.738080px;}
._25{width:48.412800px;}
._23{width:49.517280px;}
._21{width:50.908320px;}
._1d{width:51.970560px;}
._1b{width:53.025120px;}
._2b{width:54.387360px;}
._f{width:56.880000px;}
._10{width:58.260960px;}
._1c{width:61.266240px;}
._24{width:66.435840px;}
._34{width:69.470880px;}
._2a{width:72.907200px;}
._29{width:74.088000px;}
._33{width:81.063840px;}
._32{width:82.332480px;}
._30{width:83.809440px;}
._2f{width:84.974400px;}
._31{width:86.546880px;}
._36{width:92.957760px;}
._2d{width:102.403680px;}
._2e{width:103.525920px;}
._35{width:240.660960px;}
._37{width:771.747360px;}
.fc4{color:rgb(51,102,204);}
.fc3{color:rgb(119,119,119);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,204);}
.fs5{font-size:5.760000px;}
.fs2{font-size:24.480000px;}
.fsa{font-size:38.880000px;}
.fs9{font-size:47.520000px;}
.fsb{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs6{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:83.520000px;}
.fs0{font-size:96.480000px;}
.fs7{font-size:132.480000px;}
.y0{bottom:0.000000px;}
.y23{bottom:3.240000px;}
.y3c{bottom:4.005000px;}
.y8{bottom:6.840000px;}
.ye{bottom:10.800000px;}
.y7{bottom:16.200000px;}
.y18{bottom:17.280000px;}
.y16{bottom:17.640000px;}
.y22{bottom:20.520000px;}
.y32{bottom:20.910000px;}
.yc{bottom:24.516000px;}
.y3b{bottom:25.245000px;}
.y17{bottom:26.640000px;}
.y6{bottom:30.960000px;}
.y21{bottom:37.440000px;}
.yb{bottom:42.156000px;}
.y3a{bottom:46.485000px;}
.y5{bottom:47.880000px;}
.yd{bottom:48.276000px;}
.y37{bottom:48.285000px;}
.y20{bottom:54.720000px;}
.y31{bottom:56.190000px;}
.y7b{bottom:59.436000px;}
.ya{bottom:60.156000px;}
.y95{bottom:63.756000px;}
.y39{bottom:67.365000px;}
.y1f{bottom:72.720000px;}
.y30{bottom:76.350000px;}
.y36{bottom:77.805000px;}
.y4{bottom:79.200000px;}
.y94{bottom:84.276000px;}
.y38{bottom:88.605000px;}
.y1e{bottom:92.520000px;}
.y7a{bottom:94.716000px;}
.y4b{bottom:96.156000px;}
.y3{bottom:96.480000px;}
.yc0{bottom:103.716000px;}
.y93{bottom:104.436000px;}
.y35{bottom:109.485000px;}
.y2f{bottom:111.630000px;}
.y4a{bottom:116.316000px;}
.y1d{bottom:119.160000px;}
.ybf{bottom:123.876000px;}
.y92{bottom:124.596000px;}
.y33{bottom:127.830000px;}
.y79{bottom:129.636000px;}
.y2e{bottom:131.790000px;}
.y49{bottom:136.512000px;}
.y1c{bottom:136.845000px;}
.ybe{bottom:144.072000px;}
.y78{bottom:150.195000px;}
.y2d{bottom:151.980000px;}
.y1b{bottom:154.485000px;}
.y48{bottom:157.035000px;}
.ye4{bottom:157.395000px;}
.y91{bottom:159.915000px;}
.ybd{bottom:164.235000px;}
.y77{bottom:170.355000px;}
.y1a{bottom:172.125000px;}
.y2c{bottom:172.140000px;}
.y47{bottom:177.195000px;}
.ye3{bottom:184.035000px;}
.ybc{bottom:184.755000px;}
.y76{bottom:190.515000px;}
.y2b{bottom:192.660000px;}
.y90{bottom:195.195000px;}
.y46{bottom:197.355000px;}
.ybb{bottom:204.915000px;}
.y75{bottom:210.675000px;}
.y2a{bottom:212.820000px;}
.y8f{bottom:215.355000px;}
.y45{bottom:217.515000px;}
.yba{bottom:225.075000px;}
.ye2{bottom:228.315000px;}
.y74{bottom:230.835000px;}
.y29{bottom:232.980000px;}
.y8e{bottom:235.515000px;}
.y44{bottom:237.675000px;}
.yb9{bottom:245.235000px;}
.ye1{bottom:245.955000px;}
.y28{bottom:253.140000px;}
.y8d{bottom:255.675000px;}
.y43{bottom:258.195000px;}
.ye0{bottom:263.595000px;}
.y73{bottom:266.145000px;}
.y27{bottom:273.300000px;}
.y8c{bottom:275.865000px;}
.y42{bottom:278.385000px;}
.yb8{bottom:280.545000px;}
.ydf{bottom:280.905000px;}
.y26{bottom:293.505000px;}
.y8b{bottom:296.025000px;}
.y41{bottom:298.545000px;}
.yb7{bottom:300.705000px;}
.y72{bottom:301.425000px;}
.y25{bottom:314.025000px;}
.y8a{bottom:316.545000px;}
.y40{bottom:318.705000px;}
.yb6{bottom:320.865000px;}
.yde{bottom:325.185000px;}
.y71{bottom:336.705000px;}
.y3f{bottom:338.865000px;}
.yb5{bottom:341.025000px;}
.ydd{bottom:342.825000px;}
.y70{bottom:356.865000px;}
.y3e{bottom:359.025000px;}
.ydc{bottom:360.465000px;}
.yb4{bottom:361.545000px;}
.y6f{bottom:377.025000px;}
.y3d{bottom:377.385000px;}
.ydb{bottom:378.105000px;}
.yb3{bottom:381.705000px;}
.yda{bottom:395.385000px;}
.y6e{bottom:397.185000px;}
.y34{bottom:397.905000px;}
.y89{bottom:412.350000px;}
.yd9{bottom:413.070000px;}
.yb2{bottom:417.030000px;}
.y6d{bottom:417.750000px;}
.yb1{bottom:437.190000px;}
.yd8{bottom:439.710000px;}
.y88{bottom:447.630000px;}
.y6c{bottom:452.670000px;}
.yb0{bottom:457.350000px;}
.y87{bottom:467.790000px;}
.yd7{bottom:474.990000px;}
.yaf{bottom:477.510000px;}
.y6b{bottom:487.950000px;}
.yd6{bottom:492.630000px;}
.yae{bottom:497.670000px;}
.y6a{bottom:508.110000px;}
.yd5{bottom:510.270000px;}
.yad{bottom:518.190000px;}
.y24{bottom:525.390000px;}
.y69{bottom:528.630000px;}
.yd4{bottom:536.580000px;}
.yac{bottom:538.380000px;}
.y68{bottom:548.820000px;}
.yd3{bottom:554.220000px;}
.y67{bottom:568.980000px;}
.yd2{bottom:571.860000px;}
.yab{bottom:573.660000px;}
.y66{bottom:589.140000px;}
.yd1{bottom:589.500000px;}
.yd0{bottom:607.140000px;}
.yaa{bottom:608.580000px;}
.y65{bottom:609.300000px;}
.y86{bottom:624.420000px;}
.ycf{bottom:624.780000px;}
.ya9{bottom:629.100000px;}
.y64{bottom:629.460000px;}
.ya8{bottom:649.260000px;}
.y63{bottom:649.980000px;}
.yce{bottom:651.060000px;}
.y85{bottom:659.700000px;}
.y19{bottom:667.290000px;}
.ycd{bottom:668.730000px;}
.ya7{bottom:669.450000px;}
.y84{bottom:679.890000px;}
.y62{bottom:684.930000px;}
.ycc{bottom:686.370000px;}
.ya6{bottom:689.610000px;}
.y83{bottom:700.050000px;}
.ycb{bottom:704.010000px;}
.ya5{bottom:709.770000px;}
.y61{bottom:720.210000px;}
.yca{bottom:730.650000px;}
.y60{bottom:740.370000px;}
.ya4{bottom:745.050000px;}
.yc9{bottom:748.290000px;}
.y5f{bottom:760.890000px;}
.ya3{bottom:765.210000px;}
.yc8{bottom:765.930000px;}
.y5e{bottom:781.050000px;}
.yc7{bottom:783.210000px;}
.ya2{bottom:785.370000px;}
.y5d{bottom:801.255000px;}
.ya1{bottom:805.935000px;}
.yc6{bottom:809.895000px;}
.y5c{bottom:821.415000px;}
.ya0{bottom:826.095000px;}
.yc5{bottom:827.535000px;}
.y82{bottom:841.575000px;}
.y9f{bottom:846.255000px;}
.yc4{bottom:854.535000px;}
.y15{bottom:855.975000px;}
.y5b{bottom:856.695000px;}
.y81{bottom:862.095000px;}
.y9e{bottom:866.415000px;}
.yc3{bottom:871.815000px;}
.y9d{bottom:886.575000px;}
.y5a{bottom:891.975000px;}
.y80{bottom:897.015000px;}
.yc2{bottom:907.095000px;}
.y14{bottom:909.975000px;}
.y59{bottom:912.135000px;}
.y9c{bottom:921.855000px;}
.y58{bottom:932.295000px;}
.y9b{bottom:942.045000px;}
.y13{bottom:947.445000px;}
.y57{bottom:952.485000px;}
.y9a{bottom:962.565000px;}
.y56{bottom:973.005000px;}
.y12{bottom:980.205000px;}
.y99{bottom:982.725000px;}
.y55{bottom:993.165000px;}
.y98{bottom:1002.885000px;}
.y11{bottom:1010.085000px;}
.y97{bottom:1023.045000px;}
.y54{bottom:1028.445000px;}
.y10{bottom:1038.885000px;}
.y96{bottom:1043.205000px;}
.yf{bottom:1063.005000px;}
.y53{bottom:1063.365000px;}
.yc1{bottom:1078.530000px;}
.y7f{bottom:1083.930000px;}
.y9{bottom:1086.810000px;}
.y52{bottom:1098.690000px;}
.y2{bottom:1101.570000px;}
.y7e{bottom:1104.090000px;}
.y51{bottom:1118.850000px;}
.y7d{bottom:1124.250000px;}
.y50{bottom:1139.370000px;}
.y7c{bottom:1144.410000px;}
.y4f{bottom:1159.530000px;}
.y4e{bottom:1179.690000px;}
.y4d{bottom:1199.850000px;}
.y4c{bottom:1217.520000px;}
.y1{bottom:1218.240000px;}
.h8{height:4.353750px;}
.h5{height:18.563203px;}
.hf{height:36.807187px;}
.h9{height:45.862031px;}
.h11{height:46.440000px;}
.h10{height:50.229844px;}
.h4{height:51.207188px;}
.h6{height:54.421875px;}
.h16{height:56.084062px;}
.he{height:60.960938px;}
.h17{height:62.960625px;}
.h7{height:64.978594px;}
.ha{height:65.124096px;}
.hd{height:70.714687px;}
.h2{height:81.687656px;}
.h3{height:101.916000px;}
.hc{height:112.168134px;}
.h15{height:126.756000px;}
.h14{height:141.912000px;}
.h12{height:186.510000px;}
.hb{height:268.635000px;}
.h13{height:328.425000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:21.276000px;}
.w6{width:39.600000px;}
.w8{width:82.440000px;}
.w3{width:169.995000px;}
.w7{width:180.795000px;}
.wa{width:263.235000px;}
.w9{width:531.570000px;}
.w4{width:606.450000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:6.885000px;}
.x5{left:8.280000px;}
.xd{left:31.680000px;}
.x18{left:36.720000px;}
.x13{left:46.116000px;}
.x2{left:54.036000px;}
.xa{left:65.555987px;}
.x1d{left:66.995987px;}
.xe{left:68.795987px;}
.x1c{left:73.115987px;}
.xf{left:107.675987px;}
.x12{left:112.715987px;}
.x6{left:124.605000px;}
.x17{left:131.439000px;}
.x3{left:163.119000px;}
.x11{left:175.394987px;}
.x16{left:206.025000px;}
.x8{left:209.235000px;}
.x4{left:224.025000px;}
.x14{left:226.905000px;}
.x19{left:265.785000px;}
.x7{left:303.225000px;}
.x15{left:309.345000px;}
.x10{left:321.989987px;}
.xb{left:446.579987px;}
.x1b{left:473.579987px;}
.x1e{left:500.609987px;}
.x1{left:656.174987px;}
.x9{left:830.490000px;}
.xc{left:846.720000px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.800000pt;}
.v1{vertical-align:16.640000pt;}
.lsd{letter-spacing:-1.104000pt;}
.ls7{letter-spacing:-1.072000pt;}
.ls11{letter-spacing:-0.778667pt;}
.ls1b{letter-spacing:-0.634667pt;}
.ls14{letter-spacing:-0.576000pt;}
.ls1f{letter-spacing:-0.560000pt;}
.lsb{letter-spacing:-0.386667pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.376533pt;}
.ls1e{letter-spacing:-0.342933pt;}
.ls17{letter-spacing:-0.250667pt;}
.ls20{letter-spacing:-0.225067pt;}
.ls18{letter-spacing:-0.212267pt;}
.ls1c{letter-spacing:-0.112533pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053760pt;}
.ls1a{letter-spacing:0.071680pt;}
.ls13{letter-spacing:0.122667pt;}
.lsa{letter-spacing:0.185600pt;}
.ls19{letter-spacing:0.250880pt;}
.ls16{letter-spacing:0.289067pt;}
.ls9{letter-spacing:0.307200pt;}
.lsc{letter-spacing:0.327467pt;}
.ls2{letter-spacing:0.366080pt;}
.ls10{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.499200pt;}
.ls3{letter-spacing:0.501760pt;}
.lsf{letter-spacing:0.512000pt;}
.ls15{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.593920pt;}
.lse{letter-spacing:0.645333pt;}
.ls12{letter-spacing:9.932800pt;}
.ls4{letter-spacing:68.254720pt;}
.ws0{word-spacing:-18.867200pt;}
.ws8{word-spacing:-12.211200pt;}
.ws2{word-spacing:-12.149760pt;}
.ws3{word-spacing:-11.827200pt;}
.ws1{word-spacing:-11.773227pt;}
.wsd{word-spacing:-11.614933pt;}
.ws10{word-spacing:-11.602133pt;}
.wsc{word-spacing:-11.576533pt;}
.wse{word-spacing:-11.484267pt;}
.ws6{word-spacing:-11.440533pt;}
.wsf{word-spacing:-11.267200pt;}
.wsa{word-spacing:-10.989867pt;}
.ws7{word-spacing:-10.723200pt;}
.wsb{word-spacing:-10.700800pt;}
.ws4{word-spacing:-9.292800pt;}
.ws5{word-spacing:-7.788800pt;}
.ws9{word-spacing:0.000000pt;}
._20{margin-left:-10.781867pt;}
._d{margin-left:-2.199893pt;}
._0{margin-left:-1.114880pt;}
._1{width:0.899840pt;}
._2{width:2.028800pt;}
._5{width:3.435093pt;}
._3{width:4.462933pt;}
._4{width:5.696000pt;}
._a{width:7.311360pt;}
._b{width:8.480000pt;}
._18{width:9.579093pt;}
._6{width:10.644480pt;}
._11{width:12.679253pt;}
._9{width:13.612800pt;}
._7{width:14.984960pt;}
._8{width:16.432640pt;}
._19{width:17.511680pt;}
._17{width:18.991787pt;}
._16{width:19.998720pt;}
._1a{width:21.235200pt;}
._e{width:22.525440pt;}
._c{width:24.016640pt;}
._12{width:25.815040pt;}
._15{width:26.948693pt;}
._13{width:28.156160pt;}
._14{width:29.309013pt;}
._1f{width:30.804480pt;}
._1e{width:31.704320pt;}
._27{width:34.836480pt;}
._28{width:35.883520pt;}
._2c{width:36.865280pt;}
._22{width:39.459840pt;}
._26{width:41.544960pt;}
._25{width:43.033600pt;}
._23{width:44.015360pt;}
._21{width:45.251840pt;}
._1d{width:46.196053pt;}
._1b{width:47.133440pt;}
._2b{width:48.344320pt;}
._f{width:50.560000pt;}
._10{width:51.787520pt;}
._1c{width:54.458880pt;}
._24{width:59.054080pt;}
._34{width:61.751893pt;}
._2a{width:64.806400pt;}
._29{width:65.856000pt;}
._33{width:72.056747pt;}
._32{width:73.184427pt;}
._30{width:74.497280pt;}
._2f{width:75.532800pt;}
._31{width:76.930560pt;}
._36{width:82.629120pt;}
._2d{width:91.025493pt;}
._2e{width:92.023040pt;}
._35{width:213.920853pt;}
._37{width:685.997653pt;}
.fs5{font-size:5.120000pt;}
.fs2{font-size:21.760000pt;}
.fsa{font-size:34.560000pt;}
.fs9{font-size:42.240000pt;}
.fsb{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs6{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:74.240000pt;}
.fs0{font-size:85.760000pt;}
.fs7{font-size:117.760000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:2.880000pt;}
.y3c{bottom:3.560000pt;}
.y8{bottom:6.080000pt;}
.ye{bottom:9.600000pt;}
.y7{bottom:14.400000pt;}
.y18{bottom:15.360000pt;}
.y16{bottom:15.680000pt;}
.y22{bottom:18.240000pt;}
.y32{bottom:18.586667pt;}
.yc{bottom:21.792000pt;}
.y3b{bottom:22.440000pt;}
.y17{bottom:23.680000pt;}
.y6{bottom:27.520000pt;}
.y21{bottom:33.280000pt;}
.yb{bottom:37.472000pt;}
.y3a{bottom:41.320000pt;}
.y5{bottom:42.560000pt;}
.yd{bottom:42.912000pt;}
.y37{bottom:42.920000pt;}
.y20{bottom:48.640000pt;}
.y31{bottom:49.946667pt;}
.y7b{bottom:52.832000pt;}
.ya{bottom:53.472000pt;}
.y95{bottom:56.672000pt;}
.y39{bottom:59.880000pt;}
.y1f{bottom:64.640000pt;}
.y30{bottom:67.866667pt;}
.y36{bottom:69.160000pt;}
.y4{bottom:70.400000pt;}
.y94{bottom:74.912000pt;}
.y38{bottom:78.760000pt;}
.y1e{bottom:82.240000pt;}
.y7a{bottom:84.192000pt;}
.y4b{bottom:85.472000pt;}
.y3{bottom:85.760000pt;}
.yc0{bottom:92.192000pt;}
.y93{bottom:92.832000pt;}
.y35{bottom:97.320000pt;}
.y2f{bottom:99.226667pt;}
.y4a{bottom:103.392000pt;}
.y1d{bottom:105.920000pt;}
.ybf{bottom:110.112000pt;}
.y92{bottom:110.752000pt;}
.y33{bottom:113.626667pt;}
.y79{bottom:115.232000pt;}
.y2e{bottom:117.146667pt;}
.y49{bottom:121.344000pt;}
.y1c{bottom:121.640000pt;}
.ybe{bottom:128.064000pt;}
.y78{bottom:133.506667pt;}
.y2d{bottom:135.093333pt;}
.y1b{bottom:137.320000pt;}
.y48{bottom:139.586667pt;}
.ye4{bottom:139.906667pt;}
.y91{bottom:142.146667pt;}
.ybd{bottom:145.986667pt;}
.y77{bottom:151.426667pt;}
.y1a{bottom:153.000000pt;}
.y2c{bottom:153.013333pt;}
.y47{bottom:157.506667pt;}
.ye3{bottom:163.586667pt;}
.ybc{bottom:164.226667pt;}
.y76{bottom:169.346667pt;}
.y2b{bottom:171.253333pt;}
.y90{bottom:173.506667pt;}
.y46{bottom:175.426667pt;}
.ybb{bottom:182.146667pt;}
.y75{bottom:187.266667pt;}
.y2a{bottom:189.173333pt;}
.y8f{bottom:191.426667pt;}
.y45{bottom:193.346667pt;}
.yba{bottom:200.066667pt;}
.ye2{bottom:202.946667pt;}
.y74{bottom:205.186667pt;}
.y29{bottom:207.093333pt;}
.y8e{bottom:209.346667pt;}
.y44{bottom:211.266667pt;}
.yb9{bottom:217.986667pt;}
.ye1{bottom:218.626667pt;}
.y28{bottom:225.013333pt;}
.y8d{bottom:227.266667pt;}
.y43{bottom:229.506667pt;}
.ye0{bottom:234.306667pt;}
.y73{bottom:236.573333pt;}
.y27{bottom:242.933333pt;}
.y8c{bottom:245.213333pt;}
.y42{bottom:247.453333pt;}
.yb8{bottom:249.373333pt;}
.ydf{bottom:249.693333pt;}
.y26{bottom:260.893333pt;}
.y8b{bottom:263.133333pt;}
.y41{bottom:265.373333pt;}
.yb7{bottom:267.293333pt;}
.y72{bottom:267.933333pt;}
.y25{bottom:279.133333pt;}
.y8a{bottom:281.373333pt;}
.y40{bottom:283.293333pt;}
.yb6{bottom:285.213333pt;}
.yde{bottom:289.053333pt;}
.y71{bottom:299.293333pt;}
.y3f{bottom:301.213333pt;}
.yb5{bottom:303.133333pt;}
.ydd{bottom:304.733333pt;}
.y70{bottom:317.213333pt;}
.y3e{bottom:319.133333pt;}
.ydc{bottom:320.413333pt;}
.yb4{bottom:321.373333pt;}
.y6f{bottom:335.133333pt;}
.y3d{bottom:335.453333pt;}
.ydb{bottom:336.093333pt;}
.yb3{bottom:339.293333pt;}
.yda{bottom:351.453333pt;}
.y6e{bottom:353.053333pt;}
.y34{bottom:353.693333pt;}
.y89{bottom:366.533333pt;}
.yd9{bottom:367.173333pt;}
.yb2{bottom:370.693333pt;}
.y6d{bottom:371.333333pt;}
.yb1{bottom:388.613333pt;}
.yd8{bottom:390.853333pt;}
.y88{bottom:397.893333pt;}
.y6c{bottom:402.373333pt;}
.yb0{bottom:406.533333pt;}
.y87{bottom:415.813333pt;}
.yd7{bottom:422.213333pt;}
.yaf{bottom:424.453333pt;}
.y6b{bottom:433.733333pt;}
.yd6{bottom:437.893333pt;}
.yae{bottom:442.373333pt;}
.y6a{bottom:451.653333pt;}
.yd5{bottom:453.573333pt;}
.yad{bottom:460.613333pt;}
.y24{bottom:467.013333pt;}
.y69{bottom:469.893333pt;}
.yd4{bottom:476.960000pt;}
.yac{bottom:478.560000pt;}
.y68{bottom:487.840000pt;}
.yd3{bottom:492.640000pt;}
.y67{bottom:505.760000pt;}
.yd2{bottom:508.320000pt;}
.yab{bottom:509.920000pt;}
.y66{bottom:523.680000pt;}
.yd1{bottom:524.000000pt;}
.yd0{bottom:539.680000pt;}
.yaa{bottom:540.960000pt;}
.y65{bottom:541.600000pt;}
.y86{bottom:555.040000pt;}
.ycf{bottom:555.360000pt;}
.ya9{bottom:559.200000pt;}
.y64{bottom:559.520000pt;}
.ya8{bottom:577.120000pt;}
.y63{bottom:577.760000pt;}
.yce{bottom:578.720000pt;}
.y85{bottom:586.400000pt;}
.y19{bottom:593.146667pt;}
.ycd{bottom:594.426667pt;}
.ya7{bottom:595.066667pt;}
.y84{bottom:604.346667pt;}
.y62{bottom:608.826667pt;}
.ycc{bottom:610.106667pt;}
.ya6{bottom:612.986667pt;}
.y83{bottom:622.266667pt;}
.ycb{bottom:625.786667pt;}
.ya5{bottom:630.906667pt;}
.y61{bottom:640.186667pt;}
.yca{bottom:649.466667pt;}
.y60{bottom:658.106667pt;}
.ya4{bottom:662.266667pt;}
.yc9{bottom:665.146667pt;}
.y5f{bottom:676.346667pt;}
.ya3{bottom:680.186667pt;}
.yc8{bottom:680.826667pt;}
.y5e{bottom:694.266667pt;}
.yc7{bottom:696.186667pt;}
.ya2{bottom:698.106667pt;}
.y5d{bottom:712.226667pt;}
.ya1{bottom:716.386667pt;}
.yc6{bottom:719.906667pt;}
.y5c{bottom:730.146667pt;}
.ya0{bottom:734.306667pt;}
.yc5{bottom:735.586667pt;}
.y82{bottom:748.066667pt;}
.y9f{bottom:752.226667pt;}
.yc4{bottom:759.586667pt;}
.y15{bottom:760.866667pt;}
.y5b{bottom:761.506667pt;}
.y81{bottom:766.306667pt;}
.y9e{bottom:770.146667pt;}
.yc3{bottom:774.946667pt;}
.y9d{bottom:788.066667pt;}
.y5a{bottom:792.866667pt;}
.y80{bottom:797.346667pt;}
.yc2{bottom:806.306667pt;}
.y14{bottom:808.866667pt;}
.y59{bottom:810.786667pt;}
.y9c{bottom:819.426667pt;}
.y58{bottom:828.706667pt;}
.y9b{bottom:837.373333pt;}
.y13{bottom:842.173333pt;}
.y57{bottom:846.653333pt;}
.y9a{bottom:855.613333pt;}
.y56{bottom:864.893333pt;}
.y12{bottom:871.293333pt;}
.y99{bottom:873.533333pt;}
.y55{bottom:882.813333pt;}
.y98{bottom:891.453333pt;}
.y11{bottom:897.853333pt;}
.y97{bottom:909.373333pt;}
.y54{bottom:914.173333pt;}
.y10{bottom:923.453333pt;}
.y96{bottom:927.293333pt;}
.yf{bottom:944.893333pt;}
.y53{bottom:945.213333pt;}
.yc1{bottom:958.693333pt;}
.y7f{bottom:963.493333pt;}
.y9{bottom:966.053333pt;}
.y52{bottom:976.613333pt;}
.y2{bottom:979.173333pt;}
.y7e{bottom:981.413333pt;}
.y51{bottom:994.533333pt;}
.y7d{bottom:999.333333pt;}
.y50{bottom:1012.773333pt;}
.y7c{bottom:1017.253333pt;}
.y4f{bottom:1030.693333pt;}
.y4e{bottom:1048.613333pt;}
.y4d{bottom:1066.533333pt;}
.y4c{bottom:1082.240000pt;}
.y1{bottom:1082.880000pt;}
.h8{height:3.870000pt;}
.h5{height:16.500625pt;}
.hf{height:32.717500pt;}
.h9{height:40.766250pt;}
.h11{height:41.280000pt;}
.h10{height:44.648750pt;}
.h4{height:45.517500pt;}
.h6{height:48.375000pt;}
.h16{height:49.852500pt;}
.he{height:54.187500pt;}
.h17{height:55.965000pt;}
.h7{height:57.758750pt;}
.ha{height:57.888085pt;}
.hd{height:62.857500pt;}
.h2{height:72.611250pt;}
.h3{height:90.592000pt;}
.hc{height:99.705008pt;}
.h15{height:112.672000pt;}
.h14{height:126.144000pt;}
.h12{height:165.786667pt;}
.hb{height:238.786667pt;}
.h13{height:291.933333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:18.912000pt;}
.w6{width:35.200000pt;}
.w8{width:73.280000pt;}
.w3{width:151.106667pt;}
.w7{width:160.706667pt;}
.wa{width:233.986667pt;}
.w9{width:472.506667pt;}
.w4{width:539.066667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.120000pt;}
.x5{left:7.360000pt;}
.xd{left:28.160000pt;}
.x18{left:32.640000pt;}
.x13{left:40.992000pt;}
.x2{left:48.032000pt;}
.xa{left:58.271988pt;}
.x1d{left:59.551988pt;}
.xe{left:61.151988pt;}
.x1c{left:64.991988pt;}
.xf{left:95.711988pt;}
.x12{left:100.191988pt;}
.x6{left:110.760000pt;}
.x17{left:116.834667pt;}
.x3{left:144.994667pt;}
.x11{left:155.906655pt;}
.x16{left:183.133333pt;}
.x8{left:185.986667pt;}
.x4{left:199.133333pt;}
.x14{left:201.693333pt;}
.x19{left:236.253333pt;}
.x7{left:269.533333pt;}
.x15{left:274.973333pt;}
.x10{left:286.213322pt;}
.xb{left:396.959988pt;}
.x1b{left:420.959988pt;}
.x1e{left:444.986655pt;}
.x1{left:583.266655pt;}
.x9{left:738.213333pt;}
.xc{left:752.640000pt;}
}




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