
    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_d4339ef05ca5e219c1cc0b29.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960449;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_19063d24d96b9dfa8baa0b4d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960449;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_f19628392db04ad9579c9756.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_60c0251d1bcc29dca6f1892c.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_afdb344cb4c62e77b50ee4f6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5e25920738afa514b9aa2b9d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.091797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2615dd95c47c460490260a6a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.116699;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_c6406b5f63812e81ddc7f195.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.116699;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_5ad189b37a58e274b8a07206.woff2')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_8f7d077caf096dd10574e7b9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853516;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;}
.ls11{letter-spacing:-3.744000px;}
.ls9{letter-spacing:-3.600000px;}
.lsd{letter-spacing:-2.952000px;}
.lsa{letter-spacing:-2.880000px;}
.ls7{letter-spacing:-2.520000px;}
.ls10{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.230400px;}
.ls2{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.792000px;}
.ls5{letter-spacing:5.040000px;}
.ls3{letter-spacing:21.197280px;}
.ls6{letter-spacing:27.677280px;}
.ls8{letter-spacing:933.024000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws1{word-spacing:-66.240000px;}
.ws0{word-spacing:-66.009600px;}
.ws4{word-spacing:-21.420000px;}
.wse{word-spacing:-21.060000px;}
.wsf{word-spacing:-18.792000px;}
.ws5{word-spacing:-18.540000px;}
.ws8{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.036000px;}
.ws2{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.964000px;}
.wsa{word-spacing:-15.120000px;}
.wsb{word-spacing:-15.084000px;}
.ws10{word-spacing:-14.256000px;}
.ws7{word-spacing:-13.680000px;}
.ws6{word-spacing:-12.960000px;}
.ws3{word-spacing:0.000000px;}
._8{margin-left:-11.457600px;}
._25{margin-left:-10.133040px;}
._2{margin-left:-9.051840px;}
._1c{margin-left:-7.171200px;}
._6{margin-left:-5.642880px;}
._5{margin-left:-4.507680px;}
._7{margin-left:-3.064320px;}
._18{margin-left:-2.035680px;}
._1{margin-left:-1.030560px;}
._0{width:1.324800px;}
._15{width:2.347200px;}
._10{width:3.528000px;}
._14{width:4.660320px;}
._11{width:5.760000px;}
._12{width:6.995520px;}
._21{width:8.568000px;}
._1e{width:10.088640px;}
._1d{width:11.160000px;}
._19{width:12.168000px;}
._13{width:13.464000px;}
._24{width:15.384000px;}
._22{width:16.739040px;}
._23{width:19.039200px;}
._f{width:20.686560px;}
._1f{width:22.216320px;}
._16{width:23.544000px;}
._17{width:24.706560px;}
._20{width:25.909440px;}
._b{width:26.928000px;}
._c{width:27.936000px;}
._d{width:29.016000px;}
._e{width:30.439200px;}
._1a{width:32.112000px;}
._1b{width:33.304320px;}
._a{width:56.218080px;}
._9{width:58.215120px;}
._3{width:85.794000px;}
._4{width:86.950080px;}
._26{width:130.409280px;}
._28{width:145.669920px;}
._27{width:165.545280px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:72.144000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.ya1{bottom:-23.760000px;}
.y0{bottom:0.000000px;}
.y8f{bottom:3.960000px;}
.ya0{bottom:6.660000px;}
.yfa{bottom:6.690000px;}
.yf0{bottom:6.735000px;}
.ye0{bottom:6.765000px;}
.y105{bottom:6.810000px;}
.yfc{bottom:6.870000px;}
.yed{bottom:6.915000px;}
.ye3{bottom:6.945000px;}
.y108{bottom:6.990000px;}
.y9b{bottom:7.950000px;}
.yc1{bottom:7.995000px;}
.ybc{bottom:8.025000px;}
.y94{bottom:8.130000px;}
.yc3{bottom:8.175000px;}
.yb4{bottom:8.205000px;}
.ya7{bottom:8.250000px;}
.yd6{bottom:8.280000px;}
.y9c{bottom:8.310000px;}
.y95{bottom:8.490000px;}
.yc4{bottom:8.535000px;}
.yb5{bottom:8.565000px;}
.ya8{bottom:8.610000px;}
.yff{bottom:9.750000px;}
.yf1{bottom:9.795000px;}
.ye1{bottom:9.825000px;}
.y106{bottom:9.870000px;}
.yfd{bottom:9.930000px;}
.yee{bottom:9.975000px;}
.yea{bottom:10.005000px;}
.y109{bottom:10.050000px;}
.y96{bottom:11.190000px;}
.yc9{bottom:11.235000px;}
.yb6{bottom:11.265000px;}
.yab{bottom:11.310000px;}
.y98{bottom:11.370000px;}
.yc5{bottom:11.415000px;}
.yb8{bottom:11.445000px;}
.ya9{bottom:11.490000px;}
.y91{bottom:14.220000px;}
.ydd{bottom:14.400000px;}
.y8d{bottom:24.660000px;}
.yda{bottom:24.705000px;}
.y92{bottom:27.720000px;}
.yde{bottom:27.765000px;}
.y90{bottom:34.920000px;}
.ydc{bottom:35.145000px;}
.y8e{bottom:45.360000px;}
.ydb{bottom:45.405000px;}
.y5{bottom:68.580000px;}
.y4{bottom:89.316000px;}
.y3{bottom:108.216000px;}
.y2{bottom:128.196000px;}
.yd4{bottom:144.720000px;}
.y2f{bottom:151.050000px;}
.y85{bottom:161.130000px;}
.y103{bottom:162.540000px;}
.y9e{bottom:166.320000px;}
.y2e{bottom:171.750000px;}
.y12b{bottom:173.370000px;}
.y4d{bottom:173.550000px;}
.yd3{bottom:174.780000px;}
.y69{bottom:176.970000px;}
.y102{bottom:189.900000px;}
.y84{bottom:192.090000px;}
.y2d{bottom:192.450000px;}
.y14e{bottom:194.250000px;}
.y9d{bottom:196.380000px;}
.y12a{bottom:204.330000px;}
.y4c{bottom:204.690000px;}
.yd2{bottom:204.840000px;}
.y68{bottom:207.930000px;}
.y2c{bottom:213.150000px;}
.y101{bottom:217.440000px;}
.y14d{bottom:221.250000px;}
.y83{bottom:223.230000px;}
.y11e{bottom:225.930000px;}
.y9a{bottom:226.440000px;}
.y2b{bottom:233.850000px;}
.yd1{bottom:234.900000px;}
.y129{bottom:235.470000px;}
.y4b{bottom:235.650000px;}
.y67{bottom:239.070000px;}
.y14c{bottom:241.950000px;}
.y100{bottom:244.800000px;}
.y82{bottom:254.190000px;}
.y2a{bottom:254.550000px;}
.y11d{bottom:254.730000px;}
.y99{bottom:256.320000px;}
.yd0{bottom:264.780000px;}
.y128{bottom:266.430000px;}
.y4a{bottom:266.790000px;}
.y66{bottom:270.030000px;}
.yfe{bottom:272.340000px;}
.y29{bottom:275.250000px;}
.y14b{bottom:279.210000px;}
.y81{bottom:285.330000px;}
.y97{bottom:286.380000px;}
.ycf{bottom:294.840000px;}
.y28{bottom:295.950000px;}
.y127{bottom:297.570000px;}
.y49{bottom:297.750000px;}
.yfb{bottom:299.700000px;}
.y65{bottom:301.170000px;}
.y14a{bottom:306.030000px;}
.y80{bottom:316.290000px;}
.y93{bottom:316.440000px;}
.y27{bottom:316.650000px;}
.yce{bottom:324.900000px;}
.y149{bottom:326.730000px;}
.yf9{bottom:327.240000px;}
.y126{bottom:328.530000px;}
.y48{bottom:328.890000px;}
.y64{bottom:332.130000px;}
.y26{bottom:337.395000px;}
.y7f{bottom:347.475000px;}
.y8c{bottom:347.835000px;}
.yf8{bottom:354.600000px;}
.ycd{bottom:354.960000px;}
.y25{bottom:358.095000px;}
.y125{bottom:359.715000px;}
.y47{bottom:359.895000px;}
.y63{bottom:363.315000px;}
.y148{bottom:368.175000px;}
.y7e{bottom:378.435000px;}
.y24{bottom:378.795000px;}
.yf7{bottom:382.140000px;}
.ycc{bottom:384.840000px;}
.y147{bottom:388.875000px;}
.y124{bottom:390.675000px;}
.y46{bottom:390.855000px;}
.y62{bottom:394.275000px;}
.y23{bottom:399.495000px;}
.yf6{bottom:409.500000px;}
.y7d{bottom:409.575000px;}
.y8b{bottom:414.615000px;}
.ycb{bottom:414.900000px;}
.y123{bottom:421.815000px;}
.y45{bottom:421.995000px;}
.y61{bottom:425.415000px;}
.y146{bottom:430.275000px;}
.y8a{bottom:435.315000px;}
.yf5{bottom:437.040000px;}
.y7c{bottom:440.535000px;}
.y22{bottom:442.515000px;}
.yca{bottom:444.960000px;}
.y145{bottom:450.975000px;}
.y44{bottom:452.955000px;}
.y122{bottom:455.115000px;}
.y60{bottom:456.375000px;}
.y89{bottom:462.315000px;}
.yf4{bottom:464.400000px;}
.y7b{bottom:471.675000px;}
.ya3{bottom:473.475000px;}
.yc8{bottom:475.020000px;}
.y21{bottom:475.095000px;}
.ya5{bottom:477.975000px;}
.ya4{bottom:478.875000px;}
.y43{bottom:484.095000px;}
.y121{bottom:486.795000px;}
.y5f{bottom:487.515000px;}
.yf3{bottom:491.940000px;}
.y144{bottom:492.375000px;}
.y20{bottom:495.795000px;}
.y7a{bottom:502.635000px;}
.yc7{bottom:504.900000px;}
.y143{bottom:513.075000px;}
.y42{bottom:515.055000px;}
.y1f{bottom:516.495000px;}
.y5e{bottom:518.475000px;}
.yf2{bottom:519.300000px;}
.y142{bottom:533.775000px;}
.yc6{bottom:534.960000px;}
.y79{bottom:536.115000px;}
.y1e{bottom:537.195000px;}
.y41{bottom:546.195000px;}
.yef{bottom:546.840000px;}
.y5d{bottom:549.615000px;}
.y141{bottom:554.475000px;}
.y1d{bottom:557.895000px;}
.y78{bottom:559.695000px;}
.yc2{bottom:565.020000px;}
.y11c{bottom:568.695000px;}
.yec{bottom:574.200000px;}
.y140{bottom:575.175000px;}
.y1c{bottom:578.595000px;}
.y5c{bottom:582.735000px;}
.y11b{bottom:586.260000px;}
.y40{bottom:589.215000px;}
.y77{bottom:590.655000px;}
.yc0{bottom:595.080000px;}
.y13f{bottom:595.875000px;}
.y1b{bottom:599.295000px;}
.yeb{bottom:601.740000px;}
.y11a{bottom:613.800000px;}
.y13e{bottom:616.605000px;}
.y1a{bottom:620.025000px;}
.y3f{bottom:620.385000px;}
.y76{bottom:621.645000px;}
.ybf{bottom:624.960000px;}
.y5b{bottom:628.845000px;}
.ye9{bottom:629.100000px;}
.y13d{bottom:637.305000px;}
.y19{bottom:640.725000px;}
.y119{bottom:641.160000px;}
.y3e{bottom:651.345000px;}
.y75{bottom:652.785000px;}
.y88{bottom:653.145000px;}
.ybe{bottom:655.020000px;}
.ye8{bottom:656.640000px;}
.y13c{bottom:658.005000px;}
.y5a{bottom:659.805000px;}
.y18{bottom:661.425000px;}
.y118{bottom:668.700000px;}
.y13b{bottom:678.705000px;}
.y17{bottom:682.125000px;}
.y3d{bottom:682.485000px;}
.y87{bottom:682.845000px;}
.y74{bottom:683.745000px;}
.ye7{bottom:684.000000px;}
.ybd{bottom:685.080000px;}
.ya2{bottom:688.605000px;}
.y9f{bottom:690.405000px;}
.y59{bottom:690.945000px;}
.y117{bottom:696.060000px;}
.y13a{bottom:699.405000px;}
.y16{bottom:702.825000px;}
.ye6{bottom:711.540000px;}
.y3c{bottom:713.445000px;}
.y73{bottom:714.885000px;}
.ybb{bottom:715.140000px;}
.y139{bottom:720.105000px;}
.y58{bottom:721.905000px;}
.y15{bottom:723.525000px;}
.y116{bottom:723.600000px;}
.ye5{bottom:738.900000px;}
.y138{bottom:740.805000px;}
.y14{bottom:744.225000px;}
.y3b{bottom:744.405000px;}
.yba{bottom:745.020000px;}
.y72{bottom:745.845000px;}
.y115{bottom:750.960000px;}
.y137{bottom:761.505000px;}
.y13{bottom:764.925000px;}
.ye4{bottom:766.440000px;}
.yb9{bottom:775.080000px;}
.y3a{bottom:775.545000px;}
.y71{bottom:776.985000px;}
.y114{bottom:778.500000px;}
.y136{bottom:782.205000px;}
.y12{bottom:785.625000px;}
.ye2{bottom:793.800000px;}
.y57{bottom:796.065000px;}
.y120{bottom:802.725000px;}
.y135{bottom:802.905000px;}
.yb7{bottom:805.140000px;}
.y113{bottom:805.860000px;}
.y11{bottom:806.325000px;}
.y39{bottom:806.505000px;}
.y70{bottom:807.945000px;}
.ydf{bottom:821.340000px;}
.y134{bottom:823.605000px;}
.y157{bottom:824.685000px;}
.y56{bottom:827.025000px;}
.y11f{bottom:831.345000px;}
.y112{bottom:833.400000px;}
.yb3{bottom:835.200000px;}
.y10{bottom:837.465000px;}
.y38{bottom:837.645000px;}
.y6f{bottom:839.085000px;}
.y133{bottom:844.305000px;}
.y156{bottom:845.385000px;}
.yd9{bottom:850.065000px;}
.y55{bottom:858.165000px;}
.y111{bottom:860.760000px;}
.y132{bottom:865.005000px;}
.yb2{bottom:865.080000px;}
.yf{bottom:868.425000px;}
.y37{bottom:868.605000px;}
.y6e{bottom:870.045000px;}
.y86{bottom:871.350000px;}
.y155{bottom:882.690000px;}
.y131{bottom:885.750000px;}
.y110{bottom:888.300000px;}
.y54{bottom:889.170000px;}
.yb1{bottom:895.140000px;}
.y36{bottom:899.790000px;}
.y6d{bottom:901.230000px;}
.y130{bottom:906.450000px;}
.y154{bottom:909.510000px;}
.ye{bottom:911.490000px;}
.y10f{bottom:915.660000px;}
.yd8{bottom:917.070000px;}
.y53{bottom:920.310000px;}
.yb0{bottom:925.200000px;}
.y12f{bottom:927.150000px;}
.y35{bottom:930.750000px;}
.yd{bottom:932.190000px;}
.yd7{bottom:937.770000px;}
.y10e{bottom:943.200000px;}
.y153{bottom:946.770000px;}
.y12e{bottom:947.850000px;}
.y52{bottom:951.270000px;}
.yc{bottom:952.890000px;}
.yd5{bottom:955.230000px;}
.yaf{bottom:955.260000px;}
.y6c{bottom:963.330000px;}
.y12d{bottom:968.550000px;}
.y10d{bottom:970.560000px;}
.y152{bottom:973.590000px;}
.yb{bottom:975.030000px;}
.y34{bottom:976.110000px;}
.y51{bottom:982.410000px;}
.yae{bottom:985.140000px;}
.y6b{bottom:994.290000px;}
.y10c{bottom:998.100000px;}
.y12c{bottom:1001.850000px;}
.ya{bottom:1002.570000px;}
.y50{bottom:1013.370000px;}
.y151{bottom:1014.990000px;}
.yad{bottom:1015.200000px;}
.y33{bottom:1022.010000px;}
.y6a{bottom:1025.430000px;}
.y10b{bottom:1025.460000px;}
.y9{bottom:1030.110000px;}
.y150{bottom:1035.690000px;}
.yac{bottom:1045.260000px;}
.y10a{bottom:1053.000000px;}
.y4f{bottom:1056.390000px;}
.y8{bottom:1057.830000px;}
.y32{bottom:1065.210000px;}
.yaa{bottom:1075.320000px;}
.y14f{bottom:1077.090000px;}
.y107{bottom:1080.360000px;}
.y7{bottom:1085.370000px;}
.y4e{bottom:1087.530000px;}
.y31{bottom:1097.790000px;}
.ya6{bottom:1105.200000px;}
.y104{bottom:1107.900000px;}
.y6{bottom:1112.910000px;}
.y30{bottom:1118.490000px;}
.y1{bottom:1236.960000px;}
.he{height:23.580000px;}
.h11{height:26.640000px;}
.h12{height:26.820000px;}
.hc{height:29.160000px;}
.hd{height:29.340000px;}
.h3{height:55.987031px;}
.h4{height:59.383125px;}
.ha{height:59.674219px;}
.h2{height:60.855469px;}
.hb{height:62.100000px;}
.h10{height:62.136000px;}
.h9{height:63.949219px;}
.h6{height:64.546875px;}
.hf{height:64.675969px;}
.h7{height:64.863281px;}
.h8{height:74.820586px;}
.h13{height:75.890039px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:36.180000px;}
.w10{width:36.216000px;}
.wa{width:72.000000px;}
.w3{width:72.036000px;}
.w4{width:92.880000px;}
.w7{width:106.920000px;}
.wc{width:115.380000px;}
.w6{width:115.416000px;}
.wb{width:117.000000px;}
.w5{width:117.036000px;}
.we{width:131.040000px;}
.w9{width:131.076000px;}
.wd{width:146.520000px;}
.w8{width:146.556000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.100000px;}
.x1d{left:10.800000px;}
.x1e{left:25.200000px;}
.x23{left:27.936000px;}
.x15{left:32.076000px;}
.x16{left:37.470000px;}
.x25{left:42.405000px;}
.x1a{left:45.150000px;}
.x18{left:49.065000px;}
.x24{left:50.685000px;}
.x17{left:54.075000px;}
.x1b{left:59.865000px;}
.x19{left:64.365000px;}
.x26{left:68.865000px;}
.xd{left:74.700000px;}
.x2e{left:100.655987px;}
.x2{left:127.655987px;}
.x6{left:132.695987px;}
.xf{left:147.456000px;}
.x3{left:153.929987px;}
.x4{left:160.409987px;}
.x7{left:180.749987px;}
.x10{left:241.050000px;}
.x20{left:267.690000px;}
.xa{left:278.714987px;}
.x2a{left:286.814987px;}
.x28{left:288.434987px;}
.x8{left:300.314987px;}
.x2c{left:303.914987px;}
.x5{left:306.614987px;}
.xc{left:334.334987px;}
.x27{left:335.414987px;}
.x9{left:348.194987px;}
.x11{left:358.815000px;}
.x21{left:382.935000px;}
.x1c{left:391.035000px;}
.x1{left:467.924987px;}
.x12{left:474.945000px;}
.x1f{left:490.965000px;}
.x22{left:518.865000px;}
.x13{left:582.585000px;}
.xb{left:668.129987px;}
.x14{left:729.870000px;}
.x2d{left:752.549987px;}
.x2b{left:754.169987px;}
.x29{left:759.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-3.328000pt;}
.ls9{letter-spacing:-3.200000pt;}
.lsd{letter-spacing:-2.624000pt;}
.lsa{letter-spacing:-2.560000pt;}
.ls7{letter-spacing:-2.240000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.204800pt;}
.ls2{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.704000pt;}
.ls5{letter-spacing:4.480000pt;}
.ls3{letter-spacing:18.842027pt;}
.ls6{letter-spacing:24.602027pt;}
.ls8{letter-spacing:829.354667pt;}
.ws9{word-spacing:-64.000000pt;}
.ws1{word-spacing:-58.880000pt;}
.ws0{word-spacing:-58.675200pt;}
.ws4{word-spacing:-19.040000pt;}
.wse{word-spacing:-18.720000pt;}
.wsf{word-spacing:-16.704000pt;}
.ws5{word-spacing:-16.480000pt;}
.ws8{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.032000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.968000pt;}
.wsa{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.408000pt;}
.ws10{word-spacing:-12.672000pt;}
.ws7{word-spacing:-12.160000pt;}
.ws6{word-spacing:-11.520000pt;}
.ws3{word-spacing:0.000000pt;}
._8{margin-left:-10.184533pt;}
._25{margin-left:-9.007147pt;}
._2{margin-left:-8.046080pt;}
._1c{margin-left:-6.374400pt;}
._6{margin-left:-5.015893pt;}
._5{margin-left:-4.006827pt;}
._7{margin-left:-2.723840pt;}
._18{margin-left:-1.809493pt;}
._1{margin-left:-0.916053pt;}
._0{width:1.177600pt;}
._15{width:2.086400pt;}
._10{width:3.136000pt;}
._14{width:4.142507pt;}
._11{width:5.120000pt;}
._12{width:6.218240pt;}
._21{width:7.616000pt;}
._1e{width:8.967680pt;}
._1d{width:9.920000pt;}
._19{width:10.816000pt;}
._13{width:11.968000pt;}
._24{width:13.674667pt;}
._22{width:14.879147pt;}
._23{width:16.923733pt;}
._f{width:18.388053pt;}
._1f{width:19.747840pt;}
._16{width:20.928000pt;}
._17{width:21.961387pt;}
._20{width:23.030613pt;}
._b{width:23.936000pt;}
._c{width:24.832000pt;}
._d{width:25.792000pt;}
._e{width:27.057067pt;}
._1a{width:28.544000pt;}
._1b{width:29.603840pt;}
._a{width:49.971627pt;}
._9{width:51.746773pt;}
._3{width:76.261333pt;}
._4{width:77.288960pt;}
._26{width:115.919360pt;}
._28{width:129.484373pt;}
._27{width:147.151360pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:64.128000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.ya1{bottom:-21.120000pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:3.520000pt;}
.ya0{bottom:5.920000pt;}
.yfa{bottom:5.946667pt;}
.yf0{bottom:5.986667pt;}
.ye0{bottom:6.013333pt;}
.y105{bottom:6.053333pt;}
.yfc{bottom:6.106667pt;}
.yed{bottom:6.146667pt;}
.ye3{bottom:6.173333pt;}
.y108{bottom:6.213333pt;}
.y9b{bottom:7.066667pt;}
.yc1{bottom:7.106667pt;}
.ybc{bottom:7.133333pt;}
.y94{bottom:7.226667pt;}
.yc3{bottom:7.266667pt;}
.yb4{bottom:7.293333pt;}
.ya7{bottom:7.333333pt;}
.yd6{bottom:7.360000pt;}
.y9c{bottom:7.386667pt;}
.y95{bottom:7.546667pt;}
.yc4{bottom:7.586667pt;}
.yb5{bottom:7.613333pt;}
.ya8{bottom:7.653333pt;}
.yff{bottom:8.666667pt;}
.yf1{bottom:8.706667pt;}
.ye1{bottom:8.733333pt;}
.y106{bottom:8.773333pt;}
.yfd{bottom:8.826667pt;}
.yee{bottom:8.866667pt;}
.yea{bottom:8.893333pt;}
.y109{bottom:8.933333pt;}
.y96{bottom:9.946667pt;}
.yc9{bottom:9.986667pt;}
.yb6{bottom:10.013333pt;}
.yab{bottom:10.053333pt;}
.y98{bottom:10.106667pt;}
.yc5{bottom:10.146667pt;}
.yb8{bottom:10.173333pt;}
.ya9{bottom:10.213333pt;}
.y91{bottom:12.640000pt;}
.ydd{bottom:12.800000pt;}
.y8d{bottom:21.920000pt;}
.yda{bottom:21.960000pt;}
.y92{bottom:24.640000pt;}
.yde{bottom:24.680000pt;}
.y90{bottom:31.040000pt;}
.ydc{bottom:31.240000pt;}
.y8e{bottom:40.320000pt;}
.ydb{bottom:40.360000pt;}
.y5{bottom:60.960000pt;}
.y4{bottom:79.392000pt;}
.y3{bottom:96.192000pt;}
.y2{bottom:113.952000pt;}
.yd4{bottom:128.640000pt;}
.y2f{bottom:134.266667pt;}
.y85{bottom:143.226667pt;}
.y103{bottom:144.480000pt;}
.y9e{bottom:147.840000pt;}
.y2e{bottom:152.666667pt;}
.y12b{bottom:154.106667pt;}
.y4d{bottom:154.266667pt;}
.yd3{bottom:155.360000pt;}
.y69{bottom:157.306667pt;}
.y102{bottom:168.800000pt;}
.y84{bottom:170.746667pt;}
.y2d{bottom:171.066667pt;}
.y14e{bottom:172.666667pt;}
.y9d{bottom:174.560000pt;}
.y12a{bottom:181.626667pt;}
.y4c{bottom:181.946667pt;}
.yd2{bottom:182.080000pt;}
.y68{bottom:184.826667pt;}
.y2c{bottom:189.466667pt;}
.y101{bottom:193.280000pt;}
.y14d{bottom:196.666667pt;}
.y83{bottom:198.426667pt;}
.y11e{bottom:200.826667pt;}
.y9a{bottom:201.280000pt;}
.y2b{bottom:207.866667pt;}
.yd1{bottom:208.800000pt;}
.y129{bottom:209.306667pt;}
.y4b{bottom:209.466667pt;}
.y67{bottom:212.506667pt;}
.y14c{bottom:215.066667pt;}
.y100{bottom:217.600000pt;}
.y82{bottom:225.946667pt;}
.y2a{bottom:226.266667pt;}
.y11d{bottom:226.426667pt;}
.y99{bottom:227.840000pt;}
.yd0{bottom:235.360000pt;}
.y128{bottom:236.826667pt;}
.y4a{bottom:237.146667pt;}
.y66{bottom:240.026667pt;}
.yfe{bottom:242.080000pt;}
.y29{bottom:244.666667pt;}
.y14b{bottom:248.186667pt;}
.y81{bottom:253.626667pt;}
.y97{bottom:254.560000pt;}
.ycf{bottom:262.080000pt;}
.y28{bottom:263.066667pt;}
.y127{bottom:264.506667pt;}
.y49{bottom:264.666667pt;}
.yfb{bottom:266.400000pt;}
.y65{bottom:267.706667pt;}
.y14a{bottom:272.026667pt;}
.y80{bottom:281.146667pt;}
.y93{bottom:281.280000pt;}
.y27{bottom:281.466667pt;}
.yce{bottom:288.800000pt;}
.y149{bottom:290.426667pt;}
.yf9{bottom:290.880000pt;}
.y126{bottom:292.026667pt;}
.y48{bottom:292.346667pt;}
.y64{bottom:295.226667pt;}
.y26{bottom:299.906667pt;}
.y7f{bottom:308.866667pt;}
.y8c{bottom:309.186667pt;}
.yf8{bottom:315.200000pt;}
.ycd{bottom:315.520000pt;}
.y25{bottom:318.306667pt;}
.y125{bottom:319.746667pt;}
.y47{bottom:319.906667pt;}
.y63{bottom:322.946667pt;}
.y148{bottom:327.266667pt;}
.y7e{bottom:336.386667pt;}
.y24{bottom:336.706667pt;}
.yf7{bottom:339.680000pt;}
.ycc{bottom:342.080000pt;}
.y147{bottom:345.666667pt;}
.y124{bottom:347.266667pt;}
.y46{bottom:347.426667pt;}
.y62{bottom:350.466667pt;}
.y23{bottom:355.106667pt;}
.yf6{bottom:364.000000pt;}
.y7d{bottom:364.066667pt;}
.y8b{bottom:368.546667pt;}
.ycb{bottom:368.800000pt;}
.y123{bottom:374.946667pt;}
.y45{bottom:375.106667pt;}
.y61{bottom:378.146667pt;}
.y146{bottom:382.466667pt;}
.y8a{bottom:386.946667pt;}
.yf5{bottom:388.480000pt;}
.y7c{bottom:391.586667pt;}
.y22{bottom:393.346667pt;}
.yca{bottom:395.520000pt;}
.y145{bottom:400.866667pt;}
.y44{bottom:402.626667pt;}
.y122{bottom:404.546667pt;}
.y60{bottom:405.666667pt;}
.y89{bottom:410.946667pt;}
.yf4{bottom:412.800000pt;}
.y7b{bottom:419.266667pt;}
.ya3{bottom:420.866667pt;}
.yc8{bottom:422.240000pt;}
.y21{bottom:422.306667pt;}
.ya5{bottom:424.866667pt;}
.ya4{bottom:425.666667pt;}
.y43{bottom:430.306667pt;}
.y121{bottom:432.706667pt;}
.y5f{bottom:433.346667pt;}
.yf3{bottom:437.280000pt;}
.y144{bottom:437.666667pt;}
.y20{bottom:440.706667pt;}
.y7a{bottom:446.786667pt;}
.yc7{bottom:448.800000pt;}
.y143{bottom:456.066667pt;}
.y42{bottom:457.826667pt;}
.y1f{bottom:459.106667pt;}
.y5e{bottom:460.866667pt;}
.yf2{bottom:461.600000pt;}
.y142{bottom:474.466667pt;}
.yc6{bottom:475.520000pt;}
.y79{bottom:476.546667pt;}
.y1e{bottom:477.506667pt;}
.y41{bottom:485.506667pt;}
.yef{bottom:486.080000pt;}
.y5d{bottom:488.546667pt;}
.y141{bottom:492.866667pt;}
.y1d{bottom:495.906667pt;}
.y78{bottom:497.506667pt;}
.yc2{bottom:502.240000pt;}
.y11c{bottom:505.506667pt;}
.yec{bottom:510.400000pt;}
.y140{bottom:511.266667pt;}
.y1c{bottom:514.306667pt;}
.y5c{bottom:517.986667pt;}
.y11b{bottom:521.120000pt;}
.y40{bottom:523.746667pt;}
.y77{bottom:525.026667pt;}
.yc0{bottom:528.960000pt;}
.y13f{bottom:529.666667pt;}
.y1b{bottom:532.706667pt;}
.yeb{bottom:534.880000pt;}
.y11a{bottom:545.600000pt;}
.y13e{bottom:548.093333pt;}
.y1a{bottom:551.133333pt;}
.y3f{bottom:551.453333pt;}
.y76{bottom:552.573333pt;}
.ybf{bottom:555.520000pt;}
.y5b{bottom:558.973333pt;}
.ye9{bottom:559.200000pt;}
.y13d{bottom:566.493333pt;}
.y19{bottom:569.533333pt;}
.y119{bottom:569.920000pt;}
.y3e{bottom:578.973333pt;}
.y75{bottom:580.253333pt;}
.y88{bottom:580.573333pt;}
.ybe{bottom:582.240000pt;}
.ye8{bottom:583.680000pt;}
.y13c{bottom:584.893333pt;}
.y5a{bottom:586.493333pt;}
.y18{bottom:587.933333pt;}
.y118{bottom:594.400000pt;}
.y13b{bottom:603.293333pt;}
.y17{bottom:606.333333pt;}
.y3d{bottom:606.653333pt;}
.y87{bottom:606.973333pt;}
.y74{bottom:607.773333pt;}
.ye7{bottom:608.000000pt;}
.ybd{bottom:608.960000pt;}
.ya2{bottom:612.093333pt;}
.y9f{bottom:613.693333pt;}
.y59{bottom:614.173333pt;}
.y117{bottom:618.720000pt;}
.y13a{bottom:621.693333pt;}
.y16{bottom:624.733333pt;}
.ye6{bottom:632.480000pt;}
.y3c{bottom:634.173333pt;}
.y73{bottom:635.453333pt;}
.ybb{bottom:635.680000pt;}
.y139{bottom:640.093333pt;}
.y58{bottom:641.693333pt;}
.y15{bottom:643.133333pt;}
.y116{bottom:643.200000pt;}
.ye5{bottom:656.800000pt;}
.y138{bottom:658.493333pt;}
.y14{bottom:661.533333pt;}
.y3b{bottom:661.693333pt;}
.yba{bottom:662.240000pt;}
.y72{bottom:662.973333pt;}
.y115{bottom:667.520000pt;}
.y137{bottom:676.893333pt;}
.y13{bottom:679.933333pt;}
.ye4{bottom:681.280000pt;}
.yb9{bottom:688.960000pt;}
.y3a{bottom:689.373333pt;}
.y71{bottom:690.653333pt;}
.y114{bottom:692.000000pt;}
.y136{bottom:695.293333pt;}
.y12{bottom:698.333333pt;}
.ye2{bottom:705.600000pt;}
.y57{bottom:707.613333pt;}
.y120{bottom:713.533333pt;}
.y135{bottom:713.693333pt;}
.yb7{bottom:715.680000pt;}
.y113{bottom:716.320000pt;}
.y11{bottom:716.733333pt;}
.y39{bottom:716.893333pt;}
.y70{bottom:718.173333pt;}
.ydf{bottom:730.080000pt;}
.y134{bottom:732.093333pt;}
.y157{bottom:733.053333pt;}
.y56{bottom:735.133333pt;}
.y11f{bottom:738.973333pt;}
.y112{bottom:740.800000pt;}
.yb3{bottom:742.400000pt;}
.y10{bottom:744.413333pt;}
.y38{bottom:744.573333pt;}
.y6f{bottom:745.853333pt;}
.y133{bottom:750.493333pt;}
.y156{bottom:751.453333pt;}
.yd9{bottom:755.613333pt;}
.y55{bottom:762.813333pt;}
.y111{bottom:765.120000pt;}
.y132{bottom:768.893333pt;}
.yb2{bottom:768.960000pt;}
.yf{bottom:771.933333pt;}
.y37{bottom:772.093333pt;}
.y6e{bottom:773.373333pt;}
.y86{bottom:774.533333pt;}
.y155{bottom:784.613333pt;}
.y131{bottom:787.333333pt;}
.y110{bottom:789.600000pt;}
.y54{bottom:790.373333pt;}
.yb1{bottom:795.680000pt;}
.y36{bottom:799.813333pt;}
.y6d{bottom:801.093333pt;}
.y130{bottom:805.733333pt;}
.y154{bottom:808.453333pt;}
.ye{bottom:810.213333pt;}
.y10f{bottom:813.920000pt;}
.yd8{bottom:815.173333pt;}
.y53{bottom:818.053333pt;}
.yb0{bottom:822.400000pt;}
.y12f{bottom:824.133333pt;}
.y35{bottom:827.333333pt;}
.yd{bottom:828.613333pt;}
.yd7{bottom:833.573333pt;}
.y10e{bottom:838.400000pt;}
.y153{bottom:841.573333pt;}
.y12e{bottom:842.533333pt;}
.y52{bottom:845.573333pt;}
.yc{bottom:847.013333pt;}
.yd5{bottom:849.093333pt;}
.yaf{bottom:849.120000pt;}
.y6c{bottom:856.293333pt;}
.y12d{bottom:860.933333pt;}
.y10d{bottom:862.720000pt;}
.y152{bottom:865.413333pt;}
.yb{bottom:866.693333pt;}
.y34{bottom:867.653333pt;}
.y51{bottom:873.253333pt;}
.yae{bottom:875.680000pt;}
.y6b{bottom:883.813333pt;}
.y10c{bottom:887.200000pt;}
.y12c{bottom:890.533333pt;}
.ya{bottom:891.173333pt;}
.y50{bottom:900.773333pt;}
.y151{bottom:902.213333pt;}
.yad{bottom:902.400000pt;}
.y33{bottom:908.453333pt;}
.y6a{bottom:911.493333pt;}
.y10b{bottom:911.520000pt;}
.y9{bottom:915.653333pt;}
.y150{bottom:920.613333pt;}
.yac{bottom:929.120000pt;}
.y10a{bottom:936.000000pt;}
.y4f{bottom:939.013333pt;}
.y8{bottom:940.293333pt;}
.y32{bottom:946.853333pt;}
.yaa{bottom:955.840000pt;}
.y14f{bottom:957.413333pt;}
.y107{bottom:960.320000pt;}
.y7{bottom:964.773333pt;}
.y4e{bottom:966.693333pt;}
.y31{bottom:975.813333pt;}
.ya6{bottom:982.400000pt;}
.y104{bottom:984.800000pt;}
.y6{bottom:989.253333pt;}
.y30{bottom:994.213333pt;}
.y1{bottom:1099.520000pt;}
.he{height:20.960000pt;}
.h11{height:23.680000pt;}
.h12{height:23.840000pt;}
.hc{height:25.920000pt;}
.hd{height:26.080000pt;}
.h3{height:49.766250pt;}
.h4{height:52.785000pt;}
.ha{height:53.043750pt;}
.h2{height:54.093750pt;}
.hb{height:55.200000pt;}
.h10{height:55.232000pt;}
.h9{height:56.843750pt;}
.h6{height:57.375000pt;}
.hf{height:57.489750pt;}
.h7{height:57.656250pt;}
.h8{height:66.507188pt;}
.h13{height:67.457812pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:32.160000pt;}
.w10{width:32.192000pt;}
.wa{width:64.000000pt;}
.w3{width:64.032000pt;}
.w4{width:82.560000pt;}
.w7{width:95.040000pt;}
.wc{width:102.560000pt;}
.w6{width:102.592000pt;}
.wb{width:104.000000pt;}
.w5{width:104.032000pt;}
.we{width:116.480000pt;}
.w9{width:116.512000pt;}
.wd{width:130.240000pt;}
.w8{width:130.272000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.200000pt;}
.x1d{left:9.600000pt;}
.x1e{left:22.400000pt;}
.x23{left:24.832000pt;}
.x15{left:28.512000pt;}
.x16{left:33.306667pt;}
.x25{left:37.693333pt;}
.x1a{left:40.133333pt;}
.x18{left:43.613333pt;}
.x24{left:45.053333pt;}
.x17{left:48.066667pt;}
.x1b{left:53.213333pt;}
.x19{left:57.213333pt;}
.x26{left:61.213333pt;}
.xd{left:66.400000pt;}
.x2e{left:89.471988pt;}
.x2{left:113.471988pt;}
.x6{left:117.951988pt;}
.xf{left:131.072000pt;}
.x3{left:136.826655pt;}
.x4{left:142.586655pt;}
.x7{left:160.666655pt;}
.x10{left:214.266667pt;}
.x20{left:237.946667pt;}
.xa{left:247.746655pt;}
.x2a{left:254.946655pt;}
.x28{left:256.386655pt;}
.x8{left:266.946655pt;}
.x2c{left:270.146655pt;}
.x5{left:272.546655pt;}
.xc{left:297.186655pt;}
.x27{left:298.146655pt;}
.x9{left:309.506655pt;}
.x11{left:318.946667pt;}
.x21{left:340.386667pt;}
.x1c{left:347.586667pt;}
.x1{left:415.933322pt;}
.x12{left:422.173333pt;}
.x1f{left:436.413333pt;}
.x22{left:461.213333pt;}
.x13{left:517.853333pt;}
.xb{left:593.893322pt;}
.x14{left:648.773333pt;}
.x2d{left:668.933322pt;}
.x2b{left:670.373322pt;}
.x29{left:674.853322pt;}
}




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