
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5b01f152c3468f68cccfbf90.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_caf5d7b651683517caafbb07.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c3129fcd5736dd9416e48831.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e1a27a37bf9c79d3d91c60b2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_beb362b250c9b1004bcd8306.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_df98b82a233275e4f84625fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_ce81891c4f9c082780f8a417.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_69e94c2098b6d4cd66bf54e2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls12{letter-spacing:-0.186600px;}
.ls15{letter-spacing:-0.141600px;}
.ls9{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.125400px;}
.lsc{letter-spacing:-0.121200px;}
.ls1d{letter-spacing:-0.117600px;}
.ls16{letter-spacing:-0.101400px;}
.ls8{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.063600px;}
.ls18{letter-spacing:-0.006120px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls17{letter-spacing:0.111000px;}
.ls4{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.172200px;}
.ls11{letter-spacing:0.173400px;}
.lsa{letter-spacing:0.174600px;}
.ls5{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.327240px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:17.373600px;}
.ls1c{letter-spacing:47.726640px;}
.ls1b{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.398600px;}
.ws10{word-spacing:-13.337400px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.220280px;}
.wsc{word-spacing:-13.162800px;}
.wsf{word-spacing:-13.125000px;}
.ws13{word-spacing:-13.108800px;}
.ws6{word-spacing:-13.101000px;}
.wse{word-spacing:-13.084800px;}
.ws9{word-spacing:-13.039800px;}
.wsd{word-spacing:-10.533600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._9{margin-left:-3.547200px;}
._a{margin-left:-2.278677px;}
._0{margin-left:-1.158000px;}
._3{width:1.050648px;}
._7{width:2.075352px;}
._b{width:3.150241px;}
._6{width:4.869600px;}
._8{width:6.433201px;}
._c{width:8.056200px;}
._5{width:9.214200px;}
._4{width:10.220400px;}
._d{width:11.879590px;}
._1{width:12.975840px;}
._2{width:13.993728px;}
._19{width:15.931800px;}
._10{width:17.074080px;}
._1a{width:18.603120px;}
._f{width:20.893080px;}
._e{width:21.943800px;}
._12{width:23.266440px;}
._1f{width:25.791480px;}
._1e{width:32.668920px;}
._1c{width:40.928760px;}
._1b{width:42.084000px;}
._1d{width:48.660840px;}
._16{width:51.102000px;}
._17{width:52.769160px;}
._18{width:82.484640px;}
._11{width:101.001600px;}
._14{width:113.085720px;}
._15{width:114.284280px;}
._13{width:130.640160px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y58{bottom:7.830000px;}
.y56{bottom:7.920000px;}
.y8a{bottom:26.550000px;}
.y88{bottom:26.580000px;}
.y86{bottom:26.640000px;}
.y55{bottom:29.970000px;}
.y2{bottom:73.380000px;}
.y25{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y9c{bottom:120.000000px;}
.yce{bottom:121.170000px;}
.y81{bottom:135.570000px;}
.y52{bottom:136.470000px;}
.y9b{bottom:137.640000px;}
.yf9{bottom:138.720000px;}
.ycd{bottom:148.080000px;}
.y127{bottom:151.680000px;}
.y80{bottom:153.120000px;}
.y9a{bottom:155.190000px;}
.yf8{bottom:156.270000px;}
.y126{bottom:169.320000px;}
.y7f{bottom:170.670000px;}
.y51{bottom:172.020000px;}
.y99{bottom:172.740000px;}
.yf7{bottom:182.910000px;}
.ycc{bottom:185.430000px;}
.y7e{bottom:188.310000px;}
.y98{bottom:190.380000px;}
.y125{bottom:195.870000px;}
.yf6{bottom:200.460000px;}
.y7d{bottom:205.860000px;}
.y50{bottom:207.660000px;}
.y97{bottom:207.930000px;}
.y124{bottom:213.510000px;}
.y7c{bottom:223.500000px;}
.y4f{bottom:225.210000px;}
.yf5{bottom:227.100000px;}
.y123{bottom:231.060000px;}
.ycb{bottom:233.670000px;}
.y7b{bottom:241.050000px;}
.y4e{bottom:242.760000px;}
.y96{bottom:243.570000px;}
.yf4{bottom:244.650000px;}
.y23{bottom:250.230000px;}
.y122{bottom:257.610000px;}
.y7a{bottom:258.600000px;}
.y4d{bottom:260.400000px;}
.y22{bottom:267.780000px;}
.yca{bottom:269.310000px;}
.yf3{bottom:271.200000px;}
.y121{bottom:275.250000px;}
.y95{bottom:275.790000px;}
.y79{bottom:276.240000px;}
.y4c{bottom:277.950000px;}
.y21{bottom:285.420000px;}
.yc9{bottom:286.860000px;}
.yf2{bottom:288.840000px;}
.y120{bottom:292.800000px;}
.y4b{bottom:295.590000px;}
.y78{bottom:302.790000px;}
.y20{bottom:302.970000px;}
.yc8{bottom:304.500000px;}
.y4a{bottom:313.140000px;}
.yf1{bottom:315.390000px;}
.y11f{bottom:319.440000px;}
.y1f{bottom:320.520000px;}
.yc7{bottom:322.050000px;}
.y49{bottom:330.690000px;}
.yf0{bottom:332.940000px;}
.y11e{bottom:336.990000px;}
.y77{bottom:337.620000px;}
.y1e{bottom:338.160000px;}
.yc6{bottom:339.600000px;}
.y48{bottom:348.330000px;}
.y76{bottom:349.860000px;}
.y1d{bottom:355.710000px;}
.yef{bottom:359.580000px;}
.y11d{bottom:363.540000px;}
.y47{bottom:365.880000px;}
.yc5{bottom:366.510000px;}
.y1c{bottom:373.350000px;}
.y75{bottom:377.130000px;}
.y11c{bottom:381.180000px;}
.y46{bottom:383.520000px;}
.y1b{bottom:390.900000px;}
.yee{bottom:394.770000px;}
.y45{bottom:401.070000px;}
.y74{bottom:404.490000px;}
.y11b{bottom:407.730000px;}
.y1a{bottom:408.450000px;}
.yc4{bottom:414.840000px;}
.y44{bottom:418.620000px;}
.yed{bottom:421.320000px;}
.y11a{bottom:425.370000px;}
.y19{bottom:426.090000px;}
.y73{bottom:431.850000px;}
.yc3{bottom:432.390000px;}
.yec{bottom:438.870000px;}
.y119{bottom:442.920000px;}
.y43{bottom:445.530000px;}
.yc2{bottom:449.940000px;}
.y18{bottom:453.000000px;}
.y72{bottom:459.210000px;}
.yeb{bottom:465.510000px;}
.yc1{bottom:467.580000px;}
.y118{bottom:469.470000px;}
.yea{bottom:483.090000px;}
.yc0{bottom:485.160000px;}
.y71{bottom:486.510000px;}
.y117{bottom:487.140000px;}
.y42{bottom:493.890000px;}
.ye9{bottom:500.730000px;}
.y17{bottom:501.270000px;}
.ybf{bottom:502.800000px;}
.y116{bottom:504.690000px;}
.y41{bottom:511.440000px;}
.ybe{bottom:520.350000px;}
.ye8{bottom:527.280000px;}
.y40{bottom:529.080000px;}
.y115{bottom:531.330000px;}
.y70{bottom:535.290000px;}
.y16{bottom:536.910000px;}
.ybd{bottom:537.900000px;}
.ye7{bottom:544.830000px;}
.y3f{bottom:546.630000px;}
.y114{bottom:548.880000px;}
.y15{bottom:554.460000px;}
.ybc{bottom:555.540000px;}
.ye6{bottom:562.470000px;}
.y6f{bottom:570.840000px;}
.y14{bottom:572.010000px;}
.ybb{bottom:573.090000px;}
.y3e{bottom:573.180000px;}
.y113{bottom:575.430000px;}
.y6e{bottom:588.390000px;}
.ye5{bottom:589.020000px;}
.y13{bottom:589.650000px;}
.yba{bottom:590.730000px;}
.y112{bottom:593.070000px;}
.y6d{bottom:606.030000px;}
.ye4{bottom:606.660000px;}
.y12{bottom:607.200000px;}
.yb9{bottom:608.280000px;}
.y3d{bottom:608.820000px;}
.y111{bottom:619.620000px;}
.y6c{bottom:623.580000px;}
.ye3{bottom:624.210000px;}
.y11{bottom:624.840000px;}
.yb8{bottom:625.830000px;}
.y3c{bottom:626.370000px;}
.y110{bottom:637.260000px;}
.y6b{bottom:641.130000px;}
.y10{bottom:642.390000px;}
.yb7{bottom:643.470000px;}
.y134{bottom:645.810000px;}
.ye2{bottom:650.760000px;}
.y10f{bottom:654.810000px;}
.y6a{bottom:658.770000px;}
.yf{bottom:659.940000px;}
.yb6{bottom:661.020000px;}
.y3b{bottom:662.010000px;}
.ye1{bottom:668.400000px;}
.y133{bottom:672.360000px;}
.y69{bottom:676.320000px;}
.y94{bottom:677.400000px;}
.ye{bottom:677.580000px;}
.yb5{bottom:678.660000px;}
.y3a{bottom:679.560000px;}
.y10e{bottom:681.360000px;}
.ye0{bottom:685.950000px;}
.y132{bottom:690.000000px;}
.y68{bottom:693.960000px;}
.yd{bottom:695.130000px;}
.yb4{bottom:696.210000px;}
.y39{bottom:697.110000px;}
.y10d{bottom:699.000000px;}
.y131{bottom:707.550000px;}
.y93{bottom:710.340000px;}
.y67{bottom:711.510000px;}
.ydf{bottom:712.590000px;}
.yb3{bottom:713.760000px;}
.y38{bottom:714.750000px;}
.y10c{bottom:716.550000px;}
.yc{bottom:722.040000px;}
.y66{bottom:729.060000px;}
.yde{bottom:730.140000px;}
.yb2{bottom:731.400000px;}
.y37{bottom:732.300000px;}
.y130{bottom:734.190000px;}
.y92{bottom:737.700000px;}
.y10b{bottom:743.190000px;}
.y65{bottom:746.700000px;}
.ydd{bottom:747.690000px;}
.yb1{bottom:748.950000px;}
.y36{bottom:749.850000px;}
.y12f{bottom:751.740000px;}
.y10a{bottom:760.740000px;}
.y64{bottom:764.250000px;}
.y91{bottom:765.060000px;}
.ydc{bottom:765.330000px;}
.yb0{bottom:766.590000px;}
.y35{bottom:767.490000px;}
.yb{bottom:770.280000px;}
.y12e{bottom:778.290000px;}
.y63{bottom:781.890000px;}
.yaf{bottom:784.140000px;}
.y34{bottom:785.040000px;}
.y109{bottom:787.290000px;}
.ydb{bottom:791.880000px;}
.y90{bottom:792.420000px;}
.y12d{bottom:795.930000px;}
.y62{bottom:799.440000px;}
.yae{bottom:801.690000px;}
.y33{bottom:802.680000px;}
.y108{bottom:804.930000px;}
.ya{bottom:806.100000px;}
.yda{bottom:809.520000px;}
.y61{bottom:816.990000px;}
.yad{bottom:819.330000px;}
.y8f{bottom:819.690000px;}
.y107{bottom:822.480000px;}
.yd9{bottom:827.070000px;}
.y32{bottom:829.230000px;}
.yac{bottom:836.880000px;}
.y12c{bottom:840.030000px;}
.y9{bottom:842.100000px;}
.y8e{bottom:847.050000px;}
.y106{bottom:849.030000px;}
.y60{bottom:851.910000px;}
.yd8{bottom:853.620000px;}
.yab{bottom:854.520000px;}
.y12b{bottom:857.670000px;}
.y31{bottom:864.780000px;}
.y5f{bottom:865.950000px;}
.y105{bottom:866.670000px;}
.yd7{bottom:871.260000px;}
.yaa{bottom:872.070000px;}
.y8d{bottom:874.410000px;}
.y5e{bottom:878.100000px;}
.y8{bottom:881.880000px;}
.y30{bottom:882.420000px;}
.y104{bottom:884.220000px;}
.yd6{bottom:888.810000px;}
.ya9{bottom:889.620000px;}
.y7{bottom:899.880000px;}
.y2f{bottom:899.970000px;}
.y8c{bottom:901.680000px;}
.y12a{bottom:901.860000px;}
.y5d{bottom:905.460000px;}
.ya8{bottom:907.260000px;}
.y103{bottom:910.860000px;}
.yd5{bottom:915.450000px;}
.y129{bottom:919.410000px;}
.ya7{bottom:924.810000px;}
.y2e{bottom:926.520000px;}
.y102{bottom:928.410000px;}
.y8b{bottom:929.040000px;}
.y6{bottom:932.190000px;}
.y5c{bottom:932.820000px;}
.yd4{bottom:933.000000px;}
.ya6{bottom:942.450000px;}
.y101{bottom:945.960000px;}
.yd3{bottom:950.550000px;}
.y5{bottom:951.540000px;}
.y89{bottom:956.400000px;}
.y2d{bottom:959.190000px;}
.ya5{bottom:960.000000px;}
.y5b{bottom:960.180000px;}
.y128{bottom:963.600000px;}
.y100{bottom:972.600000px;}
.yd2{bottom:977.190000px;}
.ya4{bottom:977.550000px;}
.y87{bottom:983.760000px;}
.y5a{bottom:987.450000px;}
.y4{bottom:989.880000px;}
.yff{bottom:990.150000px;}
.y2c{bottom:994.740000px;}
.ya3{bottom:995.190000px;}
.yfe{bottom:1007.790000px;}
.y85{bottom:1011.060000px;}
.y2b{bottom:1012.320000px;}
.ya2{bottom:1012.770000px;}
.y3{bottom:1014.570000px;}
.y59{bottom:1014.840000px;}
.yd1{bottom:1021.320000px;}
.y2a{bottom:1029.960000px;}
.ya1{bottom:1030.320000px;}
.yfd{bottom:1034.370000px;}
.y84{bottom:1038.420000px;}
.yd0{bottom:1038.960000px;}
.y57{bottom:1042.200000px;}
.y29{bottom:1047.510000px;}
.ya0{bottom:1047.960000px;}
.yfc{bottom:1051.920000px;}
.ycf{bottom:1056.510000px;}
.y28{bottom:1065.150000px;}
.y9f{bottom:1065.510000px;}
.y54{bottom:1069.470000px;}
.yfb{bottom:1078.560000px;}
.y9e{bottom:1083.150000px;}
.y83{bottom:1087.110000px;}
.y27{bottom:1091.700000px;}
.yfa{bottom:1096.110000px;}
.y9d{bottom:1100.700000px;}
.y82{bottom:1122.750000px;}
.y26{bottom:1127.610000px;}
.y53{bottom:1140.300000px;}
.y24{bottom:1194.300000px;}
.he{height:26.550000px;}
.h13{height:26.580000px;}
.h10{height:26.640000px;}
.hf{height:26.670000px;}
.h2{height:31.901133px;}
.h6{height:37.191445px;}
.h3{height:39.155273px;}
.h12{height:41.661211px;}
.h11{height:42.035273px;}
.hd{height:48.690000px;}
.h7{height:52.311445px;}
.h9{height:52.781133px;}
.h5{height:57.323320px;}
.h8{height:57.838008px;}
.hc{height:59.973223px;}
.h14{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w12{width:25.650000px;}
.w11{width:43.470000px;}
.wf{width:51.030000px;}
.w10{width:51.060000px;}
.we{width:92.280000px;}
.wd{width:99.720000px;}
.w9{width:100.170000px;}
.wa{width:100.800000px;}
.wc{width:100.890000px;}
.wb{width:100.920000px;}
.w7{width:116.280000px;}
.w6{width:116.730000px;}
.w4{width:117.450000px;}
.w5{width:117.570000px;}
.w3{width:123.960000px;}
.w8{width:203.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.xb{left:86.039987px;}
.x4{left:90.000000px;}
.x12{left:102.239987px;}
.x13{left:106.380000px;}
.x21{left:111.239987px;}
.x20{left:187.589987px;}
.x14{left:199.380000px;}
.x6{left:214.680000px;}
.x2{left:251.759987px;}
.xd{left:273.180000px;}
.x15{left:302.880000px;}
.x7{left:332.850000px;}
.x16{left:354.630000px;}
.xe{left:374.160000px;}
.xc{left:397.019987px;}
.x17{left:406.380000px;}
.x8{left:451.110000px;}
.x18{left:458.130000px;}
.xf{left:475.680000px;}
.x19{left:509.910000px;}
.x1a{left:561.660000px;}
.x9{left:569.400000px;}
.x10{left:577.320000px;}
.x1b{left:613.410000px;}
.x1c{left:665.160000px;}
.x11{left:678.930000px;}
.x1f{left:685.139987px;}
.xa{left:686.940000px;}
.x1d{left:716.910000px;}
.x1e{left:761.190000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls15{letter-spacing:-0.125867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.111467pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls1d{letter-spacing:-0.104533pt;}
.ls16{letter-spacing:-0.090133pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls18{letter-spacing:-0.005440pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls17{letter-spacing:0.098667pt;}
.ls4{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.153067pt;}
.ls11{letter-spacing:0.154133pt;}
.lsa{letter-spacing:0.155200pt;}
.ls5{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.290880pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:15.443200pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.909867pt;}
.ws10{word-spacing:-11.855467pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.751360pt;}
.wsc{word-spacing:-11.700267pt;}
.wsf{word-spacing:-11.666667pt;}
.ws13{word-spacing:-11.652267pt;}
.ws6{word-spacing:-11.645333pt;}
.wse{word-spacing:-11.630933pt;}
.ws9{word-spacing:-11.590933pt;}
.wsd{word-spacing:-9.363200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._9{margin-left:-3.153067pt;}
._a{margin-left:-2.025491pt;}
._0{margin-left:-1.029333pt;}
._3{width:0.933909pt;}
._7{width:1.844757pt;}
._b{width:2.800214pt;}
._6{width:4.328533pt;}
._8{width:5.718401pt;}
._c{width:7.161067pt;}
._5{width:8.190400pt;}
._4{width:9.084800pt;}
._d{width:10.559636pt;}
._1{width:11.534080pt;}
._2{width:12.438869pt;}
._19{width:14.161600pt;}
._10{width:15.176960pt;}
._1a{width:16.536107pt;}
._f{width:18.571627pt;}
._e{width:19.505600pt;}
._12{width:20.681280pt;}
._1f{width:22.925760pt;}
._1e{width:29.039040pt;}
._1c{width:36.381120pt;}
._1b{width:37.408000pt;}
._1d{width:43.254080pt;}
._16{width:45.424000pt;}
._17{width:46.905920pt;}
._18{width:73.319680pt;}
._11{width:89.779200pt;}
._14{width:100.520640pt;}
._15{width:101.586027pt;}
._13{width:116.124587pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:6.960000pt;}
.y56{bottom:7.040000pt;}
.y8a{bottom:23.600000pt;}
.y88{bottom:23.626667pt;}
.y86{bottom:23.680000pt;}
.y55{bottom:26.640000pt;}
.y2{bottom:65.226667pt;}
.y25{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y9c{bottom:106.666667pt;}
.yce{bottom:107.706667pt;}
.y81{bottom:120.506667pt;}
.y52{bottom:121.306667pt;}
.y9b{bottom:122.346667pt;}
.yf9{bottom:123.306667pt;}
.ycd{bottom:131.626667pt;}
.y127{bottom:134.826667pt;}
.y80{bottom:136.106667pt;}
.y9a{bottom:137.946667pt;}
.yf8{bottom:138.906667pt;}
.y126{bottom:150.506667pt;}
.y7f{bottom:151.706667pt;}
.y51{bottom:152.906667pt;}
.y99{bottom:153.546667pt;}
.yf7{bottom:162.586667pt;}
.ycc{bottom:164.826667pt;}
.y7e{bottom:167.386667pt;}
.y98{bottom:169.226667pt;}
.y125{bottom:174.106667pt;}
.yf6{bottom:178.186667pt;}
.y7d{bottom:182.986667pt;}
.y50{bottom:184.586667pt;}
.y97{bottom:184.826667pt;}
.y124{bottom:189.786667pt;}
.y7c{bottom:198.666667pt;}
.y4f{bottom:200.186667pt;}
.yf5{bottom:201.866667pt;}
.y123{bottom:205.386667pt;}
.ycb{bottom:207.706667pt;}
.y7b{bottom:214.266667pt;}
.y4e{bottom:215.786667pt;}
.y96{bottom:216.506667pt;}
.yf4{bottom:217.466667pt;}
.y23{bottom:222.426667pt;}
.y122{bottom:228.986667pt;}
.y7a{bottom:229.866667pt;}
.y4d{bottom:231.466667pt;}
.y22{bottom:238.026667pt;}
.yca{bottom:239.386667pt;}
.yf3{bottom:241.066667pt;}
.y121{bottom:244.666667pt;}
.y95{bottom:245.146667pt;}
.y79{bottom:245.546667pt;}
.y4c{bottom:247.066667pt;}
.y21{bottom:253.706667pt;}
.yc9{bottom:254.986667pt;}
.yf2{bottom:256.746667pt;}
.y120{bottom:260.266667pt;}
.y4b{bottom:262.746667pt;}
.y78{bottom:269.146667pt;}
.y20{bottom:269.306667pt;}
.yc8{bottom:270.666667pt;}
.y4a{bottom:278.346667pt;}
.yf1{bottom:280.346667pt;}
.y11f{bottom:283.946667pt;}
.y1f{bottom:284.906667pt;}
.yc7{bottom:286.266667pt;}
.y49{bottom:293.946667pt;}
.yf0{bottom:295.946667pt;}
.y11e{bottom:299.546667pt;}
.y77{bottom:300.106667pt;}
.y1e{bottom:300.586667pt;}
.yc6{bottom:301.866667pt;}
.y48{bottom:309.626667pt;}
.y76{bottom:310.986667pt;}
.y1d{bottom:316.186667pt;}
.yef{bottom:319.626667pt;}
.y11d{bottom:323.146667pt;}
.y47{bottom:325.226667pt;}
.yc5{bottom:325.786667pt;}
.y1c{bottom:331.866667pt;}
.y75{bottom:335.226667pt;}
.y11c{bottom:338.826667pt;}
.y46{bottom:340.906667pt;}
.y1b{bottom:347.466667pt;}
.yee{bottom:350.906667pt;}
.y45{bottom:356.506667pt;}
.y74{bottom:359.546667pt;}
.y11b{bottom:362.426667pt;}
.y1a{bottom:363.066667pt;}
.yc4{bottom:368.746667pt;}
.y44{bottom:372.106667pt;}
.yed{bottom:374.506667pt;}
.y11a{bottom:378.106667pt;}
.y19{bottom:378.746667pt;}
.y73{bottom:383.866667pt;}
.yc3{bottom:384.346667pt;}
.yec{bottom:390.106667pt;}
.y119{bottom:393.706667pt;}
.y43{bottom:396.026667pt;}
.yc2{bottom:399.946667pt;}
.y18{bottom:402.666667pt;}
.y72{bottom:408.186667pt;}
.yeb{bottom:413.786667pt;}
.yc1{bottom:415.626667pt;}
.y118{bottom:417.306667pt;}
.yea{bottom:429.413333pt;}
.yc0{bottom:431.253333pt;}
.y71{bottom:432.453333pt;}
.y117{bottom:433.013333pt;}
.y42{bottom:439.013333pt;}
.ye9{bottom:445.093333pt;}
.y17{bottom:445.573333pt;}
.ybf{bottom:446.933333pt;}
.y116{bottom:448.613333pt;}
.y41{bottom:454.613333pt;}
.ybe{bottom:462.533333pt;}
.ye8{bottom:468.693333pt;}
.y40{bottom:470.293333pt;}
.y115{bottom:472.293333pt;}
.y70{bottom:475.813333pt;}
.y16{bottom:477.253333pt;}
.ybd{bottom:478.133333pt;}
.ye7{bottom:484.293333pt;}
.y3f{bottom:485.893333pt;}
.y114{bottom:487.893333pt;}
.y15{bottom:492.853333pt;}
.ybc{bottom:493.813333pt;}
.ye6{bottom:499.973333pt;}
.y6f{bottom:507.413333pt;}
.y14{bottom:508.453333pt;}
.ybb{bottom:509.413333pt;}
.y3e{bottom:509.493333pt;}
.y113{bottom:511.493333pt;}
.y6e{bottom:523.013333pt;}
.ye5{bottom:523.573333pt;}
.y13{bottom:524.133333pt;}
.yba{bottom:525.093333pt;}
.y112{bottom:527.173333pt;}
.y6d{bottom:538.693333pt;}
.ye4{bottom:539.253333pt;}
.y12{bottom:539.733333pt;}
.yb9{bottom:540.693333pt;}
.y3d{bottom:541.173333pt;}
.y111{bottom:550.773333pt;}
.y6c{bottom:554.293333pt;}
.ye3{bottom:554.853333pt;}
.y11{bottom:555.413333pt;}
.yb8{bottom:556.293333pt;}
.y3c{bottom:556.773333pt;}
.y110{bottom:566.453333pt;}
.y6b{bottom:569.893333pt;}
.y10{bottom:571.013333pt;}
.yb7{bottom:571.973333pt;}
.y134{bottom:574.053333pt;}
.ye2{bottom:578.453333pt;}
.y10f{bottom:582.053333pt;}
.y6a{bottom:585.573333pt;}
.yf{bottom:586.613333pt;}
.yb6{bottom:587.573333pt;}
.y3b{bottom:588.453333pt;}
.ye1{bottom:594.133333pt;}
.y133{bottom:597.653333pt;}
.y69{bottom:601.173333pt;}
.y94{bottom:602.133333pt;}
.ye{bottom:602.293333pt;}
.yb5{bottom:603.253333pt;}
.y3a{bottom:604.053333pt;}
.y10e{bottom:605.653333pt;}
.ye0{bottom:609.733333pt;}
.y132{bottom:613.333333pt;}
.y68{bottom:616.853333pt;}
.yd{bottom:617.893333pt;}
.yb4{bottom:618.853333pt;}
.y39{bottom:619.653333pt;}
.y10d{bottom:621.333333pt;}
.y131{bottom:628.933333pt;}
.y93{bottom:631.413333pt;}
.y67{bottom:632.453333pt;}
.ydf{bottom:633.413333pt;}
.yb3{bottom:634.453333pt;}
.y38{bottom:635.333333pt;}
.y10c{bottom:636.933333pt;}
.yc{bottom:641.813333pt;}
.y66{bottom:648.053333pt;}
.yde{bottom:649.013333pt;}
.yb2{bottom:650.133333pt;}
.y37{bottom:650.933333pt;}
.y130{bottom:652.613333pt;}
.y92{bottom:655.733333pt;}
.y10b{bottom:660.613333pt;}
.y65{bottom:663.733333pt;}
.ydd{bottom:664.613333pt;}
.yb1{bottom:665.733333pt;}
.y36{bottom:666.533333pt;}
.y12f{bottom:668.213333pt;}
.y10a{bottom:676.213333pt;}
.y64{bottom:679.333333pt;}
.y91{bottom:680.053333pt;}
.ydc{bottom:680.293333pt;}
.yb0{bottom:681.413333pt;}
.y35{bottom:682.213333pt;}
.yb{bottom:684.693333pt;}
.y12e{bottom:691.813333pt;}
.y63{bottom:695.013333pt;}
.yaf{bottom:697.013333pt;}
.y34{bottom:697.813333pt;}
.y109{bottom:699.813333pt;}
.ydb{bottom:703.893333pt;}
.y90{bottom:704.373333pt;}
.y12d{bottom:707.493333pt;}
.y62{bottom:710.613333pt;}
.yae{bottom:712.613333pt;}
.y33{bottom:713.493333pt;}
.y108{bottom:715.493333pt;}
.ya{bottom:716.533333pt;}
.yda{bottom:719.573333pt;}
.y61{bottom:726.213333pt;}
.yad{bottom:728.293333pt;}
.y8f{bottom:728.613333pt;}
.y107{bottom:731.093333pt;}
.yd9{bottom:735.173333pt;}
.y32{bottom:737.093333pt;}
.yac{bottom:743.893333pt;}
.y12c{bottom:746.693333pt;}
.y9{bottom:748.533333pt;}
.y8e{bottom:752.933333pt;}
.y106{bottom:754.693333pt;}
.y60{bottom:757.253333pt;}
.yd8{bottom:758.773333pt;}
.yab{bottom:759.573333pt;}
.y12b{bottom:762.373333pt;}
.y31{bottom:768.693333pt;}
.y5f{bottom:769.733333pt;}
.y105{bottom:770.373333pt;}
.yd7{bottom:774.453333pt;}
.yaa{bottom:775.173333pt;}
.y8d{bottom:777.253333pt;}
.y5e{bottom:780.533333pt;}
.y8{bottom:783.893333pt;}
.y30{bottom:784.373333pt;}
.y104{bottom:785.973333pt;}
.yd6{bottom:790.053333pt;}
.ya9{bottom:790.773333pt;}
.y7{bottom:799.893333pt;}
.y2f{bottom:799.973333pt;}
.y8c{bottom:801.493333pt;}
.y12a{bottom:801.653333pt;}
.y5d{bottom:804.853333pt;}
.ya8{bottom:806.453333pt;}
.y103{bottom:809.653333pt;}
.yd5{bottom:813.733333pt;}
.y129{bottom:817.253333pt;}
.ya7{bottom:822.053333pt;}
.y2e{bottom:823.573333pt;}
.y102{bottom:825.253333pt;}
.y8b{bottom:825.813333pt;}
.y6{bottom:828.613333pt;}
.y5c{bottom:829.173333pt;}
.yd4{bottom:829.333333pt;}
.ya6{bottom:837.733333pt;}
.y101{bottom:840.853333pt;}
.yd3{bottom:844.933333pt;}
.y5{bottom:845.813333pt;}
.y89{bottom:850.133333pt;}
.y2d{bottom:852.613333pt;}
.ya5{bottom:853.333333pt;}
.y5b{bottom:853.493333pt;}
.y128{bottom:856.533333pt;}
.y100{bottom:864.533333pt;}
.yd2{bottom:868.613333pt;}
.ya4{bottom:868.933333pt;}
.y87{bottom:874.453333pt;}
.y5a{bottom:877.733333pt;}
.y4{bottom:879.893333pt;}
.yff{bottom:880.133333pt;}
.y2c{bottom:884.213333pt;}
.ya3{bottom:884.613333pt;}
.yfe{bottom:895.813333pt;}
.y85{bottom:898.720000pt;}
.y2b{bottom:899.840000pt;}
.ya2{bottom:900.240000pt;}
.y3{bottom:901.840000pt;}
.y59{bottom:902.080000pt;}
.yd1{bottom:907.840000pt;}
.y2a{bottom:915.520000pt;}
.ya1{bottom:915.840000pt;}
.yfd{bottom:919.440000pt;}
.y84{bottom:923.040000pt;}
.yd0{bottom:923.520000pt;}
.y57{bottom:926.400000pt;}
.y29{bottom:931.120000pt;}
.ya0{bottom:931.520000pt;}
.yfc{bottom:935.040000pt;}
.ycf{bottom:939.120000pt;}
.y28{bottom:946.800000pt;}
.y9f{bottom:947.120000pt;}
.y54{bottom:950.640000pt;}
.yfb{bottom:958.720000pt;}
.y9e{bottom:962.800000pt;}
.y83{bottom:966.320000pt;}
.y27{bottom:970.400000pt;}
.yfa{bottom:974.320000pt;}
.y9d{bottom:978.400000pt;}
.y82{bottom:998.000000pt;}
.y26{bottom:1002.320000pt;}
.y53{bottom:1013.600000pt;}
.y24{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.h13{height:23.626667pt;}
.h10{height:23.680000pt;}
.hf{height:23.706667pt;}
.h2{height:28.356562pt;}
.h6{height:33.059063pt;}
.h3{height:34.804688pt;}
.h12{height:37.032187pt;}
.h11{height:37.364688pt;}
.hd{height:43.280000pt;}
.h7{height:46.499062pt;}
.h9{height:46.916562pt;}
.h5{height:50.954062pt;}
.h8{height:51.411562pt;}
.hc{height:53.309531pt;}
.h14{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w12{width:22.800000pt;}
.w11{width:38.640000pt;}
.wf{width:45.360000pt;}
.w10{width:45.386667pt;}
.we{width:82.026667pt;}
.wd{width:88.640000pt;}
.w9{width:89.040000pt;}
.wa{width:89.600000pt;}
.wc{width:89.680000pt;}
.wb{width:89.706667pt;}
.w7{width:103.360000pt;}
.w6{width:103.760000pt;}
.w4{width:104.400000pt;}
.w5{width:104.506667pt;}
.w3{width:110.186667pt;}
.w8{width:181.066667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.xb{left:76.479988pt;}
.x4{left:80.000000pt;}
.x12{left:90.879988pt;}
.x13{left:94.560000pt;}
.x21{left:98.879988pt;}
.x20{left:166.746655pt;}
.x14{left:177.226667pt;}
.x6{left:190.826667pt;}
.x2{left:223.786655pt;}
.xd{left:242.826667pt;}
.x15{left:269.226667pt;}
.x7{left:295.866667pt;}
.x16{left:315.226667pt;}
.xe{left:332.586667pt;}
.xc{left:352.906655pt;}
.x17{left:361.226667pt;}
.x8{left:400.986667pt;}
.x18{left:407.226667pt;}
.xf{left:422.826667pt;}
.x19{left:453.253333pt;}
.x1a{left:499.253333pt;}
.x9{left:506.133333pt;}
.x10{left:513.173333pt;}
.x1b{left:545.253333pt;}
.x1c{left:591.253333pt;}
.x11{left:603.493333pt;}
.x1f{left:609.013322pt;}
.xa{left:610.613333pt;}
.x1d{left:637.253333pt;}
.x1e{left:676.613333pt;}
.x3{left:711.413322pt;}
}




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