
    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_1f273a504d5e5766f36bc441.woff2')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_f50c477384f6036b828c277e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_235c6063375b6cde090737b4.woff2')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_7aa1b1034a7a7b9d14bae5a4.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_265cac9393c45497ec3d06f5.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6ede406c34173e59a8500113.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_eef73b6cf3bc4db4fb362dd2.woff2')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_4b563e6f63b5d6560350a1b7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_94badf6bae1c1c6d388fcfae.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_e95aa7898097bd6d249e51aa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854004;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_7706fe60f4b5d193ab85e125.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e328efb652b03ec827a8ed99.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_11d85e9e89033c753f874cb0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.764160;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:fff;src:url('chunks/assets/font_bb5c711fe6d3264bd0406d37.woff2')format("woff");}.fff{font-family:fff;line-height:1.106934;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:ff10;src:url('chunks/assets/font_e71511c9f3e35e73c6b01658.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.106934;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;}
.ls5{letter-spacing:-3.240000px;}
.lsd{letter-spacing:-2.520000px;}
.lsc{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.053280px;}
.lsb{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.lsf{letter-spacing:0.156000px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206400px;}
.ls11{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:10.313280px;}
.ls3{letter-spacing:13.788720px;}
.lse{letter-spacing:16.506720px;}
.ls6{letter-spacing:46.026720px;}
.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;}
.ws5{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.199800px;}
.wse{word-spacing:-15.146400px;}
.ws8{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.580000px;}
.wsd{word-spacing:-12.420000px;}
.wsc{word-spacing:-12.204000px;}
.ws4{word-spacing:-11.700000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
.wsb{word-spacing:139.614000px;}
._3e{margin-left:-8.688960px;}
._7{margin-left:-7.485120px;}
._5{margin-left:-6.094080px;}
._4{margin-left:-4.596480px;}
._18{margin-left:-3.561840px;}
._6{margin-left:-2.551680px;}
._0{margin-left:-1.224000px;}
._3{width:1.149120px;}
._1{width:2.184000px;}
._9{width:3.330480px;}
._8{width:5.028720px;}
._d{width:6.155280px;}
._c{width:7.512720px;}
._a{width:8.651520px;}
._b{width:10.007280px;}
._10{width:11.897280px;}
._1b{width:13.326480px;}
._17{width:15.974640px;}
._14{width:17.105040px;}
._13{width:18.691200px;}
._16{width:20.244960px;}
._2e{width:21.604320px;}
._15{width:22.934160px;}
._f{width:24.800400px;}
._e{width:26.055360px;}
._32{width:27.475920px;}
._26{width:28.638720px;}
._21{width:29.926080px;}
._22{width:31.015440px;}
._29{width:32.077440px;}
._2a{width:33.226560px;}
._33{width:34.302240px;}
._25{width:35.652960px;}
._24{width:37.396080px;}
._39{width:38.719440px;}
._1c{width:39.859920px;}
._1a{width:41.340240px;}
._19{width:42.429600px;}
._1d{width:44.447760px;}
._1e{width:45.532800px;}
._34{width:47.495520px;}
._23{width:49.168800px;}
._3b{width:50.258640px;}
._37{width:51.453360px;}
._30{width:52.781760px;}
._2f{width:53.949600px;}
._2c{width:56.307600px;}
._2b{width:57.654720px;}
._2d{width:58.683600px;}
._20{width:62.674560px;}
._28{width:70.026960px;}
._27{width:71.614800px;}
._3a{width:75.476880px;}
._1f{width:78.690240px;}
._38{width:82.528560px;}
._31{width:101.339280px;}
._3c{width:105.546720px;}
._36{width:124.380000px;}
._12{width:127.812960px;}
._3d{width:133.549920px;}
._35{width:137.940000px;}
._11{width:161.232480px;}
._2{width:303.508320px;}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:0.900000px;}
.y21{bottom:5.760000px;}
.y7e{bottom:5.940000px;}
.y11{bottom:7.560000px;}
.yce{bottom:8.640000px;}
.ycc{bottom:8.685000px;}
.yca{bottom:8.820000px;}
.y99{bottom:13.245000px;}
.y6{bottom:13.860000px;}
.y82{bottom:17.460000px;}
.y7c{bottom:17.640000px;}
.yb9{bottom:19.080000px;}
.ybb{bottom:20.025000px;}
.y20{bottom:25.560000px;}
.y7a{bottom:42.480000px;}
.y5{bottom:45.180000px;}
.y1f{bottom:45.360000px;}
.y78{bottom:50.220000px;}
.y9{bottom:58.680000px;}
.y9a{bottom:64.980000px;}
.y1e{bottom:65.160000px;}
.y4{bottom:76.320000px;}
.y1d{bottom:84.990000px;}
.y3e{bottom:91.080000px;}
.y97{bottom:92.880000px;}
.y76{bottom:94.500000px;}
.y38{bottom:95.040000px;}
.yf5{bottom:95.400000px;}
.yc8{bottom:97.380000px;}
.y1c{bottom:104.970000px;}
.y3{bottom:107.670000px;}
.y3d{bottom:110.880000px;}
.y96{bottom:112.680000px;}
.y75{bottom:114.480000px;}
.y37{bottom:114.840000px;}
.yf4{bottom:115.380000px;}
.yc7{bottom:117.360000px;}
.y1b{bottom:124.770000px;}
.y3c{bottom:130.680000px;}
.y95{bottom:132.480000px;}
.y9b{bottom:133.275000px;}
.y74{bottom:134.280000px;}
.y36{bottom:134.820000px;}
.yf3{bottom:135.180000px;}
.yc6{bottom:137.160000px;}
.y2{bottom:139.530000px;}
.y1a{bottom:144.570000px;}
.y3b{bottom:150.480000px;}
.y94{bottom:152.310000px;}
.y73{bottom:154.110000px;}
.y35{bottom:154.650000px;}
.yf2{bottom:155.010000px;}
.yc5{bottom:156.990000px;}
.y19{bottom:164.370000px;}
.y3a{bottom:170.310000px;}
.y93{bottom:172.110000px;}
.y72{bottom:173.910000px;}
.yf1{bottom:174.810000px;}
.yc4{bottom:176.790000px;}
.y34{bottom:178.950000px;}
.y18{bottom:184.170000px;}
.y92{bottom:188.850000px;}
.y98{bottom:189.000000px;}
.y39{bottom:190.290000px;}
.y71{bottom:193.710000px;}
.yf0{bottom:194.610000px;}
.yc3{bottom:196.590000px;}
.y9c{bottom:201.600000px;}
.y17{bottom:204.150000px;}
.y33{bottom:210.090000px;}
.y70{bottom:213.690000px;}
.yef{bottom:214.590000px;}
.yc2{bottom:216.570000px;}
.y16{bottom:223.950000px;}
.y32{bottom:229.890000px;}
.y6f{bottom:233.490000px;}
.yee{bottom:234.390000px;}
.yc1{bottom:236.370000px;}
.y15{bottom:243.750000px;}
.y31{bottom:249.690000px;}
.y6e{bottom:253.290000px;}
.yed{bottom:254.190000px;}
.yc0{bottom:256.170000px;}
.y14{bottom:263.550000px;}
.y30{bottom:269.490000px;}
.y9d{bottom:269.925000px;}
.y6d{bottom:273.090000px;}
.yec{bottom:273.990000px;}
.ybf{bottom:275.970000px;}
.y13{bottom:283.350000px;}
.y2f{bottom:289.470000px;}
.ybe{bottom:290.730000px;}
.y6c{bottom:292.890000px;}
.yeb{bottom:293.790000px;}
.y2e{bottom:309.270000px;}
.y6b{bottom:312.870000px;}
.yea{bottom:313.770000px;}
.ybd{bottom:324.750000px;}
.y9e{bottom:328.830000px;}
.y2d{bottom:329.070000px;}
.y6a{bottom:332.670000px;}
.ye9{bottom:333.570000px;}
.y2c{bottom:348.870000px;}
.y69{bottom:352.470000px;}
.ye8{bottom:353.370000px;}
.ybc{bottom:358.590000px;}
.y2b{bottom:368.670000px;}
.y68{bottom:372.270000px;}
.ye7{bottom:373.170000px;}
.y2a{bottom:388.650000px;}
.y67{bottom:392.070000px;}
.yba{bottom:392.430000px;}
.ye6{bottom:392.970000px;}
.y29{bottom:408.495000px;}
.y66{bottom:412.095000px;}
.ye5{bottom:412.995000px;}
.yb8{bottom:427.395000px;}
.y28{bottom:428.295000px;}
.y65{bottom:431.895000px;}
.ye4{bottom:432.795000px;}
.y27{bottom:448.095000px;}
.y64{bottom:451.695000px;}
.ye3{bottom:452.595000px;}
.yb7{bottom:466.995000px;}
.y26{bottom:467.895000px;}
.y63{bottom:471.495000px;}
.ye2{bottom:472.395000px;}
.yb6{bottom:486.795000px;}
.y25{bottom:487.875000px;}
.y62{bottom:491.295000px;}
.ye1{bottom:492.195000px;}
.yb5{bottom:506.775000px;}
.y24{bottom:507.675000px;}
.y61{bottom:511.275000px;}
.ye0{bottom:512.175000px;}
.yb4{bottom:526.575000px;}
.y23{bottom:527.475000px;}
.y60{bottom:531.075000px;}
.ydf{bottom:531.975000px;}
.yb3{bottom:546.375000px;}
.y22{bottom:549.795000px;}
.y5f{bottom:550.875000px;}
.yde{bottom:551.775000px;}
.y91{bottom:554.655000px;}
.yb2{bottom:566.175000px;}
.y12{bottom:567.795000px;}
.y5e{bottom:570.675000px;}
.ydd{bottom:571.575000px;}
.y90{bottom:574.455000px;}
.yb1{bottom:585.975000px;}
.y5d{bottom:590.475000px;}
.ydc{bottom:591.375000px;}
.y8f{bottom:594.255000px;}
.yb0{bottom:605.955000px;}
.y5c{bottom:610.455000px;}
.ydb{bottom:611.355000px;}
.y8e{bottom:614.235000px;}
.yaf{bottom:625.755000px;}
.y5b{bottom:630.255000px;}
.yda{bottom:631.155000px;}
.y8d{bottom:634.035000px;}
.yae{bottom:645.555000px;}
.y5a{bottom:650.085000px;}
.yd9{bottom:650.985000px;}
.y8c{bottom:653.865000px;}
.yad{bottom:665.385000px;}
.y59{bottom:669.885000px;}
.yd8{bottom:670.785000px;}
.y8b{bottom:673.665000px;}
.yac{bottom:685.185000px;}
.y58{bottom:689.685000px;}
.yd7{bottom:690.585000px;}
.y8a{bottom:693.465000px;}
.yab{bottom:705.165000px;}
.y57{bottom:709.665000px;}
.yd6{bottom:710.565000px;}
.y89{bottom:713.445000px;}
.yaa{bottom:724.965000px;}
.y56{bottom:729.465000px;}
.yd5{bottom:730.365000px;}
.y88{bottom:733.245000px;}
.ya9{bottom:744.765000px;}
.y55{bottom:749.265000px;}
.yd4{bottom:750.165000px;}
.y87{bottom:753.045000px;}
.ya8{bottom:764.565000px;}
.y54{bottom:769.065000px;}
.yd3{bottom:769.965000px;}
.y86{bottom:772.845000px;}
.ya7{bottom:784.365000px;}
.y53{bottom:788.865000px;}
.yd2{bottom:789.765000px;}
.y85{bottom:792.645000px;}
.ya6{bottom:804.345000px;}
.y80{bottom:807.585000px;}
.y52{bottom:808.845000px;}
.yd1{bottom:809.745000px;}
.ya5{bottom:824.145000px;}
.yd0{bottom:824.505000px;}
.y84{bottom:828.105000px;}
.y51{bottom:828.645000px;}
.ya4{bottom:843.945000px;}
.ycf{bottom:847.905000px;}
.y50{bottom:848.445000px;}
.y83{bottom:848.625000px;}
.ya3{bottom:858.705000px;}
.y10{bottom:866.085000px;}
.y4f{bottom:868.245000px;}
.y81{bottom:869.325000px;}
.ycd{bottom:871.485000px;}
.ya2{bottom:879.405000px;}
.y4e{bottom:888.045000px;}
.ycb{bottom:894.885000px;}
.yf{bottom:898.710000px;}
.ya1{bottom:899.970000px;}
.y79{bottom:901.770000px;}
.y4d{bottom:908.070000px;}
.yc9{bottom:918.330000px;}
.ya0{bottom:920.490000px;}
.y7f{bottom:922.290000px;}
.ye{bottom:923.730000px;}
.y4c{bottom:927.870000px;}
.y9f{bottom:941.190000px;}
.y7d{bottom:942.810000px;}
.yd{bottom:943.530000px;}
.y4b{bottom:947.670000px;}
.yc{bottom:958.830000px;}
.y7b{bottom:963.510000px;}
.y4a{bottom:967.470000px;}
.yb{bottom:980.610000px;}
.y49{bottom:987.270000px;}
.y77{bottom:995.910000px;}
.ya{bottom:1005.450000px;}
.y48{bottom:1007.250000px;}
.y47{bottom:1027.050000px;}
.y8{bottom:1032.630000px;}
.y46{bottom:1046.850000px;}
.y1{bottom:1050.450000px;}
.y45{bottom:1066.650000px;}
.y44{bottom:1086.450000px;}
.y43{bottom:1106.430000px;}
.y42{bottom:1126.230000px;}
.y41{bottom:1146.030000px;}
.y40{bottom:1165.860000px;}
.y3f{bottom:1192.680000px;}
.h19{height:19.800000px;}
.h1f{height:19.836000px;}
.h18{height:19.980000px;}
.h25{height:22.680000px;}
.h24{height:22.716000px;}
.h23{height:22.860000px;}
.hd{height:26.100000px;}
.h1b{height:31.536000px;}
.h17{height:31.680000px;}
.h20{height:33.120000px;}
.h21{height:34.056000px;}
.hb{height:34.855313px;}
.h10{height:42.164648px;}
.h9{height:46.736719px;}
.h7{height:47.933437px;}
.h11{height:48.496641px;}
.h4{height:48.774375px;}
.h13{height:50.510039px;}
.h14{height:51.706406px;}
.h3{height:53.015625px;}
.h1e{height:53.121094px;}
.ha{height:53.224453px;}
.h22{height:53.252930px;}
.hc{height:53.573906px;}
.h1d{height:53.709961px;}
.he{height:55.735313px;}
.h12{height:55.987031px;}
.h5{height:62.028281px;}
.h15{height:64.260000px;}
.h8{height:67.565039px;}
.h6{height:71.613281px;}
.h1a{height:93.276000px;}
.h16{height:93.420000px;}
.h2{height:158.430000px;}
.hf{height:297.390000px;}
.h1c{height:360.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:102.240000px;}
.w17{width:109.620000px;}
.w16{width:131.796000px;}
.w15{width:135.360000px;}
.wa{width:139.176000px;}
.wc{width:139.320000px;}
.wb{width:139.356000px;}
.w3{width:146.736000px;}
.w7{width:163.290000px;}
.w12{width:174.960000px;}
.w13{width:175.140000px;}
.w11{width:175.170000px;}
.w9{width:176.070000px;}
.w14{width:176.970000px;}
.we{width:214.950000px;}
.wf{width:215.130000px;}
.w10{width:258.510000px;}
.w6{width:616.830000px;}
.w2{width:637.890000px;}
.wd{width:657.000000px;}
.w5{width:780.120000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x16{left:9.864000px;}
.x15{left:42.330000px;}
.x1{left:54.180000px;}
.x5{left:56.520000px;}
.x14{left:69.510000px;}
.x23{left:80.999987px;}
.x1b{left:95.076000px;}
.xb{left:96.876000px;}
.x18{left:101.556000px;}
.x7{left:108.035987px;}
.x13{left:117.900000px;}
.x4{left:138.630000px;}
.xc{left:200.010000px;}
.x11{left:219.089987px;}
.x1c{left:270.975000px;}
.x1f{left:279.975000px;}
.x12{left:282.494987px;}
.x19{left:317.235000px;}
.xd{left:376.815000px;}
.x20{left:416.235000px;}
.x1d{left:446.865000px;}
.x8{left:473.504987px;}
.xa{left:500.504987px;}
.xe{left:516.885000px;}
.x9{left:527.504987px;}
.x1a{left:533.085000px;}
.x21{left:548.745000px;}
.x17{left:577.185000px;}
.x1e{left:622.725000px;}
.xf{left:656.970000px;}
.x6{left:673.350000px;}
.x22{left:681.270000px;}
.x3{left:692.070000px;}
.x10{left:775.049987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-2.880000pt;}
.lsd{letter-spacing:-2.240000pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.lsf{letter-spacing:0.138667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183467pt;}
.ls11{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:9.167360pt;}
.ls3{letter-spacing:12.256640pt;}
.lse{letter-spacing:14.672640pt;}
.ls6{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.960000pt;}
.wsd{word-spacing:-11.040000pt;}
.wsc{word-spacing:-10.848000pt;}
.ws4{word-spacing:-10.400000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
.wsb{word-spacing:124.101333pt;}
._3e{margin-left:-7.723520pt;}
._7{margin-left:-6.653440pt;}
._5{margin-left:-5.416960pt;}
._4{margin-left:-4.085760pt;}
._18{margin-left:-3.166080pt;}
._6{margin-left:-2.268160pt;}
._0{margin-left:-1.088000pt;}
._3{width:1.021440pt;}
._1{width:1.941333pt;}
._9{width:2.960427pt;}
._8{width:4.469973pt;}
._d{width:5.471360pt;}
._c{width:6.677973pt;}
._a{width:7.690240pt;}
._b{width:8.895360pt;}
._10{width:10.575360pt;}
._1b{width:11.845760pt;}
._17{width:14.199680pt;}
._14{width:15.204480pt;}
._13{width:16.614400pt;}
._16{width:17.995520pt;}
._2e{width:19.203840pt;}
._15{width:20.385920pt;}
._f{width:22.044800pt;}
._e{width:23.160320pt;}
._32{width:24.423040pt;}
._26{width:25.456640pt;}
._21{width:26.600960pt;}
._22{width:27.569280pt;}
._29{width:28.513280pt;}
._2a{width:29.534720pt;}
._33{width:30.490880pt;}
._25{width:31.691520pt;}
._24{width:33.240960pt;}
._39{width:34.417280pt;}
._1c{width:35.431040pt;}
._1a{width:36.746880pt;}
._19{width:37.715200pt;}
._1d{width:39.509120pt;}
._1e{width:40.473600pt;}
._34{width:42.218240pt;}
._23{width:43.705600pt;}
._3b{width:44.674347pt;}
._37{width:45.736320pt;}
._30{width:46.917120pt;}
._2f{width:47.955200pt;}
._2c{width:50.051200pt;}
._2b{width:51.248640pt;}
._2d{width:52.163200pt;}
._20{width:55.710720pt;}
._28{width:62.246187pt;}
._27{width:63.657600pt;}
._3a{width:67.090560pt;}
._1f{width:69.946880pt;}
._38{width:73.358720pt;}
._31{width:90.079360pt;}
._3c{width:93.819307pt;}
._36{width:110.560000pt;}
._12{width:113.611520pt;}
._3d{width:118.711040pt;}
._35{width:122.613333pt;}
._11{width:143.317760pt;}
._2{width:269.785173pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:0.800000pt;}
.y21{bottom:5.120000pt;}
.y7e{bottom:5.280000pt;}
.y11{bottom:6.720000pt;}
.yce{bottom:7.680000pt;}
.ycc{bottom:7.720000pt;}
.yca{bottom:7.840000pt;}
.y99{bottom:11.773333pt;}
.y6{bottom:12.320000pt;}
.y82{bottom:15.520000pt;}
.y7c{bottom:15.680000pt;}
.yb9{bottom:16.960000pt;}
.ybb{bottom:17.800000pt;}
.y20{bottom:22.720000pt;}
.y7a{bottom:37.760000pt;}
.y5{bottom:40.160000pt;}
.y1f{bottom:40.320000pt;}
.y78{bottom:44.640000pt;}
.y9{bottom:52.160000pt;}
.y9a{bottom:57.760000pt;}
.y1e{bottom:57.920000pt;}
.y4{bottom:67.840000pt;}
.y1d{bottom:75.546667pt;}
.y3e{bottom:80.960000pt;}
.y97{bottom:82.560000pt;}
.y76{bottom:84.000000pt;}
.y38{bottom:84.480000pt;}
.yf5{bottom:84.800000pt;}
.yc8{bottom:86.560000pt;}
.y1c{bottom:93.306667pt;}
.y3{bottom:95.706667pt;}
.y3d{bottom:98.560000pt;}
.y96{bottom:100.160000pt;}
.y75{bottom:101.760000pt;}
.y37{bottom:102.080000pt;}
.yf4{bottom:102.560000pt;}
.yc7{bottom:104.320000pt;}
.y1b{bottom:110.906667pt;}
.y3c{bottom:116.160000pt;}
.y95{bottom:117.760000pt;}
.y9b{bottom:118.466667pt;}
.y74{bottom:119.360000pt;}
.y36{bottom:119.840000pt;}
.yf3{bottom:120.160000pt;}
.yc6{bottom:121.920000pt;}
.y2{bottom:124.026667pt;}
.y1a{bottom:128.506667pt;}
.y3b{bottom:133.760000pt;}
.y94{bottom:135.386667pt;}
.y73{bottom:136.986667pt;}
.y35{bottom:137.466667pt;}
.yf2{bottom:137.786667pt;}
.yc5{bottom:139.546667pt;}
.y19{bottom:146.106667pt;}
.y3a{bottom:151.386667pt;}
.y93{bottom:152.986667pt;}
.y72{bottom:154.586667pt;}
.yf1{bottom:155.386667pt;}
.yc4{bottom:157.146667pt;}
.y34{bottom:159.066667pt;}
.y18{bottom:163.706667pt;}
.y92{bottom:167.866667pt;}
.y98{bottom:168.000000pt;}
.y39{bottom:169.146667pt;}
.y71{bottom:172.186667pt;}
.yf0{bottom:172.986667pt;}
.yc3{bottom:174.746667pt;}
.y9c{bottom:179.200000pt;}
.y17{bottom:181.466667pt;}
.y33{bottom:186.746667pt;}
.y70{bottom:189.946667pt;}
.yef{bottom:190.746667pt;}
.yc2{bottom:192.506667pt;}
.y16{bottom:199.066667pt;}
.y32{bottom:204.346667pt;}
.y6f{bottom:207.546667pt;}
.yee{bottom:208.346667pt;}
.yc1{bottom:210.106667pt;}
.y15{bottom:216.666667pt;}
.y31{bottom:221.946667pt;}
.y6e{bottom:225.146667pt;}
.yed{bottom:225.946667pt;}
.yc0{bottom:227.706667pt;}
.y14{bottom:234.266667pt;}
.y30{bottom:239.546667pt;}
.y9d{bottom:239.933333pt;}
.y6d{bottom:242.746667pt;}
.yec{bottom:243.546667pt;}
.ybf{bottom:245.306667pt;}
.y13{bottom:251.866667pt;}
.y2f{bottom:257.306667pt;}
.ybe{bottom:258.426667pt;}
.y6c{bottom:260.346667pt;}
.yeb{bottom:261.146667pt;}
.y2e{bottom:274.906667pt;}
.y6b{bottom:278.106667pt;}
.yea{bottom:278.906667pt;}
.ybd{bottom:288.666667pt;}
.y9e{bottom:292.293333pt;}
.y2d{bottom:292.506667pt;}
.y6a{bottom:295.706667pt;}
.ye9{bottom:296.506667pt;}
.y2c{bottom:310.106667pt;}
.y69{bottom:313.306667pt;}
.ye8{bottom:314.106667pt;}
.ybc{bottom:318.746667pt;}
.y2b{bottom:327.706667pt;}
.y68{bottom:330.906667pt;}
.ye7{bottom:331.706667pt;}
.y2a{bottom:345.466667pt;}
.y67{bottom:348.506667pt;}
.yba{bottom:348.826667pt;}
.ye6{bottom:349.306667pt;}
.y29{bottom:363.106667pt;}
.y66{bottom:366.306667pt;}
.ye5{bottom:367.106667pt;}
.yb8{bottom:379.906667pt;}
.y28{bottom:380.706667pt;}
.y65{bottom:383.906667pt;}
.ye4{bottom:384.706667pt;}
.y27{bottom:398.306667pt;}
.y64{bottom:401.506667pt;}
.ye3{bottom:402.306667pt;}
.yb7{bottom:415.106667pt;}
.y26{bottom:415.906667pt;}
.y63{bottom:419.106667pt;}
.ye2{bottom:419.906667pt;}
.yb6{bottom:432.706667pt;}
.y25{bottom:433.666667pt;}
.y62{bottom:436.706667pt;}
.ye1{bottom:437.506667pt;}
.yb5{bottom:450.466667pt;}
.y24{bottom:451.266667pt;}
.y61{bottom:454.466667pt;}
.ye0{bottom:455.266667pt;}
.yb4{bottom:468.066667pt;}
.y23{bottom:468.866667pt;}
.y60{bottom:472.066667pt;}
.ydf{bottom:472.866667pt;}
.yb3{bottom:485.666667pt;}
.y22{bottom:488.706667pt;}
.y5f{bottom:489.666667pt;}
.yde{bottom:490.466667pt;}
.y91{bottom:493.026667pt;}
.yb2{bottom:503.266667pt;}
.y12{bottom:504.706667pt;}
.y5e{bottom:507.266667pt;}
.ydd{bottom:508.066667pt;}
.y90{bottom:510.626667pt;}
.yb1{bottom:520.866667pt;}
.y5d{bottom:524.866667pt;}
.ydc{bottom:525.666667pt;}
.y8f{bottom:528.226667pt;}
.yb0{bottom:538.626667pt;}
.y5c{bottom:542.626667pt;}
.ydb{bottom:543.426667pt;}
.y8e{bottom:545.986667pt;}
.yaf{bottom:556.226667pt;}
.y5b{bottom:560.226667pt;}
.yda{bottom:561.026667pt;}
.y8d{bottom:563.586667pt;}
.yae{bottom:573.826667pt;}
.y5a{bottom:577.853333pt;}
.yd9{bottom:578.653333pt;}
.y8c{bottom:581.213333pt;}
.yad{bottom:591.453333pt;}
.y59{bottom:595.453333pt;}
.yd8{bottom:596.253333pt;}
.y8b{bottom:598.813333pt;}
.yac{bottom:609.053333pt;}
.y58{bottom:613.053333pt;}
.yd7{bottom:613.853333pt;}
.y8a{bottom:616.413333pt;}
.yab{bottom:626.813333pt;}
.y57{bottom:630.813333pt;}
.yd6{bottom:631.613333pt;}
.y89{bottom:634.173333pt;}
.yaa{bottom:644.413333pt;}
.y56{bottom:648.413333pt;}
.yd5{bottom:649.213333pt;}
.y88{bottom:651.773333pt;}
.ya9{bottom:662.013333pt;}
.y55{bottom:666.013333pt;}
.yd4{bottom:666.813333pt;}
.y87{bottom:669.373333pt;}
.ya8{bottom:679.613333pt;}
.y54{bottom:683.613333pt;}
.yd3{bottom:684.413333pt;}
.y86{bottom:686.973333pt;}
.ya7{bottom:697.213333pt;}
.y53{bottom:701.213333pt;}
.yd2{bottom:702.013333pt;}
.y85{bottom:704.573333pt;}
.ya6{bottom:714.973333pt;}
.y80{bottom:717.853333pt;}
.y52{bottom:718.973333pt;}
.yd1{bottom:719.773333pt;}
.ya5{bottom:732.573333pt;}
.yd0{bottom:732.893333pt;}
.y84{bottom:736.093333pt;}
.y51{bottom:736.573333pt;}
.ya4{bottom:750.173333pt;}
.ycf{bottom:753.693333pt;}
.y50{bottom:754.173333pt;}
.y83{bottom:754.333333pt;}
.ya3{bottom:763.293333pt;}
.y10{bottom:769.853333pt;}
.y4f{bottom:771.773333pt;}
.y81{bottom:772.733333pt;}
.ycd{bottom:774.653333pt;}
.ya2{bottom:781.693333pt;}
.y4e{bottom:789.373333pt;}
.ycb{bottom:795.453333pt;}
.yf{bottom:798.853333pt;}
.ya1{bottom:799.973333pt;}
.y79{bottom:801.573333pt;}
.y4d{bottom:807.173333pt;}
.yc9{bottom:816.293333pt;}
.ya0{bottom:818.213333pt;}
.y7f{bottom:819.813333pt;}
.ye{bottom:821.093333pt;}
.y4c{bottom:824.773333pt;}
.y9f{bottom:836.613333pt;}
.y7d{bottom:838.053333pt;}
.yd{bottom:838.693333pt;}
.y4b{bottom:842.373333pt;}
.yc{bottom:852.293333pt;}
.y7b{bottom:856.453333pt;}
.y4a{bottom:859.973333pt;}
.yb{bottom:871.653333pt;}
.y49{bottom:877.573333pt;}
.y77{bottom:885.253333pt;}
.ya{bottom:893.733333pt;}
.y48{bottom:895.333333pt;}
.y47{bottom:912.933333pt;}
.y8{bottom:917.893333pt;}
.y46{bottom:930.533333pt;}
.y1{bottom:933.733333pt;}
.y45{bottom:948.133333pt;}
.y44{bottom:965.733333pt;}
.y43{bottom:983.493333pt;}
.y42{bottom:1001.093333pt;}
.y41{bottom:1018.693333pt;}
.y40{bottom:1036.320000pt;}
.y3f{bottom:1060.160000pt;}
.h19{height:17.600000pt;}
.h1f{height:17.632000pt;}
.h18{height:17.760000pt;}
.h25{height:20.160000pt;}
.h24{height:20.192000pt;}
.h23{height:20.320000pt;}
.hd{height:23.200000pt;}
.h1b{height:28.032000pt;}
.h17{height:28.160000pt;}
.h20{height:29.440000pt;}
.h21{height:30.272000pt;}
.hb{height:30.982500pt;}
.h10{height:37.479688pt;}
.h9{height:41.543750pt;}
.h7{height:42.607500pt;}
.h11{height:43.108125pt;}
.h4{height:43.355000pt;}
.h13{height:44.897813pt;}
.h14{height:45.961250pt;}
.h3{height:47.125000pt;}
.h1e{height:47.218750pt;}
.ha{height:47.310625pt;}
.h22{height:47.335938pt;}
.hc{height:47.621250pt;}
.h1d{height:47.742188pt;}
.he{height:49.542500pt;}
.h12{height:49.766250pt;}
.h5{height:55.136250pt;}
.h15{height:57.120000pt;}
.h8{height:60.057813pt;}
.h6{height:63.656250pt;}
.h1a{height:82.912000pt;}
.h16{height:83.040000pt;}
.h2{height:140.826667pt;}
.hf{height:264.346667pt;}
.h1c{height:320.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:90.880000pt;}
.w17{width:97.440000pt;}
.w16{width:117.152000pt;}
.w15{width:120.320000pt;}
.wa{width:123.712000pt;}
.wc{width:123.840000pt;}
.wb{width:123.872000pt;}
.w3{width:130.432000pt;}
.w7{width:145.146667pt;}
.w12{width:155.520000pt;}
.w13{width:155.680000pt;}
.w11{width:155.706667pt;}
.w9{width:156.506667pt;}
.w14{width:157.306667pt;}
.we{width:191.066667pt;}
.wf{width:191.226667pt;}
.w10{width:229.786667pt;}
.w6{width:548.293333pt;}
.w2{width:567.013333pt;}
.wd{width:584.000000pt;}
.w5{width:693.440000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x16{left:8.768000pt;}
.x15{left:37.626667pt;}
.x1{left:48.160000pt;}
.x5{left:50.240000pt;}
.x14{left:61.786667pt;}
.x23{left:71.999988pt;}
.x1b{left:84.512000pt;}
.xb{left:86.112000pt;}
.x18{left:90.272000pt;}
.x7{left:96.031988pt;}
.x13{left:104.800000pt;}
.x4{left:123.226667pt;}
.xc{left:177.786667pt;}
.x11{left:194.746655pt;}
.x1c{left:240.866667pt;}
.x1f{left:248.866667pt;}
.x12{left:251.106655pt;}
.x19{left:281.986667pt;}
.xd{left:334.946667pt;}
.x20{left:369.986667pt;}
.x1d{left:397.213333pt;}
.x8{left:420.893322pt;}
.xa{left:444.893322pt;}
.xe{left:459.453333pt;}
.x9{left:468.893322pt;}
.x1a{left:473.853333pt;}
.x21{left:487.773333pt;}
.x17{left:513.053333pt;}
.x1e{left:553.533333pt;}
.xf{left:583.973333pt;}
.x6{left:598.533333pt;}
.x22{left:605.573333pt;}
.x3{left:615.173333pt;}
.x10{left:688.933322pt;}
}




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