
    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_0de737de3017089962bb0a45.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1c049e7062f32e88704dfc92.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d2c248673594ce30e20cb549.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_09d521bebc80ea2a24096cb1.woff2')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_0cd9ea49045f13d57e32ad14.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_7b3f8aa430bbf747768813a9.woff2')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_568a7e1c0581c39fab61b0a9.woff2')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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.000000px;}
.ls7{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.168480px;}
.ls4{letter-spacing:2.520000px;}
.lsb{letter-spacing:14.400000px;}
.lsa{letter-spacing:17.640000px;}
.ls9{letter-spacing:49.725360px;}
.ls6{letter-spacing:63.864000px;}
.ls3{letter-spacing:63.984000px;}
.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;}
}
.ws0{word-spacing:-20.970000px;}
.ws6{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.856000px;}
.ws4{word-spacing:-11.951280px;}
.ws1{word-spacing:0.000000px;}
._22{margin-left:-5.112000px;}
._19{margin-left:-3.960000px;}
._18{margin-left:-2.808000px;}
._14{margin-left:-1.152000px;}
._0{width:1.006560px;}
._15{width:2.377440px;}
._17{width:3.670560px;}
._1e{width:5.113440px;}
._21{width:6.192000px;}
._16{width:7.200000px;}
._1c{width:9.097440px;}
._1b{width:10.152000px;}
._1d{width:11.568000px;}
._25{width:12.624000px;}
._26{width:14.184000px;}
._1a{width:15.480000px;}
._27{width:16.488000px;}
._24{width:19.368000px;}
._23{width:20.640000px;}
._20{width:21.768000px;}
._1f{width:22.872000px;}
._2c{width:24.024000px;}
._2b{width:25.032000px;}
._43{width:26.376000px;}
._2d{width:28.008000px;}
._2e{width:29.064000px;}
._41{width:30.120000px;}
._13{width:31.608000px;}
._31{width:32.760000px;}
._46{width:33.768000px;}
._29{width:35.640000px;}
._28{width:36.864000px;}
._4d{width:38.520000px;}
._40{width:39.960000px;}
._2a{width:45.792000px;}
._4b{width:48.528000px;}
._4a{width:51.408000px;}
._49{width:52.488000px;}
._42{width:53.640000px;}
._35{width:54.648000px;}
._3f{width:57.312000px;}
._45{width:60.696000px;}
._3d{width:64.368000px;}
._32{width:67.867320px;}
._4c{width:69.984000px;}
._3c{width:80.640000px;}
._3b{width:83.016000px;}
._39{width:106.632000px;}
._3a{width:114.624000px;}
._47{width:117.576000px;}
._37{width:118.656000px;}
._38{width:130.320000px;}
._34{width:142.632000px;}
._44{width:149.328000px;}
._36{width:150.624000px;}
._33{width:166.320000px;}
._3e{width:189.504000px;}
._48{width:241.920000px;}
._1{width:846.114600px;}
._3{width:865.392000px;}
._4{width:1057.584000px;}
._a{width:1097.520000px;}
._5{width:1257.528000px;}
._9{width:1297.392000px;}
._10{width:1361.568000px;}
._6{width:1421.592000px;}
._f{width:1429.536000px;}
._b{width:1519.440000px;}
._8{width:1567.416000px;}
._d{width:1661.448000px;}
._7{width:1707.456000px;}
._e{width:1773.336000px;}
._11{width:1825.368000px;}
._2{width:1857.480000px;}
._c{width:1869.312000px;}
._12{width:1885.416000px;}
._2f{width:2548.320000px;}
._30{width:2633.640000px;}
.fc3{color:rgb(255,0,0);}
.fc4{color:rgb(17,17,17);}
.fc2{color:rgb(136,136,136);}
.fc1{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.880000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yd4{bottom:3.870000px;}
.yd1{bottom:16.200000px;}
.yd3{bottom:24.570000px;}
.yf9{bottom:45.270000px;}
.y112{bottom:65.880000px;}
.yf8{bottom:65.970000px;}
.y111{bottom:86.580000px;}
.yf7{bottom:86.670000px;}
.y110{bottom:107.280000px;}
.yf6{bottom:107.370000px;}
.y9f{bottom:111.810000px;}
.y5b{bottom:113.070000px;}
.y80{bottom:114.150000px;}
.ye8{bottom:117.840000px;}
.ycd{bottom:118.200000px;}
.y9e{bottom:118.560000px;}
.y113{bottom:118.920000px;}
.y79{bottom:125.220000px;}
.y1f{bottom:125.760000px;}
.y10f{bottom:127.980000px;}
.yf5{bottom:128.070000px;}
.y139{bottom:130.170000px;}
.y9d{bottom:131.880000px;}
.ybf{bottom:135.120000px;}
.y3c{bottom:140.790000px;}
.y5a{bottom:144.120000px;}
.y7f{bottom:145.200000px;}
.y10e{bottom:148.680000px;}
.yf4{bottom:148.770000px;}
.y11e{bottom:148.800000px;}
.ycc{bottom:149.250000px;}
.y9c{bottom:149.700000px;}
.y134{bottom:152.040000px;}
.ye7{bottom:155.100000px;}
.y78{bottom:156.270000px;}
.y9b{bottom:156.450000px;}
.y138{bottom:161.220000px;}
.y1e{bottom:162.030000px;}
.ybe{bottom:166.170000px;}
.y10d{bottom:169.380000px;}
.yf3{bottom:169.470000px;}
.y11d{bottom:169.500000px;}
.y9a{bottom:170.400000px;}
.y3b{bottom:171.840000px;}
.y59{bottom:175.170000px;}
.y7e{bottom:176.250000px;}
.ycb{bottom:180.300000px;}
.y133{bottom:183.090000px;}
.y77{bottom:187.320000px;}
.y10c{bottom:190.080000px;}
.yf2{bottom:190.170000px;}
.y11c{bottom:190.200000px;}
.ye6{bottom:192.270000px;}
.ybd{bottom:197.220000px;}
.yfa{bottom:197.580000px;}
.y1d{bottom:198.210000px;}
.y3a{bottom:202.890000px;}
.y58{bottom:206.220000px;}
.y7d{bottom:207.300000px;}
.y10b{bottom:210.780000px;}
.yf1{bottom:210.870000px;}
.y11b{bottom:210.900000px;}
.yca{bottom:211.260000px;}
.y132{bottom:214.140000px;}
.yc4{bottom:218.370000px;}
.y137{bottom:223.320000px;}
.y76{bottom:227.370000px;}
.ybc{bottom:228.270000px;}
.y10a{bottom:231.480000px;}
.yf0{bottom:231.570000px;}
.y115{bottom:231.600000px;}
.y39{bottom:233.940000px;}
.y1c{bottom:234.480000px;}
.ye5{bottom:236.190000px;}
.y57{bottom:237.270000px;}
.y7c{bottom:238.260000px;}
.yc9{bottom:242.310000px;}
.y131{bottom:245.190000px;}
.y109{bottom:252.180000px;}
.yef{bottom:252.300000px;}
.y136{bottom:254.370000px;}
.yc3{bottom:258.420000px;}
.ybb{bottom:259.320000px;}
.y38{bottom:264.990000px;}
.ye4{bottom:267.240000px;}
.y56{bottom:268.320000px;}
.y7b{bottom:269.310000px;}
.y1b{bottom:270.660000px;}
.y108{bottom:272.910000px;}
.yee{bottom:273.000000px;}
.yc8{bottom:273.360000px;}
.y130{bottom:276.240000px;}
.y75{bottom:285.420000px;}
.yba{bottom:290.370000px;}
.y107{bottom:293.610000px;}
.yed{bottom:293.700000px;}
.y37{bottom:296.040000px;}
.ye3{bottom:298.290000px;}
.y55{bottom:299.370000px;}
.y99{bottom:300.360000px;}
.yc7{bottom:304.410000px;}
.y7a{bottom:306.390000px;}
.y1a{bottom:306.930000px;}
.y12f{bottom:307.290000px;}
.y106{bottom:314.310000px;}
.yec{bottom:314.400000px;}
.y74{bottom:316.470000px;}
.yb9{bottom:321.420000px;}
.y116{bottom:321.690000px;}
.y36{bottom:327.090000px;}
.y54{bottom:330.420000px;}
.y98{bottom:331.410000px;}
.y105{bottom:335.010000px;}
.yeb{bottom:335.100000px;}
.ye2{bottom:335.280000px;}
.y12e{bottom:338.340000px;}
.yc6{bottom:341.490000px;}
.y19{bottom:343.110000px;}
.y73{bottom:347.520000px;}
.yb8{bottom:352.470000px;}
.y104{bottom:355.710000px;}
.yea{bottom:355.800000px;}
.y35{bottom:358.140000px;}
.y53{bottom:361.470000px;}
.y97{bottom:362.460000px;}
.y12d{bottom:369.390000px;}
.y103{bottom:376.410000px;}
.y11a{bottom:376.500000px;}
.y72{bottom:378.570000px;}
.y18{bottom:379.380000px;}
.yb7{bottom:383.520000px;}
.y34{bottom:389.190000px;}
.ye1{bottom:390.360000px;}
.y52{bottom:392.520000px;}
.y96{bottom:393.510000px;}
.yc5{bottom:396.570000px;}
.y102{bottom:397.110000px;}
.y119{bottom:397.200000px;}
.y12c{bottom:400.440000px;}
.y71{bottom:409.620000px;}
.yb6{bottom:414.570000px;}
.y17{bottom:415.560000px;}
.y101{bottom:417.810000px;}
.y118{bottom:417.900000px;}
.y33{bottom:420.240000px;}
.ye0{bottom:421.410000px;}
.y51{bottom:423.570000px;}
.y95{bottom:424.560000px;}
.y12b{bottom:431.490000px;}
.y100{bottom:438.510000px;}
.y117{bottom:438.600000px;}
.y70{bottom:440.670000px;}
.yb5{bottom:445.620000px;}
.y16{bottom:449.400000px;}
.ydf{bottom:452.460000px;}
.y50{bottom:454.620000px;}
.y94{bottom:455.610000px;}
.y32{bottom:458.760000px;}
.yff{bottom:459.210000px;}
.y12a{bottom:462.540000px;}
.y6f{bottom:471.750000px;}
.yb4{bottom:476.700000px;}
.yfe{bottom:479.910000px;}
.y15{bottom:480.480000px;}
.yde{bottom:483.540000px;}
.y4f{bottom:485.700000px;}
.y93{bottom:486.690000px;}
.y129{bottom:493.620000px;}
.y31{bottom:497.310000px;}
.yfd{bottom:500.610000px;}
.y6e{bottom:502.800000px;}
.yb3{bottom:507.750000px;}
.y14{bottom:511.530000px;}
.ydd{bottom:514.590000px;}
.y4e{bottom:516.750000px;}
.y92{bottom:517.740000px;}
.y13a{bottom:520.800000px;}
.yfc{bottom:521.310000px;}
.y128{bottom:524.670000px;}
.y6d{bottom:533.850000px;}
.y30{bottom:535.920000px;}
.yb2{bottom:538.800000px;}
.yfb{bottom:542.010000px;}
.y13{bottom:542.580000px;}
.ydc{bottom:545.640000px;}
.y4d{bottom:547.800000px;}
.y91{bottom:548.790000px;}
.y127{bottom:555.720000px;}
.y6c{bottom:564.810000px;}
.yb1{bottom:569.850000px;}
.y12{bottom:573.630000px;}
.y2f{bottom:574.440000px;}
.ydb{bottom:576.690000px;}
.y4c{bottom:578.850000px;}
.y90{bottom:579.840000px;}
.y126{bottom:586.770000px;}
.y6b{bottom:595.860000px;}
.yb0{bottom:600.810000px;}
.y11{bottom:604.680000px;}
.yda{bottom:607.740000px;}
.y4b{bottom:609.810000px;}
.y8f{bottom:610.890000px;}
.y2e{bottom:612.960000px;}
.y125{bottom:617.820000px;}
.y6a{bottom:626.910000px;}
.yaf{bottom:631.860000px;}
.y10{bottom:635.730000px;}
.y4a{bottom:640.860000px;}
.y8e{bottom:641.940000px;}
.yd9{bottom:644.730000px;}
.y124{bottom:648.870000px;}
.y2d{bottom:651.570000px;}
.y69{bottom:657.960000px;}
.yae{bottom:662.910000px;}
.yf{bottom:666.780000px;}
.y49{bottom:671.910000px;}
.y8d{bottom:672.990000px;}
.y123{bottom:679.920000px;}
.y68{bottom:689.010000px;}
.y2c{bottom:690.090000px;}
.yad{bottom:693.960000px;}
.ye{bottom:697.830000px;}
.yd8{bottom:699.810000px;}
.y48{bottom:702.960000px;}
.y8c{bottom:704.040000px;}
.y122{bottom:716.910000px;}
.y67{bottom:720.060000px;}
.yac{bottom:725.010000px;}
.yd7{bottom:725.640000px;}
.y2b{bottom:728.610000px;}
.yd{bottom:728.880000px;}
.y47{bottom:734.010000px;}
.y8b{bottom:735.090000px;}
.y66{bottom:751.110000px;}
.yab{bottom:756.060000px;}
.yc{bottom:759.930000px;}
.y46{bottom:765.060000px;}
.y8a{bottom:766.140000px;}
.y2a{bottom:767.220000px;}
.y121{bottom:771.990000px;}
.ye9{bottom:772.890000px;}
.y65{bottom:782.160000px;}
.yd6{bottom:783.600000px;}
.yaa{bottom:787.110000px;}
.yb{bottom:790.980000px;}
.y114{bottom:793.590000px;}
.y45{bottom:796.110000px;}
.y89{bottom:797.190000px;}
.y120{bottom:797.820000px;}
.y29{bottom:805.740000px;}
.y64{bottom:813.210000px;}
.ya9{bottom:818.160000px;}
.ya{bottom:822.030000px;}
.y44{bottom:827.160000px;}
.y88{bottom:828.240000px;}
.yc2{bottom:831.210000px;}
.yd5{bottom:841.470000px;}
.y28{bottom:844.260000px;}
.ya8{bottom:849.210000px;}
.y9{bottom:853.080000px;}
.y43{bottom:858.210000px;}
.y87{bottom:859.290000px;}
.y63{bottom:875.310000px;}
.ya7{bottom:880.260000px;}
.y27{bottom:882.870000px;}
.y8{bottom:884.130000px;}
.y42{bottom:889.260000px;}
.y86{bottom:890.340000px;}
.yd2{bottom:899.340000px;}
.y62{bottom:906.360000px;}
.ya6{bottom:911.310000px;}
.y7{bottom:917.520000px;}
.y41{bottom:920.310000px;}
.y26{bottom:921.390000px;}
.y135{bottom:924.360000px;}
.y61{bottom:937.410000px;}
.ya5{bottom:942.360000px;}
.y40{bottom:951.360000px;}
.y84{bottom:952.440000px;}
.y6{bottom:953.790000px;}
.yd0{bottom:957.210000px;}
.yc0{bottom:958.380000px;}
.y85{bottom:959.190000px;}
.y25{bottom:959.910000px;}
.y60{bottom:968.460000px;}
.ya4{bottom:973.410000px;}
.y3f{bottom:982.410000px;}
.y82{bottom:983.490000px;}
.yc1{bottom:989.430000px;}
.y5{bottom:989.970000px;}
.y83{bottom:990.240000px;}
.y24{bottom:998.430000px;}
.y5f{bottom:999.510000px;}
.ya3{bottom:1004.460000px;}
.y3e{bottom:1013.490000px;}
.ycf{bottom:1014.570000px;}
.y81{bottom:1020.510000px;}
.y4{bottom:1026.270000px;}
.y5e{bottom:1030.590000px;}
.ya2{bottom:1035.540000px;}
.y23{bottom:1037.070000px;}
.y11f{bottom:1042.020000px;}
.y3d{bottom:1044.540000px;}
.yce{bottom:1051.560000px;}
.y5d{bottom:1061.640000px;}
.y3{bottom:1062.450000px;}
.ya1{bottom:1066.590000px;}
.y22{bottom:1075.590000px;}
.ya0{bottom:1097.640000px;}
.y2{bottom:1098.720000px;}
.y21{bottom:1106.640000px;}
.y5c{bottom:1110.690000px;}
.y1{bottom:1134.900000px;}
.y20{bottom:1137.690000px;}
.hd{height:20.700000px;}
.hb{height:33.030000px;}
.hc{height:41.400000px;}
.h6{height:46.991602px;}
.h7{height:59.004492px;}
.h11{height:62.100000px;}
.h9{height:64.546875px;}
.h10{height:70.628906px;}
.h4{height:70.664062px;}
.h5{height:72.562500px;}
.ha{height:73.991602px;}
.h8{height:75.093750px;}
.h3{height:82.323633px;}
.h2{height:84.535312px;}
.h15{height:103.500000px;}
.h14{height:186.300000px;}
.h16{height:227.730000px;}
.h12{height:351.930000px;}
.he{height:372.630000px;}
.h13{height:455.430000px;}
.hf{height:558.840000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:132.390000px;}
.w5{width:133.860000px;}
.w6{width:133.920000px;}
.w7{width:133.950000px;}
.w9{width:151.500000px;}
.wb{width:387.840000px;}
.w8{width:674.700000px;}
.w4{width:675.690000px;}
.w3{width:893.159973px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:6.750000px;}
.x20{left:28.080000px;}
.x12{left:107.999987px;}
.x1f{left:109.530000px;}
.x2{left:120.329987px;}
.x7{left:129.329987px;}
.x1{left:133.289987px;}
.x19{left:135.359987px;}
.x6{left:144.809987px;}
.x10{left:147.329987px;}
.x5{left:148.499987px;}
.x1d{left:162.029987px;}
.x11{left:165.359987px;}
.x1e{left:189.029987px;}
.xc{left:228.809987px;}
.x21{left:244.920000px;}
.x26{left:262.560000px;}
.xb{left:266.339987px;}
.x17{left:270.029987px;}
.xa{left:301.079987px;}
.x8{left:303.149987px;}
.x9{left:312.779987px;}
.xd{left:314.219987px;}
.x18{left:345.359987px;}
.xe{left:350.939987px;}
.x3{left:356.609987px;}
.x22{left:380.370000px;}
.x27{left:396.390000px;}
.xf{left:417.629987px;}
.x15{left:441.659973px;}
.x16{left:447.689987px;}
.x4{left:450.119987px;}
.x1a{left:458.939987px;}
.x1b{left:502.769987px;}
.x23{left:515.850000px;}
.x13{left:647.519973px;}
.x24{left:651.300000px;}
.x14{left:653.549987px;}
.x1c{left:770.909987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.ls7{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.149760pt;}
.ls4{letter-spacing:2.240000pt;}
.lsb{letter-spacing:12.800000pt;}
.lsa{letter-spacing:15.680000pt;}
.ls9{letter-spacing:44.200320pt;}
.ls6{letter-spacing:56.768000pt;}
.ls3{letter-spacing:56.874667pt;}
.ws0{word-spacing:-18.640000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws4{word-spacing:-10.623360pt;}
.ws1{word-spacing:0.000000pt;}
._22{margin-left:-4.544000pt;}
._19{margin-left:-3.520000pt;}
._18{margin-left:-2.496000pt;}
._14{margin-left:-1.024000pt;}
._0{width:0.894720pt;}
._15{width:2.113280pt;}
._17{width:3.262720pt;}
._1e{width:4.545280pt;}
._21{width:5.504000pt;}
._16{width:6.400000pt;}
._1c{width:8.086613pt;}
._1b{width:9.024000pt;}
._1d{width:10.282667pt;}
._25{width:11.221333pt;}
._26{width:12.608000pt;}
._1a{width:13.760000pt;}
._27{width:14.656000pt;}
._24{width:17.216000pt;}
._23{width:18.346667pt;}
._20{width:19.349333pt;}
._1f{width:20.330667pt;}
._2c{width:21.354667pt;}
._2b{width:22.250667pt;}
._43{width:23.445333pt;}
._2d{width:24.896000pt;}
._2e{width:25.834667pt;}
._41{width:26.773333pt;}
._13{width:28.096000pt;}
._31{width:29.120000pt;}
._46{width:30.016000pt;}
._29{width:31.680000pt;}
._28{width:32.768000pt;}
._4d{width:34.240000pt;}
._40{width:35.520000pt;}
._2a{width:40.704000pt;}
._4b{width:43.136000pt;}
._4a{width:45.696000pt;}
._49{width:46.656000pt;}
._42{width:47.680000pt;}
._35{width:48.576000pt;}
._3f{width:50.944000pt;}
._45{width:53.952000pt;}
._3d{width:57.216000pt;}
._32{width:60.326507pt;}
._4c{width:62.208000pt;}
._3c{width:71.680000pt;}
._3b{width:73.792000pt;}
._39{width:94.784000pt;}
._3a{width:101.888000pt;}
._47{width:104.512000pt;}
._37{width:105.472000pt;}
._38{width:115.840000pt;}
._34{width:126.784000pt;}
._44{width:132.736000pt;}
._36{width:133.888000pt;}
._33{width:147.840000pt;}
._3e{width:168.448000pt;}
._48{width:215.040000pt;}
._1{width:752.101867pt;}
._3{width:769.237333pt;}
._4{width:940.074667pt;}
._a{width:975.573333pt;}
._5{width:1117.802667pt;}
._9{width:1153.237333pt;}
._10{width:1210.282667pt;}
._6{width:1263.637333pt;}
._f{width:1270.698667pt;}
._b{width:1350.613333pt;}
._8{width:1393.258667pt;}
._d{width:1476.842667pt;}
._7{width:1517.738667pt;}
._e{width:1576.298667pt;}
._11{width:1622.549333pt;}
._2{width:1651.093333pt;}
._c{width:1661.610667pt;}
._12{width:1675.925333pt;}
._2f{width:2265.173333pt;}
._30{width:2341.013333pt;}
.fs3{font-size:42.560000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yd4{bottom:3.440000pt;}
.yd1{bottom:14.400000pt;}
.yd3{bottom:21.840000pt;}
.yf9{bottom:40.240000pt;}
.y112{bottom:58.560000pt;}
.yf8{bottom:58.640000pt;}
.y111{bottom:76.960000pt;}
.yf7{bottom:77.040000pt;}
.y110{bottom:95.360000pt;}
.yf6{bottom:95.440000pt;}
.y9f{bottom:99.386667pt;}
.y5b{bottom:100.506667pt;}
.y80{bottom:101.466667pt;}
.ye8{bottom:104.746667pt;}
.ycd{bottom:105.066667pt;}
.y9e{bottom:105.386667pt;}
.y113{bottom:105.706667pt;}
.y79{bottom:111.306667pt;}
.y1f{bottom:111.786667pt;}
.y10f{bottom:113.760000pt;}
.yf5{bottom:113.840000pt;}
.y139{bottom:115.706667pt;}
.y9d{bottom:117.226667pt;}
.ybf{bottom:120.106667pt;}
.y3c{bottom:125.146667pt;}
.y5a{bottom:128.106667pt;}
.y7f{bottom:129.066667pt;}
.y10e{bottom:132.160000pt;}
.yf4{bottom:132.240000pt;}
.y11e{bottom:132.266667pt;}
.ycc{bottom:132.666667pt;}
.y9c{bottom:133.066667pt;}
.y134{bottom:135.146667pt;}
.ye7{bottom:137.866667pt;}
.y78{bottom:138.906667pt;}
.y9b{bottom:139.066667pt;}
.y138{bottom:143.306667pt;}
.y1e{bottom:144.026667pt;}
.ybe{bottom:147.706667pt;}
.y10d{bottom:150.560000pt;}
.yf3{bottom:150.640000pt;}
.y11d{bottom:150.666667pt;}
.y9a{bottom:151.466667pt;}
.y3b{bottom:152.746667pt;}
.y59{bottom:155.706667pt;}
.y7e{bottom:156.666667pt;}
.ycb{bottom:160.266667pt;}
.y133{bottom:162.746667pt;}
.y77{bottom:166.506667pt;}
.y10c{bottom:168.960000pt;}
.yf2{bottom:169.040000pt;}
.y11c{bottom:169.066667pt;}
.ye6{bottom:170.906667pt;}
.ybd{bottom:175.306667pt;}
.yfa{bottom:175.626667pt;}
.y1d{bottom:176.186667pt;}
.y3a{bottom:180.346667pt;}
.y58{bottom:183.306667pt;}
.y7d{bottom:184.266667pt;}
.y10b{bottom:187.360000pt;}
.yf1{bottom:187.440000pt;}
.y11b{bottom:187.466667pt;}
.yca{bottom:187.786667pt;}
.y132{bottom:190.346667pt;}
.yc4{bottom:194.106667pt;}
.y137{bottom:198.506667pt;}
.y76{bottom:202.106667pt;}
.ybc{bottom:202.906667pt;}
.y10a{bottom:205.760000pt;}
.yf0{bottom:205.840000pt;}
.y115{bottom:205.866667pt;}
.y39{bottom:207.946667pt;}
.y1c{bottom:208.426667pt;}
.ye5{bottom:209.946667pt;}
.y57{bottom:210.906667pt;}
.y7c{bottom:211.786667pt;}
.yc9{bottom:215.386667pt;}
.y131{bottom:217.946667pt;}
.y109{bottom:224.160000pt;}
.yef{bottom:224.266667pt;}
.y136{bottom:226.106667pt;}
.yc3{bottom:229.706667pt;}
.ybb{bottom:230.506667pt;}
.y38{bottom:235.546667pt;}
.ye4{bottom:237.546667pt;}
.y56{bottom:238.506667pt;}
.y7b{bottom:239.386667pt;}
.y1b{bottom:240.586667pt;}
.y108{bottom:242.586667pt;}
.yee{bottom:242.666667pt;}
.yc8{bottom:242.986667pt;}
.y130{bottom:245.546667pt;}
.y75{bottom:253.706667pt;}
.yba{bottom:258.106667pt;}
.y107{bottom:260.986667pt;}
.yed{bottom:261.066667pt;}
.y37{bottom:263.146667pt;}
.ye3{bottom:265.146667pt;}
.y55{bottom:266.106667pt;}
.y99{bottom:266.986667pt;}
.yc7{bottom:270.586667pt;}
.y7a{bottom:272.346667pt;}
.y1a{bottom:272.826667pt;}
.y12f{bottom:273.146667pt;}
.y106{bottom:279.386667pt;}
.yec{bottom:279.466667pt;}
.y74{bottom:281.306667pt;}
.yb9{bottom:285.706667pt;}
.y116{bottom:285.946667pt;}
.y36{bottom:290.746667pt;}
.y54{bottom:293.706667pt;}
.y98{bottom:294.586667pt;}
.y105{bottom:297.786667pt;}
.yeb{bottom:297.866667pt;}
.ye2{bottom:298.026667pt;}
.y12e{bottom:300.746667pt;}
.yc6{bottom:303.546667pt;}
.y19{bottom:304.986667pt;}
.y73{bottom:308.906667pt;}
.yb8{bottom:313.306667pt;}
.y104{bottom:316.186667pt;}
.yea{bottom:316.266667pt;}
.y35{bottom:318.346667pt;}
.y53{bottom:321.306667pt;}
.y97{bottom:322.186667pt;}
.y12d{bottom:328.346667pt;}
.y103{bottom:334.586667pt;}
.y11a{bottom:334.666667pt;}
.y72{bottom:336.506667pt;}
.y18{bottom:337.226667pt;}
.yb7{bottom:340.906667pt;}
.y34{bottom:345.946667pt;}
.ye1{bottom:346.986667pt;}
.y52{bottom:348.906667pt;}
.y96{bottom:349.786667pt;}
.yc5{bottom:352.506667pt;}
.y102{bottom:352.986667pt;}
.y119{bottom:353.066667pt;}
.y12c{bottom:355.946667pt;}
.y71{bottom:364.106667pt;}
.yb6{bottom:368.506667pt;}
.y17{bottom:369.386667pt;}
.y101{bottom:371.386667pt;}
.y118{bottom:371.466667pt;}
.y33{bottom:373.546667pt;}
.ye0{bottom:374.586667pt;}
.y51{bottom:376.506667pt;}
.y95{bottom:377.386667pt;}
.y12b{bottom:383.546667pt;}
.y100{bottom:389.786667pt;}
.y117{bottom:389.866667pt;}
.y70{bottom:391.706667pt;}
.yb5{bottom:396.106667pt;}
.y16{bottom:399.466667pt;}
.ydf{bottom:402.186667pt;}
.y50{bottom:404.106667pt;}
.y94{bottom:404.986667pt;}
.y32{bottom:407.786667pt;}
.yff{bottom:408.186667pt;}
.y12a{bottom:411.146667pt;}
.y6f{bottom:419.333333pt;}
.yb4{bottom:423.733333pt;}
.yfe{bottom:426.586667pt;}
.y15{bottom:427.093333pt;}
.yde{bottom:429.813333pt;}
.y4f{bottom:431.733333pt;}
.y93{bottom:432.613333pt;}
.y129{bottom:438.773333pt;}
.y31{bottom:442.053333pt;}
.yfd{bottom:444.986667pt;}
.y6e{bottom:446.933333pt;}
.yb3{bottom:451.333333pt;}
.y14{bottom:454.693333pt;}
.ydd{bottom:457.413333pt;}
.y4e{bottom:459.333333pt;}
.y92{bottom:460.213333pt;}
.y13a{bottom:462.933333pt;}
.yfc{bottom:463.386667pt;}
.y128{bottom:466.373333pt;}
.y6d{bottom:474.533333pt;}
.y30{bottom:476.373333pt;}
.yb2{bottom:478.933333pt;}
.yfb{bottom:481.786667pt;}
.y13{bottom:482.293333pt;}
.ydc{bottom:485.013333pt;}
.y4d{bottom:486.933333pt;}
.y91{bottom:487.813333pt;}
.y127{bottom:493.973333pt;}
.y6c{bottom:502.053333pt;}
.yb1{bottom:506.533333pt;}
.y12{bottom:509.893333pt;}
.y2f{bottom:510.613333pt;}
.ydb{bottom:512.613333pt;}
.y4c{bottom:514.533333pt;}
.y90{bottom:515.413333pt;}
.y126{bottom:521.573333pt;}
.y6b{bottom:529.653333pt;}
.yb0{bottom:534.053333pt;}
.y11{bottom:537.493333pt;}
.yda{bottom:540.213333pt;}
.y4b{bottom:542.053333pt;}
.y8f{bottom:543.013333pt;}
.y2e{bottom:544.853333pt;}
.y125{bottom:549.173333pt;}
.y6a{bottom:557.253333pt;}
.yaf{bottom:561.653333pt;}
.y10{bottom:565.093333pt;}
.y4a{bottom:569.653333pt;}
.y8e{bottom:570.613333pt;}
.yd9{bottom:573.093333pt;}
.y124{bottom:576.773333pt;}
.y2d{bottom:579.173333pt;}
.y69{bottom:584.853333pt;}
.yae{bottom:589.253333pt;}
.yf{bottom:592.693333pt;}
.y49{bottom:597.253333pt;}
.y8d{bottom:598.213333pt;}
.y123{bottom:604.373333pt;}
.y68{bottom:612.453333pt;}
.y2c{bottom:613.413333pt;}
.yad{bottom:616.853333pt;}
.ye{bottom:620.293333pt;}
.yd8{bottom:622.053333pt;}
.y48{bottom:624.853333pt;}
.y8c{bottom:625.813333pt;}
.y122{bottom:637.253333pt;}
.y67{bottom:640.053333pt;}
.yac{bottom:644.453333pt;}
.yd7{bottom:645.013333pt;}
.y2b{bottom:647.653333pt;}
.yd{bottom:647.893333pt;}
.y47{bottom:652.453333pt;}
.y8b{bottom:653.413333pt;}
.y66{bottom:667.653333pt;}
.yab{bottom:672.053333pt;}
.yc{bottom:675.493333pt;}
.y46{bottom:680.053333pt;}
.y8a{bottom:681.013333pt;}
.y2a{bottom:681.973333pt;}
.y121{bottom:686.213333pt;}
.ye9{bottom:687.013333pt;}
.y65{bottom:695.253333pt;}
.yd6{bottom:696.533333pt;}
.yaa{bottom:699.653333pt;}
.yb{bottom:703.093333pt;}
.y114{bottom:705.413333pt;}
.y45{bottom:707.653333pt;}
.y89{bottom:708.613333pt;}
.y120{bottom:709.173333pt;}
.y29{bottom:716.213333pt;}
.y64{bottom:722.853333pt;}
.ya9{bottom:727.253333pt;}
.ya{bottom:730.693333pt;}
.y44{bottom:735.253333pt;}
.y88{bottom:736.213333pt;}
.yc2{bottom:738.853333pt;}
.yd5{bottom:747.973333pt;}
.y28{bottom:750.453333pt;}
.ya8{bottom:754.853333pt;}
.y9{bottom:758.293333pt;}
.y43{bottom:762.853333pt;}
.y87{bottom:763.813333pt;}
.y63{bottom:778.053333pt;}
.ya7{bottom:782.453333pt;}
.y27{bottom:784.773333pt;}
.y8{bottom:785.893333pt;}
.y42{bottom:790.453333pt;}
.y86{bottom:791.413333pt;}
.yd2{bottom:799.413333pt;}
.y62{bottom:805.653333pt;}
.ya6{bottom:810.053333pt;}
.y7{bottom:815.573333pt;}
.y41{bottom:818.053333pt;}
.y26{bottom:819.013333pt;}
.y135{bottom:821.653333pt;}
.y61{bottom:833.253333pt;}
.ya5{bottom:837.653333pt;}
.y40{bottom:845.653333pt;}
.y84{bottom:846.613333pt;}
.y6{bottom:847.813333pt;}
.yd0{bottom:850.853333pt;}
.yc0{bottom:851.893333pt;}
.y85{bottom:852.613333pt;}
.y25{bottom:853.253333pt;}
.y60{bottom:860.853333pt;}
.ya4{bottom:865.253333pt;}
.y3f{bottom:873.253333pt;}
.y82{bottom:874.213333pt;}
.yc1{bottom:879.493333pt;}
.y5{bottom:879.973333pt;}
.y83{bottom:880.213333pt;}
.y24{bottom:887.493333pt;}
.y5f{bottom:888.453333pt;}
.ya3{bottom:892.853333pt;}
.y3e{bottom:900.880000pt;}
.ycf{bottom:901.840000pt;}
.y81{bottom:907.120000pt;}
.y4{bottom:912.240000pt;}
.y5e{bottom:916.080000pt;}
.ya2{bottom:920.480000pt;}
.y23{bottom:921.840000pt;}
.y11f{bottom:926.240000pt;}
.y3d{bottom:928.480000pt;}
.yce{bottom:934.720000pt;}
.y5d{bottom:943.680000pt;}
.y3{bottom:944.400000pt;}
.ya1{bottom:948.080000pt;}
.y22{bottom:956.080000pt;}
.ya0{bottom:975.680000pt;}
.y2{bottom:976.640000pt;}
.y21{bottom:983.680000pt;}
.y5c{bottom:987.280000pt;}
.y1{bottom:1008.800000pt;}
.y20{bottom:1011.280000pt;}
.hd{height:18.400000pt;}
.hb{height:29.360000pt;}
.hc{height:36.800000pt;}
.h6{height:41.770312pt;}
.h7{height:52.448437pt;}
.h11{height:55.200000pt;}
.h9{height:57.375000pt;}
.h10{height:62.781250pt;}
.h4{height:62.812500pt;}
.h5{height:64.500000pt;}
.ha{height:65.770312pt;}
.h8{height:66.750000pt;}
.h3{height:73.176562pt;}
.h2{height:75.142500pt;}
.h15{height:92.000000pt;}
.h14{height:165.600000pt;}
.h16{height:202.426667pt;}
.h12{height:312.826667pt;}
.he{height:331.226667pt;}
.h13{height:404.826667pt;}
.hf{height:496.746667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:117.680000pt;}
.w5{width:118.986667pt;}
.w6{width:119.040000pt;}
.w7{width:119.066667pt;}
.w9{width:134.666667pt;}
.wb{width:344.746667pt;}
.w8{width:599.733333pt;}
.w4{width:600.613333pt;}
.w3{width:793.919976pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:6.000000pt;}
.x20{left:24.960000pt;}
.x12{left:95.999988pt;}
.x1f{left:97.360000pt;}
.x2{left:106.959988pt;}
.x7{left:114.959988pt;}
.x1{left:118.479988pt;}
.x19{left:120.319988pt;}
.x6{left:128.719988pt;}
.x10{left:130.959988pt;}
.x5{left:131.999988pt;}
.x1d{left:144.026655pt;}
.x11{left:146.986655pt;}
.x1e{left:168.026655pt;}
.xc{left:203.386655pt;}
.x21{left:217.706667pt;}
.x26{left:233.386667pt;}
.xb{left:236.746655pt;}
.x17{left:240.026655pt;}
.xa{left:267.626655pt;}
.x8{left:269.466655pt;}
.x9{left:278.026655pt;}
.xd{left:279.306655pt;}
.x18{left:306.986655pt;}
.xe{left:311.946655pt;}
.x3{left:316.986655pt;}
.x22{left:338.106667pt;}
.x27{left:352.346667pt;}
.xf{left:371.226655pt;}
.x15{left:392.586643pt;}
.x16{left:397.946655pt;}
.x4{left:400.106655pt;}
.x1a{left:407.946655pt;}
.x1b{left:446.906655pt;}
.x23{left:458.533333pt;}
.x13{left:575.573310pt;}
.x24{left:578.933333pt;}
.x14{left:580.933322pt;}
.x1c{left:685.253322pt;}
}




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