
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2bfe24b69dbbe85cd943a25e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_f3e5d6204cbd9bfb686eacae.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_748513fd69810add1f4a4dd7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_861edfab56d2ac35d656f5cf.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_f55517db7b03adb0da26576a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8de9c0a1502f67de1f8ec225.woff')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_84de54fa92c26bb1003d2df4.woff')format("woff");}.ff8{font-family:ff8;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls2d{letter-spacing:-7.980000px;}
.ls33{letter-spacing:-7.080000px;}
.ls11{letter-spacing:-5.940000px;}
.ls12{letter-spacing:-5.580000px;}
.ls37{letter-spacing:-1.116000px;}
.ls1a{letter-spacing:-0.422400px;}
.ls13{letter-spacing:-0.261600px;}
.lse{letter-spacing:-0.186600px;}
.ls2c{letter-spacing:-0.153600px;}
.ls19{letter-spacing:-0.151800px;}
.ls1c{letter-spacing:-0.125400px;}
.ls38{letter-spacing:-0.124200px;}
.ls6{letter-spacing:-0.121200px;}
.ls1f{letter-spacing:-0.111000px;}
.ls20{letter-spacing:-0.103800px;}
.ls3{letter-spacing:-0.090000px;}
.ls2b{letter-spacing:-0.084600px;}
.ls34{letter-spacing:-0.067200px;}
.ls27{letter-spacing:-0.062400px;}
.ls10{letter-spacing:-0.014760px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.011160px;}
.lsc{letter-spacing:0.024120px;}
.ls39{letter-spacing:0.042480px;}
.ls8{letter-spacing:0.045360px;}
.ls9{letter-spacing:0.048960px;}
.ls2a{letter-spacing:0.051120px;}
.lsb{letter-spacing:0.056880px;}
.ls32{letter-spacing:0.068400px;}
.ls7{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.098400px;}
.ls36{letter-spacing:0.099720px;}
.lsd{letter-spacing:0.109800px;}
.ls1e{letter-spacing:0.113400px;}
.ls28{letter-spacing:0.116280px;}
.ls4{letter-spacing:0.116400px;}
.lsa{letter-spacing:0.118200px;}
.ls23{letter-spacing:0.119160px;}
.ls3a{letter-spacing:0.119400px;}
.ls1d{letter-spacing:0.127200px;}
.ls21{letter-spacing:0.138600px;}
.ls35{letter-spacing:0.168480px;}
.ls25{letter-spacing:0.168600px;}
.ls26{letter-spacing:0.169200px;}
.ls5{letter-spacing:0.173400px;}
.ls24{letter-spacing:0.176400px;}
.ls22{letter-spacing:0.177120px;}
.ls2e{letter-spacing:0.180600px;}
.ls1b{letter-spacing:0.181200px;}
.ls30{letter-spacing:0.181440px;}
.ls31{letter-spacing:0.199440px;}
.ls0{letter-spacing:0.360000px;}
.ls2f{letter-spacing:3.693600px;}
.ls18{letter-spacing:45.566640px;}
.ls16{letter-spacing:46.286640px;}
.ls15{letter-spacing:49.526640px;}
.ls29{letter-spacing:49.886640px;}
.ls17{letter-spacing:52.406640px;}
.ls3b{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws14{word-spacing:-13.407600px;}
.ws21{word-spacing:-13.407000px;}
.ws4{word-spacing:-13.399800px;}
.ws1d{word-spacing:-13.395600px;}
.ws1c{word-spacing:-13.395000px;}
.ws17{word-spacing:-13.353600px;}
.wsc{word-spacing:-13.344600px;}
.ws3{word-spacing:-13.342800px;}
.ws19{word-spacing:-13.339800px;}
.ws11{word-spacing:-13.324800px;}
.wsb{word-spacing:-13.275360px;}
.wsd{word-spacing:-13.237560px;}
.ws2{word-spacing:-13.226400px;}
.ws1e{word-spacing:-13.164000px;}
.ws23{word-spacing:-13.159200px;}
.ws1a{word-spacing:-13.115400px;}
.ws16{word-spacing:-13.101000px;}
.ws12{word-spacing:-13.074600px;}
.ws26{word-spacing:-13.072800px;}
.ws9{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.964800px;}
.ws13{word-spacing:-12.804000px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-0.060120px;}
.ws8{word-spacing:0.000000px;}
.ws1b{word-spacing:0.043680px;}
.ws1f{word-spacing:0.093480px;}
.ws27{word-spacing:1.055880px;}
.ws7{word-spacing:4.304880px;}
.ws15{word-spacing:16.141320px;}
.wsf{word-spacing:16.501320px;}
.wse{word-spacing:17.581320px;}
.ws5{word-spacing:17.624880px;}
.ws18{word-spacing:17.941320px;}
.ws22{word-spacing:20.936160px;}
.ws24{word-spacing:21.296160px;}
.ws25{word-spacing:23.453640px;}
.ws20{word-spacing:23.813640px;}
._f{margin-left:-7.768800px;}
._e{margin-left:-5.690640px;}
._5{margin-left:-3.126000px;}
._2{margin-left:-2.104200px;}
._0{margin-left:-1.020000px;}
._1{width:1.258200px;}
._3{width:3.006000px;}
._8{width:4.328400px;}
._6{width:5.530800px;}
._7{width:6.554403px;}
._a{width:7.573200px;}
._9{width:8.595597px;}
._4{width:9.619200px;}
._d{width:10.661880px;}
._c{width:12.024000px;}
._b{width:14.302440px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yf7{bottom:116.670000px;}
.ye8{bottom:118.290000px;}
.y7e{bottom:119.010000px;}
.yd3{bottom:119.550000px;}
.y63{bottom:132.150000px;}
.ya5{bottom:144.390000px;}
.y26{bottom:144.660000px;}
.y62{bottom:149.790000px;}
.yf6{bottom:152.310000px;}
.ye7{bottom:153.930000px;}
.y7d{bottom:154.650000px;}
.y95{bottom:154.830000px;}
.yd2{bottom:155.100000px;}
.y25{bottom:162.210000px;}
.ybb{bottom:164.190000px;}
.y46{bottom:177.060000px;}
.y24{bottom:179.850000px;}
.ya4{bottom:179.940000px;}
.y61{bottom:185.340000px;}
.y94{bottom:187.050000px;}
.yf5{bottom:187.860000px;}
.ye6{bottom:189.480000px;}
.y7c{bottom:190.200000px;}
.yd1{bottom:190.650000px;}
.y23{bottom:197.400000px;}
.y45{bottom:209.190000px;}
.y22{bottom:214.950000px;}
.ya3{bottom:215.580000px;}
.y60{bottom:220.980000px;}
.yf4{bottom:223.410000px;}
.ye5{bottom:225.120000px;}
.y7b{bottom:225.840000px;}
.yd0{bottom:226.290000px;}
.y21{bottom:250.590000px;}
.ya2{bottom:251.130000px;}
.y5f{bottom:256.530000px;}
.yf3{bottom:259.050000px;}
.ye4{bottom:260.670000px;}
.y7a{bottom:261.390000px;}
.ycf{bottom:261.840000px;}
.y20{bottom:268.140000px;}
.ye3{bottom:278.220000px;}
.yce{bottom:279.480000px;}
.yba{bottom:282.270000px;}
.y1f{bottom:285.780000px;}
.ya1{bottom:286.680000px;}
.y5e{bottom:292.080000px;}
.yf2{bottom:294.600000px;}
.y79{bottom:296.940000px;}
.ycd{bottom:297.030000px;}
.yb9{bottom:299.910000px;}
.y1e{bottom:303.330000px;}
.ye2{bottom:304.860000px;}
.yb8{bottom:317.460000px;}
.y1d{bottom:320.880000px;}
.ya0{bottom:322.320000px;}
.y5d{bottom:327.720000px;}
.yf1{bottom:330.240000px;}
.y78{bottom:332.580000px;}
.ye1{bottom:337.080000px;}
.y44{bottom:346.440000px;}
.y1c{bottom:347.790000px;}
.ycc{bottom:350.220000px;}
.yb7{bottom:353.010000px;}
.y9f{bottom:357.870000px;}
.y5c{bottom:363.270000px;}
.yf0{bottom:365.790000px;}
.y77{bottom:368.130000px;}
.y43{bottom:381.990000px;}
.ycb{bottom:382.440000px;}
.yb6{bottom:388.650000px;}
.y9e{bottom:393.510000px;}
.y1b{bottom:396.120000px;}
.y5b{bottom:398.910000px;}
.yef{bottom:401.340000px;}
.y76{bottom:403.770000px;}
.y1a{bottom:413.670000px;}
.y5a{bottom:416.460000px;}
.y42{bottom:417.630000px;}
.yb5{bottom:424.200000px;}
.y9d{bottom:429.060000px;}
.y19{bottom:431.310000px;}
.y109{bottom:432.030000px;}
.y59{bottom:434.010000px;}
.yee{bottom:436.980000px;}
.y75{bottom:439.320000px;}
.y18{bottom:448.860000px;}
.y41{bottom:453.180000px;}
.y108{bottom:458.580000px;}
.yb4{bottom:459.750000px;}
.y9c{bottom:464.610000px;}
.y17{bottom:466.410000px;}
.y58{bottom:469.650000px;}
.yed{bottom:472.560000px;}
.y74{bottom:474.900000px;}
.y107{bottom:476.160000px;}
.ye0{bottom:480.480000px;}
.y93{bottom:483.360000px;}
.y16{bottom:484.080000px;}
.y57{bottom:487.230000px;}
.y40{bottom:488.760000px;}
.yec{bottom:490.200000px;}
.yb3{bottom:495.420000px;}
.y9b{bottom:500.280000px;}
.yca{bottom:500.550000px;}
.y106{bottom:502.800000px;}
.y56{bottom:504.780000px;}
.y73{bottom:510.540000px;}
.y15{bottom:510.990000px;}
.ydf{bottom:512.700000px;}
.y9a{bottom:517.830000px;}
.yc9{bottom:518.190000px;}
.y92{bottom:519.000000px;}
.yeb{bottom:522.330000px;}
.y3f{bottom:524.400000px;}
.y105{bottom:529.350000px;}
.yb2{bottom:530.970000px;}
.y99{bottom:535.470000px;}
.yc8{bottom:535.740000px;}
.y91{bottom:536.550000px;}
.y55{bottom:540.420000px;}
.y72{bottom:546.090000px;}
.y90{bottom:554.190000px;}
.y104{bottom:555.990000px;}
.y14{bottom:559.590000px;}
.y3e{bottom:559.950000px;}
.yb1{bottom:566.610000px;}
.y98{bottom:567.690000px;}
.yc7{bottom:571.290000px;}
.y54{bottom:575.970000px;}
.y71{bottom:581.730000px;}
.y103{bottom:582.540000px;}
.y8f{bottom:589.740000px;}
.y3d{bottom:595.590000px;}
.y13{bottom:596.580000px;}
.y102{bottom:600.090000px;}
.yb0{bottom:602.160000px;}
.yc6{bottom:606.930000px;}
.y53{bottom:611.610000px;}
.y12{bottom:614.130000px;}
.y70{bottom:617.280000px;}
.yea{bottom:624.930000px;}
.y8e{bottom:625.290000px;}
.y101{bottom:627.000000px;}
.y3c{bottom:631.140000px;}
.y11{bottom:631.770000px;}
.y6f{bottom:634.830000px;}
.yaf{bottom:637.710000px;}
.yc5{bottom:642.480000px;}
.y52{bottom:647.160000px;}
.y10{bottom:649.320000px;}
.y6e{bottom:652.470000px;}
.yde{bottom:660.030000px;}
.ye9{bottom:660.480000px;}
.y8d{bottom:660.930000px;}
.y3b{bottom:666.690000px;}
.yf{bottom:666.960000px;}
.y6d{bottom:670.020000px;}
.yae{bottom:673.350000px;}
.y100{bottom:675.330000px;}
.yc4{bottom:678.030000px;}
.y51{bottom:682.710000px;}
.ye{bottom:684.510000px;}
.yad{bottom:690.900000px;}
.yff{bottom:692.880000px;}
.ydd{bottom:695.670000px;}
.y8c{bottom:696.480000px;}
.y6c{bottom:696.660000px;}
.yd{bottom:702.060000px;}
.y3a{bottom:702.330000px;}
.yfe{bottom:710.520000px;}
.ydc{bottom:713.220000px;}
.yc3{bottom:713.670000px;}
.y50{bottom:718.350000px;}
.yc{bottom:719.700000px;}
.y39{bottom:719.880000px;}
.yac{bottom:723.120000px;}
.yfd{bottom:728.070000px;}
.y8b{bottom:732.030000px;}
.y6b{bottom:732.210000px;}
.yb{bottom:737.250000px;}
.yfc{bottom:745.620000px;}
.ydb{bottom:748.860000px;}
.yc2{bottom:749.220000px;}
.y8a{bottom:749.670000px;}
.y6a{bottom:749.760000px;}
.y4f{bottom:753.900000px;}
.ya{bottom:754.890000px;}
.y38{bottom:755.520000px;}
.yfb{bottom:763.260000px;}
.y69{bottom:767.400000px;}
.yfa{bottom:780.810000px;}
.y9{bottom:781.800000px;}
.yda{bottom:784.410000px;}
.yc1{bottom:784.860000px;}
.y89{bottom:785.220000px;}
.y4e{bottom:789.540000px;}
.y37{bottom:791.070000px;}
.y68{bottom:799.620000px;}
.yf9{bottom:807.720000px;}
.yd9{bottom:819.960000px;}
.yc0{bottom:820.410000px;}
.y88{bottom:820.860000px;}
.y4d{bottom:825.090000px;}
.y36{bottom:826.620000px;}
.y8{bottom:830.040000px;}
.y87{bottom:838.410000px;}
.y35{bottom:844.260000px;}
.y97{bottom:850.020000px;}
.yd8{bottom:855.600000px;}
.ybf{bottom:855.960000px;}
.y4c{bottom:860.640000px;}
.y34{bottom:861.810000px;}
.y7{bottom:865.860000px;}
.y86{bottom:873.960000px;}
.y33{bottom:879.450000px;}
.y96{bottom:882.240000px;}
.yd7{bottom:891.150000px;}
.ybe{bottom:891.600000px;}
.y4b{bottom:896.280000px;}
.y6{bottom:901.860000px;}
.y32{bottom:906.000000px;}
.y67{bottom:908.700000px;}
.y85{bottom:909.600000px;}
.yd6{bottom:926.790000px;}
.ybd{bottom:927.150000px;}
.y4a{bottom:931.830000px;}
.y5{bottom:937.860000px;}
.y31{bottom:941.550000px;}
.y66{bottom:944.340000px;}
.yf8{bottom:944.790000px;}
.y84{bottom:945.150000px;}
.y30{bottom:959.190000px;}
.y65{bottom:961.890000px;}
.yd5{bottom:962.340000px;}
.yab{bottom:962.790000px;}
.y49{bottom:967.470000px;}
.y4{bottom:973.950000px;}
.y2f{bottom:976.740000px;}
.y83{bottom:980.790000px;}
.y48{bottom:985.020000px;}
.y64{bottom:994.110000px;}
.y2e{bottom:994.290000px;}
.yd4{bottom:997.890000px;}
.yaa{bottom:998.340000px;}
.y3{bottom:1012.230000px;}
.ya9{bottom:1015.920000px;}
.y82{bottom:1016.370000px;}
.y47{bottom:1017.270000px;}
.y2d{bottom:1021.230000px;}
.ya8{bottom:1033.560000px;}
.ybc{bottom:1033.920000px;}
.y81{bottom:1051.920000px;}
.ya7{bottom:1069.110000px;}
.y2c{bottom:1069.560000px;}
.y2b{bottom:1087.110000px;}
.y80{bottom:1087.560000px;}
.ya6{bottom:1104.750000px;}
.y7f{bottom:1105.110000px;}
.y2a{bottom:1122.750000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h6{height:52.311445px;}
.h7{height:55.779258px;}
.h5{height:57.323320px;}
.ha{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x6{left:95.039987px;}
.x11{left:110.609987px;}
.x7{left:121.229987px;}
.x8{left:131.849987px;}
.xa{left:149.039987px;}
.x9{left:162.569987px;}
.xf{left:167.069987px;}
.x12{left:169.769987px;}
.x10{left:171.569987px;}
.x4{left:176.069987px;}
.x5{left:178.769987px;}
.xe{left:189.569987px;}
.xb{left:194.969987px;}
.x2{left:201.539987px;}
.xc{left:207.569987px;}
.xd{left:212.069987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls2d{letter-spacing:-7.093333pt;}
.ls33{letter-spacing:-6.293333pt;}
.ls11{letter-spacing:-5.280000pt;}
.ls12{letter-spacing:-4.960000pt;}
.ls37{letter-spacing:-0.992000pt;}
.ls1a{letter-spacing:-0.375467pt;}
.ls13{letter-spacing:-0.232533pt;}
.lse{letter-spacing:-0.165867pt;}
.ls2c{letter-spacing:-0.136533pt;}
.ls19{letter-spacing:-0.134933pt;}
.ls1c{letter-spacing:-0.111467pt;}
.ls38{letter-spacing:-0.110400pt;}
.ls6{letter-spacing:-0.107733pt;}
.ls1f{letter-spacing:-0.098667pt;}
.ls20{letter-spacing:-0.092267pt;}
.ls3{letter-spacing:-0.080000pt;}
.ls2b{letter-spacing:-0.075200pt;}
.ls34{letter-spacing:-0.059733pt;}
.ls27{letter-spacing:-0.055467pt;}
.ls10{letter-spacing:-0.013120pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.009920pt;}
.lsc{letter-spacing:0.021440pt;}
.ls39{letter-spacing:0.037760pt;}
.ls8{letter-spacing:0.040320pt;}
.ls9{letter-spacing:0.043520pt;}
.ls2a{letter-spacing:0.045440pt;}
.lsb{letter-spacing:0.050560pt;}
.ls32{letter-spacing:0.060800pt;}
.ls7{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.087467pt;}
.ls36{letter-spacing:0.088640pt;}
.lsd{letter-spacing:0.097600pt;}
.ls1e{letter-spacing:0.100800pt;}
.ls28{letter-spacing:0.103360pt;}
.ls4{letter-spacing:0.103467pt;}
.lsa{letter-spacing:0.105067pt;}
.ls23{letter-spacing:0.105920pt;}
.ls3a{letter-spacing:0.106133pt;}
.ls1d{letter-spacing:0.113067pt;}
.ls21{letter-spacing:0.123200pt;}
.ls35{letter-spacing:0.149760pt;}
.ls25{letter-spacing:0.149867pt;}
.ls26{letter-spacing:0.150400pt;}
.ls5{letter-spacing:0.154133pt;}
.ls24{letter-spacing:0.156800pt;}
.ls22{letter-spacing:0.157440pt;}
.ls2e{letter-spacing:0.160533pt;}
.ls1b{letter-spacing:0.161067pt;}
.ls30{letter-spacing:0.161280pt;}
.ls31{letter-spacing:0.177280pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:3.283200pt;}
.ls18{letter-spacing:40.503680pt;}
.ls16{letter-spacing:41.143680pt;}
.ls15{letter-spacing:44.023680pt;}
.ls29{letter-spacing:44.343680pt;}
.ls17{letter-spacing:46.583680pt;}
.ls3b{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws14{word-spacing:-11.917867pt;}
.ws21{word-spacing:-11.917333pt;}
.ws4{word-spacing:-11.910933pt;}
.ws1d{word-spacing:-11.907200pt;}
.ws1c{word-spacing:-11.906667pt;}
.ws17{word-spacing:-11.869867pt;}
.wsc{word-spacing:-11.861867pt;}
.ws3{word-spacing:-11.860267pt;}
.ws19{word-spacing:-11.857600pt;}
.ws11{word-spacing:-11.844267pt;}
.wsb{word-spacing:-11.800320pt;}
.wsd{word-spacing:-11.766720pt;}
.ws2{word-spacing:-11.756800pt;}
.ws1e{word-spacing:-11.701333pt;}
.ws23{word-spacing:-11.697067pt;}
.ws1a{word-spacing:-11.658133pt;}
.ws16{word-spacing:-11.645333pt;}
.ws12{word-spacing:-11.621867pt;}
.ws26{word-spacing:-11.620267pt;}
.ws9{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.524267pt;}
.ws13{word-spacing:-11.381333pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-0.053440pt;}
.ws8{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.038827pt;}
.ws1f{word-spacing:0.083093pt;}
.ws27{word-spacing:0.938560pt;}
.ws7{word-spacing:3.826560pt;}
.ws15{word-spacing:14.347840pt;}
.wsf{word-spacing:14.667840pt;}
.wse{word-spacing:15.627840pt;}
.ws5{word-spacing:15.666560pt;}
.ws18{word-spacing:15.947840pt;}
.ws22{word-spacing:18.609920pt;}
.ws24{word-spacing:18.929920pt;}
.ws25{word-spacing:20.847680pt;}
.ws20{word-spacing:21.167680pt;}
._f{margin-left:-6.905600pt;}
._e{margin-left:-5.058347pt;}
._5{margin-left:-2.778666pt;}
._2{margin-left:-1.870400pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.118400pt;}
._3{width:2.672000pt;}
._8{width:3.847466pt;}
._6{width:4.916266pt;}
._7{width:5.826136pt;}
._a{width:6.731734pt;}
._9{width:7.640531pt;}
._4{width:8.550400pt;}
._d{width:9.477227pt;}
._c{width:10.688000pt;}
._b{width:12.713280pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yf7{bottom:103.706667pt;}
.ye8{bottom:105.146667pt;}
.y7e{bottom:105.786667pt;}
.yd3{bottom:106.266667pt;}
.y63{bottom:117.466667pt;}
.ya5{bottom:128.346667pt;}
.y26{bottom:128.586667pt;}
.y62{bottom:133.146667pt;}
.yf6{bottom:135.386667pt;}
.ye7{bottom:136.826667pt;}
.y7d{bottom:137.466667pt;}
.y95{bottom:137.626667pt;}
.yd2{bottom:137.866667pt;}
.y25{bottom:144.186667pt;}
.ybb{bottom:145.946667pt;}
.y46{bottom:157.386667pt;}
.y24{bottom:159.866667pt;}
.ya4{bottom:159.946667pt;}
.y61{bottom:164.746667pt;}
.y94{bottom:166.266667pt;}
.yf5{bottom:166.986667pt;}
.ye6{bottom:168.426667pt;}
.y7c{bottom:169.066667pt;}
.yd1{bottom:169.466667pt;}
.y23{bottom:175.466667pt;}
.y45{bottom:185.946667pt;}
.y22{bottom:191.066667pt;}
.ya3{bottom:191.626667pt;}
.y60{bottom:196.426667pt;}
.yf4{bottom:198.586667pt;}
.ye5{bottom:200.106667pt;}
.y7b{bottom:200.746667pt;}
.yd0{bottom:201.146667pt;}
.y21{bottom:222.746667pt;}
.ya2{bottom:223.226667pt;}
.y5f{bottom:228.026667pt;}
.yf3{bottom:230.266667pt;}
.ye4{bottom:231.706667pt;}
.y7a{bottom:232.346667pt;}
.ycf{bottom:232.746667pt;}
.y20{bottom:238.346667pt;}
.ye3{bottom:247.306667pt;}
.yce{bottom:248.426667pt;}
.yba{bottom:250.906667pt;}
.y1f{bottom:254.026667pt;}
.ya1{bottom:254.826667pt;}
.y5e{bottom:259.626667pt;}
.yf2{bottom:261.866667pt;}
.y79{bottom:263.946667pt;}
.ycd{bottom:264.026667pt;}
.yb9{bottom:266.586667pt;}
.y1e{bottom:269.626667pt;}
.ye2{bottom:270.986667pt;}
.yb8{bottom:282.186667pt;}
.y1d{bottom:285.226667pt;}
.ya0{bottom:286.506667pt;}
.y5d{bottom:291.306667pt;}
.yf1{bottom:293.546667pt;}
.y78{bottom:295.626667pt;}
.ye1{bottom:299.626667pt;}
.y44{bottom:307.946667pt;}
.y1c{bottom:309.146667pt;}
.ycc{bottom:311.306667pt;}
.yb7{bottom:313.786667pt;}
.y9f{bottom:318.106667pt;}
.y5c{bottom:322.906667pt;}
.yf0{bottom:325.146667pt;}
.y77{bottom:327.226667pt;}
.y43{bottom:339.546667pt;}
.ycb{bottom:339.946667pt;}
.yb6{bottom:345.466667pt;}
.y9e{bottom:349.786667pt;}
.y1b{bottom:352.106667pt;}
.y5b{bottom:354.586667pt;}
.yef{bottom:356.746667pt;}
.y76{bottom:358.906667pt;}
.y1a{bottom:367.706667pt;}
.y5a{bottom:370.186667pt;}
.y42{bottom:371.226667pt;}
.yb5{bottom:377.066667pt;}
.y9d{bottom:381.386667pt;}
.y19{bottom:383.386667pt;}
.y109{bottom:384.026667pt;}
.y59{bottom:385.786667pt;}
.yee{bottom:388.426667pt;}
.y75{bottom:390.506667pt;}
.y18{bottom:398.986667pt;}
.y41{bottom:402.826667pt;}
.y108{bottom:407.626667pt;}
.yb4{bottom:408.666667pt;}
.y9c{bottom:412.986667pt;}
.y17{bottom:414.586667pt;}
.y58{bottom:417.466667pt;}
.yed{bottom:420.053333pt;}
.y74{bottom:422.133333pt;}
.y107{bottom:423.253333pt;}
.ye0{bottom:427.093333pt;}
.y93{bottom:429.653333pt;}
.y16{bottom:430.293333pt;}
.y57{bottom:433.093333pt;}
.y40{bottom:434.453333pt;}
.yec{bottom:435.733333pt;}
.yb3{bottom:440.373333pt;}
.y9b{bottom:444.693333pt;}
.yca{bottom:444.933333pt;}
.y106{bottom:446.933333pt;}
.y56{bottom:448.693333pt;}
.y73{bottom:453.813333pt;}
.y15{bottom:454.213333pt;}
.ydf{bottom:455.733333pt;}
.y9a{bottom:460.293333pt;}
.yc9{bottom:460.613333pt;}
.y92{bottom:461.333333pt;}
.yeb{bottom:464.293333pt;}
.y3f{bottom:466.133333pt;}
.y105{bottom:470.533333pt;}
.yb2{bottom:471.973333pt;}
.y99{bottom:475.973333pt;}
.yc8{bottom:476.213333pt;}
.y91{bottom:476.933333pt;}
.y55{bottom:480.373333pt;}
.y72{bottom:485.413333pt;}
.y90{bottom:492.613333pt;}
.y104{bottom:494.213333pt;}
.y14{bottom:497.413333pt;}
.y3e{bottom:497.733333pt;}
.yb1{bottom:503.653333pt;}
.y98{bottom:504.613333pt;}
.yc7{bottom:507.813333pt;}
.y54{bottom:511.973333pt;}
.y71{bottom:517.093333pt;}
.y103{bottom:517.813333pt;}
.y8f{bottom:524.213333pt;}
.y3d{bottom:529.413333pt;}
.y13{bottom:530.293333pt;}
.y102{bottom:533.413333pt;}
.yb0{bottom:535.253333pt;}
.yc6{bottom:539.493333pt;}
.y53{bottom:543.653333pt;}
.y12{bottom:545.893333pt;}
.y70{bottom:548.693333pt;}
.yea{bottom:555.493333pt;}
.y8e{bottom:555.813333pt;}
.y101{bottom:557.333333pt;}
.y3c{bottom:561.013333pt;}
.y11{bottom:561.573333pt;}
.y6f{bottom:564.293333pt;}
.yaf{bottom:566.853333pt;}
.yc5{bottom:571.093333pt;}
.y52{bottom:575.253333pt;}
.y10{bottom:577.173333pt;}
.y6e{bottom:579.973333pt;}
.yde{bottom:586.693333pt;}
.ye9{bottom:587.093333pt;}
.y8d{bottom:587.493333pt;}
.y3b{bottom:592.613333pt;}
.yf{bottom:592.853333pt;}
.y6d{bottom:595.573333pt;}
.yae{bottom:598.533333pt;}
.y100{bottom:600.293333pt;}
.yc4{bottom:602.693333pt;}
.y51{bottom:606.853333pt;}
.ye{bottom:608.453333pt;}
.yad{bottom:614.133333pt;}
.yff{bottom:615.893333pt;}
.ydd{bottom:618.373333pt;}
.y8c{bottom:619.093333pt;}
.y6c{bottom:619.253333pt;}
.yd{bottom:624.053333pt;}
.y3a{bottom:624.293333pt;}
.yfe{bottom:631.573333pt;}
.ydc{bottom:633.973333pt;}
.yc3{bottom:634.373333pt;}
.y50{bottom:638.533333pt;}
.yc{bottom:639.733333pt;}
.y39{bottom:639.893333pt;}
.yac{bottom:642.773333pt;}
.yfd{bottom:647.173333pt;}
.y8b{bottom:650.693333pt;}
.y6b{bottom:650.853333pt;}
.yb{bottom:655.333333pt;}
.yfc{bottom:662.773333pt;}
.ydb{bottom:665.653333pt;}
.yc2{bottom:665.973333pt;}
.y8a{bottom:666.373333pt;}
.y6a{bottom:666.453333pt;}
.y4f{bottom:670.133333pt;}
.ya{bottom:671.013333pt;}
.y38{bottom:671.573333pt;}
.yfb{bottom:678.453333pt;}
.y69{bottom:682.133333pt;}
.yfa{bottom:694.053333pt;}
.y9{bottom:694.933333pt;}
.yda{bottom:697.253333pt;}
.yc1{bottom:697.653333pt;}
.y89{bottom:697.973333pt;}
.y4e{bottom:701.813333pt;}
.y37{bottom:703.173333pt;}
.y68{bottom:710.773333pt;}
.yf9{bottom:717.973333pt;}
.yd9{bottom:728.853333pt;}
.yc0{bottom:729.253333pt;}
.y88{bottom:729.653333pt;}
.y4d{bottom:733.413333pt;}
.y36{bottom:734.773333pt;}
.y8{bottom:737.813333pt;}
.y87{bottom:745.253333pt;}
.y35{bottom:750.453333pt;}
.y97{bottom:755.573333pt;}
.yd8{bottom:760.533333pt;}
.ybf{bottom:760.853333pt;}
.y4c{bottom:765.013333pt;}
.y34{bottom:766.053333pt;}
.y7{bottom:769.653333pt;}
.y86{bottom:776.853333pt;}
.y33{bottom:781.733333pt;}
.y96{bottom:784.213333pt;}
.yd7{bottom:792.133333pt;}
.ybe{bottom:792.533333pt;}
.y4b{bottom:796.693333pt;}
.y6{bottom:801.653333pt;}
.y32{bottom:805.333333pt;}
.y67{bottom:807.733333pt;}
.y85{bottom:808.533333pt;}
.yd6{bottom:823.813333pt;}
.ybd{bottom:824.133333pt;}
.y4a{bottom:828.293333pt;}
.y5{bottom:833.653333pt;}
.y31{bottom:836.933333pt;}
.y66{bottom:839.413333pt;}
.yf8{bottom:839.813333pt;}
.y84{bottom:840.133333pt;}
.y30{bottom:852.613333pt;}
.y65{bottom:855.013333pt;}
.yd5{bottom:855.413333pt;}
.yab{bottom:855.813333pt;}
.y49{bottom:859.973333pt;}
.y4{bottom:865.733333pt;}
.y2f{bottom:868.213333pt;}
.y83{bottom:871.813333pt;}
.y48{bottom:875.573333pt;}
.y64{bottom:883.653333pt;}
.y2e{bottom:883.813333pt;}
.yd4{bottom:887.013333pt;}
.yaa{bottom:887.413333pt;}
.y3{bottom:899.760000pt;}
.ya9{bottom:903.040000pt;}
.y82{bottom:903.440000pt;}
.y47{bottom:904.240000pt;}
.y2d{bottom:907.760000pt;}
.ya8{bottom:918.720000pt;}
.ybc{bottom:919.040000pt;}
.y81{bottom:935.040000pt;}
.ya7{bottom:950.320000pt;}
.y2c{bottom:950.720000pt;}
.y2b{bottom:966.320000pt;}
.y80{bottom:966.720000pt;}
.ya6{bottom:982.000000pt;}
.y7f{bottom:982.320000pt;}
.y2a{bottom:998.000000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h6{height:46.499062pt;}
.h7{height:49.581562pt;}
.h5{height:50.954062pt;}
.ha{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x6{left:84.479988pt;}
.x11{left:98.319988pt;}
.x7{left:107.759988pt;}
.x8{left:117.199988pt;}
.xa{left:132.479988pt;}
.x9{left:144.506655pt;}
.xf{left:148.506655pt;}
.x12{left:150.906655pt;}
.x10{left:152.506655pt;}
.x4{left:156.506655pt;}
.x5{left:158.906655pt;}
.xe{left:168.506655pt;}
.xb{left:173.306655pt;}
.x2{left:179.146655pt;}
.xc{left:184.506655pt;}
.xd{left:188.506655pt;}
.x3{left:704.053322pt;}
}




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