
    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_fc2463c18850a5ac79e9a384.woff')format("woff");}.ff1{font-family:ff1;line-height:1.143111;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_6d41989fbc4c68865d4db5db.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_e8dff3efdb7c0265f7880eb6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.166504;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_dcafbe6d10596791bb714a6d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_36633477d7089af9962ff635.woff')format("woff");}.ff5{font-family:ff5;line-height:1.055111;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_1b3366a839b82e991a1ef63f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026667;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_656cfdd35e74923fc2a9a615.woff')format("woff");}.ff7{font-family:ff7;line-height:1.125778;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_6c1e7c540ed569b556fd0883.woff')format("woff");}.ff8{font-family:ff8;line-height:1.108889;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_7074c62f386b5673fcac624f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.108889;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_43e8cdfb2432451fc2586a58.woff')format("woff");}.ffa{font-family:ffa;line-height:1.152889;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_831fe803d29524759af24786.woff')format("woff");}.ffb{font-family:ffb;line-height:1.125778;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_fe24be96db1f0ef0cc4b4917.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_54f5e880d99b5704f9049222.woff')format("woff");}.ffd{font-family:ffd;line-height:0.960449;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_600dd082b6f9c08232054e13.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9f423757a365ebb7aee6c981.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_105f7d0d521dcde7fc5e952c.woff')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v3{vertical-align:-61.920000px;}
.v1{vertical-align:-23.760000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v2{vertical-align:23.760000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls1b{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.374400px;}
.ls11{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.322800px;}
.ls5{letter-spacing:-0.298200px;}
.lsd{letter-spacing:-0.247200px;}
.ls17{letter-spacing:-0.227400px;}
.ls12{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000001px;}
.ls15{letter-spacing:0.022320px;}
.ls0{letter-spacing:0.043200px;}
.ls19{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.083400px;}
.lsc{letter-spacing:0.112200px;}
.ls9{letter-spacing:0.136800px;}
.ls13{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.166800px;}
.lse{letter-spacing:0.211800px;}
.ls4{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.222480px;}
.ls18{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.322800px;}
.lsf{letter-spacing:0.357000px;}
.ls2{letter-spacing:0.360000px;}
.ls14{letter-spacing:199.584000px;}
.ls1{letter-spacing:837.900000px;}
.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;}
}
.wsb{word-spacing:-18.000000px;}
.ws12{word-spacing:-16.776000px;}
.ws15{word-spacing:-16.704000px;}
.ws0{word-spacing:-16.632000px;}
.wse{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.488000px;}
.wsf{word-spacing:-16.416000px;}
.wsd{word-spacing:-16.272000px;}
.ws16{word-spacing:-15.984000px;}
.ws14{word-spacing:-15.840000px;}
.wsa{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.982280px;}
.ws7{word-spacing:-13.837080px;}
.ws5{word-spacing:-13.737480px;}
.ws4{word-spacing:-13.708680px;}
.ws6{word-spacing:-13.625280px;}
.ws1{word-spacing:-13.505760px;}
.ws9{word-spacing:-13.250880px;}
.ws18{word-spacing:-12.312000px;}
.ws17{word-spacing:-12.294000px;}
.ws2{word-spacing:-12.060000px;}
.ws10{word-spacing:-10.998720px;}
.ws3{word-spacing:-10.440000px;}
.ws11{word-spacing:-0.072000px;}
.wsc{word-spacing:0.000000px;}
._10{margin-left:-4.735680px;}
._b{margin-left:-3.695040px;}
._a{margin-left:-2.580480px;}
._1{margin-left:-1.224000px;}
._0{width:1.260000px;}
._2{width:2.325600px;}
._4{width:3.679920px;}
._3{width:4.942800px;}
._e{width:5.976000px;}
._7{width:7.220880px;}
._6{width:8.306640px;}
._c{width:9.576000px;}
._5{width:11.295120px;}
._9{width:12.423600px;}
._d{width:13.752000px;}
._f{width:14.832000px;}
._14{width:17.868960px;}
._11{width:19.139040px;}
._8{width:20.606160px;}
._12{width:21.745200px;}
._16{width:23.976000px;}
._17{width:25.056000px;}
._13{width:30.312000px;}
._15{width:33.768000px;}
.fc4{color:rgb(0,102,0);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(192,0,0);}
.fc1{color:rgb(0,51,0);}
.fc2{color:rgb(0,91,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.fs6{font-size:162.000000px;}
.y40{bottom:-9.000000px;}
.y0{bottom:0.000000px;}
.yc6{bottom:3.240000px;}
.yd2{bottom:3.420000px;}
.y12{bottom:3.600000px;}
.y3{bottom:4.320000px;}
.y72{bottom:4.500000px;}
.yc9{bottom:5.400000px;}
.ycd{bottom:6.840000px;}
.y3f{bottom:12.600000px;}
.yc5{bottom:20.160000px;}
.yd1{bottom:20.340000px;}
.y2e{bottom:22.320000px;}
.y17{bottom:22.350000px;}
.y29{bottom:22.365000px;}
.ycc{bottom:23.760000px;}
.y2{bottom:25.020000px;}
.y76{bottom:26.820000px;}
.y2f{bottom:30.105000px;}
.y3e{bottom:32.580000px;}
.yd0{bottom:37.080000px;}
.yc8{bottom:39.240000px;}
.ycb{bottom:40.680000px;}
.y2d{bottom:41.040000px;}
.y16{bottom:41.070000px;}
.y28{bottom:41.265000px;}
.ycf{bottom:54.000000px;}
.y27{bottom:58.365000px;}
.y2c{bottom:59.760000px;}
.y15{bottom:59.970000px;}
.y3a{bottom:60.120000px;}
.y3d{bottom:65.340000px;}
.y95{bottom:68.760000px;}
.y6f{bottom:70.920000px;}
.ya8{bottom:71.820000px;}
.yc2{bottom:72.720000px;}
.y26{bottom:77.085000px;}
.y2b{bottom:78.660000px;}
.y14{bottom:78.690000px;}
.y3c{bottom:80.820000px;}
.y39{bottom:82.620000px;}
.yba{bottom:88.920000px;}
.y94{bottom:91.296000px;}
.y6e{bottom:93.456000px;}
.ya7{bottom:94.320000px;}
.yc1{bottom:95.256000px;}
.y25{bottom:95.985000px;}
.y38{bottom:105.156000px;}
.yb9{bottom:107.856000px;}
.y93{bottom:113.796000px;}
.y24{bottom:114.705000px;}
.y6d{bottom:115.956000px;}
.ya6{bottom:116.820000px;}
.y9a{bottom:117.000000px;}
.yc0{bottom:117.756000px;}
.y37{bottom:127.656000px;}
.yb8{bottom:130.356000px;}
.y23{bottom:133.425000px;}
.y92{bottom:136.296000px;}
.y6c{bottom:138.456000px;}
.ya5{bottom:139.320000px;}
.y99{bottom:139.500000px;}
.ybf{bottom:140.256000px;}
.y36{bottom:150.150000px;}
.y22{bottom:152.145000px;}
.yb7{bottom:152.850000px;}
.y91{bottom:158.790000px;}
.y6b{bottom:160.950000px;}
.ya4{bottom:161.865000px;}
.y98{bottom:162.000000px;}
.ybe{bottom:162.750000px;}
.y21{bottom:170.865000px;}
.y35{bottom:172.650000px;}
.yb6{bottom:175.350000px;}
.y90{bottom:181.290000px;}
.y6a{bottom:183.450000px;}
.ya3{bottom:184.365000px;}
.y97{bottom:184.500000px;}
.ybd{bottom:185.070000px;}
.y20{bottom:189.585000px;}
.y34{bottom:195.150000px;}
.yb5{bottom:197.850000px;}
.y8f{bottom:203.790000px;}
.y69{bottom:205.950000px;}
.y1f{bottom:208.485000px;}
.yb4{bottom:220.350000px;}
.y8e{bottom:226.290000px;}
.y1e{bottom:227.205000px;}
.y68{bottom:228.450000px;}
.y33{bottom:239.610000px;}
.yb3{bottom:242.850000px;}
.y1d{bottom:245.925000px;}
.y8d{bottom:248.790000px;}
.y67{bottom:250.950000px;}
.y32{bottom:261.930000px;}
.y1c{bottom:264.675000px;}
.yb2{bottom:265.350000px;}
.y8c{bottom:271.290000px;}
.y66{bottom:273.450000px;}
.y31{bottom:280.830000px;}
.y1b{bottom:283.395000px;}
.yb1{bottom:287.850000px;}
.y8b{bottom:293.790000px;}
.y65{bottom:295.950000px;}
.y1a{bottom:302.295000px;}
.y30{bottom:304.230000px;}
.yb0{bottom:311.250000px;}
.y8a{bottom:316.290000px;}
.y64{bottom:318.450000px;}
.y19{bottom:321.015000px;}
.y18{bottom:323.670000px;}
.y89{bottom:338.835000px;}
.y63{bottom:340.995000px;}
.y88{bottom:361.335000px;}
.y62{bottom:363.495000px;}
.y87{bottom:383.835000px;}
.y61{bottom:385.995000px;}
.y86{bottom:406.335000px;}
.y60{bottom:408.495000px;}
.y85{bottom:428.835000px;}
.y5f{bottom:430.995000px;}
.y84{bottom:451.335000px;}
.y5e{bottom:453.495000px;}
.y2a{bottom:471.495000px;}
.y83{bottom:473.835000px;}
.y5d{bottom:475.995000px;}
.y82{bottom:496.335000px;}
.y5c{bottom:498.495000px;}
.y81{bottom:518.835000px;}
.y5b{bottom:520.995000px;}
.y80{bottom:537.735000px;}
.yaf{bottom:541.335000px;}
.y5a{bottom:543.675000px;}
.y7f{bottom:560.235000px;}
.yae{bottom:563.835000px;}
.y13{bottom:565.995000px;}
.y59{bottom:566.175000px;}
.y7e{bottom:582.765000px;}
.yad{bottom:586.365000px;}
.y58{bottom:588.705000px;}
.y7d{bottom:605.265000px;}
.yac{bottom:608.865000px;}
.y57{bottom:611.205000px;}
.y7c{bottom:627.765000px;}
.yab{bottom:631.365000px;}
.y56{bottom:633.705000px;}
.y7b{bottom:650.265000px;}
.ybc{bottom:653.865000px;}
.y55{bottom:656.205000px;}
.y11{bottom:660.525000px;}
.y7a{bottom:672.765000px;}
.y54{bottom:678.705000px;}
.y10{bottom:684.105000px;}
.y79{bottom:695.265000px;}
.y53{bottom:701.205000px;}
.yf{bottom:704.625000px;}
.yaa{bottom:717.765000px;}
.y52{bottom:723.705000px;}
.yd6{bottom:726.225000px;}
.ye{bottom:731.265000px;}
.y78{bottom:740.265000px;}
.yd{bottom:746.025000px;}
.y51{bottom:746.205000px;}
.yd5{bottom:747.645000px;}
.y77{bottom:762.765000px;}
.y50{bottom:768.705000px;}
.yc{bottom:772.485000px;}
.yd4{bottom:774.285000px;}
.y75{bottom:785.265000px;}
.yb{bottom:787.245000px;}
.y4f{bottom:791.205000px;}
.yd3{bottom:796.965000px;}
.ya9{bottom:807.765000px;}
.ya{bottom:813.705000px;}
.y9{bottom:828.510000px;}
.y74{bottom:830.310000px;}
.yce{bottom:834.630000px;}
.y4e{bottom:836.250000px;}
.y73{bottom:852.810000px;}
.y8{bottom:855.150000px;}
.y4d{bottom:858.750000px;}
.y71{bottom:875.310000px;}
.ybb{bottom:876.210000px;}
.y4c{bottom:881.250000px;}
.y7{bottom:894.390000px;}
.ya2{bottom:897.990000px;}
.y70{bottom:898.710000px;}
.yca{bottom:902.130000px;}
.y4b{bottom:903.750000px;}
.y6{bottom:910.950000px;}
.ya1{bottom:920.490000px;}
.y4a{bottom:926.250000px;}
.y5{bottom:934.350000px;}
.ya0{bottom:942.990000px;}
.y49{bottom:948.750000px;}
.yc7{bottom:956.310000px;}
.y9f{bottom:965.490000px;}
.y48{bottom:971.250000px;}
.y3b{bottom:973.770000px;}
.y9e{bottom:987.990000px;}
.y47{bottom:993.750000px;}
.yc4{bottom:1009.050000px;}
.y9d{bottom:1010.490000px;}
.y46{bottom:1016.250000px;}
.y9c{bottom:1032.990000px;}
.y45{bottom:1038.750000px;}
.y9b{bottom:1055.490000px;}
.y44{bottom:1061.250000px;}
.yc3{bottom:1063.770000px;}
.y96{bottom:1078.740000px;}
.y43{bottom:1083.780000px;}
.y42{bottom:1106.280000px;}
.y4{bottom:1127.520000px;}
.y41{bottom:1128.780000px;}
.y1{bottom:1159.020000px;}
.h9{height:18.720000px;}
.h1b{height:22.500000px;}
.h1f{height:22.536000px;}
.h1c{height:22.680000px;}
.h17{height:29.678906px;}
.h24{height:33.660000px;}
.h7{height:35.152640px;}
.h6{height:40.607360px;}
.h28{height:43.512000px;}
.h25{height:44.760000px;}
.h1e{height:45.000000px;}
.h1d{height:45.036000px;}
.hc{height:48.153280px;}
.ha{height:49.534400px;}
.hf{height:49.587520px;}
.h11{height:50.437440px;}
.h27{height:52.740000px;}
.h8{height:53.875200px;}
.h29{height:54.180000px;}
.h26{height:55.503491px;}
.h14{height:58.016000px;}
.h5{height:58.560000px;}
.he{height:58.651172px;}
.h13{height:59.680000px;}
.h19{height:59.744000px;}
.h1a{height:60.679688px;}
.h1{height:60.768000px;}
.h3{height:61.189805px;}
.h2a{height:67.500000px;}
.h23{height:67.837500px;}
.h18{height:68.554688px;}
.h2{height:70.664062px;}
.h4{height:70.911360px;}
.h22{height:74.953125px;}
.h10{height:93.780000px;}
.hb{height:93.816000px;}
.h2b{height:99.687656px;}
.h15{height:118.476000px;}
.h12{height:147.096000px;}
.h16{height:158.915039px;}
.h21{height:202.530000px;}
.h20{height:202.710000px;}
.hd{height:336.135000px;}
.h0{height:1188.000000px;}
.wa{width:80.820000px;}
.w6{width:80.856000px;}
.wb{width:88.416000px;}
.w7{width:88.740000px;}
.w11{width:99.576000px;}
.we{width:101.196000px;}
.w8{width:105.120000px;}
.w9{width:105.156000px;}
.w10{width:128.160000px;}
.wc{width:128.340000px;}
.wf{width:128.376000px;}
.w17{width:140.976000px;}
.w5{width:145.080000px;}
.w16{width:149.436000px;}
.w15{width:152.850000px;}
.w14{width:155.190000px;}
.w18{width:155.340000px;}
.w19{width:155.370000px;}
.w13{width:179.460000px;}
.wd{width:189.030000px;}
.w2{width:236.190000px;}
.w3{width:541.545000px;}
.w12{width:646.350000px;}
.w4{width:674.070000px;}
.w1a{width:780.300000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x8{left:36.540000px;}
.x21{left:82.800000px;}
.x3{left:85.355986px;}
.x20{left:139.355986px;}
.x7{left:195.690000px;}
.xa{left:197.505000px;}
.x13{left:213.690000px;}
.x9{left:227.565000px;}
.xc{left:230.430000px;}
.x1c{left:240.690000px;}
.x1{left:252.929986px;}
.x18{left:264.810000px;}
.x4{left:285.014986px;}
.xd{left:311.295000px;}
.x6{left:321.555000px;}
.xb{left:337.035000px;}
.x1d{left:396.075000px;}
.xe{left:400.035000px;}
.x14{left:402.735000px;}
.x19{left:420.015000px;}
.xf{left:480.885000px;}
.x15{left:503.925000px;}
.x1e{left:551.445000px;}
.x1a{left:572.865000px;}
.x10{left:586.005000px;}
.x16{left:632.310000px;}
.x11{left:691.170000px;}
.x1f{left:706.830000px;}
.x1b{left:722.490000px;}
.x17{left:760.470000px;}
.x12{left:771.990000px;}
.x2{left:836.099986px;}
@media print{
.v3{vertical-align:-55.040000pt;}
.v1{vertical-align:-21.120000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v2{vertical-align:21.120000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls1b{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.332800pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.286933pt;}
.ls5{letter-spacing:-0.265067pt;}
.lsd{letter-spacing:-0.219733pt;}
.ls17{letter-spacing:-0.202133pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000001pt;}
.ls15{letter-spacing:0.019840pt;}
.ls0{letter-spacing:0.038400pt;}
.ls19{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.074133pt;}
.lsc{letter-spacing:0.099733pt;}
.ls9{letter-spacing:0.121600pt;}
.ls13{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.148267pt;}
.lse{letter-spacing:0.188267pt;}
.ls4{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.197760pt;}
.ls18{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.286933pt;}
.lsf{letter-spacing:0.317333pt;}
.ls2{letter-spacing:0.320000pt;}
.ls14{letter-spacing:177.408000pt;}
.ls1{letter-spacing:744.800000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws12{word-spacing:-14.912000pt;}
.ws15{word-spacing:-14.848000pt;}
.ws0{word-spacing:-14.784000pt;}
.wse{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.656000pt;}
.wsf{word-spacing:-14.592000pt;}
.wsd{word-spacing:-14.464000pt;}
.ws16{word-spacing:-14.208000pt;}
.ws14{word-spacing:-14.080000pt;}
.wsa{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.428693pt;}
.ws7{word-spacing:-12.299627pt;}
.ws5{word-spacing:-12.211093pt;}
.ws4{word-spacing:-12.185493pt;}
.ws6{word-spacing:-12.111360pt;}
.ws1{word-spacing:-12.005120pt;}
.ws9{word-spacing:-11.778560pt;}
.ws18{word-spacing:-10.944000pt;}
.ws17{word-spacing:-10.928000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws10{word-spacing:-9.776640pt;}
.ws3{word-spacing:-9.280000pt;}
.ws11{word-spacing:-0.064000pt;}
.wsc{word-spacing:0.000000pt;}
._10{margin-left:-4.209493pt;}
._b{margin-left:-3.284480pt;}
._a{margin-left:-2.293760pt;}
._1{margin-left:-1.088000pt;}
._0{width:1.120000pt;}
._2{width:2.067200pt;}
._4{width:3.271040pt;}
._3{width:4.393600pt;}
._e{width:5.312000pt;}
._7{width:6.418560pt;}
._6{width:7.383680pt;}
._c{width:8.512000pt;}
._5{width:10.040107pt;}
._9{width:11.043200pt;}
._d{width:12.224000pt;}
._f{width:13.184000pt;}
._14{width:15.883520pt;}
._11{width:17.012480pt;}
._8{width:18.316587pt;}
._12{width:19.329067pt;}
._16{width:21.312000pt;}
._17{width:22.272000pt;}
._13{width:26.944000pt;}
._15{width:30.016000pt;}
.fs7{font-size:26.880000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.fs6{font-size:144.000000pt;}
.y40{bottom:-8.000000pt;}
.y0{bottom:0.000000pt;}
.yc6{bottom:2.880000pt;}
.yd2{bottom:3.040000pt;}
.y12{bottom:3.200000pt;}
.y3{bottom:3.840000pt;}
.y72{bottom:4.000000pt;}
.yc9{bottom:4.800000pt;}
.ycd{bottom:6.080000pt;}
.y3f{bottom:11.200000pt;}
.yc5{bottom:17.920000pt;}
.yd1{bottom:18.080000pt;}
.y2e{bottom:19.840000pt;}
.y17{bottom:19.866667pt;}
.y29{bottom:19.880000pt;}
.ycc{bottom:21.120000pt;}
.y2{bottom:22.240000pt;}
.y76{bottom:23.840000pt;}
.y2f{bottom:26.760000pt;}
.y3e{bottom:28.960000pt;}
.yd0{bottom:32.960000pt;}
.yc8{bottom:34.880000pt;}
.ycb{bottom:36.160000pt;}
.y2d{bottom:36.480000pt;}
.y16{bottom:36.506667pt;}
.y28{bottom:36.680000pt;}
.ycf{bottom:48.000000pt;}
.y27{bottom:51.880000pt;}
.y2c{bottom:53.120000pt;}
.y15{bottom:53.306667pt;}
.y3a{bottom:53.440000pt;}
.y3d{bottom:58.080000pt;}
.y95{bottom:61.120000pt;}
.y6f{bottom:63.040000pt;}
.ya8{bottom:63.840000pt;}
.yc2{bottom:64.640000pt;}
.y26{bottom:68.520000pt;}
.y2b{bottom:69.920000pt;}
.y14{bottom:69.946667pt;}
.y3c{bottom:71.840000pt;}
.y39{bottom:73.440000pt;}
.yba{bottom:79.040000pt;}
.y94{bottom:81.152000pt;}
.y6e{bottom:83.072000pt;}
.ya7{bottom:83.840000pt;}
.yc1{bottom:84.672000pt;}
.y25{bottom:85.320000pt;}
.y38{bottom:93.472000pt;}
.yb9{bottom:95.872000pt;}
.y93{bottom:101.152000pt;}
.y24{bottom:101.960000pt;}
.y6d{bottom:103.072000pt;}
.ya6{bottom:103.840000pt;}
.y9a{bottom:104.000000pt;}
.yc0{bottom:104.672000pt;}
.y37{bottom:113.472000pt;}
.yb8{bottom:115.872000pt;}
.y23{bottom:118.600000pt;}
.y92{bottom:121.152000pt;}
.y6c{bottom:123.072000pt;}
.ya5{bottom:123.840000pt;}
.y99{bottom:124.000000pt;}
.ybf{bottom:124.672000pt;}
.y36{bottom:133.466667pt;}
.y22{bottom:135.240000pt;}
.yb7{bottom:135.866667pt;}
.y91{bottom:141.146667pt;}
.y6b{bottom:143.066667pt;}
.ya4{bottom:143.880000pt;}
.y98{bottom:144.000000pt;}
.ybe{bottom:144.666667pt;}
.y21{bottom:151.880000pt;}
.y35{bottom:153.466667pt;}
.yb6{bottom:155.866667pt;}
.y90{bottom:161.146667pt;}
.y6a{bottom:163.066667pt;}
.ya3{bottom:163.880000pt;}
.y97{bottom:164.000000pt;}
.ybd{bottom:164.506667pt;}
.y20{bottom:168.520000pt;}
.y34{bottom:173.466667pt;}
.yb5{bottom:175.866667pt;}
.y8f{bottom:181.146667pt;}
.y69{bottom:183.066667pt;}
.y1f{bottom:185.320000pt;}
.yb4{bottom:195.866667pt;}
.y8e{bottom:201.146667pt;}
.y1e{bottom:201.960000pt;}
.y68{bottom:203.066667pt;}
.y33{bottom:212.986667pt;}
.yb3{bottom:215.866667pt;}
.y1d{bottom:218.600000pt;}
.y8d{bottom:221.146667pt;}
.y67{bottom:223.066667pt;}
.y32{bottom:232.826667pt;}
.y1c{bottom:235.266667pt;}
.yb2{bottom:235.866667pt;}
.y8c{bottom:241.146667pt;}
.y66{bottom:243.066667pt;}
.y31{bottom:249.626667pt;}
.y1b{bottom:251.906667pt;}
.yb1{bottom:255.866667pt;}
.y8b{bottom:261.146667pt;}
.y65{bottom:263.066667pt;}
.y1a{bottom:268.706667pt;}
.y30{bottom:270.426667pt;}
.yb0{bottom:276.666667pt;}
.y8a{bottom:281.146667pt;}
.y64{bottom:283.066667pt;}
.y19{bottom:285.346667pt;}
.y18{bottom:287.706667pt;}
.y89{bottom:301.186667pt;}
.y63{bottom:303.106667pt;}
.y88{bottom:321.186667pt;}
.y62{bottom:323.106667pt;}
.y87{bottom:341.186667pt;}
.y61{bottom:343.106667pt;}
.y86{bottom:361.186667pt;}
.y60{bottom:363.106667pt;}
.y85{bottom:381.186667pt;}
.y5f{bottom:383.106667pt;}
.y84{bottom:401.186667pt;}
.y5e{bottom:403.106667pt;}
.y2a{bottom:419.106667pt;}
.y83{bottom:421.186667pt;}
.y5d{bottom:423.106667pt;}
.y82{bottom:441.186667pt;}
.y5c{bottom:443.106667pt;}
.y81{bottom:461.186667pt;}
.y5b{bottom:463.106667pt;}
.y80{bottom:477.986667pt;}
.yaf{bottom:481.186667pt;}
.y5a{bottom:483.266667pt;}
.y7f{bottom:497.986667pt;}
.yae{bottom:501.186667pt;}
.y13{bottom:503.106667pt;}
.y59{bottom:503.266667pt;}
.y7e{bottom:518.013333pt;}
.yad{bottom:521.213333pt;}
.y58{bottom:523.293333pt;}
.y7d{bottom:538.013333pt;}
.yac{bottom:541.213333pt;}
.y57{bottom:543.293333pt;}
.y7c{bottom:558.013333pt;}
.yab{bottom:561.213333pt;}
.y56{bottom:563.293333pt;}
.y7b{bottom:578.013333pt;}
.ybc{bottom:581.213333pt;}
.y55{bottom:583.293333pt;}
.y11{bottom:587.133333pt;}
.y7a{bottom:598.013333pt;}
.y54{bottom:603.293333pt;}
.y10{bottom:608.093333pt;}
.y79{bottom:618.013333pt;}
.y53{bottom:623.293333pt;}
.yf{bottom:626.333333pt;}
.yaa{bottom:638.013333pt;}
.y52{bottom:643.293333pt;}
.yd6{bottom:645.533333pt;}
.ye{bottom:650.013333pt;}
.y78{bottom:658.013333pt;}
.yd{bottom:663.133333pt;}
.y51{bottom:663.293333pt;}
.yd5{bottom:664.573333pt;}
.y77{bottom:678.013333pt;}
.y50{bottom:683.293333pt;}
.yc{bottom:686.653333pt;}
.yd4{bottom:688.253333pt;}
.y75{bottom:698.013333pt;}
.yb{bottom:699.773333pt;}
.y4f{bottom:703.293333pt;}
.yd3{bottom:708.413333pt;}
.ya9{bottom:718.013333pt;}
.ya{bottom:723.293333pt;}
.y9{bottom:736.453333pt;}
.y74{bottom:738.053333pt;}
.yce{bottom:741.893333pt;}
.y4e{bottom:743.333333pt;}
.y73{bottom:758.053333pt;}
.y8{bottom:760.133333pt;}
.y4d{bottom:763.333333pt;}
.y71{bottom:778.053333pt;}
.ybb{bottom:778.853333pt;}
.y4c{bottom:783.333333pt;}
.y7{bottom:795.013333pt;}
.ya2{bottom:798.213333pt;}
.y70{bottom:798.853333pt;}
.yca{bottom:801.893333pt;}
.y4b{bottom:803.333333pt;}
.y6{bottom:809.733333pt;}
.ya1{bottom:818.213333pt;}
.y4a{bottom:823.333333pt;}
.y5{bottom:830.533333pt;}
.ya0{bottom:838.213333pt;}
.y49{bottom:843.333333pt;}
.yc7{bottom:850.053333pt;}
.y9f{bottom:858.213333pt;}
.y48{bottom:863.333333pt;}
.y3b{bottom:865.573333pt;}
.y9e{bottom:878.213333pt;}
.y47{bottom:883.333333pt;}
.yc4{bottom:896.933333pt;}
.y9d{bottom:898.213333pt;}
.y46{bottom:903.333333pt;}
.y9c{bottom:918.213333pt;}
.y45{bottom:923.333333pt;}
.y9b{bottom:938.213333pt;}
.y44{bottom:943.333333pt;}
.yc3{bottom:945.573333pt;}
.y96{bottom:958.880000pt;}
.y43{bottom:963.360000pt;}
.y42{bottom:983.360000pt;}
.y4{bottom:1002.240000pt;}
.y41{bottom:1003.360000pt;}
.y1{bottom:1030.240000pt;}
.h9{height:16.640000pt;}
.h1b{height:20.000000pt;}
.h1f{height:20.032000pt;}
.h1c{height:20.160000pt;}
.h17{height:26.381250pt;}
.h24{height:29.920000pt;}
.h7{height:31.246791pt;}
.h6{height:36.095431pt;}
.h28{height:38.677333pt;}
.h25{height:39.786667pt;}
.h1e{height:40.000000pt;}
.h1d{height:40.032000pt;}
.hc{height:42.802916pt;}
.ha{height:44.030578pt;}
.hf{height:44.077796pt;}
.h11{height:44.833280pt;}
.h27{height:46.880000pt;}
.h8{height:47.889067pt;}
.h29{height:48.160000pt;}
.h26{height:49.336436pt;}
.h14{height:51.569778pt;}
.h5{height:52.053333pt;}
.he{height:52.134375pt;}
.h13{height:53.048889pt;}
.h19{height:53.105778pt;}
.h1a{height:53.937500pt;}
.h1{height:54.016000pt;}
.h3{height:54.390938pt;}
.h2a{height:60.000000pt;}
.h23{height:60.300000pt;}
.h18{height:60.937500pt;}
.h2{height:62.812500pt;}
.h4{height:63.032320pt;}
.h22{height:66.625000pt;}
.h10{height:83.360000pt;}
.hb{height:83.392000pt;}
.h2b{height:88.611250pt;}
.h15{height:105.312000pt;}
.h12{height:130.752000pt;}
.h16{height:141.257812pt;}
.h21{height:180.026667pt;}
.h20{height:180.186667pt;}
.hd{height:298.786667pt;}
.h0{height:1056.000000pt;}
.wa{width:71.840000pt;}
.w6{width:71.872000pt;}
.wb{width:78.592000pt;}
.w7{width:78.880000pt;}
.w11{width:88.512000pt;}
.we{width:89.952000pt;}
.w8{width:93.440000pt;}
.w9{width:93.472000pt;}
.w10{width:113.920000pt;}
.wc{width:114.080000pt;}
.wf{width:114.112000pt;}
.w17{width:125.312000pt;}
.w5{width:128.960000pt;}
.w16{width:132.832000pt;}
.w15{width:135.866667pt;}
.w14{width:137.946667pt;}
.w18{width:138.080000pt;}
.w19{width:138.106667pt;}
.w13{width:159.520000pt;}
.wd{width:168.026667pt;}
.w2{width:209.946667pt;}
.w3{width:481.373333pt;}
.w12{width:574.533333pt;}
.w4{width:599.173333pt;}
.w1a{width:693.600000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x8{left:32.480000pt;}
.x21{left:73.600000pt;}
.x3{left:75.871988pt;}
.x20{left:123.871988pt;}
.x7{left:173.946667pt;}
.xa{left:175.560000pt;}
.x13{left:189.946667pt;}
.x9{left:202.280000pt;}
.xc{left:204.826667pt;}
.x1c{left:213.946667pt;}
.x1{left:224.826655pt;}
.x18{left:235.386667pt;}
.x4{left:253.346655pt;}
.xd{left:276.706667pt;}
.x6{left:285.826667pt;}
.xb{left:299.586667pt;}
.x1d{left:352.066667pt;}
.xe{left:355.586667pt;}
.x14{left:357.986667pt;}
.x19{left:373.346667pt;}
.xf{left:427.453333pt;}
.x15{left:447.933333pt;}
.x1e{left:490.173333pt;}
.x1a{left:509.213333pt;}
.x10{left:520.893333pt;}
.x16{left:562.053333pt;}
.x11{left:614.373333pt;}
.x1f{left:628.293333pt;}
.x1b{left:642.213333pt;}
.x17{left:675.973333pt;}
.x12{left:686.213333pt;}
.x2{left:743.199988pt;}
}




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