
    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_036231da741297fa8698573b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_63c2ffbc2f0a90aacea50735.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_25f4cbdc9f55a3fb826adad4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8b82bd1a1607a0034e78d794.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_14a7a5fff1e6bc3ee8dc2b38.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_f7ddb2d0f7e7161193268000.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a9d9ba1a23deeda9250a9cf7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.119629;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_64140f1f3b7d260bcbf16bd4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_e720e8ced9cf6320f29287d9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c74ba9591456c3d805a15a21.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932617;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_772bd031ffc01f319ca46805.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237936,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.238821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238821,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250904,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-26.259833px;}
.v3{vertical-align:-24.311709px;}
.v6{vertical-align:-17.550464px;}
.v1{vertical-align:-16.543470px;}
.v4{vertical-align:-14.529483px;}
.v5{vertical-align:-11.364645px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.445556px;}
.v9{vertical-align:54.286236px;}
.v7{vertical-align:62.002050px;}
.ls15{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.683317px;}
.ls8{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.149204px;}
.ls9{letter-spacing:-0.144000px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.287713px;}
.ls11{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.323677px;}
.lse{letter-spacing:0.359641px;}
.ls16{letter-spacing:0.576000px;}
.ls1{letter-spacing:0.720000px;}
.ls3{letter-spacing:5.040000px;}
.ls6{letter-spacing:6.480000px;}
.ls5{letter-spacing:7.920000px;}
.ls13{letter-spacing:10.944000px;}
.ls2{letter-spacing:14.400000px;}
.lsb{letter-spacing:28.800000px;}
.ls4{letter-spacing:30.240000px;}
.ls14{letter-spacing:77.760000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws1{word-spacing:-23.940000px;}
.ws6{word-spacing:-18.720000px;}
.ws1b{word-spacing:-18.576000px;}
.ws1c{word-spacing:-18.288000px;}
.ws1a{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws19{word-spacing:-17.280000px;}
.ws2{word-spacing:-16.488000px;}
.ws9{word-spacing:-13.810201px;}
.ws7{word-spacing:-13.522489px;}
.ws10{word-spacing:-13.502925px;}
.wsb{word-spacing:-13.486525px;}
.wsf{word-spacing:-12.839172px;}
.ws4{word-spacing:0.000000px;}
.ws17{word-spacing:137.858153px;}
.wse{word-spacing:192.410823px;}
.ws16{word-spacing:192.644818px;}
.wsd{word-spacing:202.564869px;}
.ws18{word-spacing:202.693084px;}
.wsc{word-spacing:209.338101px;}
.ws8{word-spacing:357.554745px;}
.wsa{word-spacing:358.110030px;}
.ws12{word-spacing:371.904880px;}
.ws13{word-spacing:372.143606px;}
.ws14{word-spacing:372.444997px;}
.ws11{word-spacing:372.504679px;}
.ws15{word-spacing:372.564360px;}
._2{margin-left:-2.160000px;}
._1{margin-left:-1.059840px;}
._0{width:1.347840px;}
._8{width:2.540160px;}
._10{width:3.596640px;}
._5{width:5.040000px;}
._4{width:6.192000px;}
._6{width:7.272000px;}
._7{width:9.216000px;}
._19{width:11.164320px;}
._11{width:12.456000px;}
._b{width:13.536000px;}
._3{width:14.544000px;}
._18{width:15.860640px;}
._16{width:19.532160px;}
._1f{width:20.679360px;}
._15{width:22.288320px;}
._14{width:23.595840px;}
._17{width:24.624000px;}
._1e{width:26.444160px;}
._13{width:28.008000px;}
._12{width:29.504160px;}
._c{width:30.672000px;}
._d{width:31.776480px;}
._9{width:32.976000px;}
._a{width:34.036320px;}
._20{width:36.000000px;}
._e{width:40.464000px;}
._f{width:41.860320px;}
._1a{width:43.272000px;}
._21{width:46.296000px;}
._22{width:47.468160px;}
._1b{width:65.304000px;}
._1c{width:66.404160px;}
._1d{width:67.824000px;}
._24{width:76.944000px;}
._23{width:96.355344px;}
.fc5{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,0);}
.fc6{color:rgb(89,89,89);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:53.946099px;}
.fs8{font-size:54.011701px;}
.fs6{font-size:54.089955px;}
.fs4{font-size:66.240000px;}
.fs5{font-size:69.990478px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y68{bottom:3.060000px;}
.y67{bottom:3.164013px;}
.y9e{bottom:3.164078px;}
.y65{bottom:4.140000px;}
.y6e{bottom:4.500000px;}
.y9b{bottom:4.680000px;}
.y90{bottom:5.178835px;}
.y69{bottom:5.580000px;}
.y6a{bottom:5.940000px;}
.y99{bottom:6.300000px;}
.y3f{bottom:7.200000px;}
.y41{bottom:7.380000px;}
.y88{bottom:9.926095px;}
.y63{bottom:14.580000px;}
.yd{bottom:16.020000px;}
.y9c{bottom:16.740000px;}
.yb{bottom:16.920000px;}
.yc{bottom:17.640000px;}
.y7{bottom:20.700000px;}
.y71{bottom:20.880000px;}
.ybe{bottom:22.976918px;}
.y8e{bottom:24.599284px;}
.y64{bottom:24.840000px;}
.y6d{bottom:25.200000px;}
.y77{bottom:25.230000px;}
.y61{bottom:26.685000px;}
.y98{bottom:27.000000px;}
.y4{bottom:27.900000px;}
.y6f{bottom:31.140000px;}
.y78{bottom:31.170000px;}
.y73{bottom:31.320000px;}
.ya1{bottom:41.400000px;}
.ya6{bottom:41.580000px;}
.yb8{bottom:44.574144px;}
.y6{bottom:45.360000px;}
.y6c{bottom:45.900000px;}
.y76{bottom:45.930000px;}
.y3{bottom:48.600000px;}
.y8{bottom:48.960000px;}
.ybd{bottom:59.867498px;}
.ybc{bottom:60.091307px;}
.ybb{bottom:60.091311px;}
.yba{bottom:60.091314px;}
.yb7{bottom:60.091319px;}
.y86{bottom:60.851069px;}
.y8d{bottom:61.354551px;}
.y8c{bottom:61.354554px;}
.y8b{bottom:61.354557px;}
.y8a{bottom:61.354561px;}
.ya0{bottom:66.600000px;}
.y2{bottom:69.300000px;}
.ye{bottom:74.916000px;}
.yb9{bottom:75.608489px;}
.yb6{bottom:75.608492px;}
.y5{bottom:75.960000px;}
.y85{bottom:76.315617px;}
.y89{bottom:76.855074px;}
.ya{bottom:91.116000px;}
.yaf{bottom:91.461375px;}
.y81{bottom:92.715232px;}
.yb0{bottom:105.262708px;}
.y82{bottom:117.098869px;}
.yb1{bottom:119.026740px;}
.yb2{bottom:132.828072px;}
.y38{bottom:139.896000px;}
.y80{bottom:141.050931px;}
.y83{bottom:141.446542px;}
.yae{bottom:141.854883px;}
.y7e{bottom:142.129854px;}
.yac{bottom:144.609183px;}
.yb3{bottom:146.593596px;}
.yc1{bottom:157.170000px;}
.y96{bottom:157.890000px;}
.y5c{bottom:159.150000px;}
.yb4{bottom:160.394929px;}
.y37{bottom:163.650000px;}
.y84{bottom:165.825683px;}
.yad{bottom:167.959548px;}
.y7f{bottom:168.313195px;}
.y7d{bottom:168.747762px;}
.yab{bottom:171.913444px;}
.yb5{bottom:174.151500px;}
.yc0{bottom:180.750000px;}
.y95{bottom:181.650000px;}
.y5b{bottom:182.910000px;}
.y36{bottom:187.410000px;}
.y94{bottom:205.410000px;}
.y5a{bottom:206.850000px;}
.y35{bottom:211.350000px;}
.ybf{bottom:212.790000px;}
.yaa{bottom:218.444150px;}
.y93{bottom:228.990000px;}
.y59{bottom:230.610000px;}
.y34{bottom:235.110000px;}
.y92{bottom:252.750000px;}
.y58{bottom:254.370000px;}
.y33{bottom:258.870000px;}
.y57{bottom:278.130000px;}
.y32{bottom:282.675000px;}
.y91{bottom:284.655000px;}
.y7c{bottom:290.048226px;}
.y56{bottom:301.935000px;}
.y31{bottom:306.435000px;}
.y8f{bottom:308.929211px;}
.y87{bottom:325.472686px;}
.y55{bottom:325.875000px;}
.y30{bottom:330.375000px;}
.y54{bottom:349.635000px;}
.y2f{bottom:354.135000px;}
.y53{bottom:373.395000px;}
.y2e{bottom:377.895000px;}
.y52{bottom:397.155000px;}
.y2d{bottom:401.655000px;}
.y51{bottom:421.095000px;}
.y2c{bottom:425.595000px;}
.ya9{bottom:427.035000px;}
.y50{bottom:444.855000px;}
.y2b{bottom:449.355000px;}
.ya8{bottom:450.975000px;}
.y4f{bottom:468.615000px;}
.y2a{bottom:473.115000px;}
.ya7{bottom:474.735000px;}
.y7b{bottom:490.035000px;}
.ya5{bottom:491.835000px;}
.y4e{bottom:492.375000px;}
.y29{bottom:496.515000px;}
.y7a{bottom:513.975000px;}
.y4d{bottom:516.315000px;}
.y28{bottom:520.815000px;}
.y79{bottom:537.735000px;}
.y4c{bottom:540.075000px;}
.y27{bottom:544.575000px;}
.y75{bottom:554.835000px;}
.y4b{bottom:563.835000px;}
.y26{bottom:568.365000px;}
.ya4{bottom:575.385000px;}
.y4a{bottom:587.625000px;}
.y25{bottom:592.125000px;}
.y49{bottom:611.565000px;}
.y24{bottom:616.065000px;}
.y74{bottom:617.685000px;}
.y48{bottom:635.325000px;}
.ya3{bottom:638.205000px;}
.y23{bottom:639.825000px;}
.y47{bottom:659.085000px;}
.y72{bottom:659.805000px;}
.y22{bottom:663.585000px;}
.y46{bottom:682.845000px;}
.y21{bottom:687.345000px;}
.ya2{bottom:701.025000px;}
.y45{bottom:706.785000px;}
.y20{bottom:711.285000px;}
.y70{bottom:722.625000px;}
.y44{bottom:723.885000px;}
.y1f{bottom:735.045000px;}
.y43{bottom:748.365000px;}
.y1e{bottom:758.805000px;}
.y9f{bottom:764.025000px;}
.y6b{bottom:764.925000px;}
.y42{bottom:773.025000px;}
.y1d{bottom:782.565000px;}
.y40{bottom:797.505000px;}
.y1c{bottom:806.325000px;}
.y3e{bottom:821.985000px;}
.y66{bottom:827.715000px;}
.y60{bottom:827.745000px;}
.y1b{bottom:830.265000px;}
.y9d{bottom:847.514919px;}
.y97{bottom:847.590000px;}
.y62{bottom:852.090000px;}
.y3d{bottom:853.710000px;}
.y1a{bottom:854.070000px;}
.y9a{bottom:871.890000px;}
.y19{bottom:877.470000px;}
.yc2{bottom:877.830000px;}
.y5f{bottom:901.230000px;}
.y18{bottom:901.590000px;}
.y5e{bottom:925.170000px;}
.y17{bottom:925.530000px;}
.y5d{bottom:948.930000px;}
.y16{bottom:949.290000px;}
.y15{bottom:973.050000px;}
.y14{bottom:996.450000px;}
.y3c{bottom:996.810000px;}
.y13{bottom:1020.750000px;}
.y12{bottom:1044.510000px;}
.y11{bottom:1067.910000px;}
.y3b{bottom:1068.270000px;}
.y10{bottom:1091.670000px;}
.y3a{bottom:1092.030000px;}
.yf{bottom:1115.610000px;}
.y39{bottom:1115.970000px;}
.y9{bottom:1136.880000px;}
.y1{bottom:1153.080000px;}
.h1a{height:20.139893px;}
.h1c{height:21.600000px;}
.h1e{height:23.580000px;}
.h12{height:23.616000px;}
.h10{height:23.624976px;}
.h1d{height:23.625058px;}
.hd{height:23.760000px;}
.hc{height:23.940000px;}
.h8{height:33.120000px;}
.hf{height:41.400000px;}
.h1b{height:45.900000px;}
.h11{height:50.168956px;}
.hb{height:50.484375px;}
.h17{height:52.945146px;}
.h22{height:53.009531px;}
.h16{height:53.086333px;}
.h23{height:55.695196px;}
.h18{height:60.599467px;}
.h13{height:62.100000px;}
.h14{height:62.136000px;}
.he{height:65.736000px;}
.h9{height:65.884219px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:71.613281px;}
.h3{height:72.562500px;}
.h27{height:74.004654px;}
.h24{height:81.035934px;}
.h4{height:82.635820px;}
.h1f{height:82.800000px;}
.h20{height:82.836000px;}
.h26{height:99.940181px;}
.h2{height:109.800000px;}
.h19{height:114.947196px;}
.h25{height:115.078227px;}
.h5{height:129.250898px;}
.h15{height:186.473703px;}
.h21{height:194.710711px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:17.100000px;}
.w9{width:17.280000px;}
.w8{width:17.496000px;}
.w15{width:20.323927px;}
.w19{width:20.323948px;}
.w26{width:20.399545px;}
.w13{width:46.980000px;}
.w28{width:48.816000px;}
.w6{width:50.400000px;}
.w22{width:50.940000px;}
.wb{width:52.380000px;}
.w17{width:53.100000px;}
.w11{width:54.540000px;}
.w25{width:54.720000px;}
.w27{width:55.800000px;}
.w24{width:55.836000px;}
.w18{width:55.980000px;}
.w16{width:56.016000px;}
.w23{width:57.060000px;}
.w14{width:57.240000px;}
.w4{width:61.590000px;}
.w12{width:61.596000px;}
.w20{width:63.000000px;}
.w21{width:64.476000px;}
.wa{width:92.340000px;}
.w1d{width:120.420000px;}
.w2{width:125.856000px;}
.we{width:147.780000px;}
.w10{width:160.410000px;}
.wf{width:166.530000px;}
.w1f{width:169.230000px;}
.w1e{width:175.170000px;}
.wd{width:267.330000px;}
.wc{width:318.135000px;}
.w1b{width:509.975692px;}
.w1c{width:543.086323px;}
.w1a{width:669.050679px;}
.w29{width:686.197230px;}
.w3{width:705.525000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.800000px;}
.x35{left:4.071561px;}
.x9{left:8.100000px;}
.x2{left:9.179973px;}
.x3f{left:10.800000px;}
.x30{left:12.240000px;}
.x7{left:14.580000px;}
.x62{left:15.660000px;}
.x1d{left:17.100000px;}
.x22{left:19.440000px;}
.x33{left:20.520000px;}
.x2e{left:22.320000px;}
.x3c{left:23.400000px;}
.x1{left:25.199970px;}
.x6{left:27.354000px;}
.x3d{left:28.620000px;}
.x3{left:30.239973px;}
.x3e{left:31.314000px;}
.x40{left:33.114000px;}
.x41{left:35.994000px;}
.x36{left:38.205000px;}
.x44{left:40.854000px;}
.x42{left:42.474000px;}
.x43{left:47.334000px;}
.x49{left:61.290657px;}
.x45{left:63.414056px;}
.x5{left:71.994000px;}
.x21{left:74.160000px;}
.x66{left:75.695085px;}
.x25{left:79.965000px;}
.x47{left:98.612096px;}
.x1f{left:100.305000px;}
.x23{left:105.885000px;}
.x27{left:108.900000px;}
.x26{left:113.400000px;}
.x56{left:119.916000px;}
.x24{left:124.560000px;}
.x4{left:125.856000px;}
.xa{left:127.655987px;}
.x1a{left:128.735987px;}
.x2b{left:134.136000px;}
.x63{left:141.303424px;}
.x6d{left:148.895987px;}
.x29{left:160.049987px;}
.x54{left:164.909987px;}
.x67{left:169.179628px;}
.x12{left:176.789987px;}
.x18{left:180.749987px;}
.x19{left:181.829987px;}
.x52{left:185.789987px;}
.x46{left:187.042073px;}
.x64{left:191.042100px;}
.x4a{left:197.973979px;}
.x68{left:202.901749px;}
.x48{left:222.237114px;}
.x65{left:227.279902px;}
.x50{left:232.749139px;}
.x1e{left:234.390000px;}
.x15{left:239.609987px;}
.x57{left:241.230000px;}
.x4e{left:246.815159px;}
.x4f{left:253.884305px;}
.x5d{left:258.914980px;}
.x1c{left:268.949987px;}
.x2c{left:282.630000px;}
.x5e{left:297.975000px;}
.x34{left:300.539980px;}
.x69{left:310.417211px;}
.x2a{left:313.454987px;}
.x4b{left:321.598997px;}
.x53{left:327.494987px;}
.x17{left:333.074987px;}
.x37{left:339.375000px;}
.x55{left:353.234987px;}
.x13{left:383.294987px;}
.x38{left:393.195000px;}
.x16{left:398.234987px;}
.x58{left:417.315000px;}
.x14{left:418.754987px;}
.x5f{left:434.939959px;}
.x4c{left:447.503370px;}
.x2d{left:449.895000px;}
.x6a{left:459.606145px;}
.x39{left:467.714959px;}
.x60{left:474.015000px;}
.x3a{left:506.625000px;}
.x28{left:510.404987px;}
.x61{left:523.545000px;}
.x4d{left:546.940232px;}
.x20{left:553.245000px;}
.x3b{left:554.325000px;}
.x6b{left:562.180088px;}
.x59{left:587.445000px;}
.x2f{left:611.025000px;}
.xb{left:619.305000px;}
.x5a{left:651.165000px;}
.x31{left:666.285000px;}
.xc{left:669.705000px;}
.xd{left:686.805000px;}
.xe{left:704.310000px;}
.x5b{left:716.550000px;}
.xf{left:721.590000px;}
.x32{left:728.610000px;}
.x10{left:738.870000px;}
.x5c{left:768.210000px;}
.x1b{left:777.029987px;}
.x51{left:808.349987px;}
.x8{left:831.390000px;}
.x6c{left:833.189987px;}
@media print{
.v8{vertical-align:-23.342073pt;}
.v3{vertical-align:-21.610408pt;}
.v6{vertical-align:-15.600413pt;}
.v1{vertical-align:-14.705307pt;}
.v4{vertical-align:-12.915096pt;}
.v5{vertical-align:-10.101907pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.173828pt;}
.v9{vertical-align:48.254432pt;}
.v7{vertical-align:55.112933pt;}
.ls15{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.607393pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.132625pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.255744pt;}
.ls11{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.287713pt;}
.lse{letter-spacing:0.319681pt;}
.ls16{letter-spacing:0.512000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls3{letter-spacing:4.480000pt;}
.ls6{letter-spacing:5.760000pt;}
.ls5{letter-spacing:7.040000pt;}
.ls13{letter-spacing:9.728000pt;}
.ls2{letter-spacing:12.800000pt;}
.lsb{letter-spacing:25.600000pt;}
.ls4{letter-spacing:26.880000pt;}
.ls14{letter-spacing:69.120000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws1b{word-spacing:-16.512000pt;}
.ws1c{word-spacing:-16.256000pt;}
.ws1a{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws19{word-spacing:-15.360000pt;}
.ws2{word-spacing:-14.656000pt;}
.ws9{word-spacing:-12.275735pt;}
.ws7{word-spacing:-12.019990pt;}
.ws10{word-spacing:-12.002600pt;}
.wsb{word-spacing:-11.988022pt;}
.wsf{word-spacing:-11.412597pt;}
.ws4{word-spacing:0.000000pt;}
.ws17{word-spacing:122.540581pt;}
.wse{word-spacing:171.031842pt;}
.ws16{word-spacing:171.239838pt;}
.wsd{word-spacing:180.057661pt;}
.ws18{word-spacing:180.171630pt;}
.wsc{word-spacing:186.078312pt;}
.ws8{word-spacing:317.826440pt;}
.wsa{word-spacing:318.320027pt;}
.ws12{word-spacing:330.582116pt;}
.ws13{word-spacing:330.794317pt;}
.ws14{word-spacing:331.062220pt;}
.ws11{word-spacing:331.115270pt;}
.ws15{word-spacing:331.168320pt;}
._2{margin-left:-1.920000pt;}
._1{margin-left:-0.942080pt;}
._0{width:1.198080pt;}
._8{width:2.257920pt;}
._10{width:3.197013pt;}
._5{width:4.480000pt;}
._4{width:5.504000pt;}
._6{width:6.464000pt;}
._7{width:8.192000pt;}
._19{width:9.923840pt;}
._11{width:11.072000pt;}
._b{width:12.032000pt;}
._3{width:12.928000pt;}
._18{width:14.098347pt;}
._16{width:17.361920pt;}
._1f{width:18.381653pt;}
._15{width:19.811840pt;}
._14{width:20.974080pt;}
._17{width:21.888000pt;}
._1e{width:23.505920pt;}
._13{width:24.896000pt;}
._12{width:26.225920pt;}
._c{width:27.264000pt;}
._d{width:28.245760pt;}
._9{width:29.312000pt;}
._a{width:30.254507pt;}
._20{width:32.000000pt;}
._e{width:35.968000pt;}
._f{width:37.209173pt;}
._1a{width:38.464000pt;}
._21{width:41.152000pt;}
._22{width:42.193920pt;}
._1b{width:58.048000pt;}
._1c{width:59.025920pt;}
._1d{width:60.288000pt;}
._24{width:68.394667pt;}
._23{width:85.649195pt;}
.fs7{font-size:47.952088pt;}
.fs8{font-size:48.010401pt;}
.fs6{font-size:48.079960pt;}
.fs4{font-size:58.880000pt;}
.fs5{font-size:62.213758pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:2.720000pt;}
.y67{bottom:2.812456pt;}
.y9e{bottom:2.812514pt;}
.y65{bottom:3.680000pt;}
.y6e{bottom:4.000000pt;}
.y9b{bottom:4.160000pt;}
.y90{bottom:4.603409pt;}
.y69{bottom:4.960000pt;}
.y6a{bottom:5.280000pt;}
.y99{bottom:5.600000pt;}
.y3f{bottom:6.400000pt;}
.y41{bottom:6.560000pt;}
.y88{bottom:8.823196pt;}
.y63{bottom:12.960000pt;}
.yd{bottom:14.240000pt;}
.y9c{bottom:14.880000pt;}
.yb{bottom:15.040000pt;}
.yc{bottom:15.680000pt;}
.y7{bottom:18.400000pt;}
.y71{bottom:18.560000pt;}
.ybe{bottom:20.423927pt;}
.y8e{bottom:21.866030pt;}
.y64{bottom:22.080000pt;}
.y6d{bottom:22.400000pt;}
.y77{bottom:22.426667pt;}
.y61{bottom:23.720000pt;}
.y98{bottom:24.000000pt;}
.y4{bottom:24.800000pt;}
.y6f{bottom:27.680000pt;}
.y78{bottom:27.706667pt;}
.y73{bottom:27.840000pt;}
.ya1{bottom:36.800000pt;}
.ya6{bottom:36.960000pt;}
.yb8{bottom:39.621461pt;}
.y6{bottom:40.320000pt;}
.y6c{bottom:40.800000pt;}
.y76{bottom:40.826667pt;}
.y3{bottom:43.200000pt;}
.y8{bottom:43.520000pt;}
.ybd{bottom:53.215554pt;}
.ybc{bottom:53.414495pt;}
.ybb{bottom:53.414499pt;}
.yba{bottom:53.414502pt;}
.yb7{bottom:53.414506pt;}
.y86{bottom:54.089839pt;}
.y8d{bottom:54.537378pt;}
.y8c{bottom:54.537381pt;}
.y8b{bottom:54.537384pt;}
.y8a{bottom:54.537388pt;}
.ya0{bottom:59.200000pt;}
.y2{bottom:61.600000pt;}
.ye{bottom:66.592000pt;}
.yb9{bottom:67.207546pt;}
.yb6{bottom:67.207549pt;}
.y5{bottom:67.520000pt;}
.y85{bottom:67.836104pt;}
.y89{bottom:68.315621pt;}
.ya{bottom:80.992000pt;}
.yaf{bottom:81.299000pt;}
.y81{bottom:82.413540pt;}
.yb0{bottom:93.566852pt;}
.y82{bottom:104.087884pt;}
.yb1{bottom:105.801547pt;}
.yb2{bottom:118.069398pt;}
.y38{bottom:124.352000pt;}
.y80{bottom:125.378605pt;}
.y83{bottom:125.730259pt;}
.yae{bottom:126.093230pt;}
.y7e{bottom:126.337648pt;}
.yac{bottom:128.541496pt;}
.yb3{bottom:130.305419pt;}
.yc1{bottom:139.706667pt;}
.y96{bottom:140.346667pt;}
.y5c{bottom:141.466667pt;}
.yb4{bottom:142.573270pt;}
.y37{bottom:145.466667pt;}
.y84{bottom:147.400607pt;}
.yad{bottom:149.297376pt;}
.y7f{bottom:149.611729pt;}
.y7d{bottom:149.998011pt;}
.yab{bottom:152.811951pt;}
.yb5{bottom:154.801333pt;}
.yc0{bottom:160.666667pt;}
.y95{bottom:161.466667pt;}
.y5b{bottom:162.586667pt;}
.y36{bottom:166.586667pt;}
.y94{bottom:182.586667pt;}
.y5a{bottom:183.866667pt;}
.y35{bottom:187.866667pt;}
.ybf{bottom:189.146667pt;}
.yaa{bottom:194.172578pt;}
.y93{bottom:203.546667pt;}
.y59{bottom:204.986667pt;}
.y34{bottom:208.986667pt;}
.y92{bottom:224.666667pt;}
.y58{bottom:226.106667pt;}
.y33{bottom:230.106667pt;}
.y57{bottom:247.226667pt;}
.y32{bottom:251.266667pt;}
.y91{bottom:253.026667pt;}
.y7c{bottom:257.820645pt;}
.y56{bottom:268.386667pt;}
.y31{bottom:272.386667pt;}
.y8f{bottom:274.603743pt;}
.y87{bottom:289.309054pt;}
.y55{bottom:289.666667pt;}
.y30{bottom:293.666667pt;}
.y54{bottom:310.786667pt;}
.y2f{bottom:314.786667pt;}
.y53{bottom:331.906667pt;}
.y2e{bottom:335.906667pt;}
.y52{bottom:353.026667pt;}
.y2d{bottom:357.026667pt;}
.y51{bottom:374.306667pt;}
.y2c{bottom:378.306667pt;}
.ya9{bottom:379.586667pt;}
.y50{bottom:395.426667pt;}
.y2b{bottom:399.426667pt;}
.ya8{bottom:400.866667pt;}
.y4f{bottom:416.546667pt;}
.y2a{bottom:420.546667pt;}
.ya7{bottom:421.986667pt;}
.y7b{bottom:435.586667pt;}
.ya5{bottom:437.186667pt;}
.y4e{bottom:437.666667pt;}
.y29{bottom:441.346667pt;}
.y7a{bottom:456.866667pt;}
.y4d{bottom:458.946667pt;}
.y28{bottom:462.946667pt;}
.y79{bottom:477.986667pt;}
.y4c{bottom:480.066667pt;}
.y27{bottom:484.066667pt;}
.y75{bottom:493.186667pt;}
.y4b{bottom:501.186667pt;}
.y26{bottom:505.213333pt;}
.ya4{bottom:511.453333pt;}
.y4a{bottom:522.333333pt;}
.y25{bottom:526.333333pt;}
.y49{bottom:543.613333pt;}
.y24{bottom:547.613333pt;}
.y74{bottom:549.053333pt;}
.y48{bottom:564.733333pt;}
.ya3{bottom:567.293333pt;}
.y23{bottom:568.733333pt;}
.y47{bottom:585.853333pt;}
.y72{bottom:586.493333pt;}
.y22{bottom:589.853333pt;}
.y46{bottom:606.973333pt;}
.y21{bottom:610.973333pt;}
.ya2{bottom:623.133333pt;}
.y45{bottom:628.253333pt;}
.y20{bottom:632.253333pt;}
.y70{bottom:642.333333pt;}
.y44{bottom:643.453333pt;}
.y1f{bottom:653.373333pt;}
.y43{bottom:665.213333pt;}
.y1e{bottom:674.493333pt;}
.y9f{bottom:679.133333pt;}
.y6b{bottom:679.933333pt;}
.y42{bottom:687.133333pt;}
.y1d{bottom:695.613333pt;}
.y40{bottom:708.893333pt;}
.y1c{bottom:716.733333pt;}
.y3e{bottom:730.653333pt;}
.y66{bottom:735.746667pt;}
.y60{bottom:735.773333pt;}
.y1b{bottom:738.013333pt;}
.y9d{bottom:753.346594pt;}
.y97{bottom:753.413333pt;}
.y62{bottom:757.413333pt;}
.y3d{bottom:758.853333pt;}
.y1a{bottom:759.173333pt;}
.y9a{bottom:775.013333pt;}
.y19{bottom:779.973333pt;}
.yc2{bottom:780.293333pt;}
.y5f{bottom:801.093333pt;}
.y18{bottom:801.413333pt;}
.y5e{bottom:822.373333pt;}
.y17{bottom:822.693333pt;}
.y5d{bottom:843.493333pt;}
.y16{bottom:843.813333pt;}
.y15{bottom:864.933333pt;}
.y14{bottom:885.733333pt;}
.y3c{bottom:886.053333pt;}
.y13{bottom:907.333333pt;}
.y12{bottom:928.453333pt;}
.y11{bottom:949.253333pt;}
.y3b{bottom:949.573333pt;}
.y10{bottom:970.373333pt;}
.y3a{bottom:970.693333pt;}
.yf{bottom:991.653333pt;}
.y39{bottom:991.973333pt;}
.y9{bottom:1010.560000pt;}
.y1{bottom:1024.960000pt;}
.h1a{height:17.902127pt;}
.h1c{height:19.200000pt;}
.h1e{height:20.960000pt;}
.h12{height:20.992000pt;}
.h10{height:20.999979pt;}
.h1d{height:21.000051pt;}
.hd{height:21.120000pt;}
.hc{height:21.280000pt;}
.h8{height:29.440000pt;}
.hf{height:36.800000pt;}
.h1b{height:40.800000pt;}
.h11{height:44.594627pt;}
.hb{height:44.875000pt;}
.h17{height:47.062352pt;}
.h22{height:47.119583pt;}
.h16{height:47.187852pt;}
.h23{height:49.506841pt;}
.h18{height:53.866193pt;}
.h13{height:55.200000pt;}
.h14{height:55.232000pt;}
.he{height:58.432000pt;}
.h9{height:58.563750pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:63.656250pt;}
.h3{height:64.500000pt;}
.h27{height:65.781915pt;}
.h24{height:72.031942pt;}
.h4{height:73.454062pt;}
.h1f{height:73.600000pt;}
.h20{height:73.632000pt;}
.h26{height:88.835717pt;}
.h2{height:97.600000pt;}
.h19{height:102.175285pt;}
.h25{height:102.291757pt;}
.h5{height:114.889687pt;}
.h15{height:165.754402pt;}
.h21{height:173.076188pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:15.200000pt;}
.w9{width:15.360000pt;}
.w8{width:15.552000pt;}
.w15{width:18.065713pt;}
.w19{width:18.065731pt;}
.w26{width:18.132929pt;}
.w13{width:41.760000pt;}
.w28{width:43.392000pt;}
.w6{width:44.800000pt;}
.w22{width:45.280000pt;}
.wb{width:46.560000pt;}
.w17{width:47.200000pt;}
.w11{width:48.480000pt;}
.w25{width:48.640000pt;}
.w27{width:49.600000pt;}
.w24{width:49.632000pt;}
.w18{width:49.760000pt;}
.w16{width:49.792000pt;}
.w23{width:50.720000pt;}
.w14{width:50.880000pt;}
.w4{width:54.746667pt;}
.w12{width:54.752000pt;}
.w20{width:56.000000pt;}
.w21{width:57.312000pt;}
.wa{width:82.080000pt;}
.w1d{width:107.040000pt;}
.w2{width:111.872000pt;}
.we{width:131.360000pt;}
.w10{width:142.586667pt;}
.wf{width:148.026667pt;}
.w1f{width:150.426667pt;}
.w1e{width:155.706667pt;}
.wd{width:237.626667pt;}
.wc{width:282.786667pt;}
.w1b{width:453.311726pt;}
.w1c{width:482.743398pt;}
.w1a{width:594.711714pt;}
.w29{width:609.953093pt;}
.w3{width:627.133333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:1.600000pt;}
.x35{left:3.619165pt;}
.x9{left:7.200000pt;}
.x2{left:8.159976pt;}
.x3f{left:9.600000pt;}
.x30{left:10.880000pt;}
.x7{left:12.960000pt;}
.x62{left:13.920000pt;}
.x1d{left:15.200000pt;}
.x22{left:17.280000pt;}
.x33{left:18.240000pt;}
.x2e{left:19.840000pt;}
.x3c{left:20.800000pt;}
.x1{left:22.399973pt;}
.x6{left:24.314667pt;}
.x3d{left:25.440000pt;}
.x3{left:26.879976pt;}
.x3e{left:27.834667pt;}
.x40{left:29.434667pt;}
.x41{left:31.994667pt;}
.x36{left:33.960000pt;}
.x44{left:36.314667pt;}
.x42{left:37.754667pt;}
.x43{left:42.074667pt;}
.x49{left:54.480584pt;}
.x45{left:56.368050pt;}
.x5{left:63.994667pt;}
.x21{left:65.920000pt;}
.x66{left:67.284520pt;}
.x25{left:71.080000pt;}
.x47{left:87.655196pt;}
.x1f{left:89.160000pt;}
.x23{left:94.120000pt;}
.x27{left:96.800000pt;}
.x26{left:100.800000pt;}
.x56{left:106.592000pt;}
.x24{left:110.720000pt;}
.x4{left:111.872000pt;}
.xa{left:113.471988pt;}
.x1a{left:114.431988pt;}
.x2b{left:119.232000pt;}
.x63{left:125.603044pt;}
.x6d{left:132.351988pt;}
.x29{left:142.266655pt;}
.x54{left:146.586655pt;}
.x67{left:150.381892pt;}
.x12{left:157.146655pt;}
.x18{left:160.666655pt;}
.x19{left:161.626655pt;}
.x52{left:165.146655pt;}
.x46{left:166.259620pt;}
.x64{left:169.815200pt;}
.x4a{left:175.976870pt;}
.x68{left:180.357110pt;}
.x48{left:197.544101pt;}
.x65{left:202.026580pt;}
.x50{left:206.888124pt;}
.x1e{left:208.346667pt;}
.x15{left:212.986655pt;}
.x57{left:214.426667pt;}
.x4e{left:219.391252pt;}
.x4f{left:225.674938pt;}
.x5d{left:230.146649pt;}
.x1c{left:239.066655pt;}
.x2c{left:251.226667pt;}
.x5e{left:264.866667pt;}
.x34{left:267.146649pt;}
.x69{left:275.926409pt;}
.x2a{left:278.626655pt;}
.x4b{left:285.865775pt;}
.x53{left:291.106655pt;}
.x17{left:296.066655pt;}
.x37{left:301.666667pt;}
.x55{left:313.986655pt;}
.x13{left:340.706655pt;}
.x38{left:349.506667pt;}
.x16{left:353.986655pt;}
.x58{left:370.946667pt;}
.x14{left:372.226655pt;}
.x5f{left:386.613297pt;}
.x4c{left:397.780773pt;}
.x2d{left:399.906667pt;}
.x6a{left:408.538795pt;}
.x39{left:415.746630pt;}
.x60{left:421.346667pt;}
.x3a{left:450.333333pt;}
.x28{left:453.693322pt;}
.x61{left:465.373333pt;}
.x4d{left:486.169095pt;}
.x20{left:491.773333pt;}
.x3b{left:492.733333pt;}
.x6b{left:499.715634pt;}
.x59{left:522.173333pt;}
.x2f{left:543.133333pt;}
.xb{left:550.493333pt;}
.x5a{left:578.813333pt;}
.x31{left:592.253333pt;}
.xc{left:595.293333pt;}
.xd{left:610.493333pt;}
.xe{left:626.053333pt;}
.x5b{left:636.933333pt;}
.xf{left:641.413333pt;}
.x32{left:647.653333pt;}
.x10{left:656.773333pt;}
.x5c{left:682.853333pt;}
.x1b{left:690.693322pt;}
.x51{left:718.533322pt;}
.x8{left:739.013333pt;}
.x6c{left:740.613322pt;}
}




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