
    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_686b8a87135f1bacf09710f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_7412e74ca6e16311eea5df94.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_d137fc828a4afff65f1c7d3e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_7456c5e28d092c3ab4494a46.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_307fec71ed8916c972a5fb77.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_dd88be83ba83ee2fafa9ed91.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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;}
.m4{transform:matrix(0.000000,-0.248236,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248236,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248236,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.250170,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250170,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250170,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.176717,-0.176837,0.176717,0.176837,0,0);-ms-transform:matrix(0.176717,-0.176837,0.176717,0.176837,0,0);-webkit-transform:matrix(0.176717,-0.176837,0.176717,0.176837,0,0);}
.m2{transform:matrix(0.177402,-0.176150,0.177402,0.176150,0,0);-ms-transform:matrix(0.177402,-0.176150,0.177402,0.176150,0,0);-webkit-transform:matrix(0.177402,-0.176150,0.177402,0.176150,0,0);}
.m6{transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249831,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);}
.m3{transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251777,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:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:54.720000px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.078600px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.287416px;}
.lsb{letter-spacing:0.288440px;}
.lsa{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.840000px;}
.ls3{letter-spacing:64.421280px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws4{word-spacing:-21.060000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws7{word-spacing:-16.200000px;}
.ws6{word-spacing:-15.480000px;}
.wse{word-spacing:-15.441678px;}
.wsd{word-spacing:-15.436479px;}
.wsa{word-spacing:-13.412437px;}
.wsc{word-spacing:-13.364826px;}
.ws9{word-spacing:-13.123998px;}
.wsb{word-spacing:-13.077410px;}
.ws0{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
._1f{margin-left:-5.112000px;}
._16{margin-left:-4.032000px;}
._b{margin-left:-2.448000px;}
._0{margin-left:-1.324800px;}
._1{width:1.078080px;}
._4{width:2.927520px;}
._8{width:4.704000px;}
._5{width:6.528000px;}
._6{width:7.728000px;}
._7{width:9.336000px;}
._11{width:10.728000px;}
._17{width:12.528000px;}
._18{width:13.608000px;}
._19{width:14.905920px;}
._c{width:16.564800px;}
._10{width:19.470720px;}
._f{width:20.520000px;}
._1b{width:21.641280px;}
._2{width:22.861920px;}
._13{width:25.272000px;}
._12{width:26.424000px;}
._1a{width:28.296000px;}
._1c{width:30.240000px;}
._1d{width:31.537920px;}
._14{width:33.480000px;}
._15{width:35.280000px;}
._9{width:37.056000px;}
._a{width:38.064000px;}
._24{width:39.336000px;}
._26{width:56.016000px;}
._25{width:57.096000px;}
._22{width:61.536000px;}
._20{width:66.096000px;}
._d{width:67.692000px;}
._e{width:69.048000px;}
._1e{width:77.166720px;}
._23{width:115.488000px;}
._3{width:133.393680px;}
._21{width:214.920000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs8{font-size:52.309641px;}
.fs7{font-size:52.495990px;}
.fs9{font-size:57.483122px;}
.fsa{font-size:57.891697px;}
.fs6{font-size:59.760000px;}
.fsd{font-size:61.724836px;}
.fsb{font-size:61.745916px;}
.fsc{font-size:61.766712px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:11.880000px;}
.ya8{bottom:11.910000px;}
.yc2{bottom:14.400000px;}
.y99{bottom:14.580000px;}
.y9b{bottom:16.200000px;}
.ya7{bottom:16.230000px;}
.ybf{bottom:16.552756px;}
.yd7{bottom:17.772097px;}
.y89{bottom:20.520000px;}
.y8a{bottom:32.220000px;}
.y88{bottom:32.580000px;}
.yad{bottom:38.354433px;}
.yc6{bottom:40.723583px;}
.yb4{bottom:56.892728px;}
.yb3{bottom:56.892730px;}
.yb2{bottom:56.892731px;}
.yb1{bottom:56.892733px;}
.yb0{bottom:56.892734px;}
.yaf{bottom:56.892735px;}
.yae{bottom:56.892737px;}
.yb7{bottom:59.192049px;}
.ycc{bottom:62.959589px;}
.ycb{bottom:62.959590px;}
.yca{bottom:62.959592px;}
.yc9{bottom:62.959593px;}
.yc8{bottom:62.959595px;}
.yc7{bottom:62.959596px;}
.yb6{bottom:63.790700px;}
.yb5{bottom:63.790701px;}
.ycf{bottom:65.584669px;}
.yce{bottom:71.143674px;}
.ycd{bottom:71.143676px;}
.y5{bottom:82.116000px;}
.yb8{bottom:86.882163px;}
.yd0{bottom:97.354650px;}
.y4{bottom:102.636000px;}
.yb9{bottom:121.373234px;}
.y3{bottom:121.536000px;}
.yc0{bottom:129.073578px;}
.yd1{bottom:134.419825px;}
.yd8{bottom:144.238159px;}
.y2{bottom:146.736000px;}
.yba{bottom:155.863107px;}
.yd2{bottom:171.479852px;}
.y103{bottom:174.450000px;}
.yeb{bottom:176.610000px;}
.yc1{bottom:185.430000px;}
.yac{bottom:185.489980px;}
.y81{bottom:188.490000px;}
.ybb{bottom:190.352980px;}
.y66{bottom:193.350000px;}
.y102{bottom:195.150000px;}
.y4a{bottom:195.510000px;}
.yd9{bottom:196.950000px;}
.yc5{bottom:197.039980px;}
.y123{bottom:197.490000px;}
.y2e{bottom:199.650000px;}
.yea{bottom:207.570000px;}
.yd3{bottom:208.539879px;}
.y101{bottom:215.850000px;}
.y80{bottom:219.630000px;}
.y2d{bottom:220.350000px;}
.y65{bottom:224.490000px;}
.ybc{bottom:224.842853px;}
.y97{bottom:225.570000px;}
.y49{bottom:226.470000px;}
.y122{bottom:236.190000px;}
.ye9{bottom:238.710000px;}
.y2c{bottom:241.050000px;}
.yd4{bottom:245.599906px;}
.y7f{bottom:250.590000px;}
.y100{bottom:254.550000px;}
.y64{bottom:255.450000px;}
.y121{bottom:256.890000px;}
.y48{bottom:257.610000px;}
.ybd{bottom:259.332726px;}
.y2b{bottom:261.750000px;}
.y96{bottom:262.650000px;}
.yff{bottom:275.250000px;}
.ye8{bottom:275.790000px;}
.y120{bottom:277.590000px;}
.y2a{bottom:282.450000px;}
.yd5{bottom:282.659934px;}
.ybe{bottom:285.571369px;}
.y63{bottom:286.590000px;}
.y7e{bottom:287.670000px;}
.y47{bottom:288.570000px;}
.y95{bottom:293.790000px;}
.yfe{bottom:295.950000px;}
.y29{bottom:303.150000px;}
.ye7{bottom:306.750000px;}
.yd6{bottom:313.324527px;}
.y11f{bottom:316.290000px;}
.yfd{bottom:316.650000px;}
.y62{bottom:317.550000px;}
.y7d{bottom:318.810000px;}
.y46{bottom:319.710000px;}
.y28{bottom:323.850000px;}
.y94{bottom:324.750000px;}
.y11e{bottom:337.035000px;}
.ye6{bottom:337.935000px;}
.y27{bottom:344.595000px;}
.y61{bottom:348.735000px;}
.y7c{bottom:349.815000px;}
.y45{bottom:350.715000px;}
.yfc{bottom:355.395000px;}
.y93{bottom:355.935000px;}
.y11d{bottom:357.735000px;}
.y26{bottom:365.295000px;}
.ye5{bottom:368.895000px;}
.yfb{bottom:376.095000px;}
.y60{bottom:379.695000px;}
.y7b{bottom:380.955000px;}
.y44{bottom:381.855000px;}
.y25{bottom:385.995000px;}
.y92{bottom:392.835000px;}
.y11c{bottom:396.435000px;}
.ye4{bottom:399.855000px;}
.y24{bottom:406.695000px;}
.y5f{bottom:410.835000px;}
.y7a{bottom:411.915000px;}
.y43{bottom:412.815000px;}
.yfa{bottom:414.795000px;}
.y11b{bottom:417.135000px;}
.y91{bottom:423.975000px;}
.y23{bottom:427.395000px;}
.ye3{bottom:430.995000px;}
.yf9{bottom:435.495000px;}
.y11a{bottom:437.835000px;}
.y5e{bottom:441.795000px;}
.y79{bottom:443.055000px;}
.y42{bottom:443.955000px;}
.y22{bottom:448.095000px;}
.y90{bottom:454.935000px;}
.yf8{bottom:456.195000px;}
.ye2{bottom:468.075000px;}
.y21{bottom:468.795000px;}
.y5d{bottom:472.935000px;}
.y78{bottom:474.015000px;}
.y119{bottom:476.535000px;}
.y41{bottom:480.855000px;}
.yf7{bottom:483.375000px;}
.y8f{bottom:486.075000px;}
.y20{bottom:489.495000px;}
.y118{bottom:497.235000px;}
.ye1{bottom:499.035000px;}
.y77{bottom:505.155000px;}
.y5c{bottom:510.015000px;}
.y1f{bottom:510.195000px;}
.y40{bottom:511.995000px;}
.yab{bottom:515.595000px;}
.yf6{bottom:515.955000px;}
.y8e{bottom:517.035000px;}
.y117{bottom:517.935000px;}
.ye0{bottom:530.175000px;}
.y1e{bottom:530.895000px;}
.y5b{bottom:540.975000px;}
.y76{bottom:542.055000px;}
.y3f{bottom:542.955000px;}
.yaa{bottom:546.555000px;}
.y8d{bottom:548.175000px;}
.y1d{bottom:551.595000px;}
.yf5{bottom:553.035000px;}
.y116{bottom:556.635000px;}
.ydf{bottom:561.135000px;}
.y5a{bottom:572.115000px;}
.y1c{bottom:572.295000px;}
.y75{bottom:573.195000px;}
.y3e{bottom:574.095000px;}
.y115{bottom:577.335000px;}
.yc4{bottom:582.555000px;}
.ya9{bottom:583.635000px;}
.yf4{bottom:583.995000px;}
.y8c{bottom:587.415000px;}
.yde{bottom:592.275000px;}
.y1b{bottom:592.995000px;}
.y114{bottom:598.035000px;}
.ya6{bottom:601.815000px;}
.y59{bottom:603.075000px;}
.y74{bottom:604.185000px;}
.y3d{bottom:605.085000px;}
.y1a{bottom:613.725000px;}
.yf3{bottom:615.165000px;}
.yc3{bottom:619.665000px;}
.ydd{bottom:629.385000px;}
.y8b{bottom:630.465000px;}
.y58{bottom:634.245000px;}
.y19{bottom:634.425000px;}
.y73{bottom:635.325000px;}
.y3c{bottom:636.225000px;}
.y113{bottom:636.765000px;}
.ya5{bottom:637.845000px;}
.yf2{bottom:646.125000px;}
.y87{bottom:647.205000px;}
.y18{bottom:655.125000px;}
.y112{bottom:657.465000px;}
.ydc{bottom:660.345000px;}
.y57{bottom:665.205000px;}
.y72{bottom:666.285000px;}
.y3b{bottom:667.185000px;}
.ya4{bottom:673.845000px;}
.y17{bottom:675.825000px;}
.yf1{bottom:677.265000px;}
.ydb{bottom:691.485000px;}
.y111{bottom:696.165000px;}
.y16{bottom:696.525000px;}
.y71{bottom:697.425000px;}
.y3a{bottom:698.325000px;}
.y56{bottom:704.445000px;}
.yf0{bottom:708.225000px;}
.ya3{bottom:709.845000px;}
.y110{bottom:716.865000px;}
.y15{bottom:717.225000px;}
.yda{bottom:722.445000px;}
.y70{bottom:728.385000px;}
.y39{bottom:729.285000px;}
.y10f{bottom:737.565000px;}
.y14{bottom:737.925000px;}
.yef{bottom:739.365000px;}
.ya2{bottom:745.845000px;}
.y55{bottom:747.465000px;}
.y13{bottom:758.625000px;}
.y6f{bottom:759.525000px;}
.y86{bottom:765.465000px;}
.y38{bottom:766.365000px;}
.yee{bottom:770.325000px;}
.y10e{bottom:776.265000px;}
.y12{bottom:779.325000px;}
.ya1{bottom:781.845000px;}
.y54{bottom:784.545000px;}
.y6e{bottom:790.485000px;}
.y85{bottom:796.605000px;}
.y10d{bottom:796.965000px;}
.y37{bottom:797.505000px;}
.y11{bottom:800.025000px;}
.yed{bottom:801.465000px;}
.y53{bottom:815.505000px;}
.y10c{bottom:817.665000px;}
.ya0{bottom:817.845000px;}
.y10{bottom:820.725000px;}
.y6d{bottom:821.625000px;}
.y84{bottom:827.565000px;}
.y36{bottom:828.465000px;}
.y128{bottom:835.665000px;}
.y10b{bottom:838.365000px;}
.yec{bottom:840.705000px;}
.yf{bottom:841.425000px;}
.y52{bottom:846.645000px;}
.y6c{bottom:852.585000px;}
.y9f{bottom:853.845000px;}
.y127{bottom:856.365000px;}
.y83{bottom:858.705000px;}
.y35{bottom:859.605000px;}
.ye{bottom:862.125000px;}
.y10a{bottom:877.110000px;}
.y51{bottom:877.650000px;}
.yd{bottom:883.410000px;}
.y6b{bottom:883.770000px;}
.y82{bottom:889.710000px;}
.y9e{bottom:889.890000px;}
.y34{bottom:890.610000px;}
.y126{bottom:895.110000px;}
.y109{bottom:897.810000px;}
.yc{bottom:908.250000px;}
.y50{bottom:914.730000px;}
.y125{bottom:915.810000px;}
.y6a{bottom:920.850000px;}
.y33{bottom:921.750000px;}
.y9d{bottom:925.890000px;}
.yb{bottom:935.970000px;}
.y108{bottom:936.510000px;}
.y4f{bottom:945.870000px;}
.y69{bottom:951.810000px;}
.y32{bottom:952.710000px;}
.y107{bottom:957.210000px;}
.y9a{bottom:961.890000px;}
.ya{bottom:963.510000px;}
.y124{bottom:975.210000px;}
.y4e{bottom:976.830000px;}
.y68{bottom:982.950000px;}
.y31{bottom:983.850000px;}
.y9{bottom:991.050000px;}
.y106{bottom:995.910000px;}
.y98{bottom:997.890000px;}
.y4d{bottom:1007.970000px;}
.y67{bottom:1013.910000px;}
.y30{bottom:1014.810000px;}
.y105{bottom:1016.610000px;}
.y8{bottom:1018.770000px;}
.y4c{bottom:1045.050000px;}
.y2f{bottom:1045.950000px;}
.y7{bottom:1046.310000px;}
.y104{bottom:1055.310000px;}
.y6{bottom:1073.130000px;}
.y4b{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.hc{height:31.320000px;}
.he{height:34.560000px;}
.hf{height:34.596000px;}
.h12{height:46.460565px;}
.h11{height:46.626077px;}
.h13{height:51.055565px;}
.h14{height:51.418455px;}
.h8{height:52.628906px;}
.hd{height:53.573906px;}
.h18{height:54.822986px;}
.h16{height:54.841710px;}
.h17{height:54.860180px;}
.h3{height:59.383125px;}
.hb{height:60.679688px;}
.h9{height:61.020000px;}
.h19{height:63.949219px;}
.h2{height:64.546875px;}
.h6{height:69.996445px;}
.h7{height:70.606406px;}
.h4{height:74.820586px;}
.h5{height:85.052461px;}
.ha{height:115.399688px;}
.h10{height:315.750017px;}
.h15{height:340.193055px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:37.260000px;}
.w8{width:99.576000px;}
.w7{width:99.720000px;}
.w6{width:99.756000px;}
.w5{width:100.440000px;}
.w9{width:334.059233px;}
.wa{width:358.942799px;}
.w3{width:643.065000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:6.300000px;}
.xe{left:8.100000px;}
.x2f{left:19.080000px;}
.x13{left:21.240000px;}
.x31{left:22.860000px;}
.x1a{left:24.300000px;}
.x2b{left:26.051276px;}
.x1d{left:27.360000px;}
.x18{left:30.600000px;}
.x30{left:34.020000px;}
.x29{left:35.386303px;}
.x1c{left:36.720000px;}
.x3d{left:38.423714px;}
.x28{left:41.971493px;}
.x1b{left:46.080000px;}
.x20{left:48.381797px;}
.x34{left:52.522709px;}
.x3c{left:53.854934px;}
.x21{left:90.063818px;}
.x35{left:101.593952px;}
.x4{left:106.415987px;}
.x22{left:113.075767px;}
.x36{left:128.444256px;}
.x2a{left:133.295651px;}
.x23{left:136.093747px;}
.x3e{left:138.417946px;}
.x3f{left:144.899071px;}
.x2{left:148.895987px;}
.x37{left:155.289416px;}
.x5{left:159.509987px;}
.xf{left:163.469987px;}
.x1e{left:167.789987px;}
.x24{left:182.117646px;}
.x2d{left:185.249987px;}
.x25{left:205.129596px;}
.x12{left:208.290000px;}
.x8{left:210.269987px;}
.x2e{left:219.269987px;}
.x7{left:228.989987px;}
.x38{left:235.840326px;}
.x9{left:258.149987px;}
.xa{left:259.419000px;}
.x10{left:263.549987px;}
.x39{left:270.869170px;}
.x26{left:281.112447px;}
.x33{left:288.239980px;}
.x3a{left:297.719473px;}
.x27{left:299.493061px;}
.x1f{left:300.689980px;}
.x14{left:309.495000px;}
.x3b{left:319.014542px;}
.xb{left:320.439000px;}
.x32{left:361.334987px;}
.xc{left:383.649000px;}
.x15{left:410.835000px;}
.x6{left:446.474987px;}
.x1{left:467.744987px;}
.x16{left:512.025000px;}
.x17{left:613.185000px;}
.x2c{left:634.784987px;}
.x40{left:647.204987px;}
.x19{left:714.570000px;}
.xd{left:749.490000px;}
.x3{left:786.749987px;}
@media print{
.v3{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:48.640000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.069867pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.255481pt;}
.lsb{letter-spacing:0.256391pt;}
.lsa{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.746667pt;}
.ls3{letter-spacing:57.263360pt;}
.ws2{word-spacing:-64.000000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws7{word-spacing:-14.400000pt;}
.ws6{word-spacing:-13.760000pt;}
.wse{word-spacing:-13.725936pt;}
.wsd{word-spacing:-13.721315pt;}
.wsa{word-spacing:-11.922166pt;}
.wsc{word-spacing:-11.879845pt;}
.ws9{word-spacing:-11.665776pt;}
.wsb{word-spacing:-11.624365pt;}
.ws0{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
._1f{margin-left:-4.544000pt;}
._16{margin-left:-3.584000pt;}
._b{margin-left:-2.176000pt;}
._0{margin-left:-1.177600pt;}
._1{width:0.958293pt;}
._4{width:2.602240pt;}
._8{width:4.181333pt;}
._5{width:5.802667pt;}
._6{width:6.869333pt;}
._7{width:8.298667pt;}
._11{width:9.536000pt;}
._17{width:11.136000pt;}
._18{width:12.096000pt;}
._19{width:13.249707pt;}
._c{width:14.724267pt;}
._10{width:17.307307pt;}
._f{width:18.240000pt;}
._1b{width:19.236693pt;}
._2{width:20.321707pt;}
._13{width:22.464000pt;}
._12{width:23.488000pt;}
._1a{width:25.152000pt;}
._1c{width:26.880000pt;}
._1d{width:28.033707pt;}
._14{width:29.760000pt;}
._15{width:31.360000pt;}
._9{width:32.938667pt;}
._a{width:33.834667pt;}
._24{width:34.965333pt;}
._26{width:49.792000pt;}
._25{width:50.752000pt;}
._22{width:54.698667pt;}
._20{width:58.752000pt;}
._d{width:60.170667pt;}
._e{width:61.376000pt;}
._1e{width:68.592640pt;}
._23{width:102.656000pt;}
._3{width:118.572160pt;}
._21{width:191.040000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs8{font-size:46.497458pt;}
.fs7{font-size:46.663102pt;}
.fs9{font-size:51.096108pt;}
.fsa{font-size:51.459286pt;}
.fs6{font-size:53.120000pt;}
.fsd{font-size:54.866521pt;}
.fsb{font-size:54.885259pt;}
.fsc{font-size:54.903744pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:10.560000pt;}
.ya8{bottom:10.586667pt;}
.yc2{bottom:12.800000pt;}
.y99{bottom:12.960000pt;}
.y9b{bottom:14.400000pt;}
.ya7{bottom:14.426667pt;}
.ybf{bottom:14.713561pt;}
.yd7{bottom:15.797419pt;}
.y89{bottom:18.240000pt;}
.y8a{bottom:28.640000pt;}
.y88{bottom:28.960000pt;}
.yad{bottom:34.092829pt;}
.yc6{bottom:36.198740pt;}
.yb4{bottom:50.571314pt;}
.yb3{bottom:50.571315pt;}
.yb2{bottom:50.571317pt;}
.yb1{bottom:50.571318pt;}
.yb0{bottom:50.571319pt;}
.yaf{bottom:50.571320pt;}
.yae{bottom:50.571322pt;}
.yb7{bottom:52.615155pt;}
.ycc{bottom:55.964079pt;}
.ycb{bottom:55.964080pt;}
.yca{bottom:55.964081pt;}
.yc9{bottom:55.964083pt;}
.yc8{bottom:55.964084pt;}
.yc7{bottom:55.964085pt;}
.yb6{bottom:56.702844pt;}
.yb5{bottom:56.702845pt;}
.ycf{bottom:58.297484pt;}
.yce{bottom:63.238822pt;}
.ycd{bottom:63.238823pt;}
.y5{bottom:72.992000pt;}
.yb8{bottom:77.228589pt;}
.yd0{bottom:86.537467pt;}
.y4{bottom:91.232000pt;}
.yb9{bottom:107.887319pt;}
.y3{bottom:108.032000pt;}
.yc0{bottom:114.732069pt;}
.yd1{bottom:119.484289pt;}
.yd8{bottom:128.211697pt;}
.y2{bottom:130.432000pt;}
.yba{bottom:138.544984pt;}
.yd2{bottom:152.426535pt;}
.y103{bottom:155.066667pt;}
.yeb{bottom:156.986667pt;}
.yc1{bottom:164.826667pt;}
.yac{bottom:164.879982pt;}
.y81{bottom:167.546667pt;}
.ybb{bottom:169.202649pt;}
.y66{bottom:171.866667pt;}
.y102{bottom:173.466667pt;}
.y4a{bottom:173.786667pt;}
.yd9{bottom:175.066667pt;}
.yc5{bottom:175.146649pt;}
.y123{bottom:175.546667pt;}
.y2e{bottom:177.466667pt;}
.yea{bottom:184.506667pt;}
.yd3{bottom:185.368781pt;}
.y101{bottom:191.866667pt;}
.y80{bottom:195.226667pt;}
.y2d{bottom:195.866667pt;}
.y65{bottom:199.546667pt;}
.ybc{bottom:199.860313pt;}
.y97{bottom:200.506667pt;}
.y49{bottom:201.306667pt;}
.y122{bottom:209.946667pt;}
.ye9{bottom:212.186667pt;}
.y2c{bottom:214.266667pt;}
.yd4{bottom:218.311028pt;}
.y7f{bottom:222.746667pt;}
.y100{bottom:226.266667pt;}
.y64{bottom:227.066667pt;}
.y121{bottom:228.346667pt;}
.y48{bottom:228.986667pt;}
.ybd{bottom:230.517979pt;}
.y2b{bottom:232.666667pt;}
.y96{bottom:233.466667pt;}
.yff{bottom:244.666667pt;}
.ye8{bottom:245.146667pt;}
.y120{bottom:246.746667pt;}
.y2a{bottom:251.066667pt;}
.yd5{bottom:251.253275pt;}
.ybe{bottom:253.841217pt;}
.y63{bottom:254.746667pt;}
.y7e{bottom:255.706667pt;}
.y47{bottom:256.506667pt;}
.y95{bottom:261.146667pt;}
.yfe{bottom:263.066667pt;}
.y29{bottom:269.466667pt;}
.ye7{bottom:272.666667pt;}
.yd6{bottom:278.510691pt;}
.y11f{bottom:281.146667pt;}
.yfd{bottom:281.466667pt;}
.y62{bottom:282.266667pt;}
.y7d{bottom:283.386667pt;}
.y46{bottom:284.186667pt;}
.y28{bottom:287.866667pt;}
.y94{bottom:288.666667pt;}
.y11e{bottom:299.586667pt;}
.ye6{bottom:300.386667pt;}
.y27{bottom:306.306667pt;}
.y61{bottom:309.986667pt;}
.y7c{bottom:310.946667pt;}
.y45{bottom:311.746667pt;}
.yfc{bottom:315.906667pt;}
.y93{bottom:316.386667pt;}
.y11d{bottom:317.986667pt;}
.y26{bottom:324.706667pt;}
.ye5{bottom:327.906667pt;}
.yfb{bottom:334.306667pt;}
.y60{bottom:337.506667pt;}
.y7b{bottom:338.626667pt;}
.y44{bottom:339.426667pt;}
.y25{bottom:343.106667pt;}
.y92{bottom:349.186667pt;}
.y11c{bottom:352.386667pt;}
.ye4{bottom:355.426667pt;}
.y24{bottom:361.506667pt;}
.y5f{bottom:365.186667pt;}
.y7a{bottom:366.146667pt;}
.y43{bottom:366.946667pt;}
.yfa{bottom:368.706667pt;}
.y11b{bottom:370.786667pt;}
.y91{bottom:376.866667pt;}
.y23{bottom:379.906667pt;}
.ye3{bottom:383.106667pt;}
.yf9{bottom:387.106667pt;}
.y11a{bottom:389.186667pt;}
.y5e{bottom:392.706667pt;}
.y79{bottom:393.826667pt;}
.y42{bottom:394.626667pt;}
.y22{bottom:398.306667pt;}
.y90{bottom:404.386667pt;}
.yf8{bottom:405.506667pt;}
.ye2{bottom:416.066667pt;}
.y21{bottom:416.706667pt;}
.y5d{bottom:420.386667pt;}
.y78{bottom:421.346667pt;}
.y119{bottom:423.586667pt;}
.y41{bottom:427.426667pt;}
.yf7{bottom:429.666667pt;}
.y8f{bottom:432.066667pt;}
.y20{bottom:435.106667pt;}
.y118{bottom:441.986667pt;}
.ye1{bottom:443.586667pt;}
.y77{bottom:449.026667pt;}
.y5c{bottom:453.346667pt;}
.y1f{bottom:453.506667pt;}
.y40{bottom:455.106667pt;}
.yab{bottom:458.306667pt;}
.yf6{bottom:458.626667pt;}
.y8e{bottom:459.586667pt;}
.y117{bottom:460.386667pt;}
.ye0{bottom:471.266667pt;}
.y1e{bottom:471.906667pt;}
.y5b{bottom:480.866667pt;}
.y76{bottom:481.826667pt;}
.y3f{bottom:482.626667pt;}
.yaa{bottom:485.826667pt;}
.y8d{bottom:487.266667pt;}
.y1d{bottom:490.306667pt;}
.yf5{bottom:491.586667pt;}
.y116{bottom:494.786667pt;}
.ydf{bottom:498.786667pt;}
.y5a{bottom:508.546667pt;}
.y1c{bottom:508.706667pt;}
.y75{bottom:509.506667pt;}
.y3e{bottom:510.306667pt;}
.y115{bottom:513.186667pt;}
.yc4{bottom:517.826667pt;}
.ya9{bottom:518.786667pt;}
.yf4{bottom:519.106667pt;}
.y8c{bottom:522.146667pt;}
.yde{bottom:526.466667pt;}
.y1b{bottom:527.106667pt;}
.y114{bottom:531.586667pt;}
.ya6{bottom:534.946667pt;}
.y59{bottom:536.066667pt;}
.y74{bottom:537.053333pt;}
.y3d{bottom:537.853333pt;}
.y1a{bottom:545.533333pt;}
.yf3{bottom:546.813333pt;}
.yc3{bottom:550.813333pt;}
.ydd{bottom:559.453333pt;}
.y8b{bottom:560.413333pt;}
.y58{bottom:563.773333pt;}
.y19{bottom:563.933333pt;}
.y73{bottom:564.733333pt;}
.y3c{bottom:565.533333pt;}
.y113{bottom:566.013333pt;}
.ya5{bottom:566.973333pt;}
.yf2{bottom:574.333333pt;}
.y87{bottom:575.293333pt;}
.y18{bottom:582.333333pt;}
.y112{bottom:584.413333pt;}
.ydc{bottom:586.973333pt;}
.y57{bottom:591.293333pt;}
.y72{bottom:592.253333pt;}
.y3b{bottom:593.053333pt;}
.ya4{bottom:598.973333pt;}
.y17{bottom:600.733333pt;}
.yf1{bottom:602.013333pt;}
.ydb{bottom:614.653333pt;}
.y111{bottom:618.813333pt;}
.y16{bottom:619.133333pt;}
.y71{bottom:619.933333pt;}
.y3a{bottom:620.733333pt;}
.y56{bottom:626.173333pt;}
.yf0{bottom:629.533333pt;}
.ya3{bottom:630.973333pt;}
.y110{bottom:637.213333pt;}
.y15{bottom:637.533333pt;}
.yda{bottom:642.173333pt;}
.y70{bottom:647.453333pt;}
.y39{bottom:648.253333pt;}
.y10f{bottom:655.613333pt;}
.y14{bottom:655.933333pt;}
.yef{bottom:657.213333pt;}
.ya2{bottom:662.973333pt;}
.y55{bottom:664.413333pt;}
.y13{bottom:674.333333pt;}
.y6f{bottom:675.133333pt;}
.y86{bottom:680.413333pt;}
.y38{bottom:681.213333pt;}
.yee{bottom:684.733333pt;}
.y10e{bottom:690.013333pt;}
.y12{bottom:692.733333pt;}
.ya1{bottom:694.973333pt;}
.y54{bottom:697.373333pt;}
.y6e{bottom:702.653333pt;}
.y85{bottom:708.093333pt;}
.y10d{bottom:708.413333pt;}
.y37{bottom:708.893333pt;}
.y11{bottom:711.133333pt;}
.yed{bottom:712.413333pt;}
.y53{bottom:724.893333pt;}
.y10c{bottom:726.813333pt;}
.ya0{bottom:726.973333pt;}
.y10{bottom:729.533333pt;}
.y6d{bottom:730.333333pt;}
.y84{bottom:735.613333pt;}
.y36{bottom:736.413333pt;}
.y128{bottom:742.813333pt;}
.y10b{bottom:745.213333pt;}
.yec{bottom:747.293333pt;}
.yf{bottom:747.933333pt;}
.y52{bottom:752.573333pt;}
.y6c{bottom:757.853333pt;}
.y9f{bottom:758.973333pt;}
.y127{bottom:761.213333pt;}
.y83{bottom:763.293333pt;}
.y35{bottom:764.093333pt;}
.ye{bottom:766.333333pt;}
.y10a{bottom:779.653333pt;}
.y51{bottom:780.133333pt;}
.yd{bottom:785.253333pt;}
.y6b{bottom:785.573333pt;}
.y82{bottom:790.853333pt;}
.y9e{bottom:791.013333pt;}
.y34{bottom:791.653333pt;}
.y126{bottom:795.653333pt;}
.y109{bottom:798.053333pt;}
.yc{bottom:807.333333pt;}
.y50{bottom:813.093333pt;}
.y125{bottom:814.053333pt;}
.y6a{bottom:818.533333pt;}
.y33{bottom:819.333333pt;}
.y9d{bottom:823.013333pt;}
.yb{bottom:831.973333pt;}
.y108{bottom:832.453333pt;}
.y4f{bottom:840.773333pt;}
.y69{bottom:846.053333pt;}
.y32{bottom:846.853333pt;}
.y107{bottom:850.853333pt;}
.y9a{bottom:855.013333pt;}
.ya{bottom:856.453333pt;}
.y124{bottom:866.853333pt;}
.y4e{bottom:868.293333pt;}
.y68{bottom:873.733333pt;}
.y31{bottom:874.533333pt;}
.y9{bottom:880.933333pt;}
.y106{bottom:885.253333pt;}
.y98{bottom:887.013333pt;}
.y4d{bottom:895.973333pt;}
.y67{bottom:901.253333pt;}
.y30{bottom:902.053333pt;}
.y105{bottom:903.653333pt;}
.y8{bottom:905.573333pt;}
.y4c{bottom:928.933333pt;}
.y2f{bottom:929.733333pt;}
.y7{bottom:930.053333pt;}
.y104{bottom:938.053333pt;}
.y6{bottom:953.893333pt;}
.y4b{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.hc{height:27.840000pt;}
.he{height:30.720000pt;}
.hf{height:30.752000pt;}
.h12{height:41.298280pt;}
.h11{height:41.445402pt;}
.h13{height:45.382725pt;}
.h14{height:45.705294pt;}
.h8{height:46.781250pt;}
.hd{height:47.621250pt;}
.h18{height:48.731543pt;}
.h16{height:48.748187pt;}
.h17{height:48.764605pt;}
.h3{height:52.785000pt;}
.hb{height:53.937500pt;}
.h9{height:54.240000pt;}
.h19{height:56.843750pt;}
.h2{height:57.375000pt;}
.h6{height:62.219062pt;}
.h7{height:62.761250pt;}
.h4{height:66.507188pt;}
.h5{height:75.602187pt;}
.ha{height:102.577500pt;}
.h10{height:280.666681pt;}
.h15{height:302.393826pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:33.120000pt;}
.w8{width:88.512000pt;}
.w7{width:88.640000pt;}
.w6{width:88.672000pt;}
.w5{width:89.280000pt;}
.w9{width:296.941540pt;}
.wa{width:319.060266pt;}
.w3{width:571.613333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.600000pt;}
.xe{left:7.200000pt;}
.x2f{left:16.960000pt;}
.x13{left:18.880000pt;}
.x31{left:20.320000pt;}
.x1a{left:21.600000pt;}
.x2b{left:23.156689pt;}
.x1d{left:24.320000pt;}
.x18{left:27.200000pt;}
.x30{left:30.240000pt;}
.x29{left:31.454492pt;}
.x1c{left:32.640000pt;}
.x3d{left:34.154412pt;}
.x28{left:37.307994pt;}
.x1b{left:40.960000pt;}
.x20{left:43.006042pt;}
.x34{left:46.686853pt;}
.x3c{left:47.871052pt;}
.x21{left:80.056727pt;}
.x35{left:90.305735pt;}
.x4{left:94.591988pt;}
.x22{left:100.511793pt;}
.x36{left:114.172672pt;}
.x2a{left:118.485023pt;}
.x23{left:120.972220pt;}
.x3e{left:123.038174pt;}
.x3f{left:128.799174pt;}
.x2{left:132.351988pt;}
.x37{left:138.035036pt;}
.x5{left:141.786655pt;}
.xf{left:145.306655pt;}
.x1e{left:149.146655pt;}
.x24{left:161.882352pt;}
.x2d{left:164.666655pt;}
.x25{left:182.337418pt;}
.x12{left:185.146667pt;}
.x8{left:186.906655pt;}
.x2e{left:194.906655pt;}
.x7{left:203.546655pt;}
.x38{left:209.635845pt;}
.x9{left:229.466655pt;}
.xa{left:230.594667pt;}
.x10{left:234.266655pt;}
.x39{left:240.772595pt;}
.x26{left:249.877731pt;}
.x33{left:256.213315pt;}
.x3a{left:264.639532pt;}
.x27{left:266.216055pt;}
.x1f{left:267.279982pt;}
.x14{left:275.106667pt;}
.x3b{left:283.568482pt;}
.xb{left:284.834667pt;}
.x32{left:321.186655pt;}
.xc{left:341.021333pt;}
.x15{left:365.186667pt;}
.x6{left:396.866655pt;}
.x1{left:415.773322pt;}
.x16{left:455.133333pt;}
.x17{left:545.053333pt;}
.x2c{left:564.253322pt;}
.x40{left:575.293322pt;}
.x19{left:635.173333pt;}
.xd{left:666.213333pt;}
.x3{left:699.333322pt;}
}




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