
    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_7e060ff9a5da8a3e547c21d3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_a3b1e771fc2b9efdeda70924.woff')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_5cdfc38716926ac6cc90c136.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3e2d28c53c12f96b1f29e73f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_7dd74c03a47b59a743b0b3f8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7ebf9c5982e46cce02056d0a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.208008;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_5600c5f3d8a62548e1008d91.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_c0fbc39f6c0699e2aa721192.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_2d58f948d36b2cd331a2e571.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v1{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.ls8{letter-spacing:-3.000000px;}
.lsa{letter-spacing:-2.994000px;}
.ls7{letter-spacing:-2.988000px;}
.ls9{letter-spacing:-2.700000px;}
.ls23{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.012000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls16{letter-spacing:0.030000px;}
.ls1a{letter-spacing:0.060000px;}
.ls10{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.132000px;}
.ls5{letter-spacing:0.150000px;}
.ls17{letter-spacing:0.168000px;}
.ls13{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.300000px;}
.ls1d{letter-spacing:19.800000px;}
.lsc{letter-spacing:19.986000px;}
.ls11{letter-spacing:20.559000px;}
.lse{letter-spacing:21.159000px;}
.ls1e{letter-spacing:22.260000px;}
.lsb{letter-spacing:24.099000px;}
.lsf{letter-spacing:24.699000px;}
.ls1c{letter-spacing:33.984000px;}
.ls1f{letter-spacing:34.200000px;}
.ls1b{letter-spacing:46.200000px;}
.ls20{letter-spacing:51.984000px;}
.ls19{letter-spacing:61.320000px;}
.ls22{letter-spacing:87.648000px;}
.ls21{letter-spacing:129.648000px;}
.ls18{letter-spacing:141.984000px;}
.ls12{letter-spacing:156.384000px;}
.ls14{letter-spacing:169.320000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.wse{word-spacing:-71.712000px;}
.wsc{word-spacing:-55.584000px;}
.wsd{word-spacing:-51.000000px;}
.ws11{word-spacing:-21.000000px;}
.ws10{word-spacing:-18.168000px;}
.wsf{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.ws12{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsa{word-spacing:0.000000px;}
._24{margin-left:-7.404000px;}
._25{margin-left:-5.916000px;}
._1b{margin-left:-4.680000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._4{width:2.736000px;}
._5{width:3.816000px;}
._23{width:5.208000px;}
._13{width:6.552000px;}
._21{width:7.704000px;}
._1f{width:8.928000px;}
._a{width:10.728000px;}
._b{width:11.844000px;}
._e{width:13.824000px;}
._f{width:14.976000px;}
._43{width:15.984000px;}
._12{width:16.992000px;}
._8{width:19.512000px;}
._9{width:21.456000px;}
._18{width:22.536000px;}
._2b{width:23.646000px;}
._34{width:24.768000px;}
._20{width:26.064000px;}
._c{width:27.216000px;}
._29{width:29.022000px;}
._2a{width:30.096000px;}
._42{width:31.314000px;}
._2f{width:32.328000px;}
._30{width:33.744000px;}
._39{width:35.352000px;}
._6{width:37.512000px;}
._7{width:38.712000px;}
._10{width:39.870000px;}
._11{width:40.914000px;}
._1d{width:42.066000px;}
._41{width:43.086000px;}
._1a{width:44.352000px;}
._1c{width:45.576000px;}
._16{width:47.232000px;}
._17{width:48.456000px;}
._2c{width:49.536000px;}
._d{width:51.336000px;}
._27{width:52.776000px;}
._28{width:53.928000px;}
._32{width:55.944000px;}
._33{width:57.744000px;}
._2d{width:59.046000px;}
._2e{width:60.306000px;}
._14{width:61.392000px;}
._15{width:62.448000px;}
._1e{width:64.584000px;}
._44{width:65.952000px;}
._45{width:67.320000px;}
._46{width:68.754000px;}
._47{width:70.686000px;}
._22{width:71.784000px;}
._19{width:73.008000px;}
._26{width:74.376000px;}
._3a{width:78.408000px;}
._3b{width:79.692000px;}
._3f{width:87.768000px;}
._40{width:97.920000px;}
._3c{width:102.528000px;}
._31{width:118.080000px;}
._37{width:146.808000px;}
._35{width:148.608000px;}
._38{width:149.976000px;}
._3d{width:151.344000px;}
._3e{width:152.352000px;}
._36{width:218.160000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y26{bottom:3.900000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y25{bottom:24.600000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y24{bottom:45.300000px;}
.y3{bottom:57.637500px;}
.y23{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y22{bottom:86.745000px;}
.y21{bottom:107.445000px;}
.yfc{bottom:116.437500px;}
.ybd{bottom:121.687500px;}
.yeb{bottom:122.587500px;}
.y3b{bottom:123.037500px;}
.y91{bottom:126.637500px;}
.y20{bottom:128.145000px;}
.y11a{bottom:130.987500px;}
.yfb{bottom:140.137500px;}
.ybc{bottom:140.587500px;}
.y66{bottom:141.787500px;}
.yea{bottom:146.437500px;}
.y3a{bottom:146.887500px;}
.y1f{bottom:148.845000px;}
.y119{bottom:150.045000px;}
.y90{bottom:150.495000px;}
.ybb{bottom:159.645000px;}
.yfa{bottom:163.995000px;}
.y65{bottom:165.630000px;}
.y1e{bottom:169.545000px;}
.ye9{bottom:170.145000px;}
.y39{bottom:170.745000px;}
.y118{bottom:173.145000px;}
.y8f{bottom:174.345000px;}
.yba{bottom:178.545000px;}
.yf9{bottom:187.845000px;}
.y64{bottom:189.330000px;}
.y1d{bottom:190.245000px;}
.y117{bottom:192.195000px;}
.ye8{bottom:193.995000px;}
.y38{bottom:194.445000px;}
.yb9{bottom:197.595000px;}
.y8e{bottom:198.195000px;}
.yf8{bottom:211.545000px;}
.y63{bottom:213.195000px;}
.y116{bottom:215.295000px;}
.yb8{bottom:216.495000px;}
.ye7{bottom:217.845000px;}
.y37{bottom:218.295000px;}
.y8d{bottom:221.895000px;}
.y115{bottom:234.345000px;}
.yf7{bottom:235.395000px;}
.yb7{bottom:235.545000px;}
.y62{bottom:237.045000px;}
.ye6{bottom:241.545000px;}
.y36{bottom:242.145000px;}
.y8c{bottom:245.745000px;}
.y114{bottom:253.245000px;}
.yb6{bottom:254.445000px;}
.yf6{bottom:259.245000px;}
.y61{bottom:260.745000px;}
.ye5{bottom:265.395000px;}
.y35{bottom:265.845000px;}
.y8b{bottom:269.595000px;}
.yb5{bottom:273.495000px;}
.y113{bottom:276.495000px;}
.yf5{bottom:282.945000px;}
.y60{bottom:284.595000px;}
.ye4{bottom:289.245000px;}
.y34{bottom:289.695000px;}
.yb4{bottom:292.395000px;}
.y8a{bottom:293.295000px;}
.y112{bottom:295.395000px;}
.yf4{bottom:306.795000px;}
.y5f{bottom:308.445000px;}
.yb3{bottom:311.445000px;}
.ye3{bottom:312.945000px;}
.y33{bottom:313.545000px;}
.y111{bottom:314.445000px;}
.y89{bottom:317.130000px;}
.yb2{bottom:330.345000px;}
.yf3{bottom:330.630000px;}
.y5e{bottom:332.145000px;}
.y110{bottom:333.345000px;}
.ye2{bottom:336.795000px;}
.y32{bottom:337.245000px;}
.y88{bottom:340.995000px;}
.yb1{bottom:349.395000px;}
.yf2{bottom:354.495000px;}
.y5d{bottom:355.995000px;}
.y10f{bottom:356.595000px;}
.ye1{bottom:360.630000px;}
.y31{bottom:361.080000px;}
.y87{bottom:364.695000px;}
.yb0{bottom:368.295000px;}
.y10e{bottom:375.495000px;}
.yf1{bottom:378.195000px;}
.y5c{bottom:379.875000px;}
.ye0{bottom:384.375000px;}
.y30{bottom:384.975000px;}
.yaf{bottom:387.375000px;}
.y86{bottom:388.575000px;}
.y10d{bottom:394.575000px;}
.yf0{bottom:402.075000px;}
.y5b{bottom:403.725000px;}
.yae{bottom:406.275000px;}
.ydf{bottom:408.225000px;}
.y2f{bottom:408.675000px;}
.y85{bottom:412.425000px;}
.y10c{bottom:413.475000px;}
.yad{bottom:425.325000px;}
.yef{bottom:425.925000px;}
.y5a{bottom:427.425000px;}
.yde{bottom:432.075000px;}
.y2e{bottom:432.525000px;}
.y84{bottom:436.125000px;}
.y10b{bottom:436.725000px;}
.yac{bottom:444.225000px;}
.yee{bottom:449.625000px;}
.y59{bottom:451.275000px;}
.y10a{bottom:455.625000px;}
.ydd{bottom:455.775000px;}
.y2d{bottom:456.375000px;}
.y83{bottom:459.975000px;}
.yab{bottom:463.275000px;}
.yed{bottom:473.475000px;}
.y109{bottom:474.675000px;}
.y58{bottom:475.125000px;}
.ydc{bottom:479.625000px;}
.y2c{bottom:480.075000px;}
.yaa{bottom:482.175000px;}
.y82{bottom:483.825000px;}
.yec{bottom:493.425000px;}
.y108{bottom:497.775000px;}
.y57{bottom:498.825000px;}
.ya9{bottom:501.225000px;}
.ydb{bottom:503.475000px;}
.y2b{bottom:503.925000px;}
.y81{bottom:507.525000px;}
.y107{bottom:516.825000px;}
.ya8{bottom:520.125000px;}
.y56{bottom:522.675000px;}
.yda{bottom:527.325000px;}
.y2a{bottom:527.775000px;}
.y80{bottom:531.375000px;}
.y106{bottom:535.725000px;}
.ya7{bottom:539.175000px;}
.y55{bottom:546.525000px;}
.yd9{bottom:551.025000px;}
.y7f{bottom:555.225000px;}
.ya6{bottom:558.075000px;}
.y105{bottom:558.975000px;}
.y29{bottom:560.475000px;}
.y54{bottom:570.225000px;}
.yd8{bottom:574.875000px;}
.ya5{bottom:577.125000px;}
.y28{bottom:577.275000px;}
.y104{bottom:577.875000px;}
.y7e{bottom:579.075000px;}
.y53{bottom:594.075000px;}
.ya4{bottom:596.025000px;}
.y103{bottom:596.925000px;}
.yd7{bottom:598.725000px;}
.y7d{bottom:602.775000px;}
.ya3{bottom:615.075000px;}
.y52{bottom:617.925000px;}
.y102{bottom:620.025000px;}
.yd6{bottom:622.425000px;}
.y7c{bottom:626.625000px;}
.ya2{bottom:633.975000px;}
.y101{bottom:639.075000px;}
.y27{bottom:639.375000px;}
.y51{bottom:641.625000px;}
.yd5{bottom:646.275000px;}
.y7b{bottom:650.475000px;}
.ya1{bottom:652.875000px;}
.y100{bottom:657.975000px;}
.y1c{bottom:660.075000px;}
.y50{bottom:665.475000px;}
.yd4{bottom:670.125000px;}
.ya0{bottom:671.925000px;}
.y7a{bottom:674.175000px;}
.yff{bottom:681.225000px;}
.y4f{bottom:689.325000px;}
.y9f{bottom:690.825000px;}
.yd3{bottom:693.825000px;}
.y79{bottom:698.025000px;}
.yfe{bottom:700.125000px;}
.y9e{bottom:709.875000px;}
.y4e{bottom:713.025000px;}
.yd2{bottom:717.675000px;}
.yfd{bottom:719.175000px;}
.y78{bottom:721.875000px;}
.y9d{bottom:728.775000px;}
.y4d{bottom:736.875000px;}
.yd1{bottom:741.570000px;}
.y77{bottom:745.620000px;}
.y9c{bottom:747.870000px;}
.y4c{bottom:760.770000px;}
.yd0{bottom:765.270000px;}
.y9b{bottom:766.770000px;}
.y76{bottom:769.470000px;}
.y4b{bottom:784.620000px;}
.y9a{bottom:785.820000px;}
.ycf{bottom:789.120000px;}
.y75{bottom:793.320000px;}
.y99{bottom:804.720000px;}
.y4a{bottom:808.320000px;}
.yce{bottom:812.955000px;}
.y74{bottom:817.020000px;}
.y98{bottom:823.770000px;}
.y49{bottom:832.170000px;}
.ycd{bottom:836.670000px;}
.y73{bottom:840.870000px;}
.y97{bottom:842.670000px;}
.y48{bottom:856.020000px;}
.ycc{bottom:860.520000px;}
.y96{bottom:861.720000px;}
.y72{bottom:864.720000px;}
.y1b{bottom:870.720000px;}
.y47{bottom:879.720000px;}
.y95{bottom:880.620000px;}
.ycb{bottom:884.370000px;}
.y71{bottom:888.420000px;}
.y1a{bottom:889.920000px;}
.y94{bottom:899.670000px;}
.y46{bottom:903.570000px;}
.yca{bottom:908.220000px;}
.y19{bottom:910.620000px;}
.y70{bottom:912.270000px;}
.y93{bottom:918.570000px;}
.y45{bottom:927.420000px;}
.y18{bottom:931.320000px;}
.yc9{bottom:931.920000px;}
.y6f{bottom:936.120000px;}
.y92{bottom:937.620000px;}
.y44{bottom:951.120000px;}
.y17{bottom:952.020000px;}
.yc8{bottom:955.770000px;}
.y6e{bottom:959.970000px;}
.y16{bottom:972.720000px;}
.y43{bottom:974.970000px;}
.yc7{bottom:979.620000px;}
.y6d{bottom:983.670000px;}
.y15{bottom:993.420000px;}
.y42{bottom:998.820000px;}
.yc6{bottom:1000.020000px;}
.y6c{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.yc5{bottom:1019.070000px;}
.y41{bottom:1022.520000px;}
.y6b{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.yc4{bottom:1037.970000px;}
.y40{bottom:1046.370000px;}
.y6a{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.yc3{bottom:1057.020000px;}
.y3f{bottom:1070.220000px;}
.yc2{bottom:1075.920000px;}
.y11{bottom:1076.220000px;}
.y69{bottom:1078.920000px;}
.y3e{bottom:1093.920000px;}
.yc1{bottom:1094.970000px;}
.y10{bottom:1096.950000px;}
.y68{bottom:1102.800000px;}
.yc0{bottom:1113.900000px;}
.y3d{bottom:1120.200000px;}
.y67{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.ybf{bottom:1132.950000px;}
.y3c{bottom:1148.400000px;}
.ye{bottom:1150.350000px;}
.ybe{bottom:1151.850000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.hf{height:20.700000px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.he{height:50.484375px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h12{height:61.670545px;}
.h10{height:62.100000px;}
.h14{height:64.743164px;}
.hc{height:64.775391px;}
.h9{height:65.645508px;}
.h13{height:70.628906px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h11{height:74.004654px;}
.h2{height:82.441406px;}
.h15{height:86.338763px;}
.hd{height:207.030000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1d{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x22{left:69.599987px;}
.x1e{left:95.699987px;}
.x1c{left:100.200000px;}
.x1b{left:104.700000px;}
.xd{left:106.980000px;}
.x10{left:110.099987px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x11{left:392.024987px;}
.x13{left:404.774987px;}
.x17{left:427.874987px;}
.x1f{left:457.274987px;}
.x21{left:484.274987px;}
.x20{left:510.374987px;}
.x24{left:537.374987px;}
.x25{left:564.374987px;}
.x19{left:572.624987px;}
.x14{left:595.574987px;}
.x16{left:601.124987px;}
.x1a{left:610.574987px;}
.xc{left:625.425000px;}
.x12{left:654.569987px;}
.x18{left:694.619987px;}
.xf{left:713.655000px;}
.x2{left:829.619987px;}
.x15{left:850.619987px;}
.x23{left:869.069987px;}
@media print{
.v1{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.ls8{letter-spacing:-2.666667pt;}
.lsa{letter-spacing:-2.661333pt;}
.ls7{letter-spacing:-2.656000pt;}
.ls9{letter-spacing:-2.400000pt;}
.ls23{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.010667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls16{letter-spacing:0.026667pt;}
.ls1a{letter-spacing:0.053333pt;}
.ls10{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.117333pt;}
.ls5{letter-spacing:0.133333pt;}
.ls17{letter-spacing:0.149333pt;}
.ls13{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls1d{letter-spacing:17.600000pt;}
.lsc{letter-spacing:17.765333pt;}
.ls11{letter-spacing:18.274667pt;}
.lse{letter-spacing:18.808000pt;}
.ls1e{letter-spacing:19.786667pt;}
.lsb{letter-spacing:21.421333pt;}
.lsf{letter-spacing:21.954667pt;}
.ls1c{letter-spacing:30.208000pt;}
.ls1f{letter-spacing:30.400000pt;}
.ls1b{letter-spacing:41.066667pt;}
.ls20{letter-spacing:46.208000pt;}
.ls19{letter-spacing:54.506667pt;}
.ls22{letter-spacing:77.909333pt;}
.ls21{letter-spacing:115.242667pt;}
.ls18{letter-spacing:126.208000pt;}
.ls12{letter-spacing:139.008000pt;}
.ls14{letter-spacing:150.506667pt;}
.wsb{word-spacing:-64.000000pt;}
.wse{word-spacing:-63.744000pt;}
.wsc{word-spacing:-49.408000pt;}
.wsd{word-spacing:-45.333333pt;}
.ws11{word-spacing:-18.666667pt;}
.ws10{word-spacing:-16.149333pt;}
.wsf{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.ws12{word-spacing:-14.666667pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsa{word-spacing:0.000000pt;}
._24{margin-left:-6.581333pt;}
._25{margin-left:-5.258667pt;}
._1b{margin-left:-4.160000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._4{width:2.432000pt;}
._5{width:3.392000pt;}
._23{width:4.629333pt;}
._13{width:5.824000pt;}
._21{width:6.848000pt;}
._1f{width:7.936000pt;}
._a{width:9.536000pt;}
._b{width:10.528000pt;}
._e{width:12.288000pt;}
._f{width:13.312000pt;}
._43{width:14.208000pt;}
._12{width:15.104000pt;}
._8{width:17.344000pt;}
._9{width:19.072000pt;}
._18{width:20.032000pt;}
._2b{width:21.018667pt;}
._34{width:22.016000pt;}
._20{width:23.168000pt;}
._c{width:24.192000pt;}
._29{width:25.797333pt;}
._2a{width:26.752000pt;}
._42{width:27.834667pt;}
._2f{width:28.736000pt;}
._30{width:29.994667pt;}
._39{width:31.424000pt;}
._6{width:33.344000pt;}
._7{width:34.410667pt;}
._10{width:35.440000pt;}
._11{width:36.368000pt;}
._1d{width:37.392000pt;}
._41{width:38.298667pt;}
._1a{width:39.424000pt;}
._1c{width:40.512000pt;}
._16{width:41.984000pt;}
._17{width:43.072000pt;}
._2c{width:44.032000pt;}
._d{width:45.632000pt;}
._27{width:46.912000pt;}
._28{width:47.936000pt;}
._32{width:49.728000pt;}
._33{width:51.328000pt;}
._2d{width:52.485333pt;}
._2e{width:53.605333pt;}
._14{width:54.570667pt;}
._15{width:55.509333pt;}
._1e{width:57.408000pt;}
._44{width:58.624000pt;}
._45{width:59.840000pt;}
._46{width:61.114667pt;}
._47{width:62.832000pt;}
._22{width:63.808000pt;}
._19{width:64.896000pt;}
._26{width:66.112000pt;}
._3a{width:69.696000pt;}
._3b{width:70.837333pt;}
._3f{width:78.016000pt;}
._40{width:87.040000pt;}
._3c{width:91.136000pt;}
._31{width:104.960000pt;}
._37{width:130.496000pt;}
._35{width:132.096000pt;}
._38{width:133.312000pt;}
._3d{width:134.528000pt;}
._3e{width:135.424000pt;}
._36{width:193.920000pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y26{bottom:3.466667pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y25{bottom:21.866667pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y24{bottom:40.266667pt;}
.y3{bottom:51.233333pt;}
.y23{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y22{bottom:77.106667pt;}
.y21{bottom:95.506667pt;}
.yfc{bottom:103.500000pt;}
.ybd{bottom:108.166667pt;}
.yeb{bottom:108.966667pt;}
.y3b{bottom:109.366667pt;}
.y91{bottom:112.566667pt;}
.y20{bottom:113.906667pt;}
.y11a{bottom:116.433333pt;}
.yfb{bottom:124.566667pt;}
.ybc{bottom:124.966667pt;}
.y66{bottom:126.033333pt;}
.yea{bottom:130.166667pt;}
.y3a{bottom:130.566667pt;}
.y1f{bottom:132.306667pt;}
.y119{bottom:133.373333pt;}
.y90{bottom:133.773333pt;}
.ybb{bottom:141.906667pt;}
.yfa{bottom:145.773333pt;}
.y65{bottom:147.226667pt;}
.y1e{bottom:150.706667pt;}
.ye9{bottom:151.240000pt;}
.y39{bottom:151.773333pt;}
.y118{bottom:153.906667pt;}
.y8f{bottom:154.973333pt;}
.yba{bottom:158.706667pt;}
.yf9{bottom:166.973333pt;}
.y64{bottom:168.293333pt;}
.y1d{bottom:169.106667pt;}
.y117{bottom:170.840000pt;}
.ye8{bottom:172.440000pt;}
.y38{bottom:172.840000pt;}
.yb9{bottom:175.640000pt;}
.y8e{bottom:176.173333pt;}
.yf8{bottom:188.040000pt;}
.y63{bottom:189.506667pt;}
.y116{bottom:191.373333pt;}
.yb8{bottom:192.440000pt;}
.ye7{bottom:193.640000pt;}
.y37{bottom:194.040000pt;}
.y8d{bottom:197.240000pt;}
.y115{bottom:208.306667pt;}
.yf7{bottom:209.240000pt;}
.yb7{bottom:209.373333pt;}
.y62{bottom:210.706667pt;}
.ye6{bottom:214.706667pt;}
.y36{bottom:215.240000pt;}
.y8c{bottom:218.440000pt;}
.y114{bottom:225.106667pt;}
.yb6{bottom:226.173333pt;}
.yf6{bottom:230.440000pt;}
.y61{bottom:231.773333pt;}
.ye5{bottom:235.906667pt;}
.y35{bottom:236.306667pt;}
.y8b{bottom:239.640000pt;}
.yb5{bottom:243.106667pt;}
.y113{bottom:245.773333pt;}
.yf5{bottom:251.506667pt;}
.y60{bottom:252.973333pt;}
.ye4{bottom:257.106667pt;}
.y34{bottom:257.506667pt;}
.yb4{bottom:259.906667pt;}
.y8a{bottom:260.706667pt;}
.y112{bottom:262.573333pt;}
.yf4{bottom:272.706667pt;}
.y5f{bottom:274.173333pt;}
.yb3{bottom:276.840000pt;}
.ye3{bottom:278.173333pt;}
.y33{bottom:278.706667pt;}
.y111{bottom:279.506667pt;}
.y89{bottom:281.893333pt;}
.yb2{bottom:293.640000pt;}
.yf3{bottom:293.893333pt;}
.y5e{bottom:295.240000pt;}
.y110{bottom:296.306667pt;}
.ye2{bottom:299.373333pt;}
.y32{bottom:299.773333pt;}
.y88{bottom:303.106667pt;}
.yb1{bottom:310.573333pt;}
.yf2{bottom:315.106667pt;}
.y5d{bottom:316.440000pt;}
.y10f{bottom:316.973333pt;}
.ye1{bottom:320.560000pt;}
.y31{bottom:320.960000pt;}
.y87{bottom:324.173333pt;}
.yb0{bottom:327.373333pt;}
.y10e{bottom:333.773333pt;}
.yf1{bottom:336.173333pt;}
.y5c{bottom:337.666667pt;}
.ye0{bottom:341.666667pt;}
.y30{bottom:342.200000pt;}
.yaf{bottom:344.333333pt;}
.y86{bottom:345.400000pt;}
.y10d{bottom:350.733333pt;}
.yf0{bottom:357.400000pt;}
.y5b{bottom:358.866667pt;}
.yae{bottom:361.133333pt;}
.ydf{bottom:362.866667pt;}
.y2f{bottom:363.266667pt;}
.y85{bottom:366.600000pt;}
.y10c{bottom:367.533333pt;}
.yad{bottom:378.066667pt;}
.yef{bottom:378.600000pt;}
.y5a{bottom:379.933333pt;}
.yde{bottom:384.066667pt;}
.y2e{bottom:384.466667pt;}
.y84{bottom:387.666667pt;}
.y10b{bottom:388.200000pt;}
.yac{bottom:394.866667pt;}
.yee{bottom:399.666667pt;}
.y59{bottom:401.133333pt;}
.y10a{bottom:405.000000pt;}
.ydd{bottom:405.133333pt;}
.y2d{bottom:405.666667pt;}
.y83{bottom:408.866667pt;}
.yab{bottom:411.800000pt;}
.yed{bottom:420.866667pt;}
.y109{bottom:421.933333pt;}
.y58{bottom:422.333333pt;}
.ydc{bottom:426.333333pt;}
.y2c{bottom:426.733333pt;}
.yaa{bottom:428.600000pt;}
.y82{bottom:430.066667pt;}
.yec{bottom:438.600000pt;}
.y108{bottom:442.466667pt;}
.y57{bottom:443.400000pt;}
.ya9{bottom:445.533333pt;}
.ydb{bottom:447.533333pt;}
.y2b{bottom:447.933333pt;}
.y81{bottom:451.133333pt;}
.y107{bottom:459.400000pt;}
.ya8{bottom:462.333333pt;}
.y56{bottom:464.600000pt;}
.yda{bottom:468.733333pt;}
.y2a{bottom:469.133333pt;}
.y80{bottom:472.333333pt;}
.y106{bottom:476.200000pt;}
.ya7{bottom:479.266667pt;}
.y55{bottom:485.800000pt;}
.yd9{bottom:489.800000pt;}
.y7f{bottom:493.533333pt;}
.ya6{bottom:496.066667pt;}
.y105{bottom:496.866667pt;}
.y29{bottom:498.200000pt;}
.y54{bottom:506.866667pt;}
.yd8{bottom:511.000000pt;}
.ya5{bottom:513.000000pt;}
.y28{bottom:513.133333pt;}
.y104{bottom:513.666667pt;}
.y7e{bottom:514.733333pt;}
.y53{bottom:528.066667pt;}
.ya4{bottom:529.800000pt;}
.y103{bottom:530.600000pt;}
.yd7{bottom:532.200000pt;}
.y7d{bottom:535.800000pt;}
.ya3{bottom:546.733333pt;}
.y52{bottom:549.266667pt;}
.y102{bottom:551.133333pt;}
.yd6{bottom:553.266667pt;}
.y7c{bottom:557.000000pt;}
.ya2{bottom:563.533333pt;}
.y101{bottom:568.066667pt;}
.y27{bottom:568.333333pt;}
.y51{bottom:570.333333pt;}
.yd5{bottom:574.466667pt;}
.y7b{bottom:578.200000pt;}
.ya1{bottom:580.333333pt;}
.y100{bottom:584.866667pt;}
.y1c{bottom:586.733333pt;}
.y50{bottom:591.533333pt;}
.yd4{bottom:595.666667pt;}
.ya0{bottom:597.266667pt;}
.y7a{bottom:599.266667pt;}
.yff{bottom:605.533333pt;}
.y4f{bottom:612.733333pt;}
.y9f{bottom:614.066667pt;}
.yd3{bottom:616.733333pt;}
.y79{bottom:620.466667pt;}
.yfe{bottom:622.333333pt;}
.y9e{bottom:631.000000pt;}
.y4e{bottom:633.800000pt;}
.yd2{bottom:637.933333pt;}
.yfd{bottom:639.266667pt;}
.y78{bottom:641.666667pt;}
.y9d{bottom:647.800000pt;}
.y4d{bottom:655.000000pt;}
.yd1{bottom:659.173333pt;}
.y77{bottom:662.773333pt;}
.y9c{bottom:664.773333pt;}
.y4c{bottom:676.240000pt;}
.yd0{bottom:680.240000pt;}
.y9b{bottom:681.573333pt;}
.y76{bottom:683.973333pt;}
.y4b{bottom:697.440000pt;}
.y9a{bottom:698.506667pt;}
.ycf{bottom:701.440000pt;}
.y75{bottom:705.173333pt;}
.y99{bottom:715.306667pt;}
.y4a{bottom:718.506667pt;}
.yce{bottom:722.626667pt;}
.y74{bottom:726.240000pt;}
.y98{bottom:732.240000pt;}
.y49{bottom:739.706667pt;}
.ycd{bottom:743.706667pt;}
.y73{bottom:747.440000pt;}
.y97{bottom:749.040000pt;}
.y48{bottom:760.906667pt;}
.ycc{bottom:764.906667pt;}
.y96{bottom:765.973333pt;}
.y72{bottom:768.640000pt;}
.y1b{bottom:773.973333pt;}
.y47{bottom:781.973333pt;}
.y95{bottom:782.773333pt;}
.ycb{bottom:786.106667pt;}
.y71{bottom:789.706667pt;}
.y1a{bottom:791.040000pt;}
.y94{bottom:799.706667pt;}
.y46{bottom:803.173333pt;}
.yca{bottom:807.306667pt;}
.y19{bottom:809.440000pt;}
.y70{bottom:810.906667pt;}
.y93{bottom:816.506667pt;}
.y45{bottom:824.373333pt;}
.y18{bottom:827.840000pt;}
.yc9{bottom:828.373333pt;}
.y6f{bottom:832.106667pt;}
.y92{bottom:833.440000pt;}
.y44{bottom:845.440000pt;}
.y17{bottom:846.240000pt;}
.yc8{bottom:849.573333pt;}
.y6e{bottom:853.306667pt;}
.y16{bottom:864.640000pt;}
.y43{bottom:866.640000pt;}
.yc7{bottom:870.773333pt;}
.y6d{bottom:874.373333pt;}
.y15{bottom:883.040000pt;}
.y42{bottom:887.840000pt;}
.yc6{bottom:888.906667pt;}
.y6c{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.yc5{bottom:905.840000pt;}
.y41{bottom:908.906667pt;}
.y6b{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.yc4{bottom:922.640000pt;}
.y40{bottom:930.106667pt;}
.y6a{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.yc3{bottom:939.573333pt;}
.y3f{bottom:951.306667pt;}
.yc2{bottom:956.373333pt;}
.y11{bottom:956.640000pt;}
.y69{bottom:959.040000pt;}
.y3e{bottom:972.373333pt;}
.yc1{bottom:973.306667pt;}
.y10{bottom:975.066667pt;}
.y68{bottom:980.266667pt;}
.yc0{bottom:990.133333pt;}
.y3d{bottom:995.733333pt;}
.y67{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.ybf{bottom:1007.066667pt;}
.y3c{bottom:1020.800000pt;}
.ye{bottom:1022.533333pt;}
.ybe{bottom:1023.866667pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.hf{height:18.400000pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.he{height:44.875000pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h12{height:54.818262pt;}
.h10{height:55.200000pt;}
.h14{height:57.549479pt;}
.hc{height:57.578125pt;}
.h9{height:58.351562pt;}
.h13{height:62.781250pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h11{height:65.781915pt;}
.h2{height:73.281250pt;}
.h15{height:76.745567pt;}
.hd{height:184.026667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1d{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x22{left:61.866655pt;}
.x1e{left:85.066655pt;}
.x1c{left:89.066667pt;}
.x1b{left:93.066667pt;}
.xd{left:95.093333pt;}
.x10{left:97.866655pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x11{left:348.466655pt;}
.x13{left:359.799988pt;}
.x17{left:380.333322pt;}
.x1f{left:406.466655pt;}
.x21{left:430.466655pt;}
.x20{left:453.666655pt;}
.x24{left:477.666655pt;}
.x25{left:501.666655pt;}
.x19{left:508.999988pt;}
.x14{left:529.399988pt;}
.x16{left:534.333322pt;}
.x1a{left:542.733322pt;}
.xc{left:555.933333pt;}
.x12{left:581.839988pt;}
.x18{left:617.439988pt;}
.xf{left:634.360000pt;}
.x2{left:737.439988pt;}
.x15{left:756.106655pt;}
.x23{left:772.506655pt;}
}




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