
    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_4468a9e9d5395b326146c0c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.251953;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_eeff48298f21f9f6ef64097b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.251953;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_2ccbe9eef8c6951b9da76f0a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172363;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_f73e90a85d9ba6b339640372.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.111133;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_b4ecc1cd01bdf3f1a7d4da34.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.125533;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_d4303e973991d90aa4f854b5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.125533;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_6d0f1f88d18ef8f3055e650b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.111133;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_b72526d540f0efd537e69ddf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971000;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_45f08b4ce989517738b808f7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.046000;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_cf0d56d33577ca94cd03fe85.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.046000;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_94a4f2681316bb4344b8247e.woff2')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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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_691fd82c00b9e7c866dc190f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.916992;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_7efe67a3a8037e5620a66566.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.916992;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_39c4583a95e3d8e6ab518212.woff2')format("woff");}.fff{font-family:fff;line-height:0.971000;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);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.303000px;}
.ls33{letter-spacing:-0.217200px;}
.ls1e{letter-spacing:-0.172200px;}
.ls34{letter-spacing:-0.046800px;}
.ls10{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.015840px;}
.lse{letter-spacing:0.030240px;}
.ls39{letter-spacing:0.087840px;}
.ls32{letter-spacing:0.092400px;}
.ls1{letter-spacing:0.115200px;}
.ls28{letter-spacing:0.126720px;}
.ls13{letter-spacing:0.147000px;}
.ls1d{letter-spacing:0.163200px;}
.ls17{letter-spacing:0.231600px;}
.ls11{letter-spacing:0.342600px;}
.ls0{letter-spacing:0.342720px;}
.ls31{letter-spacing:0.357000px;}
.ls3{letter-spacing:0.522000px;}
.ls1b{letter-spacing:0.547800px;}
.ls23{letter-spacing:0.547920px;}
.ls2b{letter-spacing:0.553680px;}
.ls7{letter-spacing:0.598320px;}
.ls38{letter-spacing:0.627840px;}
.lsb{letter-spacing:0.750240px;}
.ls15{letter-spacing:1.318320px;}
.ls4{letter-spacing:2.038320px;}
.ls5{letter-spacing:2.758320px;}
.ls6{letter-spacing:3.478320px;}
.ls24{letter-spacing:4.198320px;}
.ls19{letter-spacing:4.918320px;}
.ls2{letter-spacing:5.638320px;}
.ls16{letter-spacing:6.358320px;}
.ls18{letter-spacing:7.078320px;}
.ls8{letter-spacing:7.798320px;}
.ls20{letter-spacing:8.518320px;}
.ls9{letter-spacing:8.698320px;}
.lsc{letter-spacing:9.238320px;}
.ls2a{letter-spacing:9.958320px;}
.ls29{letter-spacing:10.138320px;}
.lsa{letter-spacing:11.398320px;}
.ls1f{letter-spacing:14.278320px;}
.ls1c{letter-spacing:14.998320px;}
.ls37{letter-spacing:15.718320px;}
.lsf{letter-spacing:16.438320px;}
.lsd{letter-spacing:19.318320px;}
.ls1a{letter-spacing:20.038320px;}
.ls14{letter-spacing:21.478320px;}
.ls21{letter-spacing:25.798320px;}
.ls2f{letter-spacing:26.518320px;}
.ls36{letter-spacing:30.186720px;}
.ls35{letter-spacing:34.414320px;}
.ls2d{letter-spacing:46.678320px;}
.ls2c{letter-spacing:61.866720px;}
.ls22{letter-spacing:83.466720px;}
.ls30{letter-spacing:85.018320px;}
.ls2e{letter-spacing:118.858320px;}
.ls25{letter-spacing:254.106720px;}
.ls26{letter-spacing:849.360000px;}
.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:-59.760000px;}
.ws2{word-spacing:-17.884800px;}
.ws4{word-spacing:-16.135200px;}
.ws3{word-spacing:-16.096320px;}
.wsc{word-spacing:-15.069480px;}
.wse{word-spacing:-14.878680px;}
.ws8{word-spacing:-14.753280px;}
.ws9{word-spacing:-14.684880px;}
.ws6{word-spacing:-14.668680px;}
.wsf{word-spacing:-14.614080px;}
.wsd{word-spacing:-14.537520px;}
.ws1{word-spacing:-14.521680px;}
.ws11{word-spacing:-14.474880px;}
.wsa{word-spacing:-14.349480px;}
.ws10{word-spacing:-14.304480px;}
.ws5{word-spacing:-14.218680px;}
.ws0{word-spacing:-12.653160px;}
.ws7{word-spacing:0.000000px;}
._5{margin-left:-6.143040px;}
._21{margin-left:-4.303680px;}
._6{margin-left:-3.212160px;}
._4{margin-left:-1.627200px;}
._0{width:1.015920px;}
._3{width:2.250480px;}
._a{width:3.355680px;}
._8{width:4.435200px;}
._7{width:5.752560px;}
._11{width:7.161120px;}
._9{width:8.256960px;}
._e{width:10.099440px;}
._15{width:11.712960px;}
._10{width:13.326480px;}
._18{width:15.896160px;}
._13{width:17.629200px;}
._12{width:19.601280px;}
._1a{width:20.736720px;}
._1f{width:22.469760px;}
._1c{width:23.784480px;}
._19{width:25.756560px;}
._1e{width:26.951760px;}
._d{width:28.206720px;}
._f{width:29.939760px;}
._14{width:31.493520px;}
._b{width:33.525360px;}
._c{width:34.601040px;}
._2f{width:36.204480px;}
._2a{width:37.350000px;}
._17{width:38.844000px;}
._16{width:40.218480px;}
._2b{width:44.640720px;}
._27{width:46.194480px;}
._22{width:48.166560px;}
._2c{width:49.839840px;}
._26{width:50.855760px;}
._29{width:51.871680px;}
._1b{width:53.186400px;}
._24{width:54.441360px;}
._20{width:57.668400px;}
._2e{width:60.835680px;}
._23{width:63.405360px;}
._32{width:64.481040px;}
._2d{width:77.269680px;}
._28{width:79.779600px;}
._34{width:85.098240px;}
._35{width:86.763600px;}
._25{width:103.026240px;}
._33{width:118.862640px;}
._37{width:273.282480px;}
._1{width:286.561920px;}
._30{width:507.649440px;}
._1d{width:509.809440px;}
._2{width:511.969440px;}
._36{width:513.409440px;}
._31{width:893.352240px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y82{bottom:4.320000px;}
.y7f{bottom:4.500000px;}
.y5{bottom:10.260000px;}
.y80{bottom:14.400000px;}
.y7e{bottom:24.300000px;}
.ya3{bottom:24.345000px;}
.y9f{bottom:34.200000px;}
.ya0{bottom:44.280000px;}
.y37{bottom:94.680000px;}
.y9c{bottom:102.960000px;}
.y7c{bottom:107.460000px;}
.y6d{bottom:108.900000px;}
.y36{bottom:114.480000px;}
.y9b{bottom:122.940000px;}
.y7b{bottom:127.440000px;}
.y6c{bottom:128.880000px;}
.y35{bottom:134.460000px;}
.y9a{bottom:142.776000px;}
.y7a{bottom:147.276000px;}
.y9d{bottom:148.536000px;}
.y6b{bottom:148.716000px;}
.y34{bottom:154.290000px;}
.y99{bottom:162.570000px;}
.y79{bottom:167.070000px;}
.y6a{bottom:168.690000px;}
.y33{bottom:174.270000px;}
.y98{bottom:182.550000px;}
.y78{bottom:187.050000px;}
.y69{bottom:188.490000px;}
.y32{bottom:194.070000px;}
.y97{bottom:202.350000px;}
.y77{bottom:206.850000px;}
.y68{bottom:208.470000px;}
.y31{bottom:214.050000px;}
.y96{bottom:222.330000px;}
.y76{bottom:226.830000px;}
.y67{bottom:228.270000px;}
.y30{bottom:233.850000px;}
.y95{bottom:242.130000px;}
.y75{bottom:246.630000px;}
.y66{bottom:248.070000px;}
.y2f{bottom:253.650000px;}
.y94{bottom:261.930000px;}
.y74{bottom:266.430000px;}
.y65{bottom:268.050000px;}
.y2e{bottom:273.630000px;}
.y93{bottom:281.910000px;}
.y73{bottom:286.410000px;}
.y64{bottom:287.850000px;}
.y2d{bottom:293.430000px;}
.y92{bottom:297.390000px;}
.ybf{bottom:301.710000px;}
.y72{bottom:306.210000px;}
.y63{bottom:307.830000px;}
.y2c{bottom:313.410000px;}
.ybe{bottom:321.690000px;}
.y71{bottom:326.190000px;}
.y62{bottom:327.630000px;}
.y2b{bottom:333.210000px;}
.ybd{bottom:341.490000px;}
.y70{bottom:345.990000px;}
.y61{bottom:347.430000px;}
.y2a{bottom:353.010000px;}
.ybc{bottom:361.470000px;}
.y6f{bottom:365.970000px;}
.y60{bottom:367.410000px;}
.y29{bottom:372.990000px;}
.ybb{bottom:381.270000px;}
.y6e{bottom:381.450000px;}
.y5f{bottom:387.210000px;}
.y28{bottom:392.835000px;}
.yba{bottom:401.115000px;}
.y5e{bottom:407.235000px;}
.y27{bottom:412.815000px;}
.yb9{bottom:421.095000px;}
.y5d{bottom:427.035000px;}
.y26{bottom:432.615000px;}
.yb8{bottom:440.895000px;}
.y5c{bottom:447.015000px;}
.y25{bottom:452.595000px;}
.yb7{bottom:460.875000px;}
.y5b{bottom:466.815000px;}
.y24{bottom:472.395000px;}
.yb6{bottom:480.675000px;}
.y5a{bottom:486.615000px;}
.y23{bottom:492.195000px;}
.yb5{bottom:500.475000px;}
.y59{bottom:506.595000px;}
.y22{bottom:512.175000px;}
.yb4{bottom:520.455000px;}
.y58{bottom:526.395000px;}
.y21{bottom:531.975000px;}
.yb3{bottom:540.255000px;}
.y57{bottom:546.375000px;}
.y20{bottom:551.955000px;}
.yb2{bottom:560.235000px;}
.y56{bottom:566.175000px;}
.y1f{bottom:571.755000px;}
.yb1{bottom:580.035000px;}
.yd6{bottom:581.835000px;}
.y55{bottom:585.975000px;}
.y1e{bottom:591.555000px;}
.yb0{bottom:600.015000px;}
.yd5{bottom:601.995000px;}
.y54{bottom:605.955000px;}
.y1d{bottom:611.535000px;}
.yaf{bottom:619.815000px;}
.yd4{bottom:621.795000px;}
.y53{bottom:625.755000px;}
.y1c{bottom:631.335000px;}
.yae{bottom:639.615000px;}
.yd3{bottom:641.805000px;}
.y52{bottom:645.765000px;}
.y1b{bottom:651.345000px;}
.yad{bottom:659.625000px;}
.yd2{bottom:661.605000px;}
.y51{bottom:665.565000px;}
.y1a{bottom:671.145000px;}
.yac{bottom:679.425000px;}
.yd1{bottom:681.405000px;}
.y50{bottom:685.545000px;}
.y19{bottom:691.125000px;}
.yab{bottom:699.405000px;}
.y91{bottom:700.125000px;}
.yd0{bottom:701.385000px;}
.y4f{bottom:705.345000px;}
.y18{bottom:710.925000px;}
.yaa{bottom:719.205000px;}
.y90{bottom:719.925000px;}
.ycf{bottom:721.185000px;}
.y4e{bottom:725.145000px;}
.y17{bottom:730.725000px;}
.ya9{bottom:739.005000px;}
.y8f{bottom:739.905000px;}
.yce{bottom:741.165000px;}
.y4d{bottom:745.125000px;}
.y16{bottom:750.705000px;}
.ya8{bottom:758.985000px;}
.y8e{bottom:759.705000px;}
.ycd{bottom:760.965000px;}
.y4c{bottom:764.925000px;}
.y15{bottom:770.505000px;}
.ya7{bottom:778.785000px;}
.y8d{bottom:779.505000px;}
.ycc{bottom:780.945000px;}
.y4b{bottom:784.905000px;}
.y14{bottom:790.485000px;}
.ya6{bottom:798.765000px;}
.y8c{bottom:799.485000px;}
.ycb{bottom:800.745000px;}
.y4a{bottom:804.705000px;}
.y13{bottom:810.285000px;}
.ya5{bottom:818.565000px;}
.y8b{bottom:819.285000px;}
.yca{bottom:820.545000px;}
.y49{bottom:824.505000px;}
.y12{bottom:830.085000px;}
.ya4{bottom:834.765000px;}
.y8a{bottom:839.265000px;}
.yc9{bottom:840.525000px;}
.y48{bottom:844.485000px;}
.y11{bottom:850.065000px;}
.y89{bottom:859.065000px;}
.yc8{bottom:860.325000px;}
.y47{bottom:864.285000px;}
.y10{bottom:869.865000px;}
.ya2{bottom:875.265000px;}
.y88{bottom:879.045000px;}
.yc7{bottom:881.385000px;}
.y46{bottom:884.265000px;}
.yf{bottom:889.845000px;}
.y87{bottom:898.890000px;}
.y45{bottom:904.110000px;}
.yc6{bottom:907.350000px;}
.ye{bottom:909.690000px;}
.y86{bottom:915.090000px;}
.ya1{bottom:915.810000px;}
.y44{bottom:924.090000px;}
.yd{bottom:929.670000px;}
.yc5{bottom:932.370000px;}
.y85{bottom:935.790000px;}
.y43{bottom:943.890000px;}
.yc{bottom:949.470000px;}
.yc4{bottom:954.150000px;}
.y84{bottom:956.310000px;}
.y42{bottom:963.690000px;}
.yb{bottom:969.270000px;}
.yc3{bottom:976.110000px;}
.y41{bottom:983.670000px;}
.ya{bottom:990.330000px;}
.y83{bottom:996.810000px;}
.yc2{bottom:997.890000px;}
.y40{bottom:1003.470000px;}
.y9{bottom:1015.350000px;}
.y81{bottom:1017.510000px;}
.yc1{bottom:1019.850000px;}
.y3f{bottom:1023.450000px;}
.y8{bottom:1037.310000px;}
.y7d{bottom:1038.030000px;}
.yc0{bottom:1041.630000px;}
.y3e{bottom:1043.250000px;}
.y7{bottom:1059.090000px;}
.y3d{bottom:1063.050000px;}
.y9e{bottom:1077.810000px;}
.y6{bottom:1081.050000px;}
.y3c{bottom:1083.030000px;}
.y4{bottom:1102.650000px;}
.y3b{bottom:1102.830000px;}
.y3a{bottom:1122.810000px;}
.y3{bottom:1139.010000px;}
.y39{bottom:1142.610000px;}
.y2{bottom:1161.000000px;}
.y38{bottom:1162.620000px;}
.y1{bottom:1194.120000px;}
.hb{height:19.800000px;}
.hc{height:19.980000px;}
.h4{height:31.680000px;}
.ha{height:39.780000px;}
.he{height:39.816000px;}
.h8{height:49.839840px;}
.h9{height:52.656528px;}
.h7{height:53.517072px;}
.h3{height:58.366272px;}
.h5{height:59.320128px;}
.h2{height:59.439023px;}
.hd{height:59.760000px;}
.h6{height:69.636672px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:50.400000px;}
.wc{width:136.080000px;}
.w7{width:137.556000px;}
.w8{width:147.600000px;}
.w5{width:158.430000px;}
.w9{width:187.050000px;}
.w4{width:190.290000px;}
.wb{width:191.730000px;}
.wa{width:204.555000px;}
.w6{width:275.655000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x20{left:10.260000px;}
.x1f{left:12.240000px;}
.x2e{left:13.725000px;}
.x2d{left:16.056000px;}
.x29{left:18.180000px;}
.x35{left:19.260000px;}
.x22{left:20.880000px;}
.x32{left:22.005000px;}
.x27{left:24.165000px;}
.x21{left:25.776000px;}
.x1b{left:26.820000px;}
.x11{left:28.836000px;}
.x30{left:31.005000px;}
.x16{left:32.760000px;}
.x19{left:34.605000px;}
.x1d{left:37.305000px;}
.x2c{left:38.700000px;}
.x2f{left:41.220000px;}
.x4{left:42.300000px;}
.x18{left:45.360000px;}
.x1a{left:50.400000px;}
.x1c{left:53.136000px;}
.x12{left:55.476000px;}
.x33{left:57.465000px;}
.x2a{left:60.300000px;}
.x36{left:63.756000px;}
.x34{left:68.625000px;}
.x37{left:71.865000px;}
.x31{left:73.665000px;}
.x1{left:84.959987px;}
.x14{left:94.365000px;}
.x24{left:99.575987px;}
.xd{left:102.275987px;}
.x1e{left:104.265000px;}
.x9{left:106.235987px;}
.x8{left:118.655987px;}
.x3a{left:148.895987px;}
.xf{left:194.429987px;}
.x3b{left:204.329987px;}
.x38{left:208.469987px;}
.x25{left:219.269987px;}
.x13{left:245.010000px;}
.x26{left:273.630000px;}
.x7{left:291.494987px;}
.x10{left:303.014987px;}
.x3{left:326.235000px;}
.x39{left:368.894987px;}
.x5{left:376.635000px;}
.x2{left:446.474987px;}
.xa{left:473.144987px;}
.x28{left:478.905000px;}
.xb{left:494.384987px;}
.x15{left:521.385000px;}
.x17{left:659.850000px;}
.x2b{left:671.370000px;}
.xc{left:728.789987px;}
.x23{left:730.049987px;}
.xe{left:737.249987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.269333pt;}
.ls33{letter-spacing:-0.193067pt;}
.ls1e{letter-spacing:-0.153067pt;}
.ls34{letter-spacing:-0.041600pt;}
.ls10{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.014080pt;}
.lse{letter-spacing:0.026880pt;}
.ls39{letter-spacing:0.078080pt;}
.ls32{letter-spacing:0.082133pt;}
.ls1{letter-spacing:0.102400pt;}
.ls28{letter-spacing:0.112640pt;}
.ls13{letter-spacing:0.130667pt;}
.ls1d{letter-spacing:0.145067pt;}
.ls17{letter-spacing:0.205867pt;}
.ls11{letter-spacing:0.304533pt;}
.ls0{letter-spacing:0.304640pt;}
.ls31{letter-spacing:0.317333pt;}
.ls3{letter-spacing:0.464000pt;}
.ls1b{letter-spacing:0.486933pt;}
.ls23{letter-spacing:0.487040pt;}
.ls2b{letter-spacing:0.492160pt;}
.ls7{letter-spacing:0.531840pt;}
.ls38{letter-spacing:0.558080pt;}
.lsb{letter-spacing:0.666880pt;}
.ls15{letter-spacing:1.171840pt;}
.ls4{letter-spacing:1.811840pt;}
.ls5{letter-spacing:2.451840pt;}
.ls6{letter-spacing:3.091840pt;}
.ls24{letter-spacing:3.731840pt;}
.ls19{letter-spacing:4.371840pt;}
.ls2{letter-spacing:5.011840pt;}
.ls16{letter-spacing:5.651840pt;}
.ls18{letter-spacing:6.291840pt;}
.ls8{letter-spacing:6.931840pt;}
.ls20{letter-spacing:7.571840pt;}
.ls9{letter-spacing:7.731840pt;}
.lsc{letter-spacing:8.211840pt;}
.ls2a{letter-spacing:8.851840pt;}
.ls29{letter-spacing:9.011840pt;}
.lsa{letter-spacing:10.131840pt;}
.ls1f{letter-spacing:12.691840pt;}
.ls1c{letter-spacing:13.331840pt;}
.ls37{letter-spacing:13.971840pt;}
.lsf{letter-spacing:14.611840pt;}
.lsd{letter-spacing:17.171840pt;}
.ls1a{letter-spacing:17.811840pt;}
.ls14{letter-spacing:19.091840pt;}
.ls21{letter-spacing:22.931840pt;}
.ls2f{letter-spacing:23.571840pt;}
.ls36{letter-spacing:26.832640pt;}
.ls35{letter-spacing:30.590507pt;}
.ls2d{letter-spacing:41.491840pt;}
.ls2c{letter-spacing:54.992640pt;}
.ls22{letter-spacing:74.192640pt;}
.ls30{letter-spacing:75.571840pt;}
.ls2e{letter-spacing:105.651840pt;}
.ls25{letter-spacing:225.872640pt;}
.ls26{letter-spacing:754.986667pt;}
.wsb{word-spacing:-53.120000pt;}
.ws2{word-spacing:-15.897600pt;}
.ws4{word-spacing:-14.342400pt;}
.ws3{word-spacing:-14.307840pt;}
.wsc{word-spacing:-13.395093pt;}
.wse{word-spacing:-13.225493pt;}
.ws8{word-spacing:-13.114027pt;}
.ws9{word-spacing:-13.053227pt;}
.ws6{word-spacing:-13.038827pt;}
.wsf{word-spacing:-12.990293pt;}
.wsd{word-spacing:-12.922240pt;}
.ws1{word-spacing:-12.908160pt;}
.ws11{word-spacing:-12.866560pt;}
.wsa{word-spacing:-12.755093pt;}
.ws10{word-spacing:-12.715093pt;}
.ws5{word-spacing:-12.638827pt;}
.ws0{word-spacing:-11.247253pt;}
.ws7{word-spacing:0.000000pt;}
._5{margin-left:-5.460480pt;}
._21{margin-left:-3.825493pt;}
._6{margin-left:-2.855253pt;}
._4{margin-left:-1.446400pt;}
._0{width:0.903040pt;}
._3{width:2.000427pt;}
._a{width:2.982827pt;}
._8{width:3.942400pt;}
._7{width:5.113387pt;}
._11{width:6.365440pt;}
._9{width:7.339520pt;}
._e{width:8.977280pt;}
._15{width:10.411520pt;}
._10{width:11.845760pt;}
._18{width:14.129920pt;}
._13{width:15.670400pt;}
._12{width:17.423360pt;}
._1a{width:18.432640pt;}
._1f{width:19.973120pt;}
._1c{width:21.141760pt;}
._19{width:22.894720pt;}
._1e{width:23.957120pt;}
._d{width:25.072640pt;}
._f{width:26.613120pt;}
._14{width:27.994240pt;}
._b{width:29.800320pt;}
._c{width:30.756480pt;}
._2f{width:32.181760pt;}
._2a{width:33.200000pt;}
._17{width:34.528000pt;}
._16{width:35.749760pt;}
._2b{width:39.680640pt;}
._27{width:41.061760pt;}
._22{width:42.814720pt;}
._2c{width:44.302080pt;}
._26{width:45.205120pt;}
._29{width:46.108160pt;}
._1b{width:47.276800pt;}
._24{width:48.392320pt;}
._20{width:51.260800pt;}
._2e{width:54.076160pt;}
._23{width:56.360320pt;}
._32{width:57.316480pt;}
._2d{width:68.684160pt;}
._28{width:70.915200pt;}
._34{width:75.642880pt;}
._35{width:77.123200pt;}
._25{width:91.578880pt;}
._33{width:105.655680pt;}
._37{width:242.917760pt;}
._1{width:254.721707pt;}
._30{width:451.243947pt;}
._1d{width:453.163947pt;}
._2{width:455.083947pt;}
._36{width:456.363947pt;}
._31{width:794.090880pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:3.840000pt;}
.y7f{bottom:4.000000pt;}
.y5{bottom:9.120000pt;}
.y80{bottom:12.800000pt;}
.y7e{bottom:21.600000pt;}
.ya3{bottom:21.640000pt;}
.y9f{bottom:30.400000pt;}
.ya0{bottom:39.360000pt;}
.y37{bottom:84.160000pt;}
.y9c{bottom:91.520000pt;}
.y7c{bottom:95.520000pt;}
.y6d{bottom:96.800000pt;}
.y36{bottom:101.760000pt;}
.y9b{bottom:109.280000pt;}
.y7b{bottom:113.280000pt;}
.y6c{bottom:114.560000pt;}
.y35{bottom:119.520000pt;}
.y9a{bottom:126.912000pt;}
.y7a{bottom:130.912000pt;}
.y9d{bottom:132.032000pt;}
.y6b{bottom:132.192000pt;}
.y34{bottom:137.146667pt;}
.y99{bottom:144.506667pt;}
.y79{bottom:148.506667pt;}
.y6a{bottom:149.946667pt;}
.y33{bottom:154.906667pt;}
.y98{bottom:162.266667pt;}
.y78{bottom:166.266667pt;}
.y69{bottom:167.546667pt;}
.y32{bottom:172.506667pt;}
.y97{bottom:179.866667pt;}
.y77{bottom:183.866667pt;}
.y68{bottom:185.306667pt;}
.y31{bottom:190.266667pt;}
.y96{bottom:197.626667pt;}
.y76{bottom:201.626667pt;}
.y67{bottom:202.906667pt;}
.y30{bottom:207.866667pt;}
.y95{bottom:215.226667pt;}
.y75{bottom:219.226667pt;}
.y66{bottom:220.506667pt;}
.y2f{bottom:225.466667pt;}
.y94{bottom:232.826667pt;}
.y74{bottom:236.826667pt;}
.y65{bottom:238.266667pt;}
.y2e{bottom:243.226667pt;}
.y93{bottom:250.586667pt;}
.y73{bottom:254.586667pt;}
.y64{bottom:255.866667pt;}
.y2d{bottom:260.826667pt;}
.y92{bottom:264.346667pt;}
.ybf{bottom:268.186667pt;}
.y72{bottom:272.186667pt;}
.y63{bottom:273.626667pt;}
.y2c{bottom:278.586667pt;}
.ybe{bottom:285.946667pt;}
.y71{bottom:289.946667pt;}
.y62{bottom:291.226667pt;}
.y2b{bottom:296.186667pt;}
.ybd{bottom:303.546667pt;}
.y70{bottom:307.546667pt;}
.y61{bottom:308.826667pt;}
.y2a{bottom:313.786667pt;}
.ybc{bottom:321.306667pt;}
.y6f{bottom:325.306667pt;}
.y60{bottom:326.586667pt;}
.y29{bottom:331.546667pt;}
.ybb{bottom:338.906667pt;}
.y6e{bottom:339.066667pt;}
.y5f{bottom:344.186667pt;}
.y28{bottom:349.186667pt;}
.yba{bottom:356.546667pt;}
.y5e{bottom:361.986667pt;}
.y27{bottom:366.946667pt;}
.yb9{bottom:374.306667pt;}
.y5d{bottom:379.586667pt;}
.y26{bottom:384.546667pt;}
.yb8{bottom:391.906667pt;}
.y5c{bottom:397.346667pt;}
.y25{bottom:402.306667pt;}
.yb7{bottom:409.666667pt;}
.y5b{bottom:414.946667pt;}
.y24{bottom:419.906667pt;}
.yb6{bottom:427.266667pt;}
.y5a{bottom:432.546667pt;}
.y23{bottom:437.506667pt;}
.yb5{bottom:444.866667pt;}
.y59{bottom:450.306667pt;}
.y22{bottom:455.266667pt;}
.yb4{bottom:462.626667pt;}
.y58{bottom:467.906667pt;}
.y21{bottom:472.866667pt;}
.yb3{bottom:480.226667pt;}
.y57{bottom:485.666667pt;}
.y20{bottom:490.626667pt;}
.yb2{bottom:497.986667pt;}
.y56{bottom:503.266667pt;}
.y1f{bottom:508.226667pt;}
.yb1{bottom:515.586667pt;}
.yd6{bottom:517.186667pt;}
.y55{bottom:520.866667pt;}
.y1e{bottom:525.826667pt;}
.yb0{bottom:533.346667pt;}
.yd5{bottom:535.106667pt;}
.y54{bottom:538.626667pt;}
.y1d{bottom:543.586667pt;}
.yaf{bottom:550.946667pt;}
.yd4{bottom:552.706667pt;}
.y53{bottom:556.226667pt;}
.y1c{bottom:561.186667pt;}
.yae{bottom:568.546667pt;}
.yd3{bottom:570.493333pt;}
.y52{bottom:574.013333pt;}
.y1b{bottom:578.973333pt;}
.yad{bottom:586.333333pt;}
.yd2{bottom:588.093333pt;}
.y51{bottom:591.613333pt;}
.y1a{bottom:596.573333pt;}
.yac{bottom:603.933333pt;}
.yd1{bottom:605.693333pt;}
.y50{bottom:609.373333pt;}
.y19{bottom:614.333333pt;}
.yab{bottom:621.693333pt;}
.y91{bottom:622.333333pt;}
.yd0{bottom:623.453333pt;}
.y4f{bottom:626.973333pt;}
.y18{bottom:631.933333pt;}
.yaa{bottom:639.293333pt;}
.y90{bottom:639.933333pt;}
.ycf{bottom:641.053333pt;}
.y4e{bottom:644.573333pt;}
.y17{bottom:649.533333pt;}
.ya9{bottom:656.893333pt;}
.y8f{bottom:657.693333pt;}
.yce{bottom:658.813333pt;}
.y4d{bottom:662.333333pt;}
.y16{bottom:667.293333pt;}
.ya8{bottom:674.653333pt;}
.y8e{bottom:675.293333pt;}
.ycd{bottom:676.413333pt;}
.y4c{bottom:679.933333pt;}
.y15{bottom:684.893333pt;}
.ya7{bottom:692.253333pt;}
.y8d{bottom:692.893333pt;}
.ycc{bottom:694.173333pt;}
.y4b{bottom:697.693333pt;}
.y14{bottom:702.653333pt;}
.ya6{bottom:710.013333pt;}
.y8c{bottom:710.653333pt;}
.ycb{bottom:711.773333pt;}
.y4a{bottom:715.293333pt;}
.y13{bottom:720.253333pt;}
.ya5{bottom:727.613333pt;}
.y8b{bottom:728.253333pt;}
.yca{bottom:729.373333pt;}
.y49{bottom:732.893333pt;}
.y12{bottom:737.853333pt;}
.ya4{bottom:742.013333pt;}
.y8a{bottom:746.013333pt;}
.yc9{bottom:747.133333pt;}
.y48{bottom:750.653333pt;}
.y11{bottom:755.613333pt;}
.y89{bottom:763.613333pt;}
.yc8{bottom:764.733333pt;}
.y47{bottom:768.253333pt;}
.y10{bottom:773.213333pt;}
.ya2{bottom:778.013333pt;}
.y88{bottom:781.373333pt;}
.yc7{bottom:783.453333pt;}
.y46{bottom:786.013333pt;}
.yf{bottom:790.973333pt;}
.y87{bottom:799.013333pt;}
.y45{bottom:803.653333pt;}
.yc6{bottom:806.533333pt;}
.ye{bottom:808.613333pt;}
.y86{bottom:813.413333pt;}
.ya1{bottom:814.053333pt;}
.y44{bottom:821.413333pt;}
.yd{bottom:826.373333pt;}
.yc5{bottom:828.773333pt;}
.y85{bottom:831.813333pt;}
.y43{bottom:839.013333pt;}
.yc{bottom:843.973333pt;}
.yc4{bottom:848.133333pt;}
.y84{bottom:850.053333pt;}
.y42{bottom:856.613333pt;}
.yb{bottom:861.573333pt;}
.yc3{bottom:867.653333pt;}
.y41{bottom:874.373333pt;}
.ya{bottom:880.293333pt;}
.y83{bottom:886.053333pt;}
.yc2{bottom:887.013333pt;}
.y40{bottom:891.973333pt;}
.y9{bottom:902.533333pt;}
.y81{bottom:904.453333pt;}
.yc1{bottom:906.533333pt;}
.y3f{bottom:909.733333pt;}
.y8{bottom:922.053333pt;}
.y7d{bottom:922.693333pt;}
.yc0{bottom:925.893333pt;}
.y3e{bottom:927.333333pt;}
.y7{bottom:941.413333pt;}
.y3d{bottom:944.933333pt;}
.y9e{bottom:958.053333pt;}
.y6{bottom:960.933333pt;}
.y3c{bottom:962.693333pt;}
.y4{bottom:980.133333pt;}
.y3b{bottom:980.293333pt;}
.y3a{bottom:998.053333pt;}
.y3{bottom:1012.453333pt;}
.y39{bottom:1015.653333pt;}
.y2{bottom:1032.000000pt;}
.y38{bottom:1033.440000pt;}
.y1{bottom:1061.440000pt;}
.hb{height:17.600000pt;}
.hc{height:17.760000pt;}
.h4{height:28.160000pt;}
.ha{height:35.360000pt;}
.he{height:35.392000pt;}
.h8{height:44.302080pt;}
.h9{height:46.805803pt;}
.h7{height:47.570731pt;}
.h3{height:51.881131pt;}
.h5{height:52.729003pt;}
.h2{height:52.834688pt;}
.hd{height:53.120000pt;}
.h6{height:61.899264pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:44.800000pt;}
.wc{width:120.960000pt;}
.w7{width:122.272000pt;}
.w8{width:131.200000pt;}
.w5{width:140.826667pt;}
.w9{width:166.266667pt;}
.w4{width:169.146667pt;}
.wb{width:170.426667pt;}
.wa{width:181.826667pt;}
.w6{width:245.026667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x20{left:9.120000pt;}
.x1f{left:10.880000pt;}
.x2e{left:12.200000pt;}
.x2d{left:14.272000pt;}
.x29{left:16.160000pt;}
.x35{left:17.120000pt;}
.x22{left:18.560000pt;}
.x32{left:19.560000pt;}
.x27{left:21.480000pt;}
.x21{left:22.912000pt;}
.x1b{left:23.840000pt;}
.x11{left:25.632000pt;}
.x30{left:27.560000pt;}
.x16{left:29.120000pt;}
.x19{left:30.760000pt;}
.x1d{left:33.160000pt;}
.x2c{left:34.400000pt;}
.x2f{left:36.640000pt;}
.x4{left:37.600000pt;}
.x18{left:40.320000pt;}
.x1a{left:44.800000pt;}
.x1c{left:47.232000pt;}
.x12{left:49.312000pt;}
.x33{left:51.080000pt;}
.x2a{left:53.600000pt;}
.x36{left:56.672000pt;}
.x34{left:61.000000pt;}
.x37{left:63.880000pt;}
.x31{left:65.480000pt;}
.x1{left:75.519988pt;}
.x14{left:83.880000pt;}
.x24{left:88.511988pt;}
.xd{left:90.911988pt;}
.x1e{left:92.680000pt;}
.x9{left:94.431988pt;}
.x8{left:105.471988pt;}
.x3a{left:132.351988pt;}
.xf{left:172.826655pt;}
.x3b{left:181.626655pt;}
.x38{left:185.306655pt;}
.x25{left:194.906655pt;}
.x13{left:217.786667pt;}
.x26{left:243.226667pt;}
.x7{left:259.106655pt;}
.x10{left:269.346655pt;}
.x3{left:289.986667pt;}
.x39{left:327.906655pt;}
.x5{left:334.786667pt;}
.x2{left:396.866655pt;}
.xa{left:420.573322pt;}
.x28{left:425.693333pt;}
.xb{left:439.453322pt;}
.x15{left:463.453333pt;}
.x17{left:586.533333pt;}
.x2b{left:596.773333pt;}
.xc{left:647.813322pt;}
.x23{left:648.933322pt;}
.xe{left:655.333322pt;}
}




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