
    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_ab3443f6ad50220aa0879a3b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9b954037e98579c9544d79b6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c5c04cbecbef0ac5aa17b981.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_89aaeb6acfed479c5849f526.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0f236b7768ccb847a1f07d00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_46bee9213fc9329d7ba9a06b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.751953;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ad9759e522f7184fbdee9d38.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752441;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_a9030c9ba2630eeaf78f9d05.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.751953;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_def580f119a7a3a16d7d68cf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946777;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_118357544e539dc1f71ffb5e.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.828000px;}
.lsd{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.305400px;}
.ls13{letter-spacing:-0.106800px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.ls4{letter-spacing:0.018000px;}
.ls14{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:10.980000px;}
.ls16{letter-spacing:16.506720px;}
.ls6{letter-spacing:19.601760px;}
.ls5{letter-spacing:37.566720px;}
.ls11{letter-spacing:38.106720px;}
.ls10{letter-spacing:41.706720px;}
.ls3{letter-spacing:42.048000px;}
.ls12{letter-spacing:44.586720px;}
.lsc{letter-spacing:46.026720px;}
.lsf{letter-spacing:64.026720px;}
.ls17{letter-spacing:64.170720px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws8{word-spacing:-54.000000px;}
.ws11{word-spacing:-48.240000px;}
.ws2{word-spacing:-16.254600px;}
.ws0{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.833200px;}
.wsb{word-spacing:-13.716000px;}
.wsd{word-spacing:-13.518000px;}
.wsa{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.140000px;}
.wsc{word-spacing:-12.672000px;}
.ws1{word-spacing:-12.060000px;}
.ws3{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.732960px;}
.ws4{word-spacing:-9.720000px;}
.wse{word-spacing:0.000000px;}
._4{margin-left:-1.464000px;}
._1{width:1.135440px;}
._6{width:2.478480px;}
._11{width:3.566640px;}
._19{width:4.960080px;}
._1b{width:6.948480px;}
._a{width:8.161200px;}
._c{width:9.442080px;}
._b{width:10.517760px;}
._e{width:12.011760px;}
._d{width:13.027680px;}
._8{width:16.075440px;}
._9{width:17.270640px;}
._7{width:18.286560px;}
._10{width:19.661040px;}
._17{width:20.682000px;}
._1c{width:22.589280px;}
._27{width:24.083280px;}
._21{width:25.218720px;}
._1a{width:26.413920px;}
._23{width:27.429120px;}
._33{width:28.536720px;}
._2c{width:29.580960px;}
._13{width:30.656640px;}
._12{width:31.792320px;}
._14{width:33.372000px;}
._20{width:34.841520px;}
._1f{width:36.333360px;}
._1d{width:38.306160px;}
._2f{width:39.680640px;}
._f{width:41.294160px;}
._24{width:42.693840px;}
._25{width:44.474880px;}
._31{width:46.433520px;}
._34{width:47.927520px;}
._35{width:49.003200px;}
._30{width:51.513120px;}
._2d{width:52.827840px;}
._36{width:54.740160px;}
._29{width:56.114400px;}
._28{width:57.668400px;}
._39{width:58.674960px;}
._37{width:60.118560px;}
._1e{width:64.839600px;}
._26{width:66.644400px;}
._22{width:69.261840px;}
._2e{width:71.592480px;}
._32{width:73.495200px;}
._2a{width:76.433040px;}
._3a{width:77.927040px;}
._3b{width:80.018640px;}
._2b{width:83.544240px;}
._38{width:102.158640px;}
._18{width:108.702000px;}
._16{width:122.148000px;}
._15{width:123.444000px;}
._3{width:131.442960px;}
._2{width:342.981120px;}
._5{width:563.115840px;}
._0{width:2857.020000px;}
.fc4{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(238,0,0);}
.fs4{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.520000px;}
.y47{bottom:2.556000px;}
.y3c{bottom:2.880000px;}
.y18{bottom:3.240000px;}
.y34{bottom:5.940000px;}
.y7{bottom:8.316000px;}
.y45{bottom:8.496000px;}
.yc{bottom:14.040000px;}
.yf2{bottom:16.200000px;}
.y8{bottom:16.236000px;}
.ye6{bottom:16.380000px;}
.y46{bottom:16.416000px;}
.y3b{bottom:18.360000px;}
.y32{bottom:19.440000px;}
.yef{bottom:20.520000px;}
.ye5{bottom:30.060000px;}
.y3a{bottom:34.020000px;}
.ya{bottom:35.460000px;}
.y31{bottom:35.820000px;}
.yee{bottom:37.800000px;}
.y48{bottom:41.400000px;}
.ye4{bottom:43.920000px;}
.y39{bottom:49.500000px;}
.y30{bottom:51.300000px;}
.yed{bottom:55.080000px;}
.ye3{bottom:57.780000px;}
.y6{bottom:58.140000px;}
.yf1{bottom:58.320000px;}
.y44{bottom:64.080000px;}
.y38{bottom:64.980000px;}
.y2f{bottom:66.780000px;}
.yec{bottom:72.360000px;}
.y37{bottom:80.460000px;}
.y2e{bottom:82.440000px;}
.yeb{bottom:89.685000px;}
.y36{bottom:96.120000px;}
.y2d{bottom:97.920000px;}
.y3d{bottom:106.245000px;}
.yea{bottom:106.785000px;}
.y80{bottom:112.536000px;}
.y2c{bottom:113.430000px;}
.ye0{bottom:114.876000px;}
.yaa{bottom:119.196000px;}
.y29{bottom:119.205000px;}
.ya3{bottom:121.176000px;}
.y43{bottom:123.516000px;}
.y2b{bottom:128.910000px;}
.y7d{bottom:129.816000px;}
.ydf{bottom:132.156000px;}
.y28{bottom:135.045000px;}
.ya9{bottom:135.576000px;}
.ya2{bottom:138.456000px;}
.y42{bottom:139.896000px;}
.yf3{bottom:144.036000px;}
.y7c{bottom:147.096000px;}
.yde{bottom:149.436000px;}
.ya8{bottom:151.950000px;}
.y27{bottom:152.325000px;}
.y41{bottom:153.750000px;}
.ya1{bottom:155.730000px;}
.yf0{bottom:158.070000px;}
.y7b{bottom:164.190000px;}
.ydd{bottom:166.710000px;}
.y40{bottom:168.330000px;}
.y26{bottom:169.605000px;}
.ya0{bottom:172.830000px;}
.y7a{bottom:181.470000px;}
.ydc{bottom:183.810000px;}
.ya7{bottom:184.710000px;}
.y3f{bottom:185.970000px;}
.y25{bottom:186.885000px;}
.y9f{bottom:190.110000px;}
.y79{bottom:198.750000px;}
.ydb{bottom:201.090000px;}
.ya6{bottom:201.270000px;}
.y24{bottom:203.985000px;}
.y3e{bottom:205.230000px;}
.y9e{bottom:207.390000px;}
.y78{bottom:216.030000px;}
.ya5{bottom:217.650000px;}
.yda{bottom:218.370000px;}
.y19{bottom:218.550000px;}
.y23{bottom:221.265000px;}
.y9d{bottom:224.670000px;}
.ye9{bottom:231.150000px;}
.y77{bottom:233.310000px;}
.ya4{bottom:234.030000px;}
.yd9{bottom:235.650000px;}
.y22{bottom:238.545000px;}
.y9c{bottom:241.950000px;}
.y76{bottom:250.590000px;}
.yd8{bottom:252.930000px;}
.y21{bottom:255.825000px;}
.y9b{bottom:259.230000px;}
.y75{bottom:267.690000px;}
.yd7{bottom:270.210000px;}
.y20{bottom:273.105000px;}
.y9a{bottom:276.330000px;}
.y74{bottom:284.970000px;}
.yd6{bottom:287.310000px;}
.y1f{bottom:290.385000px;}
.y99{bottom:293.610000px;}
.y73{bottom:302.250000px;}
.yd5{bottom:304.590000px;}
.y98{bottom:310.890000px;}
.y1e{bottom:312.705000px;}
.y72{bottom:319.575000px;}
.yd4{bottom:321.915000px;}
.y1d{bottom:324.765000px;}
.y97{bottom:328.215000px;}
.y71{bottom:336.855000px;}
.y35{bottom:338.115000px;}
.yd3{bottom:339.195000px;}
.y1c{bottom:342.045000px;}
.y96{bottom:345.495000px;}
.y70{bottom:354.135000px;}
.ye8{bottom:355.215000px;}
.yd2{bottom:356.475000px;}
.y1b{bottom:359.355000px;}
.y95{bottom:362.775000px;}
.y6f{bottom:371.235000px;}
.ye7{bottom:372.495000px;}
.yd1{bottom:373.755000px;}
.y1a{bottom:376.815000px;}
.y94{bottom:379.875000px;}
.ye2{bottom:387.255000px;}
.y6e{bottom:388.515000px;}
.yd0{bottom:390.855000px;}
.y93{bottom:397.155000px;}
.y6d{bottom:405.795000px;}
.ycf{bottom:408.135000px;}
.y92{bottom:414.435000px;}
.y6c{bottom:423.075000px;}
.yce{bottom:425.415000px;}
.y91{bottom:431.715000px;}
.y6b{bottom:440.355000px;}
.ycd{bottom:442.695000px;}
.y33{bottom:447.555000px;}
.y90{bottom:448.995000px;}
.ye1{bottom:456.915000px;}
.y6a{bottom:457.455000px;}
.ycc{bottom:459.975000px;}
.y8f{bottom:467.175000px;}
.y2a{bottom:468.255000px;}
.y69{bottom:474.735000px;}
.ycb{bottom:477.255000px;}
.y8e{bottom:485.535000px;}
.y68{bottom:492.015000px;}
.yca{bottom:494.355000px;}
.y8d{bottom:502.815000px;}
.y67{bottom:509.295000px;}
.yc9{bottom:511.635000px;}
.y8c{bottom:521.175000px;}
.y66{bottom:526.575000px;}
.yc8{bottom:528.915000px;}
.y8b{bottom:538.455000px;}
.y65{bottom:543.855000px;}
.yc7{bottom:546.195000px;}
.y8a{bottom:556.815000px;}
.y64{bottom:560.955000px;}
.yc6{bottom:563.475000px;}
.y89{bottom:573.945000px;}
.y63{bottom:578.265000px;}
.yc5{bottom:580.605000px;}
.y88{bottom:591.225000px;}
.y62{bottom:595.545000px;}
.yc4{bottom:597.885000px;}
.y87{bottom:608.505000px;}
.y17{bottom:610.665000px;}
.y61{bottom:612.825000px;}
.yc3{bottom:616.245000px;}
.y86{bottom:626.865000px;}
.y60{bottom:630.105000px;}
.yc2{bottom:633.525000px;}
.y85{bottom:644.145000px;}
.y16{bottom:645.225000px;}
.y5f{bottom:647.385000px;}
.yc1{bottom:651.885000px;}
.y84{bottom:662.325000px;}
.y5e{bottom:664.485000px;}
.y15{bottom:665.025000px;}
.yc0{bottom:669.165000px;}
.y7f{bottom:669.705000px;}
.y83{bottom:679.605000px;}
.y5d{bottom:681.765000px;}
.ybf{bottom:687.345000px;}
.y82{bottom:697.965000px;}
.y14{bottom:698.685000px;}
.y5c{bottom:699.045000px;}
.ybe{bottom:704.625000px;}
.y81{bottom:715.245000px;}
.y13{bottom:715.965000px;}
.y5b{bottom:716.325000px;}
.ybd{bottom:721.905000px;}
.y12{bottom:728.385000px;}
.y5a{bottom:733.605000px;}
.ybc{bottom:739.185000px;}
.y11{bottom:749.625000px;}
.y59{bottom:750.885000px;}
.ybb{bottom:757.545000px;}
.y58{bottom:767.985000px;}
.yba{bottom:775.725000px;}
.y10{bottom:780.585000px;}
.y57{bottom:785.265000px;}
.yb9{bottom:793.005000px;}
.y56{bottom:802.545000px;}
.yb8{bottom:810.285000px;}
.yf{bottom:811.725000px;}
.y7e{bottom:819.870000px;}
.y55{bottom:825.090000px;}
.yb7{bottom:827.610000px;}
.y54{bottom:837.150000px;}
.ye{bottom:842.730000px;}
.yb6{bottom:844.890000px;}
.y53{bottom:854.250000px;}
.yb5{bottom:862.170000px;}
.y52{bottom:871.530000px;}
.yd{bottom:871.710000px;}
.yb4{bottom:879.270000px;}
.yb{bottom:887.010000px;}
.y51{bottom:888.810000px;}
.yb3{bottom:896.370000px;}
.y50{bottom:906.090000px;}
.yb2{bottom:912.750000px;}
.y4f{bottom:923.370000px;}
.yb1{bottom:929.130000px;}
.y4e{bottom:940.650000px;}
.yb0{bottom:945.510000px;}
.y4d{bottom:957.750000px;}
.yaf{bottom:961.890000px;}
.y4c{bottom:975.030000px;}
.yae{bottom:978.270000px;}
.y4b{bottom:992.310000px;}
.yad{bottom:994.650000px;}
.y4a{bottom:1009.590000px;}
.yac{bottom:1011.210000px;}
.y49{bottom:1026.870000px;}
.yab{bottom:1027.590000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1061.250000px;}
.y3{bottom:1078.560000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h1f{height:13.860000px;}
.h10{height:17.100000px;}
.h18{height:19.980000px;}
.hd{height:27.147656px;}
.h4{height:27.576000px;}
.h6{height:33.683203px;}
.h20{height:34.036523px;}
.h14{height:37.705078px;}
.h1a{height:38.100586px;}
.h7{height:39.336328px;}
.h12{height:39.972656px;}
.h16{height:39.999023px;}
.h5{height:41.726953px;}
.hf{height:42.164648px;}
.h1e{height:43.506914px;}
.h1d{height:43.681992px;}
.h1c{height:44.236406px;}
.h17{height:44.265586px;}
.h9{height:46.251562px;}
.h13{height:48.027656px;}
.h2{height:48.496641px;}
.h3{height:50.800781px;}
.hc{height:53.224453px;}
.ha{height:53.755312px;}
.h1{height:58.429688px;}
.h21{height:68.940000px;}
.h23{height:72.360000px;}
.he{height:75.410156px;}
.hb{height:76.201172px;}
.h19{height:108.720000px;}
.h1b{height:118.836000px;}
.h22{height:120.816000px;}
.h15{height:141.516000px;}
.h8{height:153.900000px;}
.h11{height:391.215000px;}
.h0{height:1188.000000px;}
.w2{width:45.036000px;}
.w6{width:211.710000px;}
.w7{width:329.295000px;}
.w5{width:596.805000px;}
.w3{width:783.510000px;}
.w8{width:800.790000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:6.480000px;}
.x16{left:7.560000px;}
.x5{left:8.640000px;}
.x22{left:12.420000px;}
.x13{left:19.980000px;}
.x18{left:23.265000px;}
.x15{left:29.745000px;}
.x17{left:31.725000px;}
.x8{left:45.540000px;}
.x4{left:53.999986px;}
.x1d{left:59.579986px;}
.x3{left:60.659986px;}
.x19{left:65.519986px;}
.xb{left:76.319986px;}
.x1f{left:80.130000px;}
.x1e{left:85.140000px;}
.x1a{left:86.759986px;}
.x6{left:100.836000px;}
.x7{left:108.035986px;}
.x1{left:150.509986px;}
.xe{left:180.569986px;}
.xc{left:188.129986px;}
.x2{left:220.709986px;}
.x10{left:229.889986px;}
.xf{left:263.549986px;}
.x21{left:295.635000px;}
.xa{left:459.074986px;}
.xd{left:464.294986px;}
.x11{left:465.374986px;}
.x1c{left:478.334986px;}
.x1b{left:505.364986px;}
.x20{left:526.604986px;}
.x12{left:650.805000px;}
.x9{left:812.490000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.736000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.271467pt;}
.ls13{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.ls4{letter-spacing:0.016000pt;}
.ls14{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:9.760000pt;}
.ls16{letter-spacing:14.672640pt;}
.ls6{letter-spacing:17.423787pt;}
.ls5{letter-spacing:33.392640pt;}
.ls11{letter-spacing:33.872640pt;}
.ls10{letter-spacing:37.072640pt;}
.ls3{letter-spacing:37.376000pt;}
.ls12{letter-spacing:39.632640pt;}
.lsc{letter-spacing:40.912640pt;}
.lsf{letter-spacing:56.912640pt;}
.ls17{letter-spacing:57.040640pt;}
.ws6{word-spacing:-53.120000pt;}
.ws8{word-spacing:-48.000000pt;}
.ws11{word-spacing:-42.880000pt;}
.ws2{word-spacing:-14.448533pt;}
.ws0{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.185067pt;}
.wsb{word-spacing:-12.192000pt;}
.wsd{word-spacing:-12.016000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.680000pt;}
.wsc{word-spacing:-11.264000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.651520pt;}
.ws4{word-spacing:-8.640000pt;}
.wse{word-spacing:0.000000pt;}
._4{margin-left:-1.301333pt;}
._1{width:1.009280pt;}
._6{width:2.203093pt;}
._11{width:3.170347pt;}
._19{width:4.408960pt;}
._1b{width:6.176427pt;}
._a{width:7.254400pt;}
._c{width:8.392960pt;}
._b{width:9.349120pt;}
._e{width:10.677120pt;}
._d{width:11.580160pt;}
._8{width:14.289280pt;}
._9{width:15.351680pt;}
._7{width:16.254720pt;}
._10{width:17.476480pt;}
._17{width:18.384000pt;}
._1c{width:20.079360pt;}
._27{width:21.407360pt;}
._21{width:22.416640pt;}
._1a{width:23.479040pt;}
._23{width:24.381440pt;}
._33{width:25.365973pt;}
._2c{width:26.294187pt;}
._13{width:27.250347pt;}
._12{width:28.259840pt;}
._14{width:29.664000pt;}
._20{width:30.970240pt;}
._1f{width:32.296320pt;}
._1d{width:34.049920pt;}
._2f{width:35.271680pt;}
._f{width:36.705920pt;}
._24{width:37.950080pt;}
._25{width:39.533227pt;}
._31{width:41.274240pt;}
._34{width:42.602240pt;}
._35{width:43.558400pt;}
._30{width:45.789440pt;}
._2d{width:46.958080pt;}
._36{width:48.657920pt;}
._29{width:49.879467pt;}
._28{width:51.260800pt;}
._39{width:52.155520pt;}
._37{width:53.438720pt;}
._1e{width:57.635200pt;}
._26{width:59.239467pt;}
._22{width:61.566080pt;}
._2e{width:63.637760pt;}
._32{width:65.329067pt;}
._2a{width:67.940480pt;}
._3a{width:69.268480pt;}
._3b{width:71.127680pt;}
._2b{width:74.261547pt;}
._38{width:90.807680pt;}
._18{width:96.624000pt;}
._16{width:108.576000pt;}
._15{width:109.728000pt;}
._3{width:116.838187pt;}
._2{width:304.872107pt;}
._5{width:500.547413pt;}
._0{width:2539.573333pt;}
.fs4{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.240000pt;}
.y47{bottom:2.272000pt;}
.y3c{bottom:2.560000pt;}
.y18{bottom:2.880000pt;}
.y34{bottom:5.280000pt;}
.y7{bottom:7.392000pt;}
.y45{bottom:7.552000pt;}
.yc{bottom:12.480000pt;}
.yf2{bottom:14.400000pt;}
.y8{bottom:14.432000pt;}
.ye6{bottom:14.560000pt;}
.y46{bottom:14.592000pt;}
.y3b{bottom:16.320000pt;}
.y32{bottom:17.280000pt;}
.yef{bottom:18.240000pt;}
.ye5{bottom:26.720000pt;}
.y3a{bottom:30.240000pt;}
.ya{bottom:31.520000pt;}
.y31{bottom:31.840000pt;}
.yee{bottom:33.600000pt;}
.y48{bottom:36.800000pt;}
.ye4{bottom:39.040000pt;}
.y39{bottom:44.000000pt;}
.y30{bottom:45.600000pt;}
.yed{bottom:48.960000pt;}
.ye3{bottom:51.360000pt;}
.y6{bottom:51.680000pt;}
.yf1{bottom:51.840000pt;}
.y44{bottom:56.960000pt;}
.y38{bottom:57.760000pt;}
.y2f{bottom:59.360000pt;}
.yec{bottom:64.320000pt;}
.y37{bottom:71.520000pt;}
.y2e{bottom:73.280000pt;}
.yeb{bottom:79.720000pt;}
.y36{bottom:85.440000pt;}
.y2d{bottom:87.040000pt;}
.y3d{bottom:94.440000pt;}
.yea{bottom:94.920000pt;}
.y80{bottom:100.032000pt;}
.y2c{bottom:100.826667pt;}
.ye0{bottom:102.112000pt;}
.yaa{bottom:105.952000pt;}
.y29{bottom:105.960000pt;}
.ya3{bottom:107.712000pt;}
.y43{bottom:109.792000pt;}
.y2b{bottom:114.586667pt;}
.y7d{bottom:115.392000pt;}
.ydf{bottom:117.472000pt;}
.y28{bottom:120.040000pt;}
.ya9{bottom:120.512000pt;}
.ya2{bottom:123.072000pt;}
.y42{bottom:124.352000pt;}
.yf3{bottom:128.032000pt;}
.y7c{bottom:130.752000pt;}
.yde{bottom:132.832000pt;}
.ya8{bottom:135.066667pt;}
.y27{bottom:135.400000pt;}
.y41{bottom:136.666667pt;}
.ya1{bottom:138.426667pt;}
.yf0{bottom:140.506667pt;}
.y7b{bottom:145.946667pt;}
.ydd{bottom:148.186667pt;}
.y40{bottom:149.626667pt;}
.y26{bottom:150.760000pt;}
.ya0{bottom:153.626667pt;}
.y7a{bottom:161.306667pt;}
.ydc{bottom:163.386667pt;}
.ya7{bottom:164.186667pt;}
.y3f{bottom:165.306667pt;}
.y25{bottom:166.120000pt;}
.y9f{bottom:168.986667pt;}
.y79{bottom:176.666667pt;}
.ydb{bottom:178.746667pt;}
.ya6{bottom:178.906667pt;}
.y24{bottom:181.320000pt;}
.y3e{bottom:182.426667pt;}
.y9e{bottom:184.346667pt;}
.y78{bottom:192.026667pt;}
.ya5{bottom:193.466667pt;}
.yda{bottom:194.106667pt;}
.y19{bottom:194.266667pt;}
.y23{bottom:196.680000pt;}
.y9d{bottom:199.706667pt;}
.ye9{bottom:205.466667pt;}
.y77{bottom:207.386667pt;}
.ya4{bottom:208.026667pt;}
.yd9{bottom:209.466667pt;}
.y22{bottom:212.040000pt;}
.y9c{bottom:215.066667pt;}
.y76{bottom:222.746667pt;}
.yd8{bottom:224.826667pt;}
.y21{bottom:227.400000pt;}
.y9b{bottom:230.426667pt;}
.y75{bottom:237.946667pt;}
.yd7{bottom:240.186667pt;}
.y20{bottom:242.760000pt;}
.y9a{bottom:245.626667pt;}
.y74{bottom:253.306667pt;}
.yd6{bottom:255.386667pt;}
.y1f{bottom:258.120000pt;}
.y99{bottom:260.986667pt;}
.y73{bottom:268.666667pt;}
.yd5{bottom:270.746667pt;}
.y98{bottom:276.346667pt;}
.y1e{bottom:277.960000pt;}
.y72{bottom:284.066667pt;}
.yd4{bottom:286.146667pt;}
.y1d{bottom:288.680000pt;}
.y97{bottom:291.746667pt;}
.y71{bottom:299.426667pt;}
.y35{bottom:300.546667pt;}
.yd3{bottom:301.506667pt;}
.y1c{bottom:304.040000pt;}
.y96{bottom:307.106667pt;}
.y70{bottom:314.786667pt;}
.ye8{bottom:315.746667pt;}
.yd2{bottom:316.866667pt;}
.y1b{bottom:319.426667pt;}
.y95{bottom:322.466667pt;}
.y6f{bottom:329.986667pt;}
.ye7{bottom:331.106667pt;}
.yd1{bottom:332.226667pt;}
.y1a{bottom:334.946667pt;}
.y94{bottom:337.666667pt;}
.ye2{bottom:344.226667pt;}
.y6e{bottom:345.346667pt;}
.yd0{bottom:347.426667pt;}
.y93{bottom:353.026667pt;}
.y6d{bottom:360.706667pt;}
.ycf{bottom:362.786667pt;}
.y92{bottom:368.386667pt;}
.y6c{bottom:376.066667pt;}
.yce{bottom:378.146667pt;}
.y91{bottom:383.746667pt;}
.y6b{bottom:391.426667pt;}
.ycd{bottom:393.506667pt;}
.y33{bottom:397.826667pt;}
.y90{bottom:399.106667pt;}
.ye1{bottom:406.146667pt;}
.y6a{bottom:406.626667pt;}
.ycc{bottom:408.866667pt;}
.y8f{bottom:415.266667pt;}
.y2a{bottom:416.226667pt;}
.y69{bottom:421.986667pt;}
.ycb{bottom:424.226667pt;}
.y8e{bottom:431.586667pt;}
.y68{bottom:437.346667pt;}
.yca{bottom:439.426667pt;}
.y8d{bottom:446.946667pt;}
.y67{bottom:452.706667pt;}
.yc9{bottom:454.786667pt;}
.y8c{bottom:463.266667pt;}
.y66{bottom:468.066667pt;}
.yc8{bottom:470.146667pt;}
.y8b{bottom:478.626667pt;}
.y65{bottom:483.426667pt;}
.yc7{bottom:485.506667pt;}
.y8a{bottom:494.946667pt;}
.y64{bottom:498.626667pt;}
.yc6{bottom:500.866667pt;}
.y89{bottom:510.173333pt;}
.y63{bottom:514.013333pt;}
.yc5{bottom:516.093333pt;}
.y88{bottom:525.533333pt;}
.y62{bottom:529.373333pt;}
.yc4{bottom:531.453333pt;}
.y87{bottom:540.893333pt;}
.y17{bottom:542.813333pt;}
.y61{bottom:544.733333pt;}
.yc3{bottom:547.773333pt;}
.y86{bottom:557.213333pt;}
.y60{bottom:560.093333pt;}
.yc2{bottom:563.133333pt;}
.y85{bottom:572.573333pt;}
.y16{bottom:573.533333pt;}
.y5f{bottom:575.453333pt;}
.yc1{bottom:579.453333pt;}
.y84{bottom:588.733333pt;}
.y5e{bottom:590.653333pt;}
.y15{bottom:591.133333pt;}
.yc0{bottom:594.813333pt;}
.y7f{bottom:595.293333pt;}
.y83{bottom:604.093333pt;}
.y5d{bottom:606.013333pt;}
.ybf{bottom:610.973333pt;}
.y82{bottom:620.413333pt;}
.y14{bottom:621.053333pt;}
.y5c{bottom:621.373333pt;}
.ybe{bottom:626.333333pt;}
.y81{bottom:635.773333pt;}
.y13{bottom:636.413333pt;}
.y5b{bottom:636.733333pt;}
.ybd{bottom:641.693333pt;}
.y12{bottom:647.453333pt;}
.y5a{bottom:652.093333pt;}
.ybc{bottom:657.053333pt;}
.y11{bottom:666.333333pt;}
.y59{bottom:667.453333pt;}
.ybb{bottom:673.373333pt;}
.y58{bottom:682.653333pt;}
.yba{bottom:689.533333pt;}
.y10{bottom:693.853333pt;}
.y57{bottom:698.013333pt;}
.yb9{bottom:704.893333pt;}
.y56{bottom:713.373333pt;}
.yb8{bottom:720.253333pt;}
.yf{bottom:721.533333pt;}
.y7e{bottom:728.773333pt;}
.y55{bottom:733.413333pt;}
.yb7{bottom:735.653333pt;}
.y54{bottom:744.133333pt;}
.ye{bottom:749.093333pt;}
.yb6{bottom:751.013333pt;}
.y53{bottom:759.333333pt;}
.yb5{bottom:766.373333pt;}
.y52{bottom:774.693333pt;}
.yd{bottom:774.853333pt;}
.yb4{bottom:781.573333pt;}
.yb{bottom:788.453333pt;}
.y51{bottom:790.053333pt;}
.yb3{bottom:796.773333pt;}
.y50{bottom:805.413333pt;}
.yb2{bottom:811.333333pt;}
.y4f{bottom:820.773333pt;}
.yb1{bottom:825.893333pt;}
.y4e{bottom:836.133333pt;}
.yb0{bottom:840.453333pt;}
.y4d{bottom:851.333333pt;}
.yaf{bottom:855.013333pt;}
.y4c{bottom:866.693333pt;}
.yae{bottom:869.573333pt;}
.y4b{bottom:882.053333pt;}
.yad{bottom:884.133333pt;}
.y4a{bottom:897.413333pt;}
.yac{bottom:898.853333pt;}
.y49{bottom:912.773333pt;}
.yab{bottom:913.413333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:943.333333pt;}
.y3{bottom:958.720000pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h1f{height:12.320000pt;}
.h10{height:15.200000pt;}
.h18{height:17.760000pt;}
.hd{height:24.131250pt;}
.h4{height:24.512000pt;}
.h6{height:29.940625pt;}
.h20{height:30.254687pt;}
.h14{height:33.515625pt;}
.h1a{height:33.867188pt;}
.h7{height:34.965625pt;}
.h12{height:35.531250pt;}
.h16{height:35.554688pt;}
.h5{height:37.090625pt;}
.hf{height:37.479688pt;}
.h1e{height:38.672812pt;}
.h1d{height:38.828437pt;}
.h1c{height:39.321250pt;}
.h17{height:39.347188pt;}
.h9{height:41.112500pt;}
.h13{height:42.691250pt;}
.h2{height:43.108125pt;}
.h3{height:45.156250pt;}
.hc{height:47.310625pt;}
.ha{height:47.782500pt;}
.h1{height:51.937500pt;}
.h21{height:61.280000pt;}
.h23{height:64.320000pt;}
.he{height:67.031250pt;}
.hb{height:67.734375pt;}
.h19{height:96.640000pt;}
.h1b{height:105.632000pt;}
.h22{height:107.392000pt;}
.h15{height:125.792000pt;}
.h8{height:136.800000pt;}
.h11{height:347.746667pt;}
.h0{height:1056.000000pt;}
.w2{width:40.032000pt;}
.w6{width:188.186667pt;}
.w7{width:292.706667pt;}
.w5{width:530.493333pt;}
.w3{width:696.453333pt;}
.w8{width:711.813333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:5.760000pt;}
.x16{left:6.720000pt;}
.x5{left:7.680000pt;}
.x22{left:11.040000pt;}
.x13{left:17.760000pt;}
.x18{left:20.680000pt;}
.x15{left:26.440000pt;}
.x17{left:28.200000pt;}
.x8{left:40.480000pt;}
.x4{left:47.999988pt;}
.x1d{left:52.959988pt;}
.x3{left:53.919988pt;}
.x19{left:58.239988pt;}
.xb{left:67.839988pt;}
.x1f{left:71.226667pt;}
.x1e{left:75.680000pt;}
.x1a{left:77.119988pt;}
.x6{left:89.632000pt;}
.x7{left:96.031988pt;}
.x1{left:133.786655pt;}
.xe{left:160.506655pt;}
.xc{left:167.226655pt;}
.x2{left:196.186655pt;}
.x10{left:204.346655pt;}
.xf{left:234.266655pt;}
.x21{left:262.786667pt;}
.xa{left:408.066655pt;}
.xd{left:412.706655pt;}
.x11{left:413.666655pt;}
.x1c{left:425.186655pt;}
.x1b{left:449.213321pt;}
.x20{left:468.093321pt;}
.x12{left:578.493333pt;}
.x9{left:722.213333pt;}
}




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