
    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_de0ce4a979e9e0f1799d03b2.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_21d71f53b7911f456049c0b9.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d21ec23f6a8c427db04e023a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_874d3b765ce66c22b4345a8d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff6{font-family:ff6;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;}
.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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.720000px;}
.ls32{letter-spacing:-0.540000px;}
.ls2a{letter-spacing:-0.460200px;}
.ls20{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.216000px;}
.ls25{letter-spacing:0.259800px;}
.ls31{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.900000px;}
.ls19{letter-spacing:1.800000px;}
.ls1a{letter-spacing:4.500000px;}
.ls11{letter-spacing:6.480000px;}
.ls1f{letter-spacing:8.820000px;}
.ls2f{letter-spacing:9.000000px;}
.lsd{letter-spacing:10.080000px;}
.ls24{letter-spacing:10.260000px;}
.ls2{letter-spacing:10.944000px;}
.ls1c{letter-spacing:14.580000px;}
.ls28{letter-spacing:15.300000px;}
.ls26{letter-spacing:18.900000px;}
.ls12{letter-spacing:24.480000px;}
.ls29{letter-spacing:28.260000px;}
.ls2d{letter-spacing:28.980000px;}
.ls22{letter-spacing:39.060000px;}
.ls21{letter-spacing:39.960000px;}
.lsc{letter-spacing:54.144000px;}
.ls23{letter-spacing:54.900000px;}
.ls17{letter-spacing:59.220000px;}
.ls1d{letter-spacing:64.980000px;}
.ls30{letter-spacing:68.580000px;}
.ls2b{letter-spacing:74.520000px;}
.ls2e{letter-spacing:76.500000px;}
.ls16{letter-spacing:76.680000px;}
.ls27{letter-spacing:79.560000px;}
.ls10{letter-spacing:105.960000px;}
.ls1e{letter-spacing:112.500000px;}
.ls2c{letter-spacing:157.320000px;}
.ls1b{letter-spacing:226.260000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.280000px;}
.ws7{word-spacing:-17.064000px;}
.ws1{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.580000px;}
.ws2{word-spacing:-12.060000px;}
.ws6{word-spacing:0.000000px;}
._c{margin-left:-4.536000px;}
._d{margin-left:-3.228000px;}
._10{margin-left:-2.187600px;}
._3{margin-left:-1.185360px;}
._0{width:1.254960px;}
._4{width:2.310240px;}
._b{width:3.371520px;}
._8{width:5.184000px;}
._5{width:6.600000px;}
._6{width:8.129040px;}
._7{width:10.013760px;}
._11{width:11.077440px;}
._9{width:12.096000px;}
._a{width:13.536480px;}
._f{width:15.383520px;}
._17{width:16.482960px;}
._2e{width:17.895120px;}
._12{width:19.481040px;}
._14{width:20.814960px;}
._e{width:22.608000px;}
._1c{width:23.688000px;}
._13{width:25.416000px;}
._2a{width:26.745360px;}
._18{width:27.984000px;}
._19{width:29.544000px;}
._15{width:30.672000px;}
._16{width:31.896000px;}
._1a{width:33.624000px;}
._21{width:34.704000px;}
._27{width:38.304000px;}
._36{width:40.338000px;}
._20{width:42.024000px;}
._24{width:47.952000px;}
._25{width:49.248000px;}
._2f{width:53.007120px;}
._2b{width:54.360000px;}
._37{width:55.815840px;}
._3e{width:56.831760px;}
._2d{width:57.847680px;}
._2c{width:59.640480px;}
._32{width:65.018880px;}
._1b{width:66.312000px;}
._22{width:69.120000px;}
._23{width:70.469040px;}
._26{width:72.229920px;}
._3a{width:73.264320px;}
._28{width:74.880000px;}
._29{width:76.152000px;}
._1d{width:77.616000px;}
._1e{width:78.636000px;}
._38{width:80.086560px;}
._1f{width:93.168000px;}
._3d{width:108.644160px;}
._3c{width:109.659600px;}
._34{width:111.154800px;}
._35{width:112.273200px;}
._33{width:113.304960px;}
._39{width:114.867600px;}
._3b{width:157.049280px;}
._1{width:168.715200px;}
._31{width:225.235440px;}
._30{width:226.311120px;}
._2{width:899.760000px;}
.fc3{color:rgb(238,0,0);}
.fc2{color:rgb(5,99,193);}
.fc5{color:rgb(0,0,204);}
.fc1{color:rgb(4,98,194);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:23.760000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:3.960000px;}
.y113{bottom:12.420000px;}
.ya6{bottom:24.660000px;}
.yb2{bottom:24.705000px;}
.y5{bottom:28.260000px;}
.y112{bottom:29.700000px;}
.yad{bottom:31.500000px;}
.ya5{bottom:45.360000px;}
.yb1{bottom:45.405000px;}
.y111{bottom:46.980000px;}
.yac{bottom:52.200000px;}
.y4{bottom:54.000000px;}
.y110{bottom:64.080000px;}
.yb0{bottom:66.105000px;}
.y3{bottom:71.280000px;}
.ya4{bottom:72.360000px;}
.yab{bottom:72.900000px;}
.y10f{bottom:81.360000px;}
.yaf{bottom:82.845000px;}
.yaa{bottom:93.630000px;}
.y10e{bottom:98.685000px;}
.y2{bottom:100.980000px;}
.ya9{bottom:110.190000px;}
.y10d{bottom:115.965000px;}
.y101{bottom:123.120000px;}
.y7c{bottom:123.840000px;}
.yc5{bottom:126.720000px;}
.ya2{bottom:128.880000px;}
.y95{bottom:132.660000px;}
.y10c{bottom:133.245000px;}
.y4f{bottom:134.820000px;}
.y36{bottom:136.800000px;}
.y100{bottom:140.400000px;}
.yc4{bottom:143.820000px;}
.y7b{bottom:144.540000px;}
.ya1{bottom:149.580000px;}
.y10b{bottom:150.345000px;}
.y94{bottom:153.360000px;}
.y4e{bottom:155.520000px;}
.ya8{bottom:156.780000px;}
.y35{bottom:157.500000px;}
.yff{bottom:157.680000px;}
.yc3{bottom:161.100000px;}
.y7a{bottom:165.240000px;}
.y10a{bottom:167.625000px;}
.ya0{bottom:170.280000px;}
.y93{bottom:174.060000px;}
.yfe{bottom:174.960000px;}
.y4d{bottom:176.220000px;}
.y34{bottom:178.200000px;}
.yc2{bottom:178.380000px;}
.y109{bottom:184.905000px;}
.y79{bottom:185.940000px;}
.y9f{bottom:190.980000px;}
.yfd{bottom:192.240000px;}
.y92{bottom:194.760000px;}
.yc1{bottom:195.660000px;}
.y4c{bottom:196.920000px;}
.y33{bottom:198.900000px;}
.y108{bottom:202.185000px;}
.y78{bottom:206.640000px;}
.yfc{bottom:209.520000px;}
.y9e{bottom:211.680000px;}
.yc0{bottom:212.940000px;}
.y91{bottom:215.460000px;}
.y4b{bottom:217.620000px;}
.y107{bottom:219.465000px;}
.y32{bottom:219.600000px;}
.yfb{bottom:226.620000px;}
.y77{bottom:227.340000px;}
.ybf{bottom:230.220000px;}
.y9d{bottom:232.380000px;}
.y90{bottom:236.160000px;}
.y106{bottom:236.745000px;}
.y4a{bottom:238.320000px;}
.y31{bottom:240.300000px;}
.yfa{bottom:243.900000px;}
.ybe{bottom:247.320000px;}
.y76{bottom:248.040000px;}
.y9c{bottom:253.110000px;}
.y105{bottom:253.845000px;}
.y8f{bottom:256.890000px;}
.y49{bottom:259.050000px;}
.y30{bottom:261.030000px;}
.yf9{bottom:261.210000px;}
.ybd{bottom:264.630000px;}
.y75{bottom:268.770000px;}
.y104{bottom:271.125000px;}
.y9b{bottom:273.810000px;}
.y8e{bottom:277.590000px;}
.yf8{bottom:278.490000px;}
.y48{bottom:279.750000px;}
.y2f{bottom:281.730000px;}
.ybc{bottom:281.910000px;}
.y74{bottom:289.470000px;}
.y9a{bottom:294.510000px;}
.yf7{bottom:295.770000px;}
.y8d{bottom:298.290000px;}
.ybb{bottom:299.190000px;}
.y47{bottom:300.450000px;}
.y2e{bottom:302.430000px;}
.y73{bottom:310.170000px;}
.yf6{bottom:313.050000px;}
.y99{bottom:315.210000px;}
.yba{bottom:316.470000px;}
.y8c{bottom:318.990000px;}
.y46{bottom:321.150000px;}
.y2d{bottom:323.130000px;}
.yf5{bottom:330.150000px;}
.y72{bottom:330.870000px;}
.yb9{bottom:333.750000px;}
.y98{bottom:335.910000px;}
.y8b{bottom:339.690000px;}
.y45{bottom:341.850000px;}
.y2c{bottom:343.830000px;}
.yf4{bottom:347.430000px;}
.yb8{bottom:350.850000px;}
.y71{bottom:351.570000px;}
.y97{bottom:356.610000px;}
.y8a{bottom:360.390000px;}
.y44{bottom:362.550000px;}
.y2b{bottom:364.530000px;}
.yf3{bottom:364.710000px;}
.yb7{bottom:368.130000px;}
.y70{bottom:372.270000px;}
.y96{bottom:373.350000px;}
.y89{bottom:381.090000px;}
.yf2{bottom:381.990000px;}
.y43{bottom:383.250000px;}
.y2a{bottom:385.230000px;}
.yb6{bottom:385.410000px;}
.y6f{bottom:392.970000px;}
.yf1{bottom:399.270000px;}
.y88{bottom:401.790000px;}
.yb5{bottom:402.690000px;}
.y42{bottom:403.950000px;}
.y29{bottom:405.930000px;}
.y6e{bottom:413.670000px;}
.yf0{bottom:416.550000px;}
.yb4{bottom:419.970000px;}
.y87{bottom:422.490000px;}
.y41{bottom:424.650000px;}
.y28{bottom:426.630000px;}
.yef{bottom:433.650000px;}
.y6d{bottom:434.370000px;}
.yb3{bottom:437.250000px;}
.y86{bottom:443.190000px;}
.y40{bottom:445.350000px;}
.y27{bottom:447.330000px;}
.yee{bottom:450.930000px;}
.y6c{bottom:455.070000px;}
.yae{bottom:459.570000px;}
.y85{bottom:463.890000px;}
.y3f{bottom:466.050000px;}
.y26{bottom:468.030000px;}
.yed{bottom:468.210000px;}
.y6b{bottom:475.770000px;}
.y84{bottom:484.635000px;}
.yec{bottom:485.535000px;}
.y3e{bottom:486.795000px;}
.y25{bottom:488.775000px;}
.y6a{bottom:496.515000px;}
.yeb{bottom:502.815000px;}
.y83{bottom:505.335000px;}
.y3d{bottom:507.495000px;}
.y24{bottom:509.475000px;}
.y69{bottom:517.215000px;}
.yea{bottom:519.915000px;}
.y3c{bottom:524.235000px;}
.y82{bottom:526.035000px;}
.y23{bottom:530.175000px;}
.ye9{bottom:537.195000px;}
.y68{bottom:537.915000px;}
.y81{bottom:546.735000px;}
.y22{bottom:550.875000px;}
.ye8{bottom:554.475000px;}
.y67{bottom:558.615000px;}
.y80{bottom:567.435000px;}
.y21{bottom:571.575000px;}
.ye7{bottom:571.755000px;}
.y66{bottom:579.315000px;}
.y7f{bottom:588.135000px;}
.ye6{bottom:589.035000px;}
.y20{bottom:592.275000px;}
.y65{bottom:600.015000px;}
.ye5{bottom:606.315000px;}
.y7e{bottom:608.835000px;}
.y1f{bottom:612.795000px;}
.y64{bottom:620.715000px;}
.ye4{bottom:623.415000px;}
.y7d{bottom:629.535000px;}
.y1e{bottom:633.495000px;}
.ye3{bottom:640.695000px;}
.y63{bottom:641.415000px;}
.y1d{bottom:654.195000px;}
.ye2{bottom:657.975000px;}
.y62{bottom:662.115000px;}
.y1c{bottom:674.895000px;}
.ye1{bottom:675.255000px;}
.y61{bottom:682.815000px;}
.ye0{bottom:692.535000px;}
.y1b{bottom:697.755000px;}
.y60{bottom:703.545000px;}
.ydf{bottom:709.845000px;}
.y1a{bottom:711.465000px;}
.y5f{bottom:724.245000px;}
.yde{bottom:726.945000px;}
.y19{bottom:729.645000px;}
.ya3{bottom:738.285000px;}
.y18{bottom:739.185000px;}
.ydd{bottom:744.225000px;}
.y5e{bottom:744.945000px;}
.y17{bottom:759.885000px;}
.ydc{bottom:761.505000px;}
.y5d{bottom:765.645000px;}
.ydb{bottom:778.785000px;}
.y16{bottom:780.585000px;}
.y5c{bottom:786.345000px;}
.yda{bottom:796.065000px;}
.y15{bottom:801.285000px;}
.y5b{bottom:807.045000px;}
.y102{bottom:808.485000px;}
.yd9{bottom:813.165000px;}
.y14{bottom:821.985000px;}
.y5a{bottom:827.745000px;}
.yd8{bottom:830.445000px;}
.y103{bottom:836.025000px;}
.y13{bottom:842.685000px;}
.yd7{bottom:847.725000px;}
.y59{bottom:848.445000px;}
.y12{bottom:863.385000px;}
.yd6{bottom:865.005000px;}
.y58{bottom:869.145000px;}
.yd5{bottom:882.285000px;}
.y11{bottom:884.085000px;}
.y57{bottom:889.845000px;}
.yd4{bottom:899.565000px;}
.y10{bottom:904.785000px;}
.y56{bottom:910.545000px;}
.yd3{bottom:916.665000px;}
.yf{bottom:925.485000px;}
.y55{bottom:931.290000px;}
.yd2{bottom:933.990000px;}
.ye{bottom:946.230000px;}
.yd1{bottom:951.270000px;}
.y54{bottom:951.990000px;}
.yd{bottom:966.930000px;}
.yd0{bottom:968.550000px;}
.y53{bottom:972.690000px;}
.ycf{bottom:985.830000px;}
.yc{bottom:987.630000px;}
.y52{bottom:993.390000px;}
.yce{bottom:1003.110000px;}
.y51{bottom:1014.090000px;}
.ycd{bottom:1020.210000px;}
.yb{bottom:1022.370000px;}
.y50{bottom:1034.790000px;}
.ycc{bottom:1037.490000px;}
.ya{bottom:1049.910000px;}
.ycb{bottom:1054.770000px;}
.y3b{bottom:1055.490000px;}
.y9{bottom:1063.770000px;}
.yca{bottom:1072.050000px;}
.y3a{bottom:1076.190000px;}
.yc9{bottom:1089.330000px;}
.y8{bottom:1091.310000px;}
.y39{bottom:1096.890000px;}
.y7{bottom:1105.170000px;}
.yc8{bottom:1106.610000px;}
.y38{bottom:1117.590000px;}
.yc7{bottom:1123.710000px;}
.y6{bottom:1135.410000px;}
.y37{bottom:1138.290000px;}
.yc6{bottom:1140.990000px;}
.y1{bottom:1195.020000px;}
.h7{height:21.300469px;}
.h8{height:29.464453px;}
.h10{height:42.164648px;}
.h5{height:43.246406px;}
.ha{height:50.800781px;}
.h9{height:52.417969px;}
.h2{height:53.573906px;}
.h6{height:59.343750px;}
.h3{height:59.436914px;}
.h4{height:64.546875px;}
.hb{height:65.884219px;}
.hf{height:285.150000px;}
.hc{height:406.290000px;}
.he{height:485.745000px;}
.hd{height:489.135000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:276.510000px;}
.w4{width:280.470000px;}
.w5{width:330.195000px;}
.w6{width:685.365000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:10.800000px;}
.x14{left:106.776000px;}
.x1{left:108.035987px;}
.xb{left:113.075987px;}
.x10{left:129.275987px;}
.x13{left:140.075987px;}
.x4{left:155.549987px;}
.x9{left:162.029987px;}
.x7{left:191.549987px;}
.x5{left:216.209987px;}
.xd{left:238.005000px;}
.x8{left:266.069987px;}
.xf{left:269.505000px;}
.xa{left:297.974987px;}
.x12{left:312.735000px;}
.x3{left:322.094987px;}
.x6{left:347.834987px;}
.x11{left:446.475000px;}
.xc{left:501.945000px;}
.x2{left:785.129987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls32{letter-spacing:-0.480000pt;}
.ls2a{letter-spacing:-0.409067pt;}
.ls20{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.192000pt;}
.ls25{letter-spacing:0.230933pt;}
.ls31{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.800000pt;}
.ls19{letter-spacing:1.600000pt;}
.ls1a{letter-spacing:4.000000pt;}
.ls11{letter-spacing:5.760000pt;}
.ls1f{letter-spacing:7.840000pt;}
.ls2f{letter-spacing:8.000000pt;}
.lsd{letter-spacing:8.960000pt;}
.ls24{letter-spacing:9.120000pt;}
.ls2{letter-spacing:9.728000pt;}
.ls1c{letter-spacing:12.960000pt;}
.ls28{letter-spacing:13.600000pt;}
.ls26{letter-spacing:16.800000pt;}
.ls12{letter-spacing:21.760000pt;}
.ls29{letter-spacing:25.120000pt;}
.ls2d{letter-spacing:25.760000pt;}
.ls22{letter-spacing:34.720000pt;}
.ls21{letter-spacing:35.520000pt;}
.lsc{letter-spacing:48.128000pt;}
.ls23{letter-spacing:48.800000pt;}
.ls17{letter-spacing:52.640000pt;}
.ls1d{letter-spacing:57.760000pt;}
.ls30{letter-spacing:60.960000pt;}
.ls2b{letter-spacing:66.240000pt;}
.ls2e{letter-spacing:68.000000pt;}
.ls16{letter-spacing:68.160000pt;}
.ls27{letter-spacing:70.720000pt;}
.ls10{letter-spacing:94.186667pt;}
.ls1e{letter-spacing:100.000000pt;}
.ls2c{letter-spacing:139.840000pt;}
.ls1b{letter-spacing:201.120000pt;}
.wsa{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.360000pt;}
.ws7{word-spacing:-15.168000pt;}
.ws1{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.960000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws6{word-spacing:0.000000pt;}
._c{margin-left:-4.032000pt;}
._d{margin-left:-2.869333pt;}
._10{margin-left:-1.944533pt;}
._3{margin-left:-1.053653pt;}
._0{width:1.115520pt;}
._4{width:2.053547pt;}
._b{width:2.996907pt;}
._8{width:4.608000pt;}
._5{width:5.866667pt;}
._6{width:7.225813pt;}
._7{width:8.901120pt;}
._11{width:9.846613pt;}
._9{width:10.752000pt;}
._a{width:12.032427pt;}
._f{width:13.674240pt;}
._17{width:14.651520pt;}
._2e{width:15.906773pt;}
._12{width:17.316480pt;}
._14{width:18.502187pt;}
._e{width:20.096000pt;}
._1c{width:21.056000pt;}
._13{width:22.592000pt;}
._2a{width:23.773653pt;}
._18{width:24.874667pt;}
._19{width:26.261333pt;}
._15{width:27.264000pt;}
._16{width:28.352000pt;}
._1a{width:29.888000pt;}
._21{width:30.848000pt;}
._27{width:34.048000pt;}
._36{width:35.856000pt;}
._20{width:37.354667pt;}
._24{width:42.624000pt;}
._25{width:43.776000pt;}
._2f{width:47.117440pt;}
._2b{width:48.320000pt;}
._37{width:49.614080pt;}
._3e{width:50.517120pt;}
._2d{width:51.420160pt;}
._2c{width:53.013760pt;}
._32{width:57.794560pt;}
._1b{width:58.944000pt;}
._22{width:61.440000pt;}
._23{width:62.639147pt;}
._26{width:64.204373pt;}
._3a{width:65.123840pt;}
._28{width:66.560000pt;}
._29{width:67.690667pt;}
._1d{width:68.992000pt;}
._1e{width:69.898667pt;}
._38{width:71.188053pt;}
._1f{width:82.816000pt;}
._3d{width:96.572587pt;}
._3c{width:97.475200pt;}
._34{width:98.804267pt;}
._35{width:99.798400pt;}
._33{width:100.715520pt;}
._39{width:102.104533pt;}
._3b{width:139.599360pt;}
._1{width:149.969067pt;}
._31{width:200.209280pt;}
._30{width:201.165440pt;}
._2{width:799.786667pt;}
.fs4{font-size:21.120000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:3.520000pt;}
.y113{bottom:11.040000pt;}
.ya6{bottom:21.920000pt;}
.yb2{bottom:21.960000pt;}
.y5{bottom:25.120000pt;}
.y112{bottom:26.400000pt;}
.yad{bottom:28.000000pt;}
.ya5{bottom:40.320000pt;}
.yb1{bottom:40.360000pt;}
.y111{bottom:41.760000pt;}
.yac{bottom:46.400000pt;}
.y4{bottom:48.000000pt;}
.y110{bottom:56.960000pt;}
.yb0{bottom:58.760000pt;}
.y3{bottom:63.360000pt;}
.ya4{bottom:64.320000pt;}
.yab{bottom:64.800000pt;}
.y10f{bottom:72.320000pt;}
.yaf{bottom:73.640000pt;}
.yaa{bottom:83.226667pt;}
.y10e{bottom:87.720000pt;}
.y2{bottom:89.760000pt;}
.ya9{bottom:97.946667pt;}
.y10d{bottom:103.080000pt;}
.y101{bottom:109.440000pt;}
.y7c{bottom:110.080000pt;}
.yc5{bottom:112.640000pt;}
.ya2{bottom:114.560000pt;}
.y95{bottom:117.920000pt;}
.y10c{bottom:118.440000pt;}
.y4f{bottom:119.840000pt;}
.y36{bottom:121.600000pt;}
.y100{bottom:124.800000pt;}
.yc4{bottom:127.840000pt;}
.y7b{bottom:128.480000pt;}
.ya1{bottom:132.960000pt;}
.y10b{bottom:133.640000pt;}
.y94{bottom:136.320000pt;}
.y4e{bottom:138.240000pt;}
.ya8{bottom:139.360000pt;}
.y35{bottom:140.000000pt;}
.yff{bottom:140.160000pt;}
.yc3{bottom:143.200000pt;}
.y7a{bottom:146.880000pt;}
.y10a{bottom:149.000000pt;}
.ya0{bottom:151.360000pt;}
.y93{bottom:154.720000pt;}
.yfe{bottom:155.520000pt;}
.y4d{bottom:156.640000pt;}
.y34{bottom:158.400000pt;}
.yc2{bottom:158.560000pt;}
.y109{bottom:164.360000pt;}
.y79{bottom:165.280000pt;}
.y9f{bottom:169.760000pt;}
.yfd{bottom:170.880000pt;}
.y92{bottom:173.120000pt;}
.yc1{bottom:173.920000pt;}
.y4c{bottom:175.040000pt;}
.y33{bottom:176.800000pt;}
.y108{bottom:179.720000pt;}
.y78{bottom:183.680000pt;}
.yfc{bottom:186.240000pt;}
.y9e{bottom:188.160000pt;}
.yc0{bottom:189.280000pt;}
.y91{bottom:191.520000pt;}
.y4b{bottom:193.440000pt;}
.y107{bottom:195.080000pt;}
.y32{bottom:195.200000pt;}
.yfb{bottom:201.440000pt;}
.y77{bottom:202.080000pt;}
.ybf{bottom:204.640000pt;}
.y9d{bottom:206.560000pt;}
.y90{bottom:209.920000pt;}
.y106{bottom:210.440000pt;}
.y4a{bottom:211.840000pt;}
.y31{bottom:213.600000pt;}
.yfa{bottom:216.800000pt;}
.ybe{bottom:219.840000pt;}
.y76{bottom:220.480000pt;}
.y9c{bottom:224.986667pt;}
.y105{bottom:225.640000pt;}
.y8f{bottom:228.346667pt;}
.y49{bottom:230.266667pt;}
.y30{bottom:232.026667pt;}
.yf9{bottom:232.186667pt;}
.ybd{bottom:235.226667pt;}
.y75{bottom:238.906667pt;}
.y104{bottom:241.000000pt;}
.y9b{bottom:243.386667pt;}
.y8e{bottom:246.746667pt;}
.yf8{bottom:247.546667pt;}
.y48{bottom:248.666667pt;}
.y2f{bottom:250.426667pt;}
.ybc{bottom:250.586667pt;}
.y74{bottom:257.306667pt;}
.y9a{bottom:261.786667pt;}
.yf7{bottom:262.906667pt;}
.y8d{bottom:265.146667pt;}
.ybb{bottom:265.946667pt;}
.y47{bottom:267.066667pt;}
.y2e{bottom:268.826667pt;}
.y73{bottom:275.706667pt;}
.yf6{bottom:278.266667pt;}
.y99{bottom:280.186667pt;}
.yba{bottom:281.306667pt;}
.y8c{bottom:283.546667pt;}
.y46{bottom:285.466667pt;}
.y2d{bottom:287.226667pt;}
.yf5{bottom:293.466667pt;}
.y72{bottom:294.106667pt;}
.yb9{bottom:296.666667pt;}
.y98{bottom:298.586667pt;}
.y8b{bottom:301.946667pt;}
.y45{bottom:303.866667pt;}
.y2c{bottom:305.626667pt;}
.yf4{bottom:308.826667pt;}
.yb8{bottom:311.866667pt;}
.y71{bottom:312.506667pt;}
.y97{bottom:316.986667pt;}
.y8a{bottom:320.346667pt;}
.y44{bottom:322.266667pt;}
.y2b{bottom:324.026667pt;}
.yf3{bottom:324.186667pt;}
.yb7{bottom:327.226667pt;}
.y70{bottom:330.906667pt;}
.y96{bottom:331.866667pt;}
.y89{bottom:338.746667pt;}
.yf2{bottom:339.546667pt;}
.y43{bottom:340.666667pt;}
.y2a{bottom:342.426667pt;}
.yb6{bottom:342.586667pt;}
.y6f{bottom:349.306667pt;}
.yf1{bottom:354.906667pt;}
.y88{bottom:357.146667pt;}
.yb5{bottom:357.946667pt;}
.y42{bottom:359.066667pt;}
.y29{bottom:360.826667pt;}
.y6e{bottom:367.706667pt;}
.yf0{bottom:370.266667pt;}
.yb4{bottom:373.306667pt;}
.y87{bottom:375.546667pt;}
.y41{bottom:377.466667pt;}
.y28{bottom:379.226667pt;}
.yef{bottom:385.466667pt;}
.y6d{bottom:386.106667pt;}
.yb3{bottom:388.666667pt;}
.y86{bottom:393.946667pt;}
.y40{bottom:395.866667pt;}
.y27{bottom:397.626667pt;}
.yee{bottom:400.826667pt;}
.y6c{bottom:404.506667pt;}
.yae{bottom:408.506667pt;}
.y85{bottom:412.346667pt;}
.y3f{bottom:414.266667pt;}
.y26{bottom:416.026667pt;}
.yed{bottom:416.186667pt;}
.y6b{bottom:422.906667pt;}
.y84{bottom:430.786667pt;}
.yec{bottom:431.586667pt;}
.y3e{bottom:432.706667pt;}
.y25{bottom:434.466667pt;}
.y6a{bottom:441.346667pt;}
.yeb{bottom:446.946667pt;}
.y83{bottom:449.186667pt;}
.y3d{bottom:451.106667pt;}
.y24{bottom:452.866667pt;}
.y69{bottom:459.746667pt;}
.yea{bottom:462.146667pt;}
.y3c{bottom:465.986667pt;}
.y82{bottom:467.586667pt;}
.y23{bottom:471.266667pt;}
.ye9{bottom:477.506667pt;}
.y68{bottom:478.146667pt;}
.y81{bottom:485.986667pt;}
.y22{bottom:489.666667pt;}
.ye8{bottom:492.866667pt;}
.y67{bottom:496.546667pt;}
.y80{bottom:504.386667pt;}
.y21{bottom:508.066667pt;}
.ye7{bottom:508.226667pt;}
.y66{bottom:514.946667pt;}
.y7f{bottom:522.786667pt;}
.ye6{bottom:523.586667pt;}
.y20{bottom:526.466667pt;}
.y65{bottom:533.346667pt;}
.ye5{bottom:538.946667pt;}
.y7e{bottom:541.186667pt;}
.y1f{bottom:544.706667pt;}
.y64{bottom:551.746667pt;}
.ye4{bottom:554.146667pt;}
.y7d{bottom:559.586667pt;}
.y1e{bottom:563.106667pt;}
.ye3{bottom:569.506667pt;}
.y63{bottom:570.146667pt;}
.y1d{bottom:581.506667pt;}
.ye2{bottom:584.866667pt;}
.y62{bottom:588.546667pt;}
.y1c{bottom:599.906667pt;}
.ye1{bottom:600.226667pt;}
.y61{bottom:606.946667pt;}
.ye0{bottom:615.586667pt;}
.y1b{bottom:620.226667pt;}
.y60{bottom:625.373333pt;}
.ydf{bottom:630.973333pt;}
.y1a{bottom:632.413333pt;}
.y5f{bottom:643.773333pt;}
.yde{bottom:646.173333pt;}
.y19{bottom:648.573333pt;}
.ya3{bottom:656.253333pt;}
.y18{bottom:657.053333pt;}
.ydd{bottom:661.533333pt;}
.y5e{bottom:662.173333pt;}
.y17{bottom:675.453333pt;}
.ydc{bottom:676.893333pt;}
.y5d{bottom:680.573333pt;}
.ydb{bottom:692.253333pt;}
.y16{bottom:693.853333pt;}
.y5c{bottom:698.973333pt;}
.yda{bottom:707.613333pt;}
.y15{bottom:712.253333pt;}
.y5b{bottom:717.373333pt;}
.y102{bottom:718.653333pt;}
.yd9{bottom:722.813333pt;}
.y14{bottom:730.653333pt;}
.y5a{bottom:735.773333pt;}
.yd8{bottom:738.173333pt;}
.y103{bottom:743.133333pt;}
.y13{bottom:749.053333pt;}
.yd7{bottom:753.533333pt;}
.y59{bottom:754.173333pt;}
.y12{bottom:767.453333pt;}
.yd6{bottom:768.893333pt;}
.y58{bottom:772.573333pt;}
.yd5{bottom:784.253333pt;}
.y11{bottom:785.853333pt;}
.y57{bottom:790.973333pt;}
.yd4{bottom:799.613333pt;}
.y10{bottom:804.253333pt;}
.y56{bottom:809.373333pt;}
.yd3{bottom:814.813333pt;}
.yf{bottom:822.653333pt;}
.y55{bottom:827.813333pt;}
.yd2{bottom:830.213333pt;}
.ye{bottom:841.093333pt;}
.yd1{bottom:845.573333pt;}
.y54{bottom:846.213333pt;}
.yd{bottom:859.493333pt;}
.yd0{bottom:860.933333pt;}
.y53{bottom:864.613333pt;}
.ycf{bottom:876.293333pt;}
.yc{bottom:877.893333pt;}
.y52{bottom:883.013333pt;}
.yce{bottom:891.653333pt;}
.y51{bottom:901.413333pt;}
.ycd{bottom:906.853333pt;}
.yb{bottom:908.773333pt;}
.y50{bottom:919.813333pt;}
.ycc{bottom:922.213333pt;}
.ya{bottom:933.253333pt;}
.ycb{bottom:937.573333pt;}
.y3b{bottom:938.213333pt;}
.y9{bottom:945.573333pt;}
.yca{bottom:952.933333pt;}
.y3a{bottom:956.613333pt;}
.yc9{bottom:968.293333pt;}
.y8{bottom:970.053333pt;}
.y39{bottom:975.013333pt;}
.y7{bottom:982.373333pt;}
.yc8{bottom:983.653333pt;}
.y38{bottom:993.413333pt;}
.yc7{bottom:998.853333pt;}
.y6{bottom:1009.253333pt;}
.y37{bottom:1011.813333pt;}
.yc6{bottom:1014.213333pt;}
.y1{bottom:1062.240000pt;}
.h7{height:18.933750pt;}
.h8{height:26.190625pt;}
.h10{height:37.479688pt;}
.h5{height:38.441250pt;}
.ha{height:45.156250pt;}
.h9{height:46.593750pt;}
.h2{height:47.621250pt;}
.h6{height:52.750000pt;}
.h3{height:52.832812pt;}
.h4{height:57.375000pt;}
.hb{height:58.563750pt;}
.hf{height:253.466667pt;}
.hc{height:361.146667pt;}
.he{height:431.773333pt;}
.hd{height:434.786667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:245.786667pt;}
.w4{width:249.306667pt;}
.w5{width:293.506667pt;}
.w6{width:609.213333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:9.600000pt;}
.x14{left:94.912000pt;}
.x1{left:96.031988pt;}
.xb{left:100.511988pt;}
.x10{left:114.911988pt;}
.x13{left:124.511988pt;}
.x4{left:138.266655pt;}
.x9{left:144.026655pt;}
.x7{left:170.266655pt;}
.x5{left:192.186655pt;}
.xd{left:211.560000pt;}
.x8{left:236.506655pt;}
.xf{left:239.560000pt;}
.xa{left:264.866655pt;}
.x12{left:277.986667pt;}
.x3{left:286.306655pt;}
.x6{left:309.186655pt;}
.x11{left:396.866667pt;}
.xc{left:446.173333pt;}
.x2{left:697.893322pt;}
}




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