
    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_2da229154614fdf4e352daf4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_683e05248326c4e08a01a671.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2bce9e243d1b776ea1f786d5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_003757ee843750a80d50a144.woff')format("woff");}.ff4{font-family:ff4;line-height:1.372070;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_f1b7b373c0bb4cbfd888d597.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_d10087c03227abaf9f54a1d7.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ad48b9a6a1b6d118b0a6ac59.woff')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_98bfb37d4fee76658f7b48c3.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ef8f58bcac2bfad500e09ffe.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_872111c88c8b97ccbbe72dd9.woff')format("woff");}.ffb{font-family:ffb;line-height:1.041992;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_1c34960380199fe45a48b60b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-7.200000px;}
.v1{vertical-align:-5.760000px;}
.v3{vertical-align:-4.320000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v4{vertical-align:4.320000px;}
.v2{vertical-align:6.480000px;}
.ls9{letter-spacing:-0.450000px;}
.ls15{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.180000px;}
.ls16{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.014400px;}
.ls11{letter-spacing:0.090000px;}
.lse{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.129600px;}
.ls17{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.270000px;}
.ls0{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.990000px;}
.lsf{letter-spacing:2.160000px;}
.lsa{letter-spacing:3.600000px;}
.lsc{letter-spacing:10.080000px;}
.ls10{letter-spacing:13.080000px;}
.ls14{letter-spacing:54.120000px;}
.ls3{letter-spacing:72.269280px;}
.ls7{letter-spacing:74.557920px;}
.ls13{letter-spacing:90.120000px;}
.ls6{letter-spacing:101.917920px;}
.ls4{letter-spacing:108.840000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-72.000000px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.640000px;}
.ws8{word-spacing:-17.568000px;}
.ws4{word-spacing:-17.550000px;}
.ws5{word-spacing:-17.460000px;}
.ws3{word-spacing:-17.370000px;}
.ws7{word-spacing:-17.190000px;}
.ws1{word-spacing:0.000000px;}
._1d{margin-left:-13.680000px;}
._5{margin-left:-11.933280px;}
._32{margin-left:-10.320000px;}
._1c{margin-left:-9.162000px;}
._2{margin-left:-7.992000px;}
._6{margin-left:-6.688560px;}
._0{margin-left:-4.968000px;}
._12{margin-left:-3.816000px;}
._1{margin-left:-2.736000px;}
._4{margin-left:-1.608000px;}
._3{width:1.680000px;}
._1a{width:2.736000px;}
._7{width:3.744000px;}
._f{width:5.184000px;}
._d{width:6.768000px;}
._e{width:7.872000px;}
._13{width:9.648000px;}
._10{width:10.944000px;}
._c{width:12.168000px;}
._11{width:13.200000px;}
._19{width:14.208000px;}
._a{width:15.264000px;}
._b{width:16.344000px;}
._15{width:19.632000px;}
._8{width:21.168000px;}
._9{width:22.200000px;}
._14{width:23.784000px;}
._1b{width:25.560000px;}
._16{width:26.640000px;}
._18{width:27.696000px;}
._17{width:28.800000px;}
._2a{width:29.808000px;}
._20{width:30.960000px;}
._21{width:31.968000px;}
._22{width:33.120000px;}
._25{width:35.136000px;}
._26{width:36.432000px;}
._27{width:38.304000px;}
._1e{width:40.464000px;}
._1f{width:41.832000px;}
._2b{width:43.560000px;}
._2c{width:45.378000px;}
._2f{width:47.448000px;}
._29{width:63.288000px;}
._28{width:64.728000px;}
._23{width:68.688000px;}
._24{width:69.840000px;}
._30{width:113.976000px;}
._31{width:115.320000px;}
._2e{width:127.116000px;}
._2d{width:129.408000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(15,36,62);}
.fc1{color:rgb(148,54,52);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(0,176,80);}
.fs2{font-size:48.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs4{font-size:90.000000px;}
.fs5{font-size:94.867381px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:58.320000px;}
.y3{bottom:78.660000px;}
.y110{bottom:112.860000px;}
.yc6{bottom:121.140000px;}
.y102{bottom:125.820000px;}
.yef{bottom:134.820000px;}
.y97{bottom:135.540000px;}
.y7e{bottom:137.520000px;}
.yb0{bottom:142.416000px;}
.y3c{bottom:142.956000px;}
.y10f{bottom:143.856000px;}
.yc5{bottom:152.130000px;}
.y101{bottom:156.990000px;}
.y4b{bottom:163.110000px;}
.y7d{bottom:163.650000px;}
.yee{bottom:165.990000px;}
.yd4{bottom:166.350000px;}
.y65{bottom:167.250000px;}
.y1f{bottom:170.490000px;}
.yaf{bottom:173.550000px;}
.y3b{bottom:174.090000px;}
.y96{bottom:174.630000px;}
.y10e{bottom:174.990000px;}
.yc4{bottom:183.270000px;}
.y100{bottom:187.950000px;}
.yed{bottom:196.950000px;}
.yd3{bottom:197.490000px;}
.y64{bottom:198.390000px;}
.y1e{bottom:201.630000px;}
.y3a{bottom:205.050000px;}
.y10d{bottom:205.950000px;}
.y4a{bottom:215.130000px;}
.y7c{bottom:217.470000px;}
.y95{bottom:218.550000px;}
.yff{bottom:219.090000px;}
.yae{bottom:225.570000px;}
.yec{bottom:228.090000px;}
.yd2{bottom:228.450000px;}
.y63{bottom:229.350000px;}
.y1d{bottom:232.590000px;}
.yc3{bottom:234.930000px;}
.y39{bottom:236.190000px;}
.y10c{bottom:246.090000px;}
.y49{bottom:246.270000px;}
.yad{bottom:256.530000px;}
.yfe{bottom:259.050000px;}
.yd1{bottom:259.590000px;}
.y38{bottom:267.150000px;}
.yeb{bottom:268.050000px;}
.y7b{bottom:269.850000px;}
.y94{bottom:270.390000px;}
.y10b{bottom:277.050000px;}
.y1c{bottom:284.250000px;}
.y62{bottom:284.610000px;}
.yc2{bottom:287.310000px;}
.yac{bottom:287.670000px;}
.yfd{bottom:290.190000px;}
.yd0{bottom:290.550000px;}
.y37{bottom:298.290000px;}
.yea{bottom:299.190000px;}
.y7a{bottom:300.810000px;}
.y93{bottom:301.530000px;}
.y10a{bottom:308.190000px;}
.yc1{bottom:318.270000px;}
.yab{bottom:318.630000px;}
.yfc{bottom:321.150000px;}
.y36{bottom:329.250000px;}
.ye9{bottom:330.150000px;}
.ycf{bottom:330.690000px;}
.y79{bottom:331.950000px;}
.y1b{bottom:336.630000px;}
.y61{bottom:336.990000px;}
.y109{bottom:339.150000px;}
.yc0{bottom:349.410000px;}
.yfb{bottom:352.290000px;}
.y92{bottom:359.310000px;}
.y35{bottom:360.390000px;}
.y112{bottom:361.290000px;}
.yce{bottom:361.650000px;}
.y1a{bottom:367.770000px;}
.y60{bottom:368.130000px;}
.yaa{bottom:370.290000px;}
.y108{bottom:379.290000px;}
.ybf{bottom:380.370000px;}
.y78{bottom:383.970000px;}
.y34{bottom:391.395000px;}
.yfa{bottom:392.295000px;}
.ycd{bottom:392.835000px;}
.y91{bottom:398.235000px;}
.y19{bottom:398.775000px;}
.y5f{bottom:399.135000px;}
.ye8{bottom:401.295000px;}
.y107{bottom:410.295000px;}
.ybe{bottom:411.555000px;}
.y77{bottom:415.155000px;}
.y33{bottom:422.535000px;}
.ya9{bottom:422.715000px;}
.yf9{bottom:423.435000px;}
.y18{bottom:429.915000px;}
.y5e{bottom:430.275000px;}
.ye7{bottom:432.435000px;}
.ycc{bottom:432.795000px;}
.y106{bottom:441.435000px;}
.y90{bottom:442.155000px;}
.y76{bottom:446.115000px;}
.y32{bottom:453.495000px;}
.ya8{bottom:453.855000px;}
.yf8{bottom:454.395000px;}
.y17{bottom:460.875000px;}
.ybd{bottom:463.215000px;}
.ye6{bottom:463.395000px;}
.ycb{bottom:463.935000px;}
.y105{bottom:472.395000px;}
.y48{bottom:474.195000px;}
.y75{bottom:477.075000px;}
.y31{bottom:484.635000px;}
.ya7{bottom:484.815000px;}
.y5d{bottom:485.535000px;}
.y16{bottom:492.015000px;}
.y8f{bottom:494.175000px;}
.y111{bottom:494.535000px;}
.yca{bottom:494.895000px;}
.ye5{bottom:503.535000px;}
.y74{bottom:508.215000px;}
.y30{bottom:515.595000px;}
.ya6{bottom:515.955000px;}
.y15{bottom:522.975000px;}
.y8e{bottom:525.135000px;}
.yf7{bottom:525.495000px;}
.y47{bottom:526.575000px;}
.ye4{bottom:534.495000px;}
.yc9{bottom:536.475000px;}
.y5c{bottom:537.915000px;}
.y104{bottom:543.495000px;}
.y2f{bottom:546.735000px;}
.ya5{bottom:546.915000px;}
.y8d{bottom:556.095000px;}
.yf6{bottom:556.635000px;}
.y46{bottom:557.715000px;}
.y73{bottom:561.135000px;}
.ye3{bottom:565.635000px;}
.y5b{bottom:568.875000px;}
.y14{bottom:574.635000px;}
.ybc{bottom:577.695000px;}
.ya4{bottom:578.055000px;}
.y45{bottom:588.675000px;}
.yf5{bottom:596.595000px;}
.y2e{bottom:598.755000px;}
.y5a{bottom:600.015000px;}
.ye2{bottom:605.595000px;}
.ybb{bottom:608.835000px;}
.ya3{bottom:609.015000px;}
.y72{bottom:613.515000px;}
.y8c{bottom:613.875000px;}
.yc8{bottom:619.815000px;}
.y13{bottom:627.195000px;}
.yf4{bottom:627.735000px;}
.y59{bottom:630.975000px;}
.ye1{bottom:636.735000px;}
.y44{bottom:640.365000px;}
.y71{bottom:644.685000px;}
.y2d{bottom:650.805000px;}
.y8b{bottom:652.965000px;}
.yf3{bottom:658.725000px;}
.yba{bottom:660.525000px;}
.ya2{bottom:660.885000px;}
.y58{bottom:665.745000px;}
.ye0{bottom:667.725000px;}
.y12{bottom:670.245000px;}
.y70{bottom:675.645000px;}
.y2c{bottom:681.945000px;}
.y43{bottom:692.745000px;}
.y57{bottom:696.705000px;}
.y8a{bottom:696.885000px;}
.ydf{bottom:698.865000px;}
.y11{bottom:701.205000px;}
.y6f{bottom:706.785000px;}
.y103{bottom:707.865000px;}
.y2b{bottom:712.905000px;}
.ya1{bottom:713.265000px;}
.y42{bottom:723.885000px;}
.y56{bottom:727.845000px;}
.yf2{bottom:729.825000px;}
.y10{bottom:732.345000px;}
.yde{bottom:738.825000px;}
.yb9{bottom:743.865000px;}
.ya0{bottom:744.225000px;}
.y89{bottom:748.725000px;}
.y41{bottom:754.845000px;}
.y55{bottom:758.805000px;}
.y6e{bottom:759.705000px;}
.yf{bottom:763.305000px;}
.y2a{bottom:764.925000px;}
.ydd{bottom:769.965000px;}
.yb8{bottom:775.005000px;}
.y9f{bottom:775.365000px;}
.y88{bottom:779.865000px;}
.y40{bottom:785.985000px;}
.ye{bottom:794.445000px;}
.ydc{bottom:800.925000px;}
.yb7{bottom:805.965000px;}
.y9e{bottom:806.325000px;}
.y114{bottom:809.925000px;}
.y6d{bottom:812.085000px;}
.y54{bottom:814.065000px;}
.y29{bottom:816.945000px;}
.yd{bottom:825.405000px;}
.yc7{bottom:826.665000px;}
.yf1{bottom:832.065000px;}
.yb6{bottom:837.105000px;}
.y87{bottom:837.645000px;}
.ydb{bottom:841.065000px;}
.y6c{bottom:843.225000px;}
.y28{bottom:848.085000px;}
.y9d{bottom:858.345000px;}
.y53{bottom:866.445000px;}
.yc{bottom:868.425000px;}
.yda{bottom:872.025000px;}
.y6b{bottom:874.365000px;}
.y86{bottom:876.525000px;}
.y27{bottom:879.045000px;}
.yb5{bottom:888.765000px;}
.y9c{bottom:889.530000px;}
.y52{bottom:897.630000px;}
.yb{bottom:899.610000px;}
.yd9{bottom:903.210000px;}
.y26{bottom:910.230000px;}
.y113{bottom:912.210000px;}
.y9b{bottom:920.490000px;}
.y85{bottom:920.670000px;}
.y6a{bottom:927.330000px;}
.y51{bottom:928.590000px;}
.yd8{bottom:934.170000px;}
.yb4{bottom:941.190000px;}
.ya{bottom:942.270000px;}
.yf0{bottom:943.170000px;}
.y9a{bottom:951.630000px;}
.y50{bottom:960.990000px;}
.y25{bottom:962.250000px;}
.yb3{bottom:972.330000px;}
.y84{bottom:972.510000px;}
.yd7{bottom:974.310000px;}
.y69{bottom:979.710000px;}
.y9{bottom:981.510000px;}
.y99{bottom:982.590000px;}
.y4f{bottom:991.950000px;}
.y24{bottom:993.210000px;}
.yb2{bottom:1003.290000px;}
.y83{bottom:1003.470000px;}
.yd6{bottom:1005.270000px;}
.y68{bottom:1010.670000px;}
.y3f{bottom:1014.270000px;}
.y8{bottom:1023.090000px;}
.y23{bottom:1024.350000px;}
.y98{bottom:1024.530000px;}
.y82{bottom:1034.610000px;}
.yd5{bottom:1036.410000px;}
.y67{bottom:1041.810000px;}
.y3e{bottom:1045.410000px;}
.y7{bottom:1046.850000px;}
.y4e{bottom:1054.050000px;}
.yb1{bottom:1054.950000px;}
.y22{bottom:1055.310000px;}
.y81{bottom:1065.570000px;}
.y66{bottom:1072.770000px;}
.y3d{bottom:1076.370000px;}
.y4d{bottom:1085.190000px;}
.y6{bottom:1086.990000px;}
.y21{bottom:1107.510000px;}
.y80{bottom:1110.390000px;}
.y5{bottom:1126.950000px;}
.y7f{bottom:1136.310000px;}
.y4c{bottom:1138.110000px;}
.y20{bottom:1138.500000px;}
.y2{bottom:1171.980000px;}
.y1{bottom:1192.320000px;}
.h8{height:52.066406px;}
.h7{height:54.878906px;}
.hc{height:64.850749px;}
.hb{height:65.917969px;}
.h4{height:70.664062px;}
.h3{height:71.824219px;}
.h2{height:72.562500px;}
.h9{height:74.004654px;}
.ha{height:83.625259px;}
.h5{height:84.837305px;}
.h6{height:121.179375px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:106.956000px;}
.x1{left:108.036000px;}
.x2{left:110.376000px;}
.x9{left:111.456000px;}
.xb{left:121.536000px;}
.xd{left:128.376000px;}
.x5{left:132.696000px;}
.xa{left:138.456000px;}
.x3{left:139.716000px;}
.xc{left:162.030000px;}
.x20{left:163.110000px;}
.x4{left:289.290000px;}
.x1b{left:300.495000px;}
.x14{left:311.835000px;}
.x19{left:313.095000px;}
.x1e{left:314.355000px;}
.x18{left:320.655000px;}
.x10{left:321.915000px;}
.x1c{left:328.215000px;}
.xe{left:333.435000px;}
.x6{left:334.695000px;}
.x12{left:335.955000px;}
.x17{left:339.015000px;}
.x7{left:445.935000px;}
.x13{left:557.025000px;}
.xf{left:559.545000px;}
.x1d{left:564.765000px;}
.x11{left:571.065000px;}
.x1f{left:578.625000px;}
.x1a{left:580.065000px;}
.x15{left:581.145000px;}
.x16{left:714.570000px;}
@media print{
.v7{vertical-align:-6.400000pt;}
.v1{vertical-align:-5.120000pt;}
.v3{vertical-align:-3.840000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v4{vertical-align:3.840000pt;}
.v2{vertical-align:5.760000pt;}
.ls9{letter-spacing:-0.400000pt;}
.ls15{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.012800pt;}
.ls11{letter-spacing:0.080000pt;}
.lse{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.115200pt;}
.ls17{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.240000pt;}
.ls0{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.880000pt;}
.lsf{letter-spacing:1.920000pt;}
.lsa{letter-spacing:3.200000pt;}
.lsc{letter-spacing:8.960000pt;}
.ls10{letter-spacing:11.626667pt;}
.ls14{letter-spacing:48.106667pt;}
.ls3{letter-spacing:64.239360pt;}
.ls7{letter-spacing:66.273707pt;}
.ls13{letter-spacing:80.106667pt;}
.ls6{letter-spacing:90.593707pt;}
.ls4{letter-spacing:96.746667pt;}
.ws2{word-spacing:-64.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.680000pt;}
.ws8{word-spacing:-15.616000pt;}
.ws4{word-spacing:-15.600000pt;}
.ws5{word-spacing:-15.520000pt;}
.ws3{word-spacing:-15.440000pt;}
.ws7{word-spacing:-15.280000pt;}
.ws1{word-spacing:0.000000pt;}
._1d{margin-left:-12.160000pt;}
._5{margin-left:-10.607360pt;}
._32{margin-left:-9.173333pt;}
._1c{margin-left:-8.144000pt;}
._2{margin-left:-7.104000pt;}
._6{margin-left:-5.945387pt;}
._0{margin-left:-4.416000pt;}
._12{margin-left:-3.392000pt;}
._1{margin-left:-2.432000pt;}
._4{margin-left:-1.429333pt;}
._3{width:1.493333pt;}
._1a{width:2.432000pt;}
._7{width:3.328000pt;}
._f{width:4.608000pt;}
._d{width:6.016000pt;}
._e{width:6.997333pt;}
._13{width:8.576000pt;}
._10{width:9.728000pt;}
._c{width:10.816000pt;}
._11{width:11.733333pt;}
._19{width:12.629333pt;}
._a{width:13.568000pt;}
._b{width:14.528000pt;}
._15{width:17.450667pt;}
._8{width:18.816000pt;}
._9{width:19.733333pt;}
._14{width:21.141333pt;}
._1b{width:22.720000pt;}
._16{width:23.680000pt;}
._18{width:24.618667pt;}
._17{width:25.600000pt;}
._2a{width:26.496000pt;}
._20{width:27.520000pt;}
._21{width:28.416000pt;}
._22{width:29.440000pt;}
._25{width:31.232000pt;}
._26{width:32.384000pt;}
._27{width:34.048000pt;}
._1e{width:35.968000pt;}
._1f{width:37.184000pt;}
._2b{width:38.720000pt;}
._2c{width:40.336000pt;}
._2f{width:42.176000pt;}
._29{width:56.256000pt;}
._28{width:57.536000pt;}
._23{width:61.056000pt;}
._24{width:62.080000pt;}
._30{width:101.312000pt;}
._31{width:102.506667pt;}
._2e{width:112.992000pt;}
._2d{width:115.029333pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs4{font-size:80.000000pt;}
.fs5{font-size:84.326561pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.840000pt;}
.y3{bottom:69.920000pt;}
.y110{bottom:100.320000pt;}
.yc6{bottom:107.680000pt;}
.y102{bottom:111.840000pt;}
.yef{bottom:119.840000pt;}
.y97{bottom:120.480000pt;}
.y7e{bottom:122.240000pt;}
.yb0{bottom:126.592000pt;}
.y3c{bottom:127.072000pt;}
.y10f{bottom:127.872000pt;}
.yc5{bottom:135.226667pt;}
.y101{bottom:139.546667pt;}
.y4b{bottom:144.986667pt;}
.y7d{bottom:145.466667pt;}
.yee{bottom:147.546667pt;}
.yd4{bottom:147.866667pt;}
.y65{bottom:148.666667pt;}
.y1f{bottom:151.546667pt;}
.yaf{bottom:154.266667pt;}
.y3b{bottom:154.746667pt;}
.y96{bottom:155.226667pt;}
.y10e{bottom:155.546667pt;}
.yc4{bottom:162.906667pt;}
.y100{bottom:167.066667pt;}
.yed{bottom:175.066667pt;}
.yd3{bottom:175.546667pt;}
.y64{bottom:176.346667pt;}
.y1e{bottom:179.226667pt;}
.y3a{bottom:182.266667pt;}
.y10d{bottom:183.066667pt;}
.y4a{bottom:191.226667pt;}
.y7c{bottom:193.306667pt;}
.y95{bottom:194.266667pt;}
.yff{bottom:194.746667pt;}
.yae{bottom:200.506667pt;}
.yec{bottom:202.746667pt;}
.yd2{bottom:203.066667pt;}
.y63{bottom:203.866667pt;}
.y1d{bottom:206.746667pt;}
.yc3{bottom:208.826667pt;}
.y39{bottom:209.946667pt;}
.y10c{bottom:218.746667pt;}
.y49{bottom:218.906667pt;}
.yad{bottom:228.026667pt;}
.yfe{bottom:230.266667pt;}
.yd1{bottom:230.746667pt;}
.y38{bottom:237.466667pt;}
.yeb{bottom:238.266667pt;}
.y7b{bottom:239.866667pt;}
.y94{bottom:240.346667pt;}
.y10b{bottom:246.266667pt;}
.y1c{bottom:252.666667pt;}
.y62{bottom:252.986667pt;}
.yc2{bottom:255.386667pt;}
.yac{bottom:255.706667pt;}
.yfd{bottom:257.946667pt;}
.yd0{bottom:258.266667pt;}
.y37{bottom:265.146667pt;}
.yea{bottom:265.946667pt;}
.y7a{bottom:267.386667pt;}
.y93{bottom:268.026667pt;}
.y10a{bottom:273.946667pt;}
.yc1{bottom:282.906667pt;}
.yab{bottom:283.226667pt;}
.yfc{bottom:285.466667pt;}
.y36{bottom:292.666667pt;}
.ye9{bottom:293.466667pt;}
.ycf{bottom:293.946667pt;}
.y79{bottom:295.066667pt;}
.y1b{bottom:299.226667pt;}
.y61{bottom:299.546667pt;}
.y109{bottom:301.466667pt;}
.yc0{bottom:310.586667pt;}
.yfb{bottom:313.146667pt;}
.y92{bottom:319.386667pt;}
.y35{bottom:320.346667pt;}
.y112{bottom:321.146667pt;}
.yce{bottom:321.466667pt;}
.y1a{bottom:326.906667pt;}
.y60{bottom:327.226667pt;}
.yaa{bottom:329.146667pt;}
.y108{bottom:337.146667pt;}
.ybf{bottom:338.106667pt;}
.y78{bottom:341.306667pt;}
.y34{bottom:347.906667pt;}
.yfa{bottom:348.706667pt;}
.ycd{bottom:349.186667pt;}
.y91{bottom:353.986667pt;}
.y19{bottom:354.466667pt;}
.y5f{bottom:354.786667pt;}
.ye8{bottom:356.706667pt;}
.y107{bottom:364.706667pt;}
.ybe{bottom:365.826667pt;}
.y77{bottom:369.026667pt;}
.y33{bottom:375.586667pt;}
.ya9{bottom:375.746667pt;}
.yf9{bottom:376.386667pt;}
.y18{bottom:382.146667pt;}
.y5e{bottom:382.466667pt;}
.ye7{bottom:384.386667pt;}
.ycc{bottom:384.706667pt;}
.y106{bottom:392.386667pt;}
.y90{bottom:393.026667pt;}
.y76{bottom:396.546667pt;}
.y32{bottom:403.106667pt;}
.ya8{bottom:403.426667pt;}
.yf8{bottom:403.906667pt;}
.y17{bottom:409.666667pt;}
.ybd{bottom:411.746667pt;}
.ye6{bottom:411.906667pt;}
.ycb{bottom:412.386667pt;}
.y105{bottom:419.906667pt;}
.y48{bottom:421.506667pt;}
.y75{bottom:424.066667pt;}
.y31{bottom:430.786667pt;}
.ya7{bottom:430.946667pt;}
.y5d{bottom:431.586667pt;}
.y16{bottom:437.346667pt;}
.y8f{bottom:439.266667pt;}
.y111{bottom:439.586667pt;}
.yca{bottom:439.906667pt;}
.ye5{bottom:447.586667pt;}
.y74{bottom:451.746667pt;}
.y30{bottom:458.306667pt;}
.ya6{bottom:458.626667pt;}
.y15{bottom:464.866667pt;}
.y8e{bottom:466.786667pt;}
.yf7{bottom:467.106667pt;}
.y47{bottom:468.066667pt;}
.ye4{bottom:475.106667pt;}
.yc9{bottom:476.866667pt;}
.y5c{bottom:478.146667pt;}
.y104{bottom:483.106667pt;}
.y2f{bottom:485.986667pt;}
.ya5{bottom:486.146667pt;}
.y8d{bottom:494.306667pt;}
.yf6{bottom:494.786667pt;}
.y46{bottom:495.746667pt;}
.y73{bottom:498.786667pt;}
.ye3{bottom:502.786667pt;}
.y5b{bottom:505.666667pt;}
.y14{bottom:510.786667pt;}
.ybc{bottom:513.506667pt;}
.ya4{bottom:513.826667pt;}
.y45{bottom:523.266667pt;}
.yf5{bottom:530.306667pt;}
.y2e{bottom:532.226667pt;}
.y5a{bottom:533.346667pt;}
.ye2{bottom:538.306667pt;}
.ybb{bottom:541.186667pt;}
.ya3{bottom:541.346667pt;}
.y72{bottom:545.346667pt;}
.y8c{bottom:545.666667pt;}
.yc8{bottom:550.946667pt;}
.y13{bottom:557.506667pt;}
.yf4{bottom:557.986667pt;}
.y59{bottom:560.866667pt;}
.ye1{bottom:565.986667pt;}
.y44{bottom:569.213333pt;}
.y71{bottom:573.053333pt;}
.y2d{bottom:578.493333pt;}
.y8b{bottom:580.413333pt;}
.yf3{bottom:585.533333pt;}
.yba{bottom:587.133333pt;}
.ya2{bottom:587.453333pt;}
.y58{bottom:591.773333pt;}
.ye0{bottom:593.533333pt;}
.y12{bottom:595.773333pt;}
.y70{bottom:600.573333pt;}
.y2c{bottom:606.173333pt;}
.y43{bottom:615.773333pt;}
.y57{bottom:619.293333pt;}
.y8a{bottom:619.453333pt;}
.ydf{bottom:621.213333pt;}
.y11{bottom:623.293333pt;}
.y6f{bottom:628.253333pt;}
.y103{bottom:629.213333pt;}
.y2b{bottom:633.693333pt;}
.ya1{bottom:634.013333pt;}
.y42{bottom:643.453333pt;}
.y56{bottom:646.973333pt;}
.yf2{bottom:648.733333pt;}
.y10{bottom:650.973333pt;}
.yde{bottom:656.733333pt;}
.yb9{bottom:661.213333pt;}
.ya0{bottom:661.533333pt;}
.y89{bottom:665.533333pt;}
.y41{bottom:670.973333pt;}
.y55{bottom:674.493333pt;}
.y6e{bottom:675.293333pt;}
.yf{bottom:678.493333pt;}
.y2a{bottom:679.933333pt;}
.ydd{bottom:684.413333pt;}
.yb8{bottom:688.893333pt;}
.y9f{bottom:689.213333pt;}
.y88{bottom:693.213333pt;}
.y40{bottom:698.653333pt;}
.ye{bottom:706.173333pt;}
.ydc{bottom:711.933333pt;}
.yb7{bottom:716.413333pt;}
.y9e{bottom:716.733333pt;}
.y114{bottom:719.933333pt;}
.y6d{bottom:721.853333pt;}
.y54{bottom:723.613333pt;}
.y29{bottom:726.173333pt;}
.yd{bottom:733.693333pt;}
.yc7{bottom:734.813333pt;}
.yf1{bottom:739.613333pt;}
.yb6{bottom:744.093333pt;}
.y87{bottom:744.573333pt;}
.ydb{bottom:747.613333pt;}
.y6c{bottom:749.533333pt;}
.y28{bottom:753.853333pt;}
.y9d{bottom:762.973333pt;}
.y53{bottom:770.173333pt;}
.yc{bottom:771.933333pt;}
.yda{bottom:775.133333pt;}
.y6b{bottom:777.213333pt;}
.y86{bottom:779.133333pt;}
.y27{bottom:781.373333pt;}
.yb5{bottom:790.013333pt;}
.y9c{bottom:790.693333pt;}
.y52{bottom:797.893333pt;}
.yb{bottom:799.653333pt;}
.yd9{bottom:802.853333pt;}
.y26{bottom:809.093333pt;}
.y113{bottom:810.853333pt;}
.y9b{bottom:818.213333pt;}
.y85{bottom:818.373333pt;}
.y6a{bottom:824.293333pt;}
.y51{bottom:825.413333pt;}
.yd8{bottom:830.373333pt;}
.yb4{bottom:836.613333pt;}
.ya{bottom:837.573333pt;}
.yf0{bottom:838.373333pt;}
.y9a{bottom:845.893333pt;}
.y50{bottom:854.213333pt;}
.y25{bottom:855.333333pt;}
.yb3{bottom:864.293333pt;}
.y84{bottom:864.453333pt;}
.yd7{bottom:866.053333pt;}
.y69{bottom:870.853333pt;}
.y9{bottom:872.453333pt;}
.y99{bottom:873.413333pt;}
.y4f{bottom:881.733333pt;}
.y24{bottom:882.853333pt;}
.yb2{bottom:891.813333pt;}
.y83{bottom:891.973333pt;}
.yd6{bottom:893.573333pt;}
.y68{bottom:898.373333pt;}
.y3f{bottom:901.573333pt;}
.y8{bottom:909.413333pt;}
.y23{bottom:910.533333pt;}
.y98{bottom:910.693333pt;}
.y82{bottom:919.653333pt;}
.yd5{bottom:921.253333pt;}
.y67{bottom:926.053333pt;}
.y3e{bottom:929.253333pt;}
.y7{bottom:930.533333pt;}
.y4e{bottom:936.933333pt;}
.yb1{bottom:937.733333pt;}
.y22{bottom:938.053333pt;}
.y81{bottom:947.173333pt;}
.y66{bottom:953.573333pt;}
.y3d{bottom:956.773333pt;}
.y4d{bottom:964.613333pt;}
.y6{bottom:966.213333pt;}
.y21{bottom:984.453333pt;}
.y80{bottom:987.013333pt;}
.y5{bottom:1001.733333pt;}
.y7f{bottom:1010.053333pt;}
.y4c{bottom:1011.653333pt;}
.y20{bottom:1012.000000pt;}
.y2{bottom:1041.760000pt;}
.y1{bottom:1059.840000pt;}
.h8{height:46.281250pt;}
.h7{height:48.781250pt;}
.hc{height:57.645110pt;}
.hb{height:58.593750pt;}
.h4{height:62.812500pt;}
.h3{height:63.843750pt;}
.h2{height:64.500000pt;}
.h9{height:65.781915pt;}
.ha{height:74.333564pt;}
.h5{height:75.410937pt;}
.h6{height:107.715000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:95.072000pt;}
.x1{left:96.032000pt;}
.x2{left:98.112000pt;}
.x9{left:99.072000pt;}
.xb{left:108.032000pt;}
.xd{left:114.112000pt;}
.x5{left:117.952000pt;}
.xa{left:123.072000pt;}
.x3{left:124.192000pt;}
.xc{left:144.026667pt;}
.x20{left:144.986667pt;}
.x4{left:257.146667pt;}
.x1b{left:267.106667pt;}
.x14{left:277.186667pt;}
.x19{left:278.306667pt;}
.x1e{left:279.426667pt;}
.x18{left:285.026667pt;}
.x10{left:286.146667pt;}
.x1c{left:291.746667pt;}
.xe{left:296.386667pt;}
.x6{left:297.506667pt;}
.x12{left:298.626667pt;}
.x17{left:301.346667pt;}
.x7{left:396.386667pt;}
.x13{left:495.133333pt;}
.xf{left:497.373333pt;}
.x1d{left:502.013333pt;}
.x11{left:507.613333pt;}
.x1f{left:514.333333pt;}
.x1a{left:515.613333pt;}
.x15{left:516.573333pt;}
.x16{left:635.173333pt;}
}




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