
    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_0d7d333700eb19cea3df62cd.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_3d9ccce6e3577b0f9f61e028.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0157433be1b0116bffc12117.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.034000;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_4e114e34d202ac2bbc0523d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.034000;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_522239da98c9c082cf6d1e3e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9be804ea6279369b105a7eb5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331331;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_ac7d97776d0c93a85f573e7e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.331331;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736816;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_6881fa7e123793cf6ac1d15c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.767090;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_658e1a2794add4fe3e1e1af2.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_46448410d19f8472eca100d9.woff2')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_c35f38af48148e563d2a392c.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_52faea926ffe34f5bf0a6bd9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.966309;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls1c{letter-spacing:-8.095350px;}
.ls23{letter-spacing:-0.936000px;}
.ls1a{letter-spacing:-0.853806px;}
.ls13{letter-spacing:-0.648000px;}
.ls17{letter-spacing:-0.630000px;}
.ls15{letter-spacing:-0.576000px;}
.ls1e{letter-spacing:-0.524933px;}
.lsf{letter-spacing:-0.504000px;}
.ls2d{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.234006px;}
.ls11{letter-spacing:-0.089400px;}
.ls1d{letter-spacing:-0.082218px;}
.ls16{letter-spacing:-0.072000px;}
.lse{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.227682px;}
.ls1{letter-spacing:0.234720px;}
.ls2b{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.336000px;}
.ls8{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.372000px;}
.ls10{letter-spacing:0.391800px;}
.ls21{letter-spacing:0.396000px;}
.ls19{letter-spacing:0.412989px;}
.ls5{letter-spacing:0.427800px;}
.ls3{letter-spacing:0.466560px;}
.ls24{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.491793px;}
.ls2c{letter-spacing:0.504000px;}
.ls22{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.576000px;}
.lsd{letter-spacing:0.661795px;}
.ls18{letter-spacing:0.664072px;}
.ls4{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.792000px;}
.ls20{letter-spacing:0.864000px;}
.ls2{letter-spacing:1.512000px;}
.ls27{letter-spacing:1.656000px;}
.ls0{letter-spacing:1.902240px;}
.ls29{letter-spacing:2.952000px;}
.ls25{letter-spacing:4.392000px;}
.ls26{letter-spacing:5.832000px;}
.ls28{letter-spacing:8.712000px;}
.ls2a{letter-spacing:20.304000px;}
.lsb{letter-spacing:47.664000px;}
.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;}
}
.wsb{word-spacing:-39.768406px;}
.ws14{word-spacing:-37.728000px;}
.ws2{word-spacing:-37.224000px;}
.wse{word-spacing:-28.080000px;}
.wsc{word-spacing:-27.864000px;}
.ws13{word-spacing:-27.576000px;}
.ws4{word-spacing:-27.288000px;}
.ws16{word-spacing:-26.928000px;}
.ws3{word-spacing:-26.784000px;}
.ws15{word-spacing:-26.712000px;}
.wsd{word-spacing:-26.640000px;}
.ws1{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.722745px;}
.ws5{word-spacing:-16.813440px;}
.ws0{word-spacing:-16.560000px;}
.ws10{word-spacing:-13.050000px;}
.ws6{word-spacing:-11.160000px;}
.ws7{word-spacing:-10.440000px;}
.ws9{word-spacing:-9.865560px;}
.wsa{word-spacing:-9.437760px;}
.wsf{word-spacing:-8.928000px;}
.ws8{word-spacing:-0.041760px;}
.ws12{word-spacing:0.000000px;}
._d{margin-left:-7.522251px;}
._5{margin-left:-2.119680px;}
._6{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._7{width:5.388467px;}
._a{width:7.365735px;}
._8{width:8.411597px;}
._c{width:9.461564px;}
._b{width:10.771636px;}
._9{width:12.143025px;}
._f{width:14.235840px;}
._e{width:16.034139px;}
._10{width:18.398661px;}
._3{width:118.920000px;}
._4{width:382.500000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs6{font-size:47.520000px;}
.fsc{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fsd{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fse{font-size:63.750880px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs9{font-size:75.893905px;}
.fsf{font-size:83.664000px;}
.fs4{font-size:96.480000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y43{bottom:2.875500px;}
.y5{bottom:4.320000px;}
.y39{bottom:4.680000px;}
.y66{bottom:5.745000px;}
.y6b{bottom:5.760000px;}
.y68{bottom:6.105000px;}
.y75{bottom:6.120000px;}
.y64{bottom:6.825000px;}
.y72{bottom:6.840000px;}
.y51{bottom:7.170000px;}
.y63{bottom:9.345000px;}
.y7f{bottom:9.360000px;}
.y2{bottom:10.080000px;}
.y42{bottom:10.435500px;}
.y4e{bottom:13.315500px;}
.y4{bottom:23.400000px;}
.y8d{bottom:24.165000px;}
.y8c{bottom:26.685000px;}
.y73{bottom:27.000000px;}
.y71{bottom:29.520000px;}
.y4d{bottom:37.114500px;}
.y41{bottom:39.994500px;}
.y38{bottom:42.480000px;}
.y3{bottom:47.880000px;}
.y40{bottom:52.234500px;}
.y7{bottom:57.636000px;}
.y4c{bottom:59.074500px;}
.y37{bottom:61.200000px;}
.y3f{bottom:65.194500px;}
.y3e{bottom:78.154500px;}
.y4b{bottom:78.514500px;}
.y36{bottom:80.325000px;}
.y4a{bottom:98.314500px;}
.y3d{bottom:99.754500px;}
.y49{bottom:104.794500px;}
.y8a{bottom:105.516000px;}
.y35{bottom:108.045000px;}
.y4f{bottom:108.756000px;}
.y48{bottom:120.634500px;}
.y3a{bottom:123.880500px;}
.y89{bottom:124.236000px;}
.y34{bottom:126.765000px;}
.y47{bottom:136.114500px;}
.y88{bottom:143.352000px;}
.y33{bottom:145.845000px;}
.y46{bottom:151.624500px;}
.y3c{bottom:162.064500px;}
.y87{bottom:162.075000px;}
.y32{bottom:164.565000px;}
.y45{bottom:167.104500px;}
.y3b{bottom:172.864500px;}
.y86{bottom:181.155000px;}
.y44{bottom:182.224500px;}
.y31{bottom:183.645000px;}
.y85{bottom:199.875000px;}
.y30{bottom:202.365000px;}
.y84{bottom:227.955000px;}
.y2f{bottom:230.475000px;}
.y83{bottom:243.090000px;}
.y2e{bottom:249.195000px;}
.yb4{bottom:252.075000px;}
.y82{bottom:263.970000px;}
.y2d{bottom:268.275000px;}
.yb3{bottom:270.795000px;}
.y81{bottom:285.225000px;}
.yb2{bottom:289.545000px;}
.y2c{bottom:290.235000px;}
.y80{bottom:306.465000px;}
.yb1{bottom:308.625000px;}
.y2b{bottom:312.195000px;}
.y1c{bottom:312.555000px;}
.yf{bottom:326.265000px;}
.y7e{bottom:327.345000px;}
.y2a{bottom:334.155000px;}
.y1b{bottom:337.035000px;}
.yb0{bottom:346.425000px;}
.y29{bottom:352.905000px;}
.y7d{bottom:356.505000px;}
.y1a{bottom:361.185000px;}
.yaf{bottom:365.145000px;}
.y28{bottom:371.985000px;}
.y7c{bottom:375.225000px;}
.yae{bottom:384.225000px;}
.y19{bottom:385.305000px;}
.y27{bottom:390.705000px;}
.y7b{bottom:394.305000px;}
.yad{bottom:402.945000px;}
.y18{bottom:409.425000px;}
.y26{bottom:409.785000px;}
.y7a{bottom:416.310000px;}
.yac{bottom:422.070000px;}
.y17{bottom:433.545000px;}
.y25{bottom:437.505000px;}
.y79{bottom:438.270000px;}
.yab{bottom:440.790000px;}
.y78{bottom:453.390000px;}
.y24{bottom:456.225000px;}
.y16{bottom:457.665000px;}
.yaa{bottom:459.510000px;}
.y77{bottom:474.630000px;}
.y23{bottom:475.350000px;}
.ya9{bottom:478.590000px;}
.y15{bottom:481.830000px;}
.y22{bottom:494.070000px;}
.y76{bottom:495.510000px;}
.ya8{bottom:497.310000px;}
.y14{bottom:505.950000px;}
.y21{bottom:513.150000px;}
.ya7{bottom:516.390000px;}
.y74{bottom:516.750000px;}
.y13{bottom:530.070000px;}
.y20{bottom:531.870000px;}
.ya6{bottom:535.110000px;}
.y70{bottom:538.020000px;}
.y1f{bottom:550.950000px;}
.y12{bottom:554.190000px;}
.ya5{bottom:554.220000px;}
.y1e{bottom:569.670000px;}
.ya4{bottom:572.940000px;}
.y11{bottom:578.310000px;}
.y6f{bottom:587.340000px;}
.y1d{bottom:588.750000px;}
.ya3{bottom:592.020000px;}
.y10{bottom:602.790000px;}
.y6e{bottom:606.060000px;}
.ya2{bottom:611.100000px;}
.y6d{bottom:625.140000px;}
.ya1{bottom:632.700000px;}
.y6c{bottom:647.100000px;}
.ya0{bottom:660.780000px;}
.y6a{bottom:662.220000px;}
.y9f{bottom:679.530000px;}
.y69{bottom:683.145000px;}
.y9e{bottom:698.250000px;}
.y67{bottom:704.385000px;}
.y9d{bottom:717.330000px;}
.y65{bottom:725.625000px;}
.y9c{bottom:736.050000px;}
.y62{bottom:746.505000px;}
.y9b{bottom:755.130000px;}
.y9a{bottom:773.850000px;}
.y61{bottom:775.650000px;}
.y99{bottom:792.930000px;}
.y60{bottom:803.775000px;}
.y98{bottom:811.695000px;}
.y5f{bottom:825.375000px;}
.y97{bottom:830.775000px;}
.y5e{bottom:844.455000px;}
.y96{bottom:858.495000px;}
.y5d{bottom:863.175000px;}
.y95{bottom:877.575000px;}
.y5c{bottom:882.255000px;}
.y94{bottom:899.535000px;}
.y5b{bottom:909.975000px;}
.y93{bottom:921.495000px;}
.y5a{bottom:929.055000px;}
.ye{bottom:940.965000px;}
.y92{bottom:943.485000px;}
.yd{bottom:946.005000px;}
.y59{bottom:947.805000px;}
.y91{bottom:958.605000px;}
.yc{bottom:975.165000px;}
.y58{bottom:975.525000px;}
.y90{bottom:979.485000px;}
.y57{bottom:994.605000px;}
.y8f{bottom:1000.725000px;}
.yb{bottom:1001.445000px;}
.y56{bottom:1013.325000px;}
.ya{bottom:1016.565000px;}
.y8e{bottom:1021.965000px;}
.y55{bottom:1032.405000px;}
.y9{bottom:1039.965000px;}
.y8b{bottom:1042.845000px;}
.y54{bottom:1051.125000px;}
.y53{bottom:1070.250000px;}
.y8{bottom:1072.050000px;}
.y50{bottom:1075.320000px;}
.y52{bottom:1088.970000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h1c{height:5.650313px;}
.h22{height:20.145000px;}
.h24{height:20.196000px;}
.h23{height:20.505000px;}
.h27{height:20.520000px;}
.h26{height:20.550000px;}
.h21{height:23.745000px;}
.h1f{height:27.720000px;}
.h19{height:29.678906px;}
.h18{height:35.332031px;}
.hb{height:38.063520px;}
.hf{height:40.985156px;}
.h28{height:41.070000px;}
.h10{height:41.535703px;}
.he{height:42.086250px;}
.h25{height:43.920000px;}
.ha{height:46.638281px;}
.h1a{height:53.677969px;}
.h1b{height:55.147500px;}
.h7{height:57.290625px;}
.h12{height:57.672000px;}
.h6{height:59.357813px;}
.h11{height:60.791018px;}
.hc{height:60.952500px;}
.h1e{height:61.143509px;}
.h20{height:63.565031px;}
.h16{height:64.112344px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h1d{height:67.579668px;}
.h13{height:71.183520px;}
.h14{height:71.613281px;}
.h9{height:72.562500px;}
.h15{height:74.004654px;}
.h8{height:77.280480px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.h17{height:201.645000px;}
.hd{height:612.165000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wd{width:29.902500px;}
.w1e{width:31.702500px;}
.w13{width:32.062500px;}
.w22{width:34.560000px;}
.w24{width:40.665000px;}
.w26{width:40.680000px;}
.w28{width:40.710000px;}
.w19{width:42.105000px;}
.w1b{width:42.120000px;}
.w1d{width:42.150000px;}
.w17{width:42.480000px;}
.w7{width:48.945000px;}
.w21{width:50.070000px;}
.w18{width:51.516000px;}
.w1c{width:58.305000px;}
.w27{width:61.545000px;}
.w1a{width:66.621000px;}
.w16{width:68.790000px;}
.w23{width:69.876000px;}
.wa{width:82.116000px;}
.w25{width:88.581000px;}
.w14{width:93.600000px;}
.wc{width:95.760000px;}
.we{width:97.560000px;}
.w15{width:100.470000px;}
.w11{width:103.341000px;}
.w2{width:103.702500px;}
.w8{width:105.120000px;}
.w1f{width:107.640000px;}
.w9{width:110.592000px;}
.w20{width:114.870000px;}
.w12{width:124.245000px;}
.w4{width:132.502500px;}
.wb{width:144.741000px;}
.wf{width:154.830000px;}
.w6{width:163.080000px;}
.w10{width:165.315000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.265000px;}
.x3e{left:10.425000px;}
.x27{left:11.880000px;}
.x4{left:13.305000px;}
.x38{left:14.415000px;}
.x29{left:15.825000px;}
.x14{left:16.906500px;}
.x16{left:17.986500px;}
.x15{left:19.426500px;}
.x4a{left:21.945000px;}
.x48{left:23.025000px;}
.x4b{left:24.105000px;}
.x49{left:25.560000px;}
.x30{left:26.640000px;}
.x2e{left:27.735000px;}
.x6{left:28.785000px;}
.x2c{left:30.240000px;}
.x2f{left:31.335000px;}
.x2d{left:32.415000px;}
.x39{left:36.390000px;}
.x35{left:38.550000px;}
.x2b{left:41.085000px;}
.xf{left:43.906500px;}
.x3a{left:46.455000px;}
.x1a{left:47.542500px;}
.x10{left:50.782500px;}
.x13{left:53.302500px;}
.xe{left:55.102500px;}
.x1c{left:57.262500px;}
.x18{left:62.295000px;}
.x33{left:64.440000px;}
.x1b{left:66.265500px;}
.x12{left:75.985500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x56{left:91.836000px;}
.x2{left:95.425500px;}
.x1d{left:102.985500px;}
.x19{left:106.945500px;}
.x55{left:113.436000px;}
.x57{left:118.836000px;}
.x3c{left:122.809500px;}
.x11{left:124.585500px;}
.x20{left:126.780000px;}
.x4e{left:134.734500px;}
.x32{left:137.974500px;}
.x21{left:140.472000px;}
.x23{left:151.290000px;}
.x3d{left:155.610000px;}
.x58{left:172.875000px;}
.x3{left:182.250000px;}
.x24{left:200.970000px;}
.x17{left:218.970000px;}
.x1e{left:236.970000px;}
.x4f{left:243.105000px;}
.x4d{left:244.185000px;}
.x3f{left:249.945000px;}
.x3b{left:271.185000px;}
.x1f{left:279.480000px;}
.x25{left:306.825000px;}
.x31{left:329.550000px;}
.x22{left:342.150000px;}
.x40{left:351.150000px;}
.x50{left:358.710000px;}
.x34{left:391.830000px;}
.x51{left:409.860000px;}
.x26{left:418.140000px;}
.x41{left:420.660000px;}
.x52{left:445.140000px;}
.x4c{left:446.580000px;}
.x42{left:463.860000px;}
.xb{left:492.330000px;}
.x28{left:500.985000px;}
.xa{left:508.170000px;}
.x43{left:516.465000px;}
.x36{left:557.865000px;}
.x44{left:559.305000px;}
.x45{left:626.670000px;}
.x2a{left:646.470000px;}
.x37{left:661.950000px;}
.x46{left:669.525000px;}
.x53{left:687.885000px;}
.x47{left:728.565000px;}
.x54{left:750.525000px;}
.xc{left:763.890000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xd{left:807.090000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls1c{letter-spacing:-7.195867pt;}
.ls23{letter-spacing:-0.832000pt;}
.ls1a{letter-spacing:-0.758939pt;}
.ls13{letter-spacing:-0.576000pt;}
.ls17{letter-spacing:-0.560000pt;}
.ls15{letter-spacing:-0.512000pt;}
.ls1e{letter-spacing:-0.466607pt;}
.lsf{letter-spacing:-0.448000pt;}
.ls2d{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.208006pt;}
.ls11{letter-spacing:-0.079467pt;}
.ls1d{letter-spacing:-0.073083pt;}
.ls16{letter-spacing:-0.064000pt;}
.lse{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.202384pt;}
.ls1{letter-spacing:0.208640pt;}
.ls2b{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.298667pt;}
.ls8{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.330667pt;}
.ls10{letter-spacing:0.348267pt;}
.ls21{letter-spacing:0.352000pt;}
.ls19{letter-spacing:0.367102pt;}
.ls5{letter-spacing:0.380267pt;}
.ls3{letter-spacing:0.414720pt;}
.ls24{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.437149pt;}
.ls2c{letter-spacing:0.448000pt;}
.ls22{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.512000pt;}
.lsd{letter-spacing:0.588262pt;}
.ls18{letter-spacing:0.590286pt;}
.ls4{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.704000pt;}
.ls20{letter-spacing:0.768000pt;}
.ls2{letter-spacing:1.344000pt;}
.ls27{letter-spacing:1.472000pt;}
.ls0{letter-spacing:1.690880pt;}
.ls29{letter-spacing:2.624000pt;}
.ls25{letter-spacing:3.904000pt;}
.ls26{letter-spacing:5.184000pt;}
.ls28{letter-spacing:7.744000pt;}
.ls2a{letter-spacing:18.048000pt;}
.lsb{letter-spacing:42.368000pt;}
.wsb{word-spacing:-35.349694pt;}
.ws14{word-spacing:-33.536000pt;}
.ws2{word-spacing:-33.088000pt;}
.wse{word-spacing:-24.960000pt;}
.wsc{word-spacing:-24.768000pt;}
.ws13{word-spacing:-24.512000pt;}
.ws4{word-spacing:-24.256000pt;}
.ws16{word-spacing:-23.936000pt;}
.ws3{word-spacing:-23.808000pt;}
.ws15{word-spacing:-23.744000pt;}
.wsd{word-spacing:-23.680000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.753551pt;}
.ws5{word-spacing:-14.945280pt;}
.ws0{word-spacing:-14.720000pt;}
.ws10{word-spacing:-11.600000pt;}
.ws6{word-spacing:-9.920000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws9{word-spacing:-8.769387pt;}
.wsa{word-spacing:-8.389120pt;}
.wsf{word-spacing:-7.936000pt;}
.ws8{word-spacing:-0.037120pt;}
.ws12{word-spacing:0.000000pt;}
._d{margin-left:-6.686445pt;}
._5{margin-left:-1.884160pt;}
._6{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._7{width:4.789749pt;}
._a{width:6.547320pt;}
._8{width:7.476975pt;}
._c{width:8.410279pt;}
._b{width:9.574787pt;}
._9{width:10.793800pt;}
._f{width:12.654080pt;}
._e{width:14.252568pt;}
._10{width:16.354365pt;}
._3{width:105.706667pt;}
._4{width:340.000000pt;}
.fs7{font-size:5.120000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs6{font-size:42.240000pt;}
.fsc{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fsd{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fse{font-size:56.667449pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs9{font-size:67.461249pt;}
.fsf{font-size:74.368000pt;}
.fs4{font-size:85.760000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:2.556000pt;}
.y5{bottom:3.840000pt;}
.y39{bottom:4.160000pt;}
.y66{bottom:5.106667pt;}
.y6b{bottom:5.120000pt;}
.y68{bottom:5.426667pt;}
.y75{bottom:5.440000pt;}
.y64{bottom:6.066667pt;}
.y72{bottom:6.080000pt;}
.y51{bottom:6.373333pt;}
.y63{bottom:8.306667pt;}
.y7f{bottom:8.320000pt;}
.y2{bottom:8.960000pt;}
.y42{bottom:9.276000pt;}
.y4e{bottom:11.836000pt;}
.y4{bottom:20.800000pt;}
.y8d{bottom:21.480000pt;}
.y8c{bottom:23.720000pt;}
.y73{bottom:24.000000pt;}
.y71{bottom:26.240000pt;}
.y4d{bottom:32.990667pt;}
.y41{bottom:35.550667pt;}
.y38{bottom:37.760000pt;}
.y3{bottom:42.560000pt;}
.y40{bottom:46.430667pt;}
.y7{bottom:51.232000pt;}
.y4c{bottom:52.510667pt;}
.y37{bottom:54.400000pt;}
.y3f{bottom:57.950667pt;}
.y3e{bottom:69.470667pt;}
.y4b{bottom:69.790667pt;}
.y36{bottom:71.400000pt;}
.y4a{bottom:87.390667pt;}
.y3d{bottom:88.670667pt;}
.y49{bottom:93.150667pt;}
.y8a{bottom:93.792000pt;}
.y35{bottom:96.040000pt;}
.y4f{bottom:96.672000pt;}
.y48{bottom:107.230667pt;}
.y3a{bottom:110.116000pt;}
.y89{bottom:110.432000pt;}
.y34{bottom:112.680000pt;}
.y47{bottom:120.990667pt;}
.y88{bottom:127.424000pt;}
.y33{bottom:129.640000pt;}
.y46{bottom:134.777333pt;}
.y3c{bottom:144.057333pt;}
.y87{bottom:144.066667pt;}
.y32{bottom:146.280000pt;}
.y45{bottom:148.537333pt;}
.y3b{bottom:153.657333pt;}
.y86{bottom:161.026667pt;}
.y44{bottom:161.977333pt;}
.y31{bottom:163.240000pt;}
.y85{bottom:177.666667pt;}
.y30{bottom:179.880000pt;}
.y84{bottom:202.626667pt;}
.y2f{bottom:204.866667pt;}
.y83{bottom:216.080000pt;}
.y2e{bottom:221.506667pt;}
.yb4{bottom:224.066667pt;}
.y82{bottom:234.640000pt;}
.y2d{bottom:238.466667pt;}
.yb3{bottom:240.706667pt;}
.y81{bottom:253.533333pt;}
.yb2{bottom:257.373333pt;}
.y2c{bottom:257.986667pt;}
.y80{bottom:272.413333pt;}
.yb1{bottom:274.333333pt;}
.y2b{bottom:277.506667pt;}
.y1c{bottom:277.826667pt;}
.yf{bottom:290.013333pt;}
.y7e{bottom:290.973333pt;}
.y2a{bottom:297.026667pt;}
.y1b{bottom:299.586667pt;}
.yb0{bottom:307.933333pt;}
.y29{bottom:313.693333pt;}
.y7d{bottom:316.893333pt;}
.y1a{bottom:321.053333pt;}
.yaf{bottom:324.573333pt;}
.y28{bottom:330.653333pt;}
.y7c{bottom:333.533333pt;}
.yae{bottom:341.533333pt;}
.y19{bottom:342.493333pt;}
.y27{bottom:347.293333pt;}
.y7b{bottom:350.493333pt;}
.yad{bottom:358.173333pt;}
.y18{bottom:363.933333pt;}
.y26{bottom:364.253333pt;}
.y7a{bottom:370.053333pt;}
.yac{bottom:375.173333pt;}
.y17{bottom:385.373333pt;}
.y25{bottom:388.893333pt;}
.y79{bottom:389.573333pt;}
.yab{bottom:391.813333pt;}
.y78{bottom:403.013333pt;}
.y24{bottom:405.533333pt;}
.y16{bottom:406.813333pt;}
.yaa{bottom:408.453333pt;}
.y77{bottom:421.893333pt;}
.y23{bottom:422.533333pt;}
.ya9{bottom:425.413333pt;}
.y15{bottom:428.293333pt;}
.y22{bottom:439.173333pt;}
.y76{bottom:440.453333pt;}
.ya8{bottom:442.053333pt;}
.y14{bottom:449.733333pt;}
.y21{bottom:456.133333pt;}
.ya7{bottom:459.013333pt;}
.y74{bottom:459.333333pt;}
.y13{bottom:471.173333pt;}
.y20{bottom:472.773333pt;}
.ya6{bottom:475.653333pt;}
.y70{bottom:478.240000pt;}
.y1f{bottom:489.733333pt;}
.y12{bottom:492.613333pt;}
.ya5{bottom:492.640000pt;}
.y1e{bottom:506.373333pt;}
.ya4{bottom:509.280000pt;}
.y11{bottom:514.053333pt;}
.y6f{bottom:522.080000pt;}
.y1d{bottom:523.333333pt;}
.ya3{bottom:526.240000pt;}
.y10{bottom:535.813333pt;}
.y6e{bottom:538.720000pt;}
.ya2{bottom:543.200000pt;}
.y6d{bottom:555.680000pt;}
.ya1{bottom:562.400000pt;}
.y6c{bottom:575.200000pt;}
.ya0{bottom:587.360000pt;}
.y6a{bottom:588.640000pt;}
.y9f{bottom:604.026667pt;}
.y69{bottom:607.240000pt;}
.y9e{bottom:620.666667pt;}
.y67{bottom:626.120000pt;}
.y9d{bottom:637.626667pt;}
.y65{bottom:645.000000pt;}
.y9c{bottom:654.266667pt;}
.y62{bottom:663.560000pt;}
.y9b{bottom:671.226667pt;}
.y9a{bottom:687.866667pt;}
.y61{bottom:689.466667pt;}
.y99{bottom:704.826667pt;}
.y60{bottom:714.466667pt;}
.y98{bottom:721.506667pt;}
.y5f{bottom:733.666667pt;}
.y97{bottom:738.466667pt;}
.y5e{bottom:750.626667pt;}
.y96{bottom:763.106667pt;}
.y5d{bottom:767.266667pt;}
.y95{bottom:780.066667pt;}
.y5c{bottom:784.226667pt;}
.y94{bottom:799.586667pt;}
.y5b{bottom:808.866667pt;}
.y93{bottom:819.106667pt;}
.y5a{bottom:825.826667pt;}
.ye{bottom:836.413333pt;}
.y92{bottom:838.653333pt;}
.yd{bottom:840.893333pt;}
.y59{bottom:842.493333pt;}
.y91{bottom:852.093333pt;}
.yc{bottom:866.813333pt;}
.y58{bottom:867.133333pt;}
.y90{bottom:870.653333pt;}
.y57{bottom:884.093333pt;}
.y8f{bottom:889.533333pt;}
.yb{bottom:890.173333pt;}
.y56{bottom:900.733333pt;}
.ya{bottom:903.613333pt;}
.y8e{bottom:908.413333pt;}
.y55{bottom:917.693333pt;}
.y9{bottom:924.413333pt;}
.y8b{bottom:926.973333pt;}
.y54{bottom:934.333333pt;}
.y53{bottom:951.333333pt;}
.y8{bottom:952.933333pt;}
.y50{bottom:955.840000pt;}
.y52{bottom:967.973333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h1c{height:5.022500pt;}
.h22{height:17.906667pt;}
.h24{height:17.952000pt;}
.h23{height:18.226667pt;}
.h27{height:18.240000pt;}
.h26{height:18.266667pt;}
.h21{height:21.106667pt;}
.h1f{height:24.640000pt;}
.h19{height:26.381250pt;}
.h18{height:31.406250pt;}
.hb{height:33.834240pt;}
.hf{height:36.431250pt;}
.h28{height:36.506667pt;}
.h10{height:36.920625pt;}
.he{height:37.410000pt;}
.h25{height:39.040000pt;}
.ha{height:41.456250pt;}
.h1a{height:47.713750pt;}
.h1b{height:49.020000pt;}
.h7{height:50.925000pt;}
.h12{height:51.264000pt;}
.h6{height:52.762500pt;}
.h11{height:54.036460pt;}
.hc{height:54.180000pt;}
.h1e{height:54.349786pt;}
.h20{height:56.502250pt;}
.h16{height:56.988750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h1d{height:60.070816pt;}
.h13{height:63.274240pt;}
.h14{height:63.656250pt;}
.h9{height:64.500000pt;}
.h15{height:65.781915pt;}
.h8{height:68.693760pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.h17{height:179.240000pt;}
.hd{height:544.146667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wd{width:26.580000pt;}
.w1e{width:28.180000pt;}
.w13{width:28.500000pt;}
.w22{width:30.720000pt;}
.w24{width:36.146667pt;}
.w26{width:36.160000pt;}
.w28{width:36.186667pt;}
.w19{width:37.426667pt;}
.w1b{width:37.440000pt;}
.w1d{width:37.466667pt;}
.w17{width:37.760000pt;}
.w7{width:43.506667pt;}
.w21{width:44.506667pt;}
.w18{width:45.792000pt;}
.w1c{width:51.826667pt;}
.w27{width:54.706667pt;}
.w1a{width:59.218667pt;}
.w16{width:61.146667pt;}
.w23{width:62.112000pt;}
.wa{width:72.992000pt;}
.w25{width:78.738667pt;}
.w14{width:83.200000pt;}
.wc{width:85.120000pt;}
.we{width:86.720000pt;}
.w15{width:89.306667pt;}
.w11{width:91.858667pt;}
.w2{width:92.180000pt;}
.w8{width:93.440000pt;}
.w1f{width:95.680000pt;}
.w9{width:98.304000pt;}
.w20{width:102.106667pt;}
.w12{width:110.440000pt;}
.w4{width:117.780000pt;}
.wb{width:128.658667pt;}
.wf{width:137.626667pt;}
.w6{width:144.960000pt;}
.w10{width:146.946667pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.346667pt;}
.x3e{left:9.266667pt;}
.x27{left:10.560000pt;}
.x4{left:11.826667pt;}
.x38{left:12.813333pt;}
.x29{left:14.066667pt;}
.x14{left:15.028000pt;}
.x16{left:15.988000pt;}
.x15{left:17.268000pt;}
.x4a{left:19.506667pt;}
.x48{left:20.466667pt;}
.x4b{left:21.426667pt;}
.x49{left:22.720000pt;}
.x30{left:23.680000pt;}
.x2e{left:24.653333pt;}
.x6{left:25.586667pt;}
.x2c{left:26.880000pt;}
.x2f{left:27.853333pt;}
.x2d{left:28.813333pt;}
.x39{left:32.346667pt;}
.x35{left:34.266667pt;}
.x2b{left:36.520000pt;}
.xf{left:39.028000pt;}
.x3a{left:41.293333pt;}
.x1a{left:42.260000pt;}
.x10{left:45.140000pt;}
.x13{left:47.380000pt;}
.xe{left:48.980000pt;}
.x1c{left:50.900000pt;}
.x18{left:55.373333pt;}
.x33{left:57.280000pt;}
.x1b{left:58.902667pt;}
.x12{left:67.542667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x56{left:81.632000pt;}
.x2{left:84.822667pt;}
.x1d{left:91.542667pt;}
.x19{left:95.062667pt;}
.x55{left:100.832000pt;}
.x57{left:105.632000pt;}
.x3c{left:109.164000pt;}
.x11{left:110.742667pt;}
.x20{left:112.693333pt;}
.x4e{left:119.764000pt;}
.x32{left:122.644000pt;}
.x21{left:124.864000pt;}
.x23{left:134.480000pt;}
.x3d{left:138.320000pt;}
.x58{left:153.666667pt;}
.x3{left:162.000000pt;}
.x24{left:178.640000pt;}
.x17{left:194.640000pt;}
.x1e{left:210.640000pt;}
.x4f{left:216.093333pt;}
.x4d{left:217.053333pt;}
.x3f{left:222.173333pt;}
.x3b{left:241.053333pt;}
.x1f{left:248.426667pt;}
.x25{left:272.733333pt;}
.x31{left:292.933333pt;}
.x22{left:304.133333pt;}
.x40{left:312.133333pt;}
.x50{left:318.853333pt;}
.x34{left:348.293333pt;}
.x51{left:364.320000pt;}
.x26{left:371.680000pt;}
.x41{left:373.920000pt;}
.x52{left:395.680000pt;}
.x4c{left:396.960000pt;}
.x42{left:412.320000pt;}
.xb{left:437.626667pt;}
.x28{left:445.320000pt;}
.xa{left:451.706667pt;}
.x43{left:459.080000pt;}
.x36{left:495.880000pt;}
.x44{left:497.160000pt;}
.x45{left:557.040000pt;}
.x2a{left:574.640000pt;}
.x37{left:588.400000pt;}
.x46{left:595.133333pt;}
.x53{left:611.453333pt;}
.x47{left:647.613333pt;}
.x54{left:667.133333pt;}
.xc{left:679.013333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xd{left:717.413333pt;}
}




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