
    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_9d687b72bfa858e8b47353b6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.111000;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_b420738ebb61cd2134f50716.woff')format("woff");}.ff2{font-family:ff2;line-height:1.111000;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_c590c6055abeb78d289359d0.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_afd188f77e5ba359475eef2d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.120000;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_444fae242aa3ecc6cdffa3ea.woff')format("woff");}.ff5{font-family:ff5;line-height:1.120000;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_45480ab8ef2ca8e2ca7f5820.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_38323e397365dcb7eda54464.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2672cede3d9e3974be3bc979.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a468965503014f379c84e54e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.773926;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_df5c8d673d7f16c06c8893d9.woff')format("woff");}.ffa{font-family:ffa;line-height:1.038574;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7fb7a29dab16687d57fadfbb.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c53ff6980d98f5658ed80ff2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.757812;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);}
.v2{vertical-align:-5.760000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760000px;}
.v1{vertical-align:20.880000px;}
.v5{vertical-align:23.760000px;}
.ls16{letter-spacing:-0.406200px;}
.ls4{letter-spacing:-0.319800px;}
.ls8{letter-spacing:-0.282000px;}
.ls3{letter-spacing:-0.100800px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.033600px;}
.ls6{letter-spacing:0.115200px;}
.lsb{letter-spacing:0.126000px;}
.ls13{letter-spacing:0.128160px;}
.ls10{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.221760px;}
.lsc{letter-spacing:0.251400px;}
.ls15{letter-spacing:0.299400px;}
.ls17{letter-spacing:0.313800px;}
.ls19{letter-spacing:0.401760px;}
.ls7{letter-spacing:0.454320px;}
.lsd{letter-spacing:0.489600px;}
.lsa{letter-spacing:0.604080px;}
.ls1{letter-spacing:0.846000px;}
.lse{letter-spacing:2.898720px;}
.ls11{letter-spacing:13.104000px;}
.lsf{letter-spacing:17.585280px;}
.ls14{letter-spacing:54.864000px;}
.ls9{letter-spacing:89.442720px;}
.ls0{letter-spacing:95.922720px;}
.ls5{letter-spacing:99.522720px;}
.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;}
}
.ws1{word-spacing:-66.240000px;}
.wsc{word-spacing:-59.760000px;}
.ws0{word-spacing:-23.168880px;}
.ws13{word-spacing:-17.271240px;}
.ws11{word-spacing:-17.256840px;}
.wsb{word-spacing:-16.957440px;}
.ws12{word-spacing:-16.551240px;}
.ws4{word-spacing:-15.298560px;}
.ws5{word-spacing:-15.197760px;}
.ws8{word-spacing:-14.978760px;}
.wse{word-spacing:-14.773080px;}
.ws10{word-spacing:-14.647680px;}
.ws2{word-spacing:-14.521680px;}
.ws6{word-spacing:-14.420880px;}
.wsd{word-spacing:-14.239680px;}
.wsa{word-spacing:-10.690560px;}
.wsf{word-spacing:-10.442880px;}
.ws7{word-spacing:-9.953280px;}
.ws3{word-spacing:-9.447840px;}
.ws9{word-spacing:0.000000px;}
._b{margin-left:-7.476240px;}
._4{margin-left:-6.334560px;}
._15{margin-left:-5.317920px;}
._1{margin-left:-3.888000px;}
._0{margin-left:-1.836000px;}
._2{width:1.053360px;}
._3{width:2.420160px;}
._c{width:3.477120px;}
._7{width:4.580640px;}
._a{width:5.643840px;}
._8{width:6.804000px;}
._9{width:7.901280px;}
._d{width:10.002240px;}
._e{width:11.167200px;}
._11{width:12.245760px;}
._13{width:13.748160px;}
._12{width:15.017760px;}
._5{width:18.613440px;}
._6{width:20.573760px;}
._f{width:24.111360px;}
._10{width:25.994880px;}
._14{width:849.149760px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.fsb{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y13{bottom:1.440000px;}
.y11{bottom:3.240000px;}
.y37{bottom:3.420000px;}
.y2{bottom:3.600000px;}
.y94{bottom:4.140000px;}
.y92{bottom:4.500000px;}
.yf{bottom:4.860000px;}
.y6{bottom:5.760000px;}
.y3{bottom:8.640000px;}
.y59{bottom:8.820000px;}
.y19{bottom:9.000000px;}
.y89{bottom:9.030000px;}
.y8{bottom:11.520000px;}
.y17{bottom:12.240000px;}
.y33{bottom:12.600000px;}
.y90{bottom:12.630000px;}
.y29{bottom:12.780000px;}
.yd{bottom:13.500000px;}
.y3c{bottom:13.890000px;}
.ya{bottom:14.040000px;}
.y72{bottom:14.070000px;}
.y44{bottom:21.240000px;}
.y8d{bottom:23.400000px;}
.y1{bottom:24.300000px;}
.y32{bottom:32.400000px;}
.y8f{bottom:32.430000px;}
.y28{bottom:32.610000px;}
.yc{bottom:33.300000px;}
.y5{bottom:38.190000px;}
.y7f{bottom:41.400000px;}
.y8c{bottom:43.200000px;}
.y31{bottom:52.200000px;}
.y27{bottom:52.410000px;}
.y20{bottom:56.700000px;}
.y1f{bottom:61.200000px;}
.y74{bottom:62.280000px;}
.y57{bottom:66.780000px;}
.y3a{bottom:71.820000px;}
.y30{bottom:72.000000px;}
.y26{bottom:72.210000px;}
.y1e{bottom:72.900000px;}
.y6b{bottom:74.880000px;}
.y39{bottom:77.220000px;}
.y1d{bottom:77.400000px;}
.y49{bottom:80.640000px;}
.y7e{bottom:80.820000px;}
.y2b{bottom:88.200000px;}
.y46{bottom:89.640000px;}
.y1c{bottom:90.720000px;}
.y2f{bottom:91.800000px;}
.y25{bottom:92.010000px;}
.y8b{bottom:93.780000px;}
.y6a{bottom:94.680000px;}
.y48{bottom:98.640000px;}
.y7d{bottom:102.600000px;}
.y38{bottom:106.020000px;}
.y85{bottom:111.600000px;}
.y24{bottom:111.810000px;}
.y69{bottom:114.300000px;}
.y70{bottom:121.860000px;}
.y7c{bottom:122.220000px;}
.y52{bottom:127.800000px;}
.y84{bottom:131.400000px;}
.y36{bottom:134.820000px;}
.y68{bottom:139.140000px;}
.y6f{bottom:140.940000px;}
.y7b{bottom:143.820000px;}
.y6e{bottom:146.340000px;}
.y51{bottom:147.630000px;}
.y83{bottom:151.200000px;}
.y8a{bottom:156.420000px;}
.y35{bottom:158.400000px;}
.y67{bottom:158.940000px;}
.y7a{bottom:165.645000px;}
.y82{bottom:171.030000px;}
.y6d{bottom:175.140000px;}
.y66{bottom:178.740000px;}
.y79{bottom:185.445000px;}
.y81{bottom:190.830000px;}
.y1b{bottom:200.520000px;}
.y65{bottom:201.780000px;}
.y6c{bottom:203.940000px;}
.y78{bottom:205.245000px;}
.y80{bottom:210.630000px;}
.y88{bottom:214.380000px;}
.y1a{bottom:221.610000px;}
.y64{bottom:221.625000px;}
.y5c{bottom:230.790000px;}
.y63{bottom:241.425000px;}
.y62{bottom:264.645000px;}
.y61{bottom:284.445000px;}
.y77{bottom:289.110000px;}
.y42{bottom:289.845000px;}
.y60{bottom:304.245000px;}
.y41{bottom:309.645000px;}
.y40{bottom:329.445000px;}
.y5f{bottom:333.405000px;}
.y3f{bottom:349.245000px;}
.y5e{bottom:353.205000px;}
.y2a{bottom:361.290000px;}
.y3e{bottom:369.045000px;}
.y5d{bottom:373.005000px;}
.y34{bottom:425.910000px;}
.y5a{bottom:433.695000px;}
.y58{bottom:434.235000px;}
.y18{bottom:452.235000px;}
.y98{bottom:470.955000px;}
.y97{bottom:498.855000px;}
.y96{bottom:504.255000px;}
.y76{bottom:510.555000px;}
.y50{bottom:520.095000px;}
.y56{bottom:525.495000px;}
.y95{bottom:533.055000px;}
.y55{bottom:554.295000px;}
.y93{bottom:561.855000px;}
.y54{bottom:583.095000px;}
.y91{bottom:587.055000px;}
.y53{bottom:611.895000px;}
.y5b{bottom:623.235000px;}
.y23{bottom:634.395000px;}
.y87{bottom:658.185000px;}
.y2e{bottom:682.485000px;}
.y3d{bottom:687.345000px;}
.y4f{bottom:692.745000px;}
.y45{bottom:721.545000px;}
.y4e{bottom:750.345000px;}
.y22{bottom:774.825000px;}
.y4d{bottom:779.145000px;}
.y16{bottom:789.045000px;}
.y2d{bottom:802.725000px;}
.y15{bottom:806.685000px;}
.y4c{bottom:807.945000px;}
.y21{bottom:832.785000px;}
.y14{bottom:835.485000px;}
.y4b{bottom:836.745000px;}
.y2c{bottom:860.865000px;}
.y4a{bottom:865.545000px;}
.y12{bottom:874.230000px;}
.y10{bottom:881.070000px;}
.y75{bottom:882.150000px;}
.y47{bottom:894.390000px;}
.ye{bottom:909.870000px;}
.y43{bottom:923.190000px;}
.yb{bottom:937.950000px;}
.y73{bottom:963.510000px;}
.y9{bottom:999.870000px;}
.y7{bottom:1042.350000px;}
.y4{bottom:1069.170000px;}
.y71{bottom:1074.750000px;}
.y3b{bottom:1076.010000px;}
.y8e{bottom:1081.950000px;}
.y86{bottom:1101.780000px;}
.h2d{height:2.679840px;}
.h21{height:2.864531px;}
.h11{height:2.948906px;}
.he{height:18.000000px;}
.h2c{height:18.036000px;}
.h25{height:18.180000px;}
.h1{height:19.800000px;}
.h17{height:21.096000px;}
.hb{height:21.240000px;}
.h6{height:23.400000px;}
.h3f{height:28.800000px;}
.h18{height:33.336000px;}
.h2a{height:36.000000px;}
.h8{height:42.480000px;}
.h7{height:44.887320px;}
.h45{height:48.636000px;}
.h19{height:50.004000px;}
.h43{height:54.540000px;}
.hf{height:55.337760px;}
.hc{height:55.606680px;}
.h28{height:55.656000px;}
.h1c{height:55.800000px;}
.h32{height:55.836000px;}
.h12{height:56.882880px;}
.hd{height:57.057840px;}
.ha{height:58.500000px;}
.h44{height:59.400000px;}
.h1a{height:59.439023px;}
.h16{height:61.189805px;}
.h2{height:61.338240px;}
.h1e{height:61.636320px;}
.h39{height:62.429760px;}
.h10{height:63.720000px;}
.h4{height:64.836000px;}
.h3{height:65.884219px;}
.h36{height:66.672000px;}
.h3c{height:66.996000px;}
.h34{height:68.084282px;}
.h35{height:74.004654px;}
.h13{height:85.176000px;}
.h37{height:86.436000px;}
.h26{height:86.580000px;}
.h47{height:88.200000px;}
.h49{height:90.180000px;}
.h9{height:99.687656px;}
.h5{height:100.494000px;}
.h38{height:108.000000px;}
.h22{height:117.000000px;}
.h1d{height:137.016000px;}
.h2e{height:163.830000px;}
.h2b{height:190.830000px;}
.h3d{height:221.430000px;}
.h3e{height:226.830000px;}
.h15{height:230.610000px;}
.h23{height:256.575000px;}
.h24{height:267.510000px;}
.h1f{height:273.090000px;}
.h20{height:273.135000px;}
.h1b{height:301.215000px;}
.h14{height:336.810000px;}
.h29{height:385.230000px;}
.h33{height:389.190000px;}
.h3b{height:429.375000px;}
.h30{height:429.735000px;}
.h40{height:443.595000px;}
.h41{height:443.805000px;}
.h31{height:448.095000px;}
.h2f{height:449.895000px;}
.h46{height:491.655000px;}
.h48{height:579.855000px;}
.h27{height:610.665000px;}
.h3a{height:897.810000px;}
.h42{height:916.200000px;}
.h0{height:1188.000000px;}
.w6{width:72.396000px;}
.w2c{width:74.880000px;}
.w2b{width:75.060000px;}
.w2e{width:77.580000px;}
.w2d{width:77.796000px;}
.w2a{width:81.576000px;}
.w1a{width:84.636000px;}
.w5{width:89.460000px;}
.w4{width:94.716000px;}
.w19{width:97.560000px;}
.w1e{width:99.900000px;}
.w1d{width:106.416000px;}
.w7{width:115.020000px;}
.w18{width:118.476000px;}
.w8{width:118.656000px;}
.w20{width:127.476000px;}
.w25{width:127.656000px;}
.w26{width:132.120000px;}
.w22{width:138.240000px;}
.w1c{width:140.076000px;}
.w1b{width:146.880000px;}
.wa{width:151.230000px;}
.w9{width:152.460000px;}
.w23{width:152.670000px;}
.w29{width:157.890000px;}
.w21{width:159.510000px;}
.w15{width:164.910000px;}
.wd{width:169.950000px;}
.w1{width:171.750000px;}
.w17{width:176.070000px;}
.wb{width:178.410000px;}
.we{width:206.670000px;}
.w16{width:215.670000px;}
.w1f{width:216.030000px;}
.w14{width:221.070000px;}
.wc{width:238.890000px;}
.w24{width:268.275000px;}
.wf{width:298.650000px;}
.w10{width:381.855000px;}
.w28{width:396.795000px;}
.w13{width:396.975000px;}
.w27{width:397.155000px;}
.w11{width:793.950000px;}
.w3{width:810.150000px;}
.w12{width:917.999973px;}
.w2{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:4.140000px;}
.xd{left:5.400000px;}
.x10{left:7.200000px;}
.x1d{left:8.280000px;}
.x6{left:10.980000px;}
.x4{left:13.500000px;}
.x8{left:16.560000px;}
.x45{left:18.720000px;}
.x46{left:19.800000px;}
.x5b{left:20.880000px;}
.x42{left:23.040000px;}
.x3e{left:24.480000px;}
.x13{left:27.900000px;}
.x12{left:30.600000px;}
.x14{left:34.380000px;}
.x3b{left:35.856000px;}
.x16{left:38.340000px;}
.x19{left:40.356000px;}
.x44{left:42.516000px;}
.x54{left:44.670000px;}
.x15{left:46.260000px;}
.x40{left:48.780000px;}
.x47{left:49.860000px;}
.x52{left:51.840000px;}
.x3{left:53.999986px;}
.x55{left:55.620000px;}
.x4b{left:57.105000px;}
.x17{left:58.185000px;}
.x27{left:59.219986px;}
.x7{left:62.100000px;}
.x4d{left:63.765000px;}
.x4a{left:64.800000px;}
.x1b{left:68.625000px;}
.x31{left:70.200000px;}
.x1f{left:72.036000px;}
.x32{left:73.476000px;}
.x4e{left:76.365000px;}
.x39{left:77.625000px;}
.x21{left:79.410000px;}
.x36{left:83.205000px;}
.x37{left:85.710000px;}
.x38{left:97.410000px;}
.x20{left:102.465000px;}
.x4c{left:108.030000px;}
.x53{left:109.290000px;}
.x2{left:118.125000px;}
.x9{left:156.810000px;}
.x3c{left:180.570000px;}
.x58{left:228.090000px;}
.x1a{left:240.510000px;}
.xb{left:246.270000px;}
.x22{left:270.939000px;}
.x3d{left:278.130000px;}
.x5{left:279.615000px;}
.x33{left:291.270000px;}
.x59{left:309.675000px;}
.xc{left:318.675000px;}
.x26{left:330.375000px;}
.x28{left:342.074973px;}
.x29{left:347.294986px;}
.x3f{left:362.775000px;}
.x2f{left:374.295000px;}
.x24{left:376.455000px;}
.x5a{left:384.735000px;}
.x57{left:390.675000px;}
.x3a{left:396.975000px;}
.x2d{left:398.775000px;}
.x18{left:405.075000px;}
.x23{left:417.495000px;}
.xe{left:433.695000px;}
.x34{left:456.195000px;}
.x2e{left:459.075000px;}
.x4f{left:468.615000px;}
.x1c{left:479.415000px;}
.x41{left:509.655000px;}
.x5c{left:537.405000px;}
.xf{left:552.345000px;}
.x48{left:565.125000px;}
.x50{left:596.265000px;}
.x5d{left:614.985000px;}
.x2a{left:630.104973px;}
.x2b{left:635.324986px;}
.x1e{left:649.365000px;}
.x25{left:653.865000px;}
.x35{left:671.865000px;}
.x1{left:692.385000px;}
.x49{left:703.365000px;}
.x11{left:704.805000px;}
.x51{left:723.930000px;}
.x43{left:756.150000px;}
.x56{left:768.930000px;}
.x5e{left:770.370000px;}
.x30{left:779.550000px;}
.x2c{left:794.850000px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120000pt;}
.v1{vertical-align:18.560000pt;}
.v5{vertical-align:21.120000pt;}
.ls16{letter-spacing:-0.361067pt;}
.ls4{letter-spacing:-0.284267pt;}
.ls8{letter-spacing:-0.250667pt;}
.ls3{letter-spacing:-0.089600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.029867pt;}
.ls6{letter-spacing:0.102400pt;}
.lsb{letter-spacing:0.112000pt;}
.ls13{letter-spacing:0.113920pt;}
.ls10{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.197120pt;}
.lsc{letter-spacing:0.223467pt;}
.ls15{letter-spacing:0.266133pt;}
.ls17{letter-spacing:0.278933pt;}
.ls19{letter-spacing:0.357120pt;}
.ls7{letter-spacing:0.403840pt;}
.lsd{letter-spacing:0.435200pt;}
.lsa{letter-spacing:0.536960pt;}
.ls1{letter-spacing:0.752000pt;}
.lse{letter-spacing:2.576640pt;}
.ls11{letter-spacing:11.648000pt;}
.lsf{letter-spacing:15.631360pt;}
.ls14{letter-spacing:48.768000pt;}
.ls9{letter-spacing:79.504640pt;}
.ls0{letter-spacing:85.264640pt;}
.ls5{letter-spacing:88.464640pt;}
.ws1{word-spacing:-58.880000pt;}
.wsc{word-spacing:-53.120000pt;}
.ws0{word-spacing:-20.594560pt;}
.ws13{word-spacing:-15.352213pt;}
.ws11{word-spacing:-15.339413pt;}
.wsb{word-spacing:-15.073280pt;}
.ws12{word-spacing:-14.712213pt;}
.ws4{word-spacing:-13.598720pt;}
.ws5{word-spacing:-13.509120pt;}
.ws8{word-spacing:-13.314453pt;}
.wse{word-spacing:-13.131627pt;}
.ws10{word-spacing:-13.020160pt;}
.ws2{word-spacing:-12.908160pt;}
.ws6{word-spacing:-12.818560pt;}
.wsd{word-spacing:-12.657493pt;}
.wsa{word-spacing:-9.502720pt;}
.wsf{word-spacing:-9.282560pt;}
.ws7{word-spacing:-8.847360pt;}
.ws3{word-spacing:-8.398080pt;}
.ws9{word-spacing:0.000000pt;}
._b{margin-left:-6.645547pt;}
._4{margin-left:-5.630720pt;}
._15{margin-left:-4.727040pt;}
._1{margin-left:-3.456000pt;}
._0{margin-left:-1.632000pt;}
._2{width:0.936320pt;}
._3{width:2.151253pt;}
._c{width:3.090773pt;}
._7{width:4.071680pt;}
._a{width:5.016747pt;}
._8{width:6.048000pt;}
._9{width:7.023360pt;}
._d{width:8.890880pt;}
._e{width:9.926400pt;}
._11{width:10.885120pt;}
._13{width:12.220587pt;}
._12{width:13.349120pt;}
._5{width:16.545280pt;}
._6{width:18.287787pt;}
._f{width:21.432320pt;}
._10{width:23.106560pt;}
._14{width:754.799787pt;}
.fs6{font-size:2.560000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.fsb{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:1.280000pt;}
.y11{bottom:2.880000pt;}
.y37{bottom:3.040000pt;}
.y2{bottom:3.200000pt;}
.y94{bottom:3.680000pt;}
.y92{bottom:4.000000pt;}
.yf{bottom:4.320000pt;}
.y6{bottom:5.120000pt;}
.y3{bottom:7.680000pt;}
.y59{bottom:7.840000pt;}
.y19{bottom:8.000000pt;}
.y89{bottom:8.026667pt;}
.y8{bottom:10.240000pt;}
.y17{bottom:10.880000pt;}
.y33{bottom:11.200000pt;}
.y90{bottom:11.226667pt;}
.y29{bottom:11.360000pt;}
.yd{bottom:12.000000pt;}
.y3c{bottom:12.346667pt;}
.ya{bottom:12.480000pt;}
.y72{bottom:12.506667pt;}
.y44{bottom:18.880000pt;}
.y8d{bottom:20.800000pt;}
.y1{bottom:21.600000pt;}
.y32{bottom:28.800000pt;}
.y8f{bottom:28.826667pt;}
.y28{bottom:28.986667pt;}
.yc{bottom:29.600000pt;}
.y5{bottom:33.946667pt;}
.y7f{bottom:36.800000pt;}
.y8c{bottom:38.400000pt;}
.y31{bottom:46.400000pt;}
.y27{bottom:46.586667pt;}
.y20{bottom:50.400000pt;}
.y1f{bottom:54.400000pt;}
.y74{bottom:55.360000pt;}
.y57{bottom:59.360000pt;}
.y3a{bottom:63.840000pt;}
.y30{bottom:64.000000pt;}
.y26{bottom:64.186667pt;}
.y1e{bottom:64.800000pt;}
.y6b{bottom:66.560000pt;}
.y39{bottom:68.640000pt;}
.y1d{bottom:68.800000pt;}
.y49{bottom:71.680000pt;}
.y7e{bottom:71.840000pt;}
.y2b{bottom:78.400000pt;}
.y46{bottom:79.680000pt;}
.y1c{bottom:80.640000pt;}
.y2f{bottom:81.600000pt;}
.y25{bottom:81.786667pt;}
.y8b{bottom:83.360000pt;}
.y6a{bottom:84.160000pt;}
.y48{bottom:87.680000pt;}
.y7d{bottom:91.200000pt;}
.y38{bottom:94.240000pt;}
.y85{bottom:99.200000pt;}
.y24{bottom:99.386667pt;}
.y69{bottom:101.600000pt;}
.y70{bottom:108.320000pt;}
.y7c{bottom:108.640000pt;}
.y52{bottom:113.600000pt;}
.y84{bottom:116.800000pt;}
.y36{bottom:119.840000pt;}
.y68{bottom:123.680000pt;}
.y6f{bottom:125.280000pt;}
.y7b{bottom:127.840000pt;}
.y6e{bottom:130.080000pt;}
.y51{bottom:131.226667pt;}
.y83{bottom:134.400000pt;}
.y8a{bottom:139.040000pt;}
.y35{bottom:140.800000pt;}
.y67{bottom:141.280000pt;}
.y7a{bottom:147.240000pt;}
.y82{bottom:152.026667pt;}
.y6d{bottom:155.680000pt;}
.y66{bottom:158.880000pt;}
.y79{bottom:164.840000pt;}
.y81{bottom:169.626667pt;}
.y1b{bottom:178.240000pt;}
.y65{bottom:179.360000pt;}
.y6c{bottom:181.280000pt;}
.y78{bottom:182.440000pt;}
.y80{bottom:187.226667pt;}
.y88{bottom:190.560000pt;}
.y1a{bottom:196.986667pt;}
.y64{bottom:197.000000pt;}
.y5c{bottom:205.146667pt;}
.y63{bottom:214.600000pt;}
.y62{bottom:235.240000pt;}
.y61{bottom:252.840000pt;}
.y77{bottom:256.986667pt;}
.y42{bottom:257.640000pt;}
.y60{bottom:270.440000pt;}
.y41{bottom:275.240000pt;}
.y40{bottom:292.840000pt;}
.y5f{bottom:296.360000pt;}
.y3f{bottom:310.440000pt;}
.y5e{bottom:313.960000pt;}
.y2a{bottom:321.146667pt;}
.y3e{bottom:328.040000pt;}
.y5d{bottom:331.560000pt;}
.y34{bottom:378.586667pt;}
.y5a{bottom:385.506667pt;}
.y58{bottom:385.986667pt;}
.y18{bottom:401.986667pt;}
.y98{bottom:418.626667pt;}
.y97{bottom:443.426667pt;}
.y96{bottom:448.226667pt;}
.y76{bottom:453.826667pt;}
.y50{bottom:462.306667pt;}
.y56{bottom:467.106667pt;}
.y95{bottom:473.826667pt;}
.y55{bottom:492.706667pt;}
.y93{bottom:499.426667pt;}
.y54{bottom:518.306667pt;}
.y91{bottom:521.826667pt;}
.y53{bottom:543.906667pt;}
.y5b{bottom:553.986667pt;}
.y23{bottom:563.906667pt;}
.y87{bottom:585.053333pt;}
.y2e{bottom:606.653333pt;}
.y3d{bottom:610.973333pt;}
.y4f{bottom:615.773333pt;}
.y45{bottom:641.373333pt;}
.y4e{bottom:666.973333pt;}
.y22{bottom:688.733333pt;}
.y4d{bottom:692.573333pt;}
.y16{bottom:701.373333pt;}
.y2d{bottom:713.533333pt;}
.y15{bottom:717.053333pt;}
.y4c{bottom:718.173333pt;}
.y21{bottom:740.253333pt;}
.y14{bottom:742.653333pt;}
.y4b{bottom:743.773333pt;}
.y2c{bottom:765.213333pt;}
.y4a{bottom:769.373333pt;}
.y12{bottom:777.093333pt;}
.y10{bottom:783.173333pt;}
.y75{bottom:784.133333pt;}
.y47{bottom:795.013333pt;}
.ye{bottom:808.773333pt;}
.y43{bottom:820.613333pt;}
.yb{bottom:833.733333pt;}
.y73{bottom:856.453333pt;}
.y9{bottom:888.773333pt;}
.y7{bottom:926.533333pt;}
.y4{bottom:950.373333pt;}
.y71{bottom:955.333333pt;}
.y3b{bottom:956.453333pt;}
.y8e{bottom:961.733333pt;}
.y86{bottom:979.360000pt;}
.h2d{height:2.382080pt;}
.h21{height:2.546250pt;}
.h11{height:2.621250pt;}
.he{height:16.000000pt;}
.h2c{height:16.032000pt;}
.h25{height:16.160000pt;}
.h1{height:17.600000pt;}
.h17{height:18.752000pt;}
.hb{height:18.880000pt;}
.h6{height:20.800000pt;}
.h3f{height:25.600000pt;}
.h18{height:29.632000pt;}
.h2a{height:32.000000pt;}
.h8{height:37.760000pt;}
.h7{height:39.899840pt;}
.h45{height:43.232000pt;}
.h19{height:44.448000pt;}
.h43{height:48.480000pt;}
.hf{height:49.189120pt;}
.hc{height:49.428160pt;}
.h28{height:49.472000pt;}
.h1c{height:49.600000pt;}
.h32{height:49.632000pt;}
.h12{height:50.562560pt;}
.hd{height:50.718080pt;}
.ha{height:52.000000pt;}
.h44{height:52.800000pt;}
.h1a{height:52.834688pt;}
.h16{height:54.390938pt;}
.h2{height:54.522880pt;}
.h1e{height:54.787840pt;}
.h39{height:55.493120pt;}
.h10{height:56.640000pt;}
.h4{height:57.632000pt;}
.h3{height:58.563750pt;}
.h36{height:59.264000pt;}
.h3c{height:59.552000pt;}
.h34{height:60.519362pt;}
.h35{height:65.781915pt;}
.h13{height:75.712000pt;}
.h37{height:76.832000pt;}
.h26{height:76.960000pt;}
.h47{height:78.400000pt;}
.h49{height:80.160000pt;}
.h9{height:88.611250pt;}
.h5{height:89.328000pt;}
.h38{height:96.000000pt;}
.h22{height:104.000000pt;}
.h1d{height:121.792000pt;}
.h2e{height:145.626667pt;}
.h2b{height:169.626667pt;}
.h3d{height:196.826667pt;}
.h3e{height:201.626667pt;}
.h15{height:204.986667pt;}
.h23{height:228.066667pt;}
.h24{height:237.786667pt;}
.h1f{height:242.746667pt;}
.h20{height:242.786667pt;}
.h1b{height:267.746667pt;}
.h14{height:299.386667pt;}
.h29{height:342.426667pt;}
.h33{height:345.946667pt;}
.h3b{height:381.666667pt;}
.h30{height:381.986667pt;}
.h40{height:394.306667pt;}
.h41{height:394.493333pt;}
.h31{height:398.306667pt;}
.h2f{height:399.906667pt;}
.h46{height:437.026667pt;}
.h48{height:515.426667pt;}
.h27{height:542.813333pt;}
.h3a{height:798.053333pt;}
.h42{height:814.400000pt;}
.h0{height:1056.000000pt;}
.w6{width:64.352000pt;}
.w2c{width:66.560000pt;}
.w2b{width:66.720000pt;}
.w2e{width:68.960000pt;}
.w2d{width:69.152000pt;}
.w2a{width:72.512000pt;}
.w1a{width:75.232000pt;}
.w5{width:79.520000pt;}
.w4{width:84.192000pt;}
.w19{width:86.720000pt;}
.w1e{width:88.800000pt;}
.w1d{width:94.592000pt;}
.w7{width:102.240000pt;}
.w18{width:105.312000pt;}
.w8{width:105.472000pt;}
.w20{width:113.312000pt;}
.w25{width:113.472000pt;}
.w26{width:117.440000pt;}
.w22{width:122.880000pt;}
.w1c{width:124.512000pt;}
.w1b{width:130.560000pt;}
.wa{width:134.426667pt;}
.w9{width:135.520000pt;}
.w23{width:135.706667pt;}
.w29{width:140.346667pt;}
.w21{width:141.786667pt;}
.w15{width:146.586667pt;}
.wd{width:151.066667pt;}
.w1{width:152.666667pt;}
.w17{width:156.506667pt;}
.wb{width:158.586667pt;}
.we{width:183.706667pt;}
.w16{width:191.706667pt;}
.w1f{width:192.026667pt;}
.w14{width:196.506667pt;}
.wc{width:212.346667pt;}
.w24{width:238.466667pt;}
.wf{width:265.466667pt;}
.w10{width:339.426667pt;}
.w28{width:352.706667pt;}
.w13{width:352.866667pt;}
.w27{width:353.026667pt;}
.w11{width:705.733333pt;}
.w3{width:720.133333pt;}
.w12{width:815.999976pt;}
.w2{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:3.680000pt;}
.xd{left:4.800000pt;}
.x10{left:6.400000pt;}
.x1d{left:7.360000pt;}
.x6{left:9.760000pt;}
.x4{left:12.000000pt;}
.x8{left:14.720000pt;}
.x45{left:16.640000pt;}
.x46{left:17.600000pt;}
.x5b{left:18.560000pt;}
.x42{left:20.480000pt;}
.x3e{left:21.760000pt;}
.x13{left:24.800000pt;}
.x12{left:27.200000pt;}
.x14{left:30.560000pt;}
.x3b{left:31.872000pt;}
.x16{left:34.080000pt;}
.x19{left:35.872000pt;}
.x44{left:37.792000pt;}
.x54{left:39.706667pt;}
.x15{left:41.120000pt;}
.x40{left:43.360000pt;}
.x47{left:44.320000pt;}
.x52{left:46.080000pt;}
.x3{left:47.999988pt;}
.x55{left:49.440000pt;}
.x4b{left:50.760000pt;}
.x17{left:51.720000pt;}
.x27{left:52.639988pt;}
.x7{left:55.200000pt;}
.x4d{left:56.680000pt;}
.x4a{left:57.600000pt;}
.x1b{left:61.000000pt;}
.x31{left:62.400000pt;}
.x1f{left:64.032000pt;}
.x32{left:65.312000pt;}
.x4e{left:67.880000pt;}
.x39{left:69.000000pt;}
.x21{left:70.586667pt;}
.x36{left:73.960000pt;}
.x37{left:76.186667pt;}
.x38{left:86.586667pt;}
.x20{left:91.080000pt;}
.x4c{left:96.026667pt;}
.x53{left:97.146667pt;}
.x2{left:105.000000pt;}
.x9{left:139.386667pt;}
.x3c{left:160.506667pt;}
.x58{left:202.746667pt;}
.x1a{left:213.786667pt;}
.xb{left:218.906667pt;}
.x22{left:240.834667pt;}
.x3d{left:247.226667pt;}
.x5{left:248.546667pt;}
.x33{left:258.906667pt;}
.x59{left:275.266667pt;}
.xc{left:283.266667pt;}
.x26{left:293.666667pt;}
.x28{left:304.066642pt;}
.x29{left:308.706655pt;}
.x3f{left:322.466667pt;}
.x2f{left:332.706667pt;}
.x24{left:334.626667pt;}
.x5a{left:341.986667pt;}
.x57{left:347.266667pt;}
.x3a{left:352.866667pt;}
.x2d{left:354.466667pt;}
.x18{left:360.066667pt;}
.x23{left:371.106667pt;}
.xe{left:385.506667pt;}
.x34{left:405.506667pt;}
.x2e{left:408.066667pt;}
.x4f{left:416.546667pt;}
.x1c{left:426.146667pt;}
.x41{left:453.026667pt;}
.x5c{left:477.693333pt;}
.xf{left:490.973333pt;}
.x48{left:502.333333pt;}
.x50{left:530.013333pt;}
.x5d{left:546.653333pt;}
.x2a{left:560.093309pt;}
.x2b{left:564.733321pt;}
.x1e{left:577.213333pt;}
.x25{left:581.213333pt;}
.x35{left:597.213333pt;}
.x1{left:615.453333pt;}
.x49{left:625.213333pt;}
.x11{left:626.493333pt;}
.x51{left:643.493333pt;}
.x43{left:672.133333pt;}
.x56{left:683.493333pt;}
.x5e{left:684.773333pt;}
.x30{left:692.933333pt;}
.x2c{left:706.533333pt;}
}




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