
    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_2cfa54a927c96936f2d7ec08.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_82b3fc3329606c195038b082.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_668f680d5eba48b5215efd22.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_921ca6a21759b446c4f120d7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_7b038e59a19e9f8616e96a6b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_4b7edc7736b30d365973bd1b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_3964ca8166fea1b73c27c52c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_07b813235834e5d3181f3b76.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v5{vertical-align:-79.200000px;}
.v2{vertical-align:-30.360000px;}
.v4{vertical-align:-21.600000px;}
.v3{vertical-align:-5.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.360000px;}
.lsd{letter-spacing:-2.880000px;}
.ls12{letter-spacing:-1.926000px;}
.ls6{letter-spacing:-1.800000px;}
.ls7{letter-spacing:-1.440000px;}
.ls14{letter-spacing:-1.422000px;}
.ls4{letter-spacing:-1.134000px;}
.ls8{letter-spacing:-0.972000px;}
.ls9{letter-spacing:-0.936000px;}
.ls1a{letter-spacing:-0.507000px;}
.lsb{letter-spacing:-0.486600px;}
.ls1f{letter-spacing:-0.466800px;}
.ls5{letter-spacing:-0.457800px;}
.ls3{letter-spacing:-0.305400px;}
.ls13{letter-spacing:-0.079200px;}
.ls15{letter-spacing:-0.020160px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.017280px;}
.ls16{letter-spacing:0.020160px;}
.ls10{letter-spacing:0.025920px;}
.ls1e{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.423360px;}
.ls11{letter-spacing:0.466800px;}
.ls17{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.954000px;}
.lsc{letter-spacing:1.440000px;}
.ls1{letter-spacing:2.160000px;}
.lsa{letter-spacing:7.920000px;}
.ls1d{letter-spacing:10.546560px;}
.ls1b{letter-spacing:40.786560px;}
.ls1c{letter-spacing:43.666560px;}
.lse{letter-spacing:778.596000px;}
.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;}
}
.wsa{word-spacing:-19.465920px;}
.ws8{word-spacing:-19.457280px;}
.ws9{word-spacing:-19.396800px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws2{word-spacing:-16.102200px;}
.ws11{word-spacing:-15.627000px;}
.wsc{word-spacing:-15.586800px;}
.ws12{word-spacing:-15.543360px;}
.ws10{word-spacing:-15.140160px;}
.ws6{word-spacing:-15.120000px;}
.wse{word-spacing:-15.099840px;}
.ws13{word-spacing:-14.653200px;}
.wsf{word-spacing:-14.184000px;}
.ws4{word-spacing:-14.148000px;}
.wsd{word-spacing:-13.698000px;}
.wsb{word-spacing:-13.680000px;}
.ws7{word-spacing:-12.240000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-2542.046400px;}
._4{margin-left:-1448.940960px;}
._6{margin-left:-1446.276600px;}
._5{margin-left:-939.163680px;}
._7{margin-left:-577.825920px;}
._8{margin-left:-11.181840px;}
._a{margin-left:-6.397920px;}
._13{margin-left:-4.593600px;}
._b{margin-left:-3.312000px;}
._0{margin-left:-2.122560px;}
._2{margin-left:-1.061280px;}
._1{width:1.061280px;}
._9{width:2.387520px;}
._10{width:3.480480px;}
._14{width:4.704480px;}
._f{width:5.766240px;}
._e{width:6.891840px;}
._12{width:8.765280px;}
._11{width:9.934560px;}
._15{width:11.732160px;}
._16{width:13.409280px;}
._21{width:16.439040px;}
._17{width:17.795520px;}
._c{width:19.134720px;}
._d{width:20.175360px;}
._1a{width:21.714240px;}
._18{width:22.854240px;}
._19{width:23.938560px;}
._22{width:24.950400px;}
._1b{width:35.280000px;}
._1e{width:45.299520px;}
._1f{width:148.901760px;}
._20{width:153.377280px;}
._1c{width:185.760000px;}
._1d{width:200.880000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs7{font-size:77.904000px;}
.fs0{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.yb7{bottom:5.760000px;}
.yd1{bottom:6.120000px;}
.ycd{bottom:6.480000px;}
.yb8{bottom:7.560000px;}
.y78{bottom:7.815000px;}
.y7a{bottom:7.845000px;}
.y75{bottom:7.890000px;}
.y119{bottom:11.160000px;}
.yb0{bottom:12.960000px;}
.yad{bottom:13.320000px;}
.yaa{bottom:13.350000px;}
.y7d{bottom:15.765000px;}
.ybb{bottom:15.840000px;}
.yaf{bottom:20.160000px;}
.yb3{bottom:20.514000px;}
.yac{bottom:20.520000px;}
.ya9{bottom:20.550000px;}
.y7f{bottom:23.655000px;}
.ya7{bottom:24.120000px;}
.yba{bottom:25.605000px;}
.yd0{bottom:25.920000px;}
.ycc{bottom:26.280000px;}
.y118{bottom:30.954000px;}
.ya5{bottom:34.200000px;}
.y115{bottom:34.554000px;}
.y77{bottom:37.005000px;}
.y74{bottom:37.050000px;}
.ya6{bottom:43.920000px;}
.y7c{bottom:45.645000px;}
.yd3{bottom:45.720000px;}
.ycf{bottom:45.750000px;}
.yd8{bottom:45.765000px;}
.yd6{bottom:46.080000px;}
.y117{bottom:50.754000px;}
.y6{bottom:66.600000px;}
.y116{bottom:70.554000px;}
.y6a{bottom:94.356000px;}
.yb4{bottom:98.676000px;}
.ya1{bottom:105.156000px;}
.ye8{bottom:105.516000px;}
.y113{bottom:106.956000px;}
.y69{bottom:114.156000px;}
.y114{bottom:120.996000px;}
.ya0{bottom:124.956000px;}
.ye7{bottom:125.676000px;}
.y112{bottom:126.756000px;}
.y32{bottom:128.196000px;}
.y68{bottom:133.956000px;}
.y9f{bottom:144.756000px;}
.ye6{bottom:145.476000px;}
.y111{bottom:146.556000px;}
.y31{bottom:147.996000px;}
.y67{bottom:153.750000px;}
.y9e{bottom:164.550000px;}
.ye5{bottom:165.270000px;}
.y110{bottom:166.350000px;}
.y30{bottom:167.790000px;}
.yb2{bottom:169.590000px;}
.y66{bottom:173.550000px;}
.y9d{bottom:184.350000px;}
.ye4{bottom:185.070000px;}
.y10f{bottom:186.150000px;}
.y2f{bottom:187.590000px;}
.y65{bottom:193.350000px;}
.y9c{bottom:204.195000px;}
.ye3{bottom:204.915000px;}
.yb1{bottom:205.275000px;}
.y10e{bottom:206.355000px;}
.y2e{bottom:207.435000px;}
.y64{bottom:213.195000px;}
.y9b{bottom:224.355000px;}
.ye2{bottom:224.715000px;}
.y10d{bottom:226.155000px;}
.y2d{bottom:227.235000px;}
.y63{bottom:233.355000px;}
.yae{bottom:240.915000px;}
.y9a{bottom:243.795000px;}
.ye1{bottom:244.515000px;}
.y10c{bottom:245.955000px;}
.y2c{bottom:247.035000px;}
.y62{bottom:253.155000px;}
.y99{bottom:263.955000px;}
.ye0{bottom:264.315000px;}
.y10b{bottom:265.755000px;}
.y2b{bottom:266.475000px;}
.y61{bottom:272.955000px;}
.yab{bottom:276.195000px;}
.y98{bottom:283.755000px;}
.ydf{bottom:284.115000px;}
.y10a{bottom:285.555000px;}
.y2a{bottom:286.275000px;}
.y60{bottom:292.755000px;}
.y97{bottom:303.555000px;}
.yde{bottom:303.915000px;}
.y109{bottom:305.355000px;}
.y29{bottom:306.075000px;}
.ya8{bottom:311.835000px;}
.y5f{bottom:312.555000px;}
.y96{bottom:323.385000px;}
.ydd{bottom:323.745000px;}
.y108{bottom:325.185000px;}
.y5e{bottom:332.385000px;}
.y28{bottom:335.625000px;}
.y95{bottom:343.185000px;}
.ydc{bottom:343.545000px;}
.y107{bottom:344.985000px;}
.ya4{bottom:347.505000px;}
.y5d{bottom:352.185000px;}
.y27{bottom:355.425000px;}
.y94{bottom:362.985000px;}
.ydb{bottom:363.345000px;}
.y106{bottom:364.785000px;}
.y5c{bottom:371.985000px;}
.y26{bottom:375.225000px;}
.y93{bottom:382.785000px;}
.yda{bottom:383.505000px;}
.y105{bottom:384.225000px;}
.y5b{bottom:391.785000px;}
.y25{bottom:395.025000px;}
.y92{bottom:402.585000px;}
.yd9{bottom:403.305000px;}
.y104{bottom:404.385000px;}
.y5a{bottom:411.585000px;}
.y24{bottom:414.825000px;}
.yd7{bottom:417.705000px;}
.y91{bottom:422.745000px;}
.y103{bottom:424.545000px;}
.y72{bottom:431.385000px;}
.y59{bottom:431.745000px;}
.y23{bottom:434.625000px;}
.y90{bottom:442.185000px;}
.y102{bottom:444.345000px;}
.y71{bottom:451.230000px;}
.y58{bottom:451.590000px;}
.y22{bottom:454.470000px;}
.y8f{bottom:462.390000px;}
.y70{bottom:471.030000px;}
.y57{bottom:471.390000px;}
.y101{bottom:473.190000px;}
.y21{bottom:474.270000px;}
.yd5{bottom:477.870000px;}
.y8e{bottom:482.190000px;}
.y56{bottom:491.190000px;}
.y100{bottom:492.990000px;}
.y20{bottom:494.070000px;}
.y8d{bottom:501.990000px;}
.y55{bottom:510.990000px;}
.yff{bottom:512.790000px;}
.y1f{bottom:513.870000px;}
.y8c{bottom:521.790000px;}
.ya3{bottom:530.430000px;}
.y54{bottom:530.790000px;}
.yfe{bottom:532.590000px;}
.y1e{bottom:534.030000px;}
.yd4{bottom:538.350000px;}
.y8b{bottom:541.590000px;}
.y53{bottom:550.590000px;}
.yfd{bottom:552.390000px;}
.y1d{bottom:553.830000px;}
.y8a{bottom:561.390000px;}
.y52{bottom:570.390000px;}
.yfc{bottom:572.190000px;}
.y1c{bottom:573.660000px;}
.y89{bottom:581.220000px;}
.y51{bottom:590.220000px;}
.yfb{bottom:591.660000px;}
.y1b{bottom:593.460000px;}
.yd2{bottom:598.500000px;}
.y88{bottom:601.020000px;}
.y50{bottom:610.020000px;}
.yfa{bottom:612.180000px;}
.y1a{bottom:613.260000px;}
.y87{bottom:621.180000px;}
.y6f{bottom:629.820000px;}
.y4f{bottom:630.180000px;}
.yf9{bottom:631.980000px;}
.y19{bottom:633.060000px;}
.y86{bottom:640.980000px;}
.y4e{bottom:649.980000px;}
.yf8{bottom:651.780000px;}
.y18{bottom:652.860000px;}
.yce{bottom:658.980000px;}
.y85{bottom:660.780000px;}
.y4d{bottom:669.780000px;}
.yf7{bottom:671.580000px;}
.y17{bottom:672.660000px;}
.y84{bottom:680.580000px;}
.y4c{bottom:689.580000px;}
.yf6{bottom:691.380000px;}
.y16{bottom:692.460000px;}
.y83{bottom:700.050000px;}
.y4b{bottom:709.410000px;}
.yf5{bottom:711.210000px;}
.y15{bottom:712.290000px;}
.ycb{bottom:719.130000px;}
.y82{bottom:719.850000px;}
.y4a{bottom:729.210000px;}
.yf4{bottom:731.010000px;}
.y14{bottom:731.730000px;}
.y81{bottom:739.650000px;}
.y49{bottom:748.650000px;}
.y6e{bottom:749.010000px;}
.yf3{bottom:750.810000px;}
.y13{bottom:751.890000px;}
.yca{bottom:765.930000px;}
.y48{bottom:768.810000px;}
.yf2{bottom:770.610000px;}
.y12{bottom:774.210000px;}
.yc9{bottom:786.090000px;}
.y47{bottom:788.610000px;}
.yf1{bottom:790.050000px;}
.y11{bottom:803.010000px;}
.yc8{bottom:806.250000px;}
.y46{bottom:808.410000px;}
.yf0{bottom:819.570000px;}
.y10{bottom:822.810000px;}
.yc7{bottom:826.095000px;}
.y6d{bottom:828.255000px;}
.y45{bottom:828.615000px;}
.yef{bottom:839.415000px;}
.yf{bottom:842.655000px;}
.yc6{bottom:845.895000px;}
.y44{bottom:848.415000px;}
.yee{bottom:859.215000px;}
.ye{bottom:862.455000px;}
.yc5{bottom:865.695000px;}
.y43{bottom:868.215000px;}
.yed{bottom:879.015000px;}
.yd{bottom:882.615000px;}
.yc4{bottom:885.495000px;}
.y6c{bottom:887.655000px;}
.y42{bottom:888.015000px;}
.yec{bottom:898.815000px;}
.yc{bottom:904.575000px;}
.yc3{bottom:905.295000px;}
.y41{bottom:907.815000px;}
.y7e{bottom:912.960000px;}
.yeb{bottom:918.615000px;}
.y76{bottom:923.040000px;}
.yc2{bottom:924.735000px;}
.y40{bottom:927.615000px;}
.yb{bottom:929.775000px;}
.yea{bottom:938.055000px;}
.ya{bottom:944.535000px;}
.yc1{bottom:944.895000px;}
.y3f{bottom:947.415000px;}
.y9{bottom:964.365000px;}
.yc0{bottom:964.725000px;}
.ya2{bottom:966.885000px;}
.y3e{bottom:967.245000px;}
.ybf{bottom:984.885000px;}
.y3d{bottom:987.045000px;}
.y7b{bottom:988.560000px;}
.y8{bottom:989.925000px;}
.y79{bottom:1001.880000px;}
.ybe{bottom:1004.685000px;}
.y3c{bottom:1006.845000px;}
.y7{bottom:1021.605000px;}
.ybd{bottom:1024.485000px;}
.y3b{bottom:1027.005000px;}
.ybc{bottom:1044.285000px;}
.y3a{bottom:1046.805000px;}
.y5{bottom:1051.485000px;}
.yb9{bottom:1059.405000px;}
.y39{bottom:1066.245000px;}
.y6b{bottom:1066.605000px;}
.y4{bottom:1082.490000px;}
.y38{bottom:1086.450000px;}
.y73{bottom:1091.880000px;}
.y80{bottom:1094.040000px;}
.yb6{bottom:1100.490000px;}
.y37{bottom:1106.250000px;}
.y3{bottom:1113.090000px;}
.yb5{bottom:1125.690000px;}
.y36{bottom:1126.050000px;}
.y2{bottom:1143.690000px;}
.ye9{bottom:1145.490000px;}
.y35{bottom:1145.850000px;}
.y34{bottom:1172.850000px;}
.y1{bottom:1177.530000px;}
.y33{bottom:1193.010000px;}
.h1f{height:2.826563px;}
.h18{height:19.800000px;}
.h15{height:23.400000px;}
.h14{height:33.840000px;}
.h13{height:34.200000px;}
.h12{height:34.236000px;}
.h7{height:38.158594px;}
.h16{height:39.636000px;}
.h17{height:40.320000px;}
.hc{height:42.229688px;}
.ha{height:50.520937px;}
.hd{height:54.720000px;}
.hb{height:59.328281px;}
.h8{height:59.357813px;}
.h1a{height:59.400000px;}
.h19{height:59.436000px;}
.h1b{height:59.760000px;}
.h1d{height:60.332344px;}
.h9{height:60.952500px;}
.h1c{height:62.163910px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h10{height:68.400000px;}
.h5{height:70.664062px;}
.h6{height:72.446250px;}
.he{height:76.317188px;}
.h11{height:76.320000px;}
.hf{height:76.458516px;}
.h1e{height:84.276000px;}
.h2{height:97.233750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:42.120000px;}
.wd{width:82.116000px;}
.w11{width:108.756000px;}
.w10{width:109.116000px;}
.w12{width:109.836000px;}
.w5{width:124.920000px;}
.w7{width:125.280000px;}
.w4{width:132.120000px;}
.w3{width:142.200000px;}
.w6{width:156.240000px;}
.wa{width:170.715000px;}
.wb{width:171.075000px;}
.w9{width:171.435000px;}
.w13{width:211.035000px;}
.w8{width:218.595000px;}
.wf{width:315.465000px;}
.we{width:342.150000px;}
.w14{width:580.935000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.280000px;}
.x16{left:9.360000px;}
.xf{left:13.890000px;}
.x11{left:17.535000px;}
.x9{left:19.512000px;}
.x8{left:20.592000px;}
.x13{left:21.855000px;}
.xc{left:24.270000px;}
.x7{left:32.835000px;}
.xe{left:40.530000px;}
.x14{left:49.965000px;}
.xa{left:53.355000px;}
.x1{left:54.395987px;}
.x15{left:79.596000px;}
.x23{left:81.035987px;}
.x2{left:86.435987px;}
.x4{left:96.515987px;}
.x1b{left:97.596000px;}
.x3{left:107.315987px;}
.x6{left:126.720000px;}
.x1c{left:180.435000px;}
.x24{left:190.869000px;}
.x25{left:265.065000px;}
.x1e{left:290.265000px;}
.xb{left:293.400000px;}
.x17{left:298.905000px;}
.x5{left:398.309987px;}
.x1f{left:399.780000px;}
.x19{left:471.060000px;}
.xd{left:488.880000px;}
.x20{left:509.610000px;}
.x1d{left:523.290000px;}
.x21{left:620.175000px;}
.x12{left:626.400000px;}
.x10{left:637.560000px;}
.x1a{left:642.495000px;}
.x22{left:729.645000px;}
@media print{
.v5{vertical-align:-70.400000pt;}
.v2{vertical-align:-26.986667pt;}
.v4{vertical-align:-19.200000pt;}
.v3{vertical-align:-5.226667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.986667pt;}
.lsd{letter-spacing:-2.560000pt;}
.ls12{letter-spacing:-1.712000pt;}
.ls6{letter-spacing:-1.600000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls14{letter-spacing:-1.264000pt;}
.ls4{letter-spacing:-1.008000pt;}
.ls8{letter-spacing:-0.864000pt;}
.ls9{letter-spacing:-0.832000pt;}
.ls1a{letter-spacing:-0.450667pt;}
.lsb{letter-spacing:-0.432533pt;}
.ls1f{letter-spacing:-0.414933pt;}
.ls5{letter-spacing:-0.406933pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls13{letter-spacing:-0.070400pt;}
.ls15{letter-spacing:-0.017920pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.015360pt;}
.ls16{letter-spacing:0.017920pt;}
.ls10{letter-spacing:0.023040pt;}
.ls1e{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.376320pt;}
.ls11{letter-spacing:0.414933pt;}
.ls17{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.848000pt;}
.lsc{letter-spacing:1.280000pt;}
.ls1{letter-spacing:1.920000pt;}
.lsa{letter-spacing:7.040000pt;}
.ls1d{letter-spacing:9.374720pt;}
.ls1b{letter-spacing:36.254720pt;}
.ls1c{letter-spacing:38.814720pt;}
.lse{letter-spacing:692.085333pt;}
.wsa{word-spacing:-17.303040pt;}
.ws8{word-spacing:-17.295360pt;}
.ws9{word-spacing:-17.241600pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws2{word-spacing:-14.313067pt;}
.ws11{word-spacing:-13.890667pt;}
.wsc{word-spacing:-13.854933pt;}
.ws12{word-spacing:-13.816320pt;}
.ws10{word-spacing:-13.457920pt;}
.ws6{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.422080pt;}
.ws13{word-spacing:-13.025067pt;}
.wsf{word-spacing:-12.608000pt;}
.ws4{word-spacing:-12.576000pt;}
.wsd{word-spacing:-12.176000pt;}
.wsb{word-spacing:-12.160000pt;}
.ws7{word-spacing:-10.880000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-2259.596800pt;}
._4{margin-left:-1287.947520pt;}
._6{margin-left:-1285.579200pt;}
._5{margin-left:-834.812160pt;}
._7{margin-left:-513.623040pt;}
._8{margin-left:-9.939413pt;}
._a{margin-left:-5.687040pt;}
._13{margin-left:-4.083200pt;}
._b{margin-left:-2.944000pt;}
._0{margin-left:-1.886720pt;}
._2{margin-left:-0.943360pt;}
._1{width:0.943360pt;}
._9{width:2.122240pt;}
._10{width:3.093760pt;}
._14{width:4.181760pt;}
._f{width:5.125547pt;}
._e{width:6.126080pt;}
._12{width:7.791360pt;}
._11{width:8.830720pt;}
._15{width:10.428587pt;}
._16{width:11.919360pt;}
._21{width:14.612480pt;}
._17{width:15.818240pt;}
._c{width:17.008640pt;}
._d{width:17.933653pt;}
._1a{width:19.301547pt;}
._18{width:20.314880pt;}
._19{width:21.278720pt;}
._22{width:22.178133pt;}
._1b{width:31.360000pt;}
._1e{width:40.266240pt;}
._1f{width:132.357120pt;}
._20{width:136.335360pt;}
._1c{width:165.120000pt;}
._1d{width:178.560000pt;}
.fs8{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs7{font-size:69.248000pt;}
.fs0{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.yb7{bottom:5.120000pt;}
.yd1{bottom:5.440000pt;}
.ycd{bottom:5.760000pt;}
.yb8{bottom:6.720000pt;}
.y78{bottom:6.946667pt;}
.y7a{bottom:6.973333pt;}
.y75{bottom:7.013333pt;}
.y119{bottom:9.920000pt;}
.yb0{bottom:11.520000pt;}
.yad{bottom:11.840000pt;}
.yaa{bottom:11.866667pt;}
.y7d{bottom:14.013333pt;}
.ybb{bottom:14.080000pt;}
.yaf{bottom:17.920000pt;}
.yb3{bottom:18.234667pt;}
.yac{bottom:18.240000pt;}
.ya9{bottom:18.266667pt;}
.y7f{bottom:21.026667pt;}
.ya7{bottom:21.440000pt;}
.yba{bottom:22.760000pt;}
.yd0{bottom:23.040000pt;}
.ycc{bottom:23.360000pt;}
.y118{bottom:27.514667pt;}
.ya5{bottom:30.400000pt;}
.y115{bottom:30.714667pt;}
.y77{bottom:32.893333pt;}
.y74{bottom:32.933333pt;}
.ya6{bottom:39.040000pt;}
.y7c{bottom:40.573333pt;}
.yd3{bottom:40.640000pt;}
.ycf{bottom:40.666667pt;}
.yd8{bottom:40.680000pt;}
.yd6{bottom:40.960000pt;}
.y117{bottom:45.114667pt;}
.y6{bottom:59.200000pt;}
.y116{bottom:62.714667pt;}
.y6a{bottom:83.872000pt;}
.yb4{bottom:87.712000pt;}
.ya1{bottom:93.472000pt;}
.ye8{bottom:93.792000pt;}
.y113{bottom:95.072000pt;}
.y69{bottom:101.472000pt;}
.y114{bottom:107.552000pt;}
.ya0{bottom:111.072000pt;}
.ye7{bottom:111.712000pt;}
.y112{bottom:112.672000pt;}
.y32{bottom:113.952000pt;}
.y68{bottom:119.072000pt;}
.y9f{bottom:128.672000pt;}
.ye6{bottom:129.312000pt;}
.y111{bottom:130.272000pt;}
.y31{bottom:131.552000pt;}
.y67{bottom:136.666667pt;}
.y9e{bottom:146.266667pt;}
.ye5{bottom:146.906667pt;}
.y110{bottom:147.866667pt;}
.y30{bottom:149.146667pt;}
.yb2{bottom:150.746667pt;}
.y66{bottom:154.266667pt;}
.y9d{bottom:163.866667pt;}
.ye4{bottom:164.506667pt;}
.y10f{bottom:165.466667pt;}
.y2f{bottom:166.746667pt;}
.y65{bottom:171.866667pt;}
.y9c{bottom:181.506667pt;}
.ye3{bottom:182.146667pt;}
.yb1{bottom:182.466667pt;}
.y10e{bottom:183.426667pt;}
.y2e{bottom:184.386667pt;}
.y64{bottom:189.506667pt;}
.y9b{bottom:199.426667pt;}
.ye2{bottom:199.746667pt;}
.y10d{bottom:201.026667pt;}
.y2d{bottom:201.986667pt;}
.y63{bottom:207.426667pt;}
.yae{bottom:214.146667pt;}
.y9a{bottom:216.706667pt;}
.ye1{bottom:217.346667pt;}
.y10c{bottom:218.626667pt;}
.y2c{bottom:219.586667pt;}
.y62{bottom:225.026667pt;}
.y99{bottom:234.626667pt;}
.ye0{bottom:234.946667pt;}
.y10b{bottom:236.226667pt;}
.y2b{bottom:236.866667pt;}
.y61{bottom:242.626667pt;}
.yab{bottom:245.506667pt;}
.y98{bottom:252.226667pt;}
.ydf{bottom:252.546667pt;}
.y10a{bottom:253.826667pt;}
.y2a{bottom:254.466667pt;}
.y60{bottom:260.226667pt;}
.y97{bottom:269.826667pt;}
.yde{bottom:270.146667pt;}
.y109{bottom:271.426667pt;}
.y29{bottom:272.066667pt;}
.ya8{bottom:277.186667pt;}
.y5f{bottom:277.826667pt;}
.y96{bottom:287.453333pt;}
.ydd{bottom:287.773333pt;}
.y108{bottom:289.053333pt;}
.y5e{bottom:295.453333pt;}
.y28{bottom:298.333333pt;}
.y95{bottom:305.053333pt;}
.ydc{bottom:305.373333pt;}
.y107{bottom:306.653333pt;}
.ya4{bottom:308.893333pt;}
.y5d{bottom:313.053333pt;}
.y27{bottom:315.933333pt;}
.y94{bottom:322.653333pt;}
.ydb{bottom:322.973333pt;}
.y106{bottom:324.253333pt;}
.y5c{bottom:330.653333pt;}
.y26{bottom:333.533333pt;}
.y93{bottom:340.253333pt;}
.yda{bottom:340.893333pt;}
.y105{bottom:341.533333pt;}
.y5b{bottom:348.253333pt;}
.y25{bottom:351.133333pt;}
.y92{bottom:357.853333pt;}
.yd9{bottom:358.493333pt;}
.y104{bottom:359.453333pt;}
.y5a{bottom:365.853333pt;}
.y24{bottom:368.733333pt;}
.yd7{bottom:371.293333pt;}
.y91{bottom:375.773333pt;}
.y103{bottom:377.373333pt;}
.y72{bottom:383.453333pt;}
.y59{bottom:383.773333pt;}
.y23{bottom:386.333333pt;}
.y90{bottom:393.053333pt;}
.y102{bottom:394.973333pt;}
.y71{bottom:401.093333pt;}
.y58{bottom:401.413333pt;}
.y22{bottom:403.973333pt;}
.y8f{bottom:411.013333pt;}
.y70{bottom:418.693333pt;}
.y57{bottom:419.013333pt;}
.y101{bottom:420.613333pt;}
.y21{bottom:421.573333pt;}
.yd5{bottom:424.773333pt;}
.y8e{bottom:428.613333pt;}
.y56{bottom:436.613333pt;}
.y100{bottom:438.213333pt;}
.y20{bottom:439.173333pt;}
.y8d{bottom:446.213333pt;}
.y55{bottom:454.213333pt;}
.yff{bottom:455.813333pt;}
.y1f{bottom:456.773333pt;}
.y8c{bottom:463.813333pt;}
.ya3{bottom:471.493333pt;}
.y54{bottom:471.813333pt;}
.yfe{bottom:473.413333pt;}
.y1e{bottom:474.693333pt;}
.yd4{bottom:478.533333pt;}
.y8b{bottom:481.413333pt;}
.y53{bottom:489.413333pt;}
.yfd{bottom:491.013333pt;}
.y1d{bottom:492.293333pt;}
.y8a{bottom:499.013333pt;}
.y52{bottom:507.013333pt;}
.yfc{bottom:508.613333pt;}
.y1c{bottom:509.920000pt;}
.y89{bottom:516.640000pt;}
.y51{bottom:524.640000pt;}
.yfb{bottom:525.920000pt;}
.y1b{bottom:527.520000pt;}
.yd2{bottom:532.000000pt;}
.y88{bottom:534.240000pt;}
.y50{bottom:542.240000pt;}
.yfa{bottom:544.160000pt;}
.y1a{bottom:545.120000pt;}
.y87{bottom:552.160000pt;}
.y6f{bottom:559.840000pt;}
.y4f{bottom:560.160000pt;}
.yf9{bottom:561.760000pt;}
.y19{bottom:562.720000pt;}
.y86{bottom:569.760000pt;}
.y4e{bottom:577.760000pt;}
.yf8{bottom:579.360000pt;}
.y18{bottom:580.320000pt;}
.yce{bottom:585.760000pt;}
.y85{bottom:587.360000pt;}
.y4d{bottom:595.360000pt;}
.yf7{bottom:596.960000pt;}
.y17{bottom:597.920000pt;}
.y84{bottom:604.960000pt;}
.y4c{bottom:612.960000pt;}
.yf6{bottom:614.560000pt;}
.y16{bottom:615.520000pt;}
.y83{bottom:622.266667pt;}
.y4b{bottom:630.586667pt;}
.yf5{bottom:632.186667pt;}
.y15{bottom:633.146667pt;}
.ycb{bottom:639.226667pt;}
.y82{bottom:639.866667pt;}
.y4a{bottom:648.186667pt;}
.yf4{bottom:649.786667pt;}
.y14{bottom:650.426667pt;}
.y81{bottom:657.466667pt;}
.y49{bottom:665.466667pt;}
.y6e{bottom:665.786667pt;}
.yf3{bottom:667.386667pt;}
.y13{bottom:668.346667pt;}
.yca{bottom:680.826667pt;}
.y48{bottom:683.386667pt;}
.yf2{bottom:684.986667pt;}
.y12{bottom:688.186667pt;}
.yc9{bottom:698.746667pt;}
.y47{bottom:700.986667pt;}
.yf1{bottom:702.266667pt;}
.y11{bottom:713.786667pt;}
.yc8{bottom:716.666667pt;}
.y46{bottom:718.586667pt;}
.yf0{bottom:728.506667pt;}
.y10{bottom:731.386667pt;}
.yc7{bottom:734.306667pt;}
.y6d{bottom:736.226667pt;}
.y45{bottom:736.546667pt;}
.yef{bottom:746.146667pt;}
.yf{bottom:749.026667pt;}
.yc6{bottom:751.906667pt;}
.y44{bottom:754.146667pt;}
.yee{bottom:763.746667pt;}
.ye{bottom:766.626667pt;}
.yc5{bottom:769.506667pt;}
.y43{bottom:771.746667pt;}
.yed{bottom:781.346667pt;}
.yd{bottom:784.546667pt;}
.yc4{bottom:787.106667pt;}
.y6c{bottom:789.026667pt;}
.y42{bottom:789.346667pt;}
.yec{bottom:798.946667pt;}
.yc{bottom:804.066667pt;}
.yc3{bottom:804.706667pt;}
.y41{bottom:806.946667pt;}
.y7e{bottom:811.520000pt;}
.yeb{bottom:816.546667pt;}
.y76{bottom:820.480000pt;}
.yc2{bottom:821.986667pt;}
.y40{bottom:824.546667pt;}
.yb{bottom:826.466667pt;}
.yea{bottom:833.826667pt;}
.ya{bottom:839.586667pt;}
.yc1{bottom:839.906667pt;}
.y3f{bottom:842.146667pt;}
.y9{bottom:857.213333pt;}
.yc0{bottom:857.533333pt;}
.ya2{bottom:859.453333pt;}
.y3e{bottom:859.773333pt;}
.ybf{bottom:875.453333pt;}
.y3d{bottom:877.373333pt;}
.y7b{bottom:878.720000pt;}
.y8{bottom:879.933333pt;}
.y79{bottom:890.560000pt;}
.ybe{bottom:893.053333pt;}
.y3c{bottom:894.973333pt;}
.y7{bottom:908.093333pt;}
.ybd{bottom:910.653333pt;}
.y3b{bottom:912.893333pt;}
.ybc{bottom:928.253333pt;}
.y3a{bottom:930.493333pt;}
.y5{bottom:934.653333pt;}
.yb9{bottom:941.693333pt;}
.y39{bottom:947.773333pt;}
.y6b{bottom:948.093333pt;}
.y4{bottom:962.213333pt;}
.y38{bottom:965.733333pt;}
.y73{bottom:970.560000pt;}
.y80{bottom:972.480000pt;}
.yb6{bottom:978.213333pt;}
.y37{bottom:983.333333pt;}
.y3{bottom:989.413333pt;}
.yb5{bottom:1000.613333pt;}
.y36{bottom:1000.933333pt;}
.y2{bottom:1016.613333pt;}
.ye9{bottom:1018.213333pt;}
.y35{bottom:1018.533333pt;}
.y34{bottom:1042.533333pt;}
.y1{bottom:1046.693333pt;}
.y33{bottom:1060.453333pt;}
.h1f{height:2.512500pt;}
.h18{height:17.600000pt;}
.h15{height:20.800000pt;}
.h14{height:30.080000pt;}
.h13{height:30.400000pt;}
.h12{height:30.432000pt;}
.h7{height:33.918750pt;}
.h16{height:35.232000pt;}
.h17{height:35.840000pt;}
.hc{height:37.537500pt;}
.ha{height:44.907500pt;}
.hd{height:48.640000pt;}
.hb{height:52.736250pt;}
.h8{height:52.762500pt;}
.h1a{height:52.800000pt;}
.h19{height:52.832000pt;}
.h1b{height:53.120000pt;}
.h1d{height:53.628750pt;}
.h9{height:54.180000pt;}
.h1c{height:55.256809pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h10{height:60.800000pt;}
.h5{height:62.812500pt;}
.h6{height:64.396667pt;}
.he{height:67.837500pt;}
.h11{height:67.840000pt;}
.hf{height:67.963125pt;}
.h1e{height:74.912000pt;}
.h2{height:86.430000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:37.440000pt;}
.wd{width:72.992000pt;}
.w11{width:96.672000pt;}
.w10{width:96.992000pt;}
.w12{width:97.632000pt;}
.w5{width:111.040000pt;}
.w7{width:111.360000pt;}
.w4{width:117.440000pt;}
.w3{width:126.400000pt;}
.w6{width:138.880000pt;}
.wa{width:151.746667pt;}
.wb{width:152.066667pt;}
.w9{width:152.386667pt;}
.w13{width:187.586667pt;}
.w8{width:194.306667pt;}
.wf{width:280.413333pt;}
.we{width:304.133333pt;}
.w14{width:516.386667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.360000pt;}
.x16{left:8.320000pt;}
.xf{left:12.346667pt;}
.x11{left:15.586667pt;}
.x9{left:17.344000pt;}
.x8{left:18.304000pt;}
.x13{left:19.426667pt;}
.xc{left:21.573333pt;}
.x7{left:29.186667pt;}
.xe{left:36.026667pt;}
.x14{left:44.413333pt;}
.xa{left:47.426667pt;}
.x1{left:48.351988pt;}
.x15{left:70.752000pt;}
.x23{left:72.031988pt;}
.x2{left:76.831988pt;}
.x4{left:85.791988pt;}
.x1b{left:86.752000pt;}
.x3{left:95.391988pt;}
.x6{left:112.640000pt;}
.x1c{left:160.386667pt;}
.x24{left:169.661333pt;}
.x25{left:235.613333pt;}
.x1e{left:258.013333pt;}
.xb{left:260.800000pt;}
.x17{left:265.693333pt;}
.x5{left:354.053322pt;}
.x1f{left:355.360000pt;}
.x19{left:418.720000pt;}
.xd{left:434.560000pt;}
.x20{left:452.986667pt;}
.x1d{left:465.146667pt;}
.x21{left:551.266667pt;}
.x12{left:556.800000pt;}
.x10{left:566.720000pt;}
.x1a{left:571.106667pt;}
.x22{left:648.573333pt;}
}




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