
    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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_fd6a791c0caa90669cde15bf.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6dd2bb2aee3574431769fde9.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_341a25e988ae778b9677d45b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2672cede3d9e3974be3bc979.woff')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_ac36df42cdaafa64761304f6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_1ff09b4dfe1d5f881f67fba4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_2b34387edad94fd43b30fead.woff')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_1fd1cfcaae5865534f67fd88.woff')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_0f31720e86d7001c818442b7.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_02e1b6b858e423a73451fbc9.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_d2c12c25154695a043720829.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_88fad822775df28f229f5e40.woff')format("woff");}.ffd{font-family:ffd;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_71979d69b604043b6e75243c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.682617;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;}
.m2{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);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{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);}
.v3{vertical-align:-61.920000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-33.120000px;}
.lsf{letter-spacing:-29.640000px;}
.ls5{letter-spacing:-15.660000px;}
.ls14{letter-spacing:-12.060000px;}
.ls16{letter-spacing:-6.300000px;}
.ls10{letter-spacing:-1.260000px;}
.lsd{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.181200px;}
.ls7{letter-spacing:-0.089400px;}
.lsc{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.126720px;}
.ls2{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.259800px;}
.lse{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:2.340000px;}
.ls15{letter-spacing:5.940000px;}
.ls13{letter-spacing:13.860000px;}
.ls12{letter-spacing:18.900000px;}
.lsb{letter-spacing:364.476000px;}
.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;}
}
.wsd{word-spacing:-15.300000px;}
.ws1{word-spacing:-15.046800px;}
.wse{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.860000px;}
.ws4{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.140000px;}
.wsb{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.878800px;}
.ws7{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.000000px;}
.ws0{word-spacing:-7.560000px;}
.ws9{word-spacing:-0.054000px;}
.wsc{word-spacing:-0.048240px;}
.ws8{word-spacing:0.000000px;}
._28{margin-left:-18.900000px;}
._2a{margin-left:-13.860000px;}
._2d{margin-left:-5.940000px;}
._23{margin-left:-3.922560px;}
._11{margin-left:-2.425680px;}
._4{margin-left:-1.350720px;}
._0{width:1.002240px;}
._1{width:2.123040px;}
._2{width:3.521280px;}
._a{width:5.038080px;}
._17{width:6.509280px;}
._f{width:7.828560px;}
._2e{width:8.850480px;}
._c{width:9.920160px;}
._1d{width:11.294640px;}
._10{width:12.384000px;}
._1f{width:14.281920px;}
._16{width:16.401600px;}
._1b{width:17.601840px;}
._13{width:18.929760px;}
._14{width:20.553360px;}
._22{width:22.170960px;}
._e{width:23.499360px;}
._d{width:24.561360px;}
._12{width:26.413920px;}
._1a{width:28.013760px;}
._8{width:29.535120px;}
._7{width:30.836160px;}
._b{width:32.210640px;}
._19{width:33.240240px;}
._29{width:34.899840px;}
._2b{width:37.523280px;}
._25{width:38.664720px;}
._15{width:40.218480px;}
._18{width:41.652720px;}
._24{width:43.399440px;}
._21{width:47.343600px;}
._1c{width:49.136400px;}
._9{width:51.214320px;}
._1e{width:55.291680px;}
._5{width:65.496000px;}
._27{width:67.648320px;}
._26{width:68.724000px;}
._3{width:70.898880px;}
._2c{width:120.715200px;}
._6{width:199.620000px;}
._20{width:289.470000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:2.880000px;}
.fsc{font-size:5.760000px;}
.fsf{font-size:6.000000px;}
.fsb{font-size:9.360000px;}
.fs5{font-size:18.000000px;}
.fs6{font-size:30.240000px;}
.fse{font-size:36.000000px;}
.fs1{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fsd{font-size:72.144000px;}
.fs4{font-size:95.760000px;}
.y57{bottom:-240.150000px;}
.y56{bottom:-206.310000px;}
.y62{bottom:-173.700000px;}
.y55{bottom:-172.650000px;}
.y45{bottom:-158.220000px;}
.y61{bottom:-140.040000px;}
.y54{bottom:-138.780000px;}
.y44{bottom:-124.560000px;}
.y60{bottom:-106.200000px;}
.y53{bottom:-105.120000px;}
.y43{bottom:-90.720000px;}
.y5f{bottom:-72.540000px;}
.y52{bottom:-71.280000px;}
.y42{bottom:-57.060000px;}
.y5e{bottom:-38.880000px;}
.y51{bottom:-37.620000px;}
.y48{bottom:-23.580000px;}
.y41{bottom:-23.400000px;}
.y64{bottom:-17.922750px;}
.y5d{bottom:-8.460000px;}
.y50{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yc2{bottom:1.837500px;}
.y5c{bottom:2.340000px;}
.y3{bottom:3.780000px;}
.y2d{bottom:5.400000px;}
.y4a{bottom:5.580000px;}
.y47{bottom:6.480000px;}
.y40{bottom:6.660000px;}
.y88{bottom:9.360000px;}
.y8b{bottom:9.405000px;}
.y29{bottom:11.880000px;}
.y86{bottom:12.060000px;}
.y6{bottom:12.600000px;}
.y4f{bottom:14.220000px;}
.y5b{bottom:16.200000px;}
.y3f{bottom:18.720000px;}
.y2c{bottom:19.080000px;}
.y5{bottom:24.660000px;}
.y7{bottom:25.920000px;}
.y4e{bottom:26.280000px;}
.y5a{bottom:30.240000px;}
.y3e{bottom:30.780000px;}
.y2b{bottom:32.940000px;}
.y4d{bottom:38.340000px;}
.y4{bottom:41.580000px;}
.y3d{bottom:42.840000px;}
.y59{bottom:47.340000px;}
.y4c{bottom:50.580000px;}
.y3c{bottom:55.080000px;}
.y66{bottom:56.700000px;}
.y63{bottom:63.780000px;}
.y2{bottom:75.960000px;}
.y98{bottom:121.680000px;}
.y3a{bottom:130.500000px;}
.y97{bottom:138.060000px;}
.y39{bottom:150.300000px;}
.y96{bottom:159.660000px;}
.y38{bottom:170.100000px;}
.y95{bottom:181.110000px;}
.y37{bottom:189.930000px;}
.y94{bottom:202.530000px;}
.y36{bottom:209.910000px;}
.y93{bottom:223.950000px;}
.y35{bottom:229.710000px;}
.y92{bottom:245.370000px;}
.y34{bottom:249.510000px;}
.y91{bottom:266.790000px;}
.y33{bottom:269.310000px;}
.y90{bottom:288.390000px;}
.y32{bottom:289.110000px;}
.y31{bottom:309.090000px;}
.y8f{bottom:309.810000px;}
.y30{bottom:328.890000px;}
.y8e{bottom:331.230000px;}
.y2f{bottom:348.690000px;}
.y8d{bottom:352.650000px;}
.y2e{bottom:368.490000px;}
.y8c{bottom:374.070000px;}
.y8a{bottom:395.490000px;}
.y2a{bottom:402.195000px;}
.y89{bottom:417.135000px;}
.y87{bottom:438.555000px;}
.y28{bottom:451.515000px;}
.y85{bottom:461.415000px;}
.y27{bottom:488.955000px;}
.y84{bottom:508.215000px;}
.y26{bottom:524.775000px;}
.y83{bottom:526.575000px;}
.y25{bottom:544.575000px;}
.y82{bottom:546.555000px;}
.y24{bottom:564.375000px;}
.y81{bottom:566.355000px;}
.y23{bottom:584.175000px;}
.y80{bottom:586.155000px;}
.y22{bottom:603.975000px;}
.y7f{bottom:605.955000px;}
.y21{bottom:623.955000px;}
.y7e{bottom:625.755000px;}
.y20{bottom:643.785000px;}
.y7d{bottom:645.765000px;}
.y1f{bottom:663.585000px;}
.y7c{bottom:665.565000px;}
.y1e{bottom:683.385000px;}
.y7b{bottom:685.365000px;}
.yc1{bottom:692.205000px;}
.y1d{bottom:703.185000px;}
.y7a{bottom:705.165000px;}
.yc0{bottom:712.005000px;}
.y1c{bottom:722.985000px;}
.y79{bottom:724.965000px;}
.yac{bottom:727.845000px;}
.ybf{bottom:731.805000px;}
.y1b{bottom:742.965000px;}
.y78{bottom:744.945000px;}
.yab{bottom:747.645000px;}
.ybe{bottom:751.605000px;}
.y1a{bottom:762.765000px;}
.y77{bottom:764.745000px;}
.yaa{bottom:767.445000px;}
.ybd{bottom:771.405000px;}
.y19{bottom:777.345000px;}
.y18{bottom:780.225000px;}
.y76{bottom:784.545000px;}
.ya9{bottom:787.245000px;}
.y3b{bottom:791.205000px;}
.ybc{bottom:791.385000px;}
.y17{bottom:794.265000px;}
.y4b{bottom:796.425000px;}
.y58{bottom:801.105000px;}
.y75{bottom:804.345000px;}
.ya8{bottom:807.225000px;}
.y16{bottom:808.845000px;}
.ybb{bottom:811.185000px;}
.y15{bottom:822.705000px;}
.y74{bottom:824.145000px;}
.ya7{bottom:827.025000px;}
.yba{bottom:830.985000px;}
.y14{bottom:836.565000px;}
.y73{bottom:844.125000px;}
.ya6{bottom:846.825000px;}
.y13{bottom:850.245000px;}
.yb9{bottom:850.785000px;}
.y12{bottom:863.430000px;}
.y72{bottom:863.970000px;}
.ya5{bottom:866.670000px;}
.y11{bottom:869.910000px;}
.yb8{bottom:870.630000px;}
.y71{bottom:883.770000px;}
.ya4{bottom:886.470000px;}
.yb7{bottom:890.610000px;}
.y10{bottom:896.550000px;}
.y70{bottom:903.570000px;}
.ya3{bottom:906.450000px;}
.yf{bottom:907.710000px;}
.yb6{bottom:910.410000px;}
.y6f{bottom:923.370000px;}
.ya2{bottom:926.250000px;}
.yb5{bottom:930.210000px;}
.ye{bottom:931.470000px;}
.yd{bottom:942.990000px;}
.y6e{bottom:943.350000px;}
.ya1{bottom:946.050000px;}
.yb4{bottom:950.010000px;}
.yc{bottom:950.550000px;}
.y6d{bottom:963.150000px;}
.ya0{bottom:965.850000px;}
.yb3{bottom:969.810000px;}
.yb{bottom:971.610000px;}
.y6c{bottom:982.950000px;}
.y9f{bottom:985.650000px;}
.yb2{bottom:989.790000px;}
.ya{bottom:991.050000px;}
.y6b{bottom:1002.750000px;}
.y9e{bottom:1005.630000px;}
.yb1{bottom:1009.590000px;}
.y9{bottom:1018.590000px;}
.y6a{bottom:1022.550000px;}
.y9d{bottom:1025.430000px;}
.yb0{bottom:1029.390000px;}
.y69{bottom:1042.530000px;}
.y9c{bottom:1045.230000px;}
.yaf{bottom:1049.190000px;}
.y8{bottom:1060.350000px;}
.y68{bottom:1062.330000px;}
.y9b{bottom:1065.030000px;}
.yae{bottom:1068.990000px;}
.y67{bottom:1082.130000px;}
.y49{bottom:1085.940000px;}
.y9a{bottom:1086.120000px;}
.yad{bottom:1088.820000px;}
.y1{bottom:1121.040000px;}
.y65{bottom:1122.660000px;}
.y99{bottom:1125.540000px;}
.y46{bottom:1132.200000px;}
.h6{height:2.826563px;}
.h15{height:5.653125px;}
.h2a{height:6.257812px;}
.h14{height:9.433125px;}
.h3{height:13.500000px;}
.hc{height:17.666016px;}
.h1a{height:19.080000px;}
.h26{height:20.700000px;}
.h27{height:20.736000px;}
.h28{height:20.880000px;}
.h1b{height:22.320000px;}
.h25{height:26.100000px;}
.hd{height:29.678906px;}
.hf{height:30.963516px;}
.h16{height:32.400000px;}
.h5{height:34.380000px;}
.h1f{height:36.281250px;}
.h21{height:37.002327px;}
.h7{height:40.985156px;}
.h24{height:41.726953px;}
.h20{height:42.086250px;}
.h18{height:47.160000px;}
.h12{height:47.344922px;}
.h17{height:48.616875px;}
.h22{height:52.998047px;}
.h29{height:53.709961px;}
.h13{height:54.421875px;}
.h11{height:55.291992px;}
.h1e{height:55.476000px;}
.h4{height:58.651172px;}
.h10{height:59.255056px;}
.ha{height:60.226875px;}
.h1d{height:61.776000px;}
.hb{height:65.010937px;}
.h2{height:65.884219px;}
.h19{height:66.456000px;}
.he{height:72.562500px;}
.h1c{height:72.707625px;}
.h23{height:75.093750px;}
.h9{height:96.508125px;}
.h8{height:99.687656px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.we{width:61.056000px;}
.w4{width:82.080000px;}
.wf{width:90.180000px;}
.w6{width:114.696000px;}
.w8{width:131.436000px;}
.w11{width:153.210000px;}
.wc{width:154.620000px;}
.w10{width:179.310000px;}
.w9{width:186.870000px;}
.w7{width:200.730000px;}
.wd{width:270.750000px;}
.w5{width:639.870000px;}
.w3{width:721.950000px;}
.wb{width:743.220000px;}
.wa{width:758.700000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:1.440000px;}
.x12{left:4.140000px;}
.x14{left:6.480000px;}
.x2{left:8.100000px;}
.x1a{left:10.800000px;}
.x13{left:12.060000px;}
.x27{left:13.680000px;}
.x36{left:15.300000px;}
.x2b{left:18.000000px;}
.x18{left:20.520000px;}
.x16{left:21.780000px;}
.x24{left:25.740000px;}
.x17{left:27.720000px;}
.x2a{left:33.480000px;}
.x11{left:36.360000px;}
.xd{left:40.365000px;}
.x2c{left:42.120000px;}
.x30{left:43.380000px;}
.x2d{left:45.360000px;}
.x2f{left:48.060000px;}
.x33{left:50.580000px;}
.x35{left:51.840000px;}
.x2e{left:54.900000px;}
.x32{left:57.060000px;}
.x29{left:58.140000px;}
.x31{left:60.660000px;}
.x28{left:63.000000px;}
.x34{left:67.680000px;}
.x3{left:73.974000px;}
.x1b{left:81.360000px;}
.xf{left:84.960000px;}
.x1c{left:86.400000px;}
.x1e{left:94.536000px;}
.x5{left:106.055987px;}
.x1{left:108.035987px;}
.xa{left:132.695987px;}
.x4{left:190.110000px;}
.x22{left:204.690000px;}
.x21{left:212.969987px;}
.x9{left:222.149987px;}
.xc{left:223.230000px;}
.x37{left:237.089987px;}
.x23{left:265.755000px;}
.x1d{left:298.335000px;}
.x1f{left:325.155000px;}
.xe{left:337.935000px;}
.x25{left:355.935000px;}
.x6{left:382.394987px;}
.x7{left:442.184987px;}
.x8{left:446.504987px;}
.xb{left:473.144987px;}
.x26{left:535.245000px;}
.x10{left:538.665000px;}
.x20{left:620.253000px;}
.x19{left:640.050000px;}
@media print{
.v3{vertical-align:-55.040000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-29.440000pt;}
.lsf{letter-spacing:-26.346667pt;}
.ls5{letter-spacing:-13.920000pt;}
.ls14{letter-spacing:-10.720000pt;}
.ls16{letter-spacing:-5.600000pt;}
.ls10{letter-spacing:-1.120000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.161067pt;}
.ls7{letter-spacing:-0.079467pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.112640pt;}
.ls2{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:2.080000pt;}
.ls15{letter-spacing:5.280000pt;}
.ls13{letter-spacing:12.320000pt;}
.ls12{letter-spacing:16.800000pt;}
.lsb{letter-spacing:323.978667pt;}
.wsd{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.280000pt;}
.wsf{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.320000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.680000pt;}
.wsb{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.558933pt;}
.ws7{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws0{word-spacing:-6.720000pt;}
.ws9{word-spacing:-0.048000pt;}
.wsc{word-spacing:-0.042880pt;}
.ws8{word-spacing:0.000000pt;}
._28{margin-left:-16.800000pt;}
._2a{margin-left:-12.320000pt;}
._2d{margin-left:-5.280000pt;}
._23{margin-left:-3.486720pt;}
._11{margin-left:-2.156160pt;}
._4{margin-left:-1.200640pt;}
._0{width:0.890880pt;}
._1{width:1.887147pt;}
._2{width:3.130027pt;}
._a{width:4.478293pt;}
._17{width:5.786027pt;}
._f{width:6.958720pt;}
._2e{width:7.867093pt;}
._c{width:8.817920pt;}
._1d{width:10.039680pt;}
._10{width:11.008000pt;}
._1f{width:12.695040pt;}
._16{width:14.579200pt;}
._1b{width:15.646080pt;}
._13{width:16.826453pt;}
._14{width:18.269653pt;}
._22{width:19.707520pt;}
._e{width:20.888320pt;}
._d{width:21.832320pt;}
._12{width:23.479040pt;}
._1a{width:24.901120pt;}
._8{width:26.253440pt;}
._7{width:27.409920pt;}
._b{width:28.631680pt;}
._19{width:29.546880pt;}
._29{width:31.022080pt;}
._2b{width:33.354027pt;}
._25{width:34.368640pt;}
._15{width:35.749760pt;}
._18{width:37.024640pt;}
._24{width:38.577280pt;}
._21{width:42.083200pt;}
._1c{width:43.676800pt;}
._9{width:45.523840pt;}
._1e{width:49.148160pt;}
._5{width:58.218667pt;}
._27{width:60.131840pt;}
._26{width:61.088000pt;}
._3{width:63.021227pt;}
._2c{width:107.302400pt;}
._6{width:177.440000pt;}
._20{width:257.306667pt;}
.fs3{font-size:2.560000pt;}
.fsc{font-size:5.120000pt;}
.fsf{font-size:5.333333pt;}
.fsb{font-size:8.320000pt;}
.fs5{font-size:16.000000pt;}
.fs6{font-size:26.880000pt;}
.fse{font-size:32.000000pt;}
.fs1{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fsd{font-size:64.128000pt;}
.fs4{font-size:85.120000pt;}
.y57{bottom:-213.466667pt;}
.y56{bottom:-183.386667pt;}
.y62{bottom:-154.400000pt;}
.y55{bottom:-153.466667pt;}
.y45{bottom:-140.640000pt;}
.y61{bottom:-124.480000pt;}
.y54{bottom:-123.360000pt;}
.y44{bottom:-110.720000pt;}
.y60{bottom:-94.400000pt;}
.y53{bottom:-93.440000pt;}
.y43{bottom:-80.640000pt;}
.y5f{bottom:-64.480000pt;}
.y52{bottom:-63.360000pt;}
.y42{bottom:-50.720000pt;}
.y5e{bottom:-34.560000pt;}
.y51{bottom:-33.440000pt;}
.y48{bottom:-20.960000pt;}
.y41{bottom:-20.800000pt;}
.y64{bottom:-15.931333pt;}
.y5d{bottom:-7.520000pt;}
.y50{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:1.633333pt;}
.y5c{bottom:2.080000pt;}
.y3{bottom:3.360000pt;}
.y2d{bottom:4.800000pt;}
.y4a{bottom:4.960000pt;}
.y47{bottom:5.760000pt;}
.y40{bottom:5.920000pt;}
.y88{bottom:8.320000pt;}
.y8b{bottom:8.360000pt;}
.y29{bottom:10.560000pt;}
.y86{bottom:10.720000pt;}
.y6{bottom:11.200000pt;}
.y4f{bottom:12.640000pt;}
.y5b{bottom:14.400000pt;}
.y3f{bottom:16.640000pt;}
.y2c{bottom:16.960000pt;}
.y5{bottom:21.920000pt;}
.y7{bottom:23.040000pt;}
.y4e{bottom:23.360000pt;}
.y5a{bottom:26.880000pt;}
.y3e{bottom:27.360000pt;}
.y2b{bottom:29.280000pt;}
.y4d{bottom:34.080000pt;}
.y4{bottom:36.960000pt;}
.y3d{bottom:38.080000pt;}
.y59{bottom:42.080000pt;}
.y4c{bottom:44.960000pt;}
.y3c{bottom:48.960000pt;}
.y66{bottom:50.400000pt;}
.y63{bottom:56.693333pt;}
.y2{bottom:67.520000pt;}
.y98{bottom:108.160000pt;}
.y3a{bottom:116.000000pt;}
.y97{bottom:122.720000pt;}
.y39{bottom:133.600000pt;}
.y96{bottom:141.920000pt;}
.y38{bottom:151.200000pt;}
.y95{bottom:160.986667pt;}
.y37{bottom:168.826667pt;}
.y94{bottom:180.026667pt;}
.y36{bottom:186.586667pt;}
.y93{bottom:199.066667pt;}
.y35{bottom:204.186667pt;}
.y92{bottom:218.106667pt;}
.y34{bottom:221.786667pt;}
.y91{bottom:237.146667pt;}
.y33{bottom:239.386667pt;}
.y90{bottom:256.346667pt;}
.y32{bottom:256.986667pt;}
.y31{bottom:274.746667pt;}
.y8f{bottom:275.386667pt;}
.y30{bottom:292.346667pt;}
.y8e{bottom:294.426667pt;}
.y2f{bottom:309.946667pt;}
.y8d{bottom:313.466667pt;}
.y2e{bottom:327.546667pt;}
.y8c{bottom:332.506667pt;}
.y8a{bottom:351.546667pt;}
.y2a{bottom:357.506667pt;}
.y89{bottom:370.786667pt;}
.y87{bottom:389.826667pt;}
.y28{bottom:401.346667pt;}
.y85{bottom:410.146667pt;}
.y27{bottom:434.626667pt;}
.y84{bottom:451.746667pt;}
.y26{bottom:466.466667pt;}
.y83{bottom:468.066667pt;}
.y25{bottom:484.066667pt;}
.y82{bottom:485.826667pt;}
.y24{bottom:501.666667pt;}
.y81{bottom:503.426667pt;}
.y23{bottom:519.266667pt;}
.y80{bottom:521.026667pt;}
.y22{bottom:536.866667pt;}
.y7f{bottom:538.626667pt;}
.y21{bottom:554.626667pt;}
.y7e{bottom:556.226667pt;}
.y20{bottom:572.253333pt;}
.y7d{bottom:574.013333pt;}
.y1f{bottom:589.853333pt;}
.y7c{bottom:591.613333pt;}
.y1e{bottom:607.453333pt;}
.y7b{bottom:609.213333pt;}
.yc1{bottom:615.293333pt;}
.y1d{bottom:625.053333pt;}
.y7a{bottom:626.813333pt;}
.yc0{bottom:632.893333pt;}
.y1c{bottom:642.653333pt;}
.y79{bottom:644.413333pt;}
.yac{bottom:646.973333pt;}
.ybf{bottom:650.493333pt;}
.y1b{bottom:660.413333pt;}
.y78{bottom:662.173333pt;}
.yab{bottom:664.573333pt;}
.ybe{bottom:668.093333pt;}
.y1a{bottom:678.013333pt;}
.y77{bottom:679.773333pt;}
.yaa{bottom:682.173333pt;}
.ybd{bottom:685.693333pt;}
.y19{bottom:690.973333pt;}
.y18{bottom:693.533333pt;}
.y76{bottom:697.373333pt;}
.ya9{bottom:699.773333pt;}
.y3b{bottom:703.293333pt;}
.ybc{bottom:703.453333pt;}
.y17{bottom:706.013333pt;}
.y4b{bottom:707.933333pt;}
.y58{bottom:712.093333pt;}
.y75{bottom:714.973333pt;}
.ya8{bottom:717.533333pt;}
.y16{bottom:718.973333pt;}
.ybb{bottom:721.053333pt;}
.y15{bottom:731.293333pt;}
.y74{bottom:732.573333pt;}
.ya7{bottom:735.133333pt;}
.yba{bottom:738.653333pt;}
.y14{bottom:743.613333pt;}
.y73{bottom:750.333333pt;}
.ya6{bottom:752.733333pt;}
.y13{bottom:755.773333pt;}
.yb9{bottom:756.253333pt;}
.y12{bottom:767.493333pt;}
.y72{bottom:767.973333pt;}
.ya5{bottom:770.373333pt;}
.y11{bottom:773.253333pt;}
.yb8{bottom:773.893333pt;}
.y71{bottom:785.573333pt;}
.ya4{bottom:787.973333pt;}
.yb7{bottom:791.653333pt;}
.y10{bottom:796.933333pt;}
.y70{bottom:803.173333pt;}
.ya3{bottom:805.733333pt;}
.yf{bottom:806.853333pt;}
.yb6{bottom:809.253333pt;}
.y6f{bottom:820.773333pt;}
.ya2{bottom:823.333333pt;}
.yb5{bottom:826.853333pt;}
.ye{bottom:827.973333pt;}
.yd{bottom:838.213333pt;}
.y6e{bottom:838.533333pt;}
.ya1{bottom:840.933333pt;}
.yb4{bottom:844.453333pt;}
.yc{bottom:844.933333pt;}
.y6d{bottom:856.133333pt;}
.ya0{bottom:858.533333pt;}
.yb3{bottom:862.053333pt;}
.yb{bottom:863.653333pt;}
.y6c{bottom:873.733333pt;}
.y9f{bottom:876.133333pt;}
.yb2{bottom:879.813333pt;}
.ya{bottom:880.933333pt;}
.y6b{bottom:891.333333pt;}
.y9e{bottom:893.893333pt;}
.yb1{bottom:897.413333pt;}
.y9{bottom:905.413333pt;}
.y6a{bottom:908.933333pt;}
.y9d{bottom:911.493333pt;}
.yb0{bottom:915.013333pt;}
.y69{bottom:926.693333pt;}
.y9c{bottom:929.093333pt;}
.yaf{bottom:932.613333pt;}
.y8{bottom:942.533333pt;}
.y68{bottom:944.293333pt;}
.y9b{bottom:946.693333pt;}
.yae{bottom:950.213333pt;}
.y67{bottom:961.893333pt;}
.y49{bottom:965.280000pt;}
.y9a{bottom:965.440000pt;}
.yad{bottom:967.840000pt;}
.y1{bottom:996.480000pt;}
.y65{bottom:997.920000pt;}
.y99{bottom:1000.480000pt;}
.y46{bottom:1006.400000pt;}
.h6{height:2.512500pt;}
.h15{height:5.025000pt;}
.h2a{height:5.562500pt;}
.h14{height:8.385000pt;}
.h3{height:12.000000pt;}
.hc{height:15.703125pt;}
.h1a{height:16.960000pt;}
.h26{height:18.400000pt;}
.h27{height:18.432000pt;}
.h28{height:18.560000pt;}
.h1b{height:19.840000pt;}
.h25{height:23.200000pt;}
.hd{height:26.381250pt;}
.hf{height:27.523125pt;}
.h16{height:28.800000pt;}
.h5{height:30.560000pt;}
.h1f{height:32.250000pt;}
.h21{height:32.890957pt;}
.h7{height:36.431250pt;}
.h24{height:37.090625pt;}
.h20{height:37.410000pt;}
.h18{height:41.920000pt;}
.h12{height:42.084375pt;}
.h17{height:43.215000pt;}
.h22{height:47.109375pt;}
.h29{height:47.742188pt;}
.h13{height:48.375000pt;}
.h11{height:49.148438pt;}
.h1e{height:49.312000pt;}
.h4{height:52.134375pt;}
.h10{height:52.671161pt;}
.ha{height:53.535000pt;}
.h1d{height:54.912000pt;}
.hb{height:57.787500pt;}
.h2{height:58.563750pt;}
.h19{height:59.072000pt;}
.he{height:64.500000pt;}
.h1c{height:64.629000pt;}
.h23{height:66.750000pt;}
.h9{height:85.785000pt;}
.h8{height:88.611250pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.we{width:54.272000pt;}
.w4{width:72.960000pt;}
.wf{width:80.160000pt;}
.w6{width:101.952000pt;}
.w8{width:116.832000pt;}
.w11{width:136.186667pt;}
.wc{width:137.440000pt;}
.w10{width:159.386667pt;}
.w9{width:166.106667pt;}
.w7{width:178.426667pt;}
.wd{width:240.666667pt;}
.w5{width:568.773333pt;}
.w3{width:641.733333pt;}
.wb{width:660.640000pt;}
.wa{width:674.400000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:1.280000pt;}
.x12{left:3.680000pt;}
.x14{left:5.760000pt;}
.x2{left:7.200000pt;}
.x1a{left:9.600000pt;}
.x13{left:10.720000pt;}
.x27{left:12.160000pt;}
.x36{left:13.600000pt;}
.x2b{left:16.000000pt;}
.x18{left:18.240000pt;}
.x16{left:19.360000pt;}
.x24{left:22.880000pt;}
.x17{left:24.640000pt;}
.x2a{left:29.760000pt;}
.x11{left:32.320000pt;}
.xd{left:35.880000pt;}
.x2c{left:37.440000pt;}
.x30{left:38.560000pt;}
.x2d{left:40.320000pt;}
.x2f{left:42.720000pt;}
.x33{left:44.960000pt;}
.x35{left:46.080000pt;}
.x2e{left:48.800000pt;}
.x32{left:50.720000pt;}
.x29{left:51.680000pt;}
.x31{left:53.920000pt;}
.x28{left:56.000000pt;}
.x34{left:60.160000pt;}
.x3{left:65.754667pt;}
.x1b{left:72.320000pt;}
.xf{left:75.520000pt;}
.x1c{left:76.800000pt;}
.x1e{left:84.032000pt;}
.x5{left:94.271988pt;}
.x1{left:96.031988pt;}
.xa{left:117.951988pt;}
.x4{left:168.986667pt;}
.x22{left:181.946667pt;}
.x21{left:189.306655pt;}
.x9{left:197.466655pt;}
.xc{left:198.426667pt;}
.x37{left:210.746655pt;}
.x23{left:236.226667pt;}
.x1d{left:265.186667pt;}
.x1f{left:289.026667pt;}
.xe{left:300.386667pt;}
.x25{left:316.386667pt;}
.x6{left:339.906655pt;}
.x7{left:393.053322pt;}
.x8{left:396.893322pt;}
.xb{left:420.573322pt;}
.x26{left:475.773333pt;}
.x10{left:478.813333pt;}
.x20{left:551.336000pt;}
.x19{left:568.933333pt;}
}




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