
    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_44ab2ef4ff2bc355e74aa6bc.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_f5ac416e8ad58463de2318e5.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_ba8d6e0b98d7602efaa39c00.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_362dc9e3081daae36c8cea74.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_c8a522a8379d3b0ec3bcc0b5.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_d60a204ffb76207e8ebea5d4.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_51ea38006820eb33bcc64b2a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_51876ad143eaeb24190ff7db.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_083d914afde8d96d7d754c92.woff')format("woff");}.ff9{font-family:ff9;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;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.444600px;}
.ls21{letter-spacing:-0.426000px;}
.lse{letter-spacing:-0.226800px;}
.lsb{letter-spacing:-0.186600px;}
.ls1c{letter-spacing:-0.141600px;}
.ls7{letter-spacing:-0.135000px;}
.ls12{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.008400px;}
.ls1b{letter-spacing:-0.008280px;}
.lsf{letter-spacing:-0.007800px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.045360px;}
.ls14{letter-spacing:0.048960px;}
.ls11{letter-spacing:0.060600px;}
.ls15{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1f{letter-spacing:0.098400px;}
.ls19{letter-spacing:0.109200px;}
.ls1a{letter-spacing:0.115800px;}
.lsd{letter-spacing:0.133200px;}
.ls5{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.166200px;}
.lsc{letter-spacing:0.173400px;}
.ls8{letter-spacing:0.174600px;}
.ls17{letter-spacing:0.181200px;}
.ls1d{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls1e{letter-spacing:2.613600px;}
.ls22{letter-spacing:47.726640px;}
.ls16{letter-spacing:63.566640px;}
.ls20{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;}
}
.ws9{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws11{word-spacing:-13.425600px;}
.wsd{word-spacing:-13.407600px;}
.ws5{word-spacing:-13.399800px;}
.ws13{word-spacing:-13.359600px;}
.ws10{word-spacing:-13.342200px;}
.wsf{word-spacing:-13.335600px;}
.ws7{word-spacing:-13.287000px;}
.wsc{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws6{word-spacing:-13.218600px;}
.wse{word-spacing:-13.218120px;}
.ws12{word-spacing:-13.084800px;}
.ws4{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.wsa{word-spacing:0.000000px;}
.ws8{word-spacing:4.304880px;}
._8{margin-left:-3.673080px;}
._2{margin-left:-2.221560px;}
._1{margin-left:-1.047840px;}
._0{width:1.241532px;}
._6{width:2.807737px;}
._4{width:4.325760px;}
._3{width:6.312600px;}
._5{width:7.739388px;}
._7{width:8.883264px;}
._9{width:10.701360px;}
._a{width:11.955960px;}
._12{width:14.687316px;}
._11{width:16.304628px;}
._b{width:17.555040px;}
._c{width:18.618108px;}
._13{width:20.140200px;}
._e{width:21.162240px;}
._d{width:22.184280px;}
._15{width:24.329880px;}
._16{width:25.565760px;}
._10{width:28.136160px;}
._f{width:52.003800px;}
._14{width:54.047880px;}
._17{width:1520.334960px;}
.fc2{color:transparent;}
.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;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y64{bottom:7.830000px;}
.yae{bottom:7.860000px;}
.y6a{bottom:7.920000px;}
.y82{bottom:25.380000px;}
.y69{bottom:25.470000px;}
.y6c{bottom:26.550000px;}
.y7b{bottom:26.580000px;}
.y6f{bottom:26.640000px;}
.y67{bottom:30.690000px;}
.y62{bottom:35.190000px;}
.y68{bottom:43.110000px;}
.y83{bottom:44.100000px;}
.y78{bottom:44.190000px;}
.y66{bottom:52.830000px;}
.y8a{bottom:62.550000px;}
.y65{bottom:70.380000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y60{bottom:80.190000px;}
.y5f{bottom:97.740000px;}
.y1{bottom:101.640000px;}
.y87{bottom:116.940000px;}
.yc6{bottom:124.950000px;}
.ya9{bottom:125.040000px;}
.y86{bottom:131.700000px;}
.y27{bottom:131.790000px;}
.yc5{bottom:142.500000px;}
.y26{bottom:149.340000px;}
.ye7{bottom:150.780000px;}
.y85{bottom:159.060000px;}
.ya8{bottom:160.590000px;}
.y55{bottom:166.440000px;}
.ye6{bottom:168.330000px;}
.yc4{bottom:169.410000px;}
.y25{bottom:176.250000px;}
.y54{bottom:183.990000px;}
.ye5{bottom:185.970000px;}
.y84{bottom:186.330000px;}
.ya7{bottom:196.140000px;}
.ye4{bottom:212.520000px;}
.yc3{bottom:217.740000px;}
.y53{bottom:219.630000px;}
.y24{bottom:224.850000px;}
.ye3{bottom:230.070000px;}
.y81{bottom:231.330000px;}
.ya6{bottom:231.780000px;}
.yc2{bottom:235.290000px;}
.y52{bottom:237.180000px;}
.yc1{bottom:252.840000px;}
.y51{bottom:254.820000px;}
.ye2{bottom:256.710000px;}
.y23{bottom:261.840000px;}
.ya5{bottom:267.330000px;}
.yc0{bottom:270.480000px;}
.y50{bottom:272.370000px;}
.ye1{bottom:274.260000px;}
.y80{bottom:276.240000px;}
.y22{bottom:279.480000px;}
.ybf{bottom:288.030000px;}
.y4f{bottom:289.920000px;}
.ye0{bottom:291.900000px;}
.ya4{bottom:302.970000px;}
.y7f{bottom:303.510000px;}
.ybe{bottom:305.670000px;}
.y21{bottom:315.030000px;}
.y4e{bottom:316.560000px;}
.ydf{bottom:318.450000px;}
.y20{bottom:332.580000px;}
.ya3{bottom:338.520000px;}
.ybd{bottom:341.220000px;}
.yde{bottom:345.000000px;}
.y10c{bottom:345.990000px;}
.y7e{bottom:348.510000px;}
.y1f{bottom:350.220000px;}
.y4d{bottom:352.020000px;}
.ya2{bottom:356.070000px;}
.ydd{bottom:362.640000px;}
.y10b{bottom:363.540000px;}
.y1e{bottom:367.770000px;}
.y4c{bottom:370.470000px;}
.ybc{bottom:373.440000px;}
.ya1{bottom:373.710000px;}
.y7d{bottom:375.780000px;}
.ydc{bottom:380.190000px;}
.y10a{bottom:381.180000px;}
.y1d{bottom:385.410000px;}
.y4b{bottom:388.920000px;}
.ya0{bottom:391.260000px;}
.ydb{bottom:397.830000px;}
.y1c{bottom:402.960000px;}
.y7c{bottom:403.140000px;}
.y4a{bottom:407.280000px;}
.y109{bottom:407.730000px;}
.y9f{bottom:408.900000px;}
.y1b{bottom:420.510000px;}
.yda{bottom:424.650000px;}
.y108{bottom:425.370000px;}
.y49{bottom:425.730000px;}
.y9e{bottom:426.450000px;}
.y1a{bottom:438.150000px;}
.y9d{bottom:444.000000px;}
.y48{bottom:444.180000px;}
.y7a{bottom:448.050000px;}
.y107{bottom:451.920000px;}
.y19{bottom:455.700000px;}
.y9c{bottom:461.640000px;}
.y47{bottom:462.540000px;}
.y106{bottom:469.470000px;}
.yd9{bottom:473.010000px;}
.y79{bottom:475.440000px;}
.y46{bottom:481.020000px;}
.y105{bottom:487.140000px;}
.y18{bottom:491.370000px;}
.y9b{bottom:497.220000px;}
.yd8{bottom:499.920000px;}
.y17{bottom:508.920000px;}
.y104{bottom:513.690000px;}
.y9a{bottom:514.860000px;}
.y45{bottom:517.470000px;}
.y77{bottom:520.350000px;}
.y16{bottom:526.470000px;}
.y103{bottom:531.330000px;}
.y99{bottom:532.410000px;}
.y44{bottom:535.020000px;}
.yd7{bottom:536.910000px;}
.y15{bottom:544.110000px;}
.y102{bottom:548.880000px;}
.y98{bottom:549.960000px;}
.y43{bottom:552.660000px;}
.yd6{bottom:554.550000px;}
.y76{bottom:565.260000px;}
.y101{bottom:566.430000px;}
.y97{bottom:567.600000px;}
.yd5{bottom:572.100000px;}
.y42{bottom:579.210000px;}
.y14{bottom:579.660000px;}
.yd4{bottom:589.650000px;}
.y75{bottom:592.620000px;}
.y100{bottom:593.070000px;}
.y13{bottom:597.210000px;}
.y96{bottom:602.430000px;}
.yff{bottom:610.620000px;}
.y95{bottom:614.580000px;}
.y41{bottom:614.760000px;}
.y12{bottom:614.850000px;}
.yd3{bottom:616.560000px;}
.y74{bottom:619.980000px;}
.y11{bottom:632.400000px;}
.yfe{bottom:637.260000px;}
.y94{bottom:641.940000px;}
.y73{bottom:647.250000px;}
.y10{bottom:650.040000px;}
.y40{bottom:650.400000px;}
.yd2{bottom:653.640000px;}
.yfd{bottom:654.810000px;}
.yf{bottom:667.590000px;}
.y3f{bottom:667.950000px;}
.y93{bottom:669.300000px;}
.ybb{bottom:671.550000px;}
.yfc{bottom:672.360000px;}
.y72{bottom:674.610000px;}
.yd1{bottom:680.550000px;}
.ye{bottom:685.140000px;}
.yba{bottom:689.190000px;}
.yfb{bottom:690.000000px;}
.y92{bottom:696.660000px;}
.y71{bottom:701.970000px;}
.yd{bottom:702.780000px;}
.y3e{bottom:703.590000px;}
.yfa{bottom:707.550000px;}
.yd0{bottom:717.900000px;}
.y3d{bottom:721.140000px;}
.y91{bottom:723.930000px;}
.yb9{bottom:724.020000px;}
.y70{bottom:729.240000px;}
.yc{bottom:729.690000px;}
.yf9{bottom:734.190000px;}
.yb8{bottom:736.170000px;}
.y3c{bottom:738.690000px;}
.y90{bottom:751.290000px;}
.y3b{bottom:756.330000px;}
.y6e{bottom:756.600000px;}
.yf8{bottom:760.740000px;}
.yb7{bottom:763.530000px;}
.ycf{bottom:766.140000px;}
.y3a{bottom:773.880000px;}
.yb{bottom:776.490000px;}
.yf7{bottom:778.290000px;}
.y8f{bottom:778.650000px;}
.yce{bottom:783.690000px;}
.y6d{bottom:783.960000px;}
.yb6{bottom:790.890000px;}
.y39{bottom:800.520000px;}
.yf6{bottom:804.930000px;}
.y8e{bottom:805.920000px;}
.ycd{bottom:810.600000px;}
.y6b{bottom:811.320000px;}
.ya{bottom:812.040000px;}
.yb5{bottom:818.250000px;}
.yf5{bottom:822.480000px;}
.y8d{bottom:833.280000px;}
.y38{bottom:836.070000px;}
.y5e{bottom:838.590000px;}
.yf4{bottom:840.030000px;}
.yb4{bottom:845.520000px;}
.y9{bottom:847.860000px;}
.ycc{bottom:858.930000px;}
.y89{bottom:860.640000px;}
.y37{bottom:862.620000px;}
.yf3{bottom:866.670000px;}
.yb3{bottom:872.880000px;}
.ycb{bottom:876.480000px;}
.y8{bottom:883.860000px;}
.yf2{bottom:884.220000px;}
.y8c{bottom:888.000000px;}
.yca{bottom:894.030000px;}
.y36{bottom:898.530000px;}
.yb2{bottom:900.240000px;}
.y61{bottom:901.140000px;}
.yf1{bottom:901.860000px;}
.y7{bottom:905.640000px;}
.yc9{bottom:911.670000px;}
.y8b{bottom:915.270000px;}
.y6{bottom:923.640000px;}
.yb1{bottom:927.600000px;}
.yf0{bottom:928.410000px;}
.y63{bottom:928.500000px;}
.yc8{bottom:929.220000px;}
.y5{bottom:941.640000px;}
.yef{bottom:945.960000px;}
.y35{bottom:946.860000px;}
.yb0{bottom:954.870000px;}
.yee{bottom:963.600000px;}
.y88{bottom:963.960000px;}
.y34{bottom:964.410000px;}
.y4{bottom:973.950000px;}
.y5d{bottom:977.190000px;}
.yed{bottom:981.150000px;}
.y33{bottom:981.960000px;}
.yaf{bottom:982.230000px;}
.y32{bottom:999.600000px;}
.yec{bottom:1007.790000px;}
.yad{bottom:1009.590000px;}
.y3{bottom:1012.230000px;}
.y5c{bottom:1012.770000px;}
.y31{bottom:1017.180000px;}
.yeb{bottom:1025.370000px;}
.y5b{bottom:1030.320000px;}
.y30{bottom:1034.820000px;}
.yaa{bottom:1036.890000px;}
.yc7{bottom:1038.600000px;}
.y5a{bottom:1047.960000px;}
.yea{bottom:1051.920000px;}
.y2f{bottom:1052.370000px;}
.yac{bottom:1064.250000px;}
.y59{bottom:1065.510000px;}
.y2e{bottom:1069.920000px;}
.ye9{bottom:1078.560000px;}
.y58{bottom:1083.150000px;}
.y2d{bottom:1087.560000px;}
.yab{bottom:1091.610000px;}
.ye8{bottom:1096.110000px;}
.y57{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.y56{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h14{height:26.580000px;}
.h12{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h18{height:37.191445px;}
.h3{height:39.155273px;}
.h17{height:41.661211px;}
.h15{height:44.100000px;}
.h13{height:44.190000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.he{height:53.910000px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:61.793886px;}
.h11{height:61.830000px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h16{height:81.270000px;}
.h10{height:89.100000px;}
.hd{height:116.460000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:41.760000px;}
.w9{width:41.790000px;}
.w8{width:50.490000px;}
.wb{width:52.470000px;}
.we{width:52.680000px;}
.w14{width:57.870000px;}
.w3{width:62.730000px;}
.w21{width:77.310000px;}
.w20{width:77.340000px;}
.w1f{width:79.920000px;}
.w4{width:84.360000px;}
.w1a{width:88.290000px;}
.w18{width:88.320000px;}
.wd{width:91.530000px;}
.wc{width:94.860000px;}
.w11{width:105.240000px;}
.w17{width:111.960000px;}
.w19{width:112.050000px;}
.w10{width:123.840000px;}
.wf{width:136.890000px;}
.w1e{width:157.950000px;}
.w1d{width:157.980000px;}
.w15{width:201.000000px;}
.w16{width:201.060000px;}
.w6{width:240.390000px;}
.w12{width:285.060000px;}
.w1b{width:285.150000px;}
.w7{width:314.850000px;}
.w1c{width:316.650000px;}
.w13{width:402.780000px;}
.w5{width:607.170000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:3.870000px;}
.x5{left:6.030000px;}
.x1{left:68.040000px;}
.xf{left:72.990000px;}
.x4{left:95.039987px;}
.x1e{left:111.239987px;}
.x17{left:116.010000px;}
.x6{left:132.210000px;}
.xa{left:174.810000px;}
.x2{left:192.719987px;}
.x7{left:217.290000px;}
.xb{left:270.480000px;}
.x1d{left:281.369987px;}
.x16{left:348.239987px;}
.x11{left:358.860000px;}
.xc{left:366.150000px;}
.x18{left:401.880000px;}
.x8{left:458.400000px;}
.x14{left:471.540000px;}
.x1a{left:482.520000px;}
.xd{left:511.800000px;}
.x13{left:560.580000px;}
.x1b{left:641.220000px;}
.xe{left:649.410000px;}
.x15{left:673.350000px;}
.x19{left:719.340000px;}
.x1c{left:742.559987px;}
.x12{left:762.360000px;}
.x9{left:773.970000px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.395200pt;}
.ls21{letter-spacing:-0.378667pt;}
.lse{letter-spacing:-0.201600pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls1c{letter-spacing:-0.125867pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls12{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls1b{letter-spacing:-0.007360pt;}
.lsf{letter-spacing:-0.006933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.040320pt;}
.ls14{letter-spacing:0.043520pt;}
.ls11{letter-spacing:0.053867pt;}
.ls15{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1f{letter-spacing:0.087467pt;}
.ls19{letter-spacing:0.097067pt;}
.ls1a{letter-spacing:0.102933pt;}
.lsd{letter-spacing:0.118400pt;}
.ls5{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.147733pt;}
.lsc{letter-spacing:0.154133pt;}
.ls8{letter-spacing:0.155200pt;}
.ls17{letter-spacing:0.161067pt;}
.ls1d{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:2.323200pt;}
.ls22{letter-spacing:42.423680pt;}
.ls16{letter-spacing:56.503680pt;}
.ls20{letter-spacing:71.863680pt;}
.ws9{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws11{word-spacing:-11.933867pt;}
.wsd{word-spacing:-11.917867pt;}
.ws5{word-spacing:-11.910933pt;}
.ws13{word-spacing:-11.875200pt;}
.ws10{word-spacing:-11.859733pt;}
.wsf{word-spacing:-11.853867pt;}
.ws7{word-spacing:-11.810667pt;}
.wsc{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws6{word-spacing:-11.749867pt;}
.wse{word-spacing:-11.749440pt;}
.ws12{word-spacing:-11.630933pt;}
.ws4{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.wsa{word-spacing:0.000000pt;}
.ws8{word-spacing:3.826560pt;}
._8{margin-left:-3.264960pt;}
._2{margin-left:-1.974720pt;}
._1{margin-left:-0.931414pt;}
._0{width:1.103584pt;}
._6{width:2.495766pt;}
._4{width:3.845120pt;}
._3{width:5.611200pt;}
._5{width:6.879456pt;}
._7{width:7.896234pt;}
._9{width:9.512320pt;}
._a{width:10.627520pt;}
._12{width:13.055392pt;}
._11{width:14.493003pt;}
._b{width:15.604480pt;}
._c{width:16.549429pt;}
._13{width:17.902400pt;}
._e{width:18.810880pt;}
._d{width:19.719360pt;}
._15{width:21.626560pt;}
._16{width:22.725120pt;}
._10{width:25.009920pt;}
._f{width:46.225600pt;}
._14{width:48.042560pt;}
._17{width:1351.408854pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:6.960000pt;}
.yae{bottom:6.986667pt;}
.y6a{bottom:7.040000pt;}
.y82{bottom:22.560000pt;}
.y69{bottom:22.640000pt;}
.y6c{bottom:23.600000pt;}
.y7b{bottom:23.626667pt;}
.y6f{bottom:23.680000pt;}
.y67{bottom:27.280000pt;}
.y62{bottom:31.280000pt;}
.y68{bottom:38.320000pt;}
.y83{bottom:39.200000pt;}
.y78{bottom:39.280000pt;}
.y66{bottom:46.960000pt;}
.y8a{bottom:55.600000pt;}
.y65{bottom:62.560000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y60{bottom:71.280000pt;}
.y5f{bottom:86.880000pt;}
.y1{bottom:90.346667pt;}
.y87{bottom:103.946667pt;}
.yc6{bottom:111.066667pt;}
.ya9{bottom:111.146667pt;}
.y86{bottom:117.066667pt;}
.y27{bottom:117.146667pt;}
.yc5{bottom:126.666667pt;}
.y26{bottom:132.746667pt;}
.ye7{bottom:134.026667pt;}
.y85{bottom:141.386667pt;}
.ya8{bottom:142.746667pt;}
.y55{bottom:147.946667pt;}
.ye6{bottom:149.626667pt;}
.yc4{bottom:150.586667pt;}
.y25{bottom:156.666667pt;}
.y54{bottom:163.546667pt;}
.ye5{bottom:165.306667pt;}
.y84{bottom:165.626667pt;}
.ya7{bottom:174.346667pt;}
.ye4{bottom:188.906667pt;}
.yc3{bottom:193.546667pt;}
.y53{bottom:195.226667pt;}
.y24{bottom:199.866667pt;}
.ye3{bottom:204.506667pt;}
.y81{bottom:205.626667pt;}
.ya6{bottom:206.026667pt;}
.yc2{bottom:209.146667pt;}
.y52{bottom:210.826667pt;}
.yc1{bottom:224.746667pt;}
.y51{bottom:226.506667pt;}
.ye2{bottom:228.186667pt;}
.y23{bottom:232.746667pt;}
.ya5{bottom:237.626667pt;}
.yc0{bottom:240.426667pt;}
.y50{bottom:242.106667pt;}
.ye1{bottom:243.786667pt;}
.y80{bottom:245.546667pt;}
.y22{bottom:248.426667pt;}
.ybf{bottom:256.026667pt;}
.y4f{bottom:257.706667pt;}
.ye0{bottom:259.466667pt;}
.ya4{bottom:269.306667pt;}
.y7f{bottom:269.786667pt;}
.ybe{bottom:271.706667pt;}
.y21{bottom:280.026667pt;}
.y4e{bottom:281.386667pt;}
.ydf{bottom:283.066667pt;}
.y20{bottom:295.626667pt;}
.ya3{bottom:300.906667pt;}
.ybd{bottom:303.306667pt;}
.yde{bottom:306.666667pt;}
.y10c{bottom:307.546667pt;}
.y7e{bottom:309.786667pt;}
.y1f{bottom:311.306667pt;}
.y4d{bottom:312.906667pt;}
.ya2{bottom:316.506667pt;}
.ydd{bottom:322.346667pt;}
.y10b{bottom:323.146667pt;}
.y1e{bottom:326.906667pt;}
.y4c{bottom:329.306667pt;}
.ybc{bottom:331.946667pt;}
.ya1{bottom:332.186667pt;}
.y7d{bottom:334.026667pt;}
.ydc{bottom:337.946667pt;}
.y10a{bottom:338.826667pt;}
.y1d{bottom:342.586667pt;}
.y4b{bottom:345.706667pt;}
.ya0{bottom:347.786667pt;}
.ydb{bottom:353.626667pt;}
.y1c{bottom:358.186667pt;}
.y7c{bottom:358.346667pt;}
.y4a{bottom:362.026667pt;}
.y109{bottom:362.426667pt;}
.y9f{bottom:363.466667pt;}
.y1b{bottom:373.786667pt;}
.yda{bottom:377.466667pt;}
.y108{bottom:378.106667pt;}
.y49{bottom:378.426667pt;}
.y9e{bottom:379.066667pt;}
.y1a{bottom:389.466667pt;}
.y9d{bottom:394.666667pt;}
.y48{bottom:394.826667pt;}
.y7a{bottom:398.266667pt;}
.y107{bottom:401.706667pt;}
.y19{bottom:405.066667pt;}
.y9c{bottom:410.346667pt;}
.y47{bottom:411.146667pt;}
.y106{bottom:417.306667pt;}
.yd9{bottom:420.453333pt;}
.y79{bottom:422.613333pt;}
.y46{bottom:427.573333pt;}
.y105{bottom:433.013333pt;}
.y18{bottom:436.773333pt;}
.y9b{bottom:441.973333pt;}
.yd8{bottom:444.373333pt;}
.y17{bottom:452.373333pt;}
.y104{bottom:456.613333pt;}
.y9a{bottom:457.653333pt;}
.y45{bottom:459.973333pt;}
.y77{bottom:462.533333pt;}
.y16{bottom:467.973333pt;}
.y103{bottom:472.293333pt;}
.y99{bottom:473.253333pt;}
.y44{bottom:475.573333pt;}
.yd7{bottom:477.253333pt;}
.y15{bottom:483.653333pt;}
.y102{bottom:487.893333pt;}
.y98{bottom:488.853333pt;}
.y43{bottom:491.253333pt;}
.yd6{bottom:492.933333pt;}
.y76{bottom:502.453333pt;}
.y101{bottom:503.493333pt;}
.y97{bottom:504.533333pt;}
.yd5{bottom:508.533333pt;}
.y42{bottom:514.853333pt;}
.y14{bottom:515.253333pt;}
.yd4{bottom:524.133333pt;}
.y75{bottom:526.773333pt;}
.y100{bottom:527.173333pt;}
.y13{bottom:530.853333pt;}
.y96{bottom:535.493333pt;}
.yff{bottom:542.773333pt;}
.y95{bottom:546.293333pt;}
.y41{bottom:546.453333pt;}
.y12{bottom:546.533333pt;}
.yd3{bottom:548.053333pt;}
.y74{bottom:551.093333pt;}
.y11{bottom:562.133333pt;}
.yfe{bottom:566.453333pt;}
.y94{bottom:570.613333pt;}
.y73{bottom:575.333333pt;}
.y10{bottom:577.813333pt;}
.y40{bottom:578.133333pt;}
.yd2{bottom:581.013333pt;}
.yfd{bottom:582.053333pt;}
.yf{bottom:593.413333pt;}
.y3f{bottom:593.733333pt;}
.y93{bottom:594.933333pt;}
.ybb{bottom:596.933333pt;}
.yfc{bottom:597.653333pt;}
.y72{bottom:599.653333pt;}
.yd1{bottom:604.933333pt;}
.ye{bottom:609.013333pt;}
.yba{bottom:612.613333pt;}
.yfb{bottom:613.333333pt;}
.y92{bottom:619.253333pt;}
.y71{bottom:623.973333pt;}
.yd{bottom:624.693333pt;}
.y3e{bottom:625.413333pt;}
.yfa{bottom:628.933333pt;}
.yd0{bottom:638.133333pt;}
.y3d{bottom:641.013333pt;}
.y91{bottom:643.493333pt;}
.yb9{bottom:643.573333pt;}
.y70{bottom:648.213333pt;}
.yc{bottom:648.613333pt;}
.yf9{bottom:652.613333pt;}
.yb8{bottom:654.373333pt;}
.y3c{bottom:656.613333pt;}
.y90{bottom:667.813333pt;}
.y3b{bottom:672.293333pt;}
.y6e{bottom:672.533333pt;}
.yf8{bottom:676.213333pt;}
.yb7{bottom:678.693333pt;}
.ycf{bottom:681.013333pt;}
.y3a{bottom:687.893333pt;}
.yb{bottom:690.213333pt;}
.yf7{bottom:691.813333pt;}
.y8f{bottom:692.133333pt;}
.yce{bottom:696.613333pt;}
.y6d{bottom:696.853333pt;}
.yb6{bottom:703.013333pt;}
.y39{bottom:711.573333pt;}
.yf6{bottom:715.493333pt;}
.y8e{bottom:716.373333pt;}
.ycd{bottom:720.533333pt;}
.y6b{bottom:721.173333pt;}
.ya{bottom:721.813333pt;}
.yb5{bottom:727.333333pt;}
.yf5{bottom:731.093333pt;}
.y8d{bottom:740.693333pt;}
.y38{bottom:743.173333pt;}
.y5e{bottom:745.413333pt;}
.yf4{bottom:746.693333pt;}
.yb4{bottom:751.573333pt;}
.y9{bottom:753.653333pt;}
.ycc{bottom:763.493333pt;}
.y89{bottom:765.013333pt;}
.y37{bottom:766.773333pt;}
.yf3{bottom:770.373333pt;}
.yb3{bottom:775.893333pt;}
.ycb{bottom:779.093333pt;}
.y8{bottom:785.653333pt;}
.yf2{bottom:785.973333pt;}
.y8c{bottom:789.333333pt;}
.yca{bottom:794.693333pt;}
.y36{bottom:798.693333pt;}
.yb2{bottom:800.213333pt;}
.y61{bottom:801.013333pt;}
.yf1{bottom:801.653333pt;}
.y7{bottom:805.013333pt;}
.yc9{bottom:810.373333pt;}
.y8b{bottom:813.573333pt;}
.y6{bottom:821.013333pt;}
.yb1{bottom:824.533333pt;}
.yf0{bottom:825.253333pt;}
.y63{bottom:825.333333pt;}
.yc8{bottom:825.973333pt;}
.y5{bottom:837.013333pt;}
.yef{bottom:840.853333pt;}
.y35{bottom:841.653333pt;}
.yb0{bottom:848.773333pt;}
.yee{bottom:856.533333pt;}
.y88{bottom:856.853333pt;}
.y34{bottom:857.253333pt;}
.y4{bottom:865.733333pt;}
.y5d{bottom:868.613333pt;}
.yed{bottom:872.133333pt;}
.y33{bottom:872.853333pt;}
.yaf{bottom:873.093333pt;}
.y32{bottom:888.533333pt;}
.yec{bottom:895.813333pt;}
.yad{bottom:897.413333pt;}
.y3{bottom:899.760000pt;}
.y5c{bottom:900.240000pt;}
.y31{bottom:904.160000pt;}
.yeb{bottom:911.440000pt;}
.y5b{bottom:915.840000pt;}
.y30{bottom:919.840000pt;}
.yaa{bottom:921.680000pt;}
.yc7{bottom:923.200000pt;}
.y5a{bottom:931.520000pt;}
.yea{bottom:935.040000pt;}
.y2f{bottom:935.440000pt;}
.yac{bottom:946.000000pt;}
.y59{bottom:947.120000pt;}
.y2e{bottom:951.040000pt;}
.ye9{bottom:958.720000pt;}
.y58{bottom:962.800000pt;}
.y2d{bottom:966.720000pt;}
.yab{bottom:970.320000pt;}
.ye8{bottom:974.320000pt;}
.y57{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.y56{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h14{height:23.626667pt;}
.h12{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h18{height:33.059063pt;}
.h3{height:34.804688pt;}
.h17{height:37.032187pt;}
.h15{height:39.200000pt;}
.h13{height:39.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.he{height:47.920000pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:54.927899pt;}
.h11{height:54.960000pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h16{height:72.240000pt;}
.h10{height:79.200000pt;}
.hd{height:103.520000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:37.120000pt;}
.w9{width:37.146667pt;}
.w8{width:44.880000pt;}
.wb{width:46.640000pt;}
.we{width:46.826667pt;}
.w14{width:51.440000pt;}
.w3{width:55.760000pt;}
.w21{width:68.720000pt;}
.w20{width:68.746667pt;}
.w1f{width:71.040000pt;}
.w4{width:74.986667pt;}
.w1a{width:78.480000pt;}
.w18{width:78.506667pt;}
.wd{width:81.360000pt;}
.wc{width:84.320000pt;}
.w11{width:93.546667pt;}
.w17{width:99.520000pt;}
.w19{width:99.600000pt;}
.w10{width:110.080000pt;}
.wf{width:121.680000pt;}
.w1e{width:140.400000pt;}
.w1d{width:140.426667pt;}
.w15{width:178.666667pt;}
.w16{width:178.720000pt;}
.w6{width:213.680000pt;}
.w12{width:253.386667pt;}
.w1b{width:253.466667pt;}
.w7{width:279.866667pt;}
.w1c{width:281.466667pt;}
.w13{width:358.026667pt;}
.w5{width:539.706667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:3.440000pt;}
.x5{left:5.360000pt;}
.x1{left:60.480000pt;}
.xf{left:64.880000pt;}
.x4{left:84.479988pt;}
.x1e{left:98.879988pt;}
.x17{left:103.120000pt;}
.x6{left:117.520000pt;}
.xa{left:155.386667pt;}
.x2{left:171.306655pt;}
.x7{left:193.146667pt;}
.xb{left:240.426667pt;}
.x1d{left:250.106655pt;}
.x16{left:309.546655pt;}
.x11{left:318.986667pt;}
.xc{left:325.466667pt;}
.x18{left:357.226667pt;}
.x8{left:407.466667pt;}
.x14{left:419.146667pt;}
.x1a{left:428.906667pt;}
.xd{left:454.933333pt;}
.x13{left:498.293333pt;}
.x1b{left:569.973333pt;}
.xe{left:577.253333pt;}
.x15{left:598.533333pt;}
.x19{left:639.413333pt;}
.x1c{left:660.053322pt;}
.x12{left:677.653333pt;}
.x9{left:687.973333pt;}
.x3{left:718.773322pt;}
}




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