
    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_c0dee6da532f2b36be00bf75.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_e3c15eeb5ecc5848c01c199a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.014160;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_74b4e20a62532c5c56ee6f82.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_2ba5e899010f5ac8b7364a6c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091797;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_ecff4f686674a37295bdc113.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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_5b267142515b10418773656b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ec41913ae5130c9cc48df550.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.018555;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_feb42f62ee123c61a5648f15.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.018555;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_e6b9eab48309d22ef82c4e72.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a7f7b0c7c2f20c241ac0fd5f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5b6910e95ae8a8908d32b94f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b4e1a4f851b684f5e28d9617.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.087891;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_ef3cdc5d20f54b1b74fe2c79.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.941406;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.720000px;}
.ls8{letter-spacing:10.584000px;}
.ls9{letter-spacing:20.664000px;}
.lsb{letter-spacing:33.984000px;}
.ls7{letter-spacing:580.476000px;}
.ls6{letter-spacing:590.556000px;}
.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:-21.060000px;}
.ws3{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.784000px;}
.ws1{word-spacing:-14.328000px;}
.ws5{word-spacing:-12.131280px;}
.ws4{word-spacing:0.000000px;}
._3b{margin-left:-10.296000px;}
._3c{margin-left:-8.592000px;}
._2{margin-left:-7.056000px;}
._20{margin-left:-5.736000px;}
._4{margin-left:-4.608000px;}
._3{margin-left:-3.600000px;}
._f{margin-left:-2.592000px;}
._1{margin-left:-1.512000px;}
._0{width:1.440000px;}
._15{width:3.240000px;}
._16{width:4.392000px;}
._23{width:5.544000px;}
._5{width:6.600000px;}
._1b{width:7.608000px;}
._c{width:8.640000px;}
._d{width:10.224000px;}
._1a{width:11.388000px;}
._e{width:12.816000px;}
._6{width:14.256000px;}
._9{width:15.624000px;}
._b{width:16.848000px;}
._22{width:18.256320px;}
._10{width:19.944000px;}
._8{width:21.168000px;}
._a{width:22.320000px;}
._17{width:24.024000px;}
._11{width:25.560000px;}
._12{width:27.288000px;}
._1d{width:29.016000px;}
._19{width:30.240000px;}
._18{width:31.752000px;}
._24{width:33.192000px;}
._25{width:34.488000px;}
._26{width:35.496000px;}
._27{width:36.792000px;}
._35{width:37.800000px;}
._1e{width:38.808000px;}
._1f{width:39.972000px;}
._31{width:41.040000px;}
._21{width:42.048000px;}
._1c{width:43.704000px;}
._2e{width:45.432000px;}
._2f{width:46.440000px;}
._30{width:47.880000px;}
._2d{width:49.032000px;}
._7{width:50.472000px;}
._32{width:51.840000px;}
._33{width:53.745120px;}
._34{width:54.924480px;}
._37{width:57.456000px;}
._38{width:58.608000px;}
._39{width:59.760000px;}
._29{width:60.912000px;}
._2b{width:63.624000px;}
._2c{width:64.944000px;}
._2a{width:66.312000px;}
._36{width:69.336000px;}
._13{width:76.464000px;}
._14{width:77.616000px;}
._3a{width:81.288000px;}
._28{width:185.109120px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y69{bottom:19.080000px;}
.y6c{bottom:19.260000px;}
.y68{bottom:40.140000px;}
.y73{bottom:40.170000px;}
.y6e{bottom:40.185000px;}
.y6a{bottom:40.320000px;}
.y74{bottom:40.350000px;}
.y6f{bottom:40.365000px;}
.y3{bottom:57.996000px;}
.y2{bottom:79.956000px;}
.y3b{bottom:106.416000px;}
.ye4{bottom:107.316000px;}
.y13e{bottom:109.296000px;}
.y57{bottom:111.456000px;}
.ya6{bottom:114.336000px;}
.y90{bottom:115.416000px;}
.yd7{bottom:118.476000px;}
.yfb{bottom:123.336000px;}
.yb1{bottom:126.396000px;}
.y11f{bottom:128.556000px;}
.y102{bottom:129.636000px;}
.y3a{bottom:130.356000px;}
.ye3{bottom:131.436000px;}
.y13d{bottom:131.616000px;}
.y7d{bottom:132.876000px;}
.y56{bottom:135.396000px;}
.ya5{bottom:138.456000px;}
.y8f{bottom:139.356000px;}
.yd6{bottom:142.416000px;}
.y65{bottom:143.676000px;}
.yfa{bottom:147.276000px;}
.y1e{bottom:147.636000px;}
.yb0{bottom:150.330000px;}
.y11e{bottom:150.870000px;}
.yaa{bottom:151.410000px;}
.y101{bottom:151.950000px;}
.y13c{bottom:153.930000px;}
.y39{bottom:154.290000px;}
.ye2{bottom:155.370000px;}
.y7c{bottom:156.810000px;}
.y55{bottom:159.330000px;}
.ycd{bottom:162.390000px;}
.y8e{bottom:163.290000px;}
.yd5{bottom:166.350000px;}
.yf9{bottom:171.390000px;}
.y1d{bottom:171.570000px;}
.y11d{bottom:173.190000px;}
.ya4{bottom:174.270000px;}
.ya9{bottom:175.350000px;}
.y13b{bottom:176.250000px;}
.y81{bottom:178.410000px;}
.y7b{bottom:180.750000px;}
.y54{bottom:183.270000px;}
.ycc{bottom:186.330000px;}
.y8d{bottom:187.230000px;}
.y38{bottom:190.290000px;}
.ye1{bottom:191.370000px;}
.yf8{bottom:195.330000px;}
.y1c{bottom:195.510000px;}
.y11c{bottom:195.690000px;}
.ya3{bottom:198.435000px;}
.y13a{bottom:198.615000px;}
.ya8{bottom:199.335000px;}
.y80{bottom:202.395000px;}
.y7a{bottom:204.915000px;}
.y53{bottom:207.255000px;}
.ycb{bottom:210.315000px;}
.ybc{bottom:211.395000px;}
.y37{bottom:214.275000px;}
.y64{bottom:214.455000px;}
.ye0{bottom:215.355000px;}
.y11b{bottom:218.055000px;}
.yf7{bottom:219.315000px;}
.y1b{bottom:219.675000px;}
.y139{bottom:220.935000px;}
.ya2{bottom:222.375000px;}
.y8c{bottom:223.275000px;}
.ye7{bottom:226.335000px;}
.y79{bottom:228.855000px;}
.y52{bottom:231.375000px;}
.yca{bottom:234.255000px;}
.ybb{bottom:235.335000px;}
.y36{bottom:238.395000px;}
.ydf{bottom:239.295000px;}
.y11a{bottom:240.375000px;}
.yf6{bottom:243.255000px;}
.y138{bottom:243.435000px;}
.y1a{bottom:243.615000px;}
.ya1{bottom:246.315000px;}
.y8b{bottom:247.215000px;}
.y100{bottom:247.395000px;}
.ye6{bottom:250.275000px;}
.y78{bottom:252.795000px;}
.y51{bottom:256.395000px;}
.yc9{bottom:258.375000px;}
.yba{bottom:259.275000px;}
.y35{bottom:262.335000px;}
.y119{bottom:262.695000px;}
.yde{bottom:263.235000px;}
.y137{bottom:265.755000px;}
.yf5{bottom:267.195000px;}
.y19{bottom:267.555000px;}
.yff{bottom:268.455000px;}
.ya0{bottom:270.255000px;}
.y8a{bottom:271.335000px;}
.ye5{bottom:274.215000px;}
.y77{bottom:276.735000px;}
.yc8{bottom:282.315000px;}
.yb9{bottom:283.215000px;}
.y118{bottom:285.015000px;}
.y34{bottom:286.275000px;}
.ydd{bottom:287.175000px;}
.y136{bottom:288.075000px;}
.yf4{bottom:291.315000px;}
.y18{bottom:291.495000px;}
.y9f{bottom:294.195000px;}
.y50{bottom:295.275000px;}
.yd4{bottom:298.335000px;}
.y76{bottom:301.935000px;}
.yc7{bottom:306.255000px;}
.yfe{bottom:307.155000px;}
.y117{bottom:307.335000px;}
.y33{bottom:310.215000px;}
.y135{bottom:310.395000px;}
.ydc{bottom:311.295000px;}
.yf3{bottom:315.255000px;}
.y17{bottom:315.435000px;}
.y9e{bottom:318.315000px;}
.y89{bottom:319.215000px;}
.yd3{bottom:322.275000px;}
.y116{bottom:329.655000px;}
.yaf{bottom:330.195000px;}
.y4f{bottom:331.275000px;}
.y134{bottom:332.715000px;}
.y32{bottom:334.155000px;}
.y63{bottom:334.335000px;}
.ydb{bottom:335.235000px;}
.y16{bottom:339.555000px;}
.y75{bottom:340.815000px;}
.y9d{bottom:342.255000px;}
.y88{bottom:343.155000px;}
.yd2{bottom:346.215000px;}
.yf2{bottom:351.255000px;}
.y115{bottom:351.975000px;}
.yae{bottom:354.315000px;}
.y133{bottom:355.035000px;}
.y4e{bottom:355.215000px;}
.y31{bottom:358.275000px;}
.yda{bottom:359.175000px;}
.y15{bottom:363.495000px;}
.y72{bottom:365.115000px;}
.y9c{bottom:366.195000px;}
.y87{bottom:367.095000px;}
.yfc{bottom:367.275000px;}
.yd1{bottom:370.155000px;}
.y114{bottom:374.295000px;}
.yf1{bottom:375.195000px;}
.y132{bottom:377.355000px;}
.yad{bottom:378.255000px;}
.y4d{bottom:379.155000px;}
.y30{bottom:382.215000px;}
.yd9{bottom:384.195000px;}
.y14{bottom:387.435000px;}
.y9b{bottom:390.135000px;}
.y86{bottom:391.215000px;}
.yd0{bottom:394.095000px;}
.y113{bottom:396.615000px;}
.yf0{bottom:399.165000px;}
.y131{bottom:399.705000px;}
.yac{bottom:402.225000px;}
.y4c{bottom:403.125000px;}
.y62{bottom:406.185000px;}
.y13{bottom:411.405000px;}
.yd8{bottom:412.305000px;}
.yc6{bottom:414.105000px;}
.y85{bottom:415.185000px;}
.y2f{bottom:418.245000px;}
.y112{bottom:418.965000px;}
.y130{bottom:422.025000px;}
.yef{bottom:423.105000px;}
.y9a{bottom:426.165000px;}
.y4b{bottom:427.065000px;}
.y61{bottom:430.125000px;}
.y71{bottom:434.805000px;}
.y12{bottom:435.345000px;}
.yc5{bottom:438.225000px;}
.yb8{bottom:439.125000px;}
.y111{bottom:441.465000px;}
.y2e{bottom:442.185000px;}
.y12f{bottom:444.345000px;}
.yee{bottom:447.045000px;}
.y99{bottom:450.105000px;}
.y4a{bottom:451.185000px;}
.y60{bottom:454.245000px;}
.y11{bottom:459.465000px;}
.yc4{bottom:462.165000px;}
.yb7{bottom:463.065000px;}
.y110{bottom:463.785000px;}
.y2d{bottom:466.125000px;}
.y12e{bottom:466.845000px;}
.yed{bottom:471.165000px;}
.y98{bottom:474.225000px;}
.y49{bottom:475.125000px;}
.y5f{bottom:478.185000px;}
.y10{bottom:483.405000px;}
.yc3{bottom:486.105000px;}
.yb6{bottom:487.005000px;}
.y12d{bottom:489.165000px;}
.y2c{bottom:490.065000px;}
.yec{bottom:495.105000px;}
.y97{bottom:498.165000px;}
.y48{bottom:499.065000px;}
.y7f{bottom:502.125000px;}
.y70{bottom:504.285000px;}
.yf{bottom:507.345000px;}
.y10f{bottom:508.425000px;}
.yc2{bottom:510.045000px;}
.yb5{bottom:511.125000px;}
.y12c{bottom:511.485000px;}
.y2b{bottom:514.005000px;}
.y5e{bottom:514.185000px;}
.yeb{bottom:519.045000px;}
.y96{bottom:522.105000px;}
.y47{bottom:523.005000px;}
.y7e{bottom:526.065000px;}
.y10e{bottom:530.745000px;}
.ye{bottom:531.285000px;}
.y12b{bottom:533.805000px;}
.yce{bottom:535.065000px;}
.yc1{bottom:535.245000px;}
.y2a{bottom:538.125000px;}
.yea{bottom:542.985000px;}
.y95{bottom:546.045000px;}
.y46{bottom:546.945000px;}
.yab{bottom:547.125000px;}
.ycf{bottom:550.005000px;}
.y10d{bottom:553.065000px;}
.yd{bottom:555.225000px;}
.y12a{bottom:556.125000px;}
.y29{bottom:562.065000px;}
.ye9{bottom:566.925000px;}
.y94{bottom:569.985000px;}
.y45{bottom:571.065000px;}
.y6d{bottom:573.945000px;}
.yc0{bottom:574.125000px;}
.y10c{bottom:575.385000px;}
.y129{bottom:578.445000px;}
.yc{bottom:579.345000px;}
.yfd{bottom:582.945000px;}
.y28{bottom:586.005000px;}
.ye8{bottom:592.125000px;}
.y93{bottom:594.105000px;}
.y44{bottom:595.005000px;}
.y10b{bottom:597.705000px;}
.ybf{bottom:598.065000px;}
.y128{bottom:600.810000px;}
.ya7{bottom:607.110000px;}
.y27{bottom:609.990000px;}
.yb{bottom:615.750000px;}
.y92{bottom:618.090000px;}
.y84{bottom:618.990000px;}
.y10a{bottom:620.070000px;}
.ybe{bottom:622.050000px;}
.y127{bottom:623.130000px;}
.y43{bottom:631.050000px;}
.y26{bottom:633.930000px;}
.y5d{bottom:634.110000px;}
.ya{bottom:639.690000px;}
.y109{bottom:642.390000px;}
.y83{bottom:642.930000px;}
.y91{bottom:643.110000px;}
.y6b{bottom:643.470000px;}
.y13f{bottom:643.830000px;}
.y126{bottom:645.450000px;}
.ybd{bottom:645.990000px;}
.y42{bottom:654.990000px;}
.y5c{bottom:658.050000px;}
.y9{bottom:663.810000px;}
.y108{bottom:664.890000px;}
.y82{bottom:666.870000px;}
.y125{bottom:667.770000px;}
.y25{bottom:669.930000px;}
.y41{bottom:678.930000px;}
.y5b{bottom:681.990000px;}
.y107{bottom:687.210000px;}
.y8{bottom:687.750000px;}
.y124{bottom:690.090000px;}
.yb4{bottom:690.990000px;}
.y24{bottom:693.870000px;}
.y40{bottom:702.870000px;}
.y5a{bottom:705.930000px;}
.y106{bottom:709.530000px;}
.y7{bottom:711.690000px;}
.y123{bottom:712.590000px;}
.y67{bottom:713.130000px;}
.yb3{bottom:714.930000px;}
.y23{bottom:717.990000px;}
.y3f{bottom:726.810000px;}
.y59{bottom:729.870000px;}
.y105{bottom:731.850000px;}
.y122{bottom:734.910000px;}
.yb2{bottom:738.870000px;}
.y22{bottom:741.930000px;}
.y6{bottom:744.450000px;}
.y3e{bottom:750.930000px;}
.y58{bottom:753.990000px;}
.y104{bottom:754.170000px;}
.y121{bottom:757.230000px;}
.y5{bottom:774.150000px;}
.y3d{bottom:774.870000px;}
.y103{bottom:776.490000px;}
.y21{bottom:777.930000px;}
.y120{bottom:779.550000px;}
.y4{bottom:797.010000px;}
.y66{bottom:798.630000px;}
.y3c{bottom:798.810000px;}
.y20{bottom:801.900000px;}
.y1{bottom:820.980000px;}
.y1f{bottom:823.320000px;}
.h5{height:50.800781px;}
.ha{height:51.648047px;}
.h9{height:51.881484px;}
.h2{height:52.769531px;}
.h6{height:53.015625px;}
.h8{height:54.360000px;}
.hb{height:54.396000px;}
.hc{height:59.436914px;}
.h4{height:62.226562px;}
.h3{height:62.507812px;}
.h7{height:64.546875px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w5{width:103.536000px;}
.w6{width:111.096000px;}
.w3{width:114.696000px;}
.w4{width:156.990000px;}
.w1{width:629.250000px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.xb{left:13.320000px;}
.x3{left:71.315991px;}
.xf{left:98.315991px;}
.x9{left:125.675991px;}
.x8{left:149.255991px;}
.xa{left:182.234991px;}
.xc{left:186.375000px;}
.x5{left:208.514991px;}
.x7{left:225.614991px;}
.x4{left:281.954991px;}
.x2{left:300.344991px;}
.x6{left:341.744991px;}
.xd{left:343.545000px;}
.x1{left:417.389991px;}
.xe{left:447.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls8{letter-spacing:9.408000pt;}
.ls9{letter-spacing:18.368000pt;}
.lsb{letter-spacing:30.208000pt;}
.ls7{letter-spacing:515.978667pt;}
.ls6{letter-spacing:524.938667pt;}
.ws6{word-spacing:-18.720000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws1{word-spacing:-12.736000pt;}
.ws5{word-spacing:-10.783360pt;}
.ws4{word-spacing:0.000000pt;}
._3b{margin-left:-9.152000pt;}
._3c{margin-left:-7.637333pt;}
._2{margin-left:-6.272000pt;}
._20{margin-left:-5.098667pt;}
._4{margin-left:-4.096000pt;}
._3{margin-left:-3.200000pt;}
._f{margin-left:-2.304000pt;}
._1{margin-left:-1.344000pt;}
._0{width:1.280000pt;}
._15{width:2.880000pt;}
._16{width:3.904000pt;}
._23{width:4.928000pt;}
._5{width:5.866667pt;}
._1b{width:6.762667pt;}
._c{width:7.680000pt;}
._d{width:9.088000pt;}
._1a{width:10.122667pt;}
._e{width:11.392000pt;}
._6{width:12.672000pt;}
._9{width:13.888000pt;}
._b{width:14.976000pt;}
._22{width:16.227840pt;}
._10{width:17.728000pt;}
._8{width:18.816000pt;}
._a{width:19.840000pt;}
._17{width:21.354667pt;}
._11{width:22.720000pt;}
._12{width:24.256000pt;}
._1d{width:25.792000pt;}
._19{width:26.880000pt;}
._18{width:28.224000pt;}
._24{width:29.504000pt;}
._25{width:30.656000pt;}
._26{width:31.552000pt;}
._27{width:32.704000pt;}
._35{width:33.600000pt;}
._1e{width:34.496000pt;}
._1f{width:35.530667pt;}
._31{width:36.480000pt;}
._21{width:37.376000pt;}
._1c{width:38.848000pt;}
._2e{width:40.384000pt;}
._2f{width:41.280000pt;}
._30{width:42.560000pt;}
._2d{width:43.584000pt;}
._7{width:44.864000pt;}
._32{width:46.080000pt;}
._33{width:47.773440pt;}
._34{width:48.821760pt;}
._37{width:51.072000pt;}
._38{width:52.096000pt;}
._39{width:53.120000pt;}
._29{width:54.144000pt;}
._2b{width:56.554667pt;}
._2c{width:57.728000pt;}
._2a{width:58.944000pt;}
._36{width:61.632000pt;}
._13{width:67.968000pt;}
._14{width:68.992000pt;}
._3a{width:72.256000pt;}
._28{width:164.541440pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:16.960000pt;}
.y6c{bottom:17.120000pt;}
.y68{bottom:35.680000pt;}
.y73{bottom:35.706667pt;}
.y6e{bottom:35.720000pt;}
.y6a{bottom:35.840000pt;}
.y74{bottom:35.866667pt;}
.y6f{bottom:35.880000pt;}
.y3{bottom:51.552000pt;}
.y2{bottom:71.072000pt;}
.y3b{bottom:94.592000pt;}
.ye4{bottom:95.392000pt;}
.y13e{bottom:97.152000pt;}
.y57{bottom:99.072000pt;}
.ya6{bottom:101.632000pt;}
.y90{bottom:102.592000pt;}
.yd7{bottom:105.312000pt;}
.yfb{bottom:109.632000pt;}
.yb1{bottom:112.352000pt;}
.y11f{bottom:114.272000pt;}
.y102{bottom:115.232000pt;}
.y3a{bottom:115.872000pt;}
.ye3{bottom:116.832000pt;}
.y13d{bottom:116.992000pt;}
.y7d{bottom:118.112000pt;}
.y56{bottom:120.352000pt;}
.ya5{bottom:123.072000pt;}
.y8f{bottom:123.872000pt;}
.yd6{bottom:126.592000pt;}
.y65{bottom:127.712000pt;}
.yfa{bottom:130.912000pt;}
.y1e{bottom:131.232000pt;}
.yb0{bottom:133.626667pt;}
.y11e{bottom:134.106667pt;}
.yaa{bottom:134.586667pt;}
.y101{bottom:135.066667pt;}
.y13c{bottom:136.826667pt;}
.y39{bottom:137.146667pt;}
.ye2{bottom:138.106667pt;}
.y7c{bottom:139.386667pt;}
.y55{bottom:141.626667pt;}
.ycd{bottom:144.346667pt;}
.y8e{bottom:145.146667pt;}
.yd5{bottom:147.866667pt;}
.yf9{bottom:152.346667pt;}
.y1d{bottom:152.506667pt;}
.y11d{bottom:153.946667pt;}
.ya4{bottom:154.906667pt;}
.ya9{bottom:155.866667pt;}
.y13b{bottom:156.666667pt;}
.y81{bottom:158.586667pt;}
.y7b{bottom:160.666667pt;}
.y54{bottom:162.906667pt;}
.ycc{bottom:165.626667pt;}
.y8d{bottom:166.426667pt;}
.y38{bottom:169.146667pt;}
.ye1{bottom:170.106667pt;}
.yf8{bottom:173.626667pt;}
.y1c{bottom:173.786667pt;}
.y11c{bottom:173.946667pt;}
.ya3{bottom:176.386667pt;}
.y13a{bottom:176.546667pt;}
.ya8{bottom:177.186667pt;}
.y80{bottom:179.906667pt;}
.y7a{bottom:182.146667pt;}
.y53{bottom:184.226667pt;}
.ycb{bottom:186.946667pt;}
.ybc{bottom:187.906667pt;}
.y37{bottom:190.466667pt;}
.y64{bottom:190.626667pt;}
.ye0{bottom:191.426667pt;}
.y11b{bottom:193.826667pt;}
.yf7{bottom:194.946667pt;}
.y1b{bottom:195.266667pt;}
.y139{bottom:196.386667pt;}
.ya2{bottom:197.666667pt;}
.y8c{bottom:198.466667pt;}
.ye7{bottom:201.186667pt;}
.y79{bottom:203.426667pt;}
.y52{bottom:205.666667pt;}
.yca{bottom:208.226667pt;}
.ybb{bottom:209.186667pt;}
.y36{bottom:211.906667pt;}
.ydf{bottom:212.706667pt;}
.y11a{bottom:213.666667pt;}
.yf6{bottom:216.226667pt;}
.y138{bottom:216.386667pt;}
.y1a{bottom:216.546667pt;}
.ya1{bottom:218.946667pt;}
.y8b{bottom:219.746667pt;}
.y100{bottom:219.906667pt;}
.ye6{bottom:222.466667pt;}
.y78{bottom:224.706667pt;}
.y51{bottom:227.906667pt;}
.yc9{bottom:229.666667pt;}
.yba{bottom:230.466667pt;}
.y35{bottom:233.186667pt;}
.y119{bottom:233.506667pt;}
.yde{bottom:233.986667pt;}
.y137{bottom:236.226667pt;}
.yf5{bottom:237.506667pt;}
.y19{bottom:237.826667pt;}
.yff{bottom:238.626667pt;}
.ya0{bottom:240.226667pt;}
.y8a{bottom:241.186667pt;}
.ye5{bottom:243.746667pt;}
.y77{bottom:245.986667pt;}
.yc8{bottom:250.946667pt;}
.yb9{bottom:251.746667pt;}
.y118{bottom:253.346667pt;}
.y34{bottom:254.466667pt;}
.ydd{bottom:255.266667pt;}
.y136{bottom:256.066667pt;}
.yf4{bottom:258.946667pt;}
.y18{bottom:259.106667pt;}
.y9f{bottom:261.506667pt;}
.y50{bottom:262.466667pt;}
.yd4{bottom:265.186667pt;}
.y76{bottom:268.386667pt;}
.yc7{bottom:272.226667pt;}
.yfe{bottom:273.026667pt;}
.y117{bottom:273.186667pt;}
.y33{bottom:275.746667pt;}
.y135{bottom:275.906667pt;}
.ydc{bottom:276.706667pt;}
.yf3{bottom:280.226667pt;}
.y17{bottom:280.386667pt;}
.y9e{bottom:282.946667pt;}
.y89{bottom:283.746667pt;}
.yd3{bottom:286.466667pt;}
.y116{bottom:293.026667pt;}
.yaf{bottom:293.506667pt;}
.y4f{bottom:294.466667pt;}
.y134{bottom:295.746667pt;}
.y32{bottom:297.026667pt;}
.y63{bottom:297.186667pt;}
.ydb{bottom:297.986667pt;}
.y16{bottom:301.826667pt;}
.y75{bottom:302.946667pt;}
.y9d{bottom:304.226667pt;}
.y88{bottom:305.026667pt;}
.yd2{bottom:307.746667pt;}
.yf2{bottom:312.226667pt;}
.y115{bottom:312.866667pt;}
.yae{bottom:314.946667pt;}
.y133{bottom:315.586667pt;}
.y4e{bottom:315.746667pt;}
.y31{bottom:318.466667pt;}
.yda{bottom:319.266667pt;}
.y15{bottom:323.106667pt;}
.y72{bottom:324.546667pt;}
.y9c{bottom:325.506667pt;}
.y87{bottom:326.306667pt;}
.yfc{bottom:326.466667pt;}
.yd1{bottom:329.026667pt;}
.y114{bottom:332.706667pt;}
.yf1{bottom:333.506667pt;}
.y132{bottom:335.426667pt;}
.yad{bottom:336.226667pt;}
.y4d{bottom:337.026667pt;}
.y30{bottom:339.746667pt;}
.yd9{bottom:341.506667pt;}
.y14{bottom:344.386667pt;}
.y9b{bottom:346.786667pt;}
.y86{bottom:347.746667pt;}
.yd0{bottom:350.306667pt;}
.y113{bottom:352.546667pt;}
.yf0{bottom:354.813333pt;}
.y131{bottom:355.293333pt;}
.yac{bottom:357.533333pt;}
.y4c{bottom:358.333333pt;}
.y62{bottom:361.053333pt;}
.y13{bottom:365.693333pt;}
.yd8{bottom:366.493333pt;}
.yc6{bottom:368.093333pt;}
.y85{bottom:369.053333pt;}
.y2f{bottom:371.773333pt;}
.y112{bottom:372.413333pt;}
.y130{bottom:375.133333pt;}
.yef{bottom:376.093333pt;}
.y9a{bottom:378.813333pt;}
.y4b{bottom:379.613333pt;}
.y61{bottom:382.333333pt;}
.y71{bottom:386.493333pt;}
.y12{bottom:386.973333pt;}
.yc5{bottom:389.533333pt;}
.yb8{bottom:390.333333pt;}
.y111{bottom:392.413333pt;}
.y2e{bottom:393.053333pt;}
.y12f{bottom:394.973333pt;}
.yee{bottom:397.373333pt;}
.y99{bottom:400.093333pt;}
.y4a{bottom:401.053333pt;}
.y60{bottom:403.773333pt;}
.y11{bottom:408.413333pt;}
.yc4{bottom:410.813333pt;}
.yb7{bottom:411.613333pt;}
.y110{bottom:412.253333pt;}
.y2d{bottom:414.333333pt;}
.y12e{bottom:414.973333pt;}
.yed{bottom:418.813333pt;}
.y98{bottom:421.533333pt;}
.y49{bottom:422.333333pt;}
.y5f{bottom:425.053333pt;}
.y10{bottom:429.693333pt;}
.yc3{bottom:432.093333pt;}
.yb6{bottom:432.893333pt;}
.y12d{bottom:434.813333pt;}
.y2c{bottom:435.613333pt;}
.yec{bottom:440.093333pt;}
.y97{bottom:442.813333pt;}
.y48{bottom:443.613333pt;}
.y7f{bottom:446.333333pt;}
.y70{bottom:448.253333pt;}
.yf{bottom:450.973333pt;}
.y10f{bottom:451.933333pt;}
.yc2{bottom:453.373333pt;}
.yb5{bottom:454.333333pt;}
.y12c{bottom:454.653333pt;}
.y2b{bottom:456.893333pt;}
.y5e{bottom:457.053333pt;}
.yeb{bottom:461.373333pt;}
.y96{bottom:464.093333pt;}
.y47{bottom:464.893333pt;}
.y7e{bottom:467.613333pt;}
.y10e{bottom:471.773333pt;}
.ye{bottom:472.253333pt;}
.y12b{bottom:474.493333pt;}
.yce{bottom:475.613333pt;}
.yc1{bottom:475.773333pt;}
.y2a{bottom:478.333333pt;}
.yea{bottom:482.653333pt;}
.y95{bottom:485.373333pt;}
.y46{bottom:486.173333pt;}
.yab{bottom:486.333333pt;}
.ycf{bottom:488.893333pt;}
.y10d{bottom:491.613333pt;}
.yd{bottom:493.533333pt;}
.y12a{bottom:494.333333pt;}
.y29{bottom:499.613333pt;}
.ye9{bottom:503.933333pt;}
.y94{bottom:506.653333pt;}
.y45{bottom:507.613333pt;}
.y6d{bottom:510.173333pt;}
.yc0{bottom:510.333333pt;}
.y10c{bottom:511.453333pt;}
.y129{bottom:514.173333pt;}
.yc{bottom:514.973333pt;}
.yfd{bottom:518.173333pt;}
.y28{bottom:520.893333pt;}
.ye8{bottom:526.333333pt;}
.y93{bottom:528.093333pt;}
.y44{bottom:528.893333pt;}
.y10b{bottom:531.293333pt;}
.ybf{bottom:531.613333pt;}
.y128{bottom:534.053333pt;}
.ya7{bottom:539.653333pt;}
.y27{bottom:542.213333pt;}
.yb{bottom:547.333333pt;}
.y92{bottom:549.413333pt;}
.y84{bottom:550.213333pt;}
.y10a{bottom:551.173333pt;}
.ybe{bottom:552.933333pt;}
.y127{bottom:553.893333pt;}
.y43{bottom:560.933333pt;}
.y26{bottom:563.493333pt;}
.y5d{bottom:563.653333pt;}
.ya{bottom:568.613333pt;}
.y109{bottom:571.013333pt;}
.y83{bottom:571.493333pt;}
.y91{bottom:571.653333pt;}
.y6b{bottom:571.973333pt;}
.y13f{bottom:572.293333pt;}
.y126{bottom:573.733333pt;}
.ybd{bottom:574.213333pt;}
.y42{bottom:582.213333pt;}
.y5c{bottom:584.933333pt;}
.y9{bottom:590.053333pt;}
.y108{bottom:591.013333pt;}
.y82{bottom:592.773333pt;}
.y125{bottom:593.573333pt;}
.y25{bottom:595.493333pt;}
.y41{bottom:603.493333pt;}
.y5b{bottom:606.213333pt;}
.y107{bottom:610.853333pt;}
.y8{bottom:611.333333pt;}
.y124{bottom:613.413333pt;}
.yb4{bottom:614.213333pt;}
.y24{bottom:616.773333pt;}
.y40{bottom:624.773333pt;}
.y5a{bottom:627.493333pt;}
.y106{bottom:630.693333pt;}
.y7{bottom:632.613333pt;}
.y123{bottom:633.413333pt;}
.y67{bottom:633.893333pt;}
.yb3{bottom:635.493333pt;}
.y23{bottom:638.213333pt;}
.y3f{bottom:646.053333pt;}
.y59{bottom:648.773333pt;}
.y105{bottom:650.533333pt;}
.y122{bottom:653.253333pt;}
.yb2{bottom:656.773333pt;}
.y22{bottom:659.493333pt;}
.y6{bottom:661.733333pt;}
.y3e{bottom:667.493333pt;}
.y58{bottom:670.213333pt;}
.y104{bottom:670.373333pt;}
.y121{bottom:673.093333pt;}
.y5{bottom:688.133333pt;}
.y3d{bottom:688.773333pt;}
.y103{bottom:690.213333pt;}
.y21{bottom:691.493333pt;}
.y120{bottom:692.933333pt;}
.y4{bottom:708.453333pt;}
.y66{bottom:709.893333pt;}
.y3c{bottom:710.053333pt;}
.y20{bottom:712.800000pt;}
.y1{bottom:729.760000pt;}
.y1f{bottom:731.840000pt;}
.h5{height:45.156250pt;}
.ha{height:45.909375pt;}
.h9{height:46.116875pt;}
.h2{height:46.906250pt;}
.h6{height:47.125000pt;}
.h8{height:48.320000pt;}
.hb{height:48.352000pt;}
.hc{height:52.832812pt;}
.h4{height:55.312500pt;}
.h3{height:55.562500pt;}
.h7{height:57.375000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w5{width:92.032000pt;}
.w6{width:98.752000pt;}
.w3{width:101.952000pt;}
.w4{width:139.546667pt;}
.w1{width:559.333333pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.xb{left:11.840000pt;}
.x3{left:63.391992pt;}
.xf{left:87.391992pt;}
.x9{left:111.711992pt;}
.x8{left:132.671992pt;}
.xa{left:161.986658pt;}
.xc{left:165.666667pt;}
.x5{left:185.346658pt;}
.x7{left:200.546658pt;}
.x4{left:250.626658pt;}
.x2{left:266.973325pt;}
.x6{left:303.773325pt;}
.xd{left:305.373333pt;}
.x1{left:371.013325pt;}
.xe{left:397.413333pt;}
}




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