
    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_96b2e6ccbb1d075c170d67d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_eb79fce69070bf014809ad6e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_9b3bd4211599fbba9996ccda.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_67e9929eed3b735fb82c59fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_fddf6b3bb235715b0954bde5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.062988;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_691de8ff3d0576f6bbd92c91.woff2')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_9451b79e7193f09ed93d8984.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_b67d824b17ec2bda88fa135c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_0f9ead7b6cd5d5192ffa3a5b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.727539;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_88006a7f800a71b77f0ca24a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ce9f6ff05bbceb3d1619e2c9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;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_036cda979d052f617122fe72.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.053223;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(0.259625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.v2{vertical-align:20.880000px;}
.lsf{letter-spacing:-0.684000px;}
.lse{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.038880px;}
.lsa{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.022320px;}
.ls3{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.054720px;}
.ls0{letter-spacing:0.109200px;}
.ls1{letter-spacing:0.109440px;}
.ls9{letter-spacing:0.245400px;}
.ls1a{letter-spacing:0.393600px;}
.ls14{letter-spacing:0.459600px;}
.ls1c{letter-spacing:0.468000px;}
.ls5{letter-spacing:0.479520px;}
.ls13{letter-spacing:0.533400px;}
.ls1d{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.597600px;}
.ls1b{letter-spacing:0.648000px;}
.ls10{letter-spacing:0.660000px;}
.ls18{letter-spacing:0.702000px;}
.ls4{letter-spacing:0.734476px;}
.lsb{letter-spacing:0.852000px;}
.ls11{letter-spacing:0.894000px;}
.ls6{letter-spacing:0.972000px;}
.ls15{letter-spacing:16.413120px;}
.ls19{letter-spacing:23.148000px;}
.ls16{letter-spacing:34.413120px;}
.lsd{letter-spacing:44.586720px;}
.ls17{letter-spacing:50.508000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-16.272000px;}
.wsd{word-spacing:-14.165760px;}
.wse{word-spacing:-14.039160px;}
.ws3{word-spacing:-13.734720px;}
.ws1{word-spacing:-13.734480px;}
.ws0{word-spacing:-13.625280px;}
.wsa{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.164000px;}
.ws10{word-spacing:-12.906000px;}
.ws11{word-spacing:-12.744000px;}
.ws8{word-spacing:-12.312000px;}
.ws4{word-spacing:-12.204000px;}
.ws5{word-spacing:-12.186000px;}
.ws6{word-spacing:-11.880000px;}
.wsf{word-spacing:-9.246480px;}
.ws2{word-spacing:-8.825760px;}
.wsc{word-spacing:-8.786880px;}
.wsb{word-spacing:0.000000px;}
._15{margin-left:-2.455920px;}
._6{margin-left:-1.126080px;}
._1{width:1.135440px;}
._2{width:2.564400px;}
._0{width:4.247520px;}
._16{width:5.824560px;}
._22{width:7.589520px;}
._14{width:8.964000px;}
._10{width:9.990000px;}
._b{width:11.131920px;}
._c{width:12.434400px;}
._1d{width:13.540800px;}
._f{width:15.315840px;}
._11{width:16.374240px;}
._a{width:17.617680px;}
._7{width:18.636720px;}
._19{width:19.677360px;}
._e{width:20.697120px;}
._d{width:21.937680px;}
._18{width:22.990320px;}
._26{width:24.231360px;}
._17{width:25.278720px;}
._12{width:26.413920px;}
._13{width:27.489600px;}
._25{width:29.521440px;}
._2a{width:30.594720px;}
._2f{width:31.797360px;}
._21{width:32.868000px;}
._24{width:33.883920px;}
._1a{width:35.318160px;}
._23{width:36.692640px;}
._2d{width:37.887840px;}
._20{width:39.083040px;}
._27{width:40.338000px;}
._1b{width:42.011280px;}
._3{width:43.401840px;}
._8{width:44.850240px;}
._1e{width:45.890880px;}
._29{width:47.123040px;}
._30{width:48.674160px;}
._2e{width:49.720320px;}
._32{width:51.240240px;}
._2b{width:53.843760px;}
._2c{width:55.815840px;}
._1f{width:57.130560px;}
._31{width:59.105520px;}
._28{width:60.716160px;}
._1c{width:64.540800px;}
._35{width:65.820240px;}
._33{width:67.008240px;}
._34{width:74.808480px;}
._5{width:188.749440px;}
._4{width:202.374720px;}
._9{width:1803.540000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fs2{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs6{font-size:144.000000px;}
.y41{bottom:-7.920000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:1.620000px;}
.yd{bottom:2.700000px;}
.y7d{bottom:3.960000px;}
.y40{bottom:13.530000px;}
.y3f{bottom:39.450000px;}
.yb{bottom:56.520000px;}
.yc{bottom:65.700000px;}
.y3c{bottom:68.400000px;}
.y3b{bottom:72.360000px;}
.ya{bottom:72.720000px;}
.y3a{bottom:89.460000px;}
.y9{bottom:91.080000px;}
.y91{bottom:117.180000px;}
.y38{bottom:128.880000px;}
.y78{bottom:129.060000px;}
.yc0{bottom:139.680000px;}
.y37{bottom:147.240000px;}
.y77{bottom:147.420000px;}
.ybf{bottom:156.060000px;}
.y36{bottom:165.420000px;}
.y76{bottom:165.600000px;}
.ybe{bottom:172.620000px;}
.y35{bottom:183.780000px;}
.y75{bottom:183.960000px;}
.ybd{bottom:189.180000px;}
.y34{bottom:202.140000px;}
.y74{bottom:202.320000px;}
.ybc{bottom:205.560000px;}
.y33{bottom:220.350000px;}
.y73{bottom:220.530000px;}
.ybb{bottom:222.150000px;}
.yba{bottom:238.530000px;}
.y32{bottom:238.710000px;}
.y72{bottom:238.890000px;}
.yb9{bottom:255.090000px;}
.y31{bottom:257.070000px;}
.y71{bottom:257.250000px;}
.yb8{bottom:271.470000px;}
.y30{bottom:275.430000px;}
.y70{bottom:275.610000px;}
.yb7{bottom:288.030000px;}
.y2f{bottom:293.610000px;}
.y6f{bottom:293.790000px;}
.yb6{bottom:304.410000px;}
.y2e{bottom:311.250000px;}
.y7b{bottom:312.150000px;}
.y6e{bottom:317.370000px;}
.yb5{bottom:320.970000px;}
.y2d{bottom:329.250000px;}
.y6d{bottom:330.510000px;}
.yb4{bottom:337.350000px;}
.y2c{bottom:347.430000px;}
.y6c{bottom:348.870000px;}
.yb3{bottom:353.910000px;}
.y2b{bottom:365.790000px;}
.y6b{bottom:367.050000px;}
.yb2{bottom:370.470000px;}
.y92{bottom:372.270000px;}
.y2a{bottom:384.150000px;}
.y6a{bottom:385.410000px;}
.yb1{bottom:386.850000px;}
.y29{bottom:402.510000px;}
.yb0{bottom:403.410000px;}
.y69{bottom:403.770000px;}
.yaf{bottom:419.790000px;}
.y28{bottom:420.690000px;}
.y68{bottom:421.950000px;}
.yae{bottom:436.350000px;}
.y27{bottom:439.050000px;}
.y67{bottom:440.310000px;}
.yad{bottom:452.775000px;}
.y90{bottom:454.215000px;}
.y26{bottom:457.455000px;}
.y66{bottom:458.715000px;}
.yac{bottom:469.335000px;}
.y8f{bottom:472.575000px;}
.y25{bottom:475.815000px;}
.y65{bottom:477.075000px;}
.yab{bottom:485.715000px;}
.y8e{bottom:490.755000px;}
.y24{bottom:493.995000px;}
.y64{bottom:495.255000px;}
.yaa{bottom:502.275000px;}
.ye6{bottom:504.435000px;}
.y8d{bottom:509.115000px;}
.y23{bottom:512.355000px;}
.y63{bottom:513.615000px;}
.ya9{bottom:518.835000px;}
.ye5{bottom:522.795000px;}
.y8c{bottom:527.475000px;}
.y22{bottom:530.715000px;}
.y62{bottom:531.975000px;}
.ya8{bottom:535.215000px;}
.ye4{bottom:541.155000px;}
.y8b{bottom:545.655000px;}
.y21{bottom:548.895000px;}
.y61{bottom:550.155000px;}
.ya7{bottom:551.775000px;}
.ye3{bottom:558.975000px;}
.y8a{bottom:564.015000px;}
.y20{bottom:567.255000px;}
.ya6{bottom:568.155000px;}
.y60{bottom:568.515000px;}
.ye2{bottom:575.535000px;}
.y89{bottom:582.375000px;}
.ya5{bottom:584.715000px;}
.y1f{bottom:585.615000px;}
.y5f{bottom:586.875000px;}
.ye1{bottom:591.915000px;}
.y88{bottom:600.735000px;}
.ya4{bottom:601.095000px;}
.y1e{bottom:603.975000px;}
.y5e{bottom:605.235000px;}
.ye0{bottom:608.475000px;}
.ya3{bottom:617.655000px;}
.y87{bottom:618.915000px;}
.y1d{bottom:623.055000px;}
.y5d{bottom:623.415000px;}
.ydf{bottom:625.035000px;}
.ya2{bottom:634.035000px;}
.y86{bottom:637.275000px;}
.yde{bottom:641.415000px;}
.y5c{bottom:641.775000px;}
.ya1{bottom:650.595000px;}
.y85{bottom:652.395000px;}
.y1c{bottom:654.735000px;}
.ydd{bottom:657.975000px;}
.y5b{bottom:660.135000px;}
.ya0{bottom:667.155000px;}
.y1b{bottom:670.215000px;}
.y84{bottom:670.755000px;}
.ydc{bottom:674.355000px;}
.y5a{bottom:678.495000px;}
.y9f{bottom:683.565000px;}
.y83{bottom:689.865000px;}
.ydb{bottom:690.945000px;}
.y1a{bottom:694.725000px;}
.y59{bottom:696.705000px;}
.y9e{bottom:700.125000px;}
.yda{bottom:707.325000px;}
.y82{bottom:712.905000px;}
.y58{bottom:715.065000px;}
.y9d{bottom:716.505000px;}
.y19{bottom:719.385000px;}
.yd9{bottom:723.885000px;}
.y81{bottom:731.085000px;}
.y9c{bottom:733.065000px;}
.y57{bottom:733.425000px;}
.yd8{bottom:740.265000px;}
.y18{bottom:744.585000px;}
.y80{bottom:746.205000px;}
.y9b{bottom:749.445000px;}
.y56{bottom:751.605000px;}
.yd7{bottom:756.825000px;}
.y7f{bottom:764.565000px;}
.y9a{bottom:766.005000px;}
.y17{bottom:769.605000px;}
.y55{bottom:769.965000px;}
.yd6{bottom:773.385000px;}
.y99{bottom:782.385000px;}
.y7e{bottom:782.925000px;}
.y54{bottom:788.325000px;}
.yd5{bottom:789.765000px;}
.y16{bottom:794.805000px;}
.y98{bottom:798.945000px;}
.y7c{bottom:801.825000px;}
.yd4{bottom:806.325000px;}
.y53{bottom:806.685000px;}
.y97{bottom:815.505000px;}
.y15{bottom:820.005000px;}
.yd3{bottom:822.705000px;}
.y52{bottom:824.865000px;}
.y96{bottom:831.885000px;}
.yd2{bottom:839.265000px;}
.y14{bottom:840.705000px;}
.y51{bottom:843.225000px;}
.y95{bottom:848.445000px;}
.yd1{bottom:855.645000px;}
.y50{bottom:861.585000px;}
.y94{bottom:864.825000px;}
.y13{bottom:865.725000px;}
.yd0{bottom:872.205000px;}
.y4f{bottom:879.945000px;}
.y93{bottom:881.385000px;}
.ycf{bottom:888.585000px;}
.y12{bottom:891.825000px;}
.y4e{bottom:898.125000px;}
.yce{bottom:905.145000px;}
.y11{bottom:914.865000px;}
.y4d{bottom:916.530000px;}
.ycd{bottom:921.750000px;}
.y4c{bottom:934.890000px;}
.y10{bottom:935.250000px;}
.ycc{bottom:938.130000px;}
.y4b{bottom:953.070000px;}
.ycb{bottom:954.690000px;}
.yca{bottom:971.070000px;}
.y4a{bottom:971.430000px;}
.yf{bottom:976.650000px;}
.yc9{bottom:987.630000px;}
.y49{bottom:989.790000px;}
.yc8{bottom:1004.010000px;}
.y7a{bottom:1008.150000px;}
.y48{bottom:1013.370000px;}
.ye{bottom:1017.870000px;}
.yc7{bottom:1020.570000px;}
.y47{bottom:1026.330000px;}
.yc6{bottom:1036.950000px;}
.y46{bottom:1044.690000px;}
.y79{bottom:1049.910000px;}
.yc5{bottom:1053.510000px;}
.y8{bottom:1056.030000px;}
.y45{bottom:1063.050000px;}
.yc4{bottom:1069.890000px;}
.y7{bottom:1076.190000px;}
.y44{bottom:1081.410000px;}
.yc3{bottom:1086.450000px;}
.y6{bottom:1095.090000px;}
.y43{bottom:1099.590000px;}
.yc2{bottom:1103.010000px;}
.y5{bottom:1114.890000px;}
.y42{bottom:1117.950000px;}
.yc1{bottom:1119.390000px;}
.y4{bottom:1134.690000px;}
.y39{bottom:1144.050000px;}
.y3e{bottom:1150.890000px;}
.y3{bottom:1154.340000px;}
.y2{bottom:1175.220000px;}
.y1{bottom:1195.740000px;}
.h12{height:12.960000px;}
.h4{height:15.660000px;}
.h19{height:18.180000px;}
.h1a{height:18.216000px;}
.h18{height:18.360000px;}
.h9{height:35.143594px;}
.hb{height:37.241719px;}
.h14{height:38.671172px;}
.hc{height:39.339844px;}
.h2{height:43.536094px;}
.h7{height:45.720703px;}
.h1d{height:47.223633px;}
.ha{height:52.453125px;}
.h13{height:53.496000px;}
.h1c{height:53.709961px;}
.h1b{height:55.503491px;}
.h10{height:59.439023px;}
.h11{height:59.551172px;}
.h15{height:59.671172px;}
.h16{height:59.731172px;}
.hf{height:61.189805px;}
.h17{height:61.423863px;}
.h3{height:65.884219px;}
.h8{height:71.324297px;}
.h5{height:71.613281px;}
.he{height:73.722656px;}
.hd{height:74.953125px;}
.h6{height:104.906250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:33.120000px;}
.w3{width:37.980000px;}
.w8{width:51.120000px;}
.w7{width:59.076000px;}
.wc{width:63.936000px;}
.w9{width:78.120000px;}
.w6{width:114.840000px;}
.wa{width:125.676000px;}
.wb{width:182.190000px;}
.w5{width:342.795000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:8.100000px;}
.x14{left:10.620000px;}
.x9{left:12.060000px;}
.x6{left:44.099987px;}
.x16{left:52.230000px;}
.x12{left:66.059987px;}
.x5{left:108.035987px;}
.x27{left:113.075987px;}
.x28{left:140.075987px;}
.xa{left:150.509987px;}
.x7{left:182.549987px;}
.xe{left:192.989987px;}
.x17{left:221.295000px;}
.x21{left:260.670000px;}
.xf{left:262.289987px;}
.x3{left:277.274987px;}
.x1b{left:294.915000px;}
.x1a{left:318.494987px;}
.x20{left:328.214987px;}
.xb{left:342.794987px;}
.x22{left:386.355000px;}
.x1d{left:409.755000px;}
.x10{left:427.754987px;}
.x15{left:442.335000px;}
.x11{left:457.124987px;}
.x25{left:462.164987px;}
.x18{left:463.964987px;}
.x1e{left:468.825000px;}
.x26{left:489.164987px;}
.x19{left:490.964987px;}
.x4{left:515.084987px;}
.x1f{left:519.945000px;}
.xc{left:541.724987px;}
.xd{left:544.964987px;}
.x23{left:568.545000px;}
.x24{left:668.489987px;}
.x2{left:679.109987px;}
.x8{left:748.950000px;}
.x13{left:753.990000px;}
.x1{left:785.129987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.v2{vertical-align:18.560000pt;}
.lsf{letter-spacing:-0.608000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.034560pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.019840pt;}
.ls3{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.048640pt;}
.ls0{letter-spacing:0.097067pt;}
.ls1{letter-spacing:0.097280pt;}
.ls9{letter-spacing:0.218133pt;}
.ls1a{letter-spacing:0.349867pt;}
.ls14{letter-spacing:0.408533pt;}
.ls1c{letter-spacing:0.416000pt;}
.ls5{letter-spacing:0.426240pt;}
.ls13{letter-spacing:0.474133pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.531200pt;}
.ls1b{letter-spacing:0.576000pt;}
.ls10{letter-spacing:0.586667pt;}
.ls18{letter-spacing:0.624000pt;}
.ls4{letter-spacing:0.652867pt;}
.lsb{letter-spacing:0.757333pt;}
.ls11{letter-spacing:0.794667pt;}
.ls6{letter-spacing:0.864000pt;}
.ls15{letter-spacing:14.589440pt;}
.ls19{letter-spacing:20.576000pt;}
.ls16{letter-spacing:30.589440pt;}
.lsd{letter-spacing:39.632640pt;}
.ls17{letter-spacing:44.896000pt;}
.ws9{word-spacing:-14.464000pt;}
.wsd{word-spacing:-12.591787pt;}
.wse{word-spacing:-12.479253pt;}
.ws3{word-spacing:-12.208640pt;}
.ws1{word-spacing:-12.208427pt;}
.ws0{word-spacing:-12.111360pt;}
.wsa{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.701333pt;}
.ws10{word-spacing:-11.472000pt;}
.ws11{word-spacing:-11.328000pt;}
.ws8{word-spacing:-10.944000pt;}
.ws4{word-spacing:-10.848000pt;}
.ws5{word-spacing:-10.832000pt;}
.ws6{word-spacing:-10.560000pt;}
.wsf{word-spacing:-8.219093pt;}
.ws2{word-spacing:-7.845120pt;}
.wsc{word-spacing:-7.810560pt;}
.wsb{word-spacing:0.000000pt;}
._15{margin-left:-2.183040pt;}
._6{margin-left:-1.000960pt;}
._1{width:1.009280pt;}
._2{width:2.279467pt;}
._0{width:3.775573pt;}
._16{width:5.177387pt;}
._22{width:6.746240pt;}
._14{width:7.968000pt;}
._10{width:8.880000pt;}
._b{width:9.895040pt;}
._c{width:11.052800pt;}
._1d{width:12.036267pt;}
._f{width:13.614080pt;}
._11{width:14.554880pt;}
._a{width:15.660160pt;}
._7{width:16.565973pt;}
._19{width:17.490987pt;}
._e{width:18.397440pt;}
._d{width:19.500160pt;}
._18{width:20.435840pt;}
._26{width:21.538987pt;}
._17{width:22.469973pt;}
._12{width:23.479040pt;}
._13{width:24.435200pt;}
._25{width:26.241280pt;}
._2a{width:27.195307pt;}
._2f{width:28.264320pt;}
._21{width:29.216000pt;}
._24{width:30.119040pt;}
._1a{width:31.393920pt;}
._23{width:32.615680pt;}
._2d{width:33.678080pt;}
._20{width:34.740480pt;}
._27{width:35.856000pt;}
._1b{width:37.343360pt;}
._3{width:38.579413pt;}
._8{width:39.866880pt;}
._1e{width:40.791893pt;}
._29{width:41.887147pt;}
._30{width:43.265920pt;}
._2e{width:44.195840pt;}
._32{width:45.546880pt;}
._2b{width:47.861120pt;}
._2c{width:49.614080pt;}
._1f{width:50.782720pt;}
._31{width:52.538240pt;}
._28{width:53.969920pt;}
._1c{width:57.369600pt;}
._35{width:58.506880pt;}
._33{width:59.562880pt;}
._34{width:66.496427pt;}
._5{width:167.777280pt;}
._4{width:179.888640pt;}
._9{width:1603.146667pt;}
.fs2{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs6{font-size:128.000000pt;}
.y41{bottom:-7.040000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:1.440000pt;}
.yd{bottom:2.400000pt;}
.y7d{bottom:3.520000pt;}
.y40{bottom:12.026667pt;}
.y3f{bottom:35.066667pt;}
.yb{bottom:50.240000pt;}
.yc{bottom:58.400000pt;}
.y3c{bottom:60.800000pt;}
.y3b{bottom:64.320000pt;}
.ya{bottom:64.640000pt;}
.y3a{bottom:79.520000pt;}
.y9{bottom:80.960000pt;}
.y91{bottom:104.160000pt;}
.y38{bottom:114.560000pt;}
.y78{bottom:114.720000pt;}
.yc0{bottom:124.160000pt;}
.y37{bottom:130.880000pt;}
.y77{bottom:131.040000pt;}
.ybf{bottom:138.720000pt;}
.y36{bottom:147.040000pt;}
.y76{bottom:147.200000pt;}
.ybe{bottom:153.440000pt;}
.y35{bottom:163.360000pt;}
.y75{bottom:163.520000pt;}
.ybd{bottom:168.160000pt;}
.y34{bottom:179.680000pt;}
.y74{bottom:179.840000pt;}
.ybc{bottom:182.720000pt;}
.y33{bottom:195.866667pt;}
.y73{bottom:196.026667pt;}
.ybb{bottom:197.466667pt;}
.yba{bottom:212.026667pt;}
.y32{bottom:212.186667pt;}
.y72{bottom:212.346667pt;}
.yb9{bottom:226.746667pt;}
.y31{bottom:228.506667pt;}
.y71{bottom:228.666667pt;}
.yb8{bottom:241.306667pt;}
.y30{bottom:244.826667pt;}
.y70{bottom:244.986667pt;}
.yb7{bottom:256.026667pt;}
.y2f{bottom:260.986667pt;}
.y6f{bottom:261.146667pt;}
.yb6{bottom:270.586667pt;}
.y2e{bottom:276.666667pt;}
.y7b{bottom:277.466667pt;}
.y6e{bottom:282.106667pt;}
.yb5{bottom:285.306667pt;}
.y2d{bottom:292.666667pt;}
.y6d{bottom:293.786667pt;}
.yb4{bottom:299.866667pt;}
.y2c{bottom:308.826667pt;}
.y6c{bottom:310.106667pt;}
.yb3{bottom:314.586667pt;}
.y2b{bottom:325.146667pt;}
.y6b{bottom:326.266667pt;}
.yb2{bottom:329.306667pt;}
.y92{bottom:330.906667pt;}
.y2a{bottom:341.466667pt;}
.y6a{bottom:342.586667pt;}
.yb1{bottom:343.866667pt;}
.y29{bottom:357.786667pt;}
.yb0{bottom:358.586667pt;}
.y69{bottom:358.906667pt;}
.yaf{bottom:373.146667pt;}
.y28{bottom:373.946667pt;}
.y68{bottom:375.066667pt;}
.yae{bottom:387.866667pt;}
.y27{bottom:390.266667pt;}
.y67{bottom:391.386667pt;}
.yad{bottom:402.466667pt;}
.y90{bottom:403.746667pt;}
.y26{bottom:406.626667pt;}
.y66{bottom:407.746667pt;}
.yac{bottom:417.186667pt;}
.y8f{bottom:420.066667pt;}
.y25{bottom:422.946667pt;}
.y65{bottom:424.066667pt;}
.yab{bottom:431.746667pt;}
.y8e{bottom:436.226667pt;}
.y24{bottom:439.106667pt;}
.y64{bottom:440.226667pt;}
.yaa{bottom:446.466667pt;}
.ye6{bottom:448.386667pt;}
.y8d{bottom:452.546667pt;}
.y23{bottom:455.426667pt;}
.y63{bottom:456.546667pt;}
.ya9{bottom:461.186667pt;}
.ye5{bottom:464.706667pt;}
.y8c{bottom:468.866667pt;}
.y22{bottom:471.746667pt;}
.y62{bottom:472.866667pt;}
.ya8{bottom:475.746667pt;}
.ye4{bottom:481.026667pt;}
.y8b{bottom:485.026667pt;}
.y21{bottom:487.906667pt;}
.y61{bottom:489.026667pt;}
.ya7{bottom:490.466667pt;}
.ye3{bottom:496.866667pt;}
.y8a{bottom:501.346667pt;}
.y20{bottom:504.226667pt;}
.ya6{bottom:505.026667pt;}
.y60{bottom:505.346667pt;}
.ye2{bottom:511.586667pt;}
.y89{bottom:517.666667pt;}
.ya5{bottom:519.746667pt;}
.y1f{bottom:520.546667pt;}
.y5f{bottom:521.666667pt;}
.ye1{bottom:526.146667pt;}
.y88{bottom:533.986667pt;}
.ya4{bottom:534.306667pt;}
.y1e{bottom:536.866667pt;}
.y5e{bottom:537.986667pt;}
.ye0{bottom:540.866667pt;}
.ya3{bottom:549.026667pt;}
.y87{bottom:550.146667pt;}
.y1d{bottom:553.826667pt;}
.y5d{bottom:554.146667pt;}
.ydf{bottom:555.586667pt;}
.ya2{bottom:563.586667pt;}
.y86{bottom:566.466667pt;}
.yde{bottom:570.146667pt;}
.y5c{bottom:570.466667pt;}
.ya1{bottom:578.306667pt;}
.y85{bottom:579.906667pt;}
.y1c{bottom:581.986667pt;}
.ydd{bottom:584.866667pt;}
.y5b{bottom:586.786667pt;}
.ya0{bottom:593.026667pt;}
.y1b{bottom:595.746667pt;}
.y84{bottom:596.226667pt;}
.ydc{bottom:599.426667pt;}
.y5a{bottom:603.106667pt;}
.y9f{bottom:607.613333pt;}
.y83{bottom:613.213333pt;}
.ydb{bottom:614.173333pt;}
.y1a{bottom:617.533333pt;}
.y59{bottom:619.293333pt;}
.y9e{bottom:622.333333pt;}
.yda{bottom:628.733333pt;}
.y82{bottom:633.693333pt;}
.y58{bottom:635.613333pt;}
.y9d{bottom:636.893333pt;}
.y19{bottom:639.453333pt;}
.yd9{bottom:643.453333pt;}
.y81{bottom:649.853333pt;}
.y9c{bottom:651.613333pt;}
.y57{bottom:651.933333pt;}
.yd8{bottom:658.013333pt;}
.y18{bottom:661.853333pt;}
.y80{bottom:663.293333pt;}
.y9b{bottom:666.173333pt;}
.y56{bottom:668.093333pt;}
.yd7{bottom:672.733333pt;}
.y7f{bottom:679.613333pt;}
.y9a{bottom:680.893333pt;}
.y17{bottom:684.093333pt;}
.y55{bottom:684.413333pt;}
.yd6{bottom:687.453333pt;}
.y99{bottom:695.453333pt;}
.y7e{bottom:695.933333pt;}
.y54{bottom:700.733333pt;}
.yd5{bottom:702.013333pt;}
.y16{bottom:706.493333pt;}
.y98{bottom:710.173333pt;}
.y7c{bottom:712.733333pt;}
.yd4{bottom:716.733333pt;}
.y53{bottom:717.053333pt;}
.y97{bottom:724.893333pt;}
.y15{bottom:728.893333pt;}
.yd3{bottom:731.293333pt;}
.y52{bottom:733.213333pt;}
.y96{bottom:739.453333pt;}
.yd2{bottom:746.013333pt;}
.y14{bottom:747.293333pt;}
.y51{bottom:749.533333pt;}
.y95{bottom:754.173333pt;}
.yd1{bottom:760.573333pt;}
.y50{bottom:765.853333pt;}
.y94{bottom:768.733333pt;}
.y13{bottom:769.533333pt;}
.yd0{bottom:775.293333pt;}
.y4f{bottom:782.173333pt;}
.y93{bottom:783.453333pt;}
.ycf{bottom:789.853333pt;}
.y12{bottom:792.733333pt;}
.y4e{bottom:798.333333pt;}
.yce{bottom:804.573333pt;}
.y11{bottom:813.213333pt;}
.y4d{bottom:814.693333pt;}
.ycd{bottom:819.333333pt;}
.y4c{bottom:831.013333pt;}
.y10{bottom:831.333333pt;}
.ycc{bottom:833.893333pt;}
.y4b{bottom:847.173333pt;}
.ycb{bottom:848.613333pt;}
.yca{bottom:863.173333pt;}
.y4a{bottom:863.493333pt;}
.yf{bottom:868.133333pt;}
.yc9{bottom:877.893333pt;}
.y49{bottom:879.813333pt;}
.yc8{bottom:892.453333pt;}
.y7a{bottom:896.133333pt;}
.y48{bottom:900.773333pt;}
.ye{bottom:904.773333pt;}
.yc7{bottom:907.173333pt;}
.y47{bottom:912.293333pt;}
.yc6{bottom:921.733333pt;}
.y46{bottom:928.613333pt;}
.y79{bottom:933.253333pt;}
.yc5{bottom:936.453333pt;}
.y8{bottom:938.693333pt;}
.y45{bottom:944.933333pt;}
.yc4{bottom:951.013333pt;}
.y7{bottom:956.613333pt;}
.y44{bottom:961.253333pt;}
.yc3{bottom:965.733333pt;}
.y6{bottom:973.413333pt;}
.y43{bottom:977.413333pt;}
.yc2{bottom:980.453333pt;}
.y5{bottom:991.013333pt;}
.y42{bottom:993.733333pt;}
.yc1{bottom:995.013333pt;}
.y4{bottom:1008.613333pt;}
.y39{bottom:1016.933333pt;}
.y3e{bottom:1023.013333pt;}
.y3{bottom:1026.080000pt;}
.y2{bottom:1044.640000pt;}
.y1{bottom:1062.880000pt;}
.h12{height:11.520000pt;}
.h4{height:13.920000pt;}
.h19{height:16.160000pt;}
.h1a{height:16.192000pt;}
.h18{height:16.320000pt;}
.h9{height:31.238750pt;}
.hb{height:33.103750pt;}
.h14{height:34.374375pt;}
.hc{height:34.968750pt;}
.h2{height:38.698750pt;}
.h7{height:40.640625pt;}
.h1d{height:41.976562pt;}
.ha{height:46.625000pt;}
.h13{height:47.552000pt;}
.h1c{height:47.742188pt;}
.h1b{height:49.336436pt;}
.h10{height:52.834688pt;}
.h11{height:52.934375pt;}
.h15{height:53.041042pt;}
.h16{height:53.094375pt;}
.hf{height:54.390938pt;}
.h17{height:54.598989pt;}
.h3{height:58.563750pt;}
.h8{height:63.399375pt;}
.h5{height:63.656250pt;}
.he{height:65.531250pt;}
.hd{height:66.625000pt;}
.h6{height:93.250000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:29.440000pt;}
.w3{width:33.760000pt;}
.w8{width:45.440000pt;}
.w7{width:52.512000pt;}
.wc{width:56.832000pt;}
.w9{width:69.440000pt;}
.w6{width:102.080000pt;}
.wa{width:111.712000pt;}
.wb{width:161.946667pt;}
.w5{width:304.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:7.200000pt;}
.x14{left:9.440000pt;}
.x9{left:10.720000pt;}
.x6{left:39.199988pt;}
.x16{left:46.426667pt;}
.x12{left:58.719988pt;}
.x5{left:96.031988pt;}
.x27{left:100.511988pt;}
.x28{left:124.511988pt;}
.xa{left:133.786655pt;}
.x7{left:162.266655pt;}
.xe{left:171.546655pt;}
.x17{left:196.706667pt;}
.x21{left:231.706667pt;}
.xf{left:233.146655pt;}
.x3{left:246.466655pt;}
.x1b{left:262.146667pt;}
.x1a{left:283.106655pt;}
.x20{left:291.746655pt;}
.xb{left:304.706655pt;}
.x22{left:343.426667pt;}
.x1d{left:364.226667pt;}
.x10{left:380.226655pt;}
.x15{left:393.186667pt;}
.x11{left:406.333322pt;}
.x25{left:410.813322pt;}
.x18{left:412.413322pt;}
.x1e{left:416.733333pt;}
.x26{left:434.813322pt;}
.x19{left:436.413322pt;}
.x4{left:457.853322pt;}
.x1f{left:462.173333pt;}
.xc{left:481.533322pt;}
.xd{left:484.413322pt;}
.x23{left:505.373333pt;}
.x24{left:594.213322pt;}
.x2{left:603.653322pt;}
.x8{left:665.733333pt;}
.x13{left:670.213333pt;}
.x1{left:697.893322pt;}
}




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