
    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_882bf9d1a178427b69f827e2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_bf683c09a4497e4f487633b0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.006836;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_5824a55ed82e78544d8346a1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.011230;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_407fe62e4dd247d2af82a4e6.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_68c1c0975b67dbeae199e971.woff')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_7257956547d0e52ed0be7cc2.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f0b5bdf3220e8731208695ec.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_c4ce89891251ab3c7eefcbc7.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c6e28d154d2576b85b918aa2.woff')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-1.854000px;}
.lsd{letter-spacing:-1.698000px;}
.lsc{letter-spacing:-1.386000px;}
.lse{letter-spacing:-1.236000px;}
.ls11{letter-spacing:-1.134000px;}
.ls19{letter-spacing:-1.080000px;}
.ls12{letter-spacing:-0.822000px;}
.ls6{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.100200px;}
.lsf{letter-spacing:-0.053280px;}
.ls13{letter-spacing:-0.000720px;}
.ls5{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.311040px;}
.lsb{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.900000px;}
.ls3{letter-spacing:3.060000px;}
.ls1a{letter-spacing:5.220000px;}
.ls15{letter-spacing:5.940000px;}
.lsa{letter-spacing:7.380000px;}
.ls1{letter-spacing:8.100000px;}
.ls1d{letter-spacing:9.540000px;}
.ls1c{letter-spacing:16.506720px;}
.ls1b{letter-spacing:46.026720px;}
.ls16{letter-spacing:141.276000px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.046800px;}
.ws12{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wse{word-spacing:-14.939280px;}
.ws9{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.839800px;}
.ws10{word-spacing:-14.833200px;}
.ws11{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.118000px;}
.wsc{word-spacing:-13.806000px;}
.ws8{word-spacing:-13.704000px;}
.ws6{word-spacing:-13.554000px;}
.ws7{word-spacing:-13.242000px;}
.wsf{word-spacing:-13.086000px;}
.ws2{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._a{margin-left:-1782.456480px;}
._9{margin-left:-1161.340320px;}
._b{margin-left:-776.252160px;}
._6{margin-left:-681.448320px;}
._7{margin-left:-262.517760px;}
._11{margin-left:-232.839360px;}
._f{margin-left:-231.264000px;}
._8{margin-left:-140.955840px;}
._e{margin-left:-115.200000px;}
._d{margin-left:-82.776000px;}
._c{margin-left:-66.240000px;}
._1e{margin-left:-4.347360px;}
._1{margin-left:-3.116880px;}
._0{margin-left:-1.347840px;}
._2{width:1.374720px;}
._12{width:2.394000px;}
._14{width:3.466080px;}
._13{width:4.541760px;}
._17{width:5.736720px;}
._1b{width:6.985680px;}
._19{width:8.160480px;}
._18{width:9.561600px;}
._16{width:10.995840px;}
._15{width:12.489840px;}
._1a{width:13.565280px;}
._27{width:16.922640px;}
._10{width:18.216000px;}
._2e{width:21.009360px;}
._2d{width:22.075200px;}
._2b{width:24.202800px;}
._26{width:25.637040px;}
._20{width:28.445760px;}
._28{width:30.178800px;}
._1d{width:32.270400px;}
._1c{width:33.346080px;}
._2c{width:41.652720px;}
._2a{width:60.477120px;}
._25{width:62.628480px;}
._1f{width:77.628240px;}
._23{width:83.126160px;}
._29{width:84.440880px;}
._24{width:91.612080px;}
._21{width:194.578560px;}
._22{width:237.246960px;}
._4{width:337.140000px;}
._3{width:715.653600px;}
._5{width:1341.536640px;}
.fc7{color:rgb(46,116,181);}
.fc5{color:rgb(15,36,62);}
.fc4{color:rgb(84,141,212);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y25{bottom:5.760000px;}
.y85{bottom:5.940000px;}
.y13{bottom:7.560000px;}
.y34{bottom:8.280000px;}
.y5a{bottom:8.460000px;}
.ybe{bottom:9.000000px;}
.y56{bottom:11.520000px;}
.y6{bottom:11.880000px;}
.y87{bottom:16.605000px;}
.y8b{bottom:17.100000px;}
.yc2{bottom:18.540000px;}
.yac{bottom:18.720000px;}
.y24{bottom:23.040000px;}
.y8d{bottom:25.560000px;}
.yae{bottom:25.605000px;}
.y84{bottom:25.740000px;}
.y33{bottom:28.260000px;}
.ybd{bottom:28.800000px;}
.y5{bottom:40.500000px;}
.ya9{bottom:42.300000px;}
.y23{bottom:42.840000px;}
.y83{bottom:45.540000px;}
.y32{bottom:48.060000px;}
.ybc{bottom:48.780000px;}
.ya{bottom:61.200000px;}
.ya8{bottom:62.280000px;}
.y22{bottom:62.640000px;}
.y31{bottom:65.340000px;}
.y4{bottom:68.940000px;}
.ya7{bottom:82.080000px;}
.y21{bottom:82.440000px;}
.y30{bottom:85.140000px;}
.y8{bottom:90.210000px;}
.y3{bottom:97.590000px;}
.y49{bottom:97.740000px;}
.yba{bottom:99.900000px;}
.y81{bottom:100.080000px;}
.yea{bottom:100.980000px;}
.ya6{bottom:101.880000px;}
.y20{bottom:102.420000px;}
.y2f{bottom:104.940000px;}
.y48{bottom:117.540000px;}
.yb9{bottom:119.700000px;}
.y80{bottom:119.880000px;}
.ye9{bottom:120.780000px;}
.y1f{bottom:122.220000px;}
.y2e{bottom:124.740000px;}
.y2{bottom:128.550000px;}
.y7{bottom:128.730000px;}
.y47{bottom:137.340000px;}
.yb8{bottom:139.500000px;}
.y7f{bottom:139.680000px;}
.ye8{bottom:140.580000px;}
.y1e{bottom:142.050000px;}
.y2d{bottom:144.570000px;}
.y46{bottom:157.170000px;}
.yb7{bottom:159.510000px;}
.y7e{bottom:159.690000px;}
.ye7{bottom:160.590000px;}
.y1d{bottom:161.850000px;}
.y2c{bottom:164.550000px;}
.y45{bottom:176.970000px;}
.yb6{bottom:179.310000px;}
.y7d{bottom:179.490000px;}
.ye6{bottom:180.390000px;}
.y1c{bottom:181.650000px;}
.y2b{bottom:184.350000px;}
.y44{bottom:196.950000px;}
.yb5{bottom:199.110000px;}
.y7c{bottom:199.290000px;}
.ye5{bottom:200.190000px;}
.y1b{bottom:201.630000px;}
.y2a{bottom:204.150000px;}
.y43{bottom:216.750000px;}
.yb4{bottom:218.910000px;}
.y7b{bottom:219.090000px;}
.ye4{bottom:219.990000px;}
.y1a{bottom:221.430000px;}
.y29{bottom:223.950000px;}
.y42{bottom:236.550000px;}
.yb3{bottom:238.710000px;}
.y7a{bottom:238.890000px;}
.ye3{bottom:239.790000px;}
.y8e{bottom:240.150000px;}
.y19{bottom:241.230000px;}
.y28{bottom:243.750000px;}
.y41{bottom:256.350000px;}
.yb2{bottom:258.690000px;}
.y79{bottom:258.870000px;}
.ye2{bottom:259.770000px;}
.y18{bottom:261.030000px;}
.y27{bottom:263.730000px;}
.y40{bottom:276.150000px;}
.yb1{bottom:278.490000px;}
.y78{bottom:278.670000px;}
.ye1{bottom:279.570000px;}
.y8c{bottom:280.470000px;}
.y17{bottom:280.830000px;}
.y26{bottom:283.530000px;}
.yb0{bottom:293.970000px;}
.y3f{bottom:296.130000px;}
.y77{bottom:298.470000px;}
.ye0{bottom:299.370000px;}
.y16{bottom:300.810000px;}
.y3e{bottom:315.930000px;}
.y76{bottom:318.270000px;}
.ydf{bottom:319.170000px;}
.y15{bottom:320.610000px;}
.y8a{bottom:320.970000px;}
.yaf{bottom:335.190000px;}
.y3d{bottom:335.730000px;}
.y75{bottom:338.070000px;}
.yde{bottom:338.970000px;}
.y89{bottom:353.010000px;}
.y3c{bottom:355.530000px;}
.y74{bottom:358.050000px;}
.ydd{bottom:358.950000px;}
.y88{bottom:373.530000px;}
.y3b{bottom:375.330000px;}
.yad{bottom:376.410000px;}
.y73{bottom:377.850000px;}
.ydc{bottom:378.750000px;}
.y86{bottom:394.050000px;}
.y3a{bottom:395.310000px;}
.y72{bottom:397.650000px;}
.ydb{bottom:398.550000px;}
.y39{bottom:415.155000px;}
.y71{bottom:417.495000px;}
.yda{bottom:418.395000px;}
.y82{bottom:425.415000px;}
.y38{bottom:434.955000px;}
.y70{bottom:437.295000px;}
.yd9{bottom:438.195000px;}
.yab{bottom:451.695000px;}
.y37{bottom:454.755000px;}
.y6f{bottom:457.275000px;}
.yd8{bottom:458.175000px;}
.y36{bottom:474.555000px;}
.y6e{bottom:477.075000px;}
.yd7{bottom:477.975000px;}
.yaa{bottom:492.915000px;}
.y35{bottom:494.535000px;}
.y6d{bottom:496.875000px;}
.yd6{bottom:497.775000px;}
.y14{bottom:509.295000px;}
.y6c{bottom:516.675000px;}
.yd5{bottom:517.575000px;}
.ya5{bottom:533.955000px;}
.y6b{bottom:536.475000px;}
.yd4{bottom:537.375000px;}
.y6a{bottom:556.455000px;}
.yd3{bottom:557.355000px;}
.y69{bottom:576.255000px;}
.yd2{bottom:577.155000px;}
.y68{bottom:596.055000px;}
.yd1{bottom:596.955000px;}
.y67{bottom:615.855000px;}
.yd0{bottom:616.755000px;}
.y66{bottom:635.655000px;}
.ycf{bottom:636.555000px;}
.y65{bottom:655.665000px;}
.yce{bottom:656.565000px;}
.ya4{bottom:657.285000px;}
.y64{bottom:675.465000px;}
.ycd{bottom:676.365000px;}
.ya3{bottom:677.085000px;}
.y63{bottom:695.265000px;}
.ycc{bottom:696.165000px;}
.ya2{bottom:696.885000px;}
.y62{bottom:715.065000px;}
.ycb{bottom:715.965000px;}
.ya1{bottom:716.685000px;}
.y61{bottom:734.865000px;}
.yca{bottom:735.765000px;}
.ya0{bottom:736.485000px;}
.y60{bottom:754.845000px;}
.yc9{bottom:755.745000px;}
.y9f{bottom:756.465000px;}
.y5f{bottom:774.645000px;}
.yc8{bottom:775.545000px;}
.y9e{bottom:776.265000px;}
.y5e{bottom:789.405000px;}
.yc7{bottom:795.345000px;}
.y9d{bottom:796.065000px;}
.y5d{bottom:812.445000px;}
.yc6{bottom:815.145000px;}
.y9c{bottom:815.865000px;}
.yc5{bottom:830.805000px;}
.y5c{bottom:835.665000px;}
.y12{bottom:844.665000px;}
.y9b{bottom:855.645000px;}
.y5b{bottom:858.885000px;}
.yc4{bottom:871.845000px;}
.y9a{bottom:875.445000px;}
.y11{bottom:877.245000px;}
.y59{bottom:881.925000px;}
.y99{bottom:895.245000px;}
.y10{bottom:897.225000px;}
.y58{bottom:905.190000px;}
.yc3{bottom:913.110000px;}
.y98{bottom:915.090000px;}
.yf{bottom:922.290000px;}
.y57{bottom:928.410000px;}
.y97{bottom:929.850000px;}
.ye{bottom:937.410000px;}
.y96{bottom:950.550000px;}
.y55{bottom:950.730000px;}
.yc1{bottom:954.330000px;}
.yd{bottom:959.190000px;}
.y95{bottom:971.070000px;}
.y54{bottom:982.050000px;}
.yc{bottom:984.210000px;}
.yc0{bottom:988.350000px;}
.y94{bottom:991.590000px;}
.y53{bottom:1002.030000px;}
.y93{bottom:1012.290000px;}
.yb{bottom:1015.890000px;}
.y52{bottom:1021.830000px;}
.ybf{bottom:1029.570000px;}
.y92{bottom:1032.810000px;}
.y51{bottom:1041.630000px;}
.y9{bottom:1042.710000px;}
.y91{bottom:1053.510000px;}
.y1{bottom:1059.090000px;}
.y50{bottom:1061.430000px;}
.ybb{bottom:1070.790000px;}
.y90{bottom:1074.030000px;}
.y4f{bottom:1081.230000px;}
.y8f{bottom:1094.550000px;}
.y4e{bottom:1101.210000px;}
.y4d{bottom:1121.010000px;}
.y4c{bottom:1140.810000px;}
.y4b{bottom:1170.720000px;}
.y4a{bottom:1193.580000px;}
.h18{height:19.800000px;}
.h1b{height:19.980000px;}
.h13{height:22.320000px;}
.h15{height:22.500000px;}
.h14{height:22.536000px;}
.h12{height:25.560000px;}
.hd{height:26.100000px;}
.h17{height:30.636000px;}
.h19{height:31.140000px;}
.h22{height:32.580000px;}
.h1e{height:32.760000px;}
.hb{height:34.855313px;}
.h1a{height:39.600000px;}
.h1f{height:39.636000px;}
.h20{height:39.780000px;}
.h23{height:39.816000px;}
.h7{height:48.418594px;}
.h4{height:48.774375px;}
.h11{height:51.706406px;}
.h5{height:53.015625px;}
.h10{height:53.077852px;}
.hc{height:53.573906px;}
.he{height:55.735313px;}
.h9{height:58.833281px;}
.ha{height:60.850547px;}
.h3{height:62.028281px;}
.h21{height:62.820000px;}
.h6{height:65.884219px;}
.h1c{height:77.333906px;}
.h8{height:85.052461px;}
.h16{height:99.180000px;}
.h1d{height:115.956000px;}
.h2{height:150.690000px;}
.hf{height:334.650000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:36.036000px;}
.w9{width:36.180000px;}
.wb{width:36.540000px;}
.w11{width:62.100000px;}
.wd{width:62.820000px;}
.w20{width:73.116000px;}
.w24{width:74.736000px;}
.w22{width:74.916000px;}
.w19{width:75.096000px;}
.w1c{width:75.276000px;}
.w14{width:84.240000px;}
.w1d{width:84.636000px;}
.w16{width:85.356000px;}
.w21{width:100.620000px;}
.w17{width:108.360000px;}
.w12{width:110.916000px;}
.we{width:111.636000px;}
.w23{width:113.040000px;}
.w15{width:113.796000px;}
.w1b{width:114.840000px;}
.w1e{width:115.200000px;}
.w1a{width:115.380000px;}
.w18{width:122.436000px;}
.w3{width:126.396000px;}
.w1f{width:135.036000px;}
.wf{width:137.556000px;}
.w10{width:158.790000px;}
.w7{width:174.090000px;}
.w8{width:221.970000px;}
.wc{width:297.795000px;}
.w13{width:315.975000px;}
.w6{width:606.030000px;}
.w2{width:657.150000px;}
.w5{width:780.120000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:1.980000px;}
.x1c{left:6.840000px;}
.x2{left:7.920000px;}
.x11{left:9.000000px;}
.x13{left:20.925000px;}
.x17{left:41.265000px;}
.x14{left:45.045000px;}
.x16{left:46.305000px;}
.x1{left:54.720000px;}
.x5{left:56.520000px;}
.x8{left:74.520000px;}
.x29{left:80.999987px;}
.x1b{left:108.035987px;}
.x1d{left:142.236000px;}
.x18{left:188.850000px;}
.x1e{left:252.030000px;}
.xf{left:253.470000px;}
.x24{left:258.510000px;}
.x7{left:290.235000px;}
.xa{left:327.495000px;}
.xb{left:364.395000px;}
.x1f{left:376.095000px;}
.x15{left:392.115000px;}
.x25{left:394.995000px;}
.xc{left:401.475000px;}
.xd{left:438.375000px;}
.x20{left:452.625000px;}
.x26{left:469.545000px;}
.xe{left:475.305000px;}
.x19{left:505.545000px;}
.x10{left:551.265000px;}
.x21{left:569.445000px;}
.x27{left:571.785000px;}
.x1a{left:590.505000px;}
.x12{left:614.085000px;}
.x22{left:646.170000px;}
.x28{left:648.150000px;}
.x6{left:662.550000px;}
.x3{left:711.870000px;}
.x4{left:727.529987px;}
.x23{left:762.450000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-1.648000pt;}
.lsd{letter-spacing:-1.509333pt;}
.lsc{letter-spacing:-1.232000pt;}
.lse{letter-spacing:-1.098667pt;}
.ls11{letter-spacing:-1.008000pt;}
.ls19{letter-spacing:-0.960000pt;}
.ls12{letter-spacing:-0.730667pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.089067pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls13{letter-spacing:-0.000640pt;}
.ls5{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.276480pt;}
.lsb{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls3{letter-spacing:2.720000pt;}
.ls1a{letter-spacing:4.640000pt;}
.ls15{letter-spacing:5.280000pt;}
.lsa{letter-spacing:6.560000pt;}
.ls1{letter-spacing:7.200000pt;}
.ls1d{letter-spacing:8.480000pt;}
.ls1c{letter-spacing:14.672640pt;}
.ls1b{letter-spacing:40.912640pt;}
.ls16{letter-spacing:125.578667pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.374933pt;}
.ws12{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.279360pt;}
.ws9{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.190933pt;}
.ws10{word-spacing:-13.185067pt;}
.ws11{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.549333pt;}
.wsc{word-spacing:-12.272000pt;}
.ws8{word-spacing:-12.181333pt;}
.ws6{word-spacing:-12.048000pt;}
.ws7{word-spacing:-11.770667pt;}
.wsf{word-spacing:-11.632000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._a{margin-left:-1584.405760pt;}
._9{margin-left:-1032.302507pt;}
._b{margin-left:-690.001920pt;}
._6{margin-left:-605.731840pt;}
._7{margin-left:-233.349120pt;}
._11{margin-left:-206.968320pt;}
._f{margin-left:-205.568000pt;}
._8{margin-left:-125.294080pt;}
._e{margin-left:-102.400000pt;}
._d{margin-left:-73.578667pt;}
._c{margin-left:-58.880000pt;}
._1e{margin-left:-3.864320pt;}
._1{margin-left:-2.770560pt;}
._0{margin-left:-1.198080pt;}
._2{width:1.221973pt;}
._12{width:2.128000pt;}
._14{width:3.080960pt;}
._13{width:4.037120pt;}
._17{width:5.099307pt;}
._1b{width:6.209493pt;}
._19{width:7.253760pt;}
._18{width:8.499200pt;}
._16{width:9.774080pt;}
._15{width:11.102080pt;}
._1a{width:12.058027pt;}
._27{width:15.042347pt;}
._10{width:16.192000pt;}
._2e{width:18.674987pt;}
._2d{width:19.622400pt;}
._2b{width:21.513600pt;}
._26{width:22.788480pt;}
._20{width:25.285120pt;}
._28{width:26.825600pt;}
._1d{width:28.684800pt;}
._1c{width:29.640960pt;}
._2c{width:37.024640pt;}
._2a{width:53.757440pt;}
._25{width:55.669760pt;}
._1f{width:69.002880pt;}
._23{width:73.889920pt;}
._29{width:75.058560pt;}
._24{width:81.432960pt;}
._21{width:172.958720pt;}
._22{width:210.886187pt;}
._4{width:299.680000pt;}
._3{width:636.136533pt;}
._5{width:1192.477013pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:5.120000pt;}
.y85{bottom:5.280000pt;}
.y13{bottom:6.720000pt;}
.y34{bottom:7.360000pt;}
.y5a{bottom:7.520000pt;}
.ybe{bottom:8.000000pt;}
.y56{bottom:10.240000pt;}
.y6{bottom:10.560000pt;}
.y87{bottom:14.760000pt;}
.y8b{bottom:15.200000pt;}
.yc2{bottom:16.480000pt;}
.yac{bottom:16.640000pt;}
.y24{bottom:20.480000pt;}
.y8d{bottom:22.720000pt;}
.yae{bottom:22.760000pt;}
.y84{bottom:22.880000pt;}
.y33{bottom:25.120000pt;}
.ybd{bottom:25.600000pt;}
.y5{bottom:36.000000pt;}
.ya9{bottom:37.600000pt;}
.y23{bottom:38.080000pt;}
.y83{bottom:40.480000pt;}
.y32{bottom:42.720000pt;}
.ybc{bottom:43.360000pt;}
.ya{bottom:54.400000pt;}
.ya8{bottom:55.360000pt;}
.y22{bottom:55.680000pt;}
.y31{bottom:58.080000pt;}
.y4{bottom:61.280000pt;}
.ya7{bottom:72.960000pt;}
.y21{bottom:73.280000pt;}
.y30{bottom:75.680000pt;}
.y8{bottom:80.186667pt;}
.y3{bottom:86.746667pt;}
.y49{bottom:86.880000pt;}
.yba{bottom:88.800000pt;}
.y81{bottom:88.960000pt;}
.yea{bottom:89.760000pt;}
.ya6{bottom:90.560000pt;}
.y20{bottom:91.040000pt;}
.y2f{bottom:93.280000pt;}
.y48{bottom:104.480000pt;}
.yb9{bottom:106.400000pt;}
.y80{bottom:106.560000pt;}
.ye9{bottom:107.360000pt;}
.y1f{bottom:108.640000pt;}
.y2e{bottom:110.880000pt;}
.y2{bottom:114.266667pt;}
.y7{bottom:114.426667pt;}
.y47{bottom:122.080000pt;}
.yb8{bottom:124.000000pt;}
.y7f{bottom:124.160000pt;}
.ye8{bottom:124.960000pt;}
.y1e{bottom:126.266667pt;}
.y2d{bottom:128.506667pt;}
.y46{bottom:139.706667pt;}
.yb7{bottom:141.786667pt;}
.y7e{bottom:141.946667pt;}
.ye7{bottom:142.746667pt;}
.y1d{bottom:143.866667pt;}
.y2c{bottom:146.266667pt;}
.y45{bottom:157.306667pt;}
.yb6{bottom:159.386667pt;}
.y7d{bottom:159.546667pt;}
.ye6{bottom:160.346667pt;}
.y1c{bottom:161.466667pt;}
.y2b{bottom:163.866667pt;}
.y44{bottom:175.066667pt;}
.yb5{bottom:176.986667pt;}
.y7c{bottom:177.146667pt;}
.ye5{bottom:177.946667pt;}
.y1b{bottom:179.226667pt;}
.y2a{bottom:181.466667pt;}
.y43{bottom:192.666667pt;}
.yb4{bottom:194.586667pt;}
.y7b{bottom:194.746667pt;}
.ye4{bottom:195.546667pt;}
.y1a{bottom:196.826667pt;}
.y29{bottom:199.066667pt;}
.y42{bottom:210.266667pt;}
.yb3{bottom:212.186667pt;}
.y7a{bottom:212.346667pt;}
.ye3{bottom:213.146667pt;}
.y8e{bottom:213.466667pt;}
.y19{bottom:214.426667pt;}
.y28{bottom:216.666667pt;}
.y41{bottom:227.866667pt;}
.yb2{bottom:229.946667pt;}
.y79{bottom:230.106667pt;}
.ye2{bottom:230.906667pt;}
.y18{bottom:232.026667pt;}
.y27{bottom:234.426667pt;}
.y40{bottom:245.466667pt;}
.yb1{bottom:247.546667pt;}
.y78{bottom:247.706667pt;}
.ye1{bottom:248.506667pt;}
.y8c{bottom:249.306667pt;}
.y17{bottom:249.626667pt;}
.y26{bottom:252.026667pt;}
.yb0{bottom:261.306667pt;}
.y3f{bottom:263.226667pt;}
.y77{bottom:265.306667pt;}
.ye0{bottom:266.106667pt;}
.y16{bottom:267.386667pt;}
.y3e{bottom:280.826667pt;}
.y76{bottom:282.906667pt;}
.ydf{bottom:283.706667pt;}
.y15{bottom:284.986667pt;}
.y8a{bottom:285.306667pt;}
.yaf{bottom:297.946667pt;}
.y3d{bottom:298.426667pt;}
.y75{bottom:300.506667pt;}
.yde{bottom:301.306667pt;}
.y89{bottom:313.786667pt;}
.y3c{bottom:316.026667pt;}
.y74{bottom:318.266667pt;}
.ydd{bottom:319.066667pt;}
.y88{bottom:332.026667pt;}
.y3b{bottom:333.626667pt;}
.yad{bottom:334.586667pt;}
.y73{bottom:335.866667pt;}
.ydc{bottom:336.666667pt;}
.y86{bottom:350.266667pt;}
.y3a{bottom:351.386667pt;}
.y72{bottom:353.466667pt;}
.ydb{bottom:354.266667pt;}
.y39{bottom:369.026667pt;}
.y71{bottom:371.106667pt;}
.yda{bottom:371.906667pt;}
.y82{bottom:378.146667pt;}
.y38{bottom:386.626667pt;}
.y70{bottom:388.706667pt;}
.yd9{bottom:389.506667pt;}
.yab{bottom:401.506667pt;}
.y37{bottom:404.226667pt;}
.y6f{bottom:406.466667pt;}
.yd8{bottom:407.266667pt;}
.y36{bottom:421.826667pt;}
.y6e{bottom:424.066667pt;}
.yd7{bottom:424.866667pt;}
.yaa{bottom:438.146667pt;}
.y35{bottom:439.586667pt;}
.y6d{bottom:441.666667pt;}
.yd6{bottom:442.466667pt;}
.y14{bottom:452.706667pt;}
.y6c{bottom:459.266667pt;}
.yd5{bottom:460.066667pt;}
.ya5{bottom:474.626667pt;}
.y6b{bottom:476.866667pt;}
.yd4{bottom:477.666667pt;}
.y6a{bottom:494.626667pt;}
.yd3{bottom:495.426667pt;}
.y69{bottom:512.226667pt;}
.yd2{bottom:513.026667pt;}
.y68{bottom:529.826667pt;}
.yd1{bottom:530.626667pt;}
.y67{bottom:547.426667pt;}
.yd0{bottom:548.226667pt;}
.y66{bottom:565.026667pt;}
.ycf{bottom:565.826667pt;}
.y65{bottom:582.813333pt;}
.yce{bottom:583.613333pt;}
.ya4{bottom:584.253333pt;}
.y64{bottom:600.413333pt;}
.ycd{bottom:601.213333pt;}
.ya3{bottom:601.853333pt;}
.y63{bottom:618.013333pt;}
.ycc{bottom:618.813333pt;}
.ya2{bottom:619.453333pt;}
.y62{bottom:635.613333pt;}
.ycb{bottom:636.413333pt;}
.ya1{bottom:637.053333pt;}
.y61{bottom:653.213333pt;}
.yca{bottom:654.013333pt;}
.ya0{bottom:654.653333pt;}
.y60{bottom:670.973333pt;}
.yc9{bottom:671.773333pt;}
.y9f{bottom:672.413333pt;}
.y5f{bottom:688.573333pt;}
.yc8{bottom:689.373333pt;}
.y9e{bottom:690.013333pt;}
.y5e{bottom:701.693333pt;}
.yc7{bottom:706.973333pt;}
.y9d{bottom:707.613333pt;}
.y5d{bottom:722.173333pt;}
.yc6{bottom:724.573333pt;}
.y9c{bottom:725.213333pt;}
.yc5{bottom:738.493333pt;}
.y5c{bottom:742.813333pt;}
.y12{bottom:750.813333pt;}
.y9b{bottom:760.573333pt;}
.y5b{bottom:763.453333pt;}
.yc4{bottom:774.973333pt;}
.y9a{bottom:778.173333pt;}
.y11{bottom:779.773333pt;}
.y59{bottom:783.933333pt;}
.y99{bottom:795.773333pt;}
.y10{bottom:797.533333pt;}
.y58{bottom:804.613333pt;}
.yc3{bottom:811.653333pt;}
.y98{bottom:813.413333pt;}
.yf{bottom:819.813333pt;}
.y57{bottom:825.253333pt;}
.y97{bottom:826.533333pt;}
.ye{bottom:833.253333pt;}
.y96{bottom:844.933333pt;}
.y55{bottom:845.093333pt;}
.yc1{bottom:848.293333pt;}
.yd{bottom:852.613333pt;}
.y95{bottom:863.173333pt;}
.y54{bottom:872.933333pt;}
.yc{bottom:874.853333pt;}
.yc0{bottom:878.533333pt;}
.y94{bottom:881.413333pt;}
.y53{bottom:890.693333pt;}
.y93{bottom:899.813333pt;}
.yb{bottom:903.013333pt;}
.y52{bottom:908.293333pt;}
.ybf{bottom:915.173333pt;}
.y92{bottom:918.053333pt;}
.y51{bottom:925.893333pt;}
.y9{bottom:926.853333pt;}
.y91{bottom:936.453333pt;}
.y1{bottom:941.413333pt;}
.y50{bottom:943.493333pt;}
.ybb{bottom:951.813333pt;}
.y90{bottom:954.693333pt;}
.y4f{bottom:961.093333pt;}
.y8f{bottom:972.933333pt;}
.y4e{bottom:978.853333pt;}
.y4d{bottom:996.453333pt;}
.y4c{bottom:1014.053333pt;}
.y4b{bottom:1040.640000pt;}
.y4a{bottom:1060.960000pt;}
.h18{height:17.600000pt;}
.h1b{height:17.760000pt;}
.h13{height:19.840000pt;}
.h15{height:20.000000pt;}
.h14{height:20.032000pt;}
.h12{height:22.720000pt;}
.hd{height:23.200000pt;}
.h17{height:27.232000pt;}
.h19{height:27.680000pt;}
.h22{height:28.960000pt;}
.h1e{height:29.120000pt;}
.hb{height:30.982500pt;}
.h1a{height:35.200000pt;}
.h1f{height:35.232000pt;}
.h20{height:35.360000pt;}
.h23{height:35.392000pt;}
.h7{height:43.038750pt;}
.h4{height:43.355000pt;}
.h11{height:45.961250pt;}
.h5{height:47.125000pt;}
.h10{height:47.180312pt;}
.hc{height:47.621250pt;}
.he{height:49.542500pt;}
.h9{height:52.296250pt;}
.ha{height:54.089375pt;}
.h3{height:55.136250pt;}
.h21{height:55.840000pt;}
.h6{height:58.563750pt;}
.h1c{height:68.741250pt;}
.h8{height:75.602187pt;}
.h16{height:88.160000pt;}
.h1d{height:103.072000pt;}
.h2{height:133.946667pt;}
.hf{height:297.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:32.032000pt;}
.w9{width:32.160000pt;}
.wb{width:32.480000pt;}
.w11{width:55.200000pt;}
.wd{width:55.840000pt;}
.w20{width:64.992000pt;}
.w24{width:66.432000pt;}
.w22{width:66.592000pt;}
.w19{width:66.752000pt;}
.w1c{width:66.912000pt;}
.w14{width:74.880000pt;}
.w1d{width:75.232000pt;}
.w16{width:75.872000pt;}
.w21{width:89.440000pt;}
.w17{width:96.320000pt;}
.w12{width:98.592000pt;}
.we{width:99.232000pt;}
.w23{width:100.480000pt;}
.w15{width:101.152000pt;}
.w1b{width:102.080000pt;}
.w1e{width:102.400000pt;}
.w1a{width:102.560000pt;}
.w18{width:108.832000pt;}
.w3{width:112.352000pt;}
.w1f{width:120.032000pt;}
.wf{width:122.272000pt;}
.w10{width:141.146667pt;}
.w7{width:154.746667pt;}
.w8{width:197.306667pt;}
.wc{width:264.706667pt;}
.w13{width:280.866667pt;}
.w6{width:538.693333pt;}
.w2{width:584.133333pt;}
.w5{width:693.440000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:1.760000pt;}
.x1c{left:6.080000pt;}
.x2{left:7.040000pt;}
.x11{left:8.000000pt;}
.x13{left:18.600000pt;}
.x17{left:36.680000pt;}
.x14{left:40.040000pt;}
.x16{left:41.160000pt;}
.x1{left:48.640000pt;}
.x5{left:50.240000pt;}
.x8{left:66.240000pt;}
.x29{left:71.999988pt;}
.x1b{left:96.031988pt;}
.x1d{left:126.432000pt;}
.x18{left:167.866667pt;}
.x1e{left:224.026667pt;}
.xf{left:225.306667pt;}
.x24{left:229.786667pt;}
.x7{left:257.986667pt;}
.xa{left:291.106667pt;}
.xb{left:323.906667pt;}
.x1f{left:334.306667pt;}
.x15{left:348.546667pt;}
.x25{left:351.106667pt;}
.xc{left:356.866667pt;}
.xd{left:389.666667pt;}
.x20{left:402.333333pt;}
.x26{left:417.373333pt;}
.xe{left:422.493333pt;}
.x19{left:449.373333pt;}
.x10{left:490.013333pt;}
.x21{left:506.173333pt;}
.x27{left:508.253333pt;}
.x1a{left:524.893333pt;}
.x12{left:545.853333pt;}
.x22{left:574.373333pt;}
.x28{left:576.133333pt;}
.x6{left:588.933333pt;}
.x3{left:632.773333pt;}
.x4{left:646.693322pt;}
.x23{left:677.733333pt;}
}




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