
    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_3d202e679d3254913bd6468e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.038086;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_913ca9945e7b2bae6e3227d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005859;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.750000;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_1c3892ea581dae271479c79a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940430;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_56fad354e25d4552706ca87d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cd56b2b565bb6d1699dfb6e7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d2b1bb13222c58ebdc9ed88e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_5e5288e16abdd7e2cc6bd122.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_77eba6e38c617f96dec61640.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_eecad43b21244e5656d63f45.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_6f833cb94711cab660b43d8b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-77.040000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.166800px;}
.ls3{letter-spacing:-0.010800px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.146880px;}
.ls8{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.262080px;}
.ls0{letter-spacing:0.270000px;}
.ls6{letter-spacing:10.944000px;}
.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;}
}
.ws4{word-spacing:-20.733120px;}
.ws1{word-spacing:-20.566320px;}
.ws8{word-spacing:-19.938240px;}
.ws6{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-12.150000px;}
.ws2{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-10.803120px;}
._21{margin-left:-7.485120px;}
._22{margin-left:-5.630400px;}
._24{margin-left:-3.444480px;}
._25{margin-left:-2.185920px;}
._2{margin-left:-1.144080px;}
._0{width:1.149120px;}
._9{width:2.170080px;}
._6{width:4.106880px;}
._7{width:5.497920px;}
._8{width:7.352640px;}
._3{width:8.611200px;}
._4{width:9.869760px;}
._b{width:10.929600px;}
._12{width:12.024000px;}
._13{width:13.752000px;}
._14{width:15.244080px;}
._10{width:16.608960px;}
._a{width:17.655840px;}
._c{width:19.540800px;}
._19{width:20.808000px;}
._1b{width:21.816000px;}
._d{width:22.852800px;}
._e{width:24.261840px;}
._11{width:25.531200px;}
._5{width:27.489600px;}
._1a{width:29.105280px;}
._15{width:31.032000px;}
._16{width:32.402880px;}
._1f{width:34.128000px;}
._f{width:36.365760px;}
._1e{width:37.428480px;}
._27{width:39.432240px;}
._26{width:40.536000px;}
._17{width:42.120000px;}
._18{width:43.284000px;}
._1d{width:44.719920px;}
._1c{width:46.072080px;}
._28{width:80.397840px;}
._2b{width:87.171840px;}
._2d{width:119.629440px;}
._2c{width:149.172480px;}
._2a{width:198.000000px;}
._29{width:199.440000px;}
._2f{width:237.579840px;}
._2e{width:238.993920px;}
._23{width:270.372000px;}
._20{width:358.932000px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(32,33,36);}
.fc1{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.420000px;}
.y7f{bottom:3.600000px;}
.ya1{bottom:3.780000px;}
.y78{bottom:5.580000px;}
.y7b{bottom:5.940000px;}
.y91{bottom:6.660000px;}
.y89{bottom:6.840000px;}
.y99{bottom:7.200000px;}
.y9d{bottom:7.245000px;}
.y2{bottom:8.640000px;}
.y80{bottom:13.140000px;}
.y8b{bottom:15.300000px;}
.y7c{bottom:15.480000px;}
.y84{bottom:15.525000px;}
.y3{bottom:20.880000px;}
.ya8{bottom:22.500000px;}
.yd8{bottom:22.545000px;}
.y7e{bottom:22.680000px;}
.y7a{bottom:24.840000px;}
.y83{bottom:24.885000px;}
.y88{bottom:25.740000px;}
.yd0{bottom:41.574000px;}
.yae{bottom:41.580000px;}
.yd7{bottom:41.625000px;}
.ycc{bottom:41.760000px;}
.y87{bottom:44.820000px;}
.y8{bottom:56.340000px;}
.yad{bottom:60.480000px;}
.yd4{bottom:60.660000px;}
.yd2{bottom:60.690000px;}
.y7{bottom:76.356000px;}
.yac{bottom:79.560000px;}
.ycf{bottom:112.176000px;}
.y76{bottom:112.536000px;}
.y12f{bottom:114.876000px;}
.yfc{bottom:120.636000px;}
.y5a{bottom:123.696000px;}
.ya6{bottom:129.096000px;}
.y12e{bottom:133.776000px;}
.yfb{bottom:141.336000px;}
.y59{bottom:144.396000px;}
.ya5{bottom:150.330000px;}
.y75{bottom:151.230000px;}
.y12d{bottom:152.850000px;}
.yfa{bottom:162.030000px;}
.y58{bottom:165.090000px;}
.yce{bottom:170.490000px;}
.y12c{bottom:171.750000px;}
.yf9{bottom:182.730000px;}
.y57{bottom:185.790000px;}
.y74{bottom:189.930000px;}
.ya4{bottom:190.470000px;}
.y12b{bottom:190.830000px;}
.yf8{bottom:203.430000px;}
.y56{bottom:206.490000px;}
.ya3{bottom:209.550000px;}
.y12a{bottom:209.730000px;}
.yf7{bottom:224.130000px;}
.y55{bottom:227.190000px;}
.ya2{bottom:228.450000px;}
.y73{bottom:228.630000px;}
.ycd{bottom:228.990000px;}
.yf6{bottom:244.830000px;}
.ya0{bottom:247.350000px;}
.y129{bottom:247.710000px;}
.y54{bottom:247.890000px;}
.y72{bottom:249.330000px;}
.yf5{bottom:265.530000px;}
.y128{bottom:266.610000px;}
.y53{bottom:268.590000px;}
.y71{bottom:270.030000px;}
.y127{bottom:285.690000px;}
.yf4{bottom:286.230000px;}
.y9f{bottom:287.670000px;}
.ycb{bottom:288.030000px;}
.y52{bottom:289.290000px;}
.y70{bottom:290.730000px;}
.y126{bottom:304.590000px;}
.yf3{bottom:306.930000px;}
.y51{bottom:309.990000px;}
.y6f{bottom:311.430000px;}
.y9e{bottom:312.870000px;}
.y125{bottom:323.490000px;}
.yf2{bottom:327.630000px;}
.y50{bottom:330.690000px;}
.y9c{bottom:331.770000px;}
.y6e{bottom:332.130000px;}
.y124{bottom:342.615000px;}
.yf1{bottom:348.375000px;}
.yca{bottom:351.075000px;}
.y4f{bottom:351.435000px;}
.y6d{bottom:352.875000px;}
.y9b{bottom:356.655000px;}
.y123{bottom:361.515000px;}
.yf0{bottom:369.075000px;}
.yc9{bottom:369.975000px;}
.y4e{bottom:372.135000px;}
.y6c{bottom:373.575000px;}
.y9a{bottom:379.155000px;}
.y122{bottom:380.595000px;}
.yc8{bottom:389.235000px;}
.yef{bottom:389.775000px;}
.y4d{bottom:392.835000px;}
.y6b{bottom:394.275000px;}
.y121{bottom:399.495000px;}
.yc7{bottom:409.935000px;}
.yee{bottom:410.475000px;}
.y4c{bottom:413.535000px;}
.y6a{bottom:414.975000px;}
.y120{bottom:418.575000px;}
.y98{bottom:419.295000px;}
.yc6{bottom:430.635000px;}
.yed{bottom:431.175000px;}
.y4b{bottom:434.235000px;}
.y69{bottom:435.675000px;}
.y11f{bottom:437.475000px;}
.y97{bottom:447.735000px;}
.yc5{bottom:451.335000px;}
.yec{bottom:451.875000px;}
.y4a{bottom:454.935000px;}
.y68{bottom:456.375000px;}
.y96{bottom:466.995000px;}
.yc4{bottom:472.035000px;}
.yeb{bottom:472.575000px;}
.y11e{bottom:475.455000px;}
.y49{bottom:475.635000px;}
.y67{bottom:477.075000px;}
.y95{bottom:487.695000px;}
.yc3{bottom:492.735000px;}
.yea{bottom:493.275000px;}
.y11d{bottom:494.355000px;}
.y48{bottom:496.335000px;}
.y66{bottom:497.775000px;}
.y94{bottom:508.395000px;}
.yc2{bottom:513.435000px;}
.ye9{bottom:513.975000px;}
.y47{bottom:517.035000px;}
.y27{bottom:517.215000px;}
.y65{bottom:518.475000px;}
.y93{bottom:529.095000px;}
.y11c{bottom:532.335000px;}
.yc1{bottom:534.135000px;}
.ye8{bottom:534.675000px;}
.y26{bottom:536.115000px;}
.y46{bottom:537.735000px;}
.y64{bottom:539.175000px;}
.y92{bottom:547.995000px;}
.y11b{bottom:551.235000px;}
.yc0{bottom:554.835000px;}
.y25{bottom:555.195000px;}
.ye7{bottom:555.375000px;}
.y45{bottom:558.435000px;}
.y63{bottom:559.875000px;}
.y11a{bottom:570.315000px;}
.y90{bottom:572.475000px;}
.y24{bottom:574.095000px;}
.ybf{bottom:575.535000px;}
.ye6{bottom:576.075000px;}
.y44{bottom:579.135000px;}
.y62{bottom:580.575000px;}
.y119{bottom:589.215000px;}
.y23{bottom:593.175000px;}
.ybe{bottom:596.235000px;}
.ye5{bottom:596.775000px;}
.y43{bottom:599.835000px;}
.y61{bottom:601.275000px;}
.y118{bottom:608.325000px;}
.y22{bottom:612.105000px;}
.ybd{bottom:616.965000px;}
.ye4{bottom:617.505000px;}
.y8f{bottom:619.845000px;}
.y42{bottom:620.565000px;}
.y60{bottom:622.005000px;}
.y117{bottom:627.225000px;}
.y21{bottom:631.005000px;}
.ybc{bottom:637.665000px;}
.ye3{bottom:638.205000px;}
.y8e{bottom:640.545000px;}
.y41{bottom:641.265000px;}
.y5f{bottom:642.705000px;}
.y116{bottom:646.125000px;}
.y20{bottom:650.085000px;}
.ybb{bottom:658.365000px;}
.ye2{bottom:658.905000px;}
.y8d{bottom:661.245000px;}
.y40{bottom:661.965000px;}
.y5e{bottom:663.405000px;}
.y115{bottom:665.205000px;}
.y1f{bottom:668.985000px;}
.yba{bottom:679.065000px;}
.ye1{bottom:679.605000px;}
.y8c{bottom:681.945000px;}
.y3f{bottom:682.665000px;}
.y5d{bottom:684.105000px;}
.y1e{bottom:688.065000px;}
.yb9{bottom:699.765000px;}
.ye0{bottom:700.305000px;}
.y8a{bottom:701.025000px;}
.y114{bottom:703.185000px;}
.y3e{bottom:703.365000px;}
.y5c{bottom:704.805000px;}
.y1d{bottom:706.965000px;}
.yb8{bottom:720.465000px;}
.ydf{bottom:721.005000px;}
.y113{bottom:722.085000px;}
.y3d{bottom:724.065000px;}
.y5b{bottom:725.145000px;}
.y1c{bottom:725.865000px;}
.y112{bottom:740.985000px;}
.yb7{bottom:741.165000px;}
.yde{bottom:741.705000px;}
.y3c{bottom:744.765000px;}
.y1b{bottom:744.945000px;}
.y86{bottom:745.665000px;}
.y111{bottom:760.065000px;}
.yb6{bottom:761.865000px;}
.ydd{bottom:762.405000px;}
.y1a{bottom:763.845000px;}
.y3b{bottom:765.465000px;}
.y110{bottom:778.965000px;}
.yb5{bottom:780.765000px;}
.y19{bottom:782.925000px;}
.ydc{bottom:783.105000px;}
.y3a{bottom:786.165000px;}
.y10f{bottom:798.045000px;}
.y18{bottom:801.825000px;}
.ydb{bottom:803.805000px;}
.y39{bottom:806.865000px;}
.y85{bottom:811.185000px;}
.y10e{bottom:816.945000px;}
.y17{bottom:820.905000px;}
.yb4{bottom:821.085000px;}
.yda{bottom:824.505000px;}
.y38{bottom:827.565000px;}
.y10d{bottom:835.845000px;}
.y16{bottom:839.805000px;}
.yb3{bottom:839.985000px;}
.yd9{bottom:845.205000px;}
.y37{bottom:848.265000px;}
.y10c{bottom:854.925000px;}
.y82{bottom:855.825000px;}
.y15{bottom:858.705000px;}
.yb2{bottom:858.885000px;}
.yd6{bottom:864.285000px;}
.y36{bottom:868.965000px;}
.y10b{bottom:873.870000px;}
.y14{bottom:877.830000px;}
.yb1{bottom:878.010000px;}
.y35{bottom:889.710000px;}
.y10a{bottom:892.950000px;}
.y13{bottom:896.730000px;}
.y81{bottom:900.510000px;}
.y34{bottom:910.410000px;}
.y109{bottom:911.850000px;}
.y12{bottom:915.810000px;}
.yb0{bottom:918.150000px;}
.yd5{bottom:922.650000px;}
.y108{bottom:930.930000px;}
.y33{bottom:931.110000px;}
.y11{bottom:934.710000px;}
.y7d{bottom:945.150000px;}
.y107{bottom:949.830000px;}
.y32{bottom:951.810000px;}
.y10{bottom:953.610000px;}
.yaf{bottom:960.630000px;}
.y106{bottom:968.730000px;}
.y31{bottom:972.510000px;}
.yf{bottom:972.690000px;}
.yab{bottom:981.870000px;}
.y79{bottom:985.290000px;}
.y105{bottom:987.810000px;}
.ye{bottom:991.590000px;}
.y30{bottom:993.210000px;}
.yd3{bottom:1000.050000px;}
.y104{bottom:1006.710000px;}
.yd{bottom:1011.750000px;}
.y2f{bottom:1013.910000px;}
.y103{bottom:1025.790000px;}
.y77{bottom:1029.930000px;}
.yc{bottom:1031.550000px;}
.y2e{bottom:1034.610000px;}
.y102{bottom:1044.690000px;}
.y2d{bottom:1055.310000px;}
.yb{bottom:1055.670000px;}
.y101{bottom:1063.590000px;}
.y2c{bottom:1076.010000px;}
.yaa{bottom:1076.730000px;}
.yd1{bottom:1077.450000px;}
.ya{bottom:1079.790000px;}
.y100{bottom:1082.670000px;}
.ya9{bottom:1095.630000px;}
.y2b{bottom:1096.710000px;}
.yff{bottom:1101.570000px;}
.y9{bottom:1103.910000px;}
.ya7{bottom:1114.710000px;}
.y2a{bottom:1117.410000px;}
.yfe{bottom:1120.650000px;}
.y6{bottom:1126.950000px;}
.y29{bottom:1138.140000px;}
.yfd{bottom:1139.580000px;}
.y5{bottom:1152.540000px;}
.y1{bottom:1174.680000px;}
.y28{bottom:1193.220000px;}
.h1b{height:18.900000px;}
.h1c{height:19.080000px;}
.h20{height:19.116000px;}
.h10{height:20.880000px;}
.h16{height:22.140000px;}
.h18{height:22.320000px;}
.h19{height:22.500000px;}
.h1a{height:22.536000px;}
.h2{height:35.100000px;}
.h1d{height:37.836000px;}
.h12{height:37.980000px;}
.h15{height:42.300000px;}
.h11{height:42.480000px;}
.h13{height:42.516000px;}
.ha{height:46.251562px;}
.h1f{height:46.736719px;}
.hd{height:50.273438px;}
.h6{height:50.326875px;}
.h4{height:50.364141px;}
.h17{height:50.423906px;}
.h5{height:53.015625px;}
.he{height:55.825312px;}
.h22{height:56.880000px;}
.h25{height:56.916000px;}
.h21{height:57.096000px;}
.h14{height:63.360000px;}
.h9{height:65.010937px;}
.h8{height:66.757500px;}
.hc{height:70.664062px;}
.hb{height:72.562500px;}
.hf{height:74.953125px;}
.h24{height:75.960000px;}
.h23{height:75.996000px;}
.h3{height:81.078047px;}
.h7{height:84.898125px;}
.h1e{height:94.860000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:76.140000px;}
.w17{width:88.416000px;}
.w15{width:90.576000px;}
.w14{width:93.960000px;}
.w11{width:117.036000px;}
.w13{width:118.116000px;}
.w6{width:118.260000px;}
.w7{width:118.296000px;}
.w12{width:127.440000px;}
.we{width:146.556000px;}
.wb{width:151.950000px;}
.wf{width:159.330000px;}
.wc{width:165.270000px;}
.w10{width:172.470000px;}
.w8{width:198.390000px;}
.w9{width:212.070000px;}
.wd{width:215.850000px;}
.wa{width:223.950000px;}
.w5{width:316.335000px;}
.w2{width:338.070000px;}
.w3{width:338.115000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x12{left:12.239987px;}
.x20{left:16.380000px;}
.x1a{left:40.185000px;}
.x2e{left:62.100000px;}
.x1{left:89.316000px;}
.x4{left:92.910000px;}
.x7{left:108.035987px;}
.xa{left:125.855987px;}
.x9{left:129.455987px;}
.xe{left:130.715987px;}
.x2f{left:141.875987px;}
.x14{left:148.535987px;}
.x18{left:150.509987px;}
.xd{left:163.649987px;}
.x26{left:164.909987px;}
.x28{left:165.990000px;}
.x15{left:170.130000px;}
.x1d{left:175.890000px;}
.xb{left:183.989987px;}
.x10{left:185.609987px;}
.x27{left:205.229987px;}
.x5{left:223.230000px;}
.x23{left:237.990000px;}
.x19{left:241.230000px;}
.x1c{left:264.089987px;}
.x29{left:284.115000px;}
.xf{left:357.014987px;}
.x2a{left:378.075000px;}
.x1e{left:399.855000px;}
.x21{left:401.475000px;}
.x11{left:406.694987px;}
.x24{left:410.475000px;}
.x3{left:427.395000px;}
.x8{left:437.474987px;}
.x1b{left:439.635000px;}
.xc{left:446.474987px;}
.x2b{left:468.645000px;}
.x16{left:486.465000px;}
.x25{left:527.505000px;}
.x22{left:548.025000px;}
.x1f{left:551.805000px;}
.x2c{left:562.605000px;}
.x17{left:604.725000px;}
.x2d{left:638.745000px;}
.x13{left:767.129987px;}
.x6{left:804.029987px;}
@media print{
.v2{vertical-align:-68.480000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.148267pt;}
.ls3{letter-spacing:-0.009600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.130560pt;}
.ls8{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.232960pt;}
.ls0{letter-spacing:0.240000pt;}
.ls6{letter-spacing:9.728000pt;}
.ws4{word-spacing:-18.429440pt;}
.ws1{word-spacing:-18.281173pt;}
.ws8{word-spacing:-17.722880pt;}
.ws6{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-10.800000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-9.602773pt;}
._21{margin-left:-6.653440pt;}
._22{margin-left:-5.004800pt;}
._24{margin-left:-3.061760pt;}
._25{margin-left:-1.943040pt;}
._2{margin-left:-1.016960pt;}
._0{width:1.021440pt;}
._9{width:1.928960pt;}
._6{width:3.650560pt;}
._7{width:4.887040pt;}
._8{width:6.535680pt;}
._3{width:7.654400pt;}
._4{width:8.773120pt;}
._b{width:9.715200pt;}
._12{width:10.688000pt;}
._13{width:12.224000pt;}
._14{width:13.550293pt;}
._10{width:14.763520pt;}
._a{width:15.694080pt;}
._c{width:17.369600pt;}
._19{width:18.496000pt;}
._1b{width:19.392000pt;}
._d{width:20.313600pt;}
._e{width:21.566080pt;}
._11{width:22.694400pt;}
._5{width:24.435200pt;}
._1a{width:25.871360pt;}
._15{width:27.584000pt;}
._16{width:28.802560pt;}
._1f{width:30.336000pt;}
._f{width:32.325120pt;}
._1e{width:33.269760pt;}
._27{width:35.050880pt;}
._26{width:36.032000pt;}
._17{width:37.440000pt;}
._18{width:38.474667pt;}
._1d{width:39.751040pt;}
._1c{width:40.952960pt;}
._28{width:71.464747pt;}
._2b{width:77.486080pt;}
._2d{width:106.337280pt;}
._2c{width:132.597760pt;}
._2a{width:176.000000pt;}
._29{width:177.280000pt;}
._2f{width:211.182080pt;}
._2e{width:212.439040pt;}
._23{width:240.330667pt;}
._20{width:319.050667pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.040000pt;}
.y7f{bottom:3.200000pt;}
.ya1{bottom:3.360000pt;}
.y78{bottom:4.960000pt;}
.y7b{bottom:5.280000pt;}
.y91{bottom:5.920000pt;}
.y89{bottom:6.080000pt;}
.y99{bottom:6.400000pt;}
.y9d{bottom:6.440000pt;}
.y2{bottom:7.680000pt;}
.y80{bottom:11.680000pt;}
.y8b{bottom:13.600000pt;}
.y7c{bottom:13.760000pt;}
.y84{bottom:13.800000pt;}
.y3{bottom:18.560000pt;}
.ya8{bottom:20.000000pt;}
.yd8{bottom:20.040000pt;}
.y7e{bottom:20.160000pt;}
.y7a{bottom:22.080000pt;}
.y83{bottom:22.120000pt;}
.y88{bottom:22.880000pt;}
.yd0{bottom:36.954667pt;}
.yae{bottom:36.960000pt;}
.yd7{bottom:37.000000pt;}
.ycc{bottom:37.120000pt;}
.y87{bottom:39.840000pt;}
.y8{bottom:50.080000pt;}
.yad{bottom:53.760000pt;}
.yd4{bottom:53.920000pt;}
.yd2{bottom:53.946667pt;}
.y7{bottom:67.872000pt;}
.yac{bottom:70.720000pt;}
.ycf{bottom:99.712000pt;}
.y76{bottom:100.032000pt;}
.y12f{bottom:102.112000pt;}
.yfc{bottom:107.232000pt;}
.y5a{bottom:109.952000pt;}
.ya6{bottom:114.752000pt;}
.y12e{bottom:118.912000pt;}
.yfb{bottom:125.632000pt;}
.y59{bottom:128.352000pt;}
.ya5{bottom:133.626667pt;}
.y75{bottom:134.426667pt;}
.y12d{bottom:135.866667pt;}
.yfa{bottom:144.026667pt;}
.y58{bottom:146.746667pt;}
.yce{bottom:151.546667pt;}
.y12c{bottom:152.666667pt;}
.yf9{bottom:162.426667pt;}
.y57{bottom:165.146667pt;}
.y74{bottom:168.826667pt;}
.ya4{bottom:169.306667pt;}
.y12b{bottom:169.626667pt;}
.yf8{bottom:180.826667pt;}
.y56{bottom:183.546667pt;}
.ya3{bottom:186.266667pt;}
.y12a{bottom:186.426667pt;}
.yf7{bottom:199.226667pt;}
.y55{bottom:201.946667pt;}
.ya2{bottom:203.066667pt;}
.y73{bottom:203.226667pt;}
.ycd{bottom:203.546667pt;}
.yf6{bottom:217.626667pt;}
.ya0{bottom:219.866667pt;}
.y129{bottom:220.186667pt;}
.y54{bottom:220.346667pt;}
.y72{bottom:221.626667pt;}
.yf5{bottom:236.026667pt;}
.y128{bottom:236.986667pt;}
.y53{bottom:238.746667pt;}
.y71{bottom:240.026667pt;}
.y127{bottom:253.946667pt;}
.yf4{bottom:254.426667pt;}
.y9f{bottom:255.706667pt;}
.ycb{bottom:256.026667pt;}
.y52{bottom:257.146667pt;}
.y70{bottom:258.426667pt;}
.y126{bottom:270.746667pt;}
.yf3{bottom:272.826667pt;}
.y51{bottom:275.546667pt;}
.y6f{bottom:276.826667pt;}
.y9e{bottom:278.106667pt;}
.y125{bottom:287.546667pt;}
.yf2{bottom:291.226667pt;}
.y50{bottom:293.946667pt;}
.y9c{bottom:294.906667pt;}
.y6e{bottom:295.226667pt;}
.y124{bottom:304.546667pt;}
.yf1{bottom:309.666667pt;}
.yca{bottom:312.066667pt;}
.y4f{bottom:312.386667pt;}
.y6d{bottom:313.666667pt;}
.y9b{bottom:317.026667pt;}
.y123{bottom:321.346667pt;}
.yf0{bottom:328.066667pt;}
.yc9{bottom:328.866667pt;}
.y4e{bottom:330.786667pt;}
.y6c{bottom:332.066667pt;}
.y9a{bottom:337.026667pt;}
.y122{bottom:338.306667pt;}
.yc8{bottom:345.986667pt;}
.yef{bottom:346.466667pt;}
.y4d{bottom:349.186667pt;}
.y6b{bottom:350.466667pt;}
.y121{bottom:355.106667pt;}
.yc7{bottom:364.386667pt;}
.yee{bottom:364.866667pt;}
.y4c{bottom:367.586667pt;}
.y6a{bottom:368.866667pt;}
.y120{bottom:372.066667pt;}
.y98{bottom:372.706667pt;}
.yc6{bottom:382.786667pt;}
.yed{bottom:383.266667pt;}
.y4b{bottom:385.986667pt;}
.y69{bottom:387.266667pt;}
.y11f{bottom:388.866667pt;}
.y97{bottom:397.986667pt;}
.yc5{bottom:401.186667pt;}
.yec{bottom:401.666667pt;}
.y4a{bottom:404.386667pt;}
.y68{bottom:405.666667pt;}
.y96{bottom:415.106667pt;}
.yc4{bottom:419.586667pt;}
.yeb{bottom:420.066667pt;}
.y11e{bottom:422.626667pt;}
.y49{bottom:422.786667pt;}
.y67{bottom:424.066667pt;}
.y95{bottom:433.506667pt;}
.yc3{bottom:437.986667pt;}
.yea{bottom:438.466667pt;}
.y11d{bottom:439.426667pt;}
.y48{bottom:441.186667pt;}
.y66{bottom:442.466667pt;}
.y94{bottom:451.906667pt;}
.yc2{bottom:456.386667pt;}
.ye9{bottom:456.866667pt;}
.y47{bottom:459.586667pt;}
.y27{bottom:459.746667pt;}
.y65{bottom:460.866667pt;}
.y93{bottom:470.306667pt;}
.y11c{bottom:473.186667pt;}
.yc1{bottom:474.786667pt;}
.ye8{bottom:475.266667pt;}
.y26{bottom:476.546667pt;}
.y46{bottom:477.986667pt;}
.y64{bottom:479.266667pt;}
.y92{bottom:487.106667pt;}
.y11b{bottom:489.986667pt;}
.yc0{bottom:493.186667pt;}
.y25{bottom:493.506667pt;}
.ye7{bottom:493.666667pt;}
.y45{bottom:496.386667pt;}
.y63{bottom:497.666667pt;}
.y11a{bottom:506.946667pt;}
.y90{bottom:508.866667pt;}
.y24{bottom:510.306667pt;}
.ybf{bottom:511.586667pt;}
.ye6{bottom:512.066667pt;}
.y44{bottom:514.786667pt;}
.y62{bottom:516.066667pt;}
.y119{bottom:523.746667pt;}
.y23{bottom:527.266667pt;}
.ybe{bottom:529.986667pt;}
.ye5{bottom:530.466667pt;}
.y43{bottom:533.186667pt;}
.y61{bottom:534.466667pt;}
.y118{bottom:540.733333pt;}
.y22{bottom:544.093333pt;}
.ybd{bottom:548.413333pt;}
.ye4{bottom:548.893333pt;}
.y8f{bottom:550.973333pt;}
.y42{bottom:551.613333pt;}
.y60{bottom:552.893333pt;}
.y117{bottom:557.533333pt;}
.y21{bottom:560.893333pt;}
.ybc{bottom:566.813333pt;}
.ye3{bottom:567.293333pt;}
.y8e{bottom:569.373333pt;}
.y41{bottom:570.013333pt;}
.y5f{bottom:571.293333pt;}
.y116{bottom:574.333333pt;}
.y20{bottom:577.853333pt;}
.ybb{bottom:585.213333pt;}
.ye2{bottom:585.693333pt;}
.y8d{bottom:587.773333pt;}
.y40{bottom:588.413333pt;}
.y5e{bottom:589.693333pt;}
.y115{bottom:591.293333pt;}
.y1f{bottom:594.653333pt;}
.yba{bottom:603.613333pt;}
.ye1{bottom:604.093333pt;}
.y8c{bottom:606.173333pt;}
.y3f{bottom:606.813333pt;}
.y5d{bottom:608.093333pt;}
.y1e{bottom:611.613333pt;}
.yb9{bottom:622.013333pt;}
.ye0{bottom:622.493333pt;}
.y8a{bottom:623.133333pt;}
.y114{bottom:625.053333pt;}
.y3e{bottom:625.213333pt;}
.y5c{bottom:626.493333pt;}
.y1d{bottom:628.413333pt;}
.yb8{bottom:640.413333pt;}
.ydf{bottom:640.893333pt;}
.y113{bottom:641.853333pt;}
.y3d{bottom:643.613333pt;}
.y5b{bottom:644.573333pt;}
.y1c{bottom:645.213333pt;}
.y112{bottom:658.653333pt;}
.yb7{bottom:658.813333pt;}
.yde{bottom:659.293333pt;}
.y3c{bottom:662.013333pt;}
.y1b{bottom:662.173333pt;}
.y86{bottom:662.813333pt;}
.y111{bottom:675.613333pt;}
.yb6{bottom:677.213333pt;}
.ydd{bottom:677.693333pt;}
.y1a{bottom:678.973333pt;}
.y3b{bottom:680.413333pt;}
.y110{bottom:692.413333pt;}
.yb5{bottom:694.013333pt;}
.y19{bottom:695.933333pt;}
.ydc{bottom:696.093333pt;}
.y3a{bottom:698.813333pt;}
.y10f{bottom:709.373333pt;}
.y18{bottom:712.733333pt;}
.ydb{bottom:714.493333pt;}
.y39{bottom:717.213333pt;}
.y85{bottom:721.053333pt;}
.y10e{bottom:726.173333pt;}
.y17{bottom:729.693333pt;}
.yb4{bottom:729.853333pt;}
.yda{bottom:732.893333pt;}
.y38{bottom:735.613333pt;}
.y10d{bottom:742.973333pt;}
.y16{bottom:746.493333pt;}
.yb3{bottom:746.653333pt;}
.yd9{bottom:751.293333pt;}
.y37{bottom:754.013333pt;}
.y10c{bottom:759.933333pt;}
.y82{bottom:760.733333pt;}
.y15{bottom:763.293333pt;}
.yb2{bottom:763.453333pt;}
.yd6{bottom:768.253333pt;}
.y36{bottom:772.413333pt;}
.y10b{bottom:776.773333pt;}
.y14{bottom:780.293333pt;}
.yb1{bottom:780.453333pt;}
.y35{bottom:790.853333pt;}
.y10a{bottom:793.733333pt;}
.y13{bottom:797.093333pt;}
.y81{bottom:800.453333pt;}
.y34{bottom:809.253333pt;}
.y109{bottom:810.533333pt;}
.y12{bottom:814.053333pt;}
.yb0{bottom:816.133333pt;}
.yd5{bottom:820.133333pt;}
.y108{bottom:827.493333pt;}
.y33{bottom:827.653333pt;}
.y11{bottom:830.853333pt;}
.y7d{bottom:840.133333pt;}
.y107{bottom:844.293333pt;}
.y32{bottom:846.053333pt;}
.y10{bottom:847.653333pt;}
.yaf{bottom:853.893333pt;}
.y106{bottom:861.093333pt;}
.y31{bottom:864.453333pt;}
.yf{bottom:864.613333pt;}
.yab{bottom:872.773333pt;}
.y79{bottom:875.813333pt;}
.y105{bottom:878.053333pt;}
.ye{bottom:881.413333pt;}
.y30{bottom:882.853333pt;}
.yd3{bottom:888.933333pt;}
.y104{bottom:894.853333pt;}
.yd{bottom:899.333333pt;}
.y2f{bottom:901.253333pt;}
.y103{bottom:911.813333pt;}
.y77{bottom:915.493333pt;}
.yc{bottom:916.933333pt;}
.y2e{bottom:919.653333pt;}
.y102{bottom:928.613333pt;}
.y2d{bottom:938.053333pt;}
.yb{bottom:938.373333pt;}
.y101{bottom:945.413333pt;}
.y2c{bottom:956.453333pt;}
.yaa{bottom:957.093333pt;}
.yd1{bottom:957.733333pt;}
.ya{bottom:959.813333pt;}
.y100{bottom:962.373333pt;}
.ya9{bottom:973.893333pt;}
.y2b{bottom:974.853333pt;}
.yff{bottom:979.173333pt;}
.y9{bottom:981.253333pt;}
.ya7{bottom:990.853333pt;}
.y2a{bottom:993.253333pt;}
.yfe{bottom:996.133333pt;}
.y6{bottom:1001.733333pt;}
.y29{bottom:1011.680000pt;}
.yfd{bottom:1012.960000pt;}
.y5{bottom:1024.480000pt;}
.y1{bottom:1044.160000pt;}
.y28{bottom:1060.640000pt;}
.h1b{height:16.800000pt;}
.h1c{height:16.960000pt;}
.h20{height:16.992000pt;}
.h10{height:18.560000pt;}
.h16{height:19.680000pt;}
.h18{height:19.840000pt;}
.h19{height:20.000000pt;}
.h1a{height:20.032000pt;}
.h2{height:31.200000pt;}
.h1d{height:33.632000pt;}
.h12{height:33.760000pt;}
.h15{height:37.600000pt;}
.h11{height:37.760000pt;}
.h13{height:37.792000pt;}
.ha{height:41.112500pt;}
.h1f{height:41.543750pt;}
.hd{height:44.687500pt;}
.h6{height:44.735000pt;}
.h4{height:44.768125pt;}
.h17{height:44.821250pt;}
.h5{height:47.125000pt;}
.he{height:49.622500pt;}
.h22{height:50.560000pt;}
.h25{height:50.592000pt;}
.h21{height:50.752000pt;}
.h14{height:56.320000pt;}
.h9{height:57.787500pt;}
.h8{height:59.340000pt;}
.hc{height:62.812500pt;}
.hb{height:64.500000pt;}
.hf{height:66.625000pt;}
.h24{height:67.520000pt;}
.h23{height:67.552000pt;}
.h3{height:72.069375pt;}
.h7{height:75.465000pt;}
.h1e{height:84.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:67.680000pt;}
.w17{width:78.592000pt;}
.w15{width:80.512000pt;}
.w14{width:83.520000pt;}
.w11{width:104.032000pt;}
.w13{width:104.992000pt;}
.w6{width:105.120000pt;}
.w7{width:105.152000pt;}
.w12{width:113.280000pt;}
.we{width:130.272000pt;}
.wb{width:135.066667pt;}
.wf{width:141.626667pt;}
.wc{width:146.906667pt;}
.w10{width:153.306667pt;}
.w8{width:176.346667pt;}
.w9{width:188.506667pt;}
.wd{width:191.866667pt;}
.wa{width:199.066667pt;}
.w5{width:281.186667pt;}
.w2{width:300.506667pt;}
.w3{width:300.546667pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x12{left:10.879988pt;}
.x20{left:14.560000pt;}
.x1a{left:35.720000pt;}
.x2e{left:55.200000pt;}
.x1{left:79.392000pt;}
.x4{left:82.586667pt;}
.x7{left:96.031988pt;}
.xa{left:111.871988pt;}
.x9{left:115.071988pt;}
.xe{left:116.191988pt;}
.x2f{left:126.111988pt;}
.x14{left:132.031988pt;}
.x18{left:133.786655pt;}
.xd{left:145.466655pt;}
.x26{left:146.586655pt;}
.x28{left:147.546667pt;}
.x15{left:151.226667pt;}
.x1d{left:156.346667pt;}
.xb{left:163.546655pt;}
.x10{left:164.986655pt;}
.x27{left:182.426655pt;}
.x5{left:198.426667pt;}
.x23{left:211.546667pt;}
.x19{left:214.426667pt;}
.x1c{left:234.746655pt;}
.x29{left:252.546667pt;}
.xf{left:317.346655pt;}
.x2a{left:336.066667pt;}
.x1e{left:355.426667pt;}
.x21{left:356.866667pt;}
.x11{left:361.506655pt;}
.x24{left:364.866667pt;}
.x3{left:379.906667pt;}
.x8{left:388.866655pt;}
.x1b{left:390.786667pt;}
.xc{left:396.866655pt;}
.x2b{left:416.573333pt;}
.x16{left:432.413333pt;}
.x25{left:468.893333pt;}
.x22{left:487.133333pt;}
.x1f{left:490.493333pt;}
.x2c{left:500.093333pt;}
.x17{left:537.533333pt;}
.x2d{left:567.773333pt;}
.x13{left:681.893322pt;}
.x6{left:714.693322pt;}
}




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