
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_cd637dc35922814703c08c1f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_20492a42e51ad40d724325f8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_f8fe0b4f68fd1e3301b3fbb9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_9b55472d674e8cefe6a10b9f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_8bfcb1f27b519f6e3679867b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_e0ca2fb79a9e65f752a79b55.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_4b51f204b16222764d6e1ff3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_07be13bd1bcc9d99eb1f00f0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c43b2a152d8503ec9493cb59.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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:ffb;src:url('chunks/assets/font_97cef48006e4f910183cf4c1.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v7{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.440000px;}
.v2{vertical-align:15.120000px;}
.v5{vertical-align:30.240000px;}
.v4{vertical-align:35.280000px;}
.ls1d{letter-spacing:-0.303000px;}
.ls19{letter-spacing:-0.222000px;}
.ls10{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.160800px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.063600px;}
.ls15{letter-spacing:-0.029880px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls1b{letter-spacing:0.051840px;}
.ls14{letter-spacing:0.056160px;}
.lsd{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls18{letter-spacing:0.091200px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.105600px;}
.ls1a{letter-spacing:0.113400px;}
.ls5{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.160200px;}
.lsf{letter-spacing:0.173400px;}
.ls17{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls1e{letter-spacing:47.726640px;}
.lse{letter-spacing:63.566640px;}
.ls1c{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws10{word-spacing:-13.425600px;}
.ws8{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.332000px;}
.wsb{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.162800px;}
.wsf{word-spacing:-13.065600px;}
.ws9{word-spacing:-13.039800px;}
.ws13{word-spacing:-12.923400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws11{word-spacing:-9.357600px;}
.ws2{word-spacing:-9.266400px;}
.wse{word-spacing:-9.236520px;}
.ws12{word-spacing:-9.044400px;}
.ws3{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._17{margin-left:-4.302837px;}
._a{margin-left:-3.246600px;}
._4{margin-left:-2.154720px;}
._0{margin-left:-1.110000px;}
._3{width:1.195249px;}
._6{width:2.284800px;}
._9{width:3.433037px;}
._8{width:4.615024px;}
._5{width:5.783047px;}
._2{width:6.784487px;}
._1{width:7.800588px;}
._b{width:9.273612px;}
._16{width:10.280520px;}
._7{width:11.542800px;}
._15{width:14.469911px;}
._18{width:15.505729px;}
._11{width:17.675280px;}
._d{width:19.296071px;}
._c{width:20.320560px;}
._10{width:21.879240px;}
._e{width:22.905720px;}
._f{width:23.973840px;}
._12{width:164.692560px;}
._14{width:185.898720px;}
._13{width:629.058720px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs9{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:63.000000px;}
.fs7{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yef{bottom:6.300000px;}
.y68{bottom:7.830000px;}
.y6b{bottom:7.920000px;}
.ye0{bottom:7.950000px;}
.yce{bottom:29.880000px;}
.y66{bottom:35.190000px;}
.yde{bottom:35.220000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yb8{bottom:111.990000px;}
.y59{bottom:113.430000px;}
.y13b{bottom:114.780000px;}
.yc8{bottom:117.750000px;}
.yed{bottom:131.880000px;}
.y13a{bottom:132.330000px;}
.y118{bottom:139.890000px;}
.yb7{bottom:147.540000px;}
.yec{bottom:149.430000px;}
.y58{bottom:149.880000px;}
.yc7{bottom:153.390000px;}
.y117{bottom:157.530000px;}
.y139{bottom:159.240000px;}
.y28{bottom:161.040000px;}
.y81{bottom:165.540000px;}
.yeb{bottom:167.070000px;}
.y57{bottom:167.430000px;}
.y116{bottom:175.080000px;}
.y27{bottom:178.590000px;}
.yb6{bottom:179.760000px;}
.yea{bottom:184.620000px;}
.y56{bottom:185.070000px;}
.yc6{bottom:185.610000px;}
.ya6{bottom:189.660000px;}
.y115{bottom:192.720000px;}
.y26{bottom:196.230000px;}
.y80{bottom:201.090000px;}
.ye9{bottom:202.170000px;}
.y55{bottom:202.620000px;}
.ya5{bottom:207.210000px;}
.y138{bottom:207.570000px;}
.y25{bottom:213.780000px;}
.y7f{bottom:218.730000px;}
.y54{bottom:220.260000px;}
.ya4{bottom:224.850000px;}
.y114{bottom:228.270000px;}
.ye8{bottom:228.810000px;}
.y24{bottom:231.420000px;}
.y137{bottom:234.390000px;}
.y7e{bottom:236.280000px;}
.y53{bottom:237.810000px;}
.ya3{bottom:242.400000px;}
.y113{bottom:245.820000px;}
.y23{bottom:248.970000px;}
.y7d{bottom:253.830000px;}
.y52{bottom:255.360000px;}
.y112{bottom:263.460000px;}
.ye7{bottom:263.640000px;}
.y22{bottom:266.520000px;}
.ya2{bottom:268.950000px;}
.y136{bottom:271.470000px;}
.ye6{bottom:275.790000px;}
.y7c{bottom:280.470000px;}
.y111{bottom:281.010000px;}
.y51{bottom:281.910000px;}
.y21{bottom:293.430000px;}
.y135{bottom:298.380000px;}
.y110{bottom:298.650000px;}
.ye5{bottom:303.150000px;}
.ya1{bottom:304.590000px;}
.y50{bottom:314.580000px;}
.y7b{bottom:316.020000px;}
.y10f{bottom:316.200000px;}
.ya0{bottom:322.140000px;}
.ye4{bottom:330.510000px;}
.y10e{bottom:333.750000px;}
.y134{bottom:335.370000px;}
.y9f{bottom:339.690000px;}
.y20{bottom:342.030000px;}
.y7a{bottom:348.600000px;}
.y4f{bottom:350.130000px;}
.y10d{bottom:351.390000px;}
.y9e{bottom:357.330000px;}
.ye3{bottom:357.870000px;}
.y133{bottom:362.280000px;}
.y4e{bottom:367.770000px;}
.y10c{bottom:368.940000px;}
.y9d{bottom:374.880000px;}
.y1f{bottom:379.110000px;}
.y79{bottom:383.520000px;}
.ye2{bottom:385.140000px;}
.y4d{bottom:385.320000px;}
.y78{bottom:395.670000px;}
.y1e{bottom:396.660000px;}
.y132{bottom:399.630000px;}
.y9c{bottom:401.520000px;}
.y4c{bottom:402.870000px;}
.y10b{bottom:404.580000px;}
.ye1{bottom:412.500000px;}
.y1d{bottom:414.300000px;}
.y4b{bottom:420.510000px;}
.y10a{bottom:422.130000px;}
.y77{bottom:423.030000px;}
.y1c{bottom:431.850000px;}
.y9b{bottom:435.990000px;}
.y109{bottom:439.680000px;}
.ydd{bottom:439.860000px;}
.y9a{bottom:443.550000px;}
.y4a{bottom:447.060000px;}
.y131{bottom:447.870000px;}
.y1b{bottom:449.400000px;}
.y76{bottom:450.300000px;}
.y154{bottom:451.470000px;}
.y108{bottom:457.320000px;}
.y130{bottom:465.510000px;}
.y1a{bottom:467.040000px;}
.ydf{bottom:467.130000px;}
.y107{bottom:474.900000px;}
.y75{bottom:477.690000px;}
.y153{bottom:478.140000px;}
.y49{bottom:482.730000px;}
.y12f{bottom:483.090000px;}
.y99{bottom:483.360000px;}
.y19{bottom:484.620000px;}
.y106{bottom:492.450000px;}
.yb5{bottom:495.870000px;}
.y48{bottom:500.280000px;}
.y12e{bottom:500.730000px;}
.y98{bottom:501.810000px;}
.y18{bottom:502.170000px;}
.y152{bottom:504.690000px;}
.y74{bottom:505.050000px;}
.y105{bottom:510.090000px;}
.yb4{bottom:513.510000px;}
.ydc{bottom:515.940000px;}
.y47{bottom:517.830000px;}
.y12d{bottom:518.280000px;}
.y17{bottom:519.810000px;}
.y97{bottom:520.260000px;}
.y151{bottom:522.330000px;}
.yc5{bottom:528.720000px;}
.yb3{bottom:531.060000px;}
.y73{bottom:532.410000px;}
.ydb{bottom:533.490000px;}
.y46{bottom:535.470000px;}
.y104{bottom:537.000000px;}
.y16{bottom:537.360000px;}
.y96{bottom:537.810000px;}
.y150{bottom:539.880000px;}
.y12c{bottom:545.190000px;}
.yc4{bottom:546.360000px;}
.yb2{bottom:548.700000px;}
.y15{bottom:555.000000px;}
.y95{bottom:556.260000px;}
.y72{bottom:559.680000px;}
.y45{bottom:562.020000px;}
.yc3{bottom:563.910000px;}
.yb1{bottom:566.250000px;}
.y14f{bottom:566.430000px;}
.yda{bottom:569.040000px;}
.y14{bottom:572.550000px;}
.y94{bottom:574.710000px;}
.yc2{bottom:581.460000px;}
.y14e{bottom:584.070000px;}
.y103{bottom:585.240000px;}
.yd9{bottom:586.680000px;}
.y71{bottom:587.040000px;}
.y13{bottom:590.100000px;}
.yb0{bottom:592.800000px;}
.y12b{bottom:593.430000px;}
.y44{bottom:597.660000px;}
.yc1{bottom:599.100000px;}
.y14d{bottom:601.620000px;}
.yd8{bottom:604.230000px;}
.y12{bottom:607.740000px;}
.y12a{bottom:611.070000px;}
.y93{bottom:611.160000px;}
.y70{bottom:614.400000px;}
.y43{bottom:615.210000px;}
.y102{bottom:618.270000px;}
.yd7{bottom:621.870000px;}
.y11{bottom:625.290000px;}
.yc0{bottom:625.650000px;}
.y14c{bottom:628.260000px;}
.yaf{bottom:628.440000px;}
.y129{bottom:628.620000px;}
.y92{bottom:628.710000px;}
.y6f{bottom:641.670000px;}
.y42{bottom:641.760000px;}
.y101{bottom:642.570000px;}
.y10{bottom:642.930000px;}
.ybf{bottom:643.290000px;}
.y14b{bottom:645.810000px;}
.y128{bottom:646.260000px;}
.y91{bottom:655.260000px;}
.yd6{bottom:656.700000px;}
.yae{bottom:660.660000px;}
.y127{bottom:663.810000px;}
.y100{bottom:666.870000px;}
.yd5{bottom:668.850000px;}
.y6e{bottom:669.030000px;}
.yf{bottom:669.840000px;}
.y14a{bottom:672.360000px;}
.y41{bottom:677.400000px;}
.ybe{bottom:678.840000px;}
.y126{bottom:681.360000px;}
.y90{bottom:689.820000px;}
.y149{bottom:690.000000px;}
.yff{bottom:691.260000px;}
.y40{bottom:694.950000px;}
.yd4{bottom:696.210000px;}
.y6d{bottom:696.390000px;}
.y8f{bottom:697.380000px;}
.y125{bottom:699.000000px;}
.ybd{bottom:711.060000px;}
.y3f{bottom:712.590000px;}
.yfe{bottom:715.560000px;}
.y124{bottom:716.550000px;}
.ye{bottom:718.080000px;}
.yd3{bottom:723.570000px;}
.y6c{bottom:723.750000px;}
.y3e{bottom:730.140000px;}
.y148{bottom:734.190000px;}
.y8e{bottom:737.610000px;}
.yfd{bottom:739.950000px;}
.y3d{bottom:747.690000px;}
.yd2{bottom:750.840000px;}
.y6a{bottom:751.020000px;}
.y123{bottom:752.190000px;}
.yd{bottom:753.900000px;}
.y147{bottom:760.740000px;}
.yfc{bottom:764.250000px;}
.y3c{bottom:765.330000px;}
.y122{bottom:769.740000px;}
.y8d{bottom:772.170000px;}
.yd1{bottom:778.200000px;}
.y146{bottom:778.290000px;}
.y69{bottom:778.380000px;}
.y8c{bottom:779.730000px;}
.y3b{bottom:782.880000px;}
.y121{bottom:787.290000px;}
.yfb{bottom:788.550000px;}
.yc{bottom:789.900000px;}
.y3a{bottom:800.520000px;}
.y145{bottom:804.930000px;}
.yd0{bottom:805.560000px;}
.y65{bottom:805.740000px;}
.y8b{bottom:819.870000px;}
.y144{bottom:822.480000px;}
.y120{bottom:822.930000px;}
.yb{bottom:825.900000px;}
.y39{bottom:827.070000px;}
.ycf{bottom:832.920000px;}
.y67{bottom:833.100000px;}
.yfa{bottom:834.270000px;}
.y8a{bottom:837.510000px;}
.y143{bottom:840.030000px;}
.y11f{bottom:840.480000px;}
.ya{bottom:847.680000px;}
.y11e{bottom:858.030000px;}
.y38{bottom:862.980000px;}
.y9{bottom:865.680000px;}
.y142{bottom:866.670000px;}
.yf9{bottom:869.820000px;}
.y89{bottom:873.060000px;}
.y11d{bottom:875.670000px;}
.y64{bottom:881.790000px;}
.ycd{bottom:882.330000px;}
.y8{bottom:883.680000px;}
.y141{bottom:884.220000px;}
.yf8{bottom:887.460000px;}
.y88{bottom:890.610000px;}
.y11c{bottom:893.220000px;}
.y7{bottom:901.680000px;}
.y140{bottom:901.860000px;}
.y87{bottom:908.250000px;}
.y11b{bottom:910.860000px;}
.y37{bottom:911.220000px;}
.y63{bottom:917.340000px;}
.yf7{bottom:922.290000px;}
.y86{bottom:925.800000px;}
.y11a{bottom:928.410000px;}
.y36{bottom:928.860000px;}
.ycc{bottom:931.740000px;}
.y6{bottom:933.810000px;}
.yf6{bottom:936.420000px;}
.y119{bottom:945.960000px;}
.y35{bottom:946.410000px;}
.yf5{bottom:948.570000px;}
.y5{bottom:952.260000px;}
.y85{bottom:952.350000px;}
.y62{bottom:952.890000px;}
.y13f{bottom:954.960000px;}
.ycb{bottom:959.100000px;}
.y34{bottom:963.960000px;}
.y61{bottom:970.530000px;}
.y13e{bottom:972.600000px;}
.yf4{bottom:972.870000px;}
.y33{bottom:981.600000px;}
.y84{bottom:986.910000px;}
.y60{bottom:988.080000px;}
.y4{bottom:989.880000px;}
.y13d{bottom:990.150000px;}
.y83{bottom:994.470000px;}
.yad{bottom:994.740000px;}
.yf3{bottom:997.260000px;}
.y32{bottom:999.150000px;}
.y5f{bottom:1005.720000px;}
.yca{bottom:1007.790000px;}
.yac{bottom:1012.320000px;}
.y3{bottom:1014.570000px;}
.y31{bottom:1016.820000px;}
.yf2{bottom:1021.590000px;}
.y5e{bottom:1023.300000px;}
.yab{bottom:1029.960000px;}
.y30{bottom:1034.370000px;}
.yc9{bottom:1043.370000px;}
.yf1{bottom:1045.890000px;}
.yaa{bottom:1047.510000px;}
.y5d{bottom:1049.850000px;}
.y2f{bottom:1051.920000px;}
.ybc{bottom:1060.920000px;}
.ya9{bottom:1065.150000px;}
.y2e{bottom:1069.560000px;}
.yf0{bottom:1070.280000px;}
.ybb{bottom:1078.560000px;}
.y5c{bottom:1085.490000px;}
.y2d{bottom:1087.110000px;}
.y13c{bottom:1087.560000px;}
.ya8{bottom:1091.700000px;}
.yee{bottom:1094.580000px;}
.yba{bottom:1096.110000px;}
.y82{bottom:1105.110000px;}
.yb9{bottom:1113.750000px;}
.y5b{bottom:1120.950000px;}
.y2c{bottom:1122.750000px;}
.ya7{bottom:1127.610000px;}
.y5a{bottom:1139.400000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h1a{height:23.580000px;}
.h1b{height:23.610000px;}
.h10{height:26.550000px;}
.h11{height:26.640000px;}
.h12{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h13{height:41.661211px;}
.h18{height:48.600000px;}
.h17{height:50.667539px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.hf{height:53.910000px;}
.h19{height:53.940000px;}
.h5{height:54.817383px;}
.h9{height:55.779258px;}
.hd{height:59.973223px;}
.ha{height:60.960938px;}
.he{height:61.793886px;}
.hc{height:62.585859px;}
.hb{height:68.582109px;}
.h14{height:70.777617px;}
.h16{height:72.217617px;}
.h4{height:72.985430px;}
.h15{height:82.551445px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:48.690000px;}
.w7{width:51.750000px;}
.w8{width:51.780000px;}
.w9{width:60.030000px;}
.w15{width:68.400000px;}
.w17{width:68.430000px;}
.w16{width:76.680000px;}
.w1a{width:101.430000px;}
.w4{width:104.250000px;}
.w5{width:104.310000px;}
.w6{width:109.530000px;}
.w19{width:110.910000px;}
.w13{width:116.130000px;}
.w12{width:116.640000px;}
.wc{width:126.360000px;}
.wf{width:128.010000px;}
.we{width:132.660000px;}
.w14{width:149.250000px;}
.w10{width:171.720000px;}
.w18{width:228.510000px;}
.w11{width:233.490000px;}
.w3{width:241.740000px;}
.wd{width:261.390000px;}
.wb{width:512.580000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.650000px;}
.x1{left:68.040000px;}
.x2e{left:75.959987px;}
.x4{left:95.039987px;}
.x1d{left:107.279987px;}
.x31{left:111.239987px;}
.x17{left:117.719987px;}
.x13{left:122.039987px;}
.x1b{left:137.969987px;}
.x19{left:140.039987px;}
.x27{left:160.380000px;}
.x5{left:165.630000px;}
.x10{left:193.889987px;}
.x22{left:207.209987px;}
.x23{left:217.380000px;}
.x1e{left:226.110000px;}
.xd{left:244.379987px;}
.x2{left:251.759987px;}
.x14{left:298.199987px;}
.x2f{left:303.509987px;}
.x12{left:304.589987px;}
.x28{left:310.350000px;}
.xe{left:322.499987px;}
.x1f{left:353.280000px;}
.x29{left:379.560000px;}
.x24{left:389.820000px;}
.xf{left:404.669987px;}
.x7{left:408.180000px;}
.x11{left:420.419987px;}
.x30{left:454.710000px;}
.x2a{left:457.050000px;}
.xa{left:460.650000px;}
.x15{left:476.669987px;}
.x21{left:486.660000px;}
.x26{left:507.180000px;}
.x8{left:513.150000px;}
.x2b{left:526.200000px;}
.xb{left:565.710000px;}
.x2c{left:603.690000px;}
.x20{left:615.390000px;}
.x9{left:618.180000px;}
.x25{left:624.120000px;}
.x2d{left:664.530000px;}
.xc{left:679.020000px;}
.x18{left:745.889987px;}
.x16{left:761.639987px;}
.x1c{left:770.639987px;}
.x1a{left:775.139987px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v7{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.280000pt;}
.v2{vertical-align:13.440000pt;}
.v5{vertical-align:26.880000pt;}
.v4{vertical-align:31.360000pt;}
.ls1d{letter-spacing:-0.269333pt;}
.ls19{letter-spacing:-0.197333pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.142933pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls15{letter-spacing:-0.026560pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls1b{letter-spacing:0.046080pt;}
.ls14{letter-spacing:0.049920pt;}
.lsd{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls18{letter-spacing:0.081067pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.093867pt;}
.ls1a{letter-spacing:0.100800pt;}
.ls5{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.142400pt;}
.lsf{letter-spacing:0.154133pt;}
.ls17{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:42.423680pt;}
.lse{letter-spacing:56.503680pt;}
.ls1c{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws10{word-spacing:-11.933867pt;}
.ws8{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.850667pt;}
.wsb{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.700267pt;}
.wsf{word-spacing:-11.613867pt;}
.ws9{word-spacing:-11.590933pt;}
.ws13{word-spacing:-11.487467pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws11{word-spacing:-8.317867pt;}
.ws2{word-spacing:-8.236800pt;}
.wse{word-spacing:-8.210240pt;}
.ws12{word-spacing:-8.039467pt;}
.ws3{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._17{margin-left:-3.824744pt;}
._a{margin-left:-2.885867pt;}
._4{margin-left:-1.915307pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.062444pt;}
._6{width:2.030934pt;}
._9{width:3.051588pt;}
._8{width:4.102243pt;}
._5{width:5.140486pt;}
._2{width:6.030655pt;}
._1{width:6.933856pt;}
._b{width:8.243211pt;}
._16{width:9.138240pt;}
._7{width:10.260266pt;}
._15{width:12.862143pt;}
._18{width:13.782870pt;}
._11{width:15.711360pt;}
._d{width:17.152063pt;}
._c{width:18.062720pt;}
._10{width:19.448213pt;}
._e{width:20.360640pt;}
._f{width:21.310080pt;}
._12{width:146.393387pt;}
._14{width:165.243307pt;}
._13{width:559.163307pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs9{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:56.000000pt;}
.fs7{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yef{bottom:5.600000pt;}
.y68{bottom:6.960000pt;}
.y6b{bottom:7.040000pt;}
.ye0{bottom:7.066667pt;}
.yce{bottom:26.560000pt;}
.y66{bottom:31.280000pt;}
.yde{bottom:31.306667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yb8{bottom:99.546667pt;}
.y59{bottom:100.826667pt;}
.y13b{bottom:102.026667pt;}
.yc8{bottom:104.666667pt;}
.yed{bottom:117.226667pt;}
.y13a{bottom:117.626667pt;}
.y118{bottom:124.346667pt;}
.yb7{bottom:131.146667pt;}
.yec{bottom:132.826667pt;}
.y58{bottom:133.226667pt;}
.yc7{bottom:136.346667pt;}
.y117{bottom:140.026667pt;}
.y139{bottom:141.546667pt;}
.y28{bottom:143.146667pt;}
.y81{bottom:147.146667pt;}
.yeb{bottom:148.506667pt;}
.y57{bottom:148.826667pt;}
.y116{bottom:155.626667pt;}
.y27{bottom:158.746667pt;}
.yb6{bottom:159.786667pt;}
.yea{bottom:164.106667pt;}
.y56{bottom:164.506667pt;}
.yc6{bottom:164.986667pt;}
.ya6{bottom:168.586667pt;}
.y115{bottom:171.306667pt;}
.y26{bottom:174.426667pt;}
.y80{bottom:178.746667pt;}
.ye9{bottom:179.706667pt;}
.y55{bottom:180.106667pt;}
.ya5{bottom:184.186667pt;}
.y138{bottom:184.506667pt;}
.y25{bottom:190.026667pt;}
.y7f{bottom:194.426667pt;}
.y54{bottom:195.786667pt;}
.ya4{bottom:199.866667pt;}
.y114{bottom:202.906667pt;}
.ye8{bottom:203.386667pt;}
.y24{bottom:205.706667pt;}
.y137{bottom:208.346667pt;}
.y7e{bottom:210.026667pt;}
.y53{bottom:211.386667pt;}
.ya3{bottom:215.466667pt;}
.y113{bottom:218.506667pt;}
.y23{bottom:221.306667pt;}
.y7d{bottom:225.626667pt;}
.y52{bottom:226.986667pt;}
.y112{bottom:234.186667pt;}
.ye7{bottom:234.346667pt;}
.y22{bottom:236.906667pt;}
.ya2{bottom:239.066667pt;}
.y136{bottom:241.306667pt;}
.ye6{bottom:245.146667pt;}
.y7c{bottom:249.306667pt;}
.y111{bottom:249.786667pt;}
.y51{bottom:250.586667pt;}
.y21{bottom:260.826667pt;}
.y135{bottom:265.226667pt;}
.y110{bottom:265.466667pt;}
.ye5{bottom:269.466667pt;}
.ya1{bottom:270.746667pt;}
.y50{bottom:279.626667pt;}
.y7b{bottom:280.906667pt;}
.y10f{bottom:281.066667pt;}
.ya0{bottom:286.346667pt;}
.ye4{bottom:293.786667pt;}
.y10e{bottom:296.666667pt;}
.y134{bottom:298.106667pt;}
.y9f{bottom:301.946667pt;}
.y20{bottom:304.026667pt;}
.y7a{bottom:309.866667pt;}
.y4f{bottom:311.226667pt;}
.y10d{bottom:312.346667pt;}
.y9e{bottom:317.626667pt;}
.ye3{bottom:318.106667pt;}
.y133{bottom:322.026667pt;}
.y4e{bottom:326.906667pt;}
.y10c{bottom:327.946667pt;}
.y9d{bottom:333.226667pt;}
.y1f{bottom:336.986667pt;}
.y79{bottom:340.906667pt;}
.ye2{bottom:342.346667pt;}
.y4d{bottom:342.506667pt;}
.y78{bottom:351.706667pt;}
.y1e{bottom:352.586667pt;}
.y132{bottom:355.226667pt;}
.y9c{bottom:356.906667pt;}
.y4c{bottom:358.106667pt;}
.y10b{bottom:359.626667pt;}
.ye1{bottom:366.666667pt;}
.y1d{bottom:368.266667pt;}
.y4b{bottom:373.786667pt;}
.y10a{bottom:375.226667pt;}
.y77{bottom:376.026667pt;}
.y1c{bottom:383.866667pt;}
.y9b{bottom:387.546667pt;}
.y109{bottom:390.826667pt;}
.ydd{bottom:390.986667pt;}
.y9a{bottom:394.266667pt;}
.y4a{bottom:397.386667pt;}
.y131{bottom:398.106667pt;}
.y1b{bottom:399.466667pt;}
.y76{bottom:400.266667pt;}
.y154{bottom:401.306667pt;}
.y108{bottom:406.506667pt;}
.y130{bottom:413.786667pt;}
.y1a{bottom:415.146667pt;}
.ydf{bottom:415.226667pt;}
.y107{bottom:422.133333pt;}
.y75{bottom:424.613333pt;}
.y153{bottom:425.013333pt;}
.y49{bottom:429.093333pt;}
.y12f{bottom:429.413333pt;}
.y99{bottom:429.653333pt;}
.y19{bottom:430.773333pt;}
.y106{bottom:437.733333pt;}
.yb5{bottom:440.773333pt;}
.y48{bottom:444.693333pt;}
.y12e{bottom:445.093333pt;}
.y98{bottom:446.053333pt;}
.y18{bottom:446.373333pt;}
.y152{bottom:448.613333pt;}
.y74{bottom:448.933333pt;}
.y105{bottom:453.413333pt;}
.yb4{bottom:456.453333pt;}
.ydc{bottom:458.613333pt;}
.y47{bottom:460.293333pt;}
.y12d{bottom:460.693333pt;}
.y17{bottom:462.053333pt;}
.y97{bottom:462.453333pt;}
.y151{bottom:464.293333pt;}
.yc5{bottom:469.973333pt;}
.yb3{bottom:472.053333pt;}
.y73{bottom:473.253333pt;}
.ydb{bottom:474.213333pt;}
.y46{bottom:475.973333pt;}
.y104{bottom:477.333333pt;}
.y16{bottom:477.653333pt;}
.y96{bottom:478.053333pt;}
.y150{bottom:479.893333pt;}
.y12c{bottom:484.613333pt;}
.yc4{bottom:485.653333pt;}
.yb2{bottom:487.733333pt;}
.y15{bottom:493.333333pt;}
.y95{bottom:494.453333pt;}
.y72{bottom:497.493333pt;}
.y45{bottom:499.573333pt;}
.yc3{bottom:501.253333pt;}
.yb1{bottom:503.333333pt;}
.y14f{bottom:503.493333pt;}
.yda{bottom:505.813333pt;}
.y14{bottom:508.933333pt;}
.y94{bottom:510.853333pt;}
.yc2{bottom:516.853333pt;}
.y14e{bottom:519.173333pt;}
.y103{bottom:520.213333pt;}
.yd9{bottom:521.493333pt;}
.y71{bottom:521.813333pt;}
.y13{bottom:524.533333pt;}
.yb0{bottom:526.933333pt;}
.y12b{bottom:527.493333pt;}
.y44{bottom:531.253333pt;}
.yc1{bottom:532.533333pt;}
.y14d{bottom:534.773333pt;}
.yd8{bottom:537.093333pt;}
.y12{bottom:540.213333pt;}
.y12a{bottom:543.173333pt;}
.y93{bottom:543.253333pt;}
.y70{bottom:546.133333pt;}
.y43{bottom:546.853333pt;}
.y102{bottom:549.573333pt;}
.yd7{bottom:552.773333pt;}
.y11{bottom:555.813333pt;}
.yc0{bottom:556.133333pt;}
.y14c{bottom:558.453333pt;}
.yaf{bottom:558.613333pt;}
.y129{bottom:558.773333pt;}
.y92{bottom:558.853333pt;}
.y6f{bottom:570.373333pt;}
.y42{bottom:570.453333pt;}
.y101{bottom:571.173333pt;}
.y10{bottom:571.493333pt;}
.ybf{bottom:571.813333pt;}
.y14b{bottom:574.053333pt;}
.y128{bottom:574.453333pt;}
.y91{bottom:582.453333pt;}
.yd6{bottom:583.733333pt;}
.yae{bottom:587.253333pt;}
.y127{bottom:590.053333pt;}
.y100{bottom:592.773333pt;}
.yd5{bottom:594.533333pt;}
.y6e{bottom:594.693333pt;}
.yf{bottom:595.413333pt;}
.y14a{bottom:597.653333pt;}
.y41{bottom:602.133333pt;}
.ybe{bottom:603.413333pt;}
.y126{bottom:605.653333pt;}
.y90{bottom:613.173333pt;}
.y149{bottom:613.333333pt;}
.yff{bottom:614.453333pt;}
.y40{bottom:617.733333pt;}
.yd4{bottom:618.853333pt;}
.y6d{bottom:619.013333pt;}
.y8f{bottom:619.893333pt;}
.y125{bottom:621.333333pt;}
.ybd{bottom:632.053333pt;}
.y3f{bottom:633.413333pt;}
.yfe{bottom:636.053333pt;}
.y124{bottom:636.933333pt;}
.ye{bottom:638.293333pt;}
.yd3{bottom:643.173333pt;}
.y6c{bottom:643.333333pt;}
.y3e{bottom:649.013333pt;}
.y148{bottom:652.613333pt;}
.y8e{bottom:655.653333pt;}
.yfd{bottom:657.733333pt;}
.y3d{bottom:664.613333pt;}
.yd2{bottom:667.413333pt;}
.y6a{bottom:667.573333pt;}
.y123{bottom:668.613333pt;}
.yd{bottom:670.133333pt;}
.y147{bottom:676.213333pt;}
.yfc{bottom:679.333333pt;}
.y3c{bottom:680.293333pt;}
.y122{bottom:684.213333pt;}
.y8d{bottom:686.373333pt;}
.yd1{bottom:691.733333pt;}
.y146{bottom:691.813333pt;}
.y69{bottom:691.893333pt;}
.y8c{bottom:693.093333pt;}
.y3b{bottom:695.893333pt;}
.y121{bottom:699.813333pt;}
.yfb{bottom:700.933333pt;}
.yc{bottom:702.133333pt;}
.y3a{bottom:711.573333pt;}
.y145{bottom:715.493333pt;}
.yd0{bottom:716.053333pt;}
.y65{bottom:716.213333pt;}
.y8b{bottom:728.773333pt;}
.y144{bottom:731.093333pt;}
.y120{bottom:731.493333pt;}
.yb{bottom:734.133333pt;}
.y39{bottom:735.173333pt;}
.ycf{bottom:740.373333pt;}
.y67{bottom:740.533333pt;}
.yfa{bottom:741.573333pt;}
.y8a{bottom:744.453333pt;}
.y143{bottom:746.693333pt;}
.y11f{bottom:747.093333pt;}
.ya{bottom:753.493333pt;}
.y11e{bottom:762.693333pt;}
.y38{bottom:767.093333pt;}
.y9{bottom:769.493333pt;}
.y142{bottom:770.373333pt;}
.yf9{bottom:773.173333pt;}
.y89{bottom:776.053333pt;}
.y11d{bottom:778.373333pt;}
.y64{bottom:783.813333pt;}
.ycd{bottom:784.293333pt;}
.y8{bottom:785.493333pt;}
.y141{bottom:785.973333pt;}
.yf8{bottom:788.853333pt;}
.y88{bottom:791.653333pt;}
.y11c{bottom:793.973333pt;}
.y7{bottom:801.493333pt;}
.y140{bottom:801.653333pt;}
.y87{bottom:807.333333pt;}
.y11b{bottom:809.653333pt;}
.y37{bottom:809.973333pt;}
.y63{bottom:815.413333pt;}
.yf7{bottom:819.813333pt;}
.y86{bottom:822.933333pt;}
.y11a{bottom:825.253333pt;}
.y36{bottom:825.653333pt;}
.ycc{bottom:828.213333pt;}
.y6{bottom:830.053333pt;}
.yf6{bottom:832.373333pt;}
.y119{bottom:840.853333pt;}
.y35{bottom:841.253333pt;}
.yf5{bottom:843.173333pt;}
.y5{bottom:846.453333pt;}
.y85{bottom:846.533333pt;}
.y62{bottom:847.013333pt;}
.y13f{bottom:848.853333pt;}
.ycb{bottom:852.533333pt;}
.y34{bottom:856.853333pt;}
.y61{bottom:862.693333pt;}
.y13e{bottom:864.533333pt;}
.yf4{bottom:864.773333pt;}
.y33{bottom:872.533333pt;}
.y84{bottom:877.253333pt;}
.y60{bottom:878.293333pt;}
.y4{bottom:879.893333pt;}
.y13d{bottom:880.133333pt;}
.y83{bottom:883.973333pt;}
.yad{bottom:884.213333pt;}
.yf3{bottom:886.453333pt;}
.y32{bottom:888.133333pt;}
.y5f{bottom:893.973333pt;}
.yca{bottom:895.813333pt;}
.yac{bottom:899.840000pt;}
.y3{bottom:901.840000pt;}
.y31{bottom:903.840000pt;}
.yf2{bottom:908.080000pt;}
.y5e{bottom:909.600000pt;}
.yab{bottom:915.520000pt;}
.y30{bottom:919.440000pt;}
.yc9{bottom:927.440000pt;}
.yf1{bottom:929.680000pt;}
.yaa{bottom:931.120000pt;}
.y5d{bottom:933.200000pt;}
.y2f{bottom:935.040000pt;}
.ybc{bottom:943.040000pt;}
.ya9{bottom:946.800000pt;}
.y2e{bottom:950.720000pt;}
.yf0{bottom:951.360000pt;}
.ybb{bottom:958.720000pt;}
.y5c{bottom:964.880000pt;}
.y2d{bottom:966.320000pt;}
.y13c{bottom:966.720000pt;}
.ya8{bottom:970.400000pt;}
.yee{bottom:972.960000pt;}
.yba{bottom:974.320000pt;}
.y82{bottom:982.320000pt;}
.yb9{bottom:990.000000pt;}
.y5b{bottom:996.400000pt;}
.y2c{bottom:998.000000pt;}
.ya7{bottom:1002.320000pt;}
.y5a{bottom:1012.800000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h1a{height:20.960000pt;}
.h1b{height:20.986667pt;}
.h10{height:23.600000pt;}
.h11{height:23.680000pt;}
.h12{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h13{height:37.032187pt;}
.h18{height:43.200000pt;}
.h17{height:45.037812pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.hf{height:47.920000pt;}
.h19{height:47.946667pt;}
.h5{height:48.726562pt;}
.h9{height:49.581562pt;}
.hd{height:53.309531pt;}
.ha{height:54.187500pt;}
.he{height:54.927899pt;}
.hc{height:55.631875pt;}
.hb{height:60.961875pt;}
.h14{height:62.913437pt;}
.h16{height:64.193437pt;}
.h4{height:64.875937pt;}
.h15{height:73.379063pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:43.280000pt;}
.w7{width:46.000000pt;}
.w8{width:46.026667pt;}
.w9{width:53.360000pt;}
.w15{width:60.800000pt;}
.w17{width:60.826667pt;}
.w16{width:68.160000pt;}
.w1a{width:90.160000pt;}
.w4{width:92.666667pt;}
.w5{width:92.720000pt;}
.w6{width:97.360000pt;}
.w19{width:98.586667pt;}
.w13{width:103.226667pt;}
.w12{width:103.680000pt;}
.wc{width:112.320000pt;}
.wf{width:113.786667pt;}
.we{width:117.920000pt;}
.w14{width:132.666667pt;}
.w10{width:152.640000pt;}
.w18{width:203.120000pt;}
.w11{width:207.546667pt;}
.w3{width:214.880000pt;}
.wd{width:232.346667pt;}
.wb{width:455.626667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.800000pt;}
.x1{left:60.480000pt;}
.x2e{left:67.519988pt;}
.x4{left:84.479988pt;}
.x1d{left:95.359988pt;}
.x31{left:98.879988pt;}
.x17{left:104.639988pt;}
.x13{left:108.479988pt;}
.x1b{left:122.639988pt;}
.x19{left:124.479988pt;}
.x27{left:142.560000pt;}
.x5{left:147.226667pt;}
.x10{left:172.346655pt;}
.x22{left:184.186655pt;}
.x23{left:193.226667pt;}
.x1e{left:200.986667pt;}
.xd{left:217.226655pt;}
.x2{left:223.786655pt;}
.x14{left:265.066655pt;}
.x2f{left:269.786655pt;}
.x12{left:270.746655pt;}
.x28{left:275.866667pt;}
.xe{left:286.666655pt;}
.x1f{left:314.026667pt;}
.x29{left:337.386667pt;}
.x24{left:346.506667pt;}
.xf{left:359.706655pt;}
.x7{left:362.826667pt;}
.x11{left:373.706655pt;}
.x30{left:404.186667pt;}
.x2a{left:406.266667pt;}
.xa{left:409.466667pt;}
.x15{left:423.706655pt;}
.x21{left:432.586667pt;}
.x26{left:450.826667pt;}
.x8{left:456.133333pt;}
.x2b{left:467.733333pt;}
.xb{left:502.853333pt;}
.x2c{left:536.613333pt;}
.x20{left:547.013333pt;}
.x9{left:549.493333pt;}
.x25{left:554.773333pt;}
.x2d{left:590.693333pt;}
.xc{left:603.573333pt;}
.x18{left:663.013322pt;}
.x16{left:677.013322pt;}
.x1c{left:685.013322pt;}
.x1a{left:689.013322pt;}
.x3{left:718.773322pt;}
}




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