
    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_15b76178e61b2b6582b0699e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_35efebe36453d4437cefa6d4.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_bd90fcf930cd57d9b617c57c.woff')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_62813dd88848f794139fff26.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_5cec7eec0ace33cca092f795.woff')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_316bc15189dc7c32a4566e26.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b6f4bac02b5fed23fafbdbee.woff')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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_eb4a7b3ace338b63b8459b1f.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_87a47c45fc471dba28bf97b2.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.lsb{letter-spacing:-0.780000px;}
.ls8{letter-spacing:-0.600000px;}
.ls7{letter-spacing:-0.384000px;}
.lsf{letter-spacing:-0.240000px;}
.ls2{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.060000px;}
.lse{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.384000px;}
.ls1{letter-spacing:0.600000px;}
.ls11{letter-spacing:15.720000px;}
.lsd{letter-spacing:40.920000px;}
.lsa{letter-spacing:43.320000px;}
.lsc{letter-spacing:44.520000px;}
.ls10{letter-spacing:45.720000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws2{word-spacing:-48.000000px;}
.ws1{word-spacing:-18.384000px;}
.wsb{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.616000px;}
.ws0{word-spacing:-15.204000px;}
.ws9{word-spacing:-15.000000px;}
.wsa{word-spacing:-14.760000px;}
.ws7{word-spacing:-14.100000px;}
.ws8{word-spacing:-13.500000px;}
.ws5{word-spacing:-9.900000px;}
.ws6{word-spacing:0.000000px;}
._10{margin-left:-2.226000px;}
._1{margin-left:-1.206000px;}
._0{width:1.056000px;}
._5{width:2.118000px;}
._12{width:3.834000px;}
._2{width:4.932000px;}
._6{width:6.360000px;}
._7{width:7.530000px;}
._b{width:8.580000px;}
._11{width:10.140000px;}
._d{width:11.226000px;}
._8{width:12.360000px;}
._c{width:13.920000px;}
._13{width:16.500000px;}
._a{width:18.018000px;}
._9{width:19.020000px;}
._14{width:20.136000px;}
._f{width:21.438000px;}
._e{width:23.400000px;}
._3{width:336.180000px;}
._4{width:1200.420000px;}
.fc7{color:rgb(255,0,0);}
.fc5{color:transparent;}
.fc3{color:rgb(34,122,203);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:9.600000px;}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y41{bottom:-11.385000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y40{bottom:6.300000px;}
.y5{bottom:12.337500px;}
.y3f{bottom:25.800000px;}
.y3e{bottom:40.500000px;}
.y4{bottom:46.800000px;}
.y1{bottom:57.037500px;}
.y3d{bottom:57.615000px;}
.y3c{bottom:75.015000px;}
.y3{bottom:81.337500px;}
.y3b{bottom:92.115000px;}
.y3a{bottom:109.545000px;}
.y2b{bottom:113.137500px;}
.y77{bottom:121.837500px;}
.ya9{bottom:125.437500px;}
.yd5{bottom:126.337500px;}
.y39{bottom:126.645000px;}
.y136{bottom:126.937500px;}
.y100{bottom:127.837500px;}
.y2a{bottom:130.537500px;}
.y76{bottom:139.237500px;}
.yd4{bottom:143.737500px;}
.y135{bottom:144.037500px;}
.y38{bottom:144.045000px;}
.y29{bottom:147.637500px;}
.yff{bottom:148.237500px;}
.ya8{bottom:154.830000px;}
.y75{bottom:156.645000px;}
.y37{bottom:161.145000px;}
.y134{bottom:161.430000px;}
.y28{bottom:165.030000px;}
.yfe{bottom:165.330000px;}
.ya7{bottom:172.230000px;}
.yd3{bottom:172.530000px;}
.y74{bottom:173.745000px;}
.y36{bottom:178.545000px;}
.y133{bottom:178.575000px;}
.y27{bottom:182.175000px;}
.yfd{bottom:183.075000px;}
.ya6{bottom:189.675000px;}
.yd2{bottom:190.275000px;}
.y35{bottom:195.645000px;}
.y132{bottom:195.975000px;}
.y26{bottom:199.275000px;}
.y73{bottom:202.575000px;}
.y34{bottom:213.045000px;}
.y131{bottom:213.075000px;}
.yfc{bottom:215.175000px;}
.y25{bottom:216.675000px;}
.ya5{bottom:218.475000px;}
.yd1{bottom:219.075000px;}
.y72{bottom:220.275000px;}
.y33{bottom:230.145000px;}
.y130{bottom:230.475000px;}
.yfb{bottom:232.575000px;}
.y24{bottom:233.775000px;}
.ya4{bottom:236.175000px;}
.yd0{bottom:236.775000px;}
.y71{bottom:237.375000px;}
.y32{bottom:247.545000px;}
.y12f{bottom:247.575000px;}
.yfa{bottom:249.975000px;}
.y23{bottom:251.175000px;}
.ya3{bottom:253.275000px;}
.ycf{bottom:253.875000px;}
.y31{bottom:264.645000px;}
.y12e{bottom:264.975000px;}
.yf9{bottom:267.075000px;}
.y22{bottom:268.275000px;}
.y70{bottom:269.175000px;}
.ya2{bottom:270.675000px;}
.yce{bottom:271.575000px;}
.y30{bottom:282.075000px;}
.yf8{bottom:284.475000px;}
.y21{bottom:285.675000px;}
.ya1{bottom:287.775000px;}
.y6f{bottom:288.975000px;}
.ycd{bottom:291.075000px;}
.y2f{bottom:299.175000px;}
.y12d{bottom:299.475000px;}
.yf7{bottom:301.575000px;}
.y20{bottom:303.375000px;}
.ya0{bottom:305.175000px;}
.ycc{bottom:305.775000px;}
.y6e{bottom:308.775000px;}
.y2e{bottom:316.575000px;}
.yf6{bottom:318.975000px;}
.y9f{bottom:322.275000px;}
.ycb{bottom:322.875000px;}
.y1f{bottom:324.075000px;}
.y6d{bottom:328.575000px;}
.y12c{bottom:333.975000px;}
.y2d{bottom:334.290000px;}
.yf5{bottom:336.075000px;}
.y9e{bottom:339.675000px;}
.yca{bottom:340.275000px;}
.y12b{bottom:351.105000px;}
.yf4{bottom:353.505000px;}
.y9d{bottom:356.820000px;}
.yc9{bottom:357.405000px;}
.y6c{bottom:360.420000px;}
.y12a{bottom:368.520000px;}
.y9c{bottom:374.205000px;}
.yc8{bottom:377.505000px;}
.y6b{bottom:380.205000px;}
.yf3{bottom:382.320000px;}
.y129{bottom:385.605000px;}
.y9b{bottom:391.320000px;}
.y6a{bottom:400.005000px;}
.y128{bottom:403.005000px;}
.yc7{bottom:406.620000px;}
.y9a{bottom:408.705000px;}
.y2c{bottom:410.205000px;}
.yf2{bottom:417.120000px;}
.y69{bottom:419.820000px;}
.y127{bottom:420.120000px;}
.yc6{bottom:424.320000px;}
.y99{bottom:425.820000px;}
.y126{bottom:437.505000px;}
.yc5{bottom:441.420000px;}
.y98{bottom:443.220000px;}
.yf1{bottom:446.205000px;}
.y68{bottom:451.920000px;}
.y125{bottom:454.620000px;}
.yc4{bottom:458.820000px;}
.y97{bottom:460.320000px;}
.yf0{bottom:463.620000px;}
.y67{bottom:471.720000px;}
.y124{bottom:472.005000px;}
.y96{bottom:477.705000px;}
.yc3{bottom:487.620000px;}
.y123{bottom:489.120000px;}
.yef{bottom:492.705000px;}
.y66{bottom:500.820000px;}
.yc2{bottom:505.320000px;}
.y95{bottom:506.520000px;}
.yee{bottom:510.120000px;}
.y65{bottom:518.550000px;}
.yc1{bottom:522.450000px;}
.y122{bottom:523.650000px;}
.y94{bottom:524.250000px;}
.yed{bottom:527.550000px;}
.y64{bottom:535.650000px;}
.y121{bottom:541.050000px;}
.y93{bottom:541.350000px;}
.yc0{bottom:551.550000px;}
.y63{bottom:553.050000px;}
.yec{bottom:556.350000px;}
.y120{bottom:558.150000px;}
.y92{bottom:558.750000px;}
.ybf{bottom:568.950000px;}
.y62{bottom:570.150000px;}
.yeb{bottom:574.050000px;}
.y11f{bottom:575.550000px;}
.ybe{bottom:586.350000px;}
.y91{bottom:587.550000px;}
.yea{bottom:591.750000px;}
.y11e{bottom:592.650000px;}
.y61{bottom:599.250000px;}
.y146{bottom:603.150000px;}
.ybd{bottom:604.050000px;}
.y90{bottom:605.250000px;}
.y11d{bottom:610.050000px;}
.y60{bottom:616.650000px;}
.y8f{bottom:622.350000px;}
.ye9{bottom:623.550000px;}
.y11c{bottom:627.150000px;}
.y145{bottom:628.950000px;}
.y5f{bottom:634.050000px;}
.ybc{bottom:635.850000px;}
.ye8{bottom:641.250000px;}
.y11b{bottom:644.550000px;}
.y5e{bottom:651.150000px;}
.y8e{bottom:651.450000px;}
.ybb{bottom:653.550000px;}
.y144{bottom:654.750000px;}
.ye7{bottom:658.350000px;}
.y11a{bottom:661.650000px;}
.y5d{bottom:668.850000px;}
.ye6{bottom:675.750000px;}
.y119{bottom:679.050000px;}
.y143{bottom:680.550000px;}
.yba{bottom:682.380000px;}
.y8d{bottom:686.280000px;}
.y5c{bottom:689.280000px;}
.ye5{bottom:692.880000px;}
.y118{bottom:696.195000px;}
.yb9{bottom:700.080000px;}
.y8c{bottom:703.380000px;}
.y5b{bottom:706.380000px;}
.ye4{bottom:710.295000px;}
.y117{bottom:713.580000px;}
.yb8{bottom:717.195000px;}
.y8b{bottom:720.795000px;}
.y5a{bottom:723.795000px;}
.ye3{bottom:727.395000px;}
.y116{bottom:730.695000px;}
.y142{bottom:732.495000px;}
.yb7{bottom:734.595000px;}
.y59{bottom:740.895000px;}
.ye2{bottom:744.780000px;}
.y115{bottom:748.095000px;}
.y8a{bottom:749.595000px;}
.yb6{bottom:751.695000px;}
.y58{bottom:758.280000px;}
.ye1{bottom:761.880000px;}
.y114{bottom:765.195000px;}
.y89{bottom:767.280000px;}
.y57{bottom:775.380000px;}
.ye0{bottom:779.295000px;}
.yb5{bottom:780.795000px;}
.y113{bottom:782.580000px;}
.y141{bottom:784.080000px;}
.y88{bottom:784.380000px;}
.y56{bottom:792.795000px;}
.y1e{bottom:793.080000px;}
.yb4{bottom:798.195000px;}
.y112{bottom:799.695000px;}
.y87{bottom:801.795000px;}
.ydf{bottom:808.080000px;}
.y55{bottom:809.880000px;}
.y1d{bottom:810.495000px;}
.y140{bottom:813.495000px;}
.y111{bottom:817.080000px;}
.yde{bottom:825.795000px;}
.y54{bottom:827.295000px;}
.y1c{bottom:827.580000px;}
.y86{bottom:830.580000px;}
.y110{bottom:834.195000px;}
.y13f{bottom:842.580000px;}
.ydd{bottom:842.895000px;}
.y53{bottom:844.380000px;}
.yb3{bottom:844.695000px;}
.y1b{bottom:844.995000px;}
.y85{bottom:848.295000px;}
.y10f{bottom:851.625000px;}
.ydc{bottom:860.325000px;}
.y52{bottom:861.825000px;}
.y1a{bottom:862.125000px;}
.y10e{bottom:868.725000px;}
.y13e{bottom:872.025000px;}
.y84{bottom:877.125000px;}
.ydb{bottom:877.425000px;}
.y51{bottom:878.925000px;}
.y19{bottom:879.525000px;}
.y10d{bottom:886.125000px;}
.yb2{bottom:890.925000px;}
.y18{bottom:893.925000px;}
.y83{bottom:894.825000px;}
.y50{bottom:896.325000px;}
.y13d{bottom:901.125000px;}
.y17{bottom:901.425000px;}
.y10c{bottom:903.225000px;}
.y16{bottom:906.525000px;}
.yb1{bottom:908.625000px;}
.y82{bottom:911.925000px;}
.y4f{bottom:913.425000px;}
.y10b{bottom:920.625000px;}
.yda{bottom:923.625000px;}
.yb0{bottom:926.325000px;}
.y15{bottom:929.325000px;}
.y4e{bottom:930.825000px;}
.y13c{bottom:931.125000px;}
.y10a{bottom:937.725000px;}
.y14{bottom:941.025000px;}
.yd9{bottom:941.325000px;}
.y4d{bottom:947.925000px;}
.y13b{bottom:951.525000px;}
.y109{bottom:955.125000px;}
.yaf{bottom:958.125000px;}
.y81{bottom:958.425000px;}
.y13{bottom:963.825000px;}
.y4c{bottom:965.325000px;}
.y13a{bottom:968.625000px;}
.y108{bottom:972.225000px;}
.yae{bottom:975.825000px;}
.y12{bottom:980.925000px;}
.y4b{bottom:982.425000px;}
.y139{bottom:986.025000px;}
.y80{bottom:987.525000px;}
.y107{bottom:989.625000px;}
.yad{bottom:992.925000px;}
.y11{bottom:995.925000px;}
.y4a{bottom:999.825000px;}
.y138{bottom:1003.125000px;}
.yd8{bottom:1004.625000px;}
.y7f{bottom:1004.925000px;}
.y106{bottom:1006.725000px;}
.y10{bottom:1016.670000px;}
.y49{bottom:1017.570000px;}
.y137{bottom:1020.570000px;}
.yac{bottom:1022.070000px;}
.y7e{bottom:1022.370000px;}
.y105{bottom:1024.455000px;}
.y48{bottom:1037.670000px;}
.y7d{bottom:1039.455000px;}
.yd{bottom:1040.955000px;}
.y47{bottom:1055.070000px;}
.y104{bottom:1056.570000px;}
.y7c{bottom:1056.870000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.yab{bottom:1068.570000px;}
.y46{bottom:1072.170000px;}
.y103{bottom:1073.955000px;}
.yd7{bottom:1074.570000px;}
.ya{bottom:1083.570000px;}
.y7b{bottom:1085.670000px;}
.yaa{bottom:1085.955000px;}
.y45{bottom:1089.570000px;}
.y102{bottom:1091.370000px;}
.y9{bottom:1097.955000px;}
.y7a{bottom:1103.370000px;}
.yd6{bottom:1106.370000px;}
.y44{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.y101{bottom:1120.170000px;}
.y79{bottom:1120.455000px;}
.y43{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y78{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y42{bottom:1196.400000px;}
.he{height:6.942188px;}
.hf{height:8.466797px;}
.h9{height:8.677734px;}
.h5{height:12.700195px;}
.ha{height:21.000000px;}
.hc{height:28.636523px;}
.h7{height:33.867188px;}
.h15{height:34.664062px;}
.h19{height:34.710938px;}
.h3{height:36.000000px;}
.h8{height:39.049805px;}
.h16{height:39.471680px;}
.h4{height:42.333984px;}
.hd{height:43.388672px;}
.h18{height:43.681641px;}
.h11{height:43.857422px;}
.h17{height:44.443359px;}
.hb{height:50.236523px;}
.h6{height:50.800781px;}
.h14{height:51.996094px;}
.h10{height:52.628906px;}
.h12{height:59.677734px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h13{height:351.075000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.w3{width:108.000000px;}
.w6{width:253.875000px;}
.w5{width:483.450000px;}
.w7{width:732.225000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:10.799998px;}
.x10{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.xb{left:78.037500px;}
.x1{left:81.037487px;}
.xf{left:82.237500px;}
.x12{left:108.037487px;}
.xe{left:132.330000px;}
.x13{left:135.037487px;}
.x9{left:153.629987px;}
.xc{left:241.582500px;}
.x5{left:388.619987px;}
.x14{left:446.549987px;}
.x7{left:457.349987px;}
.xd{left:561.495000px;}
.x11{left:590.594987px;}
.x8{left:607.094987px;}
.x6{left:696.524987px;}
.xa{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.lsb{letter-spacing:-0.693333pt;}
.ls8{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:-0.341333pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls2{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.053333pt;}
.lse{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.341333pt;}
.ls1{letter-spacing:0.533333pt;}
.ls11{letter-spacing:13.973333pt;}
.lsd{letter-spacing:36.373333pt;}
.lsa{letter-spacing:38.506667pt;}
.lsc{letter-spacing:39.573333pt;}
.ls10{letter-spacing:40.640000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws2{word-spacing:-42.666667pt;}
.ws1{word-spacing:-16.341333pt;}
.wsb{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.658667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws9{word-spacing:-13.333333pt;}
.wsa{word-spacing:-13.120000pt;}
.ws7{word-spacing:-12.533333pt;}
.ws8{word-spacing:-12.000000pt;}
.ws5{word-spacing:-8.800000pt;}
.ws6{word-spacing:0.000000pt;}
._10{margin-left:-1.978667pt;}
._1{margin-left:-1.072000pt;}
._0{width:0.938667pt;}
._5{width:1.882667pt;}
._12{width:3.408000pt;}
._2{width:4.384000pt;}
._6{width:5.653333pt;}
._7{width:6.693333pt;}
._b{width:7.626667pt;}
._11{width:9.013333pt;}
._d{width:9.978667pt;}
._8{width:10.986667pt;}
._c{width:12.373333pt;}
._13{width:14.666667pt;}
._a{width:16.016000pt;}
._9{width:16.906667pt;}
._14{width:17.898667pt;}
._f{width:19.056000pt;}
._e{width:20.800000pt;}
._3{width:298.826667pt;}
._4{width:1067.040000pt;}
.fs8{font-size:8.533333pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y41{bottom:-10.120000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y40{bottom:5.600000pt;}
.y5{bottom:10.966667pt;}
.y3f{bottom:22.933333pt;}
.y3e{bottom:36.000000pt;}
.y4{bottom:41.600000pt;}
.y1{bottom:50.700000pt;}
.y3d{bottom:51.213333pt;}
.y3c{bottom:66.680000pt;}
.y3{bottom:72.300000pt;}
.y3b{bottom:81.880000pt;}
.y3a{bottom:97.373333pt;}
.y2b{bottom:100.566667pt;}
.y77{bottom:108.300000pt;}
.ya9{bottom:111.500000pt;}
.yd5{bottom:112.300000pt;}
.y39{bottom:112.573333pt;}
.y136{bottom:112.833333pt;}
.y100{bottom:113.633333pt;}
.y2a{bottom:116.033333pt;}
.y76{bottom:123.766667pt;}
.yd4{bottom:127.766667pt;}
.y135{bottom:128.033333pt;}
.y38{bottom:128.040000pt;}
.y29{bottom:131.233333pt;}
.yff{bottom:131.766667pt;}
.ya8{bottom:137.626667pt;}
.y75{bottom:139.240000pt;}
.y37{bottom:143.240000pt;}
.y134{bottom:143.493333pt;}
.y28{bottom:146.693333pt;}
.yfe{bottom:146.960000pt;}
.ya7{bottom:153.093333pt;}
.yd3{bottom:153.360000pt;}
.y74{bottom:154.440000pt;}
.y36{bottom:158.706667pt;}
.y133{bottom:158.733333pt;}
.y27{bottom:161.933333pt;}
.yfd{bottom:162.733333pt;}
.ya6{bottom:168.600000pt;}
.yd2{bottom:169.133333pt;}
.y35{bottom:173.906667pt;}
.y132{bottom:174.200000pt;}
.y26{bottom:177.133333pt;}
.y73{bottom:180.066667pt;}
.y34{bottom:189.373333pt;}
.y131{bottom:189.400000pt;}
.yfc{bottom:191.266667pt;}
.y25{bottom:192.600000pt;}
.ya5{bottom:194.200000pt;}
.yd1{bottom:194.733333pt;}
.y72{bottom:195.800000pt;}
.y33{bottom:204.573333pt;}
.y130{bottom:204.866667pt;}
.yfb{bottom:206.733333pt;}
.y24{bottom:207.800000pt;}
.ya4{bottom:209.933333pt;}
.yd0{bottom:210.466667pt;}
.y71{bottom:211.000000pt;}
.y32{bottom:220.040000pt;}
.y12f{bottom:220.066667pt;}
.yfa{bottom:222.200000pt;}
.y23{bottom:223.266667pt;}
.ya3{bottom:225.133333pt;}
.ycf{bottom:225.666667pt;}
.y31{bottom:235.240000pt;}
.y12e{bottom:235.533333pt;}
.yf9{bottom:237.400000pt;}
.y22{bottom:238.466667pt;}
.y70{bottom:239.266667pt;}
.ya2{bottom:240.600000pt;}
.yce{bottom:241.400000pt;}
.y30{bottom:250.733333pt;}
.yf8{bottom:252.866667pt;}
.y21{bottom:253.933333pt;}
.ya1{bottom:255.800000pt;}
.y6f{bottom:256.866667pt;}
.ycd{bottom:258.733333pt;}
.y2f{bottom:265.933333pt;}
.y12d{bottom:266.200000pt;}
.yf7{bottom:268.066667pt;}
.y20{bottom:269.666667pt;}
.ya0{bottom:271.266667pt;}
.ycc{bottom:271.800000pt;}
.y6e{bottom:274.466667pt;}
.y2e{bottom:281.400000pt;}
.yf6{bottom:283.533333pt;}
.y9f{bottom:286.466667pt;}
.ycb{bottom:287.000000pt;}
.y1f{bottom:288.066667pt;}
.y6d{bottom:292.066667pt;}
.y12c{bottom:296.866667pt;}
.y2d{bottom:297.146667pt;}
.yf5{bottom:298.733333pt;}
.y9e{bottom:301.933333pt;}
.yca{bottom:302.466667pt;}
.y12b{bottom:312.093333pt;}
.yf4{bottom:314.226667pt;}
.y9d{bottom:317.173333pt;}
.yc9{bottom:317.693333pt;}
.y6c{bottom:320.373333pt;}
.y12a{bottom:327.573333pt;}
.y9c{bottom:332.626667pt;}
.yc8{bottom:335.560000pt;}
.y6b{bottom:337.960000pt;}
.yf3{bottom:339.840000pt;}
.y129{bottom:342.760000pt;}
.y9b{bottom:347.840000pt;}
.y6a{bottom:355.560000pt;}
.y128{bottom:358.226667pt;}
.yc7{bottom:361.440000pt;}
.y9a{bottom:363.293333pt;}
.y2c{bottom:364.626667pt;}
.yf2{bottom:370.773333pt;}
.y69{bottom:373.173333pt;}
.y127{bottom:373.440000pt;}
.yc6{bottom:377.173333pt;}
.y99{bottom:378.506667pt;}
.y126{bottom:388.893333pt;}
.yc5{bottom:392.373333pt;}
.y98{bottom:393.973333pt;}
.yf1{bottom:396.626667pt;}
.y68{bottom:401.706667pt;}
.y125{bottom:404.106667pt;}
.yc4{bottom:407.840000pt;}
.y97{bottom:409.173333pt;}
.yf0{bottom:412.106667pt;}
.y67{bottom:419.306667pt;}
.y124{bottom:419.560000pt;}
.y96{bottom:424.626667pt;}
.yc3{bottom:433.440000pt;}
.y123{bottom:434.773333pt;}
.yef{bottom:437.960000pt;}
.y66{bottom:445.173333pt;}
.yc2{bottom:449.173333pt;}
.y95{bottom:450.240000pt;}
.yee{bottom:453.440000pt;}
.y65{bottom:460.933333pt;}
.yc1{bottom:464.400000pt;}
.y122{bottom:465.466667pt;}
.y94{bottom:466.000000pt;}
.yed{bottom:468.933333pt;}
.y64{bottom:476.133333pt;}
.y121{bottom:480.933333pt;}
.y93{bottom:481.200000pt;}
.yc0{bottom:490.266667pt;}
.y63{bottom:491.600000pt;}
.yec{bottom:494.533333pt;}
.y120{bottom:496.133333pt;}
.y92{bottom:496.666667pt;}
.ybf{bottom:505.733333pt;}
.y62{bottom:506.800000pt;}
.yeb{bottom:510.266667pt;}
.y11f{bottom:511.600000pt;}
.ybe{bottom:521.200000pt;}
.y91{bottom:522.266667pt;}
.yea{bottom:526.000000pt;}
.y11e{bottom:526.800000pt;}
.y61{bottom:532.666667pt;}
.y146{bottom:536.133333pt;}
.ybd{bottom:536.933333pt;}
.y90{bottom:538.000000pt;}
.y11d{bottom:542.266667pt;}
.y60{bottom:548.133333pt;}
.y8f{bottom:553.200000pt;}
.ye9{bottom:554.266667pt;}
.y11c{bottom:557.466667pt;}
.y145{bottom:559.066667pt;}
.y5f{bottom:563.600000pt;}
.ybc{bottom:565.200000pt;}
.ye8{bottom:570.000000pt;}
.y11b{bottom:572.933333pt;}
.y5e{bottom:578.800000pt;}
.y8e{bottom:579.066667pt;}
.ybb{bottom:580.933333pt;}
.y144{bottom:582.000000pt;}
.ye7{bottom:585.200000pt;}
.y11a{bottom:588.133333pt;}
.y5d{bottom:594.533333pt;}
.ye6{bottom:600.666667pt;}
.y119{bottom:603.600000pt;}
.y143{bottom:604.933333pt;}
.yba{bottom:606.560000pt;}
.y8d{bottom:610.026667pt;}
.y5c{bottom:612.693333pt;}
.ye5{bottom:615.893333pt;}
.y118{bottom:618.840000pt;}
.yb9{bottom:622.293333pt;}
.y8c{bottom:625.226667pt;}
.y5b{bottom:627.893333pt;}
.ye4{bottom:631.373333pt;}
.y117{bottom:634.293333pt;}
.yb8{bottom:637.506667pt;}
.y8b{bottom:640.706667pt;}
.y5a{bottom:643.373333pt;}
.ye3{bottom:646.573333pt;}
.y116{bottom:649.506667pt;}
.y142{bottom:651.106667pt;}
.yb7{bottom:652.973333pt;}
.y59{bottom:658.573333pt;}
.ye2{bottom:662.026667pt;}
.y115{bottom:664.973333pt;}
.y8a{bottom:666.306667pt;}
.yb6{bottom:668.173333pt;}
.y58{bottom:674.026667pt;}
.ye1{bottom:677.226667pt;}
.y114{bottom:680.173333pt;}
.y89{bottom:682.026667pt;}
.y57{bottom:689.226667pt;}
.ye0{bottom:692.706667pt;}
.yb5{bottom:694.040000pt;}
.y113{bottom:695.626667pt;}
.y141{bottom:696.960000pt;}
.y88{bottom:697.226667pt;}
.y56{bottom:704.706667pt;}
.y1e{bottom:704.960000pt;}
.yb4{bottom:709.506667pt;}
.y112{bottom:710.840000pt;}
.y87{bottom:712.706667pt;}
.ydf{bottom:718.293333pt;}
.y55{bottom:719.893333pt;}
.y1d{bottom:720.440000pt;}
.y140{bottom:723.106667pt;}
.y111{bottom:726.293333pt;}
.yde{bottom:734.040000pt;}
.y54{bottom:735.373333pt;}
.y1c{bottom:735.626667pt;}
.y86{bottom:738.293333pt;}
.y110{bottom:741.506667pt;}
.y13f{bottom:748.960000pt;}
.ydd{bottom:749.240000pt;}
.y53{bottom:750.560000pt;}
.yb3{bottom:750.840000pt;}
.y1b{bottom:751.106667pt;}
.y85{bottom:754.040000pt;}
.y10f{bottom:757.000000pt;}
.ydc{bottom:764.733333pt;}
.y52{bottom:766.066667pt;}
.y1a{bottom:766.333333pt;}
.y10e{bottom:772.200000pt;}
.y13e{bottom:775.133333pt;}
.y84{bottom:779.666667pt;}
.ydb{bottom:779.933333pt;}
.y51{bottom:781.266667pt;}
.y19{bottom:781.800000pt;}
.y10d{bottom:787.666667pt;}
.yb2{bottom:791.933333pt;}
.y18{bottom:794.600000pt;}
.y83{bottom:795.400000pt;}
.y50{bottom:796.733333pt;}
.y13d{bottom:801.000000pt;}
.y17{bottom:801.266667pt;}
.y10c{bottom:802.866667pt;}
.y16{bottom:805.800000pt;}
.yb1{bottom:807.666667pt;}
.y82{bottom:810.600000pt;}
.y4f{bottom:811.933333pt;}
.y10b{bottom:818.333333pt;}
.yda{bottom:821.000000pt;}
.yb0{bottom:823.400000pt;}
.y15{bottom:826.066667pt;}
.y4e{bottom:827.400000pt;}
.y13c{bottom:827.666667pt;}
.y10a{bottom:833.533333pt;}
.y14{bottom:836.466667pt;}
.yd9{bottom:836.733333pt;}
.y4d{bottom:842.600000pt;}
.y13b{bottom:845.800000pt;}
.y109{bottom:849.000000pt;}
.yaf{bottom:851.666667pt;}
.y81{bottom:851.933333pt;}
.y13{bottom:856.733333pt;}
.y4c{bottom:858.066667pt;}
.y13a{bottom:861.000000pt;}
.y108{bottom:864.200000pt;}
.yae{bottom:867.400000pt;}
.y12{bottom:871.933333pt;}
.y4b{bottom:873.266667pt;}
.y139{bottom:876.466667pt;}
.y80{bottom:877.800000pt;}
.y107{bottom:879.666667pt;}
.yad{bottom:882.600000pt;}
.y11{bottom:885.266667pt;}
.y4a{bottom:888.733333pt;}
.y138{bottom:891.666667pt;}
.yd8{bottom:893.000000pt;}
.y7f{bottom:893.266667pt;}
.y106{bottom:894.866667pt;}
.y10{bottom:903.706667pt;}
.y49{bottom:904.506667pt;}
.y137{bottom:907.173333pt;}
.yac{bottom:908.506667pt;}
.y7e{bottom:908.773333pt;}
.y105{bottom:910.626667pt;}
.y48{bottom:922.373333pt;}
.y7d{bottom:923.960000pt;}
.yd{bottom:925.293333pt;}
.y47{bottom:937.840000pt;}
.y104{bottom:939.173333pt;}
.y7c{bottom:939.440000pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.yab{bottom:949.840000pt;}
.y46{bottom:953.040000pt;}
.y103{bottom:954.626667pt;}
.yd7{bottom:955.173333pt;}
.ya{bottom:963.173333pt;}
.y7b{bottom:965.040000pt;}
.yaa{bottom:965.293333pt;}
.y45{bottom:968.506667pt;}
.y102{bottom:970.106667pt;}
.y9{bottom:975.960000pt;}
.y7a{bottom:980.773333pt;}
.yd6{bottom:983.440000pt;}
.y44{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.y101{bottom:995.706667pt;}
.y79{bottom:995.960000pt;}
.y43{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y78{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y42{bottom:1063.466667pt;}
.he{height:6.170833pt;}
.hf{height:7.526042pt;}
.h9{height:7.713542pt;}
.h5{height:11.289062pt;}
.ha{height:18.666667pt;}
.hc{height:25.454687pt;}
.h7{height:30.104167pt;}
.h15{height:30.812500pt;}
.h19{height:30.854167pt;}
.h3{height:32.000000pt;}
.h8{height:34.710938pt;}
.h16{height:35.085938pt;}
.h4{height:37.630208pt;}
.hd{height:38.567708pt;}
.h18{height:38.828125pt;}
.h11{height:38.984375pt;}
.h17{height:39.505208pt;}
.hb{height:44.654687pt;}
.h6{height:45.156250pt;}
.h14{height:46.218750pt;}
.h10{height:46.781250pt;}
.h12{height:53.046875pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h13{height:312.066667pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.w3{width:96.000000pt;}
.w6{width:225.666667pt;}
.w5{width:429.733333pt;}
.w7{width:650.866667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:9.599999pt;}
.x10{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.xb{left:69.366667pt;}
.x1{left:72.033322pt;}
.xf{left:73.100000pt;}
.x12{left:96.033322pt;}
.xe{left:117.626667pt;}
.x13{left:120.033322pt;}
.x9{left:136.559988pt;}
.xc{left:214.740000pt;}
.x5{left:345.439988pt;}
.x14{left:396.933322pt;}
.x7{left:406.533322pt;}
.xd{left:499.106667pt;}
.x11{left:524.973322pt;}
.x8{left:539.639988pt;}
.x6{left:619.133322pt;}
.xa{left:722.106655pt;}
}




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