
    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_867d9c56ccfc69a8446f6c71.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.948242;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_4c887b7beb20e7a59632414f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.859375;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_1a3b592325fee07fc1e8c92e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.720215;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_7947a34a43a22b93f5f9c4da.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.689941;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_a7ca60ce6da9982191008858.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.979980;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_35950c80324553ec40c19c05.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.074219;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_ca6234807a28ffa6a28ea9f4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.073730;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_a88e1159d61b60a043c256f2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.708008;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_40200e3aeda2075090a48442.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_56e4e300aceabc19d5791768.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932129;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_e6303e9b9afcc9b710de93e4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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);}
.v3{vertical-align:-28.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.200000px;}
.v2{vertical-align:39.630000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024000px;}
.ls3{letter-spacing:0.048000px;}
.ls1{letter-spacing:0.192000px;}
.ls6{letter-spacing:0.504000px;}
.ls5{letter-spacing:7.674876px;}
.ls4{letter-spacing:7.751922px;}
.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;}
}
.ws8{word-spacing:-18.000000px;}
.ws7{word-spacing:-16.500000px;}
.wsb{word-spacing:-15.000000px;}
.ws9{word-spacing:-10.500000px;}
.ws1{word-spacing:-8.133471px;}
.ws2{word-spacing:-8.017001px;}
.ws5{word-spacing:-7.320124px;}
.ws0{word-spacing:-7.215301px;}
.ws4{word-spacing:-6.413601px;}
.wsa{word-spacing:-0.066000px;}
.ws3{word-spacing:-0.039755px;}
.ws6{word-spacing:0.000000px;}
.wsf{word-spacing:36.000000px;}
.ws18{word-spacing:142.608000px;}
.wsc{word-spacing:154.056000px;}
.ws17{word-spacing:285.198000px;}
.ws16{word-spacing:301.266000px;}
.ws15{word-spacing:323.088000px;}
.wsd{word-spacing:361.200000px;}
.ws13{word-spacing:383.598000px;}
.wse{word-spacing:397.200000px;}
.ws14{word-spacing:399.666000px;}
.ws10{word-spacing:403.062000px;}
.ws11{word-spacing:460.050000px;}
.ws12{word-spacing:483.900000px;}
._0{margin-left:-1.345231px;}
._5{width:1.488000px;}
._b{width:2.520000px;}
._6{width:3.528000px;}
._7{width:4.824000px;}
._9{width:5.953231px;}
._8{width:6.984000px;}
._4{width:8.640000px;}
._3{width:9.864000px;}
._1{width:11.592000px;}
._2{width:12.649231px;}
._a{width:14.510154px;}
._10{width:16.080000px;}
._f{width:17.460000px;}
._e{width:19.044000px;}
._16{width:20.761231px;}
._13{width:22.080000px;}
._14{width:23.640000px;}
._1f{width:25.680000px;}
._d{width:28.644000px;}
._15{width:29.748000px;}
._20{width:30.828000px;}
._40{width:39.348000px;}
._12{width:45.444000px;}
._11{width:48.024000px;}
._3f{width:49.548000px;}
._c{width:54.000000px;}
._41{width:59.748000px;}
._33{width:132.486000px;}
._1c{width:195.744000px;}
._1a{width:203.736000px;}
._34{width:204.900000px;}
._19{width:215.688000px;}
._18{width:223.608000px;}
._29{width:227.004000px;}
._17{width:231.768000px;}
._21{width:251.004000px;}
._2c{width:257.664000px;}
._36{width:258.774000px;}
._35{width:264.300000px;}
._37{width:282.114000px;}
._1d{width:311.304000px;}
._2e{width:337.374000px;}
._2a{width:339.390000px;}
._2d{width:345.300000px;}
._31{width:357.960000px;}
._22{width:362.910000px;}
._2f{width:366.714000px;}
._1e{width:379.800000px;}
._32{width:381.000000px;}
._23{width:382.998000px;}
._3b{width:400.800000px;}
._38{width:406.134000px;}
._24{width:412.236000px;}
._1b{width:415.200000px;}
._3a{width:421.200000px;}
._3d{width:433.800000px;}
._39{width:436.800000px;}
._3c{width:437.934000px;}
._25{width:484.266000px;}
._26{width:485.334000px;}
._30{width:500.004000px;}
._28{width:502.470000px;}
._27{width:516.930000px;}
._3e{width:518.208000px;}
._2b{width:519.300000px;}
.fc1{color:rgb(56,116,161);}
.fc5{color:rgb(180,180,180);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(96,96,96);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:24.000000px;}
.fs3{font-size:31.804007px;}
.fs0{font-size:35.779508px;}
.fs2{font-size:39.755009px;}
.fs7{font-size:42.000000px;}
.fs4{font-size:47.706010px;}
.fs8{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs9{font-size:71.946000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:79.510017px;}
.y0{bottom:0.000000px;}
.y16{bottom:0.042000px;}
.y1{bottom:0.212321px;}
.y8b{bottom:3.672000px;}
.yc{bottom:3.975484px;}
.ya{bottom:3.975504px;}
.y11{bottom:3.975508px;}
.y112{bottom:7.500000px;}
.y8a{bottom:16.258500px;}
.y15{bottom:24.846853px;}
.y14{bottom:47.705982px;}
.y6a{bottom:111.241500px;}
.y73{bottom:111.391500px;}
.y78{bottom:113.341500px;}
.yf1{bottom:115.291500px;}
.yff{bottom:125.791500px;}
.y82{bottom:128.491500px;}
.y69{bottom:128.791500px;}
.ya3{bottom:130.141500px;}
.y72{bottom:130.441500px;}
.yaa{bottom:140.941500px;}
.y77{bottom:144.391500px;}
.y110{bottom:145.891500px;}
.y81{bottom:146.041500px;}
.yf0{bottom:146.341500px;}
.yba{bottom:146.941500px;}
.y51{bottom:147.541500px;}
.y92{bottom:147.691500px;}
.y71{bottom:149.341500px;}
.y10f{bottom:163.441500px;}
.y50{bottom:164.791500px;}
.ya2{bottom:165.091500px;}
.y91{bottom:166.741500px;}
.y70{bottom:168.391500px;}
.y8d{bottom:169.741500px;}
.ya9{bottom:171.991500px;}
.y76{bottom:175.441500px;}
.yef{bottom:177.391500px;}
.yb9{bottom:177.991500px;}
.yd0{bottom:180.091500px;}
.y4f{bottom:182.191500px;}
.y111{bottom:182.341500px;}
.ya1{bottom:183.841500px;}
.y100{bottom:183.991500px;}
.yfe{bottom:185.341500px;}
.y90{bottom:185.491500px;}
.y6f{bottom:187.141500px;}
.y4e{bottom:199.441500px;}
.y10e{bottom:199.741500px;}
.y8c{bottom:200.791500px;}
.ya0{bottom:201.091500px;}
.y108{bottom:201.391500px;}
.y8f{bottom:202.741500px;}
.ya8{bottom:203.041500px;}
.y6e{bottom:204.691500px;}
.y75{bottom:206.491500px;}
.y2d{bottom:206.791500px;}
.yee{bottom:208.441500px;}
.yb8{bottom:209.041500px;}
.yfd{bottom:216.391500px;}
.y4d{bottom:216.841500px;}
.ycf{bottom:217.741500px;}
.y10d{bottom:218.491500px;}
.y9f{bottom:218.641500px;}
.y107{bottom:220.141500px;}
.y8e{bottom:220.291500px;}
.y6d{bottom:223.591500px;}
.y89{bottom:228.058500px;}
.yf5{bottom:231.841500px;}
.y4c{bottom:234.091500px;}
.y68{bottom:234.391500px;}
.y10c{bottom:236.041500px;}
.y74{bottom:237.541500px;}
.y106{bottom:237.691500px;}
.y10b{bottom:239.041500px;}
.yed{bottom:239.491500px;}
.yb7{bottom:240.091500px;}
.y88{bottom:242.641500px;}
.y2c{bottom:243.241500px;}
.yfc{bottom:247.441500px;}
.y9e{bottom:250.591500px;}
.y4b{bottom:251.491500px;}
.ya7{bottom:252.091500px;}
.y67{bottom:253.141500px;}
.yce{bottom:255.541500px;}
.y105{bottom:256.441500px;}
.y10a{bottom:256.591500px;}
.yf4{bottom:262.891500px;}
.y6c{bottom:268.591500px;}
.y4a{bottom:268.741500px;}
.yec{bottom:270.541500px;}
.y66{bottom:270.691500px;}
.yb6{bottom:271.141500px;}
.y104{bottom:273.991500px;}
.y109{bottom:275.341500px;}
.yfb{bottom:278.491500px;}
.y2b{bottom:279.541500px;}
.y9d{bottom:281.641500px;}
.y49{bottom:286.141500px;}
.y103{bottom:292.891500px;}
.yf3{bottom:293.941500px;}
.y87{bottom:295.441500px;}
.y65{bottom:299.641500px;}
.yeb{bottom:301.591500px;}
.yb5{bottom:302.191500px;}
.y48{bottom:303.391500px;}
.ye7{bottom:304.891500px;}
.yfa{bottom:309.541500px;}
.y102{bottom:311.641500px;}
.y9c{bottom:312.691500px;}
.y2a{bottom:315.991500px;}
.y47{bottom:320.791500px;}
.y86{bottom:326.491500px;}
.ya6{bottom:328.741500px;}
.y101{bottom:329.191500px;}
.y64{bottom:330.691500px;}
.yb4{bottom:333.241500px;}
.ye6{bottom:335.941500px;}
.y46{bottom:338.041500px;}
.y9b{bottom:343.741500px;}
.ycd{bottom:343.891500px;}
.yf2{bottom:352.141500px;}
.y29{bottom:352.291500px;}
.y45{bottom:355.441500px;}
.y85{bottom:357.541500px;}
.y63{bottom:361.741500px;}
.yea{bottom:363.691500px;}
.ya5{bottom:366.391500px;}
.ye5{bottom:366.991500px;}
.yf9{bottom:367.741500px;}
.y44{bottom:372.691500px;}
.y9a{bottom:374.791500px;}
.ycc{bottom:374.941500px;}
.yb3{bottom:382.291500px;}
.y84{bottom:388.591500px;}
.y28{bottom:388.741500px;}
.y43{bottom:390.241500px;}
.y62{bottom:392.791500px;}
.ye4{bottom:398.041500px;}
.ya4{bottom:404.191500px;}
.y99{bottom:405.841500px;}
.ycb{bottom:405.991500px;}
.y61{bottom:423.841500px;}
.ye9{bottom:424.591500px;}
.y27{bottom:425.041500px;}
.y42{bottom:426.391500px;}
.ye3{bottom:429.091500px;}
.y98{bottom:436.891500px;}
.yca{bottom:437.041500px;}
.yb2{bottom:443.491500px;}
.ye8{bottom:443.641500px;}
.y83{bottom:450.691500px;}
.y60{bottom:454.891500px;}
.y41{bottom:457.441500px;}
.ye2{bottom:460.141500px;}
.y26{bottom:461.491500px;}
.y97{bottom:467.941500px;}
.yc9{bottom:468.091500px;}
.yb1{bottom:481.141500px;}
.y6b{bottom:485.941500px;}
.y40{bottom:488.491500px;}
.ye1{bottom:491.191500px;}
.y25{bottom:497.791500px;}
.y96{bottom:498.991500px;}
.yc8{bottom:499.141500px;}
.yac{bottom:502.933500px;}
.y5f{bottom:516.991500px;}
.yb0{bottom:518.941500px;}
.y3f{bottom:519.541500px;}
.ye0{bottom:522.241500px;}
.yab{bottom:526.783500px;}
.y95{bottom:530.041500px;}
.yc7{bottom:530.191500px;}
.y24{bottom:534.241500px;}
.y80{bottom:543.541500px;}
.y5e{bottom:548.041500px;}
.y3e{bottom:550.591500px;}
.ydf{bottom:553.291500px;}
.y94{bottom:561.091500px;}
.yc6{bottom:561.241500px;}
.y23{bottom:570.541500px;}
.y7f{bottom:574.591500px;}
.y5d{bottom:579.091500px;}
.y3d{bottom:581.641500px;}
.yde{bottom:584.341500px;}
.yaf{bottom:588.391500px;}
.y93{bottom:592.141500px;}
.yc5{bottom:592.291500px;}
.y7e{bottom:605.641500px;}
.y22{bottom:606.991500px;}
.y5c{bottom:610.141500px;}
.y3c{bottom:612.691500px;}
.ydd{bottom:615.391500px;}
.yc4{bottom:623.341500px;}
.yae{bottom:626.191500px;}
.y5b{bottom:641.191500px;}
.y21{bottom:643.291500px;}
.y3b{bottom:643.741500px;}
.ydc{bottom:646.441500px;}
.yc3{bottom:654.391500px;}
.yad{bottom:663.841500px;}
.y7d{bottom:667.741500px;}
.y5a{bottom:672.241500px;}
.y3a{bottom:674.791500px;}
.ydb{bottom:677.491500px;}
.y20{bottom:679.741500px;}
.yc2{bottom:685.441500px;}
.y59{bottom:703.291500px;}
.y39{bottom:705.841500px;}
.yda{bottom:708.541500px;}
.y1f{bottom:716.041500px;}
.y7c{bottom:723.391500px;}
.y58{bottom:734.341500px;}
.yc1{bottom:734.491500px;}
.y38{bottom:736.891500px;}
.yd9{bottom:739.591500px;}
.y7b{bottom:746.941500px;}
.y13{bottom:753.357385px;}
.y57{bottom:765.391500px;}
.y37{bottom:767.941500px;}
.y7a{bottom:770.341500px;}
.yd8{bottom:770.641500px;}
.yf8{bottom:775.441500px;}
.y12{bottom:777.210390px;}
.y1e{bottom:784.741500px;}
.y10{bottom:791.336957px;}
.y79{bottom:795.241500px;}
.y56{bottom:796.441500px;}
.y36{bottom:798.991500px;}
.yd7{bottom:801.691500px;}
.yf7{bottom:803.941500px;}
.yf{bottom:807.238963px;}
.y55{bottom:827.491500px;}
.yc0{bottom:829.141500px;}
.y35{bottom:830.041500px;}
.yf6{bottom:832.291500px;}
.yd6{bottom:832.741500px;}
.ye{bottom:847.775530px;}
.y1d{bottom:858.541500px;}
.y34{bottom:861.091500px;}
.yd5{bottom:863.791500px;}
.ybf{bottom:866.791500px;}
.yd{bottom:871.628535px;}
.yb{bottom:885.755125px;}
.y54{bottom:889.591500px;}
.y33{bottom:892.141500px;}
.yd4{bottom:894.841500px;}
.y9{bottom:901.657109px;}
.ybe{bottom:904.591500px;}
.y1c{bottom:920.641500px;}
.y32{bottom:923.191500px;}
.y8{bottom:932.254923px;}
.y53{bottom:951.691500px;}
.y31{bottom:954.241500px;}
.y7{bottom:970.022182px;}
.y1b{bottom:982.741500px;}
.y30{bottom:985.291500px;}
.y6{bottom:985.924185px;}
.ybd{bottom:992.041500px;}
.y1a{bottom:1013.791500px;}
.y2f{bottom:1016.341500px;}
.yd3{bottom:1023.091500px;}
.ybc{bottom:1029.841500px;}
.y5{bottom:1034.624071px;}
.y52{bottom:1044.841500px;}
.yd2{bottom:1060.891500px;}
.ybb{bottom:1067.491500px;}
.y19{bottom:1075.891500px;}
.y4{bottom:1076.366830px;}
.y2e{bottom:1078.441500px;}
.yd1{bottom:1098.541500px;}
.y3{bottom:1104.195336px;}
.y18{bottom:1106.941500px;}
.y17{bottom:1137.991500px;}
.y2{bottom:1144.944219px;}
.h9{height:12.920361px;}
.h8{height:12.920383px;}
.hb{height:12.920405px;}
.h6{height:23.029952px;}
.h18{height:25.031250px;}
.h3{height:25.908696px;}
.h5{height:28.787440px;}
.ha{height:31.932124px;}
.h7{height:34.544928px;}
.h12{height:42.364500px;}
.h11{height:51.503906px;}
.h16{height:52.171875px;}
.h15{height:56.654297px;}
.h14{height:61.723204px;}
.hf{height:61.804688px;}
.h17{height:64.232227px;}
.h10{height:64.252734px;}
.h4{height:67.203047px;}
.h13{height:101.353204px;}
.h2{height:1261.227619px;}
.h0{height:1261.439940px;}
.h1{height:1261.500000px;}
.he{height:1262.791500px;}
.hc{height:1262.834646px;}
.hd{height:1263.000000px;}
.w6{width:45.217500px;}
.w2{width:346.862448px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.w5{width:892.912500px;}
.w3{width:892.955906px;}
.w4{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:28.786500px;}
.x1{left:59.632513px;}
.x7{left:64.601889px;}
.x1d{left:75.000000px;}
.x3{left:99.387518px;}
.x8{left:108.150000px;}
.x4{left:110.320149px;}
.x19{left:115.050000px;}
.x11{left:118.350000px;}
.x16{left:123.450000px;}
.x1b{left:128.100000px;}
.x1a{left:132.300000px;}
.x10{left:135.150000px;}
.x15{left:137.850000px;}
.x14{left:142.050000px;}
.x12{left:147.000000px;}
.x1c{left:151.200000px;}
.x13{left:157.050000px;}
.x9{left:162.150000px;}
.xa{left:189.150000px;}
.xb{left:216.150000px;}
.x17{left:219.750000px;}
.xc{left:220.950000px;}
.x18{left:225.750000px;}
.xd{left:420.306000px;}
.x2{left:446.249971px;}
.xf{left:465.750000px;}
.x5{left:486.004991px;}
.x6{left:496.937607px;}
@media print{
.v3{vertical-align:-25.066667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.066667pt;}
.v2{vertical-align:35.226667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.021333pt;}
.ls3{letter-spacing:0.042667pt;}
.ls1{letter-spacing:0.170667pt;}
.ls6{letter-spacing:0.448000pt;}
.ls5{letter-spacing:6.822112pt;}
.ls4{letter-spacing:6.890597pt;}
.ws8{word-spacing:-16.000000pt;}
.ws7{word-spacing:-14.666667pt;}
.wsb{word-spacing:-13.333333pt;}
.ws9{word-spacing:-9.333333pt;}
.ws1{word-spacing:-7.229752pt;}
.ws2{word-spacing:-7.126223pt;}
.ws5{word-spacing:-6.506777pt;}
.ws0{word-spacing:-6.413601pt;}
.ws4{word-spacing:-5.700979pt;}
.wsa{word-spacing:-0.058667pt;}
.ws3{word-spacing:-0.035338pt;}
.ws6{word-spacing:0.000000pt;}
.wsf{word-spacing:32.000000pt;}
.ws18{word-spacing:126.762667pt;}
.wsc{word-spacing:136.938667pt;}
.ws17{word-spacing:253.509333pt;}
.ws16{word-spacing:267.792000pt;}
.ws15{word-spacing:287.189333pt;}
.wsd{word-spacing:321.066667pt;}
.ws13{word-spacing:340.976000pt;}
.wse{word-spacing:353.066667pt;}
.ws14{word-spacing:355.258667pt;}
.ws10{word-spacing:358.277333pt;}
.ws11{word-spacing:408.933333pt;}
.ws12{word-spacing:430.133333pt;}
._0{margin-left:-1.195761pt;}
._5{width:1.322667pt;}
._b{width:2.240000pt;}
._6{width:3.136000pt;}
._7{width:4.288000pt;}
._9{width:5.291761pt;}
._8{width:6.208000pt;}
._4{width:7.680000pt;}
._3{width:8.768000pt;}
._1{width:10.304000pt;}
._2{width:11.243761pt;}
._a{width:12.897914pt;}
._10{width:14.293333pt;}
._f{width:15.520000pt;}
._e{width:16.928000pt;}
._16{width:18.454427pt;}
._13{width:19.626667pt;}
._14{width:21.013333pt;}
._1f{width:22.826667pt;}
._d{width:25.461333pt;}
._15{width:26.442667pt;}
._20{width:27.402667pt;}
._40{width:34.976000pt;}
._12{width:40.394667pt;}
._11{width:42.688000pt;}
._3f{width:44.042667pt;}
._c{width:48.000000pt;}
._41{width:53.109333pt;}
._33{width:117.765333pt;}
._1c{width:173.994667pt;}
._1a{width:181.098667pt;}
._34{width:182.133333pt;}
._19{width:191.722667pt;}
._18{width:198.762667pt;}
._29{width:201.781333pt;}
._17{width:206.016000pt;}
._21{width:223.114667pt;}
._2c{width:229.034667pt;}
._36{width:230.021333pt;}
._35{width:234.933333pt;}
._37{width:250.768000pt;}
._1d{width:276.714667pt;}
._2e{width:299.888000pt;}
._2a{width:301.680000pt;}
._2d{width:306.933333pt;}
._31{width:318.186667pt;}
._22{width:322.586667pt;}
._2f{width:325.968000pt;}
._1e{width:337.600000pt;}
._32{width:338.666667pt;}
._23{width:340.442667pt;}
._3b{width:356.266667pt;}
._38{width:361.008000pt;}
._24{width:366.432000pt;}
._1b{width:369.066667pt;}
._3a{width:374.400000pt;}
._3d{width:385.600000pt;}
._39{width:388.266667pt;}
._3c{width:389.274667pt;}
._25{width:430.458667pt;}
._26{width:431.408000pt;}
._30{width:444.448000pt;}
._28{width:446.640000pt;}
._27{width:459.493333pt;}
._3e{width:460.629333pt;}
._2b{width:461.600000pt;}
.fsa{font-size:21.333333pt;}
.fs3{font-size:28.270228pt;}
.fs0{font-size:31.804007pt;}
.fs2{font-size:35.337785pt;}
.fs7{font-size:37.333333pt;}
.fs4{font-size:42.405342pt;}
.fs8{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs9{font-size:63.952000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:70.675571pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:0.037333pt;}
.y1{bottom:0.188729pt;}
.y8b{bottom:3.264000pt;}
.yc{bottom:3.533764pt;}
.ya{bottom:3.533781pt;}
.y11{bottom:3.533785pt;}
.y112{bottom:6.666667pt;}
.y8a{bottom:14.452000pt;}
.y15{bottom:22.086091pt;}
.y14{bottom:42.405318pt;}
.y6a{bottom:98.881333pt;}
.y73{bottom:99.014667pt;}
.y78{bottom:100.748000pt;}
.yf1{bottom:102.481333pt;}
.yff{bottom:111.814667pt;}
.y82{bottom:114.214667pt;}
.y69{bottom:114.481333pt;}
.ya3{bottom:115.681333pt;}
.y72{bottom:115.948000pt;}
.yaa{bottom:125.281333pt;}
.y77{bottom:128.348000pt;}
.y110{bottom:129.681333pt;}
.y81{bottom:129.814667pt;}
.yf0{bottom:130.081333pt;}
.yba{bottom:130.614667pt;}
.y51{bottom:131.148000pt;}
.y92{bottom:131.281333pt;}
.y71{bottom:132.748000pt;}
.y10f{bottom:145.281333pt;}
.y50{bottom:146.481333pt;}
.ya2{bottom:146.748000pt;}
.y91{bottom:148.214667pt;}
.y70{bottom:149.681333pt;}
.y8d{bottom:150.881333pt;}
.ya9{bottom:152.881333pt;}
.y76{bottom:155.948000pt;}
.yef{bottom:157.681333pt;}
.yb9{bottom:158.214667pt;}
.yd0{bottom:160.081333pt;}
.y4f{bottom:161.948000pt;}
.y111{bottom:162.081333pt;}
.ya1{bottom:163.414667pt;}
.y100{bottom:163.548000pt;}
.yfe{bottom:164.748000pt;}
.y90{bottom:164.881333pt;}
.y6f{bottom:166.348000pt;}
.y4e{bottom:177.281333pt;}
.y10e{bottom:177.548000pt;}
.y8c{bottom:178.481333pt;}
.ya0{bottom:178.748000pt;}
.y108{bottom:179.014667pt;}
.y8f{bottom:180.214667pt;}
.ya8{bottom:180.481333pt;}
.y6e{bottom:181.948000pt;}
.y75{bottom:183.548000pt;}
.y2d{bottom:183.814667pt;}
.yee{bottom:185.281333pt;}
.yb8{bottom:185.814667pt;}
.yfd{bottom:192.348000pt;}
.y4d{bottom:192.748000pt;}
.ycf{bottom:193.548000pt;}
.y10d{bottom:194.214667pt;}
.y9f{bottom:194.348000pt;}
.y107{bottom:195.681333pt;}
.y8e{bottom:195.814667pt;}
.y6d{bottom:198.748000pt;}
.y89{bottom:202.718667pt;}
.yf5{bottom:206.081333pt;}
.y4c{bottom:208.081333pt;}
.y68{bottom:208.348000pt;}
.y10c{bottom:209.814667pt;}
.y74{bottom:211.148000pt;}
.y106{bottom:211.281333pt;}
.y10b{bottom:212.481333pt;}
.yed{bottom:212.881333pt;}
.yb7{bottom:213.414667pt;}
.y88{bottom:215.681333pt;}
.y2c{bottom:216.214667pt;}
.yfc{bottom:219.948000pt;}
.y9e{bottom:222.748000pt;}
.y4b{bottom:223.548000pt;}
.ya7{bottom:224.081333pt;}
.y67{bottom:225.014667pt;}
.yce{bottom:227.148000pt;}
.y105{bottom:227.948000pt;}
.y10a{bottom:228.081333pt;}
.yf4{bottom:233.681333pt;}
.y6c{bottom:238.748000pt;}
.y4a{bottom:238.881333pt;}
.yec{bottom:240.481333pt;}
.y66{bottom:240.614667pt;}
.yb6{bottom:241.014667pt;}
.y104{bottom:243.548000pt;}
.y109{bottom:244.748000pt;}
.yfb{bottom:247.548000pt;}
.y2b{bottom:248.481333pt;}
.y9d{bottom:250.348000pt;}
.y49{bottom:254.348000pt;}
.y103{bottom:260.348000pt;}
.yf3{bottom:261.281333pt;}
.y87{bottom:262.614667pt;}
.y65{bottom:266.348000pt;}
.yeb{bottom:268.081333pt;}
.yb5{bottom:268.614667pt;}
.y48{bottom:269.681333pt;}
.ye7{bottom:271.014667pt;}
.yfa{bottom:275.148000pt;}
.y102{bottom:277.014667pt;}
.y9c{bottom:277.948000pt;}
.y2a{bottom:280.881333pt;}
.y47{bottom:285.148000pt;}
.y86{bottom:290.214667pt;}
.ya6{bottom:292.214667pt;}
.y101{bottom:292.614667pt;}
.y64{bottom:293.948000pt;}
.yb4{bottom:296.214667pt;}
.ye6{bottom:298.614667pt;}
.y46{bottom:300.481333pt;}
.y9b{bottom:305.548000pt;}
.ycd{bottom:305.681333pt;}
.yf2{bottom:313.014667pt;}
.y29{bottom:313.148000pt;}
.y45{bottom:315.948000pt;}
.y85{bottom:317.814667pt;}
.y63{bottom:321.548000pt;}
.yea{bottom:323.281333pt;}
.ya5{bottom:325.681333pt;}
.ye5{bottom:326.214667pt;}
.yf9{bottom:326.881333pt;}
.y44{bottom:331.281333pt;}
.y9a{bottom:333.148000pt;}
.ycc{bottom:333.281333pt;}
.yb3{bottom:339.814667pt;}
.y84{bottom:345.414667pt;}
.y28{bottom:345.548000pt;}
.y43{bottom:346.881333pt;}
.y62{bottom:349.148000pt;}
.ye4{bottom:353.814667pt;}
.ya4{bottom:359.281333pt;}
.y99{bottom:360.748000pt;}
.ycb{bottom:360.881333pt;}
.y61{bottom:376.748000pt;}
.ye9{bottom:377.414667pt;}
.y27{bottom:377.814667pt;}
.y42{bottom:379.014667pt;}
.ye3{bottom:381.414667pt;}
.y98{bottom:388.348000pt;}
.yca{bottom:388.481333pt;}
.yb2{bottom:394.214667pt;}
.ye8{bottom:394.348000pt;}
.y83{bottom:400.614667pt;}
.y60{bottom:404.348000pt;}
.y41{bottom:406.614667pt;}
.ye2{bottom:409.014667pt;}
.y26{bottom:410.214667pt;}
.y97{bottom:415.948000pt;}
.yc9{bottom:416.081333pt;}
.yb1{bottom:427.681333pt;}
.y6b{bottom:431.948000pt;}
.y40{bottom:434.214667pt;}
.ye1{bottom:436.614667pt;}
.y25{bottom:442.481333pt;}
.y96{bottom:443.548000pt;}
.yc8{bottom:443.681333pt;}
.yac{bottom:447.052000pt;}
.y5f{bottom:459.548000pt;}
.yb0{bottom:461.281333pt;}
.y3f{bottom:461.814667pt;}
.ye0{bottom:464.214667pt;}
.yab{bottom:468.252000pt;}
.y95{bottom:471.148000pt;}
.yc7{bottom:471.281333pt;}
.y24{bottom:474.881333pt;}
.y80{bottom:483.148000pt;}
.y5e{bottom:487.148000pt;}
.y3e{bottom:489.414667pt;}
.ydf{bottom:491.814667pt;}
.y94{bottom:498.748000pt;}
.yc6{bottom:498.881333pt;}
.y23{bottom:507.148000pt;}
.y7f{bottom:510.748000pt;}
.y5d{bottom:514.748000pt;}
.y3d{bottom:517.014667pt;}
.yde{bottom:519.414667pt;}
.yaf{bottom:523.014667pt;}
.y93{bottom:526.348000pt;}
.yc5{bottom:526.481333pt;}
.y7e{bottom:538.348000pt;}
.y22{bottom:539.548000pt;}
.y5c{bottom:542.348000pt;}
.y3c{bottom:544.614667pt;}
.ydd{bottom:547.014667pt;}
.yc4{bottom:554.081333pt;}
.yae{bottom:556.614667pt;}
.y5b{bottom:569.948000pt;}
.y21{bottom:571.814667pt;}
.y3b{bottom:572.214667pt;}
.ydc{bottom:574.614667pt;}
.yc3{bottom:581.681333pt;}
.yad{bottom:590.081333pt;}
.y7d{bottom:593.548000pt;}
.y5a{bottom:597.548000pt;}
.y3a{bottom:599.814667pt;}
.ydb{bottom:602.214667pt;}
.y20{bottom:604.214667pt;}
.yc2{bottom:609.281333pt;}
.y59{bottom:625.148000pt;}
.y39{bottom:627.414667pt;}
.yda{bottom:629.814667pt;}
.y1f{bottom:636.481333pt;}
.y7c{bottom:643.014667pt;}
.y58{bottom:652.748000pt;}
.yc1{bottom:652.881333pt;}
.y38{bottom:655.014667pt;}
.yd9{bottom:657.414667pt;}
.y7b{bottom:663.948000pt;}
.y13{bottom:669.651009pt;}
.y57{bottom:680.348000pt;}
.y37{bottom:682.614667pt;}
.y7a{bottom:684.748000pt;}
.yd8{bottom:685.014667pt;}
.yf8{bottom:689.281333pt;}
.y12{bottom:690.853680pt;}
.y1e{bottom:697.548000pt;}
.y10{bottom:703.410628pt;}
.y79{bottom:706.881333pt;}
.y56{bottom:707.948000pt;}
.y36{bottom:710.214667pt;}
.yd7{bottom:712.614667pt;}
.yf7{bottom:714.614667pt;}
.yf{bottom:717.545745pt;}
.y55{bottom:735.548000pt;}
.yc0{bottom:737.014667pt;}
.y35{bottom:737.814667pt;}
.yf6{bottom:739.814667pt;}
.yd6{bottom:740.214667pt;}
.ye{bottom:753.578249pt;}
.y1d{bottom:763.148000pt;}
.y34{bottom:765.414667pt;}
.yd5{bottom:767.814667pt;}
.ybf{bottom:770.481333pt;}
.yd{bottom:774.780920pt;}
.yb{bottom:787.337889pt;}
.y54{bottom:790.748000pt;}
.y33{bottom:793.014667pt;}
.yd4{bottom:795.414667pt;}
.y9{bottom:801.472986pt;}
.ybe{bottom:804.081333pt;}
.y1c{bottom:818.348000pt;}
.y32{bottom:820.614667pt;}
.y8{bottom:828.671043pt;}
.y53{bottom:845.948000pt;}
.y31{bottom:848.214667pt;}
.y7{bottom:862.241939pt;}
.y1b{bottom:873.548000pt;}
.y30{bottom:875.814667pt;}
.y6{bottom:876.377053pt;}
.ybd{bottom:881.814667pt;}
.y1a{bottom:901.148000pt;}
.y2f{bottom:903.414667pt;}
.yd3{bottom:909.414667pt;}
.ybc{bottom:915.414667pt;}
.y5{bottom:919.665840pt;}
.y52{bottom:928.748000pt;}
.yd2{bottom:943.014667pt;}
.ybb{bottom:948.881333pt;}
.y19{bottom:956.348000pt;}
.y4{bottom:956.770515pt;}
.y2e{bottom:958.614667pt;}
.yd1{bottom:976.481333pt;}
.y3{bottom:981.506965pt;}
.y18{bottom:983.948000pt;}
.y17{bottom:1011.548000pt;}
.y2{bottom:1017.728195pt;}
.h9{height:11.484765pt;}
.h8{height:11.484785pt;}
.hb{height:11.484804pt;}
.h6{height:20.471069pt;}
.h18{height:22.250000pt;}
.h3{height:23.029952pt;}
.h5{height:25.588836pt;}
.ha{height:28.384110pt;}
.h7{height:30.706603pt;}
.h12{height:37.657333pt;}
.h11{height:45.781250pt;}
.h16{height:46.375000pt;}
.h15{height:50.359375pt;}
.h14{height:54.865070pt;}
.hf{height:54.937500pt;}
.h17{height:57.095312pt;}
.h10{height:57.113542pt;}
.h4{height:59.736042pt;}
.h13{height:90.091737pt;}
.h2{height:1121.091217pt;}
.h0{height:1121.279947pt;}
.h1{height:1121.333333pt;}
.he{height:1122.481333pt;}
.hc{height:1122.519685pt;}
.hd{height:1122.666667pt;}
.w6{width:40.193333pt;}
.w2{width:308.322176pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.w5{width:793.700000pt;}
.w3{width:793.738583pt;}
.w4{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:25.588000pt;}
.x1{left:53.006678pt;}
.x7{left:57.423901pt;}
.x1d{left:66.666667pt;}
.x3{left:88.344460pt;}
.x8{left:96.133333pt;}
.x4{left:98.062355pt;}
.x19{left:102.266667pt;}
.x11{left:105.200000pt;}
.x16{left:109.733333pt;}
.x1b{left:113.866667pt;}
.x1a{left:117.600000pt;}
.x10{left:120.133333pt;}
.x15{left:122.533333pt;}
.x14{left:126.266667pt;}
.x12{left:130.666667pt;}
.x1c{left:134.400000pt;}
.x13{left:139.600000pt;}
.x9{left:144.133333pt;}
.xa{left:168.133333pt;}
.xb{left:192.133333pt;}
.x17{left:195.333333pt;}
.xc{left:196.400000pt;}
.x18{left:200.666667pt;}
.xd{left:373.605333pt;}
.x2{left:396.666641pt;}
.xf{left:414.000000pt;}
.x5{left:432.004436pt;}
.x6{left:441.722318pt;}
}




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